1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
"""Bcfg2 logging support"""
import copy
import fcntl
import logging
import logging.handlers
import math
import socket
import struct
import sys
import termios
logging.raiseExceptions = 0
class TermiosFormatter(logging.Formatter):
"""The termios formatter displays output
in a terminal-sensitive fashion.
"""
def __init__(self, fmt=None, datefmt=None):
logging.Formatter.__init__(self, fmt, datefmt)
if sys.stdout.isatty():
# now get termios info
try:
self.width = struct.unpack('hhhh',
fcntl.ioctl(0,
termios.TIOCGWINSZ,
"\000" * 8))[1]
if self.width == 0:
self.width = 80
except: # pylint: disable=W0702
self.width = 80
else:
# output to a pipe
self.width = 32768
def format(self, record):
'''format a record for display'''
returns = []
line_len = self.width
if isinstance(record.msg, str):
for line in record.msg.split('\n'):
if len(line) <= line_len:
returns.append(line)
else:
inner_lines = \
int(math.floor(float(len(line)) / line_len)) + 1
for msgline in range(inner_lines):
returns.append(
line[msgline * line_len:(msgline + 1) * line_len])
elif isinstance(record.msg, list):
if not record.msg:
return ''
record.msg.sort()
msgwidth = self.width
col_width = max([len(item) for item in record.msg])
columns = int(math.floor(float(msgwidth) / (col_width + 2)))
lines = int(math.ceil(float(len(record.msg)) / columns))
for lineno in range(lines):
indices = [idx for idx in [(colNum * lines) + lineno
for colNum in range(columns)]
if idx < len(record.msg)]
retformat = (len(indices) * (" %%-%ds " % col_width))
returns.append(retformat % tuple([record.msg[idx]
for idx in indices]))
else:
returns.append(str(record.msg))
if record.exc_info:
returns.append(self.formatException(record.exc_info))
return '\n'.join(returns)
class FragmentingSysLogHandler(logging.handlers.SysLogHandler):
"""
This handler fragments messages into
chunks smaller than 250 characters
"""
def __init__(self, procname, path, facility):
self.procname = procname
self.unixsocket = False
logging.handlers.SysLogHandler.__init__(self, path, facility)
def emit(self, record):
"""Chunk and deliver records."""
record.name = self.procname
if isinstance(record.msg, str):
msgs = []
error = record.exc_info
record.exc_info = None
msgdata = record.msg
if len(msgdata) == 0:
return
while msgdata:
newrec = copy.copy(record)
newrec.msg = msgdata[:250]
msgs.append(newrec)
msgdata = msgdata[250:]
msgs[0].exc_info = error
else:
msgs = [record]
for newrec in msgs:
msg = '<%d>%s\000' % \
(self.encodePriority(self.facility, newrec.levelname.lower()),
self.format(newrec))
try:
try:
encoded = msg.encode('utf-8')
except UnicodeDecodeError:
encoded = msg
self.socket.send(encoded)
except socket.error:
for i in range(10): # pylint: disable=W0612
try:
if isinstance(self.address, tuple):
self.socket = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM)
self.socket.connect(self.address)
else:
self._connect_unixsocket(self.address)
break
except socket.error:
continue
try:
reconn = copy.copy(record)
reconn.msg = 'Reconnected to syslog'
self.socket.send('<%d>%s\000' %
(self.encodePriority(self.facility,
logging.WARNING),
self.format(reconn)))
self.socket.send(msg)
except: # pylint: disable=W0702
# If we still fail then drop it. Running
# bcfg2-server as non-root can trigger permission
# denied exceptions.
pass
def add_console_handler(level=logging.DEBUG):
""" Add a logging handler that logs at a level to sys.stderr """
console = logging.StreamHandler(sys.stderr)
console.setLevel(level)
# tell the handler to use this format
console.setFormatter(TermiosFormatter())
logging.root.addHandler(console)
def add_syslog_handler(procname, syslog_facility, level=logging.DEBUG):
"""Add a logging handler that logs as procname to syslog_facility."""
try:
try:
syslog = FragmentingSysLogHandler(procname,
'/dev/log',
syslog_facility)
except socket.error:
syslog = FragmentingSysLogHandler(procname,
('localhost', 514),
syslog_facility)
syslog.setLevel(level)
syslog.setFormatter(
logging.Formatter('%(name)s[%(process)d]: %(message)s'))
logging.root.addHandler(syslog)
except socket.error:
logging.root.error("Failed to activate syslogging")
except:
print("Failed to activate syslogging")
def add_file_handler(to_file, level=logging.DEBUG):
"""Add a logging handler that logs to to_file."""
filelog = logging.FileHandler(to_file)
filelog.setLevel(level)
filelog.setFormatter(
logging.Formatter('%(asctime)s %(name)s[%(process)d]: %(message)s'))
logging.root.addHandler(filelog)
def setup_logging(procname, to_console=True, to_syslog=True,
syslog_facility='daemon', level=0, to_file=None):
"""Setup logging for Bcfg2 software."""
if hasattr(logging, 'already_setup'):
return
params = []
if to_console:
if to_console == True:
to_console = logging.WARNING
if level == 0:
clvl = to_console
else:
clvl = min(to_console, level)
params.append("%s to console" % logging.getLevelName(clvl))
add_console_handler(clvl)
if to_syslog:
if level == 0:
slvl = logging.INFO
else:
slvl = min(level, logging.INFO)
params.append("%s to syslog" % logging.getLevelName(slvl))
add_syslog_handler(procname, syslog_facility, level=slvl)
if to_file is not None:
params.append("%s to %s" % (logging.getLevelName(level), to_file))
add_file_handler(to_file, level=level)
logging.root.setLevel(logging.DEBUG)
logging.root.debug("Configured logging: %s" % "; ".join(params))
logging.already_setup = True
|