admin.py 53 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502
  1. #
  2. # The Qubes OS Project, https://www.qubes-os.org/
  3. #
  4. # Copyright (C) 2017 Wojtek Porczyk <woju@invisiblethingslab.com>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Lesser General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2.1 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public
  17. # License along with this library; if not, see <https://www.gnu.org/licenses/>.
  18. #
  19. '''
  20. Qubes OS Management API
  21. '''
  22. import asyncio
  23. import functools
  24. import itertools
  25. import os
  26. import string
  27. import subprocess
  28. import libvirt
  29. import pkg_resources
  30. import yaml
  31. import qubes.api
  32. import qubes.backup
  33. import qubes.config
  34. import qubes.devices
  35. import qubes.firewall
  36. import qubes.storage
  37. import qubes.utils
  38. import qubes.vm
  39. import qubes.vm.adminvm
  40. import qubes.vm.qubesvm
  41. class QubesMgmtEventsDispatcher(object):
  42. def __init__(self, filters, send_event):
  43. self.filters = filters
  44. self.send_event = send_event
  45. def vm_handler(self, subject, event, **kwargs):
  46. # do not send internal events
  47. if event.startswith('admin-permission:'):
  48. return
  49. if event.startswith('device-get:'):
  50. return
  51. if event.startswith('device-list:'):
  52. return
  53. if event.startswith('device-list-attached:'):
  54. return
  55. if event in ('domain-is-fully-usable',):
  56. return
  57. if not list(qubes.api.apply_filters([(subject, event, kwargs)],
  58. self.filters)):
  59. return
  60. self.send_event(subject, event, **kwargs)
  61. def app_handler(self, subject, event, **kwargs):
  62. if not list(qubes.api.apply_filters([(subject, event, kwargs)],
  63. self.filters)):
  64. return
  65. self.send_event(subject, event, **kwargs)
  66. def on_domain_add(self, subject, event, vm):
  67. # pylint: disable=unused-argument
  68. vm.add_handler('*', self.vm_handler)
  69. def on_domain_delete(self, subject, event, vm):
  70. # pylint: disable=unused-argument
  71. vm.remove_handler('*', self.vm_handler)
  72. class QubesAdminAPI(qubes.api.AbstractQubesAPI):
  73. '''Implementation of Qubes Management API calls
  74. This class contains all the methods available in the main API.
  75. .. seealso::
  76. https://www.qubes-os.org/doc/mgmt1/
  77. '''
  78. SOCKNAME = '/var/run/qubesd.sock'
  79. @qubes.api.method('admin.vmclass.List', no_payload=True,
  80. scope='global', read=True)
  81. @asyncio.coroutine
  82. def vmclass_list(self):
  83. '''List all VM classes'''
  84. assert not self.arg
  85. assert self.dest.name == 'dom0'
  86. entrypoints = self.fire_event_for_filter(
  87. pkg_resources.iter_entry_points(qubes.vm.VM_ENTRY_POINT))
  88. return ''.join('{}\n'.format(ep.name)
  89. for ep in entrypoints)
  90. @qubes.api.method('admin.vm.List', no_payload=True,
  91. scope='global', read=True)
  92. @asyncio.coroutine
  93. def vm_list(self):
  94. '''List all the domains'''
  95. assert not self.arg
  96. if self.dest.name == 'dom0':
  97. domains = self.fire_event_for_filter(self.app.domains)
  98. else:
  99. domains = self.fire_event_for_filter([self.dest])
  100. return ''.join('{} class={} state={}\n'.format(
  101. vm.name,
  102. vm.__class__.__name__,
  103. vm.get_power_state())
  104. for vm in sorted(domains))
  105. @qubes.api.method('admin.vm.property.List', no_payload=True,
  106. scope='local', read=True)
  107. @asyncio.coroutine
  108. def vm_property_list(self):
  109. '''List all properties on a qube'''
  110. return self._property_list(self.dest)
  111. @qubes.api.method('admin.property.List', no_payload=True,
  112. scope='global', read=True)
  113. @asyncio.coroutine
  114. def property_list(self):
  115. '''List all global properties'''
  116. assert self.dest.name == 'dom0'
  117. return self._property_list(self.app)
  118. def _property_list(self, dest):
  119. assert not self.arg
  120. properties = self.fire_event_for_filter(dest.property_list())
  121. return ''.join('{}\n'.format(prop.__name__) for prop in properties)
  122. @qubes.api.method('admin.vm.property.Get', no_payload=True,
  123. scope='local', read=True)
  124. @asyncio.coroutine
  125. def vm_property_get(self):
  126. '''Get a value of one property'''
  127. return self._property_get(self.dest)
  128. @qubes.api.method('admin.property.Get', no_payload=True,
  129. scope='global', read=True)
  130. @asyncio.coroutine
  131. def property_get(self):
  132. '''Get a value of one global property'''
  133. assert self.dest.name == 'dom0'
  134. return self._property_get(self.app)
  135. def _property_get(self, dest):
  136. if self.arg not in dest.property_list():
  137. raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)
  138. self.fire_event_for_permission()
  139. property_def = dest.property_get_def(self.arg)
  140. # explicit list to be sure that it matches protocol spec
  141. if isinstance(property_def, qubes.vm.VMProperty):
  142. property_type = 'vm'
  143. elif property_def.type is int:
  144. property_type = 'int'
  145. elif property_def.type is bool:
  146. property_type = 'bool'
  147. elif self.arg == 'label':
  148. property_type = 'label'
  149. else:
  150. property_type = 'str'
  151. try:
  152. value = getattr(dest, self.arg)
  153. except AttributeError:
  154. return 'default=True type={} '.format(property_type)
  155. else:
  156. return 'default={} type={} {}'.format(
  157. str(dest.property_is_default(self.arg)),
  158. property_type,
  159. str(value) if value is not None else '')
  160. @qubes.api.method('admin.vm.property.GetDefault', no_payload=True,
  161. scope='local', read=True)
  162. @asyncio.coroutine
  163. def vm_property_get_default(self):
  164. '''Get a value of one property'''
  165. return self._property_get_default(self.dest)
  166. @qubes.api.method('admin.property.GetDefault', no_payload=True,
  167. scope='global', read=True)
  168. @asyncio.coroutine
  169. def property_get_default(self):
  170. '''Get a value of one global property'''
  171. assert self.dest.name == 'dom0'
  172. return self._property_get_default(self.app)
  173. def _property_get_default(self, dest):
  174. if self.arg not in dest.property_list():
  175. raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)
  176. self.fire_event_for_permission()
  177. property_def = dest.property_get_def(self.arg)
  178. # explicit list to be sure that it matches protocol spec
  179. if isinstance(property_def, qubes.vm.VMProperty):
  180. property_type = 'vm'
  181. elif property_def.type is int:
  182. property_type = 'int'
  183. elif property_def.type is bool:
  184. property_type = 'bool'
  185. elif self.arg == 'label':
  186. property_type = 'label'
  187. else:
  188. property_type = 'str'
  189. try:
  190. value = property_def.get_default(dest)
  191. except AttributeError:
  192. return None
  193. else:
  194. return 'type={} {}'.format(
  195. property_type,
  196. str(value) if value is not None else '')
  197. @qubes.api.method('admin.vm.property.Set',
  198. scope='local', write=True)
  199. @asyncio.coroutine
  200. def vm_property_set(self, untrusted_payload):
  201. '''Set property value'''
  202. return self._property_set(self.dest,
  203. untrusted_payload=untrusted_payload)
  204. @qubes.api.method('admin.property.Set',
  205. scope='global', write=True)
  206. @asyncio.coroutine
  207. def property_set(self, untrusted_payload):
  208. '''Set property value'''
  209. assert self.dest.name == 'dom0'
  210. return self._property_set(self.app,
  211. untrusted_payload=untrusted_payload)
  212. def _property_set(self, dest, untrusted_payload):
  213. if self.arg not in dest.property_list():
  214. raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)
  215. property_def = dest.property_get_def(self.arg)
  216. newvalue = property_def.sanitize(untrusted_newvalue=untrusted_payload)
  217. self.fire_event_for_permission(newvalue=newvalue)
  218. setattr(dest, self.arg, newvalue)
  219. self.app.save()
  220. @qubes.api.method('admin.vm.property.Help', no_payload=True,
  221. scope='local', read=True)
  222. @asyncio.coroutine
  223. def vm_property_help(self):
  224. '''Get help for one property'''
  225. return self._property_help(self.dest)
  226. @qubes.api.method('admin.property.Help', no_payload=True,
  227. scope='global', read=True)
  228. @asyncio.coroutine
  229. def property_help(self):
  230. '''Get help for one property'''
  231. assert self.dest.name == 'dom0'
  232. return self._property_help(self.app)
  233. def _property_help(self, dest):
  234. if self.arg not in dest.property_list():
  235. raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)
  236. self.fire_event_for_permission()
  237. try:
  238. doc = dest.property_get_def(self.arg).__doc__
  239. except AttributeError:
  240. return ''
  241. return qubes.utils.format_doc(doc)
  242. @qubes.api.method('admin.vm.property.Reset', no_payload=True,
  243. scope='local', write=True)
  244. @asyncio.coroutine
  245. def vm_property_reset(self):
  246. '''Reset a property to a default value'''
  247. return self._property_reset(self.dest)
  248. @qubes.api.method('admin.property.Reset', no_payload=True,
  249. scope='global', write=True)
  250. @asyncio.coroutine
  251. def property_reset(self):
  252. '''Reset a property to a default value'''
  253. assert self.dest.name == 'dom0'
  254. return self._property_reset(self.app)
  255. def _property_reset(self, dest):
  256. if self.arg not in dest.property_list():
  257. raise qubes.exc.QubesNoSuchPropertyError(dest, self.arg)
  258. self.fire_event_for_permission()
  259. delattr(dest, self.arg)
  260. self.app.save()
  261. @qubes.api.method('admin.vm.volume.List', no_payload=True,
  262. scope='local', read=True)
  263. @asyncio.coroutine
  264. def vm_volume_list(self):
  265. assert not self.arg
  266. volume_names = self.fire_event_for_filter(self.dest.volumes.keys())
  267. return ''.join('{}\n'.format(name) for name in volume_names)
  268. @qubes.api.method('admin.vm.volume.Info', no_payload=True,
  269. scope='local', read=True)
  270. @asyncio.coroutine
  271. def vm_volume_info(self):
  272. assert self.arg in self.dest.volumes.keys()
  273. self.fire_event_for_permission()
  274. volume = self.dest.volumes[self.arg]
  275. # properties defined in API
  276. volume_properties = [
  277. 'pool', 'vid', 'size', 'usage', 'rw', 'source',
  278. 'save_on_stop', 'snap_on_start']
  279. return ''.join('{}={}\n'.format(key, getattr(volume, key)) for key in
  280. volume_properties)
  281. @qubes.api.method('admin.vm.volume.ListSnapshots', no_payload=True,
  282. scope='local', read=True)
  283. @asyncio.coroutine
  284. def vm_volume_listsnapshots(self):
  285. assert self.arg in self.dest.volumes.keys()
  286. volume = self.dest.volumes[self.arg]
  287. revisions = [revision for revision in volume.revisions]
  288. revisions = self.fire_event_for_filter(revisions)
  289. return ''.join('{}\n'.format(revision) for revision in revisions)
  290. @qubes.api.method('admin.vm.volume.Revert',
  291. scope='local', write=True)
  292. @asyncio.coroutine
  293. def vm_volume_revert(self, untrusted_payload):
  294. assert self.arg in self.dest.volumes.keys()
  295. untrusted_revision = untrusted_payload.decode('ascii').strip()
  296. del untrusted_payload
  297. volume = self.dest.volumes[self.arg]
  298. snapshots = volume.revisions
  299. assert untrusted_revision in snapshots
  300. revision = untrusted_revision
  301. self.fire_event_for_permission(volume=volume, revision=revision)
  302. ret = volume.revert(revision)
  303. if asyncio.iscoroutine(ret):
  304. yield from ret
  305. self.app.save()
  306. # write=True because this allow to clone VM - and most likely modify that
  307. # one - still having the same data
  308. @qubes.api.method('admin.vm.volume.CloneFrom', no_payload=True,
  309. scope='local', write=True)
  310. @asyncio.coroutine
  311. def vm_volume_clone_from(self):
  312. assert self.arg in self.dest.volumes.keys()
  313. volume = self.dest.volumes[self.arg]
  314. self.fire_event_for_permission(volume=volume)
  315. token = qubes.utils.random_string(32)
  316. # save token on self.app, as self is not persistent
  317. if not hasattr(self.app, 'api_admin_pending_clone'):
  318. self.app.api_admin_pending_clone = {}
  319. # don't handle collisions any better - if someone is so much out of
  320. # luck, can try again anyway
  321. assert token not in self.app.api_admin_pending_clone
  322. self.app.api_admin_pending_clone[token] = volume
  323. return token
  324. @qubes.api.method('admin.vm.volume.CloneTo',
  325. scope='local', write=True)
  326. @asyncio.coroutine
  327. def vm_volume_clone_to(self, untrusted_payload):
  328. assert self.arg in self.dest.volumes.keys()
  329. untrusted_token = untrusted_payload.decode('ascii').strip()
  330. del untrusted_payload
  331. assert untrusted_token in getattr(self.app,
  332. 'api_admin_pending_clone', {})
  333. token = untrusted_token
  334. del untrusted_token
  335. src_volume = self.app.api_admin_pending_clone[token]
  336. del self.app.api_admin_pending_clone[token]
  337. # make sure the volume still exists, but invalidate token anyway
  338. assert str(src_volume.pool) in self.app.pools
  339. assert src_volume in self.app.pools[str(src_volume.pool)].volumes
  340. dst_volume = self.dest.volumes[self.arg]
  341. self.fire_event_for_permission(src_volume=src_volume,
  342. dst_volume=dst_volume)
  343. op_retval = dst_volume.import_volume(src_volume)
  344. # clone/import functions may be either synchronous or asynchronous
  345. # in the later case, we need to wait for them to finish
  346. if asyncio.iscoroutine(op_retval):
  347. op_retval = yield from op_retval
  348. self.dest.volumes[self.arg] = op_retval
  349. self.app.save()
  350. @qubes.api.method('admin.vm.volume.Resize',
  351. scope='local', write=True)
  352. @asyncio.coroutine
  353. def vm_volume_resize(self, untrusted_payload):
  354. assert self.arg in self.dest.volumes.keys()
  355. untrusted_size = untrusted_payload.decode('ascii').strip()
  356. del untrusted_payload
  357. assert untrusted_size.isdigit() # only digits, forbid '-' too
  358. assert len(untrusted_size) <= 20 # limit to about 2^64
  359. size = int(untrusted_size)
  360. self.fire_event_for_permission(size=size)
  361. yield from self.dest.storage.resize(self.arg, size)
  362. self.app.save()
  363. @qubes.api.method('admin.vm.volume.Import', no_payload=True,
  364. scope='local', write=True)
  365. @asyncio.coroutine
  366. def vm_volume_import(self):
  367. '''Import volume data.
  368. Note that this function only returns a path to where data should be
  369. written, actual importing is done by a script in /etc/qubes-rpc
  370. When the script finish importing, it will trigger
  371. internal.vm.volume.ImportEnd (with either b'ok' or b'fail' as a
  372. payload) and response from that call will be actually send to the
  373. caller.
  374. '''
  375. assert self.arg in self.dest.volumes.keys()
  376. self.fire_event_for_permission()
  377. if not self.dest.is_halted():
  378. raise qubes.exc.QubesVMNotHaltedError(self.dest)
  379. path = self.dest.storage.import_data(self.arg)
  380. assert ' ' not in path
  381. size = self.dest.volumes[self.arg].size
  382. # when we know the action is allowed, inform extensions that it will
  383. # be performed
  384. self.dest.fire_event('domain-volume-import-begin', volume=self.arg)
  385. return '{} {}'.format(size, path)
  386. @qubes.api.method('admin.vm.volume.Set.revisions_to_keep',
  387. scope='local', write=True)
  388. @asyncio.coroutine
  389. def vm_volume_set_revisions_to_keep(self, untrusted_payload):
  390. assert self.arg in self.dest.volumes.keys()
  391. try:
  392. untrusted_value = int(untrusted_payload.decode('ascii'))
  393. except (UnicodeDecodeError, ValueError):
  394. raise qubes.api.ProtocolError('Invalid value')
  395. del untrusted_payload
  396. assert untrusted_value >= 0
  397. newvalue = untrusted_value
  398. del untrusted_value
  399. self.fire_event_for_permission(newvalue=newvalue)
  400. self.dest.volumes[self.arg].revisions_to_keep = newvalue
  401. self.app.save()
  402. @qubes.api.method('admin.vm.tag.List', no_payload=True,
  403. scope='local', read=True)
  404. @asyncio.coroutine
  405. def vm_tag_list(self):
  406. assert not self.arg
  407. tags = self.dest.tags
  408. tags = self.fire_event_for_filter(tags)
  409. return ''.join('{}\n'.format(tag) for tag in sorted(tags))
  410. @qubes.api.method('admin.vm.tag.Get', no_payload=True,
  411. scope='local', read=True)
  412. @asyncio.coroutine
  413. def vm_tag_get(self):
  414. qubes.vm.Tags.validate_tag(self.arg)
  415. self.fire_event_for_permission()
  416. return '1' if self.arg in self.dest.tags else '0'
  417. @qubes.api.method('admin.vm.tag.Set', no_payload=True,
  418. scope='local', write=True)
  419. @asyncio.coroutine
  420. def vm_tag_set(self):
  421. qubes.vm.Tags.validate_tag(self.arg)
  422. self.fire_event_for_permission()
  423. self.dest.tags.add(self.arg)
  424. self.app.save()
  425. @qubes.api.method('admin.vm.tag.Remove', no_payload=True,
  426. scope='local', write=True)
  427. @asyncio.coroutine
  428. def vm_tag_remove(self):
  429. qubes.vm.Tags.validate_tag(self.arg)
  430. self.fire_event_for_permission()
  431. try:
  432. self.dest.tags.remove(self.arg)
  433. except KeyError:
  434. raise qubes.exc.QubesTagNotFoundError(self.dest, self.arg)
  435. self.app.save()
  436. @qubes.api.method('admin.pool.List', no_payload=True,
  437. scope='global', read=True)
  438. @asyncio.coroutine
  439. def pool_list(self):
  440. assert not self.arg
  441. assert self.dest.name == 'dom0'
  442. pools = self.fire_event_for_filter(self.app.pools)
  443. return ''.join('{}\n'.format(pool) for pool in pools)
  444. @qubes.api.method('admin.pool.ListDrivers', no_payload=True,
  445. scope='global', read=True)
  446. @asyncio.coroutine
  447. def pool_listdrivers(self):
  448. assert self.dest.name == 'dom0'
  449. assert not self.arg
  450. drivers = self.fire_event_for_filter(qubes.storage.pool_drivers())
  451. return ''.join('{} {}\n'.format(
  452. driver,
  453. ' '.join(qubes.storage.driver_parameters(driver)))
  454. for driver in drivers)
  455. @qubes.api.method('admin.pool.Info', no_payload=True,
  456. scope='global', read=True)
  457. @asyncio.coroutine
  458. def pool_info(self):
  459. assert self.dest.name == 'dom0'
  460. assert self.arg in self.app.pools.keys()
  461. pool = self.app.pools[self.arg]
  462. self.fire_event_for_permission(pool=pool)
  463. size_info = ''
  464. try:
  465. size_info += 'size={}\n'.format(pool.size)
  466. except NotImplementedError:
  467. pass
  468. try:
  469. size_info += 'usage={}\n'.format(pool.usage)
  470. except NotImplementedError:
  471. pass
  472. return ''.join('{}={}\n'.format(prop, val)
  473. for prop, val in sorted(pool.config.items())) + \
  474. size_info
  475. @qubes.api.method('admin.pool.Add',
  476. scope='global', write=True)
  477. @asyncio.coroutine
  478. def pool_add(self, untrusted_payload):
  479. assert self.dest.name == 'dom0'
  480. drivers = qubes.storage.pool_drivers()
  481. assert self.arg in drivers
  482. untrusted_pool_config = untrusted_payload.decode('ascii').splitlines()
  483. del untrusted_payload
  484. assert all(('=' in line) for line in untrusted_pool_config)
  485. # pairs of (option, value)
  486. untrusted_pool_config = [line.split('=', 1)
  487. for line in untrusted_pool_config]
  488. # reject duplicated options
  489. assert len(set(x[0] for x in untrusted_pool_config)) == \
  490. len([x[0] for x in untrusted_pool_config])
  491. # and convert to dict
  492. untrusted_pool_config = dict(untrusted_pool_config)
  493. assert 'name' in untrusted_pool_config
  494. untrusted_pool_name = untrusted_pool_config.pop('name')
  495. allowed_chars = string.ascii_letters + string.digits + '-_.'
  496. assert all(c in allowed_chars for c in untrusted_pool_name)
  497. pool_name = untrusted_pool_name
  498. assert pool_name not in self.app.pools
  499. driver_parameters = qubes.storage.driver_parameters(self.arg)
  500. assert all(key in driver_parameters for key in untrusted_pool_config)
  501. pool_config = untrusted_pool_config
  502. self.fire_event_for_permission(name=pool_name,
  503. pool_config=pool_config)
  504. self.app.add_pool(name=pool_name, driver=self.arg, **pool_config)
  505. self.app.save()
  506. @qubes.api.method('admin.pool.Remove', no_payload=True,
  507. scope='global', write=True)
  508. @asyncio.coroutine
  509. def pool_remove(self):
  510. assert self.dest.name == 'dom0'
  511. assert self.arg in self.app.pools.keys()
  512. self.fire_event_for_permission()
  513. self.app.remove_pool(self.arg)
  514. self.app.save()
  515. @qubes.api.method('admin.pool.Set.revisions_to_keep',
  516. scope='global', write=True)
  517. @asyncio.coroutine
  518. def pool_set_revisions_to_keep(self, untrusted_payload):
  519. assert self.dest.name == 'dom0'
  520. assert self.arg in self.app.pools.keys()
  521. pool = self.app.pools[self.arg]
  522. try:
  523. untrusted_value = int(untrusted_payload.decode('ascii'))
  524. except (UnicodeDecodeError, ValueError):
  525. raise qubes.api.ProtocolError('Invalid value')
  526. del untrusted_payload
  527. assert untrusted_value >= 0
  528. newvalue = untrusted_value
  529. del untrusted_value
  530. self.fire_event_for_permission(newvalue=newvalue)
  531. pool.revisions_to_keep = newvalue
  532. self.app.save()
  533. @qubes.api.method('admin.label.List', no_payload=True,
  534. scope='global', read=True)
  535. @asyncio.coroutine
  536. def label_list(self):
  537. assert self.dest.name == 'dom0'
  538. assert not self.arg
  539. labels = self.fire_event_for_filter(self.app.labels.values())
  540. return ''.join('{}\n'.format(label.name) for label in labels)
  541. @qubes.api.method('admin.label.Get', no_payload=True,
  542. scope='global', read=True)
  543. @asyncio.coroutine
  544. def label_get(self):
  545. assert self.dest.name == 'dom0'
  546. try:
  547. label = self.app.get_label(self.arg)
  548. except KeyError:
  549. raise qubes.exc.QubesValueError
  550. self.fire_event_for_permission(label=label)
  551. return label.color
  552. @qubes.api.method('admin.label.Index', no_payload=True,
  553. scope='global', read=True)
  554. @asyncio.coroutine
  555. def label_index(self):
  556. assert self.dest.name == 'dom0'
  557. try:
  558. label = self.app.get_label(self.arg)
  559. except KeyError:
  560. raise qubes.exc.QubesValueError
  561. self.fire_event_for_permission(label=label)
  562. return str(label.index)
  563. @qubes.api.method('admin.label.Create',
  564. scope='global', write=True)
  565. @asyncio.coroutine
  566. def label_create(self, untrusted_payload):
  567. assert self.dest.name == 'dom0'
  568. # don't confuse label name with label index
  569. assert not self.arg.isdigit()
  570. allowed_chars = string.ascii_letters + string.digits + '-_.'
  571. assert all(c in allowed_chars for c in self.arg)
  572. try:
  573. self.app.get_label(self.arg)
  574. except KeyError:
  575. # ok, no such label yet
  576. pass
  577. else:
  578. raise qubes.exc.QubesValueError('label already exists')
  579. untrusted_payload = untrusted_payload.decode('ascii').strip()
  580. assert len(untrusted_payload) == 8
  581. assert untrusted_payload.startswith('0x')
  582. # besides prefix, only hex digits are allowed
  583. assert all(x in string.hexdigits for x in untrusted_payload[2:])
  584. # SEE: #2732
  585. color = untrusted_payload
  586. self.fire_event_for_permission(color=color)
  587. # allocate new index, but make sure it's outside of default labels set
  588. new_index = max(
  589. qubes.config.max_default_label, *self.app.labels.keys()) + 1
  590. label = qubes.Label(new_index, color, self.arg)
  591. self.app.labels[new_index] = label
  592. self.app.save()
  593. @qubes.api.method('admin.label.Remove', no_payload=True,
  594. scope='global', write=True)
  595. @asyncio.coroutine
  596. def label_remove(self):
  597. assert self.dest.name == 'dom0'
  598. try:
  599. label = self.app.get_label(self.arg)
  600. except KeyError:
  601. raise qubes.exc.QubesValueError
  602. # don't allow removing default labels
  603. assert label.index > qubes.config.max_default_label
  604. # FIXME: this should be in app.add_label()
  605. for vm in self.app.domains:
  606. if vm.label == label:
  607. raise qubes.exc.QubesException('label still in use')
  608. self.fire_event_for_permission(label=label)
  609. del self.app.labels[label.index]
  610. self.app.save()
  611. @qubes.api.method('admin.vm.Start', no_payload=True,
  612. scope='local', execute=True)
  613. @asyncio.coroutine
  614. def vm_start(self):
  615. assert not self.arg
  616. self.fire_event_for_permission()
  617. try:
  618. yield from self.dest.start()
  619. except libvirt.libvirtError as e:
  620. # change to QubesException, so will be reported to the user
  621. raise qubes.exc.QubesException('Start failed: ' + str(e) +
  622. ', see /var/log/libvirt/libxl/libxl-driver.log for details')
  623. @qubes.api.method('admin.vm.Shutdown', no_payload=True,
  624. scope='local', execute=True)
  625. @asyncio.coroutine
  626. def vm_shutdown(self):
  627. assert not self.arg
  628. self.fire_event_for_permission()
  629. yield from self.dest.shutdown()
  630. @qubes.api.method('admin.vm.Pause', no_payload=True,
  631. scope='local', execute=True)
  632. @asyncio.coroutine
  633. def vm_pause(self):
  634. assert not self.arg
  635. self.fire_event_for_permission()
  636. yield from self.dest.pause()
  637. @qubes.api.method('admin.vm.Unpause', no_payload=True,
  638. scope='local', execute=True)
  639. @asyncio.coroutine
  640. def vm_unpause(self):
  641. assert not self.arg
  642. self.fire_event_for_permission()
  643. yield from self.dest.unpause()
  644. @qubes.api.method('admin.vm.Kill', no_payload=True,
  645. scope='local', execute=True)
  646. @asyncio.coroutine
  647. def vm_kill(self):
  648. assert not self.arg
  649. self.fire_event_for_permission()
  650. yield from self.dest.kill()
  651. @qubes.api.method('admin.Events', no_payload=True,
  652. scope='global', read=True)
  653. @asyncio.coroutine
  654. def events(self):
  655. assert not self.arg
  656. # run until client connection is terminated
  657. self.cancellable = True
  658. wait_for_cancel = asyncio.get_event_loop().create_future()
  659. # cache event filters, to not call an event each time an event arrives
  660. event_filters = self.fire_event_for_permission()
  661. dispatcher = QubesMgmtEventsDispatcher(event_filters, self.send_event)
  662. if self.dest.name == 'dom0':
  663. self.app.add_handler('*', dispatcher.app_handler)
  664. self.app.add_handler('domain-add', dispatcher.on_domain_add)
  665. self.app.add_handler('domain-delete', dispatcher.on_domain_delete)
  666. for vm in self.app.domains:
  667. vm.add_handler('*', dispatcher.vm_handler)
  668. else:
  669. self.dest.add_handler('*', dispatcher.vm_handler)
  670. # send artificial event as a confirmation that connection is established
  671. self.send_event(self.app, 'connection-established')
  672. try:
  673. yield from wait_for_cancel
  674. except asyncio.CancelledError:
  675. # the above waiting was already interrupted, this is all we need
  676. pass
  677. if self.dest.name == 'dom0':
  678. self.app.remove_handler('*', dispatcher.app_handler)
  679. self.app.remove_handler('domain-add', dispatcher.on_domain_add)
  680. self.app.remove_handler('domain-delete',
  681. dispatcher.on_domain_delete)
  682. for vm in self.app.domains:
  683. vm.remove_handler('*', dispatcher.vm_handler)
  684. else:
  685. self.dest.remove_handler('*', dispatcher.vm_handler)
  686. @qubes.api.method('admin.vm.feature.List', no_payload=True,
  687. scope='local', read=True)
  688. @asyncio.coroutine
  689. def vm_feature_list(self):
  690. assert not self.arg
  691. features = self.fire_event_for_filter(self.dest.features.keys())
  692. return ''.join('{}\n'.format(feature) for feature in features)
  693. @qubes.api.method('admin.vm.feature.Get', no_payload=True,
  694. scope='local', read=True)
  695. @asyncio.coroutine
  696. def vm_feature_get(self):
  697. # validation of self.arg done by qrexec-policy is enough
  698. self.fire_event_for_permission()
  699. try:
  700. value = self.dest.features[self.arg]
  701. except KeyError:
  702. raise qubes.exc.QubesFeatureNotFoundError(self.dest, self.arg)
  703. return value
  704. @qubes.api.method('admin.vm.feature.CheckWithTemplate', no_payload=True,
  705. scope='local', read=True)
  706. @asyncio.coroutine
  707. def vm_feature_checkwithtemplate(self):
  708. # validation of self.arg done by qrexec-policy is enough
  709. self.fire_event_for_permission()
  710. try:
  711. value = self.dest.features.check_with_template(self.arg)
  712. except KeyError:
  713. raise qubes.exc.QubesFeatureNotFoundError(self.dest, self.arg)
  714. return value
  715. @qubes.api.method('admin.vm.feature.CheckWithNetvm', no_payload=True,
  716. scope='local', read=True)
  717. @asyncio.coroutine
  718. def vm_feature_checkwithnetvm(self):
  719. # validation of self.arg done by qrexec-policy is enough
  720. self.fire_event_for_permission()
  721. try:
  722. value = self.dest.features.check_with_netvm(self.arg)
  723. except KeyError:
  724. raise qubes.exc.QubesFeatureNotFoundError(self.dest, self.arg)
  725. return value
  726. @qubes.api.method('admin.vm.feature.Remove', no_payload=True,
  727. scope='local', write=True)
  728. @asyncio.coroutine
  729. def vm_feature_remove(self):
  730. # validation of self.arg done by qrexec-policy is enough
  731. self.fire_event_for_permission()
  732. try:
  733. del self.dest.features[self.arg]
  734. except KeyError:
  735. raise qubes.exc.QubesFeatureNotFoundError(self.dest, self.arg)
  736. self.app.save()
  737. @qubes.api.method('admin.vm.feature.Set',
  738. scope='local', write=True)
  739. @asyncio.coroutine
  740. def vm_feature_set(self, untrusted_payload):
  741. # validation of self.arg done by qrexec-policy is enough
  742. value = untrusted_payload.decode('ascii', errors='strict')
  743. del untrusted_payload
  744. self.fire_event_for_permission(value=value)
  745. self.dest.features[self.arg] = value
  746. self.app.save()
  747. @qubes.api.method('admin.vm.Create.{endpoint}', endpoints=(ep.name
  748. for ep in pkg_resources.iter_entry_points(qubes.vm.VM_ENTRY_POINT)),
  749. scope='global', write=True)
  750. @asyncio.coroutine
  751. def vm_create(self, endpoint, untrusted_payload=None):
  752. return self._vm_create(endpoint, allow_pool=False,
  753. untrusted_payload=untrusted_payload)
  754. @qubes.api.method('admin.vm.CreateInPool.{endpoint}', endpoints=(ep.name
  755. for ep in pkg_resources.iter_entry_points(qubes.vm.VM_ENTRY_POINT)),
  756. scope='global', write=True)
  757. @asyncio.coroutine
  758. def vm_create_in_pool(self, endpoint, untrusted_payload=None):
  759. return self._vm_create(endpoint, allow_pool=True,
  760. untrusted_payload=untrusted_payload)
  761. def _vm_create(self, vm_type, allow_pool=False, untrusted_payload=None):
  762. assert self.dest.name == 'dom0'
  763. kwargs = {}
  764. pool = None
  765. pools = {}
  766. # this will raise exception if none is found
  767. vm_class = qubes.utils.get_entry_point_one(qubes.vm.VM_ENTRY_POINT,
  768. vm_type)
  769. # if argument is given, it needs to be a valid template, and only
  770. # when given VM class do need a template
  771. if hasattr(vm_class, 'template'):
  772. if self.arg:
  773. assert self.arg in self.app.domains
  774. kwargs['template'] = self.app.domains[self.arg]
  775. else:
  776. assert not self.arg
  777. for untrusted_param in untrusted_payload.decode('ascii',
  778. errors='strict').split(' '):
  779. untrusted_key, untrusted_value = untrusted_param.split('=', 1)
  780. if untrusted_key in kwargs:
  781. raise qubes.api.ProtocolError('duplicated parameters')
  782. if untrusted_key == 'name':
  783. qubes.vm.validate_name(None, None, untrusted_value)
  784. kwargs['name'] = untrusted_value
  785. elif untrusted_key == 'label':
  786. # don't confuse label name with label index
  787. assert not untrusted_value.isdigit()
  788. allowed_chars = string.ascii_letters + string.digits + '-_.'
  789. assert all(c in allowed_chars for c in untrusted_value)
  790. try:
  791. kwargs['label'] = self.app.get_label(untrusted_value)
  792. except KeyError:
  793. raise qubes.exc.QubesValueError
  794. elif untrusted_key == 'pool' and allow_pool:
  795. if pool is not None:
  796. raise qubes.api.ProtocolError('duplicated pool parameter')
  797. pool = self.app.get_pool(untrusted_value)
  798. elif untrusted_key.startswith('pool:') and allow_pool:
  799. untrusted_volume = untrusted_key.split(':', 1)[1]
  800. # kind of ugly, but actual list of volumes is available only
  801. # after creating a VM
  802. assert untrusted_volume in ['root', 'private', 'volatile',
  803. 'kernel']
  804. volume = untrusted_volume
  805. if volume in pools:
  806. raise qubes.api.ProtocolError(
  807. 'duplicated pool:{} parameter'.format(volume))
  808. pools[volume] = self.app.get_pool(untrusted_value)
  809. else:
  810. raise qubes.api.ProtocolError('Invalid param name')
  811. del untrusted_payload
  812. if 'name' not in kwargs or 'label' not in kwargs:
  813. raise qubes.api.ProtocolError('Missing name or label')
  814. if pool and pools:
  815. raise qubes.api.ProtocolError(
  816. 'Only one of \'pool=\' and \'pool:volume=\' can be used')
  817. if kwargs['name'] in self.app.domains:
  818. raise qubes.exc.QubesValueError(
  819. 'VM {} already exists'.format(kwargs['name']))
  820. self.fire_event_for_permission(pool=pool, pools=pools, **kwargs)
  821. vm = self.app.add_new_vm(vm_class, **kwargs)
  822. # TODO: move this to extension (in race-free fashion)
  823. vm.tags.add('created-by-' + str(self.src))
  824. try:
  825. yield from vm.create_on_disk(pool=pool, pools=pools)
  826. except:
  827. del self.app.domains[vm]
  828. raise
  829. self.app.save()
  830. @qubes.api.method('admin.vm.CreateDisposable', no_payload=True,
  831. scope='global', write=True)
  832. @asyncio.coroutine
  833. def create_disposable(self):
  834. assert not self.arg
  835. if self.dest.name == 'dom0':
  836. dispvm_template = self.src.default_dispvm
  837. else:
  838. dispvm_template = self.dest
  839. self.fire_event_for_permission(dispvm_template=dispvm_template)
  840. dispvm = yield from qubes.vm.dispvm.DispVM.from_appvm(dispvm_template)
  841. # TODO: move this to extension (in race-free fashion, better than here)
  842. dispvm.tags.add('disp-created-by-' + str(self.src))
  843. return dispvm.name
  844. @qubes.api.method('admin.vm.Remove', no_payload=True,
  845. scope='global', write=True)
  846. @asyncio.coroutine
  847. def vm_remove(self):
  848. assert not self.arg
  849. self.fire_event_for_permission()
  850. if not self.dest.is_halted():
  851. raise qubes.exc.QubesVMNotHaltedError(self.dest)
  852. del self.app.domains[self.dest]
  853. try:
  854. yield from self.dest.remove_from_disk()
  855. except: # pylint: disable=bare-except
  856. self.app.log.exception('Error wile removing VM \'%s\' files',
  857. self.dest.name)
  858. self.app.save()
  859. @qubes.api.method('admin.vm.device.{endpoint}.Available', endpoints=(ep.name
  860. for ep in pkg_resources.iter_entry_points('qubes.devices')),
  861. no_payload=True,
  862. scope='local', read=True)
  863. @asyncio.coroutine
  864. def vm_device_available(self, endpoint):
  865. devclass = endpoint
  866. devices = self.dest.devices[devclass].available()
  867. if self.arg:
  868. devices = [dev for dev in devices if dev.ident == self.arg]
  869. # no duplicated devices, but device may not exists, in which case
  870. # the list is empty
  871. assert len(devices) <= 1
  872. devices = self.fire_event_for_filter(devices, devclass=devclass)
  873. dev_info = {}
  874. for dev in devices:
  875. non_default_attrs = set(attr for attr in dir(dev) if
  876. not attr.startswith('_')).difference((
  877. 'backend_domain', 'ident', 'frontend_domain',
  878. 'description', 'options', 'regex'))
  879. properties_txt = ' '.join(
  880. '{}={!s}'.format(prop, value) for prop, value
  881. in itertools.chain(
  882. ((key, getattr(dev, key)) for key in non_default_attrs),
  883. # keep description as the last one, according to API
  884. # specification
  885. (('description', dev.description),)
  886. ))
  887. assert '\n' not in properties_txt
  888. dev_info[dev.ident] = properties_txt
  889. return ''.join('{} {}\n'.format(ident, dev_info[ident])
  890. for ident in sorted(dev_info))
  891. @qubes.api.method('admin.vm.device.{endpoint}.List', endpoints=(ep.name
  892. for ep in pkg_resources.iter_entry_points('qubes.devices')),
  893. no_payload=True,
  894. scope='local', read=True)
  895. @asyncio.coroutine
  896. def vm_device_list(self, endpoint):
  897. devclass = endpoint
  898. device_assignments = self.dest.devices[devclass].assignments()
  899. if self.arg:
  900. select_backend, select_ident = self.arg.split('+', 1)
  901. device_assignments = [dev for dev in device_assignments
  902. if (str(dev.backend_domain), dev.ident)
  903. == (select_backend, select_ident)]
  904. # no duplicated devices, but device may not exists, in which case
  905. # the list is empty
  906. assert len(device_assignments) <= 1
  907. device_assignments = self.fire_event_for_filter(device_assignments,
  908. devclass=devclass)
  909. dev_info = {}
  910. for dev in device_assignments:
  911. properties_txt = ' '.join(
  912. '{}={!s}'.format(opt, value) for opt, value
  913. in itertools.chain(
  914. dev.options.items(),
  915. (('persistent', 'yes' if dev.persistent else 'no'),)
  916. ))
  917. assert '\n' not in properties_txt
  918. ident = '{!s}+{!s}'.format(dev.backend_domain, dev.ident)
  919. dev_info[ident] = properties_txt
  920. return ''.join('{} {}\n'.format(ident, dev_info[ident])
  921. for ident in sorted(dev_info))
  922. # Attach/Detach action can both modify persistent state (with
  923. # persistent=True) and volatile state of running VM (with persistent=False).
  924. # For this reason, write=True + execute=True
  925. @qubes.api.method('admin.vm.device.{endpoint}.Attach', endpoints=(ep.name
  926. for ep in pkg_resources.iter_entry_points('qubes.devices')),
  927. scope='local', write=True, execute=True)
  928. @asyncio.coroutine
  929. def vm_device_attach(self, endpoint, untrusted_payload):
  930. devclass = endpoint
  931. options = {}
  932. persistent = False
  933. for untrusted_option in untrusted_payload.decode('ascii').split():
  934. try:
  935. untrusted_key, untrusted_value = untrusted_option.split('=', 1)
  936. except ValueError:
  937. raise qubes.api.ProtocolError('Invalid options format')
  938. if untrusted_key == 'persistent':
  939. persistent = qubes.property.bool(None, None, untrusted_value)
  940. else:
  941. allowed_chars_key = string.digits + string.ascii_letters + '-_.'
  942. allowed_chars_value = allowed_chars_key + ',+:'
  943. if any(x not in allowed_chars_key for x in untrusted_key):
  944. raise qubes.api.ProtocolError(
  945. 'Invalid chars in option name')
  946. if any(x not in allowed_chars_value for x in untrusted_value):
  947. raise qubes.api.ProtocolError(
  948. 'Invalid chars in option value')
  949. options[untrusted_key] = untrusted_value
  950. # qrexec already verified that no strange characters are in self.arg
  951. backend_domain, ident = self.arg.split('+', 1)
  952. # may raise KeyError, either on domain or ident
  953. dev = self.app.domains[backend_domain].devices[devclass][ident]
  954. self.fire_event_for_permission(device=dev,
  955. devclass=devclass, persistent=persistent,
  956. options=options)
  957. assignment = qubes.devices.DeviceAssignment(
  958. dev.backend_domain, dev.ident,
  959. options=options, persistent=persistent)
  960. yield from self.dest.devices[devclass].attach(assignment)
  961. self.app.save()
  962. # Attach/Detach action can both modify persistent state (with
  963. # persistent=True) and volatile state of running VM (with persistent=False).
  964. # For this reason, write=True + execute=True
  965. @qubes.api.method('admin.vm.device.{endpoint}.Detach', endpoints=(ep.name
  966. for ep in pkg_resources.iter_entry_points('qubes.devices')),
  967. no_payload=True,
  968. scope='local', write=True, execute=True)
  969. @asyncio.coroutine
  970. def vm_device_detach(self, endpoint):
  971. devclass = endpoint
  972. # qrexec already verified that no strange characters are in self.arg
  973. backend_domain, ident = self.arg.split('+', 1)
  974. # may raise KeyError; if device isn't found, it will be UnknownDevice
  975. # instance - but allow it, otherwise it will be impossible to detach
  976. # already removed device
  977. dev = self.app.domains[backend_domain].devices[devclass][ident]
  978. self.fire_event_for_permission(device=dev,
  979. devclass=devclass)
  980. assignment = qubes.devices.DeviceAssignment(
  981. dev.backend_domain, dev.ident)
  982. yield from self.dest.devices[devclass].detach(assignment)
  983. self.app.save()
  984. # Attach/Detach action can both modify persistent state (with
  985. # persistent=True) and volatile state of running VM (with persistent=False).
  986. # For this reason, write=True + execute=True
  987. @qubes.api.method('admin.vm.device.{endpoint}.Set.persistent',
  988. endpoints=(ep.name
  989. for ep in pkg_resources.iter_entry_points('qubes.devices')),
  990. scope='local', write=True, execute=True)
  991. @asyncio.coroutine
  992. def vm_device_set_persistent(self, endpoint, untrusted_payload):
  993. devclass = endpoint
  994. assert untrusted_payload in (b'True', b'False')
  995. persistent = untrusted_payload == b'True'
  996. del untrusted_payload
  997. # qrexec already verified that no strange characters are in self.arg
  998. backend_domain, ident = self.arg.split('+', 1)
  999. # device must be already attached
  1000. matching_devices = [dev for dev
  1001. in self.dest.devices[devclass].attached()
  1002. if dev.backend_domain.name == backend_domain and dev.ident == ident]
  1003. assert len(matching_devices) == 1
  1004. dev = matching_devices[0]
  1005. self.fire_event_for_permission(device=dev,
  1006. persistent=persistent)
  1007. self.dest.devices[devclass].update_persistent(dev, persistent)
  1008. self.app.save()
  1009. @qubes.api.method('admin.vm.firewall.Get', no_payload=True,
  1010. scope='local', read=True)
  1011. @asyncio.coroutine
  1012. def vm_firewall_get(self):
  1013. assert not self.arg
  1014. self.fire_event_for_permission()
  1015. return ''.join('{}\n'.format(rule.api_rule)
  1016. for rule in self.dest.firewall.rules
  1017. if rule.api_rule is not None)
  1018. @qubes.api.method('admin.vm.firewall.Set',
  1019. scope='local', write=True)
  1020. @asyncio.coroutine
  1021. def vm_firewall_set(self, untrusted_payload):
  1022. assert not self.arg
  1023. rules = []
  1024. for untrusted_line in untrusted_payload.decode('ascii',
  1025. errors='strict').splitlines():
  1026. rule = qubes.firewall.Rule.from_api_string(
  1027. untrusted_rule=untrusted_line)
  1028. rules.append(rule)
  1029. self.fire_event_for_permission(rules=rules)
  1030. self.dest.firewall.rules = rules
  1031. self.dest.firewall.save()
  1032. @qubes.api.method('admin.vm.firewall.Reload', no_payload=True,
  1033. scope='local', execute=True)
  1034. @asyncio.coroutine
  1035. def vm_firewall_reload(self):
  1036. assert not self.arg
  1037. self.fire_event_for_permission()
  1038. self.dest.fire_event('firewall-changed')
  1039. @asyncio.coroutine
  1040. def _load_backup_profile(self, profile_name, skip_passphrase=False):
  1041. '''Load backup profile and return :py:class:`qubes.backup.Backup`
  1042. instance
  1043. :param profile_name: name of the profile
  1044. :param skip_passphrase: do not load passphrase - only backup summary
  1045. can be retrieved when this option is in use
  1046. '''
  1047. profile_path = os.path.join(
  1048. qubes.config.backup_profile_dir, profile_name + '.conf')
  1049. with open(profile_path) as profile_file:
  1050. profile_data = yaml.safe_load(profile_file)
  1051. try:
  1052. dest_vm = profile_data['destination_vm']
  1053. dest_path = profile_data['destination_path']
  1054. include_vms = profile_data['include']
  1055. exclude_vms = profile_data.get('exclude', [])
  1056. compression = profile_data.get('compression', True)
  1057. except KeyError as err:
  1058. raise qubes.exc.QubesException(
  1059. 'Invalid backup profile - missing {}'.format(err))
  1060. try:
  1061. dest_vm = self.app.domains[dest_vm]
  1062. except KeyError:
  1063. raise qubes.exc.QubesException(
  1064. 'Invalid destination_vm specified in backup profile')
  1065. if isinstance(dest_vm, qubes.vm.adminvm.AdminVM):
  1066. dest_vm = None
  1067. if skip_passphrase:
  1068. passphrase = None
  1069. elif 'passphrase_text' in profile_data:
  1070. passphrase = profile_data['passphrase_text']
  1071. elif 'passphrase_vm' in profile_data:
  1072. passphrase_vm_name = profile_data['passphrase_vm']
  1073. try:
  1074. passphrase_vm = self.app.domains[passphrase_vm_name]
  1075. except KeyError:
  1076. raise qubes.exc.QubesException(
  1077. 'Invalid backup profile - invalid passphrase_vm')
  1078. try:
  1079. passphrase, _ = yield from passphrase_vm.run_service_for_stdio(
  1080. 'qubes.BackupPassphrase+' + self.arg)
  1081. # make it foolproof against "echo passphrase" implementation
  1082. passphrase = passphrase.strip()
  1083. assert b'\n' not in passphrase
  1084. except subprocess.CalledProcessError:
  1085. raise qubes.exc.QubesException(
  1086. 'Failed to retrieve passphrase from \'{}\' VM'.format(
  1087. passphrase_vm_name))
  1088. else:
  1089. raise qubes.exc.QubesException(
  1090. 'Invalid backup profile - you need to '
  1091. 'specify passphrase_text or passphrase_vm')
  1092. # handle include
  1093. vms_to_backup = set(vm for vm in self.app.domains
  1094. if any(qubes.utils.match_vm_name_with_special(vm, name)
  1095. for name in include_vms))
  1096. # handle exclude
  1097. vms_to_backup.difference_update(vm for vm in self.app.domains
  1098. if any(qubes.utils.match_vm_name_with_special(vm, name)
  1099. for name in exclude_vms))
  1100. kwargs = {
  1101. 'target_vm': dest_vm,
  1102. 'target_dir': dest_path,
  1103. 'compressed': bool(compression),
  1104. 'passphrase': passphrase,
  1105. }
  1106. if isinstance(compression, str):
  1107. kwargs['compression_filter'] = compression
  1108. backup = qubes.backup.Backup(self.app, vms_to_backup, **kwargs)
  1109. return backup
  1110. def _backup_progress_callback(self, profile_name, progress):
  1111. self.app.fire_event('backup-progress', backup_profile=profile_name,
  1112. progress=progress)
  1113. @qubes.api.method('admin.backup.Execute', no_payload=True,
  1114. scope='global', read=True, execute=True)
  1115. @asyncio.coroutine
  1116. def backup_execute(self):
  1117. assert self.dest.name == 'dom0'
  1118. assert self.arg
  1119. assert '/' not in self.arg
  1120. self.fire_event_for_permission()
  1121. profile_path = os.path.join(qubes.config.backup_profile_dir,
  1122. self.arg + '.conf')
  1123. if not os.path.exists(profile_path):
  1124. raise qubes.api.PermissionDenied(
  1125. 'Backup profile {} does not exist'.format(self.arg))
  1126. if not hasattr(self.app, 'api_admin_running_backups'):
  1127. self.app.api_admin_running_backups = {}
  1128. backup = yield from self._load_backup_profile(self.arg)
  1129. backup.progress_callback = functools.partial(
  1130. self._backup_progress_callback, self.arg)
  1131. # forbid running the same backup operation twice at the time
  1132. assert self.arg not in self.app.api_admin_running_backups
  1133. backup_task = asyncio.ensure_future(backup.backup_do())
  1134. self.app.api_admin_running_backups[self.arg] = backup_task
  1135. try:
  1136. yield from backup_task
  1137. except asyncio.CancelledError:
  1138. raise qubes.exc.QubesException('Backup cancelled')
  1139. finally:
  1140. del self.app.api_admin_running_backups[self.arg]
  1141. @qubes.api.method('admin.backup.Cancel', no_payload=True,
  1142. scope='global', execute=True)
  1143. @asyncio.coroutine
  1144. def backup_cancel(self):
  1145. assert self.dest.name == 'dom0'
  1146. assert self.arg
  1147. assert '/' not in self.arg
  1148. self.fire_event_for_permission()
  1149. if not hasattr(self.app, 'api_admin_running_backups'):
  1150. self.app.api_admin_running_backups = {}
  1151. if self.arg not in self.app.api_admin_running_backups:
  1152. raise qubes.exc.QubesException('Backup operation not running')
  1153. self.app.api_admin_running_backups[self.arg].cancel()
  1154. @qubes.api.method('admin.backup.Info', no_payload=True,
  1155. scope='local', read=True)
  1156. @asyncio.coroutine
  1157. def backup_info(self):
  1158. assert self.dest.name == 'dom0'
  1159. assert self.arg
  1160. assert '/' not in self.arg
  1161. self.fire_event_for_permission()
  1162. profile_path = os.path.join(qubes.config.backup_profile_dir,
  1163. self.arg + '.conf')
  1164. if not os.path.exists(profile_path):
  1165. raise qubes.api.PermissionDenied(
  1166. 'Backup profile {} does not exist'.format(self.arg))
  1167. backup = yield from self._load_backup_profile(self.arg,
  1168. skip_passphrase=True)
  1169. return backup.get_backup_summary()
  1170. def _send_stats_single(self, info_time, info, only_vm, filters,
  1171. id_to_name_map):
  1172. '''A single iteration of sending VM stats
  1173. :param info_time: time of previous iteration
  1174. :param info: information retrieved in previous iteration
  1175. :param only_vm: send information only about this VM
  1176. :param filters: filters to apply on stats before sending
  1177. :param id_to_name_map: ID->VM name map, may be modified
  1178. :return: tuple(info_time, info) - new information (to be passed to
  1179. the next iteration)
  1180. '''
  1181. (info_time, info) = self.app.host.get_vm_stats(info_time, info,
  1182. only_vm=only_vm)
  1183. for vm_id, vm_info in info.items():
  1184. if vm_id not in id_to_name_map:
  1185. try:
  1186. name = \
  1187. self.app.vmm.libvirt_conn.lookupByID(vm_id).name()
  1188. except libvirt.libvirtError as err:
  1189. if err.get_error_code() == libvirt.VIR_ERR_NO_DOMAIN:
  1190. # stubdomain or so
  1191. name = None
  1192. else:
  1193. raise
  1194. id_to_name_map[vm_id] = name
  1195. else:
  1196. name = id_to_name_map[vm_id]
  1197. # skip VMs with unknown name
  1198. if name is None:
  1199. continue
  1200. if not list(qubes.api.apply_filters([name], filters)):
  1201. continue
  1202. self.send_event(name, 'vm-stats',
  1203. memory_kb=int(vm_info['memory_kb']),
  1204. cpu_time=int(vm_info['cpu_time'] / 1000000),
  1205. cpu_usage=int(vm_info['cpu_usage']))
  1206. return info_time, info
  1207. @qubes.api.method('admin.vm.Stats', no_payload=True,
  1208. scope='global', read=True)
  1209. @asyncio.coroutine
  1210. def vm_stats(self):
  1211. assert not self.arg
  1212. # run until client connection is terminated
  1213. self.cancellable = True
  1214. # cache event filters, to not call an event each time an event arrives
  1215. stats_filters = self.fire_event_for_permission()
  1216. only_vm = None
  1217. if self.dest.name != 'dom0':
  1218. only_vm = self.dest
  1219. self.send_event(self.app, 'connection-established')
  1220. info_time = None
  1221. info = None
  1222. id_to_name_map = {0: 'dom0'}
  1223. try:
  1224. while True:
  1225. info_time, info = self._send_stats_single(info_time, info,
  1226. only_vm, stats_filters, id_to_name_map)
  1227. yield from asyncio.sleep(self.app.stats_interval)
  1228. except asyncio.CancelledError:
  1229. # valid method to terminate this loop
  1230. pass