2012-10-09 01:18:49 +02:00
|
|
|
#!/usr/bin/python
|
2014-05-18 21:01:21 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2011-09-29 13:52:26 +02:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2011 Marek Marczykowski <marmarek@invisiblethingslab.com>
|
2014-04-24 21:50:12 +02:00
|
|
|
# Copyright (C) 2014 Wojciech Porczyk <wojciech@porczyk.eu>
|
2011-09-29 13:52:26 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#
|
2014-12-26 02:56:38 +01:00
|
|
|
|
2015-03-29 17:33:02 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
import string
|
2016-05-26 01:38:08 +02:00
|
|
|
import errno
|
2014-12-12 03:58:33 +01:00
|
|
|
from lxml import etree
|
|
|
|
from lxml.etree import ElementTree, SubElement, Element
|
2011-09-29 13:52:26 +02:00
|
|
|
|
2015-03-29 17:33:02 +02:00
|
|
|
from qubes.qubes import QubesException
|
2015-11-07 00:21:16 +01:00
|
|
|
from qubes.qubes import vmm,defaults
|
2015-03-29 17:33:02 +02:00
|
|
|
from qubes.qubes import system_path,vm_files
|
2011-09-29 13:52:26 +02:00
|
|
|
import sys
|
2011-10-31 13:31:17 +01:00
|
|
|
import os
|
2011-09-29 13:52:26 +02:00
|
|
|
import subprocess
|
|
|
|
import re
|
2012-02-07 16:09:35 +01:00
|
|
|
import time
|
2014-03-05 00:45:46 +01:00
|
|
|
import stat
|
2014-12-26 02:56:38 +01:00
|
|
|
import libvirt
|
2015-03-29 17:33:02 +02:00
|
|
|
from qubes.qdb import QubesDB,Error,DisconnectedError
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
import xen.lowlevel.xc
|
|
|
|
import xen.lowlevel.xs
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
# all frontends, prefer xvdi
|
|
|
|
# TODO: get this from libvirt driver?
|
|
|
|
AVAILABLE_FRONTENDS = ['xvd'+c for c in
|
|
|
|
string.lowercase[8:]+string.lowercase[:8]]
|
|
|
|
|
2016-07-12 06:26:25 +02:00
|
|
|
class USBProxyNotInstalled(QubesException):
|
|
|
|
pass
|
|
|
|
|
2011-09-29 13:52:26 +02:00
|
|
|
def mbytes_to_kmg(size):
|
|
|
|
if size > 1024:
|
2012-02-07 16:22:04 +01:00
|
|
|
return "%d GiB" % (size/1024)
|
2011-09-29 13:52:26 +02:00
|
|
|
else:
|
2012-02-07 16:22:04 +01:00
|
|
|
return "%d MiB" % size
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
def kbytes_to_kmg(size):
|
|
|
|
if size > 1024:
|
|
|
|
return mbytes_to_kmg(size/1024)
|
|
|
|
else:
|
2012-02-07 16:22:04 +01:00
|
|
|
return "%d KiB" % size
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
def bytes_to_kmg(size):
|
|
|
|
if size > 1024:
|
|
|
|
return kbytes_to_kmg(size/1024)
|
|
|
|
else:
|
|
|
|
return "%d B" % size
|
|
|
|
|
2012-02-07 16:09:35 +01:00
|
|
|
def size_to_human (size):
|
|
|
|
"""Humane readable size, with 1/10 precission"""
|
|
|
|
if size < 1024:
|
|
|
|
return str (size);
|
|
|
|
elif size < 1024*1024:
|
|
|
|
return str(round(size/1024.0,1)) + ' KiB'
|
|
|
|
elif size < 1024*1024*1024:
|
|
|
|
return str(round(size/(1024.0*1024),1)) + ' MiB'
|
|
|
|
else:
|
|
|
|
return str(round(size/(1024.0*1024*1024),1)) + ' GiB'
|
|
|
|
|
2012-02-10 10:54:18 +01:00
|
|
|
def print_stdout(text):
|
|
|
|
print (text)
|
|
|
|
|
|
|
|
def print_stderr(text):
|
|
|
|
print >> sys.stderr, (text)
|
2011-09-29 13:52:26 +02:00
|
|
|
|
2012-04-11 01:35:51 +02:00
|
|
|
###### Block devices ########
|
|
|
|
|
2011-09-29 13:52:26 +02:00
|
|
|
def block_devid_to_name(devid):
|
|
|
|
major = devid / 256
|
|
|
|
minor = devid % 256
|
|
|
|
|
|
|
|
dev_class = ""
|
|
|
|
if major == 202:
|
|
|
|
dev_class = "xvd"
|
|
|
|
elif major == 8:
|
|
|
|
dev_class = "sd"
|
|
|
|
else:
|
|
|
|
raise QubesException("Unknown device class %d" % major)
|
|
|
|
|
|
|
|
if minor % 16 == 0:
|
|
|
|
return "%s%c" % (dev_class, ord('a')+minor/16)
|
|
|
|
else:
|
|
|
|
return "%s%c%d" % (dev_class, ord('a')+minor/16, minor%16)
|
|
|
|
|
|
|
|
def block_name_to_majorminor(name):
|
|
|
|
# check if it is already devid
|
|
|
|
if isinstance(name, int):
|
|
|
|
return (name / 256, name % 256)
|
|
|
|
if name.isdigit():
|
|
|
|
return (int(name) / 256, int(name) % 256)
|
|
|
|
|
2014-03-05 00:45:46 +01:00
|
|
|
if os.path.exists('/dev/%s' % name):
|
|
|
|
blk_info = os.stat(os.path.realpath('/dev/%s' % name))
|
|
|
|
if stat.S_ISBLK(blk_info.st_mode):
|
|
|
|
return (blk_info.st_rdev / 256, blk_info.st_rdev % 256)
|
|
|
|
|
2011-09-29 13:52:26 +02:00
|
|
|
major = 0
|
|
|
|
minor = 0
|
2012-03-15 10:58:57 +01:00
|
|
|
dXpY_style = False
|
2011-09-29 13:52:26 +02:00
|
|
|
disk = True
|
2012-08-26 14:41:35 +02:00
|
|
|
|
|
|
|
if name.startswith("xvd"):
|
2011-09-29 13:52:26 +02:00
|
|
|
major = 202
|
2012-08-26 14:41:35 +02:00
|
|
|
elif name.startswith("sd"):
|
2011-09-29 13:52:26 +02:00
|
|
|
major = 8
|
2012-08-26 14:41:35 +02:00
|
|
|
elif name.startswith("mmcblk"):
|
|
|
|
dXpY_style = True
|
2012-03-15 10:58:57 +01:00
|
|
|
major = 179
|
2011-09-29 13:52:26 +02:00
|
|
|
elif name.startswith("scd"):
|
|
|
|
disk = False
|
|
|
|
major = 11
|
|
|
|
elif name.startswith("sr"):
|
|
|
|
disk = False
|
|
|
|
major = 11
|
2012-03-26 20:29:49 +02:00
|
|
|
elif name.startswith("loop"):
|
2014-09-19 00:35:13 +02:00
|
|
|
dXpY_style = True
|
2012-03-26 20:29:49 +02:00
|
|
|
disk = False
|
|
|
|
major = 7
|
2012-03-09 00:04:36 +01:00
|
|
|
elif name.startswith("md"):
|
2014-01-08 06:42:29 +01:00
|
|
|
dXpY_style = True
|
2012-03-09 00:04:36 +01:00
|
|
|
major = 9
|
2013-11-16 01:29:50 +01:00
|
|
|
elif name.startswith("dm-"):
|
|
|
|
disk = False
|
|
|
|
major = 253
|
2011-09-29 13:52:26 +02:00
|
|
|
else:
|
2012-03-09 00:00:20 +01:00
|
|
|
# Unknown device
|
|
|
|
return (0, 0)
|
2011-09-29 13:52:26 +02:00
|
|
|
|
2012-08-26 14:41:35 +02:00
|
|
|
if not dXpY_style:
|
2014-06-07 04:54:15 +02:00
|
|
|
name_match = re.match(r"^([a-z]+)([a-z-])([0-9]*)$", name)
|
2012-08-26 14:41:35 +02:00
|
|
|
else:
|
|
|
|
name_match = re.match(r"^([a-z]+)([0-9]*)(?:p([0-9]+))?$", name)
|
|
|
|
if not name_match:
|
|
|
|
raise QubesException("Invalid device name: %s" % name)
|
|
|
|
|
2011-09-29 13:52:26 +02:00
|
|
|
if disk:
|
2012-03-15 10:58:57 +01:00
|
|
|
if dXpY_style:
|
|
|
|
minor = int(name_match.group(2))*8
|
|
|
|
else:
|
|
|
|
minor = (ord(name_match.group(2))-ord('a')) * 16
|
2011-09-29 13:52:26 +02:00
|
|
|
else:
|
|
|
|
minor = 0
|
|
|
|
if name_match.group(3):
|
|
|
|
minor += int(name_match.group(3))
|
|
|
|
|
|
|
|
return (major, minor)
|
|
|
|
|
|
|
|
|
|
|
|
def block_name_to_devid(name):
|
|
|
|
# check if it is already devid
|
|
|
|
if isinstance(name, int):
|
|
|
|
return name
|
|
|
|
if name.isdigit():
|
|
|
|
return int(name)
|
|
|
|
|
|
|
|
(major, minor) = block_name_to_majorminor(name)
|
|
|
|
return major << 8 | minor
|
|
|
|
|
2012-02-14 20:57:43 +01:00
|
|
|
def block_find_unused_frontend(vm = None):
|
|
|
|
assert vm is not None
|
|
|
|
assert vm.is_running()
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
xml = vm.libvirt_domain.XMLDesc()
|
|
|
|
parsed_xml = etree.fromstring(xml)
|
|
|
|
used = [target.get('dev', None) for target in
|
|
|
|
parsed_xml.xpath("//domain/devices/disk/target")]
|
|
|
|
for dev in AVAILABLE_FRONTENDS:
|
|
|
|
if dev not in used:
|
|
|
|
return dev
|
2012-02-14 20:57:43 +01:00
|
|
|
return None
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
def block_list_vm(vm, system_disks = False):
|
|
|
|
name_re = re.compile(r"^[a-z0-9-]{1,12}$")
|
|
|
|
device_re = re.compile(r"^[a-z0-9/-]{1,64}$")
|
2011-09-29 13:52:26 +02:00
|
|
|
# FIXME: any better idea of desc_re?
|
|
|
|
desc_re = re.compile(r"^.{1,255}$")
|
|
|
|
mode_re = re.compile(r"^[rw]$")
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
assert vm is not None
|
2012-10-08 00:48:20 +02:00
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
if not vm.is_running():
|
|
|
|
return []
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
devices_list = {}
|
|
|
|
|
2015-03-26 22:10:49 +01:00
|
|
|
try:
|
|
|
|
untrusted_devices = vm.qdb.multiread('/qubes-block-devices/')
|
2015-03-29 23:47:39 +02:00
|
|
|
except Error:
|
2015-03-29 17:22:15 +02:00
|
|
|
vm.refresh()
|
2015-03-26 22:10:49 +01:00
|
|
|
return {}
|
2014-12-12 03:58:33 +01:00
|
|
|
|
|
|
|
def get_dev_item(dev, item):
|
|
|
|
return untrusted_devices.get(
|
|
|
|
'/qubes-block-devices/%s/%s' % (dev, item),
|
|
|
|
None)
|
|
|
|
|
|
|
|
untrusted_devices_names = list(set(map(lambda x: x.split("/")[2],
|
|
|
|
untrusted_devices.keys())))
|
|
|
|
for untrusted_dev_name in untrusted_devices_names:
|
|
|
|
if name_re.match(untrusted_dev_name):
|
|
|
|
dev_name = untrusted_dev_name
|
|
|
|
untrusted_device_size = get_dev_item(dev_name, 'size')
|
|
|
|
untrusted_device_desc = get_dev_item(dev_name, 'desc')
|
|
|
|
untrusted_device_mode = get_dev_item(dev_name, 'mode')
|
|
|
|
untrusted_device_device = get_dev_item(dev_name, 'device')
|
|
|
|
if untrusted_device_desc is None or untrusted_device_mode is None\
|
|
|
|
or untrusted_device_size is None:
|
|
|
|
print >>sys.stderr, "Missing field in %s device parameters" %\
|
|
|
|
dev_name
|
2012-03-30 00:19:15 +02:00
|
|
|
continue
|
2014-12-12 03:58:33 +01:00
|
|
|
if untrusted_device_device is None:
|
|
|
|
untrusted_device_device = '/dev/' + dev_name
|
|
|
|
if not device_re.match(untrusted_device_device):
|
|
|
|
print >> sys.stderr, "Invalid %s device path in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
2011-09-29 13:52:26 +02:00
|
|
|
continue
|
2014-12-12 03:58:33 +01:00
|
|
|
device_device = untrusted_device_device
|
|
|
|
if not untrusted_device_size.isdigit():
|
|
|
|
print >> sys.stderr, "Invalid %s device size in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
2011-09-29 13:52:26 +02:00
|
|
|
continue
|
2014-12-12 03:58:33 +01:00
|
|
|
device_size = int(untrusted_device_size)
|
|
|
|
if not desc_re.match(untrusted_device_desc):
|
|
|
|
print >> sys.stderr, "Invalid %s device desc in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
2011-09-29 13:52:26 +02:00
|
|
|
continue
|
2014-12-12 03:58:33 +01:00
|
|
|
device_desc = untrusted_device_desc
|
|
|
|
if not mode_re.match(untrusted_device_mode):
|
|
|
|
print >> sys.stderr, "Invalid %s device mode in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
2012-03-09 00:00:20 +01:00
|
|
|
continue
|
2014-12-12 03:58:33 +01:00
|
|
|
device_mode = untrusted_device_mode
|
2012-03-27 12:59:47 +02:00
|
|
|
|
|
|
|
if not system_disks:
|
2014-12-12 03:58:33 +01:00
|
|
|
if vm.qid == 0 and device_desc.startswith(system_path[
|
|
|
|
"qubes_base_dir"]):
|
2012-03-27 12:59:47 +02:00
|
|
|
continue
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
visible_name = "%s:%s" % (vm.name, dev_name)
|
|
|
|
devices_list[visible_name] = {
|
|
|
|
"name": visible_name,
|
|
|
|
"vm": vm.name,
|
|
|
|
"device": device_device,
|
|
|
|
"size": device_size,
|
|
|
|
"desc": device_desc,
|
|
|
|
"mode": device_mode
|
|
|
|
}
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
return devices_list
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
def block_list(qvmc = None, vm = None, system_disks = False):
|
|
|
|
if vm is not None:
|
|
|
|
if not vm.is_running():
|
|
|
|
return []
|
|
|
|
else:
|
|
|
|
vm_list = [ vm ]
|
|
|
|
else:
|
|
|
|
if qvmc is None:
|
|
|
|
raise QubesException("You must pass either qvm or vm argument")
|
|
|
|
vm_list = qvmc.values()
|
|
|
|
|
|
|
|
devices_list = {}
|
|
|
|
for vm in vm_list:
|
|
|
|
devices_list.update(block_list_vm(vm, system_disks))
|
|
|
|
return devices_list
|
|
|
|
|
|
|
|
def block_check_attached(qvmc, device):
|
|
|
|
"""
|
|
|
|
|
|
|
|
@type qvmc: QubesVmCollection
|
|
|
|
"""
|
|
|
|
if qvmc is None:
|
|
|
|
# TODO: ValueError
|
|
|
|
raise QubesException("You need to pass qvmc argument")
|
|
|
|
|
|
|
|
for vm in qvmc.values():
|
2015-04-14 23:07:54 +02:00
|
|
|
if vm.qid == 0:
|
|
|
|
# Connecting devices to dom0 not supported
|
|
|
|
continue
|
2015-07-01 04:42:44 +02:00
|
|
|
if not vm.is_running():
|
|
|
|
continue
|
2015-03-29 23:38:36 +02:00
|
|
|
try:
|
|
|
|
libvirt_domain = vm.libvirt_domain
|
|
|
|
if libvirt_domain:
|
|
|
|
xml = libvirt_domain.XMLDesc()
|
|
|
|
else:
|
|
|
|
xml = None
|
|
|
|
except libvirt.libvirtError:
|
|
|
|
if vmm.libvirt_conn.virConnGetLastError()[0] == libvirt.VIR_ERR_NO_DOMAIN:
|
2015-04-14 23:07:54 +02:00
|
|
|
xml = None
|
2015-03-29 23:38:36 +02:00
|
|
|
else:
|
|
|
|
raise
|
|
|
|
if xml:
|
2014-12-12 03:58:33 +01:00
|
|
|
parsed_xml = etree.fromstring(xml)
|
|
|
|
disks = parsed_xml.xpath("//domain/devices/disk")
|
|
|
|
for disk in disks:
|
|
|
|
backend_name = 'dom0'
|
2015-07-13 00:58:11 +02:00
|
|
|
if disk.find('backenddomain') is not None:
|
|
|
|
backend_name = disk.find('backenddomain').get('name')
|
2014-12-12 03:58:33 +01:00
|
|
|
source = disk.find('source')
|
|
|
|
if disk.get('type') == 'file':
|
|
|
|
path = source.get('file')
|
|
|
|
elif disk.get('type') == 'block':
|
|
|
|
path = source.get('dev')
|
2012-02-14 20:55:51 +01:00
|
|
|
else:
|
2014-12-12 03:58:33 +01:00
|
|
|
# TODO: logger
|
|
|
|
print >>sys.stderr, "Unknown disk type '%s' attached to " \
|
|
|
|
"VM '%s'" % (source.get('type'),
|
|
|
|
vm.name)
|
|
|
|
continue
|
|
|
|
if backend_name == device['vm'] and path == device['device']:
|
|
|
|
return {
|
|
|
|
"frontend": disk.find('target').get('dev'),
|
|
|
|
"vm": vm}
|
2011-09-29 13:52:26 +02:00
|
|
|
return None
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
def device_attach_check(vm, backend_vm, device, frontend, mode):
|
2012-10-09 23:15:47 +02:00
|
|
|
""" Checks all the parameters, dies on errors """
|
2011-09-29 13:52:26 +02:00
|
|
|
if not vm.is_running():
|
|
|
|
raise QubesException("VM %s not running" % vm.name)
|
|
|
|
|
|
|
|
if not backend_vm.is_running():
|
|
|
|
raise QubesException("VM %s not running" % backend_vm.name)
|
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
if device['mode'] == 'r' and mode == 'w':
|
|
|
|
raise QubesException("Cannot attach read-only device in read-write "
|
|
|
|
"mode")
|
|
|
|
|
|
|
|
def block_attach(qvmc, vm, device, frontend=None, mode="w", auto_detach=False, wait=True):
|
|
|
|
backend_vm = qvmc.get_vm_by_name(device['vm'])
|
|
|
|
device_attach_check(vm, backend_vm, device, frontend, mode)
|
2012-02-14 20:57:43 +01:00
|
|
|
if frontend is None:
|
|
|
|
frontend = block_find_unused_frontend(vm)
|
|
|
|
if frontend is None:
|
|
|
|
raise QubesException("No unused frontend found")
|
|
|
|
else:
|
|
|
|
# Check if any device attached at this frontend
|
2014-12-12 03:58:33 +01:00
|
|
|
xml = vm.libvirt_domain.XMLDesc()
|
|
|
|
parsed_xml = etree.fromstring(xml)
|
|
|
|
disks = parsed_xml.xpath("//domain/devices/disk/target[@dev='%s']" %
|
|
|
|
frontend)
|
|
|
|
if len(disks):
|
2012-02-14 20:57:43 +01:00
|
|
|
raise QubesException("Frontend %s busy in VM %s, detach it first" % (frontend, vm.name))
|
2011-09-29 13:52:26 +02:00
|
|
|
|
|
|
|
# Check if this device is attached to some domain
|
2014-12-12 03:58:33 +01:00
|
|
|
attached_vm = block_check_attached(qvmc, device)
|
2011-09-29 13:52:26 +02:00
|
|
|
if attached_vm:
|
|
|
|
if auto_detach:
|
2014-12-12 03:58:33 +01:00
|
|
|
block_detach(attached_vm['vm'], attached_vm['frontend'])
|
2011-09-29 13:52:26 +02:00
|
|
|
else:
|
2014-12-12 03:58:33 +01:00
|
|
|
raise QubesException("Device %s from %s already connected to VM "
|
|
|
|
"%s as %s" % (device['device'],
|
|
|
|
backend_vm.name, attached_vm['vm'], attached_vm['frontend']))
|
|
|
|
|
|
|
|
disk = Element("disk")
|
|
|
|
disk.set('type', 'block')
|
|
|
|
disk.set('device', 'disk')
|
|
|
|
SubElement(disk, 'driver').set('name', 'phy')
|
|
|
|
SubElement(disk, 'source').set('dev', device['device'])
|
|
|
|
SubElement(disk, 'target').set('dev', frontend)
|
|
|
|
if backend_vm.qid != 0:
|
2015-04-04 16:18:10 +02:00
|
|
|
SubElement(disk, 'backenddomain').set('name', device['vm'])
|
2014-12-12 03:58:33 +01:00
|
|
|
vm.libvirt_domain.attachDevice(etree.tostring(disk, encoding='utf-8'))
|
2015-04-14 23:08:52 +02:00
|
|
|
try:
|
|
|
|
# trigger watches to update device status
|
|
|
|
# FIXME: this should be removed once libvirt will report such
|
|
|
|
# events itself
|
|
|
|
vm.qdb.write('/qubes-block-devices', '')
|
|
|
|
except Error:
|
|
|
|
pass
|
2014-12-12 03:58:33 +01:00
|
|
|
|
|
|
|
def block_detach(vm, frontend = "xvdi"):
|
|
|
|
|
|
|
|
xml = vm.libvirt_domain.XMLDesc()
|
|
|
|
parsed_xml = etree.fromstring(xml)
|
|
|
|
attached = parsed_xml.xpath("//domain/devices/disk")
|
|
|
|
for disk in attached:
|
|
|
|
if frontend is not None and disk.find('target').get('dev') != frontend:
|
|
|
|
# Not the device we are looking for
|
|
|
|
continue
|
|
|
|
if frontend is None:
|
|
|
|
# ignore system disks
|
|
|
|
if disk.find('domain') == None and \
|
|
|
|
disk.find('source').get('dev').startswith(system_path[
|
|
|
|
"qubes_base_dir"]):
|
|
|
|
continue
|
|
|
|
vm.libvirt_domain.detachDevice(etree.tostring(disk, encoding='utf-8'))
|
2015-04-14 23:08:52 +02:00
|
|
|
try:
|
|
|
|
# trigger watches to update device status
|
|
|
|
# FIXME: this should be removed once libvirt will report such
|
|
|
|
# events itself
|
|
|
|
vm.qdb.write('/qubes-block-devices', '')
|
|
|
|
except Error:
|
|
|
|
pass
|
2011-09-29 13:52:26 +02:00
|
|
|
|
2014-12-12 03:58:33 +01:00
|
|
|
def block_detach_all(vm):
|
2012-04-13 00:29:13 +02:00
|
|
|
""" Detach all non-system devices"""
|
2014-12-12 03:58:33 +01:00
|
|
|
|
|
|
|
block_detach(vm, None)
|
2012-04-13 00:29:13 +02:00
|
|
|
|
2012-10-08 00:44:40 +02:00
|
|
|
####### USB devices ######
|
|
|
|
|
2012-10-26 23:30:55 +02:00
|
|
|
usb_ver_re = re.compile(r"^(1|2)$")
|
2012-11-07 01:33:19 +01:00
|
|
|
usb_device_re = re.compile(r"^[0-9]+-[0-9]+(_[0-9]+)?$")
|
2012-11-07 17:43:41 +01:00
|
|
|
usb_port_re = re.compile(r"^$|^[0-9]+-[0-9]+(\.[0-9]+)?$")
|
2016-05-26 01:38:08 +02:00
|
|
|
usb_desc_re = re.compile(r"^[ -~]{1,255}$")
|
|
|
|
# should match valid VM name
|
|
|
|
usb_connected_to_re = re.compile(r"^[a-zA-Z][a-zA-Z0-9_.-]*$")
|
2012-10-26 23:30:55 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
def usb_decode_device_from_qdb(qdb_encoded_device):
|
|
|
|
""" recover actual device name (xenstore doesn't allow dot in key names, so it was translated to underscore) """
|
|
|
|
return qdb_encoded_device.replace('_', '.')
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
def usb_encode_device_for_qdb(device):
|
|
|
|
""" encode actual device name (xenstore doesn't allow dot in key names, so translated it into underscore) """
|
|
|
|
return device.replace('.', '_')
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
def usb_list_vm(qvmc, vm):
|
2016-05-26 01:38:08 +02:00
|
|
|
if not vm.is_running():
|
|
|
|
return {}
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
try:
|
|
|
|
untrusted_devices = vm.qdb.multiread('/qubes-usb-devices/')
|
|
|
|
except Error:
|
|
|
|
vm.refresh()
|
|
|
|
return {}
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
def get_dev_item(dev, item):
|
|
|
|
return untrusted_devices.get(
|
|
|
|
'/qubes-usb-devices/%s/%s' % (dev, item),
|
|
|
|
None)
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
devices = {}
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
untrusted_devices_names = list(set(map(lambda x: x.split("/")[2],
|
|
|
|
untrusted_devices.keys())))
|
|
|
|
for untrusted_dev_name in untrusted_devices_names:
|
|
|
|
if usb_device_re.match(untrusted_dev_name):
|
|
|
|
dev_name = untrusted_dev_name
|
|
|
|
untrusted_device_desc = get_dev_item(dev_name, 'desc')
|
|
|
|
if not usb_desc_re.match(untrusted_device_desc):
|
|
|
|
print >> sys.stderr, "Invalid %s device desc in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
|
|
|
continue
|
|
|
|
device_desc = untrusted_device_desc
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
untrusted_connected_to = get_dev_item(dev_name, 'connected-to')
|
|
|
|
if untrusted_connected_to:
|
|
|
|
if not usb_connected_to_re.match(untrusted_connected_to):
|
|
|
|
print >>sys.stderr, \
|
|
|
|
"Invalid %s device 'connected-to' in VM '%s'" % (
|
|
|
|
dev_name, vm.name)
|
|
|
|
continue
|
2016-06-02 02:44:38 +02:00
|
|
|
connected_to = qvmc.get_vm_by_name(untrusted_connected_to)
|
|
|
|
if connected_to is None:
|
|
|
|
print >>sys.stderr, \
|
|
|
|
"Device {} appears to be connected to {}, " \
|
|
|
|
"but such VM doesn't exist".format(
|
|
|
|
dev_name, untrusted_connected_to)
|
2016-05-26 01:38:08 +02:00
|
|
|
else:
|
|
|
|
connected_to = None
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
device = usb_decode_device_from_qdb(dev_name)
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
full_name = vm.name + ':' + device
|
2012-10-10 22:01:06 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
devices[full_name] = {
|
|
|
|
'vm': vm,
|
|
|
|
'device': device,
|
|
|
|
'qdb_path': '/qubes-usb-devices/' + dev_name,
|
|
|
|
'name': full_name,
|
|
|
|
'desc': device_desc,
|
|
|
|
'connected-to': connected_to,
|
|
|
|
}
|
|
|
|
return devices
|
2012-11-07 01:14:12 +01:00
|
|
|
|
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
def usb_list(qvmc, vm=None):
|
2012-10-10 16:54:23 +02:00
|
|
|
"""
|
|
|
|
Returns a dictionary of USB devices (for PVUSB backends running in all VM).
|
|
|
|
The dictionary is keyed by 'name' (see below), each element is a dictionary itself:
|
2016-05-26 01:38:08 +02:00
|
|
|
vm = backend domain object
|
|
|
|
device = device ID
|
|
|
|
name = <backend-vm>:<device>
|
2012-10-10 16:54:23 +02:00
|
|
|
desc = description
|
|
|
|
"""
|
2016-05-26 01:38:08 +02:00
|
|
|
if vm is not None:
|
|
|
|
if not vm.is_running():
|
|
|
|
return {}
|
|
|
|
else:
|
|
|
|
vm_list = [vm]
|
|
|
|
else:
|
|
|
|
vm_list = qvmc.values()
|
2012-10-08 00:44:40 +02:00
|
|
|
|
|
|
|
devices_list = {}
|
2016-05-26 01:38:08 +02:00
|
|
|
for vm in vm_list:
|
2016-06-02 02:44:38 +02:00
|
|
|
devices_list.update(usb_list_vm(qvmc, vm))
|
2012-10-08 00:44:40 +02:00
|
|
|
return devices_list
|
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
def usb_check_attached(qvmc, device):
|
2016-05-26 01:38:08 +02:00
|
|
|
"""Reread device attachment status"""
|
|
|
|
vm = device['vm']
|
|
|
|
untrusted_connected_to = vm.qdb.read(
|
|
|
|
'{}/connected-to'.format(device['qdb_path']))
|
|
|
|
if untrusted_connected_to:
|
|
|
|
if not usb_connected_to_re.match(untrusted_connected_to):
|
|
|
|
raise QubesException(
|
|
|
|
"Invalid %s device 'connected-to' in VM '%s'" % (
|
|
|
|
device['device'], vm.name))
|
2016-06-02 02:44:38 +02:00
|
|
|
connected_to = qvmc.get_vm_by_name(untrusted_connected_to)
|
|
|
|
if connected_to is None:
|
|
|
|
print >>sys.stderr, \
|
|
|
|
"Device {} appears to be connected to {}, " \
|
|
|
|
"but such VM doesn't exist".format(
|
|
|
|
device['device'], untrusted_connected_to)
|
2012-10-09 23:15:47 +02:00
|
|
|
else:
|
2016-05-26 01:38:08 +02:00
|
|
|
connected_to = None
|
|
|
|
return connected_to
|
2012-10-09 23:15:47 +02:00
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
def usb_attach(qvmc, vm, device, auto_detach=False, wait=True):
|
2016-05-26 01:38:08 +02:00
|
|
|
if not vm.is_running():
|
|
|
|
raise QubesException("VM {} not running".format(vm.name))
|
2012-10-12 23:34:18 +02:00
|
|
|
|
2016-05-26 01:38:08 +02:00
|
|
|
if not device['vm'].is_running():
|
|
|
|
raise QubesException("VM {} not running".format(device['vm'].name))
|
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
connected_to = usb_check_attached(qvmc, device)
|
2016-05-26 01:38:08 +02:00
|
|
|
if connected_to:
|
2012-10-09 23:15:47 +02:00
|
|
|
if auto_detach:
|
2016-06-02 02:44:38 +02:00
|
|
|
usb_detach(qvmc, device)
|
2012-10-09 23:15:47 +02:00
|
|
|
else:
|
2016-05-26 01:38:08 +02:00
|
|
|
raise QubesException("Device {} already connected, to {}".format(
|
|
|
|
device['name'], connected_to
|
|
|
|
))
|
|
|
|
|
|
|
|
# set qrexec policy to allow this device
|
|
|
|
policy_line = '{} {} allow\n'.format(vm.name, device['vm'].name)
|
|
|
|
policy_path = '/etc/qubes-rpc/policy/qubes.USB+{}'.format(device['device'])
|
|
|
|
policy_exists = os.path.exists(policy_path)
|
|
|
|
if not policy_exists:
|
|
|
|
try:
|
|
|
|
fd = os.open(policy_path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)
|
|
|
|
with os.fdopen(fd, 'w') as f:
|
|
|
|
f.write(policy_line)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno == errno.EEXIST:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
with open(policy_path, 'r+') as f:
|
|
|
|
policy = f.readlines()
|
|
|
|
policy.insert(0, policy_line)
|
|
|
|
f.truncate(0)
|
|
|
|
f.seek(0)
|
|
|
|
f.write(''.join(policy))
|
|
|
|
try:
|
|
|
|
# and actual attach
|
|
|
|
p = vm.run_service('qubes.USBAttach', passio_popen=True, user='root')
|
|
|
|
(stdout, stderr) = p.communicate(
|
|
|
|
'{} {}\n'.format(device['vm'].name, device['device']))
|
2016-07-12 06:26:25 +02:00
|
|
|
if p.returncode == 127:
|
|
|
|
raise USBProxyNotInstalled(
|
|
|
|
"qubes-usb-proxy not installed in the VM")
|
|
|
|
elif p.returncode != 0:
|
2016-05-26 01:38:08 +02:00
|
|
|
# TODO: sanitize and include stdout
|
2016-07-12 06:26:25 +02:00
|
|
|
sanitized_stderr = ''.join([c for c in stderr if ord(c) >= 0x20])
|
|
|
|
raise QubesException('Device attach failed: {}'.format(
|
|
|
|
sanitized_stderr))
|
2016-05-26 01:38:08 +02:00
|
|
|
finally:
|
|
|
|
# FIXME: there is a race condition here - some other process might
|
|
|
|
# modify the file in the meantime. This may result in unexpected
|
|
|
|
# denials, but will not allow too much
|
|
|
|
if not policy_exists:
|
|
|
|
os.unlink(policy_path)
|
|
|
|
else:
|
|
|
|
with open(policy_path, 'r+') as f:
|
|
|
|
policy = f.readlines()
|
|
|
|
policy.remove('{} {} allow\n'.format(vm.name, device['vm'].name))
|
|
|
|
f.truncate(0)
|
|
|
|
f.seek(0)
|
|
|
|
f.write(''.join(policy))
|
|
|
|
|
2016-06-02 02:44:38 +02:00
|
|
|
def usb_detach(qvmc, vm, device):
|
|
|
|
connected_to = usb_check_attached(qvmc, device)
|
2016-05-26 01:38:08 +02:00
|
|
|
# detect race conditions; there is still race here, but much smaller
|
2016-06-02 02:44:38 +02:00
|
|
|
if connected_to is None or connected_to.qid != vm.qid:
|
2016-05-26 01:38:08 +02:00
|
|
|
raise QubesException(
|
2016-06-02 02:44:38 +02:00
|
|
|
"Device {} not connected to VM {}".format(
|
|
|
|
device['name'], vm.name))
|
2016-05-26 01:38:08 +02:00
|
|
|
|
2016-06-02 02:45:26 +02:00
|
|
|
p = device['vm'].run_service('qubes.USBDetach', passio_popen=True,
|
|
|
|
user='root')
|
2016-05-26 01:38:08 +02:00
|
|
|
(stdout, stderr) = p.communicate(
|
2016-06-02 02:45:26 +02:00
|
|
|
'{}\n'.format(device['device']))
|
2016-05-26 01:38:08 +02:00
|
|
|
if p.returncode != 0:
|
|
|
|
# TODO: sanitize and include stdout
|
|
|
|
raise QubesException('Device detach failed')
|
2012-10-08 23:08:54 +02:00
|
|
|
|
2016-06-02 02:49:22 +02:00
|
|
|
def usb_detach_all(qvmc, vm):
|
|
|
|
for dev in usb_list(qvmc).values():
|
|
|
|
connected_to = dev['connected-to']
|
|
|
|
if connected_to is not None and connected_to.qid == vm.qid:
|
|
|
|
usb_detach(qvmc, connected_to, dev)
|
2012-10-08 23:08:54 +02:00
|
|
|
|
2012-04-11 01:35:51 +02:00
|
|
|
####### QubesWatch ######
|
|
|
|
|
2012-04-11 01:34:17 +02:00
|
|
|
def only_in_first_list(l1, l2):
|
|
|
|
ret=[]
|
|
|
|
for i in l1:
|
|
|
|
if not i in l2:
|
|
|
|
ret.append(i)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
class QubesWatch(object):
|
|
|
|
def __init__(self):
|
2014-12-26 02:56:38 +01:00
|
|
|
self._qdb = {}
|
|
|
|
self._qdb_events = {}
|
2012-04-11 01:34:17 +02:00
|
|
|
self.block_callback = None
|
2014-03-31 03:42:05 +02:00
|
|
|
self.meminfo_callback = None
|
2012-04-11 01:34:17 +02:00
|
|
|
self.domain_callback = None
|
2015-11-07 00:21:16 +01:00
|
|
|
libvirt.virEventRegisterDefaultImpl()
|
|
|
|
# open new libvirt connection because above
|
|
|
|
# virEventRegisterDefaultImpl is in practice effective only for new
|
|
|
|
# connections
|
|
|
|
self.libvirt_conn = libvirt.open(defaults['libvirt_uri'])
|
|
|
|
self.libvirt_conn.domainEventRegisterAny(
|
2014-12-26 02:56:38 +01:00
|
|
|
None,
|
|
|
|
libvirt.VIR_DOMAIN_EVENT_ID_LIFECYCLE,
|
|
|
|
self._domain_list_changed, None)
|
2015-11-07 00:21:16 +01:00
|
|
|
self.libvirt_conn.domainEventRegisterAny(
|
2014-12-26 02:56:38 +01:00
|
|
|
None,
|
|
|
|
libvirt.VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED,
|
|
|
|
self._device_removed, None)
|
|
|
|
# TODO: device attach libvirt event
|
|
|
|
for vm in vmm.libvirt_conn.listAllDomains():
|
2015-03-29 23:38:36 +02:00
|
|
|
try:
|
|
|
|
if vm.isActive():
|
|
|
|
self._register_watches(vm)
|
2015-11-07 00:20:24 +01:00
|
|
|
except libvirt.libvirtError as e:
|
2015-03-29 23:38:36 +02:00
|
|
|
# this will happen if we loose a race with another tool,
|
|
|
|
# which can just remove the domain
|
2015-11-07 00:20:24 +01:00
|
|
|
if e.get_error_code() == libvirt.VIR_ERR_NO_DOMAIN:
|
2015-03-29 23:38:36 +02:00
|
|
|
pass
|
2016-07-18 15:07:02 +02:00
|
|
|
else:
|
|
|
|
raise
|
2014-12-26 02:56:38 +01:00
|
|
|
# and for dom0
|
|
|
|
self._register_watches(None)
|
|
|
|
|
|
|
|
def _qdb_handler(self, watch, fd, events, domain_name):
|
|
|
|
try:
|
|
|
|
path = self._qdb[domain_name].read_watch()
|
|
|
|
except DisconnectedError:
|
|
|
|
libvirt.virEventRemoveHandle(watch)
|
|
|
|
del(self._qdb_events[domain_name])
|
|
|
|
self._qdb[domain_name].close()
|
|
|
|
del(self._qdb[domain_name])
|
|
|
|
return
|
|
|
|
if path.startswith('/qubes-block-devices'):
|
|
|
|
if self.block_callback is not None:
|
|
|
|
self.block_callback(domain_name)
|
|
|
|
|
2012-04-11 01:34:17 +02:00
|
|
|
|
|
|
|
def setup_block_watch(self, callback):
|
|
|
|
self.block_callback = callback
|
|
|
|
|
2014-03-31 03:42:05 +02:00
|
|
|
def setup_meminfo_watch(self, callback):
|
2015-02-07 01:14:22 +01:00
|
|
|
raise NotImplementedError
|
2014-03-31 03:42:05 +02:00
|
|
|
|
2012-04-11 01:34:17 +02:00
|
|
|
def setup_domain_watch(self, callback):
|
|
|
|
self.domain_callback = callback
|
|
|
|
|
2014-03-31 03:42:05 +02:00
|
|
|
def get_meminfo_key(self, xid):
|
|
|
|
return '/local/domain/%s/memory/meminfo' % xid
|
2012-04-11 01:34:17 +02:00
|
|
|
|
2014-12-26 02:56:38 +01:00
|
|
|
def _register_watches(self, libvirt_domain):
|
2016-07-01 12:11:13 +02:00
|
|
|
if libvirt_domain and libvirt_domain.ID() == 0:
|
|
|
|
# don't use libvirt object for dom0, to always have the same
|
|
|
|
# hardcoded "dom0" name
|
|
|
|
libvirt_domain = None
|
2014-12-26 02:56:38 +01:00
|
|
|
if libvirt_domain:
|
|
|
|
name = libvirt_domain.name()
|
|
|
|
if name in self._qdb:
|
|
|
|
return
|
2015-09-25 20:37:44 +02:00
|
|
|
if not libvirt_domain.isActive():
|
|
|
|
return
|
2014-12-26 02:56:38 +01:00
|
|
|
# open separate connection to Qubes DB:
|
|
|
|
# 1. to not confuse pull() with responses to real commands sent from
|
|
|
|
# other threads (like read, write etc) with watch events
|
|
|
|
# 2. to not think whether QubesDB is thread-safe (it isn't)
|
2015-09-25 20:37:44 +02:00
|
|
|
try:
|
|
|
|
self._qdb[name] = QubesDB(name)
|
|
|
|
except Error as e:
|
|
|
|
if e.args[0] != 2:
|
|
|
|
raise
|
|
|
|
libvirt.virEventAddTimeout(500, self._retry_register_watches,
|
|
|
|
libvirt_domain)
|
2015-04-14 23:07:54 +02:00
|
|
|
return
|
2014-12-26 02:56:38 +01:00
|
|
|
else:
|
|
|
|
name = "dom0"
|
2016-07-17 21:35:16 +02:00
|
|
|
if name in self._qdb:
|
|
|
|
return
|
2014-12-26 02:56:38 +01:00
|
|
|
self._qdb[name] = QubesDB(name)
|
2015-09-25 20:37:44 +02:00
|
|
|
try:
|
|
|
|
self._qdb[name].watch('/qubes-block-devices')
|
|
|
|
except Error as e:
|
|
|
|
if e.args[0] == 102: # Connection reset by peer
|
|
|
|
# QubesDB daemon not running - most likely we've connected to
|
|
|
|
# stale daemon which just exited; retry later
|
|
|
|
libvirt.virEventAddTimeout(500, self._retry_register_watches,
|
|
|
|
libvirt_domain)
|
|
|
|
return
|
2014-12-26 02:56:38 +01:00
|
|
|
self._qdb_events[name] = libvirt.virEventAddHandle(
|
|
|
|
self._qdb[name].watch_fd(),
|
|
|
|
libvirt.VIR_EVENT_HANDLE_READABLE,
|
|
|
|
self._qdb_handler, name)
|
|
|
|
|
2015-09-25 20:37:44 +02:00
|
|
|
def _retry_register_watches(self, timer, libvirt_domain):
|
2015-10-27 21:47:01 +01:00
|
|
|
libvirt.virEventRemoveTimeout(timer)
|
2015-09-25 20:37:44 +02:00
|
|
|
self._register_watches(libvirt_domain)
|
|
|
|
|
2014-12-26 02:56:38 +01:00
|
|
|
def _unregister_watches(self, libvirt_domain):
|
2016-07-01 12:11:13 +02:00
|
|
|
if libvirt_domain and libvirt_domain.ID() == 0:
|
|
|
|
name = "dom0"
|
|
|
|
else:
|
|
|
|
name = libvirt_domain.name()
|
2014-12-26 02:56:38 +01:00
|
|
|
if name in self._qdb_events:
|
|
|
|
libvirt.virEventRemoveHandle(self._qdb_events[name])
|
|
|
|
del(self._qdb_events[name])
|
|
|
|
if name in self._qdb:
|
|
|
|
self._qdb[name].close()
|
|
|
|
del(self._qdb[name])
|
|
|
|
|
|
|
|
def _domain_list_changed(self, conn, domain, event, reason, param):
|
2015-09-25 22:02:53 +02:00
|
|
|
# use VIR_DOMAIN_EVENT_RESUMED instead of VIR_DOMAIN_EVENT_STARTED to
|
|
|
|
# make sure that qubesdb daemon is already running
|
|
|
|
if event == libvirt.VIR_DOMAIN_EVENT_RESUMED:
|
2014-12-26 02:56:38 +01:00
|
|
|
self._register_watches(domain)
|
|
|
|
elif event == libvirt.VIR_DOMAIN_EVENT_STOPPED:
|
|
|
|
self._unregister_watches(domain)
|
|
|
|
else:
|
|
|
|
# ignore other events for now
|
|
|
|
return None
|
2012-04-11 01:34:17 +02:00
|
|
|
if self.domain_callback:
|
2015-03-30 00:08:00 +02:00
|
|
|
self.domain_callback(name=domain.name(), uuid=domain.UUID())
|
2012-04-11 01:34:17 +02:00
|
|
|
|
2014-12-26 02:56:38 +01:00
|
|
|
def _device_removed(self, conn, domain, device, param):
|
|
|
|
if self.block_callback is not None:
|
|
|
|
self.block_callback(domain.name())
|
2012-04-11 01:34:17 +02:00
|
|
|
|
|
|
|
def watch_loop(self):
|
|
|
|
while True:
|
2014-12-26 02:56:38 +01:00
|
|
|
libvirt.virEventRunDefaultImpl()
|
2012-04-11 01:34:17 +02:00
|
|
|
|
2014-04-11 07:06:12 +02:00
|
|
|
##### updates check #####
|
|
|
|
|
2016-03-03 01:05:23 +01:00
|
|
|
#
|
|
|
|
# XXX this whole section is a new global property
|
|
|
|
# TODO make event handlers
|
|
|
|
#
|
|
|
|
|
2014-04-11 07:06:12 +02:00
|
|
|
UPDATES_DOM0_DISABLE_FLAG='/var/lib/qubes/updates/disable-updates'
|
2015-08-03 22:43:07 +02:00
|
|
|
UPDATES_DEFAULT_VM_DISABLE_FLAG=\
|
|
|
|
'/var/lib/qubes/updates/vm-default-disable-updates'
|
2014-04-11 07:06:12 +02:00
|
|
|
|
|
|
|
def updates_vms_toggle(qvm_collection, value):
|
2015-08-03 22:43:07 +02:00
|
|
|
# Flag for new VMs
|
|
|
|
if value:
|
|
|
|
if os.path.exists(UPDATES_DEFAULT_VM_DISABLE_FLAG):
|
|
|
|
os.unlink(UPDATES_DEFAULT_VM_DISABLE_FLAG)
|
|
|
|
else:
|
|
|
|
open(UPDATES_DEFAULT_VM_DISABLE_FLAG, "w").close()
|
|
|
|
|
|
|
|
# Change for existing VMs
|
2014-04-11 07:06:12 +02:00
|
|
|
for vm in qvm_collection.values():
|
|
|
|
if vm.qid == 0:
|
|
|
|
continue
|
|
|
|
if value:
|
|
|
|
vm.services.pop('qubes-update-check', None)
|
|
|
|
if vm.is_running():
|
|
|
|
try:
|
|
|
|
vm.run("systemctl start qubes-update-check.timer",
|
|
|
|
user="root")
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
vm.services['qubes-update-check'] = False
|
|
|
|
if vm.is_running():
|
|
|
|
try:
|
|
|
|
vm.run("systemctl stop qubes-update-check.timer",
|
|
|
|
user="root")
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
def updates_dom0_toggle(qvm_collection, value):
|
|
|
|
if value:
|
|
|
|
if os.path.exists(UPDATES_DOM0_DISABLE_FLAG):
|
|
|
|
os.unlink(UPDATES_DOM0_DISABLE_FLAG)
|
|
|
|
else:
|
|
|
|
open(UPDATES_DOM0_DISABLE_FLAG, "w").close()
|
|
|
|
|
|
|
|
def updates_dom0_status(qvm_collection):
|
|
|
|
return not os.path.exists(UPDATES_DOM0_DISABLE_FLAG)
|
|
|
|
|
2015-08-03 22:43:07 +02:00
|
|
|
def updates_vms_status(qvm_collection):
|
|
|
|
# default value:
|
|
|
|
status = not os.path.exists(UPDATES_DEFAULT_VM_DISABLE_FLAG)
|
|
|
|
# check if all the VMs uses the default value
|
|
|
|
for vm in qvm_collection.values():
|
|
|
|
if vm.qid == 0:
|
|
|
|
continue
|
|
|
|
if vm.services.get('qubes-update-check', True) != status:
|
|
|
|
# "mixed"
|
|
|
|
return None
|
|
|
|
return status
|
2014-04-11 07:06:12 +02:00
|
|
|
|
2011-09-29 13:52:26 +02:00
|
|
|
# vim:sw=4:et:
|