net.py 10 KB

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