ffho_net.py 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230
  1. #!/usr/bin/python
  2. import collections
  3. import re
  4. from copy import deepcopy
  5. mac_prefix = "f2"
  6. # VRF configuration map
  7. vrf_info = {
  8. 'vrf_external' : {
  9. 'table' : 1023,
  10. 'fwmark' : [ '0x1', '0x1023' ],
  11. },
  12. }
  13. #
  14. # Default parameters added to any given bonding interface,
  15. # if not specified at the interface configuration.
  16. default_bond_config = {
  17. 'bond-mode': '802.3ad',
  18. 'bond-min-links': '1',
  19. 'bond-xmit-hash-policy': 'layer3+4'
  20. }
  21. #
  22. # Default parameters added to any given bonding interface,
  23. # if not specified at the interface configuration.
  24. default_bridge_config = {
  25. 'bridge-fd' : '0',
  26. 'bridge-stp' : 'no'
  27. }
  28. #
  29. # Hop penalty to set if none is explicitly specified
  30. # Check if one of these roles is configured for any given node, use first match.
  31. default_hop_penalty_by_role = {
  32. 'bbr' : 5,
  33. 'bras' : 50,
  34. 'batman_gw' : 5,
  35. 'batman_ext': 50,
  36. }
  37. batman_role_evaluation_order = [ 'bbr', 'batman_gw', 'bras' ]
  38. #
  39. # Default interface attributes to be added to GRE interface to AS201701 when
  40. # not already present in pillar interface configuration.
  41. GRE_FFRL_attrs = {
  42. 'mode' : 'gre',
  43. 'method' : 'tunnel',
  44. 'mtu' : '1400',
  45. 'ttl' : '64',
  46. }
  47. # The IPv4/IPv6 prefix used for Loopback IPs
  48. loopback_prefix = {
  49. 'v4' : '10.132.255.',
  50. 'v6' : '2a03:2260:2342:ffff::',
  51. }
  52. # The DNS zone base names used for generating zone files from IP address
  53. # configured on nodes interfaces.
  54. DNS_zone_names = {
  55. 'forward' : 'ffho.net',
  56. 'rev_v4' : [
  57. '132.10.in-addr.arpa',
  58. '30.172.in-addr.arpa',
  59. ],
  60. 'rev_v6' : [
  61. '2.4.3.2.0.6.2.2.3.0.a.2.ip6.arpa',
  62. ]
  63. }
  64. # MTU configuration
  65. MTU = {
  66. # The default MTU for any interface which does not have a MTU configured
  67. # explicitly in the pillar node config or does not get a MTU configured
  68. # by any means of this SDN stuff here.
  69. 'default' : 1500,
  70. # A batman underlay device, probably a VXLAN or VLAN interface.
  71. #
  72. # 1500
  73. # + 60 B.A.T.M.A.N. adv header + network coding (activated by default by Debian)
  74. 'batman_underlay_iface' : 1560,
  75. # VXLAN underlay device, probably a VLAN within $POP or between two BBRs.
  76. #
  77. # 1560
  78. # + 14 Inner Ethernet Frame
  79. # + 8 VXLAN Header
  80. # + 8 UDP Header
  81. # + 20 IPv4 Header
  82. 'vxlan_underlay_iface' : 1610,
  83. }
  84. ################################################################################
  85. # #
  86. # Internal functions #
  87. # #
  88. # Touching anything below will void any warranty you never had ;) #
  89. # #
  90. ################################################################################
  91. sites = None
  92. def _get_site_no (sites_config, site_name):
  93. global sites
  94. if sites == None:
  95. sites = {}
  96. for site in sites_config:
  97. if site.startswith ("_"):
  98. continue
  99. sites[site] = sites_config[site].get ("site_no", -2)
  100. return sites.get (site_name, -1)
  101. #
  102. # Generate a MAC address after the format f2:dd:dd:ss:nn:nn where
  103. # dd:dd is the hexadecimal reprensentation of the nodes device_id
  104. # ff:ff representing the gluon nodes
  105. #
  106. # ss is the hexadecimal reprensentation of the site_id the interface is connected to
  107. #
  108. # nn:nn is the decimal representation of the network the interface is connected to, with
  109. # 00:00 being the dummy interface
  110. # 00:0f being the VEth internal side interface
  111. # 00:e0 being an external instance dummy interface
  112. # 00:e1 being an inter-gw-vpn interface
  113. # 00:e4 being an nodes fastd tunnel interface of IPv4 transport
  114. # 00:e6 being an nodes fastd tunnel interface of IPv6 transport
  115. # 00:ef being an extenral instance VEth interface side
  116. # 02:xx being a connection to local Vlan 2xx
  117. # xx:xx being a VXLAN tunnel for site ss, with xx being the underlay VLAN ID (1xyz, 2xyz)
  118. # ff:ff being the gluon next-node interface
  119. def gen_batman_iface_mac (site_no, device_no, network):
  120. net_type_map = {
  121. 'dummy' : "00:00",
  122. 'int2ext' : "00:0f",
  123. 'dummy-e' : "00:e0",
  124. 'intergw' : "00:e1",
  125. 'nodes4' : "00:e4",
  126. 'nodes6' : "00:e6",
  127. 'ext2int' : "00:ef",
  128. }
  129. # Well-known network type?
  130. if network in net_type_map:
  131. last = net_type_map[network]
  132. elif type (network) == int:
  133. last = re.sub (r'(\d{2})(\d{2})', '\g<1>:\g<2>', "%04d" % network)
  134. else:
  135. last = "ee:ee"
  136. # Convert device_no to hex, format number to 4 digits with leading zeros and : betwwen 2nd and 3rd digit
  137. device_no_hex = re.sub (r'([0-9a-fA-F]{2})([0-9a-fA-F]{2})', '\g<1>:\g<2>', "%04x" % int (device_no))
  138. # Format site_no to two digit number with leading zero
  139. site_no_hex = "%02d" % int (site_no)
  140. return "%s:%s:%s:%s" % (mac_prefix, device_no_hex, site_no_hex, last)
  141. # Gather B.A.T.M.A.N. related config options for real batman devices (e.g. bat0)
  142. # as well as for batman member interfaces (e.g. eth0.100, fastd ifaces etc.)
  143. def _update_batman_config (node_config, iface, sites_config):
  144. try:
  145. node_batman_hop_penalty = int (node_config['batman']['hop-penalty'])
  146. except KeyError,ValueError:
  147. node_batman_hop_penalty = None
  148. iface_config = node_config['ifaces'][iface]
  149. iface_type = iface_config.get ('type', 'inet')
  150. batman_config = {}
  151. for item, value in iface_config.items ():
  152. if item.startswith ('batman-'):
  153. batman_config[item] = value
  154. iface_config.pop (item)
  155. # B.A.T.M.A.N. device (e.g. bat0)
  156. if iface_type == 'batman':
  157. if 'batman-hop-penalty' not in batman_config:
  158. # If there's a hop penalty set for the node, but not for the interface
  159. # apply the nodes hop penalty
  160. if node_batman_hop_penalty:
  161. batman_config['batman-hop-penalty'] = node_batman_hop_penalty
  162. # If there's no hop penalty set for the node, use a default hop penalty
  163. # for the roles the node might have, if any
  164. else:
  165. node_roles = node_config.get ('roles', [])
  166. for role in batman_role_evaluation_order:
  167. if role in node_roles:
  168. batman_config['batman-hop-penalty'] = default_hop_penalty_by_role[role]
  169. if 'batman_ext' in node_roles and iface.endswith('-ext'):
  170. batman_config['batman-hop-penalty'] = default_hop_penalty_by_role['batman_ext']
  171. # If batman ifaces were specified as a list - which they should -
  172. # generate a sorted list of interface names as string representation
  173. if 'batman-ifaces' in batman_config and type (batman_config['batman-ifaces']) == list:
  174. batman_iface_str = " ".join (sorted (batman_config['batman-ifaces']))
  175. batman_config['batman-ifaces'] = batman_iface_str
  176. # B.A.T.M.A.N. member interface (e.g. eth.100, fastd ifaces, etc.)
  177. elif iface_type == 'batman_iface':
  178. # Generate unique MAC address for every batman iface, as B.A.T.M.A.N.
  179. # will get puzzled with multiple interfaces having the same MAC and
  180. # do nasty things.
  181. site = iface_config.get ('site')
  182. site_no = _get_site_no (sites_config, site)
  183. device_no = node_config.get ('id')
  184. network = 1234
  185. # Generate a unique BATMAN-MAC for this interfaces
  186. match = re.search (r'^vlan(\d+)', iface)
  187. if match:
  188. network = int (match.group (1))
  189. iface_config['hwaddress'] = gen_batman_iface_mac (site_no, device_no, network)
  190. iface_config['batman'] = batman_config
  191. # Mangle bond specific config items with default values and store them in
  192. # separate sub-dict for easier access and configuration.
  193. def _update_bond_config (config):
  194. bond_config = default_bond_config.copy ()
  195. for item, value in config.items ():
  196. if item.startswith ('bond-'):
  197. bond_config[item] = value
  198. config.pop (item)
  199. if bond_config['bond-mode'] not in ['2', 'balance-xor', '4', '802.3ad']:
  200. bond_config.pop ('bond-xmit-hash-policy')
  201. config['bond'] = bond_config
  202. # Mangle bridge specific config items with default values and store them in
  203. # separate sub-dict for easier access and configuration.
  204. def _update_bridge_config (config):
  205. bridge_config = default_bridge_config.copy ()
  206. for item, value in config.items ():
  207. if item.startswith ('bridge-'):
  208. bridge_config[item] = value
  209. config.pop (item)
  210. # Fix and salt mangled string interpretation back to real string.
  211. if type (value) == bool:
  212. bridge_config[item] = "yes" if value else "no"
  213. # If bridge ports were specified as a list - which they should -
  214. # generate a sorted list of interface names as string representation
  215. if 'bridge-ports' in bridge_config and type (bridge_config['bridge-ports']) == list:
  216. bridge_ports_str = " ".join (sorted (bridge_config['bridge-ports']))
  217. bridge_config['bridge-ports'] = bridge_ports_str
  218. config['bridge'] = bridge_config
  219. # Move vlan specific config items into a sub-dict for easier access and pretty-printing
  220. # in the configuration file
  221. def _update_vlan_config (config):
  222. vlan_config = {}
  223. for item, value in config.items ():
  224. if item.startswith ('vlan-'):
  225. vlan_config[item] = value
  226. config.pop (item)
  227. config['vlan'] = vlan_config
  228. # Pimp Veth interfaces
  229. # * Add peer interface name IF not present
  230. # * Add link-type veth IF not present
  231. def _update_veth_config (interface, config):
  232. veth_peer_name = {
  233. 'veth_ext2int' : 'veth_int2ext',
  234. 'veth_int2ext' : 'veth_ext2int'
  235. }
  236. if interface not in veth_peer_name:
  237. return
  238. if 'link-type' not in config:
  239. config['link-type'] = 'veth'
  240. if 'veth-peer-name' not in config:
  241. config['veth-peer-name'] = veth_peer_name[interface]
  242. # The the given MTU to the given interface - presented by it's interface config dict -
  243. # IFF no MTU has already been set in the node pillar.
  244. #
  245. # @param ifaces: All interface configuration (as dict)
  246. # @param iface_name: Name of the interface to set MTU for
  247. # @param mtu: The MTU value to set (integer)
  248. # When <mtu> is <= 0, the <mtu> configured for <iface_name>
  249. # will be used to set the MTU of the upper interface, and the
  250. # default MTU if none is configured explicitly.
  251. def _set_mtu_to_iface_and_upper (ifaces, iface_name, mtu):
  252. iface_config = ifaces.get (iface_name)
  253. # By default we assume that we should set the given MTU value as the 'automtu'
  254. # attribute to allow distinction between manually set and autogenerated MTU
  255. # values.
  256. set_automtu = True
  257. # If a mtu values <= 0 is given, use the MTU configured for this interface
  258. # or, if none is set, the default value when configuring the vlan-raw-device.
  259. if mtu <= 0:
  260. set_automtu = False
  261. mtu = iface_config.get ('mtu', MTU['default'])
  262. # If this interface already has a MTU set - probably because someone manually
  263. # specified one in the node pillar - we do not touch the MTU of this interface.
  264. # Nevertheless it's worth looking at any underlying interface.
  265. if 'mtu' in iface_config:
  266. set_automtu = False
  267. # There might be - read: "we have" - a situation where on top of e.g. bond0
  268. # there are vlans holding VXLAN communicaton as well a vlans directly carrying
  269. # BATMAN traffic. Now depending on which interface is evaluated first, the upper
  270. # MTU is either correct, or maybe to small.
  271. #
  272. # If any former autogenerated MTU is greater-or-equal than the one we want to
  273. # set now, we'll ignore it, and go for the greater one.
  274. elif 'automtu' in iface_config and iface_config['automtu'] >= mtu:
  275. set_automtu = False
  276. # If we still consider this a good move, set given MTU to this device.
  277. if set_automtu:
  278. iface_config['automtu'] = mtu
  279. # If this is a VLAN - which it probably is - fix the MTU of the underlying interface, too.
  280. # Check for 'vlan-raw-device' in iface_config and in vlan subconfig (yeah, that's not ideal).
  281. vlan_raw_device = None
  282. if 'vlan-raw-device' in iface_config:
  283. vlan_raw_device = iface_config['vlan-raw-device']
  284. elif 'vlan' in iface_config and 'vlan-raw-device' in iface_config['vlan']:
  285. vlan_raw_device = iface_config['vlan']['vlan-raw-device']
  286. if vlan_raw_device:
  287. vlan_raw_device_config = ifaces.get (vlan_raw_device, None)
  288. # vlan-raw-device might point to ethX which usually isn't configured explicitly
  289. # as ifupdown2 simply will bring it up anyway by itself. To set the MTU of such
  290. # an interface we have to add a configuration stanza for it here.
  291. if vlan_raw_device_config == None:
  292. vlan_raw_device_config = {}
  293. ifaces[vlan_raw_device] = vlan_raw_device_config
  294. # If there is a manually set MTU for this device, we don't do nothin'
  295. if 'mtu' in vlan_raw_device_config:
  296. return
  297. if 'automtu' in vlan_raw_device_config and vlan_raw_device_config['automtu'] >= mtu:
  298. return
  299. vlan_raw_device_config['automtu'] = mtu
  300. # Generate configuration entries for any batman related interfaces not
  301. # configured explicitly, but asked for implicitly by role batman and a
  302. # (list of) site(s) specified in the node config.
  303. def _generate_batman_interface_config (node_config, ifaces, sites_config):
  304. # No role 'batman', nothing to do
  305. roles = node_config.get ('roles', [])
  306. if 'batman' not in roles:
  307. return
  308. # Should there be a 2nd external BATMAN instance?
  309. batman_ext = 'batman_ext' in roles or 'bras' in roles
  310. device_no = node_config.get ('id', -1)
  311. for site in node_config.get ('sites', []):
  312. site_no = _get_site_no (sites_config, site)
  313. # Predefine interface names for regular/external BATMAN instance
  314. # and possible VEth link pair for connecting both instances.
  315. bat_site_if = "bat-%s" % site
  316. dummy_site_if = "dummy-%s" % site
  317. bat_site_if_ext = "bat-%s-ext" % site
  318. dummy_site_if_ext = "dummy-%s-e" % site
  319. int2ext_site_if = "i2e-%s" % site
  320. ext2int_site_if = "e2i-%s" % site
  321. site_ifaces = {
  322. # Regular BATMAN interface, always present
  323. bat_site_if : {
  324. 'type' : 'batman',
  325. # int2ext_site_if will be added automagically if requred
  326. 'batman-ifaces' : [ dummy_site_if ],
  327. 'batman-ifaces-ignore-regex': '.*_.*',
  328. },
  329. # Dummy interface always present in regular BATMAN instance
  330. dummy_site_if : {
  331. 'link-type' : 'dummy',
  332. 'hwaddress' : gen_batman_iface_mac (site_no, device_no, 'dummy'),
  333. 'mtu' : MTU['batman_underlay_iface'],
  334. },
  335. # Optional 2nd "external" BATMAN instance
  336. bat_site_if_ext : {
  337. 'type' : 'batman',
  338. 'batman-ifaces' : [ dummy_site_if_ext, ext2int_site_if ],
  339. 'batman-ifaces-ignore-regex': '.*_.*',
  340. 'ext_only' : True,
  341. },
  342. # Optional dummy interface always present in 2nd "external" BATMAN instance
  343. dummy_site_if_ext : {
  344. 'link-type' : 'dummy',
  345. 'hwaddress' : gen_batman_iface_mac (site_no, device_no, 'dummy-e'),
  346. 'ext_only' : True,
  347. 'mtu' : MTU['batman_underlay_iface'],
  348. },
  349. # Optional VEth interface pair - internal side
  350. int2ext_site_if : {
  351. 'link-type' : 'veth',
  352. 'veth-peer-name' : ext2int_site_if,
  353. 'hwaddress' : gen_batman_iface_mac (site_no, device_no, 'int2ext'),
  354. 'mtu' : MTU['batman_underlay_iface'],
  355. 'ext_only' : True,
  356. },
  357. # Optional VEth interface pair - "external" side
  358. ext2int_site_if : {
  359. 'link-type' : 'veth',
  360. 'veth-peer-name' : int2ext_site_if,
  361. 'hwaddress' : gen_batman_iface_mac (site_no, device_no, 'ext2int'),
  362. 'mtu' : MTU['batman_underlay_iface'],
  363. 'ext_only' : True,
  364. },
  365. }
  366. for iface, iface_config_tmpl in site_ifaces.items ():
  367. # Ignore any interface only relevant when role batman_ext is set
  368. # but it isn't
  369. if not batman_ext and iface_config_tmpl.get ('ext_only', False):
  370. continue
  371. # Remove ext_only key so we don't leak it into ifaces dict
  372. if 'ext_only' in iface_config_tmpl:
  373. del iface_config_tmpl['ext_only']
  374. # If there is no trace of the desired iface config yet...
  375. if iface not in ifaces:
  376. # ... just place our template there.
  377. ifaces[iface] = iface_config_tmpl
  378. # If there should be an 2nd external BATMAN instance make sure
  379. # the internal side of the VEth iface pair is connected to the
  380. # internal BATMAN instance.
  381. if batman_ext and iface == bat_site_if:
  382. iface_config_tmpl['batman-ifaces'].append (int2ext_site_if)
  383. # If there already is an interface configuration try to enhance it with
  384. # meaningful values from our template and force correct hwaddress to be
  385. # used.
  386. else:
  387. iface_config = ifaces[iface]
  388. # Force hwaddress to be what we expect.
  389. if 'hwaddress' in iface_config_tmpl:
  390. iface_config['hwaddress'] = iface_config_tmpl['hwaddress']
  391. # Copy every attribute of the config template missing in iface config
  392. for attr in iface_config_tmpl:
  393. if attr not in iface_config:
  394. iface_config[attr] = iface_config_tmpl[attr]
  395. # Make sure there is a bridge present for every site where a mesh_breakout
  396. # interface should be configured.
  397. for iface, config in ifaces.items ():
  398. iface_type = config.get ('type', 'inet')
  399. if iface_type not in ['mesh_breakout', 'batman_iface']:
  400. continue
  401. site = config.get ('site')
  402. site_bridge = "br-%s" % site
  403. batman_site_if = "bat-%s" % site
  404. if iface_type == 'mesh_breakout':
  405. # If the bridge has already been defined (with an IP maybe) make
  406. # sure that the corresbonding batman device is part of the bridge-
  407. # ports.
  408. if site_bridge in ifaces:
  409. bridge_config = ifaces.get (site_bridge)
  410. # If there already is/are (a) bridge-port(s) defined, add
  411. # the batman and the breakout interfaces if not present...
  412. bridge_ports = bridge_config.get ('bridge-ports', None)
  413. if bridge_ports:
  414. for dev in (batman_site_if, iface):
  415. if not dev in bridge_ports:
  416. if type (bridge_ports) == list:
  417. bridge_ports.append (dev)
  418. else:
  419. bridge_config['bridge-ports'] += ' ' + dev
  420. # ...if there is no bridge-port defined yet, just used
  421. # the batman and breakout iface.
  422. else:
  423. bridge_config['bridge-ports'] = [ iface, batman_site_if ]
  424. # If the bridge isn't present alltogether, add it.
  425. else:
  426. ifaces[site_bridge] = {
  427. 'bridge-ports' : [ iface, batman_site_if ],
  428. }
  429. elif iface_type == 'batman_iface':
  430. batman_ifaces = ifaces[bat_site_if]['batman-ifaces']
  431. if iface not in batman_ifaces:
  432. if type (batman_ifaces) == list:
  433. batman_ifaces.append (iface)
  434. else:
  435. batman_ifaces += ' ' + iface
  436. _set_mtu_to_iface_and_upper (ifaces, iface, MTU['batman_underlay_iface'])
  437. #
  438. # Generate any implicitly defined VXLAN interfaces defined in the nodes iface
  439. # defined in pillar.
  440. # The keyword "batman_connect_sites" on an interface will trigger the
  441. # generation of a VXLAN overlay interfaces.
  442. def _generate_vxlan_interface_config (node_config, ifaces, sites_config):
  443. # No role 'batman', nothing to do
  444. if 'batman' not in node_config.get ('roles', []):
  445. return
  446. # Sites configured on this node. Nothing to do, if none.
  447. my_sites = node_config.get ('sites', [])
  448. if len (my_sites) == 0:
  449. return
  450. # As we're still here we can now safely assume that a B.A.T.M.A.N.
  451. # device has been configured for every site specified in sites list.
  452. device_no = node_config.get ('id', -1)
  453. for iface, iface_config in ifaces.items ():
  454. batman_connect_sites = iface_config.get ('batman_connect_sites', [])
  455. # If we got a string, convert it to a list with a single element
  456. if type (batman_connect_sites) == str:
  457. batman_connect_sites = [ batman_connect_sites ]
  458. # If there the list of sites to connect is empty, there's nothing to do here.
  459. if len (batman_connect_sites) == 0:
  460. continue
  461. # Set the MTU of this (probably) VLAN device to the MTU required for a VXLAN underlay
  462. # device, where B.A.T.M.A.N. adv. is to be expected within the VXLAN overlay.
  463. _set_mtu_to_iface_and_upper (ifaces, iface, MTU['vxlan_underlay_iface'])
  464. # If the string 'all' is part of the list, blindly use all sites configured for this node
  465. if 'all' in batman_connect_sites:
  466. batman_connect_sites = my_sites
  467. for site in batman_connect_sites:
  468. # Silenty ignore sites not configured on this node
  469. if site not in my_sites:
  470. continue
  471. # iface_name := vx_<last 5 chars of underlay iface>_<site> stripped to 15 chars
  472. vx_iface = ("vx_%s_%s" % (re.sub ('vlan', 'v', iface)[-5:], re.sub (r'[_-]', '', site)))[:15]
  473. site_no = _get_site_no (sites_config, site)
  474. vni = 100 + site_no
  475. bat_iface = "bat-%s" % site
  476. try:
  477. iface_id = int (re.sub ('vlan', '', iface))
  478. # Gather interface specific mcast address.
  479. # The address is derived from the vlan-id of the underlying interface,
  480. # assuming that it in fact is a vlan interface.
  481. # Mangle the vlan-id into two 2 digit values, eliminating any leading zeros.
  482. iface_id_4digit = "%04d" % iface_id
  483. octet2 = int (iface_id_4digit[0:2])
  484. octet3 = int (iface_id_4digit[2:4])
  485. mcast_ip = "225.%s.%s.%s" % (octet2, octet3, site_no)
  486. vni = octet2 * 256 * 256 + octet3 * 256 + site_no
  487. except ValueError:
  488. iface_id = 9999
  489. mcast_ip = "225.0.0.%s" % site_no
  490. vni = site_no
  491. # bail out if VXLAN tunnel already configured
  492. if vx_iface in ifaces:
  493. continue
  494. # If there's no batman interface for this site, there's no point
  495. # in setting up a VXLAN interfaces
  496. if bat_iface not in ifaces:
  497. continue
  498. # Add the VXLAN interface
  499. ifaces[vx_iface] = {
  500. 'vxlan' : {
  501. 'vxlan-id' : vni,
  502. 'vxlan-svcnodeip' : mcast_ip,
  503. 'vxlan-physdev' : iface,
  504. },
  505. 'hwaddress' : gen_batman_iface_mac (site_no, device_no, iface_id),
  506. 'mtu' : MTU['batman_underlay_iface'],
  507. }
  508. # If the batman interface for this site doesn't have any interfaces
  509. # set up - which basicly cannot happen - add this VXLAN tunnel as
  510. # the first in the list.
  511. if not 'batman-ifaces' in ifaces[bat_iface]:
  512. ifaces[bat_iface]['batman-ifaces'] = [ vx_iface ]
  513. continue
  514. # In the hope there already are interfaces for batman set up already
  515. # add this VXLAN tunnel to the list
  516. batman_ifaces = ifaces[bat_iface]['batman-ifaces']
  517. if vx_iface not in batman_ifaces:
  518. if type (batman_ifaces) == list:
  519. batman_ifaces.append (vx_iface)
  520. else:
  521. batman_ifaces += ' ' + vx_iface
  522. #
  523. # Generate implicitly defined VRFs according to the vrf_info dict at the top
  524. # of this file
  525. def _generate_vrfs (ifaces):
  526. for iface, iface_config in ifaces.items ():
  527. vrf = iface_config.get ('vrf', None)
  528. if vrf and vrf not in ifaces:
  529. conf = vrf_info.get (vrf, {})
  530. table = conf.get ('table', 1234)
  531. fwmark = conf.get ('fwmark', None)
  532. ifaces[vrf] = {
  533. 'vrf-table' : table,
  534. }
  535. # Create ip rule's for any fwmarks defined
  536. if fwmark:
  537. up = []
  538. # Make sure we are dealing with a list even if there is only one mark to be set up
  539. if type (fwmark) in (str, int):
  540. fwmark = [ fwmark ]
  541. # Create ip rule entries for IPv4 and IPv6 for every fwmark
  542. for mark in fwmark:
  543. up.append ("ip rule add fwmark %s table %s" % (mark, table))
  544. up.append ("ip -6 rule add fwmark %s table %s" % (mark, table))
  545. ifaces[vrf]['up'] = up
  546. def _generate_ffrl_gre_tunnels (ifaces):
  547. for iface, iface_config in ifaces.items ():
  548. # We only care for GRE_FFRL type interfaces
  549. if iface_config.get ('type', '') != 'GRE_FFRL':
  550. continue
  551. # Copy default values to interface config
  552. for attr, val in GRE_FFRL_attrs.items ():
  553. if not attr in iface_config:
  554. iface_config[attr] = val
  555. # Guesstimate local IPv4 tunnel endpoint address from tunnel-physdev
  556. if not 'local' in iface_config and 'tunnel-physdev' in iface_config:
  557. try:
  558. physdev_prefixes = [p.split ('/')[0] for p in ifaces[iface_config['tunnel-physdev']]['prefixes'] if '.' in p]
  559. if len (physdev_prefixes) == 1:
  560. iface_config['local'] = physdev_prefixes[0]
  561. except KeyError:
  562. pass
  563. def _generate_loopback_ips (ifaces, node_config, node_id):
  564. v4_ip = "%s/32" % get_loopback_ip (node_config, node_id, 'v4')
  565. v6_ip = "%s/128" % get_loopback_ip (node_config, node_id, 'v6')
  566. # Interface lo already present?
  567. if 'lo' not in ifaces:
  568. ifaces['lo'] = { 'prefixes' : [] }
  569. # Add 'prefixes' list if not present
  570. if 'prefixes' not in ifaces['lo']:
  571. ifaces['lo']['prefixes'] = []
  572. prefixes = ifaces['lo']['prefixes']
  573. if v4_ip not in prefixes:
  574. prefixes.append (v4_ip)
  575. if v6_ip not in prefixes:
  576. prefixes.append (v6_ip)
  577. # Generate interface descriptions / aliases for auto generated or manually
  578. # created interfaces. Currently this only is done for bridges associated
  579. # with BATMAN instanzes.
  580. #
  581. # @param node_config: The configuration of the given node (as dict)
  582. # @param sites_config Global sites configuration (as dict)
  583. def _update_interface_desc (node_config, sites_config):
  584. # Currently we only care for nodes with batman role.
  585. if 'batman' not in node_config.get ('roles', []):
  586. return
  587. for iface, iface_config in node_config.get ('ifaces', {}).items ():
  588. if 'desc' in sites_config:
  589. continue
  590. # If the interface name looks like a bridge for a BATMAN instance
  591. # try to get the name of the corresponding site
  592. match = re.search (r'^br-([a-z_-]+)$', iface)
  593. if match and match.group (1) in sites_config:
  594. try:
  595. iface_config['desc'] = sites_config[match.group (1)]['name']
  596. except KeyError:
  597. pass
  598. ################################################################################
  599. # Public functions #
  600. ################################################################################
  601. # Generate network interface configuration for given node.
  602. #
  603. # This function will read the network configuration from pillar and will
  604. # * enhance it with all default values configured at the top this file
  605. # * auto generate any implicitly configured
  606. # * VRFs
  607. # * B.A.T.M.A.N. instances and interfaces
  608. # * VXLAN interfaces to connect B.A.T.M.A.N. sites
  609. # * Loopback IPs derived from numeric node ID
  610. #
  611. # @param: node_config Pillar node configuration (as dict)
  612. # @param: sites_config Pillar sites configuration (as dict)
  613. # @param: node_id Minion name / Pillar node configuration key
  614. def get_interface_config (node_config, sites_config, node_id = ""):
  615. # Make a copy of the node_config dictionary to suppress side-effects.
  616. # This function deletes some keys from the node_config which will break
  617. # any re-run of this function or other functions relying on the node_config
  618. # to be complete.
  619. node_config = deepcopy (node_config)
  620. # Get config of this node and dict of all configured ifaces
  621. ifaces = node_config.get ('ifaces', {})
  622. # Generate configuration entries for any batman related interfaces not
  623. # configured explicitly, but asked for implicitly by role <batman> and
  624. # a (list of) site(s) specified in the node config.
  625. _generate_batman_interface_config (node_config, ifaces, sites_config)
  626. # Generate VXLAN tunnels for every interfaces specifying 'batman_connect_sites'
  627. _generate_vxlan_interface_config (node_config, ifaces, sites_config)
  628. # Enhance ifaces configuration with some meaningful defaults for
  629. # bonding, bridge and vlan interfaces, MAC address for batman ifaces, etc.
  630. for interface, config in ifaces.items ():
  631. # if type (config) not in [ dict, collections.OrderedDict ]:
  632. # raise Exception ("Configuration for interface %s on node %s seems broken: Type %s" % (interface, node_id, type (config)))
  633. iface_type = config.get ('type', 'inet')
  634. if 'batman-ifaces' in config or iface_type.startswith ('batman'):
  635. _update_batman_config (node_config, interface, sites_config)
  636. if 'bond-slaves' in config:
  637. _update_bond_config (config)
  638. # FIXME: This maybe will not match on bridges without any member ports configured!
  639. if 'bridge-ports' in config or interface.startswith ('br-'):
  640. _update_bridge_config (config)
  641. if 'vlan-raw-device' in config or 'vlan-id' in config:
  642. _update_vlan_config (config)
  643. _set_mtu_to_iface_and_upper (ifaces, interface, 0)
  644. # Pimp configuration for VEth link pairs
  645. if interface.startswith ('veth_'):
  646. _update_veth_config (interface, config)
  647. # Auto generate Loopback IPs IFF not present
  648. _generate_loopback_ips (ifaces, node_config, node_id)
  649. # Auto generated VRF devices for any VRF found in ifaces and not already configured.
  650. _generate_vrfs (ifaces)
  651. # Pimp GRE_FFRL type inteface configuration with default values
  652. _generate_ffrl_gre_tunnels (ifaces)
  653. # Drop any config parameters used in node interface configuration not
  654. # relevant anymore for config file generation.
  655. for interface, config in ifaces.items ():
  656. # Set default MTU if not already set manually or by any earlier function
  657. if interface != 'lo' and ('mtu' not in config):
  658. # Set the MTU value of this interface to the autogenerated value (if any)
  659. # or set the default, when no automtu is present.
  660. config['mtu'] = config.get ('automtu', MTU['default'])
  661. for key in [ 'automtu', 'batman_connect_sites', 'ospf', 'site', 'type' ]:
  662. if key in config:
  663. config.pop (key)
  664. # This leaves 'auto', 'prefixes' and 'desc' as keys which should not be directly
  665. # printed into the remaining configuration. These are handled within the jinja
  666. # interface template.
  667. # Generate meaningful interface descriptions / aliases where useful
  668. _update_interface_desc (node_config, sites_config)
  669. return ifaces
  670. # Generate entries for /etc/bat-hosts for every batman interface we will configure on any node.
  671. # For readability purposes superflous/redundant information is being stripped/supressed.
  672. # As these names will only show up in batctl calls with a specific site, site_names in interfaces
  673. # are stripped. Dummy interfaces are stripped as well.
  674. def gen_bat_hosts (nodes_config, sites_config):
  675. bat_hosts = {}
  676. for node_id in sorted (nodes_config.keys ()):
  677. node_config = nodes_config.get (node_id)
  678. node_name = node_id.split ('.')[0]
  679. ifaces = get_interface_config (node_config, sites_config, node_id)
  680. for iface in sorted (ifaces):
  681. iface_config = ifaces.get (iface)
  682. hwaddress = iface_config.get ('hwaddress', None)
  683. if hwaddress == None:
  684. continue
  685. entry_name = node_name
  686. match = re.search (r'^dummy-(.+)(-e)?$', iface)
  687. if match:
  688. if match.group (2):
  689. entry_name += "-e"
  690. # Append site to make name unique
  691. entry_name += "/%s" % match.group (1)
  692. else:
  693. entry_name += "/%s" % re.sub (r'^(vx_.*|i2e|e2i)[_-](.*)$', '\g<1>/\g<2>', iface)
  694. bat_hosts[hwaddress] = entry_name
  695. if 'fastd' in node_config.get ('roles', []):
  696. device_no = node_config.get ('id')
  697. for site in node_config.get ('sites', []):
  698. site_no = _get_site_no (sites_config, site)
  699. for network in ('intergw', 'nodes4', 'nodes6'):
  700. hwaddress = gen_batman_iface_mac (site_no, device_no, network)
  701. bat_hosts[hwaddress] = "%s/%s/%s" % (node_name, network, site)
  702. return bat_hosts
  703. # Generate eBGP session parameters for FFRL Transit from nodes pillar information.
  704. def get_ffrl_bgp_config (ifaces, proto):
  705. from ipcalc import IP
  706. _generate_ffrl_gre_tunnels (ifaces)
  707. sessions = {}
  708. for iface in sorted (ifaces):
  709. # We only care for GRE tunnels to the FFRL Backbone
  710. if not iface.startswith ('gre_ffrl_'):
  711. continue
  712. iface_config = ifaces.get (iface)
  713. # Search for IPv4/IPv6 prefix as defined by proto parameter
  714. local = None
  715. neighbor = None
  716. for prefix in iface_config.get ('prefixes', []):
  717. if (proto == 'v4' and '.' in prefix) or (proto == 'v6' and ':' in prefix):
  718. local = prefix.split ('/')[0]
  719. # Calculate neighbor IP as <local IP> - 1
  720. if proto == 'v4':
  721. neighbor = str (IP (int (IP (local)) - 1, version = 4))
  722. else:
  723. neighbor = str (IP (int (IP (local)) - 1, version = 6))
  724. break
  725. # Strip gre_ prefix iface name and use it as identifier for the eBGP session.
  726. name = re.sub ('gre_ffrl_', 'ffrl_', iface)
  727. sessions[name] = {
  728. 'local' : local,
  729. 'neighbor' : neighbor,
  730. 'bgp_local_pref' : iface_config.get ('bgp_local_pref', None),
  731. }
  732. return sessions
  733. # Get list of IP address configured on given interface on given node.
  734. #
  735. # @param: node_config Pillar node configuration (as dict)
  736. # @param: iface_name Name of the interface defined in pillar node config
  737. # OR name of VRF ("vrf_<something>") whichs ifaces are
  738. # to be examined.
  739. # @param: with_mask Don't strip the netmask from the prefix. (Default false)
  740. def get_node_iface_ips (node_config, iface_name, with_mask = False):
  741. ips = {
  742. 'v4' : [],
  743. 'v6' : [],
  744. }
  745. ifaces = node_config.get ('ifaces', {})
  746. ifaces_names = [ iface_name ]
  747. if iface_name.startswith ('vrf_'):
  748. # Reset list of ifaces_names to consider
  749. ifaces_names = []
  750. vrf = iface_name
  751. for iface, iface_config in ifaces.items ():
  752. # Ignore any iface NOT in the given VRF
  753. if iface_config.get ('vrf', None) != vrf:
  754. continue
  755. # Ignore any VEth pairs
  756. if iface.startswith ('veth'):
  757. continue
  758. ifaces_names.append (iface)
  759. try:
  760. for iface in ifaces_names:
  761. for prefix in ifaces[iface]['prefixes']:
  762. ip_ver = 'v6' if ':' in prefix else 'v4'
  763. if not with_mask:
  764. prefix = prefix.split ('/')[0]
  765. ips[ip_ver].append (prefix)
  766. except KeyError:
  767. pass
  768. return ips
  769. #
  770. # Get the lookback IP of the given node for the given proto
  771. #
  772. # @param node_config: Pillar node configuration (as dict)
  773. # @param node_id: Minion name / Pillar node configuration key
  774. # @param proto: { 'v4', 'v6' }
  775. def get_loopback_ip (node_config, node_id, proto):
  776. if proto not in [ 'v4', 'v6' ]:
  777. raise Exception ("get_loopback_ip(): Invalid proto: \"%s\"." % proto)
  778. if not proto in loopback_prefix:
  779. raise Exception ("get_loopback_ip(): No loopback_prefix configured for IP%s in ffno_net module!" % proto)
  780. if not 'id' in node_config:
  781. raise Exception ("get_loopback_ip(): No 'id' configured in pillar for node \"%s\"!" % node_id)
  782. # Every rule has an exception.
  783. # If there is a loopback_overwrite configuration for this node, use this instead of
  784. # the generated IPs.
  785. if 'loopback_override' in node_config:
  786. if proto not in node_config['loopback_override']:
  787. raise Exception ("get_loopback_ip(): No loopback_prefix configured for IP%s in node config / loopback_override!" % proto)
  788. return node_config['loopback_override'][proto]
  789. return "%s%s" % (loopback_prefix.get (proto), node_config.get ('id'))
  790. #
  791. # Get the router id (read: IPv4 Lo-IP) out of the given node config.
  792. def get_router_id (node_config, node_id):
  793. return get_loopback_ip (node_config, node_id, 'v4')
  794. # Compute minions OSPF interface configuration according to FFHO routing policy
  795. # See https://wiki.ffho.net/infrastruktur:vlans for information about Vlans
  796. def get_ospf_interface_config (node_config, grains_id):
  797. ospf_node_config = node_config.get ('ospf', {})
  798. ospf_interfaces = {}
  799. for iface, iface_config in node_config.get ('ifaces', {}).items ():
  800. # By default we don't speak OSPF on interfaces
  801. ospf_on = False
  802. # Defaults for OSPF interfaces
  803. ospf_config = {
  804. 'stub' : True, # Active/Passive interface
  805. 'cost' : 12345,
  806. # 'type' # Area type
  807. }
  808. # OSPF configuration for interface given?
  809. ospf_config_pillar = iface_config.get ('ospf', {})
  810. # Local Gigabit Ethernet based connections (PTP or L2 subnets), cost 10
  811. if re.search (r'^(br-?|br\d+\.|vlan)10\d\d$', iface):
  812. ospf_on = True
  813. ospf_config['stub'] = False
  814. ospf_config['cost'] = 10
  815. ospf_config['desc'] = "Wired Gigabit connection"
  816. # AF-X based WBBL connection
  817. elif re.search (r'^vlan20\d\d$', iface):
  818. ospf_on = True
  819. ospf_config['stub'] = False
  820. ospf_config['cost'] = 100
  821. ospf_config['desc'] = "AF-X based WBBL connection"
  822. # Non-AF-X based WBBL connection
  823. elif re.search (r'^vlan22\d\d$', iface):
  824. ospf_on = True
  825. ospf_config['stub'] = False
  826. ospf_config['cost'] = 1000
  827. ospf_config['desc'] = "Non-AF-X based WBBL connection"
  828. # Management Vlans
  829. elif re.search (r'^vlan30\d\d$', iface):
  830. ospf_on = True
  831. ospf_config['stub'] = True
  832. ospf_config['cost'] = 10
  833. # OPS Vlans
  834. elif re.search (r'^vlan39\d\d$', iface):
  835. ospf_on = True
  836. ospf_config['stub'] = True
  837. ospf_config['cost'] = 10
  838. # Active OSPF on OpenVPN tunnels, cost 10000
  839. elif iface.startswith ('ovpn-'):
  840. ospf_on = True
  841. ospf_config['stub'] = False
  842. ospf_config['cost'] = 10000
  843. # Inter-Core links should have cost 5000
  844. if iface.startswith ('ovpn-cr') and grains_id.startswith ('cr'):
  845. ospf_config['cost'] = 5000
  846. # OpenVPN tunnels to EdgeRouters
  847. elif iface.startswith ('ovpn-er-'):
  848. ospf_config['type'] = 'broadcast'
  849. # Configure Out-of-band OpenVPN tunnels as stub interfaces,
  850. # so recursive next-hop lookups for OOB-BGP-session will work.
  851. elif iface.startswith ('oob-'):
  852. ospf_on = True
  853. ospf_config['stub'] = True
  854. ospf_config['cost'] = 1000
  855. # OSPF explicitly enabled for interface
  856. elif 'ospf' in iface_config:
  857. ospf_on = True
  858. # iface ospf parameters will be applied later
  859. # Go on if OSPF should not be actived
  860. if not ospf_on:
  861. continue
  862. # Explicit OSPF interface configuration parameters take precendence over generated ones
  863. for attr, val in ospf_config_pillar.items ():
  864. ospf_config[attr] = val
  865. # Convert boolean values to 'yes' / 'no' string values
  866. for attr, val in ospf_config.items ():
  867. if type (val) == bool:
  868. ospf_config[attr] = 'yes' if val else 'no'
  869. # Store interface configuration
  870. ospf_interfaces[iface] = ospf_config
  871. return ospf_interfaces
  872. # Return (possibly empty) subset of Traffic Engineering entries from 'te' pillar entry
  873. # relevenant for this minion and protocol (IPv4 / IPv6)
  874. def get_te_prefixes (te_node_config, grains_id, proto):
  875. te_config = {}
  876. for prefix, prefix_config in te_node_config.get ('prefixes', {}).items ():
  877. prefix_proto = 'v6' if ':' in prefix else 'v4'
  878. # Should this TE policy be applied on this node and is the prefix
  879. # of the proto we are looking for?
  880. if grains_id in prefix_config.get ('nodes', []) and prefix_proto == proto:
  881. te_config[prefix] = prefix_config
  882. return te_config
  883. def generate_DNS_entries (nodes_config, sites_config):
  884. import ipaddress
  885. forward_zone_name = ""
  886. forward_zone = []
  887. zones = {
  888. # <forward_zone_name>: [],
  889. # <rev_zone1_name>: [],
  890. # <rev_zone2_name>: [],
  891. # ...
  892. }
  893. # Fill zones dict with zones configured in DNS_zone_names at the top of this file.
  894. # Make sure the zone base names provided start with a leading . so the string
  895. # operations later can be done easily and safely. Proceed with fingers crossed.
  896. for entry, value in DNS_zone_names.items ():
  897. if entry == "forward":
  898. zone = value
  899. if not zone.startswith ('.'):
  900. zone = ".%s" % zone
  901. zones[zone] = forward_zone
  902. forward_zone_name = zone
  903. if entry in [ 'rev_v4', 'rev_v6' ]:
  904. for zone in value:
  905. if not zone.startswith ('.'):
  906. zone = ".%s" % zone
  907. zones[zone] = []
  908. # Process all interfaace of all nodes defined in pillar and generate forward
  909. # and reverse entries for all zones defined in DNS_zone_names. Automagically
  910. # put reverse entries into correct zone.
  911. for node_id in sorted (nodes_config):
  912. node_config = nodes_config.get (node_id)
  913. ifaces = get_interface_config (node_config, sites_config, node_id)
  914. for iface in sorted (ifaces):
  915. iface_config = ifaces.get (iface)
  916. # We only care for interfaces with IPs configured
  917. prefixes = iface_config.get ("prefixes", None)
  918. if prefixes == None:
  919. continue
  920. # Ignore any interface in $VRF
  921. if iface_config.get ('vrf', "") in [ 'vrf_external' ]:
  922. continue
  923. for prefix in sorted (prefixes):
  924. ip = ipaddress.ip_address (u'%s' % prefix.split ('/')[0])
  925. proto = 'v%s' % ip.version
  926. # The entry name is
  927. # <node_id> when interface 'lo'
  928. # <node_name>.srv.<residual> when interface 'srv' (or magically detected internal srv record)
  929. # <interface>.<node_id> else
  930. entry_name = node_id
  931. if iface != "lo":
  932. entry_name = "%s.%s" % (iface, node_id)
  933. elif iface == 'srv' or re.search (r'^(10.132.251|2a03:2260:2342:f251:)', prefix):
  934. entry_name = re.sub (r'^([^.]+)\.(.+)$', r'\g<1>.srv.\g<2>', entry_name)
  935. # Strip forward zone name from entry_name and store forward entry
  936. # with correct entry type for found IP address.
  937. forward_entry_name = re.sub (forward_zone_name, "", entry_name)
  938. forward_entry_name = re.sub (forward_zone_name, "", entry_name)
  939. forward_entry_typ = "A" if ip.version == 4 else "AAAA"
  940. forward_zone.append ("%s IN %s %s" % (forward_entry_name, forward_entry_typ, ip))
  941. # Find correct reverse zone, if configured and strip reverse zone name
  942. # from calculated reverse pointer name. Store reverse entry if we found
  943. # a zone for it. If no configured reverse zone did match, this reverse
  944. # entry will be ignored.
  945. for zone in zones:
  946. if ip.reverse_pointer.find (zone) > 0:
  947. PTR_entry = re.sub (zone, "", ip.reverse_pointer)
  948. zones[zone].append ("%s IN PTR %s." % (PTR_entry, entry_name))
  949. break
  950. return zones
  951. # Convert the CIDR network from the given prefix into a dotted netmask
  952. def cidr_to_dotted_mask (prefix):
  953. from ipcalc import Network
  954. return str (Network (prefix).netmask ())
  955. def is_subprefix (prefix, subprefix):
  956. from ipcalc import Network
  957. return subprefix in Network(prefix)
  958. # Return the network address of the given prefix
  959. def get_network_address (prefix, with_prefixlen = False):
  960. from ipaddress import ip_network
  961. net_h = ip_network (u'%s' % prefix, strict = False)
  962. network = str (net_h.network_address)
  963. if with_prefixlen:
  964. network += "/%s" % net_h.prefixlen
  965. return network