2015-01-19 18:03:23 +01:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, https://www.qubes-os.org/
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
|
|
# Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
|
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
2015-01-19 18:03:23 +01:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
2015-01-19 18:03:23 +01:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-10-12 00:11:50 +02:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2015-01-19 18:03:23 +01:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, see <https://www.gnu.org/licenses/>.
|
2015-01-19 18:03:23 +01:00
|
|
|
#
|
2014-11-17 16:25:14 +01:00
|
|
|
|
|
|
|
'''Qubes logging routines
|
|
|
|
|
2015-01-19 18:03:23 +01:00
|
|
|
See also: :py:attr:`qubes.vm.qubesvm.QubesVM.log`
|
2014-11-17 16:25:14 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import sys
|
2016-11-03 22:46:02 +01:00
|
|
|
import fcntl
|
2014-11-17 16:25:14 +01:00
|
|
|
|
2015-10-01 21:55:47 +02:00
|
|
|
import dbus
|
|
|
|
|
2014-11-17 16:25:14 +01:00
|
|
|
FORMAT_CONSOLE = '%(message)s'
|
|
|
|
FORMAT_LOG = '%(asctime)s %(message)s'
|
2015-01-19 17:06:30 +01:00
|
|
|
FORMAT_DEBUG = '%(asctime)s ' \
|
|
|
|
'[%(processName)s %(module)s.%(funcName)s:%(lineno)d] %(name)s: %(message)s'
|
2014-11-17 16:25:14 +01:00
|
|
|
LOGPATH = '/var/log/qubes'
|
|
|
|
LOGFILE = os.path.join(LOGPATH, 'qubes.log')
|
|
|
|
|
|
|
|
formatter_console = logging.Formatter(FORMAT_CONSOLE)
|
|
|
|
formatter_log = logging.Formatter(FORMAT_LOG)
|
|
|
|
formatter_debug = logging.Formatter(FORMAT_DEBUG)
|
|
|
|
|
2015-10-01 21:55:47 +02:00
|
|
|
class DBusHandler(logging.Handler):
|
|
|
|
'''Handler which displays records as DBus notifications'''
|
|
|
|
|
|
|
|
#: mapping of loglevels to icons
|
|
|
|
app_icons = {
|
|
|
|
logging.ERROR: 'dialog-error',
|
|
|
|
logging.WARNING: 'dialog-warning',
|
|
|
|
logging.NOTSET: 'dialog-information',
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DBusHandler, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
self._notify_object = dbus.SessionBus().get_object(
|
|
|
|
'org.freedesktop.Notifications', '/org/freedesktop/Notifications')
|
|
|
|
|
|
|
|
|
2015-10-05 23:46:25 +02:00
|
|
|
def emit(self, record):
|
2015-10-01 21:55:47 +02:00
|
|
|
app_icon = self.app_icons[
|
|
|
|
max(level for level in self.app_icons if level <= record.levelno)]
|
|
|
|
|
|
|
|
try:
|
|
|
|
# https://developer.gnome.org/notification-spec/#command-notify
|
|
|
|
self._notify_object.Notify(
|
|
|
|
'Qubes', # STRING app_name
|
|
|
|
0, # UINT32 replaces_id
|
|
|
|
app_icon, # STRING app_icon
|
|
|
|
record.msg, # STRING summary
|
|
|
|
'', # STRING body
|
|
|
|
(), # ARRAY actions
|
|
|
|
{}, # DICT hints
|
|
|
|
0, # INT32 timeout
|
|
|
|
dbus_interface='org.freedesktop.Notifications')
|
|
|
|
except dbus.DBusException:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2014-11-17 16:25:14 +01:00
|
|
|
def enable():
|
|
|
|
'''Enable global logging
|
|
|
|
|
|
|
|
Use :py:mod:`logging` module from standard library to log messages.
|
|
|
|
|
|
|
|
>>> import qubes.log
|
|
|
|
>>> qubes.log.enable() # doctest: +SKIP
|
|
|
|
>>> import logging
|
|
|
|
>>> logging.warning('Foobar') # doctest: +SKIP
|
|
|
|
'''
|
2015-01-19 18:03:23 +01:00
|
|
|
|
2014-11-17 16:25:14 +01:00
|
|
|
if logging.root.handlers:
|
|
|
|
return
|
|
|
|
|
|
|
|
handler_console = logging.StreamHandler(sys.stderr)
|
|
|
|
handler_console.setFormatter(formatter_console)
|
|
|
|
logging.root.addHandler(handler_console)
|
|
|
|
|
2016-11-03 02:58:18 +01:00
|
|
|
if os.path.exists('/var/log/qubes'):
|
|
|
|
log_path = '/var/log/qubes/qubes.log'
|
|
|
|
else:
|
|
|
|
# for tests, travis etc
|
|
|
|
log_path = '/tmp/qubes.log'
|
|
|
|
old_umask = os.umask(0o007)
|
|
|
|
try:
|
|
|
|
handler_log = logging.FileHandler(log_path, 'a', encoding='utf-8')
|
2016-11-03 22:46:02 +01:00
|
|
|
fcntl.fcntl(handler_log.stream.fileno(),
|
|
|
|
fcntl.F_SETFD, fcntl.FD_CLOEXEC)
|
2016-11-03 02:58:18 +01:00
|
|
|
finally:
|
|
|
|
os.umask(old_umask)
|
2014-11-17 16:25:14 +01:00
|
|
|
handler_log.setFormatter(formatter_log)
|
|
|
|
logging.root.addHandler(handler_log)
|
|
|
|
|
|
|
|
logging.root.setLevel(logging.INFO)
|
|
|
|
|
|
|
|
def enable_debug():
|
|
|
|
'''Enable debug logging
|
|
|
|
|
|
|
|
Enable more messages and additional info to message format.
|
|
|
|
'''
|
|
|
|
|
|
|
|
enable()
|
|
|
|
logging.root.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
for handler in logging.root.handlers:
|
|
|
|
handler.setFormatter(formatter_debug)
|
|
|
|
|
|
|
|
def get_vm_logger(vmname):
|
|
|
|
'''Initialise logging for particular VM name
|
|
|
|
|
|
|
|
:param str vmname: VM's name
|
|
|
|
:rtype: :py:class:`logging.Logger`
|
|
|
|
'''
|
|
|
|
|
|
|
|
logger = logging.getLogger('vm.' + vmname)
|
2016-02-10 16:58:33 +01:00
|
|
|
if logger.handlers:
|
|
|
|
return logger
|
2016-11-02 06:12:02 +01:00
|
|
|
old_umask = os.umask(0o007)
|
|
|
|
try:
|
|
|
|
handler = logging.FileHandler(
|
|
|
|
os.path.join(LOGPATH, 'vm-{}.log'.format(vmname)))
|
2016-11-03 22:46:02 +01:00
|
|
|
fcntl.fcntl(handler.stream.fileno(),
|
|
|
|
fcntl.F_SETFD, fcntl.FD_CLOEXEC)
|
2016-11-02 06:12:02 +01:00
|
|
|
finally:
|
|
|
|
os.umask(old_umask)
|
2014-11-17 16:25:14 +01:00
|
|
|
handler.setFormatter(formatter_log)
|
|
|
|
logger.addHandler(handler)
|
|
|
|
|
|
|
|
return logger
|