chiark / gitweb /
db35ba20056b3f0986b3b2e82806562d91118f10
[elogind.git] / src / python-systemd / journal.py
1 #  -*- Mode: python; coding:utf-8; indent-tabs-mode: nil -*- */
2 #
3 #  This file is part of systemd.
4 #
5 #  Copyright 2012 David Strauss <david@davidstrauss.net>
6 #  Copyright 2012 Zbigniew JÄ™drzejewski-Szmek <zbyszek@in.waw.pl>
7 #  Copyright 2012 Marti Raudsepp <marti@juffo.org>
8 #
9 #  systemd is free software; you can redistribute it and/or modify it
10 #  under the terms of the GNU Lesser General Public License as published by
11 #  the Free Software Foundation; either version 2.1 of the License, or
12 #  (at your option) any later version.
13 #
14 #  systemd is distributed in the hope that it will be useful, but
15 #  WITHOUT ANY WARRANTY; without even the implied warranty of
16 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 #  Lesser General Public License for more details.
18 #
19 #  You should have received a copy of the GNU Lesser General Public License
20 #  along with systemd; If not, see <http://www.gnu.org/licenses/>.
21
22 import datetime
23 import functools
24 import sys
25 import uuid
26 import traceback as _traceback
27 import os as _os
28 import logging as _logging
29 if sys.version_info >= (3,):
30     from collections import ChainMap
31 from syslog import (LOG_EMERG, LOG_ALERT, LOG_CRIT, LOG_ERR,
32                     LOG_WARNING, LOG_NOTICE, LOG_INFO, LOG_DEBUG)
33 from ._journal import sendv, stream_fd
34 from ._reader import (_Journal, NOP, APPEND, INVALIDATE,
35                       LOCAL_ONLY, RUNTIME_ONLY, SYSTEM_ONLY)
36 from . import id128 as _id128
37
38 _MONOTONIC_CONVERTER = lambda x: datetime.timedelta(microseconds=float(x))
39 _REALTIME_CONVERTER = lambda x: datetime.datetime.fromtimestamp(float(x)/1E6)
40 DEFAULT_CONVERTERS = {
41     'MESSAGE_ID': uuid.UUID,
42     'PRIORITY': int,
43     'LEADER': int,
44     'SESSION_ID': int,
45     'USERSPACE_USEC': int,
46     'INITRD_USEC': int,
47     'KERNEL_USEC': int,
48     '_UID': int,
49     '_GID': int,
50     '_PID': int,
51     'SYSLOG_FACILITY': int,
52     'SYSLOG_PID': int,
53     '_AUDIT_SESSION': int,
54     '_AUDIT_LOGINUID': int,
55     '_SYSTEMD_SESSION': int,
56     '_SYSTEMD_OWNER_UID': int,
57     'CODE_LINE': int,
58     'ERRNO': int,
59     'EXIT_STATUS': int,
60     '_SOURCE_REALTIME_TIMESTAMP': _REALTIME_CONVERTER,
61     '__REALTIME_TIMESTAMP': _REALTIME_CONVERTER,
62     '_SOURCE_MONOTONIC_TIMESTAMP': _MONOTONIC_CONVERTER,
63     '__MONOTONIC_TIMESTAMP': _MONOTONIC_CONVERTER,
64     'COREDUMP': bytes,
65     'COREDUMP_PID': int,
66     'COREDUMP_UID': int,
67     'COREDUMP_GID': int,
68     'COREDUMP_SESSION': int,
69     'COREDUMP_SIGNAL': int,
70     'COREDUMP_TIMESTAMP': _REALTIME_CONVERTER,
71 }
72
73 if sys.version_info >= (3,):
74     _convert_unicode = functools.partial(str, encoding='utf-8')
75 else:
76     _convert_unicode = functools.partial(unicode, encoding='utf-8')
77
78 class Journal(_Journal):
79     def __init__(self, converters=None, *args, **kwargs):
80         super(Journal, self).__init__(*args, **kwargs)
81         if sys.version_info >= (3,3):
82             self.converters = ChainMap()
83             if converters is not None:
84                 self.converters.maps.append(converters)
85             self.converters.maps.append(DEFAULT_CONVERTERS)
86         else:
87             # suitable fallback, e.g.
88             self.converters = DEFAULT_CONVERTERS.copy()
89             if converters is not None:
90                 self.converters.update(converters)
91
92     def _convert_field(self, key, value):
93         try:
94             result = self.converters[key](value)
95         except:
96             # Default conversion in unicode
97             try:
98                 result = _convert_unicode(value)
99             except:
100                 # Leave in default bytes
101                 result = value
102         return result
103
104     def _convert_entry(self, entry):
105         result = {}
106         for key, value in entry.items():
107             if isinstance(value, list):
108                 result[key] = [self._convert_field(key, val) for val in value]
109             else:
110                 result[key] = self._convert_field(key, value)
111         return result
112
113     def add_match(self, *args, **kwargs):
114         args = list(args)
115         args.extend(_make_line(key, val) for key, val in kwargs.items())
116         super(Journal, self).add_match(*args)
117
118     def get_next(self, skip=1):
119         return self._convert_entry(
120             super(Journal, self).get_next(skip))
121
122     def query_unique(self, key):
123         return set(self._convert_field(key, value)
124             for value in super(Journal, self).query_unique(key))
125
126     def log_level(self, level):
127         """Sets maximum log level by setting matches for PRIORITY."""
128         if 0 <= level <= 7:
129             for i in range(level+1):
130                 self.add_match(PRIORITY="%s" % i)
131         else:
132             raise ValueError("Log level must be 0 <= level <= 7")
133
134     def this_boot(self):
135         """Add match for _BOOT_ID equal to current boot ID."""
136         self.add_match(_BOOT_ID=_id128.get_boot().hex)
137
138     def this_machine(self):
139         """Add match for _MACHINE_ID equal to the ID of this machine."""
140         self.add_match(_MACHINE_ID=_id128.get_machine().hex)
141
142 def _make_line(field, value):
143         if isinstance(value, bytes):
144                 return field.encode('utf-8') + b'=' + value
145         else:
146                 return field + '=' + value
147
148 def send(MESSAGE, MESSAGE_ID=None,
149          CODE_FILE=None, CODE_LINE=None, CODE_FUNC=None,
150          **kwargs):
151         r"""Send a message to the journal.
152
153         >>> journal.send('Hello world')
154         >>> journal.send('Hello, again, world', FIELD2='Greetings!')
155         >>> journal.send('Binary message', BINARY=b'\xde\xad\xbe\xef')
156
157         Value of the MESSAGE argument will be used for the MESSAGE=
158         field. MESSAGE must be a string and will be sent as UTF-8 to
159         the journal.
160
161         MESSAGE_ID can be given to uniquely identify the type of
162         message. It must be a string or a uuid.UUID object.
163
164         CODE_LINE, CODE_FILE, and CODE_FUNC can be specified to
165         identify the caller. Unless at least on of the three is given,
166         values are extracted from the stack frame of the caller of
167         send(). CODE_FILE and CODE_FUNC must be strings, CODE_LINE
168         must be an integer.
169
170         Additional fields for the journal entry can only be specified
171         as keyword arguments. The payload can be either a string or
172         bytes. A string will be sent as UTF-8, and bytes will be sent
173         as-is to the journal.
174
175         Other useful fields include PRIORITY, SYSLOG_FACILITY,
176         SYSLOG_IDENTIFIER, SYSLOG_PID.
177         """
178
179         args = ['MESSAGE=' + MESSAGE]
180
181         if MESSAGE_ID is not None:
182                 id = getattr(MESSAGE_ID, 'hex', MESSAGE_ID)
183                 args.append('MESSAGE_ID=' + id)
184
185         if CODE_LINE == CODE_FILE == CODE_FUNC == None:
186                 CODE_FILE, CODE_LINE, CODE_FUNC = \
187                         _traceback.extract_stack(limit=2)[0][:3]
188         if CODE_FILE is not None:
189                 args.append('CODE_FILE=' + CODE_FILE)
190         if CODE_LINE is not None:
191                 args.append('CODE_LINE={:d}'.format(CODE_LINE))
192         if CODE_FUNC is not None:
193                 args.append('CODE_FUNC=' + CODE_FUNC)
194
195         args.extend(_make_line(key, val) for key, val in kwargs.items())
196         return sendv(*args)
197
198 def stream(identifier, priority=LOG_DEBUG, level_prefix=False):
199         r"""Return a file object wrapping a stream to journal.
200
201         Log messages written to this file as simple newline sepearted
202         text strings are written to the journal.
203
204         The file will be line buffered, so messages are actually sent
205         after a newline character is written.
206
207         >>> stream = journal.stream('myapp')
208         >>> stream
209         <open file '<fdopen>', mode 'w' at 0x...>
210         >>> stream.write('message...\n')
211
212         will produce the following message in the journal::
213
214           PRIORITY=7
215           SYSLOG_IDENTIFIER=myapp
216           MESSAGE=message...
217
218         Using the interface with print might be more convinient:
219
220         >>> from __future__ import print_function
221         >>> print('message...', file=stream)
222
223         priority is the syslog priority, one of `LOG_EMERG`,
224         `LOG_ALERT`, `LOG_CRIT`, `LOG_ERR`, `LOG_WARNING`,
225         `LOG_NOTICE`, `LOG_INFO`, `LOG_DEBUG`.
226
227         level_prefix is a boolean. If true, kernel-style log priority
228         level prefixes (such as '<1>') are interpreted. See
229         sd-daemon(3) for more information.
230         """
231
232         fd = stream_fd(identifier, priority, level_prefix)
233         return _os.fdopen(fd, 'w', 1)
234
235 class JournalHandler(_logging.Handler):
236         """Journal handler class for the Python logging framework.
237
238         Please see the Python logging module documentation for an
239         overview: http://docs.python.org/library/logging.html.
240
241         To create a custom logger whose messages go only to journal:
242
243         >>> log = logging.getLogger('custom_logger_name')
244         >>> log.propagate = False
245         >>> log.addHandler(journal.JournalHandler())
246         >>> log.warn("Some message: %s", detail)
247
248         Note that by default, message levels `INFO` and `DEBUG` are
249         ignored by the logging framework. To enable those log levels:
250
251         >>> log.setLevel(logging.DEBUG)
252
253         To attach journal MESSAGE_ID, an extra field is supported:
254
255         >>> import uuid
256         >>> mid = uuid.UUID('0123456789ABCDEF0123456789ABCDEF')
257         >>> log.warn("Message with ID", extra={'MESSAGE_ID': mid})
258
259         To redirect all logging messages to journal regardless of where
260         they come from, attach it to the root logger:
261
262         >>> logging.root.addHandler(journal.JournalHandler())
263
264         For more complex configurations when using `dictConfig` or
265         `fileConfig`, specify `systemd.journal.JournalHandler` as the
266         handler class.  Only standard handler configuration options
267         are supported: `level`, `formatter`, `filters`.
268
269         The following journal fields will be sent:
270         `MESSAGE`, `PRIORITY`, `THREAD_NAME`, `CODE_FILE`, `CODE_LINE`,
271         `CODE_FUNC`, `LOGGER` (name as supplied to getLogger call),
272         `MESSAGE_ID` (optional, see above).
273         """
274
275         def emit(self, record):
276                 """Write record as journal event.
277
278                 MESSAGE is taken from the message provided by the
279                 user, and PRIORITY, LOGGER, THREAD_NAME,
280                 CODE_{FILE,LINE,FUNC} fields are appended
281                 automatically. In addition, record.MESSAGE_ID will be
282                 used if present.
283                 """
284                 try:
285                         msg = self.format(record)
286                         pri = self.mapPriority(record.levelno)
287                         mid = getattr(record, 'MESSAGE_ID', None)
288                         send(msg,
289                              MESSAGE_ID=mid,
290                              PRIORITY=format(pri),
291                              LOGGER=record.name,
292                              THREAD_NAME=record.threadName,
293                              CODE_FILE=record.pathname,
294                              CODE_LINE=record.lineno,
295                              CODE_FUNC=record.funcName)
296                 except Exception:
297                         self.handleError(record)
298
299         @staticmethod
300         def mapPriority(levelno):
301                 """Map logging levels to journald priorities.
302
303                 Since Python log level numbers are "sparse", we have
304                 to map numbers in between the standard levels too.
305                 """
306                 if levelno <= _logging.DEBUG:
307                         return LOG_DEBUG
308                 elif levelno <= _logging.INFO:
309                         return LOG_INFO
310                 elif levelno <= _logging.WARNING:
311                         return LOG_WARNING
312                 elif levelno <= _logging.ERROR:
313                         return LOG_ERR
314                 elif levelno <= _logging.CRITICAL:
315                         return LOG_CRIT
316                 else:
317                         return LOG_ALERT