Skip to content

Commit

Permalink
Add admin APIs to get all properties at once, and optimize the code
Browse files Browse the repository at this point in the history
This allows MUCH faster qvm-ls and qvm-prefs

The code is optimized to be as fast as possible:
- optimized property access
- gather strings in a list and join them only at the end
  • Loading branch information
qubesuser committed Nov 10, 2017
1 parent 2df2c4d commit 9295834
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 16 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ADMIN_API_METHODS_SIMPLE = \
admin.pool.volume.Revert \
admin.pool.volume.Snapshot \
admin.property.Get \
admin.property.GetAll \
admin.property.GetDefault \
admin.property.Help \
admin.property.HelpRst \
Expand Down Expand Up @@ -79,6 +80,7 @@ ADMIN_API_METHODS_SIMPLE = \
admin.vm.firewall.SetPolicy \
admin.vm.firewall.Reload \
admin.vm.property.Get \
admin.vm.property.GetAll \
admin.vm.property.GetDefault \
admin.vm.property.Help \
admin.vm.property.HelpRst \
Expand Down
3 changes: 3 additions & 0 deletions qubes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ def __get__(self, instance, owner):
except AttributeError:
return self.get_default(instance)

def has_default(self):
return self._default is not self._NO_DEFAULT

def get_default(self, instance):
if self._default is self._NO_DEFAULT:
raise AttributeError(
Expand Down
117 changes: 101 additions & 16 deletions qubes/api/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ def on_domain_delete(self, subject, event, vm):
vm.remove_handler('*', self.vm_handler)


def escape(unescaped_string):
'''Escape a string for the Admin API'''
result = unescaped_string
# TODO: can we do this faster?
result = result.replace("\\", "\\\\") # this must be the first one

result = result.replace("\r", "\\r")
result = result.replace("\n", "\\n")
result = result.replace("\t", "\\t")
result = result.replace("\0", "\\0")
return result

class QubesAdminAPI(qubes.api.AbstractQubesAPI):
'''Implementation of Qubes Management API calls
Expand All @@ -107,6 +119,15 @@ def vmclass_list(self):
return ''.join('{}\n'.format(ep.name)
for ep in entrypoints)

# pylint: disable=no-self-use
def _vm_line_strs(self, strs, vm):
strs.append(vm.name)
strs.append(" class=")
strs.append(vm.__class__.__name__)
strs.append(" state=")
strs.append(vm.get_power_state())
strs.append("\n")

@qubes.api.method('admin.vm.List', no_payload=True,
scope='global', read=True)
@asyncio.coroutine
Expand All @@ -119,11 +140,10 @@ def vm_list(self):
else:
domains = self.fire_event_for_filter([self.dest])

return ''.join('{} class={} state={}\n'.format(
vm.name,
vm.__class__.__name__,
vm.get_power_state())
for vm in sorted(domains))
strs = []
for vm in sorted(domains):
self._vm_line_strs(strs, vm)
return ''.join(strs)

@qubes.api.method('admin.vm.property.List', no_payload=True,
scope='local', read=True)
Expand Down Expand Up @@ -154,6 +174,13 @@ def vm_property_get(self):
'''Get a value of one property'''
return self._property_get(self.dest)

@qubes.api.method('admin.vm.property.GetAll', no_payload=True,
scope='local', read=True)
@asyncio.coroutine
def vm_property_get_all(self):
'''Get the value of all properties'''
return self._property_get_all(self.dest)

@qubes.api.method('admin.property.Get', no_payload=True,
scope='global', read=True)
@asyncio.coroutine
Expand All @@ -162,24 +189,39 @@ def property_get(self):
assert self.dest.name == 'dom0'
return self._property_get(self.app)

def _property_get(self, dest):
if self.arg not in dest.property_list():
raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)

self.fire_event_for_permission()
@qubes.api.method('admin.property.GetAll', no_payload=True,
scope='global', read=True)
@asyncio.coroutine
def property_get_all(self):
'''Get a value of all global properties'''
assert self.dest.name == 'dom0'
return self._property_get_all(self.app)

property_def = dest.property_get_def(self.arg)
# pylint: disable=no-self-use
def _property_type(self, property_def):
# explicit list to be sure that it matches protocol spec
if isinstance(property_def, qubes.vm.VMProperty):
property_type = 'vm'
elif property_def.type is int:
property_def_type = property_def.type
if property_def_type is str:
property_type = 'str'
elif property_def_type is int:
property_type = 'int'
elif property_def.type is bool:
elif property_def_type is bool:
property_type = 'bool'
elif self.arg == 'label':
elif property_def.__name__ == 'label':
property_type = 'label'
elif isinstance(property_def, qubes.vm.VMProperty):
property_type = 'vm'
else:
property_type = 'str'
return property_type

def _property_get(self, dest):
if self.arg not in dest.property_list():
raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)

self.fire_event_for_permission()
property_def = dest.property_get_def(self.arg)
property_type = self._property_type(property_def)

try:
value = getattr(dest, self.arg)
Expand All @@ -191,6 +233,49 @@ def _property_get(self, dest):
property_type,
str(value) if value is not None else '')


# this is a performance critical function for qvm-ls
def _property_get_all_line_strs(self, strs, dest, property_def):
property_type = self._property_type(property_def)
property_attr = property_def._attr_name # pylint: disable=protected-access
dest_dict = dest.__dict__
property_is_default = property_attr not in dest_dict

if not property_is_default:
value = dest_dict[property_attr]
elif property_def.has_default():
value = property_def.get_default(dest)
else:
value = None

if value is None:
escaped_value = ""
elif property_type == "str":
escaped_value = escape(str(value))
else:
escaped_value = str(value)

strs.append(property_def.__name__)
strs.append("\tD\t" if property_is_default else "\t-\t")
strs.append(property_type)
strs.append("\t")
strs.append(escaped_value)
strs.append("\n")

def _property_get_all_strs(self, strs, dest, prefix=None):
assert not self.arg

properties = self.fire_event_for_filter(dest.property_list())
for prop in properties:
if prefix:
strs.append(prefix)
self._property_get_all_line_strs(strs, dest, prop)

def _property_get_all(self, dest):
strs = []
self._property_get_all_strs(strs, dest)
return "".join(strs)

@qubes.api.method('admin.vm.property.GetDefault', no_payload=True,
scope='local', read=True)
@asyncio.coroutine
Expand Down

0 comments on commit 9295834

Please sign in to comment.