net.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2010-2016 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2013-2016 Marek Marczykowski-Górecki
  8. # <marmarek@invisiblethingslab.com>
  9. # Copyright (C) 2014-2016 Wojtek Porczyk <woju@invisiblethingslab.com>
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License along
  22. # with this program; if not, write to the Free Software Foundation, Inc.,
  23. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  24. #
  25. import os
  26. import shutil
  27. import time
  28. import libvirt
  29. import lxml.etree
  30. import qubes
  31. import qubes.exc
  32. class NetVMMixin(object):
  33. mac = qubes.property('mac', type=str,
  34. default=(lambda self:
  35. self.template.mac if self.hvm
  36. and hasattr(self, 'template')
  37. and self.template is not None
  38. else '00:16:3E:5E:6C:{:02X}'.format(self.qid)),
  39. ls_width=17,
  40. doc='MAC address of the NIC emulated inside VM')
  41. # XXX swallowed uses_default_netvm
  42. netvm = qubes.VMProperty('netvm', load_stage=4, allow_none=True,
  43. default=(lambda self: self.app.default_fw_netvm if self.provides_network
  44. else self.app.default_netvm),
  45. ls_width=31,
  46. doc='''VM that provides network connection to this domain. When
  47. `None`, machine is disconnected. When absent, domain uses default
  48. NetVM.''')
  49. provides_network = qubes.property('provides_network', default=False,
  50. type=bool, setter=qubes.property.bool,
  51. doc='''If this domain can act as network provider (formerly known as
  52. NetVM or ProxyVM)''')
  53. #
  54. # used in networked appvms or proxyvms (netvm is not None)
  55. #
  56. @qubes.tools.qvm_ls.column(width=15)
  57. @property
  58. def ip(self):
  59. '''IP address of this domain.'''
  60. if not self.is_networked():
  61. return None
  62. if self.netvm is not None:
  63. return self.netvm.get_ip_for_vm(self)
  64. else:
  65. return self.get_ip_for_vm(self)
  66. #
  67. # used in netvms (provides_network=True)
  68. # those properties and methods are most likely accessed as vm.netvm.<prop>
  69. #
  70. @staticmethod
  71. def get_ip_for_vm(vm):
  72. '''Get IP address for (appvm) domain connected to this (netvm) domain.
  73. '''
  74. import qubes.vm.dispvm # pylint: disable=redefined-outer-name
  75. if isinstance(vm, qubes.vm.dispvm.DispVM):
  76. return '10.138.{}.{}'.format((vm.dispid >> 8) & 7, vm.dispid & 7)
  77. # VM technically can get address which ends in '.0'. This currently
  78. # does not happen, because qid < 253, but may happen in the future.
  79. return '10.137.{}.{}'.format((vm.qid >> 8) & 7, vm.qid & 7)
  80. @qubes.tools.qvm_ls.column(head='IPBACK', width=15)
  81. @property
  82. def gateway(self):
  83. '''Gateway for other domains that use this domain as netvm.'''
  84. return self.ip if self.provides_network else None
  85. @qubes.tools.qvm_ls.column(width=15)
  86. @property
  87. def netmask(self):
  88. '''Netmask for gateway address.'''
  89. return '255.255.255.255' if self.is_networked() else None
  90. @qubes.tools.qvm_ls.column(width=7)
  91. @property
  92. def vif(self):
  93. '''Name of the network interface backend in netvm that is connected to
  94. NIC inside this domain.'''
  95. if self.xid < 0:
  96. return None
  97. if self.netvm is None:
  98. return None
  99. # XXX ugly hack ahead
  100. # stubdom_xid is one more than self.xid
  101. return 'vif{0}.+'.format(self.xid + int(self.hvm))
  102. @property
  103. def connected_vms(self):
  104. for vm in self.app.domains:
  105. if vm.netvm is self:
  106. yield vm
  107. #
  108. # used in both
  109. #
  110. @qubes.tools.qvm_ls.column(width=15)
  111. @property
  112. def dns(self):
  113. '''Secondary DNS server set up for this domain.'''
  114. if self.netvm is not None or self.provides_network:
  115. return (
  116. '10.139.1.1',
  117. '10.139.1.2',
  118. )
  119. else:
  120. return None
  121. def __init__(self, *args, **kwargs):
  122. super(NetVMMixin, self).__init__(*args, **kwargs)
  123. @qubes.events.handler('domain-start')
  124. def on_domain_started(self, event, **kwargs):
  125. '''Connect this domain to its downstream domains. Also reload firewall
  126. in its netvm.
  127. This is needed when starting netvm *after* its connected domains.
  128. '''
  129. if self.netvm:
  130. self.netvm.reload_firewall_for_vm(self)
  131. for vm in self.connected_vms:
  132. if not vm.is_running():
  133. continue
  134. vm.log.info('Attaching network')
  135. # 1426
  136. vm.cleanup_vifs()
  137. try:
  138. # 1426
  139. vm.run('modprobe -r xen-netfront xennet',
  140. user='root', wait=True)
  141. except:
  142. pass
  143. try:
  144. vm.attach_network(wait=False)
  145. except qubes.exc.QubesException:
  146. vm.log.warning('Cannot attach network', exc_info=1)
  147. @qubes.events.handler('domain-pre-shutdown')
  148. def shutdown_net(self, force=False):
  149. connected_vms = [vm for vm in self.connected_vms if vm.is_running()]
  150. if connected_vms and not force:
  151. raise qubes.exc.QubesVMError(
  152. 'There are other VMs connected to this VM: {}'.format(
  153. ', '.join(vm.name for vm in connected_vms)))
  154. # detach network interfaces of connected VMs before shutting down,
  155. # otherwise libvirt will not notice it and will try to detach them
  156. # again (which would fail, obviously).
  157. # This code can be removed when #1426 got implemented
  158. for vm in connected_vms:
  159. if vm.is_running():
  160. try:
  161. vm.detach_network()
  162. except (qubes.exc.QubesException, libvirt.libvirtError):
  163. # ignore errors
  164. pass
  165. # TODO maybe this should be other way: backend.devices['net'].attach(self)
  166. def attach_network(self):
  167. '''Attach network in this machine to it's netvm.'''
  168. if not self.is_running():
  169. raise qubes.exc.QubesVMNotRunningError(self)
  170. assert self.netvm is not None
  171. if not self.netvm.is_running():
  172. self.log.info('Starting NetVM ({0})'.format(self.netvm.name))
  173. self.netvm.start()
  174. self.libvirt_domain.attachDevice(lxml.etree.ElementTree(
  175. self.lvxml_net_dev(self.ip, self.mac, self.netvm)).tostring())
  176. def detach_network(self):
  177. '''Detach machine from it's netvm'''
  178. if not self.is_running():
  179. raise qubes.exc.QubesVMNotRunningError(self)
  180. assert self.netvm is not None
  181. self.libvirt_domain.detachDevice(lxml.etree.ElementTree(
  182. self.lvxml_net_dev(self.ip, self.mac, self.netvm)).tostring())
  183. def is_networked(self):
  184. '''Check whether this VM can reach network (firewall notwithstanding).
  185. :returns: :py:obj:`True` if is machine can reach network, \
  186. :py:obj:`False` otherwise.
  187. :rtype: bool
  188. '''
  189. if self.provides_network:
  190. return True
  191. return self.netvm is not None
  192. def cleanup_vifs(self):
  193. '''Remove stale network device backends.
  194. Libvirt does not remove vif when backend domain is down, so we must do
  195. it manually. This method is one big hack for #1426.
  196. '''
  197. # FIXME: remove this?
  198. if not self.is_running():
  199. return
  200. dev_basepath = '/local/domain/%d/device/vif' % self.xid
  201. for dev in self.app.vmm.xs.ls('', dev_basepath):
  202. # check if backend domain is alive
  203. backend_xid = int(self.app.vmm.xs.read('',
  204. '{}/{}/backend-id'.format(dev_basepath, dev)))
  205. if backend_xid in self.app.vmm.libvirt_conn.listDomainsID():
  206. # check if device is still active
  207. if self.app.vmm.xs.read('',
  208. '{}/{}/state'.format(dev_basepath, dev)) == '4':
  209. continue
  210. # remove dead device
  211. self.app.vmm.xs.rm('', '{}/{}'.format(dev_basepath, dev))
  212. def reload_firewall_for_vm(self, vm):
  213. # TODO QubesOS/qubes-issues#1815
  214. pass
  215. @qubes.events.handler('property-del:netvm')
  216. def on_property_del_netvm(self, event, name, old_netvm):
  217. # pylint: disable=unused-argument
  218. # we are changing to default netvm
  219. new_netvm = self.netvm
  220. if new_netvm == old_netvm:
  221. return
  222. self.fire_event('property-set:netvm', 'netvm', new_netvm, old_netvm)
  223. @qubes.events.handler('property-set:netvm')
  224. def on_property_set_netvm(self, event, name, new_netvm, old_netvm=None):
  225. # pylint: disable=unused-argument
  226. # TODO offline_mode
  227. if self.is_running() and new_netvm is not None \
  228. and not new_netvm.is_running():
  229. raise qubes.exc.QubesVMNotStartedError(new_netvm,
  230. 'Cannot dynamically attach to stopped NetVM: {!r}'.format(
  231. new_netvm))
  232. if self.netvm is not None:
  233. if self.is_running():
  234. self.detach_network()
  235. # TODO change to domain-removed event handler in netvm
  236. # if hasattr(self.netvm, 'post_vm_net_detach'):
  237. # self.netvm.post_vm_net_detach(self)
  238. if new_netvm is None:
  239. return
  240. if self.is_running():
  241. # refresh IP, DNS etc
  242. self.create_qdb_entries()
  243. self.attach_network()
  244. # TODO documentation
  245. new_netvm.fire_event('net-domain-connect', self)
  246. # FIXME handle in the above event?
  247. new_netvm.reload_firewall_for_vm(self)
  248. @qubes.events.handler('domain-qdb-create')
  249. def on_domain_qdb_create(self, event):
  250. # TODO: fill firewall QubesDB entries (QubesOS/qubes-issues#1815)
  251. pass
  252. # FIXME use event after creating Xen domain object, but before "resume"
  253. @qubes.events.handler('firewall-changed')
  254. def on_firewall_changed(self, event):
  255. if self.is_running() and self.netvm:
  256. self.netvm.reload_firewall_for_vm(self)