1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- # -*- encoding: utf8 -*-
- #
- # The Qubes OS Project, http://www.qubes-os.org
- #
- # Copyright (C) 2017 Marek Marczykowski-Górecki
- # <marmarek@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, see <http://www.gnu.org/licenses/>.
- ''' Internal interface for dom0 components to communicate with qubesd. '''
- import asyncio
- import json
- import qubes.api
- import qubes.api.admin
- import qubes.vm.dispvm
- class QubesInternalAPI(qubes.api.AbstractQubesAPI):
- ''' Communication interface for dom0 components,
- by design the input here is trusted.'''
- #
- # PRIVATE METHODS, not to be called via RPC
- #
- #
- # ACTUAL RPC CALLS
- #
- @qubes.api.method('internal.GetSystemInfo', no_payload=True)
- @asyncio.coroutine
- def getsysteminfo(self):
- assert self.dest.name == 'dom0'
- assert not self.arg
- system_info = {'domains': {
- domain.name: {
- 'tags': list(domain.tags),
- 'type': domain.__class__.__name__,
- 'dispvm_allowed': getattr(domain, 'dispvm_allowed', False),
- 'default_dispvm': (str(domain.default_dispvm) if
- domain.default_dispvm else None),
- 'icon': str(domain.label.icon),
- } for domain in self.app.domains
- }}
- return json.dumps(system_info)
- @qubes.api.method('internal.vm.Start', no_payload=True)
- @asyncio.coroutine
- def start(self):
- assert not self.arg
- yield from self.dest.start()
- @qubes.api.method('internal.vm.Create.DispVM', no_payload=True)
- @asyncio.coroutine
- def create_dispvm(self):
- assert not self.arg
- # TODO convert to coroutine
- dispvm = qubes.vm.dispvm.DispVM.from_appvm(self.dest)
- return dispvm.name
- @qubes.api.method('internal.vm.CleanupDispVM', no_payload=True)
- @asyncio.coroutine
- def cleanup_dispvm(self):
- assert not self.arg
- # TODO convert to coroutine
- self.dest.cleanup()
|