2014-05-18 21:01:21 +02:00
|
|
|
#!/usr/bin/python2
|
|
|
|
# -*- coding: utf-8 -*-
|
2015-10-05 23:46:25 +02:00
|
|
|
# pylint: skip-file
|
|
|
|
|
2014-05-18 21:01:21 +02:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Rafal Wojtczuk <rafal@invisiblethingslab.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
#
|
2015-10-01 22:14:35 +02:00
|
|
|
import ConfigParser
|
2010-08-30 11:40:19 +02:00
|
|
|
import SocketServer
|
2015-10-01 22:14:35 +02:00
|
|
|
import logging
|
|
|
|
import logging.handlers
|
2010-08-30 11:40:19 +02:00
|
|
|
import os
|
2013-05-04 04:33:58 +02:00
|
|
|
import socket
|
2015-10-01 22:14:35 +02:00
|
|
|
import sys
|
|
|
|
import thread
|
2012-03-28 00:21:01 +02:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
import xen.lowlevel.xs
|
|
|
|
|
|
|
|
import qubes.qmemman
|
|
|
|
import qubes.qmemman.algo
|
|
|
|
import qubes.utils
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
SOCK_PATH = '/var/run/qubes/qmemman.sock'
|
|
|
|
LOG_PATH = '/var/log/qubes/qmemman.log'
|
2010-08-30 11:40:19 +02:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
system_state = qubes.qmemman.SystemState()
|
2010-08-30 11:40:19 +02:00
|
|
|
global_lock = thread.allocate_lock()
|
2016-01-14 04:37:02 +01:00
|
|
|
# If XS_Watcher will
|
|
|
|
# handle meminfo event before @introduceDomain, it will use
|
|
|
|
# incomplete domain list for that and may redistribute memory
|
|
|
|
# allocated to some VM, but not yet used (see #1389).
|
|
|
|
# To fix that, system_state should be updated (refresh domain
|
|
|
|
# list) before processing other changes, every time some process requested
|
|
|
|
# memory for a new VM, before releasing the lock. Then XS_Watcher will check
|
|
|
|
# this flag before processing other event.
|
|
|
|
force_refresh_domain_list = False
|
2010-08-30 11:40:19 +02:00
|
|
|
|
|
|
|
def only_in_first_list(l1, l2):
|
2015-10-01 22:14:35 +02:00
|
|
|
ret = []
|
2010-08-30 11:40:19 +02:00
|
|
|
for i in l1:
|
|
|
|
if not i in l2:
|
|
|
|
ret.append(i)
|
|
|
|
return ret
|
|
|
|
|
2011-05-04 17:58:28 +02:00
|
|
|
def get_domain_meminfo_key(domain_id):
|
2010-08-30 11:40:19 +02:00
|
|
|
return '/local/domain/'+domain_id+'/memory/meminfo'
|
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
|
|
|
|
class WatchType(object):
|
2010-08-30 11:40:19 +02:00
|
|
|
def __init__(self, fn, param):
|
|
|
|
self.fn = fn
|
|
|
|
self.param = param
|
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
class XS_Watcher(object):
|
2010-08-30 11:40:19 +02:00
|
|
|
def __init__(self):
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log = logging.getLogger('qmemman.daemon.xswatcher')
|
|
|
|
self.log.debug('XS_Watcher()')
|
|
|
|
|
2010-08-30 11:40:19 +02:00
|
|
|
self.handle = xen.lowlevel.xs.xs()
|
2016-01-14 04:37:02 +01:00
|
|
|
self.handle.watch('@introduceDomain', WatchType(
|
|
|
|
XS_Watcher.domain_list_changed, False))
|
|
|
|
self.handle.watch('@releaseDomain', WatchType(
|
|
|
|
XS_Watcher.domain_list_changed, False))
|
2010-08-30 11:40:19 +02:00
|
|
|
self.watch_token_dict = {}
|
|
|
|
|
2016-01-14 04:37:02 +01:00
|
|
|
def domain_list_changed(self, refresh_only=False):
|
|
|
|
"""
|
|
|
|
Check if any domain was created/destroyed. If it was, update
|
|
|
|
appropriate list. Then redistribute memory.
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2016-01-14 04:37:02 +01:00
|
|
|
:param refresh_only If True, only refresh domain list, do not
|
|
|
|
redistribute memory. In this mode, caller must already hold
|
|
|
|
global_lock.
|
|
|
|
"""
|
|
|
|
self.log.debug('domain_list_changed(only_refresh={!r})'.format(
|
|
|
|
refresh_only))
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2016-01-14 04:37:02 +01:00
|
|
|
got_lock = False
|
|
|
|
if not refresh_only:
|
|
|
|
self.log.debug('acquiring global_lock')
|
|
|
|
global_lock.acquire()
|
|
|
|
got_lock = True
|
|
|
|
self.log.debug('global_lock acquired')
|
2016-01-14 03:32:18 +01:00
|
|
|
try:
|
2016-01-14 04:34:53 +01:00
|
|
|
curr = self.handle.ls('', '/local/domain')
|
|
|
|
if curr is None:
|
|
|
|
return
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2016-01-14 04:34:53 +01:00
|
|
|
# check if domain is really there, it may happen that some empty
|
|
|
|
# directories are left in xenstore
|
|
|
|
curr = filter(
|
|
|
|
lambda x:
|
|
|
|
self.handle.read('',
|
|
|
|
'/local/domain/{}/domid'.format(x)
|
|
|
|
) is not None,
|
|
|
|
curr
|
|
|
|
)
|
|
|
|
self.log.debug('curr={!r}'.format(curr))
|
|
|
|
|
2016-01-14 03:32:18 +01:00
|
|
|
for i in only_in_first_list(curr, self.watch_token_dict.keys()):
|
2016-01-14 04:34:53 +01:00
|
|
|
# new domain has been created
|
2016-01-14 03:32:18 +01:00
|
|
|
watch = WatchType(XS_Watcher.meminfo_changed, i)
|
|
|
|
self.watch_token_dict[i] = watch
|
|
|
|
self.handle.watch(get_domain_meminfo_key(i), watch)
|
|
|
|
system_state.add_domain(i)
|
|
|
|
|
|
|
|
for i in only_in_first_list(self.watch_token_dict.keys(), curr):
|
2016-01-14 04:34:53 +01:00
|
|
|
# domain destroyed
|
2016-01-14 03:32:18 +01:00
|
|
|
self.handle.unwatch(get_domain_meminfo_key(i), self.watch_token_dict[i])
|
|
|
|
self.watch_token_dict.pop(i)
|
|
|
|
system_state.del_domain(i)
|
|
|
|
finally:
|
2016-01-14 04:37:02 +01:00
|
|
|
if got_lock:
|
|
|
|
global_lock.release()
|
|
|
|
self.log.debug('global_lock released')
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2016-01-14 04:37:02 +01:00
|
|
|
if not refresh_only:
|
|
|
|
system_state.do_balance()
|
2010-08-30 11:40:19 +02:00
|
|
|
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2011-05-04 17:58:28 +02:00
|
|
|
def meminfo_changed(self, domain_id):
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log.debug('meminfo_changed(domain_id={!r})'.format(domain_id))
|
2015-10-01 22:14:35 +02:00
|
|
|
untrusted_meminfo_key = self.handle.read(
|
|
|
|
'', get_domain_meminfo_key(domain_id))
|
2011-05-04 17:10:01 +02:00
|
|
|
if untrusted_meminfo_key == None or untrusted_meminfo_key == '':
|
2010-08-30 11:40:19 +02:00
|
|
|
return
|
2015-03-17 16:45:00 +01:00
|
|
|
|
|
|
|
self.log.debug('acquiring global_lock')
|
2010-08-30 11:40:19 +02:00
|
|
|
global_lock.acquire()
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log.debug('global_lock acquired')
|
2016-01-14 04:37:02 +01:00
|
|
|
if force_refresh_domain_list:
|
|
|
|
self.domain_list_changed(refresh_only=True)
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2011-05-04 17:10:01 +02:00
|
|
|
system_state.refresh_meminfo(domain_id, untrusted_meminfo_key)
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2010-08-30 11:40:19 +02:00
|
|
|
global_lock.release()
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log.debug('global_lock released')
|
|
|
|
|
2010-08-30 11:40:19 +02:00
|
|
|
|
|
|
|
def watch_loop(self):
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log.debug('watch_loop()')
|
2010-08-30 11:40:19 +02:00
|
|
|
while True:
|
|
|
|
result = self.handle.read_watch()
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log.debug('watch_loop result={!r}'.format(result))
|
2010-08-30 11:40:19 +02:00
|
|
|
token = result[1]
|
|
|
|
token.fn(self, token.param)
|
|
|
|
|
|
|
|
|
|
|
|
class QMemmanReqHandler(SocketServer.BaseRequestHandler):
|
|
|
|
"""
|
|
|
|
The RequestHandler class for our server.
|
|
|
|
|
|
|
|
It is instantiated once per connection to the server, and must
|
|
|
|
override the handle() method to implement communication to the
|
|
|
|
client.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def handle(self):
|
2015-03-17 16:45:00 +01:00
|
|
|
self.log = logging.getLogger('qmemman.daemon.reqhandler')
|
|
|
|
|
2010-08-30 14:50:48 +02:00
|
|
|
got_lock = False
|
2016-02-22 17:56:43 +01:00
|
|
|
try:
|
|
|
|
# self.request is the TCP socket connected to the client
|
|
|
|
while True:
|
|
|
|
self.data = self.request.recv(1024).strip()
|
|
|
|
self.log.debug('data={!r}'.format(self.data))
|
|
|
|
if len(self.data) == 0:
|
|
|
|
self.log.info('EOF')
|
|
|
|
if got_lock:
|
|
|
|
global force_refresh_domain_list
|
|
|
|
force_refresh_domain_list = True
|
|
|
|
return
|
|
|
|
|
|
|
|
# XXX something is wrong here: return without release?
|
2010-08-30 14:50:48 +02:00
|
|
|
if got_lock:
|
2016-02-22 17:56:43 +01:00
|
|
|
self.log.warning('Second request over qmemman.sock?')
|
|
|
|
return
|
|
|
|
|
|
|
|
self.log.debug('acquiring global_lock')
|
|
|
|
global_lock.acquire()
|
|
|
|
self.log.debug('global_lock acquired')
|
|
|
|
|
|
|
|
got_lock = True
|
|
|
|
if system_state.do_balloon(int(self.data)):
|
|
|
|
resp = "OK\n"
|
|
|
|
else:
|
|
|
|
resp = "FAIL\n"
|
|
|
|
self.log.debug('resp={!r}'.format(resp))
|
|
|
|
self.request.send(resp)
|
|
|
|
except BaseException as e:
|
|
|
|
self.log.exception(
|
|
|
|
"exception while handling request: {!r}".format(e))
|
|
|
|
finally:
|
2010-08-30 14:50:48 +02:00
|
|
|
if got_lock:
|
2016-02-22 17:56:43 +01:00
|
|
|
global_lock.release()
|
|
|
|
self.log.debug('global_lock released')
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2010-08-30 11:40:19 +02:00
|
|
|
|
2015-10-05 17:34:13 +02:00
|
|
|
parser = qubes.tools.QubesArgumentParser(want_app=False)
|
2010-08-30 11:40:19 +02:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
parser.add_argument('--config', '-c', metavar='FILE',
|
|
|
|
action='store', default='/etc/qubes/qmemman.conf',
|
|
|
|
help='qmemman config file')
|
2015-03-17 16:45:00 +01:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
parser.add_argument('--foreground',
|
|
|
|
action='store_true', default=False,
|
|
|
|
help='do not close stdio')
|
2015-03-17 16:45:00 +01:00
|
|
|
|
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
def main():
|
|
|
|
args = parser.parse_args()
|
2012-03-28 00:21:01 +02:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
# setup logging
|
|
|
|
ha_syslog = logging.handlers.SysLogHandler('/dev/log')
|
|
|
|
ha_syslog.setFormatter(
|
|
|
|
logging.Formatter('%(name)s[%(process)d]: %(message)s'))
|
|
|
|
logging.root.addHandler(ha_syslog)
|
|
|
|
|
|
|
|
# leave log for backwards compatibility
|
|
|
|
ha_file = logging.FileHandler(LOG_PATH)
|
|
|
|
ha_file.setFormatter(
|
|
|
|
logging.Formatter('%(asctime)s %(name)s[%(process)d]: %(message)s'))
|
|
|
|
logging.root.addHandler(ha_file)
|
|
|
|
|
|
|
|
if args.foreground:
|
|
|
|
ha_stderr = logging.StreamHandler(sys.stderr)
|
|
|
|
ha_file.setFormatter(
|
|
|
|
logging.Formatter('%(asctime)s %(name)s[%(process)d]: %(message)s'))
|
|
|
|
logging.root.addHandler(ha_stderr)
|
|
|
|
else:
|
2015-03-17 16:45:00 +01:00
|
|
|
# close io
|
|
|
|
sys.stdout.close()
|
|
|
|
sys.stderr.close()
|
2012-07-20 16:32:17 +02:00
|
|
|
|
2015-10-01 22:14:35 +02:00
|
|
|
sys.stdin.close()
|
|
|
|
|
2015-10-05 13:46:06 +02:00
|
|
|
logging.root.setLevel(parser.get_loglevel_from_verbosity(args))
|
2015-10-01 22:14:35 +02:00
|
|
|
|
|
|
|
log = logging.getLogger('qmemman.daemon')
|
|
|
|
|
|
|
|
config = ConfigParser.SafeConfigParser({
|
|
|
|
'vm-min-mem': str(qubes.qmemman.algo.MIN_PREFMEM),
|
|
|
|
'dom0-mem-boost': str(qubes.qmemman.algo.DOM0_MEM_BOOST),
|
|
|
|
'cache-margin-factor': str(qubes.qmemman.algo.CACHE_FACTOR)
|
|
|
|
})
|
|
|
|
config.read(args.config)
|
|
|
|
|
|
|
|
if config.has_section('global'):
|
|
|
|
qubes.qmemman.algo.MIN_PREFMEM = \
|
|
|
|
qubes.utils.parse_size(config.get('global', 'vm-min-mem'))
|
|
|
|
qubes.qmemman.algo.DOM0_MEM_BOOST = \
|
|
|
|
qubes.utils.parse_size(config.get('global', 'dom0-mem-boost'))
|
|
|
|
qubes.qmemman.algo.CACHE_FACTOR = \
|
|
|
|
config.getfloat('global', 'cache-margin-factor')
|
|
|
|
|
|
|
|
log.info('MIN_PREFMEM={algo.MIN_PREFMEM}'
|
|
|
|
' DOM0_MEM_BOOST={algo.DOM0_MEM_BOOST}'
|
|
|
|
' CACHE_FACTOR={algo.CACHE_FACTOR}'.format(
|
|
|
|
algo=qubes.qmemman.algo))
|
|
|
|
|
|
|
|
try:
|
|
|
|
os.unlink(SOCK_PATH)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
log.debug('instantiating server')
|
|
|
|
os.umask(0)
|
|
|
|
server = SocketServer.UnixStreamServer(SOCK_PATH, QMemmanReqHandler)
|
|
|
|
os.umask(077)
|
|
|
|
|
|
|
|
# notify systemd
|
|
|
|
nofity_socket = os.getenv('NOTIFY_SOCKET')
|
|
|
|
if nofity_socket:
|
|
|
|
log.debug('notifying systemd')
|
|
|
|
s = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
|
|
|
|
if nofity_socket.startswith('@'):
|
|
|
|
nofity_socket = '\0%s' % nofity_socket[1:]
|
|
|
|
s.connect(nofity_socket)
|
|
|
|
s.sendall("READY=1")
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
thread.start_new_thread(server.serve_forever, ())
|
|
|
|
XS_Watcher().watch_loop()
|