[8242] | 1 | #!/usr/bin/env python
|
---|
| 2 | #
|
---|
| 3 | # vim:ts=2:et:sw=2:ai
|
---|
| 4 | # Wireless Leiden configuration generator, based on yaml files'
|
---|
[9957] | 5 | #
|
---|
| 6 | # XXX: This should be rewritten to make use of the ipaddr.py library.
|
---|
| 7 | #
|
---|
[10058] | 8 | # Sample apache configuration (mind the AcceptPathInfo!)
|
---|
| 9 | # ScriptAlias /wleiden/config /usr/local/www/genesis/tools/gformat.py
|
---|
| 10 | # <Directory /usr/local/www/genesis>
|
---|
| 11 | # Allow from all
|
---|
| 12 | # AcceptPathInfo On
|
---|
| 13 | # </Directory>
|
---|
| 14 | #
|
---|
[8242] | 15 | # Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
[9957] | 16 | #
|
---|
[8622] | 17 |
|
---|
| 18 | # Hack to make the script directory is also threated as a module search path.
|
---|
| 19 | import sys
|
---|
| 20 | import os
|
---|
[9286] | 21 | import re
|
---|
[8622] | 22 | sys.path.append(os.path.dirname(__file__))
|
---|
| 23 |
|
---|
[8242] | 24 | import cgi
|
---|
[8267] | 25 | import cgitb
|
---|
| 26 | import copy
|
---|
[8242] | 27 | import glob
|
---|
| 28 | import socket
|
---|
| 29 | import string
|
---|
| 30 | import subprocess
|
---|
| 31 | import time
|
---|
[8622] | 32 | import rdnap
|
---|
[10729] | 33 | import math
|
---|
[10378] | 34 | import make_network_kml
|
---|
[8584] | 35 | from pprint import pprint
|
---|
[10281] | 36 | from collections import defaultdict
|
---|
[8575] | 37 | try:
|
---|
| 38 | import yaml
|
---|
| 39 | except ImportError, e:
|
---|
| 40 | print e
|
---|
| 41 | print "[ERROR] Please install the python-yaml or devel/py-yaml package"
|
---|
| 42 | exit(1)
|
---|
[8588] | 43 |
|
---|
| 44 | try:
|
---|
| 45 | from yaml import CLoader as Loader
|
---|
| 46 | from yaml import CDumper as Dumper
|
---|
| 47 | except ImportError:
|
---|
| 48 | from yaml import Loader, Dumper
|
---|
| 49 |
|
---|
[10584] | 50 | from jinja2 import Environment, Template
|
---|
| 51 | def yesorno(value):
|
---|
| 52 | return "YES" if bool(value) else "NO"
|
---|
| 53 | env = Environment()
|
---|
| 54 | env.filters['yesorno'] = yesorno
|
---|
| 55 | def render_template(datadump, template):
|
---|
| 56 | result = env.from_string(template).render(datadump)
|
---|
| 57 | # Make it look pretty to the naked eye, as jinja templates are not so
|
---|
| 58 | # friendly when it comes to whitespace formatting
|
---|
| 59 | ## Remove extra whitespace at end of line lstrip() style.
|
---|
| 60 | result = re.sub(r'\n[\ ]+','\n', result)
|
---|
| 61 | ## Include only a single newline between an definition and a comment
|
---|
| 62 | result = re.sub(r'(["\'])\n+([a-z]|\n#\n)',r'\1\n\2', result)
|
---|
| 63 | ## Remove extra newlines after single comment
|
---|
| 64 | result = re.sub(r'(#\n)\n+([a-z])',r'\1\2', result)
|
---|
| 65 | return result
|
---|
[10110] | 66 |
|
---|
[9697] | 67 | import logging
|
---|
| 68 | logging.basicConfig(format='# %(levelname)s: %(message)s' )
|
---|
| 69 | logger = logging.getLogger()
|
---|
| 70 | logger.setLevel(logging.DEBUG)
|
---|
[8242] | 71 |
|
---|
[9283] | 72 |
|
---|
[8948] | 73 | if os.environ.has_key('CONFIGROOT'):
|
---|
| 74 | NODE_DIR = os.environ['CONFIGROOT']
|
---|
| 75 | else:
|
---|
[9283] | 76 | NODE_DIR = os.path.abspath(os.path.dirname(__file__)) + '/../nodes'
|
---|
[8242] | 77 | __version__ = '$Id: gformat.py 10884 2012-05-16 19:58:14Z rick $'
|
---|
| 78 |
|
---|
[8267] | 79 |
|
---|
[9283] | 80 | files = [
|
---|
[8242] | 81 | 'authorized_keys',
|
---|
| 82 | 'dnsmasq.conf',
|
---|
[10410] | 83 | 'dhcpd.conf',
|
---|
[8242] | 84 | 'rc.conf.local',
|
---|
| 85 | 'resolv.conf',
|
---|
[10069] | 86 | 'motd',
|
---|
[10654] | 87 | 'ntp.conf',
|
---|
[10705] | 88 | 'pf.hybrid.conf.local',
|
---|
[10054] | 89 | 'wleiden.yaml',
|
---|
[8242] | 90 | ]
|
---|
| 91 |
|
---|
[8319] | 92 | # Global variables uses
|
---|
[8323] | 93 | OK = 10
|
---|
| 94 | DOWN = 20
|
---|
| 95 | UNKNOWN = 90
|
---|
[8257] | 96 |
|
---|
[10860] | 97 | datadump_cache = {}
|
---|
| 98 |
|
---|
[10391] | 99 | def get_yaml(item):
|
---|
[10872] | 100 | try:
|
---|
| 101 | """ Get configuration yaml for 'item'"""
|
---|
| 102 | if datadump_cache.has_key(item):
|
---|
| 103 | return datadump_cache[item].copy()
|
---|
[10860] | 104 |
|
---|
[10872] | 105 | gfile = os.path.join(NODE_DIR,item,'wleiden.yaml')
|
---|
[8257] | 106 |
|
---|
[10872] | 107 | datadump = {}
|
---|
| 108 | f = open(gfile, 'r')
|
---|
| 109 | datadump.update(yaml.load(f,Loader=Loader))
|
---|
| 110 | if datadump['nodetype'] == 'Hybrid':
|
---|
| 111 | # Some values are defined implicitly
|
---|
| 112 | if datadump.has_key('rdr_rules') and datadump['rdr_rules'] and not datadump.has_key('service_incoming_rdr'):
|
---|
| 113 | datadump['service_incoming_rdr'] = True
|
---|
| 114 | # Use some boring defaults
|
---|
| 115 | defaults = {
|
---|
| 116 | 'service_proxy_normal' : False,
|
---|
| 117 | 'service_proxy_ileiden' : False,
|
---|
| 118 | 'service_accesspoint' : True,
|
---|
| 119 | 'service_incoming_rdr' : False
|
---|
| 120 | }
|
---|
| 121 | for (key,value) in defaults.iteritems():
|
---|
| 122 | if not datadump.has_key(key):
|
---|
| 123 | datadump[key] = value
|
---|
| 124 | f.close()
|
---|
[10391] | 125 |
|
---|
[10872] | 126 | # Preformat certain needed variables for formatting and push those into special object
|
---|
| 127 | datadump['autogen_iface_keys'] = get_interface_keys(datadump)
|
---|
[10391] | 128 |
|
---|
[10872] | 129 | wlan_count=0
|
---|
| 130 | try:
|
---|
| 131 | for key in datadump['autogen_iface_keys']:
|
---|
| 132 | if datadump[key]['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 133 | datadump[key]['autogen_ifname'] = 'wlan%i' % wlan_count
|
---|
| 134 | wlan_count += 1
|
---|
| 135 | else:
|
---|
| 136 | datadump[key]['autogen_ifname'] = datadump[key]['interface'].split(':')[0]
|
---|
| 137 | except Exception as e:
|
---|
| 138 | print "# Error while processing interface %s" % key
|
---|
| 139 | raise
|
---|
[10391] | 140 |
|
---|
[10872] | 141 | dhcp_interfaces = [datadump[key]['autogen_ifname'] for key in datadump['autogen_iface_keys'] if (datadump[key].has_key('dhcp') and datadump[key]['dhcp'])]
|
---|
| 142 | datadump['autogen_dhcp_interfaces'] = dhcp_interfaces
|
---|
| 143 | datadump['autogen_item'] = item
|
---|
[10391] | 144 |
|
---|
[10872] | 145 | datadump['autogen_realname'] = get_realname(datadump)
|
---|
| 146 | datadump['autogen_domain'] = datadump['domain'] if datadump.has_key('domain') else 'wleiden.net.'
|
---|
| 147 | datadump['autogen_fqdn'] = datadump['autogen_realname'] + '.' + datadump['autogen_domain']
|
---|
| 148 | datadump_cache[item] = datadump.copy()
|
---|
| 149 | except Exception as e:
|
---|
| 150 | print "# Error while processing %s" % item
|
---|
| 151 | raise
|
---|
[10391] | 152 | return datadump
|
---|
| 153 |
|
---|
| 154 |
|
---|
| 155 | def store_yaml(datadump, header=False):
|
---|
| 156 | """ Store configuration yaml for 'item'"""
|
---|
| 157 | item = datadump['autogen_item']
|
---|
| 158 | gfile = os.path.join(NODE_DIR,item,'wleiden.yaml')
|
---|
| 159 |
|
---|
[10881] | 160 | output = generate_wleiden_yaml(datadump, header)
|
---|
| 161 |
|
---|
[10391] | 162 | f = open(gfile, 'w')
|
---|
[10881] | 163 | f.write(output)
|
---|
[10391] | 164 | f.close()
|
---|
| 165 |
|
---|
| 166 |
|
---|
[10729] | 167 | def network(ip):
|
---|
| 168 | addr, mask = ip.split('/')
|
---|
| 169 | # Not parsing of these folks please
|
---|
| 170 | addr = parseaddr(addr)
|
---|
| 171 | mask = int(mask)
|
---|
| 172 | network = addr & ~((1 << (32 - mask)) - 1)
|
---|
| 173 | return network
|
---|
| 174 |
|
---|
[10391] | 175 |
|
---|
[10729] | 176 |
|
---|
| 177 | def make_relations(datadumps=None):
|
---|
[10270] | 178 | """ Process _ALL_ yaml files to get connection relations """
|
---|
[10729] | 179 | errors = []
|
---|
[10281] | 180 | poel = defaultdict(list)
|
---|
[10729] | 181 |
|
---|
| 182 | if not datadumps:
|
---|
| 183 | for host in get_hostlist():
|
---|
| 184 | datadumps[host] = get_yaml(host)
|
---|
| 185 |
|
---|
| 186 | for host, datadump in datadumps.iteritems():
|
---|
[10270] | 187 | try:
|
---|
| 188 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[10729] | 189 | net_addr = network(datadump[iface_key]['ip'])
|
---|
| 190 | poel[net_addr] += [(host,datadump[iface_key])]
|
---|
[10270] | 191 | except (KeyError, ValueError), e:
|
---|
[10729] | 192 | errors.append("[FOUT] in '%s' interface '%s' (%s)" % (host,iface_key, e))
|
---|
[10270] | 193 | continue
|
---|
| 194 | return (poel, errors)
|
---|
| 195 |
|
---|
| 196 |
|
---|
[8267] | 197 |
|
---|
[8321] | 198 | def valid_addr(addr):
|
---|
| 199 | """ Show which address is valid in which are not """
|
---|
| 200 | return str(addr).startswith('172.')
|
---|
| 201 |
|
---|
[10692] | 202 | def get_system_list(prefix):
|
---|
| 203 | return sorted([os.path.basename(os.path.dirname(x)) for x in glob.glob("%s/%s*/wleiden.yaml" % (NODE_DIR, prefix))])
|
---|
[8321] | 204 |
|
---|
[10692] | 205 | get_hybridlist = lambda: get_system_list("Hybrid")
|
---|
| 206 | get_nodelist = lambda: get_system_list("CNode")
|
---|
| 207 | get_proxylist = lambda: get_system_list("Proxy")
|
---|
[8267] | 208 |
|
---|
[8296] | 209 | def get_hostlist():
|
---|
| 210 | """ Combined hosts and proxy list"""
|
---|
[10192] | 211 | return get_nodelist() + get_proxylist() + get_hybridlist()
|
---|
[8267] | 212 |
|
---|
[8588] | 213 | def angle_between_points(lat1,lat2,long1,long2):
|
---|
[9283] | 214 | """
|
---|
[8588] | 215 | Return Angle in radians between two GPS coordinates
|
---|
| 216 | See: http://stackoverflow.com/questions/3809179/angle-between-2-gps-coordinates
|
---|
| 217 | """
|
---|
| 218 | dy = lat2 - lat1
|
---|
[10729] | 219 | dx = math.cos(lat1)*(long2 - long1)
|
---|
[8588] | 220 | angle = math.atan2(dy,dx)
|
---|
| 221 | return angle
|
---|
[8267] | 222 |
|
---|
[10729] | 223 |
|
---|
| 224 |
|
---|
[8588] | 225 | def angle_to_cd(angle):
|
---|
| 226 | """ Return Dutch Cardinal Direction estimation in 'one digit' of radian angle """
|
---|
| 227 |
|
---|
| 228 | # For easy conversion get positive degree
|
---|
| 229 | degrees = math.degrees(angle)
|
---|
[10729] | 230 | abs_degrees = 360 + degrees if degrees < 0 else degrees
|
---|
[8588] | 231 |
|
---|
| 232 | # Numbers can be confusing calculate from the 4 main directions
|
---|
| 233 | p = 22.5
|
---|
[10729] | 234 | if abs_degrees < p:
|
---|
| 235 | cd = "n"
|
---|
| 236 | elif abs_degrees < (90 - p):
|
---|
| 237 | cd = "no"
|
---|
| 238 | elif abs_degrees < (90 + p):
|
---|
| 239 | cd = "o"
|
---|
| 240 | elif abs_degrees < (180 - p):
|
---|
| 241 | cd = "zo"
|
---|
| 242 | elif abs_degrees < (180 + p):
|
---|
| 243 | cd = "z"
|
---|
| 244 | elif abs_degrees < (270 - p):
|
---|
| 245 | cd = "zw"
|
---|
| 246 | elif abs_degrees < (270 + p):
|
---|
| 247 | cd = "w"
|
---|
| 248 | elif abs_degrees < (360 - p):
|
---|
| 249 | cd = "nw"
|
---|
[8588] | 250 | else:
|
---|
[10729] | 251 | cd = "n"
|
---|
| 252 | return cd
|
---|
[8588] | 253 |
|
---|
| 254 |
|
---|
[10729] | 255 |
|
---|
| 256 | def cd_between_hosts(hostA, hostB, datadumps):
|
---|
| 257 | # Using RDNAP coordinates
|
---|
| 258 | dx = float(int(datadumps[hostA]['rdnap_x']) - int(datadumps[hostB]['rdnap_x'])) * -1
|
---|
| 259 | dy = float(int(datadumps[hostA]['rdnap_y']) - int(datadumps[hostB]['rdnap_y'])) * -1
|
---|
| 260 | return angle_to_cd(math.atan2(dx,dy))
|
---|
| 261 |
|
---|
| 262 | # GPS coordinates seems to fail somehow
|
---|
| 263 | #latA = float(datadumps[hostA]['latitude'])
|
---|
| 264 | #latB = float(datadumps[hostB]['latitude'])
|
---|
| 265 | #lonA = float(datadumps[hostA]['longitude'])
|
---|
| 266 | #lonB = float(datadumps[hostB]['longitude'])
|
---|
| 267 | #return angle_to_cd(angle_between_points(latA, latB, lonA, lonB))
|
---|
| 268 |
|
---|
| 269 |
|
---|
[8267] | 270 | def generate_title(nodelist):
|
---|
[8257] | 271 | """ Main overview page """
|
---|
[9283] | 272 | items = {'root' : "." }
|
---|
[10682] | 273 | def fl(spaces, line):
|
---|
| 274 | return (' ' * spaces) + line + '\n'
|
---|
| 275 |
|
---|
[8267] | 276 | output = """
|
---|
[8257] | 277 | <html>
|
---|
| 278 | <head>
|
---|
| 279 | <title>Wireless leiden Configurator - GFormat</title>
|
---|
| 280 | <style type="text/css">
|
---|
| 281 | th {background-color: #999999}
|
---|
| 282 | tr:nth-child(odd) {background-color: #cccccc}
|
---|
| 283 | tr:nth-child(even) {background-color: #ffffff}
|
---|
| 284 | th, td {padding: 0.1em 1em}
|
---|
| 285 | </style>
|
---|
| 286 | </head>
|
---|
| 287 | <body>
|
---|
| 288 | <center>
|
---|
[8259] | 289 | <form type="GET" action="%(root)s">
|
---|
[8257] | 290 | <input type="hidden" name="action" value="update">
|
---|
| 291 | <input type="submit" value="Update Configuration Database (SVN)">
|
---|
| 292 | </form>
|
---|
| 293 | <table>
|
---|
[10682] | 294 | <caption><h3>Wireless Leiden Configurator</h3></caption>
|
---|
[8257] | 295 | """ % items
|
---|
[8242] | 296 |
|
---|
[8296] | 297 | for node in nodelist:
|
---|
[8257] | 298 | items['node'] = node
|
---|
[10682] | 299 | output += fl(5, '<tr>') + fl(7,'<td><a href="%(root)s/%(node)s">%(node)s</a></td>' % items)
|
---|
[8257] | 300 | for config in files:
|
---|
| 301 | items['config'] = config
|
---|
[10682] | 302 | output += fl(7,'<td><a href="%(root)s/%(node)s/%(config)s">%(config)s</a></td>' % items)
|
---|
| 303 | output += fl(5, "</tr>")
|
---|
[8267] | 304 | output += """
|
---|
[8257] | 305 | </table>
|
---|
| 306 | <hr />
|
---|
| 307 | <em>%s</em>
|
---|
| 308 | </center>
|
---|
| 309 | </body>
|
---|
| 310 | </html>
|
---|
| 311 | """ % __version__
|
---|
[8242] | 312 |
|
---|
[8267] | 313 | return output
|
---|
[8257] | 314 |
|
---|
| 315 |
|
---|
[8267] | 316 |
|
---|
| 317 | def generate_node(node):
|
---|
[8257] | 318 | """ Print overview of all files available for node """
|
---|
[8267] | 319 | return "\n".join(files)
|
---|
[8242] | 320 |
|
---|
[10270] | 321 | def generate_node_overview(host):
|
---|
| 322 | """ Print overview of all files available for node """
|
---|
| 323 | datadump = get_yaml(host)
|
---|
| 324 | params = { 'host' : host }
|
---|
| 325 | output = "<em><a href='..'>Back to overview</a></em><hr />"
|
---|
| 326 | output += "<h2>Available files:</h2><ul>"
|
---|
| 327 | for cf in files:
|
---|
| 328 | params['cf'] = cf
|
---|
| 329 | output += '<li><a href="%(host)s/%(cf)s">%(cf)s</a></li>\n' % params
|
---|
| 330 | output += "</ul>"
|
---|
[8257] | 331 |
|
---|
[10270] | 332 | # Generate and connection listing
|
---|
| 333 | output += "<h2>Connected To:</h2><ul>"
|
---|
[10281] | 334 | (poel, errors) = make_relations()
|
---|
| 335 | for network, hosts in poel.iteritems():
|
---|
| 336 | if host in [x[0] for x in hosts]:
|
---|
| 337 | if len(hosts) == 1:
|
---|
| 338 | # Single not connected interface
|
---|
| 339 | continue
|
---|
| 340 | for remote,ifacedump in hosts:
|
---|
| 341 | if remote == host:
|
---|
| 342 | # This side of the interface
|
---|
| 343 | continue
|
---|
| 344 | params = { 'remote': remote, 'remote_ip' : ifacedump['ip'] }
|
---|
| 345 | output += '<li><a href="%(remote)s">%(remote)s</a> -- %(remote_ip)s</li>\n' % params
|
---|
[10270] | 346 | output += "</ul>"
|
---|
[10281] | 347 | output += "<h2>MOTD details:</h2><pre>" + generate_motd(datadump) + "</pre>"
|
---|
[8257] | 348 |
|
---|
[10270] | 349 | output += "<hr /><em><a href='..'>Back to overview</a></em>"
|
---|
| 350 | return output
|
---|
| 351 |
|
---|
| 352 |
|
---|
[8242] | 353 | def generate_header(ctag="#"):
|
---|
| 354 | return """\
|
---|
[9283] | 355 | %(ctag)s
|
---|
[8242] | 356 | %(ctag)s DO NOT EDIT - Automatically generated by 'gformat'
|
---|
| 357 | %(ctag)s Generated at %(date)s by %(host)s
|
---|
[9283] | 358 | %(ctag)s
|
---|
[8242] | 359 | """ % { 'ctag' : ctag, 'date' : time.ctime(), 'host' : socket.gethostname() }
|
---|
| 360 |
|
---|
[8257] | 361 |
|
---|
| 362 |
|
---|
[8242] | 363 | def parseaddr(s):
|
---|
[8257] | 364 | """ Process IPv4 CIDR notation addr to a (binary) number """
|
---|
[8242] | 365 | f = s.split('.')
|
---|
| 366 | return (long(f[0]) << 24L) + \
|
---|
| 367 | (long(f[1]) << 16L) + \
|
---|
| 368 | (long(f[2]) << 8L) + \
|
---|
| 369 | long(f[3])
|
---|
| 370 |
|
---|
[8257] | 371 |
|
---|
| 372 |
|
---|
[8242] | 373 | def showaddr(a):
|
---|
[8257] | 374 | """ Display IPv4 addr in (dotted) CIDR notation """
|
---|
[8242] | 375 | return "%d.%d.%d.%d" % ((a >> 24) & 0xff, (a >> 16) & 0xff, (a >> 8) & 0xff, a & 0xff)
|
---|
| 376 |
|
---|
[8257] | 377 |
|
---|
[8584] | 378 | def is_member(ip, mask, canidate):
|
---|
| 379 | """ Return True if canidate is part of ip/mask block"""
|
---|
[10729] | 380 | ip_addr = parseaddr(ip)
|
---|
| 381 | ip_canidate = parseaddr(canidate)
|
---|
[8584] | 382 | mask = int(mask)
|
---|
| 383 | ip_addr = ip_addr & ~((1 << (32 - mask)) - 1)
|
---|
| 384 | ip_canidate = ip_canidate & ~((1 << (32 - mask)) - 1)
|
---|
| 385 | return ip_addr == ip_canidate
|
---|
[8257] | 386 |
|
---|
[8584] | 387 |
|
---|
| 388 |
|
---|
[10410] | 389 | def cidr2netmask(netmask):
|
---|
[8257] | 390 | """ Given a 'netmask' return corresponding CIDR """
|
---|
[8242] | 391 | return showaddr(0xffffffff & (0xffffffff << (32 - int(netmask))))
|
---|
| 392 |
|
---|
[10410] | 393 | def get_network(addr, mask):
|
---|
| 394 | return showaddr(parseaddr(addr) & ~((1 << (32 - int(mask))) - 1))
|
---|
[8257] | 395 |
|
---|
| 396 |
|
---|
[10410] | 397 | def generate_dhcpd_conf(datadump):
|
---|
| 398 | """ Generate config file '/usr/local/etc/dhcpd.conf """
|
---|
| 399 | output = generate_header()
|
---|
| 400 | output += Template("""\
|
---|
| 401 | # option definitions common to all supported networks...
|
---|
| 402 | option domain-name "dhcp.{{ autogen_fqdn }}";
|
---|
| 403 |
|
---|
| 404 | default-lease-time 600;
|
---|
| 405 | max-lease-time 7200;
|
---|
| 406 |
|
---|
| 407 | # Use this to enble / disable dynamic dns updates globally.
|
---|
| 408 | #ddns-update-style none;
|
---|
| 409 |
|
---|
| 410 | # If this DHCP server is the official DHCP server for the local
|
---|
| 411 | # network, the authoritative directive should be uncommented.
|
---|
| 412 | authoritative;
|
---|
| 413 |
|
---|
| 414 | # Use this to send dhcp log messages to a different log file (you also
|
---|
| 415 | # have to hack syslog.conf to complete the redirection).
|
---|
| 416 | log-facility local7;
|
---|
| 417 |
|
---|
| 418 | #
|
---|
| 419 | # Interface definitions
|
---|
| 420 | #
|
---|
| 421 | \n""").render(datadump)
|
---|
| 422 |
|
---|
[10734] | 423 | dhcp_out = defaultdict(list)
|
---|
[10410] | 424 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[10734] | 425 | ifname = datadump[iface_key]['autogen_ifname']
|
---|
[10410] | 426 | if not datadump[iface_key].has_key('comment'):
|
---|
[10455] | 427 | datadump[iface_key]['comment'] = None
|
---|
[10880] | 428 | dhcp_out[ifname].append(" ## %(interface)s - %(comment)s\n" % datadump[iface_key])
|
---|
[10410] | 429 |
|
---|
| 430 | (addr, mask) = datadump[iface_key]['ip'].split('/')
|
---|
[10882] | 431 | datadump[iface_key]['autogen_addr'] = addr
|
---|
| 432 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(mask)
|
---|
| 433 | datadump[iface_key]['autogen_subnet'] = get_network(addr, mask)
|
---|
[10410] | 434 | try:
|
---|
| 435 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
[10824] | 436 | except (AttributeError, ValueError, KeyError):
|
---|
[10882] | 437 | dhcp_out[ifname].append(" subnet %(autogen_subnet)s netmask %(autogen_netmask)s {\n ### not autoritive\n }\n" % datadump[iface_key])
|
---|
[10410] | 438 | continue
|
---|
| 439 |
|
---|
| 440 | dhcp_part = ".".join(addr.split('.')[0:3])
|
---|
[10882] | 441 | datadump[iface_key]['autogen_dhcp_start'] = dhcp_part + "." + dhcp_start
|
---|
| 442 | datadump[iface_key]['autogen_dhcp_stop'] = dhcp_part + "." + dhcp_stop
|
---|
[10734] | 443 | dhcp_out[ifname].append("""\
|
---|
[10882] | 444 | subnet %(autogen_subnet)s netmask %(autogen_netmask)s {
|
---|
| 445 | range %(autogen_dhcp_start)s %(autogen_dhcp_stop)s;
|
---|
| 446 | option routers %(autogen_addr)s;
|
---|
| 447 | option domain-name-servers %(autogen_addr)s;
|
---|
[10734] | 448 | }
|
---|
| 449 | """ % datadump[iface_key])
|
---|
[10410] | 450 |
|
---|
[10734] | 451 | for ifname,value in dhcp_out.iteritems():
|
---|
| 452 | output += ("shared-network %s {\n" % ifname) + ''.join(value) + '}\n\n'
|
---|
[10410] | 453 | return output
|
---|
| 454 |
|
---|
| 455 |
|
---|
| 456 |
|
---|
[8242] | 457 | def generate_dnsmasq_conf(datadump):
|
---|
[8257] | 458 | """ Generate configuration file '/usr/local/etc/dnsmasq.conf' """
|
---|
[8242] | 459 | output = generate_header()
|
---|
[10368] | 460 | output += Template("""\
|
---|
[9283] | 461 | # DHCP server options
|
---|
[8242] | 462 | dhcp-authoritative
|
---|
| 463 | dhcp-fqdn
|
---|
[10391] | 464 | domain=dhcp.{{ autogen_fqdn }}
|
---|
[8242] | 465 | domain-needed
|
---|
| 466 | expand-hosts
|
---|
[10120] | 467 | log-async=100
|
---|
[8242] | 468 |
|
---|
| 469 | # Low memory footprint
|
---|
| 470 | cache-size=10000
|
---|
| 471 |
|
---|
[10368] | 472 | \n""").render(datadump)
|
---|
| 473 |
|
---|
[10281] | 474 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[8262] | 475 | if not datadump[iface_key].has_key('comment'):
|
---|
[10455] | 476 | datadump[iface_key]['comment'] = None
|
---|
[10880] | 477 | output += "## %(interface)s - %(comment)s\n" % datadump[iface_key]
|
---|
[8242] | 478 |
|
---|
| 479 | try:
|
---|
[8257] | 480 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
[10410] | 481 | (ip, cidr) = datadump[iface_key]['ip'].split('/')
|
---|
[10882] | 482 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(cidr)
|
---|
[10825] | 483 | except (AttributeError, ValueError, KeyError):
|
---|
[8242] | 484 | output += "# not autoritive\n\n"
|
---|
| 485 | continue
|
---|
| 486 |
|
---|
| 487 | dhcp_part = ".".join(ip.split('.')[0:3])
|
---|
[10882] | 488 | datadump[iface_key]['autogen_dhcp_start'] = dhcp_part + "." + dhcp_start
|
---|
| 489 | datadump[iface_key]['autogen_dhcp_stop'] = dhcp_part + "." + dhcp_stop
|
---|
| 490 | output += "dhcp-range=%(interface)s,%(autogen_dhcp_start)s,%(autogen_dhcp_stop)s,%(autogen_netmask)s,24h\n\n" % datadump[iface_key]
|
---|
[9283] | 491 |
|
---|
[8242] | 492 | return output
|
---|
| 493 |
|
---|
[8257] | 494 |
|
---|
[10860] | 495 | ileiden_proxies = []
|
---|
| 496 | normal_proxies = []
|
---|
| 497 | rc_conf_local_cache = {}
|
---|
[8257] | 498 |
|
---|
[8242] | 499 | def generate_rc_conf_local(datadump):
|
---|
[8257] | 500 | """ Generate configuration file '/etc/rc.conf.local' """
|
---|
[10860] | 501 | item = datadump['autogen_item']
|
---|
| 502 | if rc_conf_local_cache.has_key(item):
|
---|
| 503 | return rc_conf_local_cache[item]
|
---|
| 504 |
|
---|
[10455] | 505 | if not datadump.has_key('ileiden'):
|
---|
| 506 | datadump['autogen_ileiden_enable'] = False
|
---|
| 507 | else:
|
---|
| 508 | datadump['autogen_ileiden_enable'] = datadump['ileiden']
|
---|
[10110] | 509 |
|
---|
[10547] | 510 | datadump['autogen_ileiden_enable'] = switchFormat(datadump['autogen_ileiden_enable'])
|
---|
| 511 |
|
---|
[10860] | 512 | if not ileiden_proxies or not normal_proxies:
|
---|
| 513 | for proxy in get_proxylist():
|
---|
| 514 | proxydump = get_yaml(proxy)
|
---|
| 515 | if proxydump['ileiden']:
|
---|
| 516 | ileiden_proxies.append(proxydump)
|
---|
| 517 | else:
|
---|
| 518 | normal_proxies.append(proxydump)
|
---|
| 519 | for host in get_hybridlist():
|
---|
| 520 | hostdump = get_yaml(host)
|
---|
| 521 | if hostdump['service_proxy_ileiden']:
|
---|
| 522 | ileiden_proxies.append(hostdump)
|
---|
| 523 | if hostdump['service_proxy_normal']:
|
---|
| 524 | normal_proxies.append(hostdump)
|
---|
[10461] | 525 |
|
---|
[10585] | 526 | datadump['autogen_ileiden_proxies'] = ileiden_proxies
|
---|
| 527 | datadump['autogen_normal_proxies'] = normal_proxies
|
---|
| 528 | datadump['autogen_ileiden_proxies_ips'] = ','.join([x['masterip'] for x in ileiden_proxies])
|
---|
[10112] | 529 | datadump['autogen_ileiden_proxies_names'] = ','.join([x['autogen_item'] for x in ileiden_proxies])
|
---|
[10585] | 530 | datadump['autogen_normal_proxies_ips'] = ','.join([x['masterip'] for x in normal_proxies])
|
---|
[10367] | 531 | datadump['autogen_normal_proxies_names'] = ','.join([x['autogen_item'] for x in normal_proxies])
|
---|
[10112] | 532 |
|
---|
[8242] | 533 | output = generate_header("#");
|
---|
[10584] | 534 | output += render_template(datadump, """\
|
---|
[10391] | 535 | hostname='{{ autogen_fqdn }}'
|
---|
[10110] | 536 | location='{{ location }}'
|
---|
| 537 | nodetype="{{ nodetype }}"
|
---|
[9283] | 538 |
|
---|
[10459] | 539 | #
|
---|
| 540 | # Configured listings
|
---|
| 541 | #
|
---|
| 542 | captive_portal_whitelist=""
|
---|
| 543 | {% if nodetype == "Proxy" %}
|
---|
[10054] | 544 | #
|
---|
[10459] | 545 | # Proxy Configuration
|
---|
[10054] | 546 | #
|
---|
[10110] | 547 | {% if gateway -%}
|
---|
| 548 | defaultrouter="{{ gateway }}"
|
---|
| 549 | {% else -%}
|
---|
| 550 | #defaultrouter="NOTSET"
|
---|
| 551 | {% endif -%}
|
---|
| 552 | internalif="{{ internalif }}"
|
---|
[10112] | 553 | ileiden_enable="{{ autogen_ileiden_enable }}"
|
---|
| 554 | gateway_enable="{{ autogen_ileiden_enable }}"
|
---|
[10238] | 555 | pf_enable="yes"
|
---|
[10302] | 556 | pf_rules="/etc/pf.conf"
|
---|
[10455] | 557 | {% if autogen_ileiden_enable -%}
|
---|
[10234] | 558 | pf_flags="-D ext_if={{ externalif }} -D int_if={{ internalif }} -D publicnat={80,443}"
|
---|
[10238] | 559 | lvrouted_enable="{{ autogen_ileiden_enable }}"
|
---|
| 560 | lvrouted_flags="-u -s s00p3rs3kr3t -m 28"
|
---|
| 561 | {% else -%}
|
---|
| 562 | pf_flags="-D ext_if={{ externalif }} -D int_if={{ internalif }} -D publicnat={0}"
|
---|
[10310] | 563 | {% endif -%}
|
---|
[10238] | 564 | {% if internalroute -%}
|
---|
| 565 | static_routes="wleiden"
|
---|
| 566 | route_wleiden="-net 172.16.0.0/12 {{ internalroute }}"
|
---|
[10110] | 567 | {% endif -%}
|
---|
[10054] | 568 |
|
---|
[10584] | 569 | {% elif nodetype == "Hybrid" %}
|
---|
| 570 | #
|
---|
| 571 | # Hybrid Configuration
|
---|
| 572 | #
|
---|
[10599] | 573 | list_ileiden_proxies="
|
---|
[10585] | 574 | {% for item in autogen_ileiden_proxies -%}
|
---|
| 575 | {{ "%-16s"|format(item.masterip) }} # {{ item.autogen_realname }}
|
---|
| 576 | {% endfor -%}
|
---|
[10599] | 577 | "
|
---|
| 578 | list_normal_proxies="
|
---|
[10585] | 579 | {% for item in autogen_normal_proxies -%}
|
---|
| 580 | {{ "%-16s"|format(item.masterip) }} # {{ item.autogen_realname }}
|
---|
| 581 | {% endfor -%}
|
---|
[10599] | 582 | "
|
---|
[10585] | 583 |
|
---|
[10733] | 584 | captive_portal_interfaces="{{ autogen_dhcp_interfaces|join(',')|default('none', true) }}"
|
---|
[10584] | 585 | externalif="{{ externalif|default('vr0', true) }}"
|
---|
| 586 | masterip="{{ masterip }}"
|
---|
| 587 |
|
---|
| 588 | # Defined services
|
---|
| 589 | service_proxy_ileiden="{{ service_proxy_ileiden|yesorno }}"
|
---|
| 590 | service_proxy_normal="{{ service_proxy_normal|yesorno }}"
|
---|
| 591 | service_accesspoint="{{ service_accesspoint|yesorno }}"
|
---|
[10748] | 592 | service_incoming_rdr="{{ service_incoming_rdr|yesorno }}"
|
---|
[10584] | 593 | #
|
---|
[10459] | 594 |
|
---|
[10587] | 595 | {% if service_proxy_ileiden %}
|
---|
[10584] | 596 | pf_rules="/etc/pf.hybrid.conf"
|
---|
| 597 | pf_flags="-D ext_if=$externalif -D ext_if_net=$externalif:network -D masterip=$masterip"
|
---|
[10587] | 598 | pf_flags="$pf_flags -D publicnat=80,443"
|
---|
[10748] | 599 | {% elif service_proxy_normal or service_incoming_rdr %}
|
---|
[10649] | 600 | pf_rules="/etc/pf.hybrid.conf"
|
---|
[10587] | 601 | pf_flags="-D ext_if=$externalif -D ext_if_net=$externalif:network -D masterip=$masterip"
|
---|
[10649] | 602 | pf_flags="$pf_flags -D publicnat=0"
|
---|
[10599] | 603 | lvrouted_flags="$lvrouted_flags -z `make_list "$list_ileiden_proxies" ","`"
|
---|
[10649] | 604 | named_setfib="1"
|
---|
| 605 | tinyproxy_setfib="1"
|
---|
| 606 | dnsmasq_setfib="1"
|
---|
[10698] | 607 | sshd_setfib="1"
|
---|
[10584] | 608 | {% else %}
|
---|
| 609 | pf_rules="/etc/pf.node.conf"
|
---|
[10587] | 610 | pf_flags=""
|
---|
[10731] | 611 | lvrouted_flags="$lvrouted_flags -z `make_list "$list_ileiden_proxies" ","`"
|
---|
[10584] | 612 | {% endif %}
|
---|
[10459] | 613 |
|
---|
[10584] | 614 | {% if service_proxy_normal %}
|
---|
| 615 | tinyproxy_enable="yes"
|
---|
| 616 | {% else %}
|
---|
| 617 | pen_wrapper_enable="yes"
|
---|
| 618 | {% endif %}
|
---|
[10460] | 619 |
|
---|
[10584] | 620 | {% if service_accesspoint %}
|
---|
| 621 | pf_flags="$pf_flags -D captive_portal_interfaces=$captive_portal_interfaces"
|
---|
| 622 | {% endif %}
|
---|
[10459] | 623 |
|
---|
[10584] | 624 | {% if board == "ALIX2" %}
|
---|
| 625 | #
|
---|
| 626 | # ''Fat'' configuration, board has 256MB RAM
|
---|
| 627 | #
|
---|
| 628 | dnsmasq_enable="NO"
|
---|
| 629 | named_enable="YES"
|
---|
[10732] | 630 | {% if autogen_dhcp_interfaces -%}
|
---|
[10584] | 631 | dhcpd_enable="YES"
|
---|
[10732] | 632 | dhcpd_flags="$dhcpd_flags {{ autogen_dhcp_interfaces|join(' ') }}"
|
---|
| 633 | {% endif -%}
|
---|
[10584] | 634 | {% endif -%}
|
---|
[10459] | 635 |
|
---|
[10823] | 636 | {% if gateway %}
|
---|
[10584] | 637 | defaultrouter="{{ gateway }}"
|
---|
| 638 | {% endif %}
|
---|
| 639 | {% elif nodetype == "CNode" %}
|
---|
[10459] | 640 | #
|
---|
[10054] | 641 | # NODE iLeiden Configuration
|
---|
[10112] | 642 | #
|
---|
[10585] | 643 |
|
---|
| 644 | # iLeiden Proxies {{ autogen_ileiden_proxies_names }}
|
---|
| 645 | list_ileiden_proxies="{{ autogen_ileiden_proxies_ips }}"
|
---|
| 646 | # normal Proxies {{ autogen_normal_proxies_names }}
|
---|
| 647 | list_normal_proxies="{{ autogen_normal_proxies_ips }}"
|
---|
| 648 |
|
---|
[10732] | 649 | captive_portal_interfaces="{{ autogen_dhcp_interfaces|join(',') }}"
|
---|
[10367] | 650 |
|
---|
| 651 | lvrouted_flags="-u -s s00p3rs3kr3t -m 28 -z $list_ileiden_proxies"
|
---|
[10110] | 652 | {% endif %}
|
---|
| 653 |
|
---|
[10584] | 654 | #
|
---|
| 655 | # Interface definitions
|
---|
| 656 | #\n
|
---|
| 657 | """)
|
---|
| 658 |
|
---|
[8242] | 659 | # lo0 configuration:
|
---|
| 660 | # - 172.32.255.1/32 is the proxy.wleiden.net deflector
|
---|
[9283] | 661 | # - masterip is special as it needs to be assigned to at
|
---|
[8242] | 662 | # least one interface, so if not used assign to lo0
|
---|
[9808] | 663 | addrs_list = { 'lo0' : [("127.0.0.1/8", "LocalHost"), ("172.31.255.1/32","Proxy IP")] }
|
---|
[9283] | 664 | iface_map = {'lo0' : 'lo0'}
|
---|
[10366] | 665 | dhclient_if = {'lo0' : False}
|
---|
[8242] | 666 |
|
---|
[8297] | 667 | masterip_used = False
|
---|
[10281] | 668 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[8297] | 669 | if datadump[iface_key]['ip'].startswith(datadump['masterip']):
|
---|
| 670 | masterip_used = True
|
---|
| 671 | break
|
---|
[9283] | 672 | if not masterip_used:
|
---|
[10108] | 673 | addrs_list['lo0'].append((datadump['masterip'] + "/32", 'Master IP Not used in interface'))
|
---|
[8297] | 674 |
|
---|
[10281] | 675 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[8242] | 676 | ifacedump = datadump[iface_key]
|
---|
[10162] | 677 | ifname = ifacedump['autogen_ifname']
|
---|
[8242] | 678 |
|
---|
[10366] | 679 | # Flag dhclient is possible
|
---|
| 680 | dhclient_if[ifname] = ifacedump.has_key('dhcpclient') and ifacedump['dhcpclient']
|
---|
[10318] | 681 |
|
---|
[8242] | 682 | # Add interface IP to list
|
---|
[10880] | 683 | item = (ifacedump['ip'], ifacedump['comment'])
|
---|
[10162] | 684 | if addrs_list.has_key(ifname):
|
---|
| 685 | addrs_list[ifname].append(item)
|
---|
[8242] | 686 | else:
|
---|
[10162] | 687 | addrs_list[ifname] = [item]
|
---|
[8242] | 688 |
|
---|
| 689 | # Alias only needs IP assignment for now, this might change if we
|
---|
| 690 | # are going to use virtual accesspoints
|
---|
| 691 | if "alias" in iface_key:
|
---|
| 692 | continue
|
---|
| 693 |
|
---|
| 694 | # XXX: Might want to deduct type directly from interface name
|
---|
| 695 | if ifacedump['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 696 | # Default to station (client) mode
|
---|
[10882] | 697 | ifacedump['autogen_wlanmode'] = "sta"
|
---|
[10166] | 698 | if ifacedump['mode'] in ['master', 'master-wds', 'ap', 'ap-wds']:
|
---|
[10882] | 699 | ifacedump['autogen_wlanmode'] = "ap"
|
---|
[8242] | 700 | # Default to 802.11b mode
|
---|
| 701 | ifacedump['mode'] = '11b'
|
---|
| 702 | if ifacedump['type'] in ['11a', '11b' '11g']:
|
---|
[9283] | 703 | ifacedump['mode'] = ifacedump['type']
|
---|
[8242] | 704 |
|
---|
| 705 | if not ifacedump.has_key('channel'):
|
---|
| 706 | if ifacedump['type'] == '11a':
|
---|
| 707 | ifacedump['channel'] = 36
|
---|
| 708 | else:
|
---|
| 709 | ifacedump['channel'] = 1
|
---|
| 710 |
|
---|
| 711 | # Allow special hacks at the back like wds and stuff
|
---|
| 712 | if not ifacedump.has_key('extra'):
|
---|
[10882] | 713 | ifacedump['autogen_extra'] = 'regdomain ETSI country NL'
|
---|
| 714 | else:
|
---|
| 715 | ifacedump['autogen_extra'] = ifacedump['extra']
|
---|
| 716 |
|
---|
[8242] | 717 |
|
---|
[10054] | 718 | output += "wlans_%(interface)s='%(autogen_ifname)s'\n" % ifacedump
|
---|
[10882] | 719 | output += ("create_args_%(autogen_ifname)s='wlanmode %(autogen_wlanmode)s mode " +\
|
---|
| 720 | "%(mode)s ssid %(ssid)s %(autogen_extra)s channel %(channel)s'\n") % ifacedump
|
---|
[9283] | 721 |
|
---|
[8242] | 722 | elif ifacedump['type'] in ['ethernet', 'eth']:
|
---|
| 723 | # No special config needed besides IP
|
---|
| 724 | pass
|
---|
| 725 | else:
|
---|
| 726 | assert False, "Unknown type " + ifacedump['type']
|
---|
| 727 |
|
---|
[9283] | 728 | # Print IP address which needs to be assigned over here
|
---|
[8242] | 729 | output += "\n"
|
---|
| 730 | for iface,addrs in sorted(addrs_list.iteritems()):
|
---|
[10079] | 731 | for addr, comment in sorted(addrs,key=lambda x: parseaddr(x[0].split('/')[0])):
|
---|
[9808] | 732 | output += "# %s || %s || %s\n" % (iface, addr, comment)
|
---|
[8242] | 733 |
|
---|
[10366] | 734 | # Write DHCLIENT entry
|
---|
| 735 | if dhclient_if[iface]:
|
---|
| 736 | output += "ifconfig_%s='SYNCDHCP'\n\n" % (iface)
|
---|
| 737 | else:
|
---|
[10863] | 738 | # Make sure the external address is always first as this is needed in the
|
---|
| 739 | # firewall setup
|
---|
| 740 | addrs = sorted(addrs,key=lambda x: x[0].split('.')[0], cmp=lambda x,y: cmp(1 if x == '172' else 0, 1 if y == '172' else 0))
|
---|
[10366] | 741 | output += "ipv4_addrs_%s='%s'\n\n" % (iface, " ".join([x[0] for x in addrs]))
|
---|
| 742 |
|
---|
[10860] | 743 | rc_conf_local_cache[datadump['autogen_item']] = output
|
---|
[8242] | 744 | return output
|
---|
| 745 |
|
---|
[8257] | 746 |
|
---|
| 747 |
|
---|
[8242] | 748 |
|
---|
[8317] | 749 | def get_all_configs():
|
---|
| 750 | """ Get dict with key 'host' with all configs present """
|
---|
| 751 | configs = dict()
|
---|
| 752 | for host in get_hostlist():
|
---|
| 753 | datadump = get_yaml(host)
|
---|
| 754 | configs[host] = datadump
|
---|
| 755 | return configs
|
---|
| 756 |
|
---|
| 757 |
|
---|
[8319] | 758 | def get_interface_keys(config):
|
---|
| 759 | """ Quick hack to get all interface keys, later stage convert this to a iterator """
|
---|
[10054] | 760 | return sorted([elem for elem in config.keys() if (elem.startswith('iface_') and not "lo0" in elem)])
|
---|
[8317] | 761 |
|
---|
[8319] | 762 |
|
---|
[8317] | 763 | def get_used_ips(configs):
|
---|
| 764 | """ Return array of all IPs used in config files"""
|
---|
| 765 | ip_list = []
|
---|
[8319] | 766 | for config in configs:
|
---|
[8317] | 767 | ip_list.append(config['masterip'])
|
---|
[8319] | 768 | for iface_key in get_interface_keys(config):
|
---|
[8317] | 769 | l = config[iface_key]['ip']
|
---|
| 770 | addr, mask = l.split('/')
|
---|
| 771 | # Special case do not process
|
---|
[8332] | 772 | if valid_addr(addr):
|
---|
| 773 | ip_list.append(addr)
|
---|
| 774 | else:
|
---|
[9728] | 775 | logger.error("## IP '%s' in '%s' not valid" % (addr, config['nodename']))
|
---|
[8317] | 776 | return sorted(ip_list)
|
---|
| 777 |
|
---|
| 778 |
|
---|
| 779 |
|
---|
[8242] | 780 | def generate_resolv_conf(datadump):
|
---|
[8257] | 781 | """ Generate configuration file '/etc/resolv.conf' """
|
---|
[10468] | 782 | # XXX: This should properly going to be an datastructure soon
|
---|
| 783 | datadump['autogen_header'] = generate_header("#")
|
---|
| 784 | datadump['autogen_edge_nameservers'] = ''
|
---|
| 785 | for host in get_proxylist():
|
---|
| 786 | hostdump = get_yaml(host)
|
---|
| 787 | datadump['autogen_edge_nameservers'] += "nameserver %(masterip)-15s # %(autogen_realname)s\n" % hostdump
|
---|
| 788 | for host in get_hybridlist():
|
---|
| 789 | hostdump = get_yaml(host)
|
---|
[10584] | 790 | if hostdump['service_proxy_ileiden'] or hostdump['service_proxy_normal']:
|
---|
[10468] | 791 | datadump['autogen_edge_nameservers'] += "nameserver %(masterip)-15s # %(autogen_realname)s\n" % hostdump
|
---|
| 792 |
|
---|
| 793 | return Template("""\
|
---|
| 794 | {{ autogen_header }}
|
---|
[8242] | 795 | search wleiden.net
|
---|
[10468] | 796 |
|
---|
| 797 | # Try local (cache) first
|
---|
[10209] | 798 | nameserver 127.0.0.1
|
---|
[10468] | 799 |
|
---|
[10584] | 800 | {% if service_proxy_normal or service_proxy_ileiden or nodetype == 'Proxy' -%}
|
---|
[10053] | 801 | nameserver 8.8.8.8 # Google Public NameServer
|
---|
| 802 | nameserver 8.8.4.4 # Google Public NameServer
|
---|
[10468] | 803 | {% else -%}
|
---|
[10646] | 804 | # START DYNAMIC LIST - updated by /tools/nameserver-shuffle
|
---|
[10468] | 805 | {{ autogen_edge_nameservers }}
|
---|
| 806 | {% endif -%}
|
---|
| 807 | """).render(datadump)
|
---|
[10209] | 808 |
|
---|
[9283] | 809 |
|
---|
[8242] | 810 |
|
---|
[10654] | 811 | def generate_ntp_conf(datadump):
|
---|
| 812 | """ Generate configuration file '/etc/ntp.conf' """
|
---|
| 813 | # XXX: This should properly going to be an datastructure soon
|
---|
| 814 |
|
---|
| 815 | datadump['autogen_header'] = generate_header("#")
|
---|
| 816 | datadump['autogen_ntp_servers'] = ''
|
---|
| 817 | for host in get_proxylist():
|
---|
| 818 | hostdump = get_yaml(host)
|
---|
| 819 | datadump['autogen_ntp_servers'] += "server %(masterip)-15s iburst maxpoll 9 # %(autogen_realname)s\n" % hostdump
|
---|
| 820 | for host in get_hybridlist():
|
---|
| 821 | hostdump = get_yaml(host)
|
---|
| 822 | if hostdump['service_proxy_ileiden'] or hostdump['service_proxy_normal']:
|
---|
| 823 | datadump['autogen_ntp_servers'] += "server %(masterip)-15s iburst maxpoll 9 # %(autogen_realname)s\n" % hostdump
|
---|
| 824 |
|
---|
| 825 | return Template("""\
|
---|
| 826 | {{ autogen_header }}
|
---|
| 827 |
|
---|
| 828 | {% if service_proxy_normal or service_proxy_ileiden or nodetype == 'Proxy' -%}
|
---|
| 829 | # Machine hooked to internet.
|
---|
| 830 | server 0.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 831 | server 1.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 832 | server 2.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 833 | server 3.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 834 | {% else -%}
|
---|
| 835 | # Local Wireless Leiden NTP Servers.
|
---|
| 836 | server 0.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 837 | server 1.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 838 | server 2.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 839 | server 3.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 840 |
|
---|
| 841 | # All the configured NTP servers
|
---|
| 842 | {{ autogen_ntp_servers }}
|
---|
| 843 | {% endif %}
|
---|
| 844 |
|
---|
| 845 | # If a server loses sync with all upstream servers, NTP clients
|
---|
| 846 | # no longer follow that server. The local clock can be configured
|
---|
| 847 | # to provide a time source when this happens, but it should usually
|
---|
| 848 | # be configured on just one server on a network. For more details see
|
---|
| 849 | # http://support.ntp.org/bin/view/Support/UndisciplinedLocalClock
|
---|
| 850 | # The use of Orphan Mode may be preferable.
|
---|
| 851 | #
|
---|
| 852 | server 127.127.1.0
|
---|
| 853 | fudge 127.127.1.0 stratum 10
|
---|
| 854 | """).render(datadump)
|
---|
| 855 |
|
---|
| 856 |
|
---|
[10705] | 857 | def generate_pf_hybrid_conf_local(datadump):
|
---|
| 858 | """ Generate configuration file '/etc/pf.hybrid.conf.local' """
|
---|
| 859 | datadump['autogen_header'] = generate_header("#")
|
---|
| 860 | return Template("""\
|
---|
| 861 | {{ autogen_header }}
|
---|
[10654] | 862 |
|
---|
[10705] | 863 | # Redirect some internal facing services outside (7)
|
---|
[10714] | 864 | # INFO: {{ rdr_rules|count }} rdr_rules (outside to internal redirect rules) defined.
|
---|
[10715] | 865 | {% for protocol, src_port,dest_ip,dest_port in rdr_rules -%}
|
---|
| 866 | rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ dest_ip }} port {{ dest_port }}
|
---|
[10714] | 867 | {% endfor -%}
|
---|
[10705] | 868 | """).render(datadump)
|
---|
| 869 |
|
---|
[10069] | 870 | def generate_motd(datadump):
|
---|
| 871 | """ Generate configuration file '/etc/motd' """
|
---|
[10568] | 872 | output = Template("""\
|
---|
[10627] | 873 | FreeBSD run ``service motd onestart'' to make me look normal
|
---|
[8242] | 874 |
|
---|
[10568] | 875 | WWW: {{ autogen_fqdn }} - http://www.wirelessleiden.nl
|
---|
| 876 | Loc: {{ location }}
|
---|
[8257] | 877 |
|
---|
[10568] | 878 | Services:
|
---|
| 879 | {% if board == "ALIX2" -%}
|
---|
[10665] | 880 | - Core Node ({{ board }})
|
---|
[10568] | 881 | {% else -%}
|
---|
[10665] | 882 | - Hulp Node ({{ board }})
|
---|
[10568] | 883 | {% endif -%}
|
---|
[10584] | 884 | {% if service_proxy_normal -%}
|
---|
[10568] | 885 | - Normal Proxy
|
---|
| 886 | {% endif -%}
|
---|
[10584] | 887 | {% if service_proxy_ileiden -%}
|
---|
[10568] | 888 | - iLeiden Proxy
|
---|
[10748] | 889 | {% endif -%}
|
---|
| 890 | {% if service_incoming_rdr -%}
|
---|
| 891 | - Incoming port redirects
|
---|
[10568] | 892 | {% endif %}
|
---|
[10626] | 893 | Interlinks:\n
|
---|
[10568] | 894 | """).render(datadump)
|
---|
[10069] | 895 |
|
---|
| 896 | # XXX: This is a hacky way to get the required data
|
---|
| 897 | for line in generate_rc_conf_local(datadump).split('\n'):
|
---|
| 898 | if '||' in line and not line[1:].split()[0] in ['lo0', 'ath0'] :
|
---|
| 899 | output += " - %s \n" % line[1:]
|
---|
| 900 | output += """\
|
---|
| 901 | Attached bridges:
|
---|
| 902 | """
|
---|
| 903 | for iface_key in datadump['autogen_iface_keys']:
|
---|
| 904 | ifacedump = datadump[iface_key]
|
---|
| 905 | if ifacedump.has_key('ns_ip'):
|
---|
| 906 | output += " - %(interface)s || %(mode)s || %(ns_ip)s\n" % ifacedump
|
---|
| 907 |
|
---|
| 908 | return output
|
---|
| 909 |
|
---|
| 910 |
|
---|
[8267] | 911 | def format_yaml_value(value):
|
---|
| 912 | """ Get yaml value in right syntax for outputting """
|
---|
| 913 | if isinstance(value,str):
|
---|
[10049] | 914 | output = '"%s"' % value
|
---|
[8267] | 915 | else:
|
---|
| 916 | output = value
|
---|
[9283] | 917 | return output
|
---|
[8267] | 918 |
|
---|
| 919 |
|
---|
| 920 |
|
---|
| 921 | def format_wleiden_yaml(datadump):
|
---|
[8242] | 922 | """ Special formatting to ensure it is editable"""
|
---|
[9283] | 923 | output = "# Genesis config yaml style\n"
|
---|
[8262] | 924 | output += "# vim:ts=2:et:sw=2:ai\n"
|
---|
[8242] | 925 | output += "#\n"
|
---|
| 926 | iface_keys = [elem for elem in datadump.keys() if elem.startswith('iface_')]
|
---|
| 927 | for key in sorted(set(datadump.keys()) - set(iface_keys)):
|
---|
[10714] | 928 | if key == 'rdr_rules':
|
---|
| 929 | output += '%-10s:\n' % 'rdr_rules'
|
---|
| 930 | for rdr_rule in datadump[key]:
|
---|
| 931 | output += '- %s\n' % rdr_rule
|
---|
| 932 | else:
|
---|
| 933 | output += "%-10s: %s\n" % (key, format_yaml_value(datadump[key]))
|
---|
[9283] | 934 |
|
---|
[8242] | 935 | output += "\n\n"
|
---|
[9283] | 936 |
|
---|
[10881] | 937 | # Format (key, required)
|
---|
| 938 | key_order = (
|
---|
| 939 | ('comment', True),
|
---|
| 940 | ('interface', True),
|
---|
| 941 | ('ip', True),
|
---|
| 942 | ('desc', True),
|
---|
| 943 | ('sdesc', True),
|
---|
| 944 | ('mode', True),
|
---|
| 945 | ('type', True),
|
---|
| 946 | ('extra_type', False),
|
---|
| 947 | ('channel', False),
|
---|
| 948 | ('ssid', False),
|
---|
| 949 | ('dhcp', True),
|
---|
| 950 | ('dhcpclient', False),
|
---|
| 951 | ('compass', False),
|
---|
| 952 | ('distance', False),
|
---|
| 953 | ('ns_ip', False),
|
---|
| 954 | ('bullet2_ip', False),
|
---|
| 955 | ('ns_mac', False),
|
---|
| 956 | ('bullet2_mac', False),
|
---|
| 957 | ('ns_ssid', False),
|
---|
| 958 | ('ns_type', False),
|
---|
| 959 | ('status', True),
|
---|
| 960 | )
|
---|
[8272] | 961 |
|
---|
[8242] | 962 | for iface_key in sorted(iface_keys):
|
---|
[10881] | 963 | try:
|
---|
| 964 | remainder = set(datadump[iface_key].keys()) - set([x[0] for x in key_order])
|
---|
| 965 | if remainder:
|
---|
| 966 | raise KeyError("invalid keys: %s" % remainder)
|
---|
[8242] | 967 |
|
---|
[10881] | 968 | output += "%s:\n" % iface_key
|
---|
| 969 | for key,required in key_order:
|
---|
| 970 | if datadump[iface_key].has_key(key):
|
---|
| 971 | output += " %-11s: %s\n" % (key, format_yaml_value(datadump[iface_key][key]))
|
---|
| 972 | output += "\n\n"
|
---|
| 973 | except Exception as e:
|
---|
| 974 | print "# Error while processing interface %s" % iface_key
|
---|
| 975 | raise
|
---|
| 976 |
|
---|
[8242] | 977 | return output
|
---|
| 978 |
|
---|
| 979 |
|
---|
[8257] | 980 |
|
---|
[10067] | 981 | def generate_wleiden_yaml(datadump, header=True):
|
---|
[8267] | 982 | """ Generate (petty) version of wleiden.yaml"""
|
---|
[10053] | 983 | for key in datadump.keys():
|
---|
| 984 | if key.startswith('autogen_'):
|
---|
| 985 | del datadump[key]
|
---|
[10054] | 986 | # Interface autogen cleanups
|
---|
| 987 | elif type(datadump[key]) == dict:
|
---|
| 988 | for key2 in datadump[key].keys():
|
---|
| 989 | if key2.startswith('autogen_'):
|
---|
| 990 | del datadump[key][key2]
|
---|
| 991 |
|
---|
[10067] | 992 | output = generate_header("#") if header else ''
|
---|
[8267] | 993 | output += format_wleiden_yaml(datadump)
|
---|
| 994 | return output
|
---|
| 995 |
|
---|
| 996 |
|
---|
[8588] | 997 | def generate_yaml(datadump):
|
---|
| 998 | return generate_config(datadump['nodename'], "wleiden.yaml", datadump)
|
---|
[8267] | 999 |
|
---|
[8588] | 1000 |
|
---|
[9283] | 1001 |
|
---|
[8298] | 1002 | def generate_config(node, config, datadump=None):
|
---|
[8257] | 1003 | """ Print configuration file 'config' of 'node' """
|
---|
[8267] | 1004 | output = ""
|
---|
[8242] | 1005 | try:
|
---|
| 1006 | # Load config file
|
---|
[8298] | 1007 | if datadump == None:
|
---|
| 1008 | datadump = get_yaml(node)
|
---|
[9283] | 1009 |
|
---|
[8242] | 1010 | if config == 'wleiden.yaml':
|
---|
[8267] | 1011 | output += generate_wleiden_yaml(datadump)
|
---|
| 1012 | elif config == 'authorized_keys':
|
---|
[10051] | 1013 | f = open(os.path.join(NODE_DIR,"global_keys"), 'r')
|
---|
[8267] | 1014 | output += f.read()
|
---|
[8242] | 1015 | f.close()
|
---|
| 1016 | elif config == 'dnsmasq.conf':
|
---|
[10281] | 1017 | output += generate_dnsmasq_conf(datadump)
|
---|
[10410] | 1018 | elif config == 'dhcpd.conf':
|
---|
| 1019 | output += generate_dhcpd_conf(datadump)
|
---|
[8242] | 1020 | elif config == 'rc.conf.local':
|
---|
[10281] | 1021 | output += generate_rc_conf_local(datadump)
|
---|
[8242] | 1022 | elif config == 'resolv.conf':
|
---|
[10281] | 1023 | output += generate_resolv_conf(datadump)
|
---|
[10654] | 1024 | elif config == 'ntp.conf':
|
---|
| 1025 | output += generate_ntp_conf(datadump)
|
---|
[10069] | 1026 | elif config == 'motd':
|
---|
[10281] | 1027 | output += generate_motd(datadump)
|
---|
[10705] | 1028 | elif config == 'pf.hybrid.conf.local':
|
---|
| 1029 | output += generate_pf_hybrid_conf_local(datadump)
|
---|
[8242] | 1030 | else:
|
---|
[9283] | 1031 | assert False, "Config not found!"
|
---|
[8242] | 1032 | except IOError, e:
|
---|
[8267] | 1033 | output += "[ERROR] Config file not found"
|
---|
| 1034 | return output
|
---|
[8242] | 1035 |
|
---|
| 1036 |
|
---|
[8257] | 1037 |
|
---|
[8258] | 1038 | def process_cgi_request():
|
---|
| 1039 | """ When calling from CGI """
|
---|
| 1040 | # Update repository if requested
|
---|
| 1041 | form = cgi.FieldStorage()
|
---|
| 1042 | if form.getvalue("action") == "update":
|
---|
[8259] | 1043 | print "Refresh: 5; url=."
|
---|
[8258] | 1044 | print "Content-type:text/plain\r\n\r\n",
|
---|
| 1045 | print "[INFO] Updating subverion, please wait..."
|
---|
[10143] | 1046 | print subprocess.Popen(['svn', 'cleanup', "%s/.." % NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0],
|
---|
[10071] | 1047 | print subprocess.Popen(['svn', 'up', "%s/.." % NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0],
|
---|
[8258] | 1048 | print "[INFO] All done, redirecting in 5 seconds"
|
---|
| 1049 | sys.exit(0)
|
---|
[9283] | 1050 |
|
---|
| 1051 |
|
---|
[10270] | 1052 | base_uri = os.environ['PATH_INFO']
|
---|
| 1053 | uri = base_uri.strip('/').split('/')
|
---|
| 1054 |
|
---|
[10681] | 1055 | output = "Template Holder"
|
---|
| 1056 | content_type='text/plain'
|
---|
[10378] | 1057 | if base_uri.endswith('/create/network.kml'):
|
---|
[10681] | 1058 | content_type='application/vnd.google-earth.kml+xml'
|
---|
| 1059 | output = make_network_kml.make_graph()
|
---|
[10378] | 1060 | elif not uri[0]:
|
---|
[10070] | 1061 | if is_text_request():
|
---|
[10681] | 1062 | content_type = 'text/plain'
|
---|
| 1063 | output = '\n'.join(get_hostlist())
|
---|
[10060] | 1064 | else:
|
---|
[10681] | 1065 | content_type = 'text/html'
|
---|
| 1066 | output = generate_title(get_hostlist())
|
---|
[8258] | 1067 | elif len(uri) == 1:
|
---|
[10270] | 1068 | if is_text_request():
|
---|
[10681] | 1069 | content_type = 'text/plain'
|
---|
| 1070 | output = generate_node(uri[0])
|
---|
[10270] | 1071 | else:
|
---|
[10681] | 1072 | content_type = 'text/html'
|
---|
| 1073 | output = generate_node_overview(uri[0])
|
---|
[8258] | 1074 | elif len(uri) == 2:
|
---|
[10681] | 1075 | content_type = 'text/plain'
|
---|
| 1076 | output = generate_config(uri[0], uri[1])
|
---|
[8258] | 1077 | else:
|
---|
| 1078 | assert False, "Invalid option"
|
---|
[10681] | 1079 |
|
---|
| 1080 | print "Content-Type: %s" % content_type
|
---|
| 1081 | print "Content-Length: %s" % len(output)
|
---|
| 1082 | print ""
|
---|
[8267] | 1083 | print output
|
---|
[8242] | 1084 |
|
---|
[10391] | 1085 | def get_realname(datadump):
|
---|
[10365] | 1086 | # Proxy naming convention is special, as the proxy name is also included in
|
---|
| 1087 | # the nodename, when it comes to the numbered proxies.
|
---|
[8588] | 1088 | if datadump['nodetype'] == 'Proxy':
|
---|
[10391] | 1089 | realname = datadump['nodetype'] + datadump['nodename'].replace('proxy','')
|
---|
[8588] | 1090 | else:
|
---|
| 1091 | # By default the full name is listed and also a shortname CNAME for easy use.
|
---|
[10391] | 1092 | realname = datadump['nodetype'] + datadump['nodename']
|
---|
| 1093 | return(realname)
|
---|
[8259] | 1094 |
|
---|
[9283] | 1095 |
|
---|
| 1096 |
|
---|
[10264] | 1097 | def make_dns(output_dir = 'dns', external = False):
|
---|
[8588] | 1098 | items = dict()
|
---|
[8598] | 1099 |
|
---|
[8588] | 1100 | # hostname is key, IP is value
|
---|
[10642] | 1101 | wleiden_zone = defaultdict(list)
|
---|
[8588] | 1102 | wleiden_cname = dict()
|
---|
[8598] | 1103 |
|
---|
[8588] | 1104 | pool = dict()
|
---|
| 1105 | for node in get_hostlist():
|
---|
| 1106 | datadump = get_yaml(node)
|
---|
[9283] | 1107 |
|
---|
[8588] | 1108 | # Proxy naming convention is special
|
---|
[10391] | 1109 | fqdn = datadump['autogen_realname']
|
---|
[10461] | 1110 | if datadump['nodetype'] in ['CNode', 'Hybrid']:
|
---|
[8588] | 1111 | wleiden_cname[datadump['nodename']] = fqdn
|
---|
[10730] | 1112 |
|
---|
| 1113 | if datadump.has_key('rdr_host'):
|
---|
| 1114 | remote_target = datadump['rdr_host']
|
---|
| 1115 | elif datadump.has_key('remote_access') and datadump['remote_access']:
|
---|
| 1116 | remote_target = datadump['remote_access'].split(':')[0]
|
---|
| 1117 | else:
|
---|
| 1118 | remote_target = None
|
---|
[8588] | 1119 |
|
---|
[10730] | 1120 | if remote_target:
|
---|
| 1121 | try:
|
---|
| 1122 | parseaddr(remote_target)
|
---|
| 1123 | wleiden_zone[datadump['nodename'] + '.gw'].append((remote_target, False))
|
---|
| 1124 | except (IndexError, ValueError):
|
---|
| 1125 | wleiden_cname[datadump['nodename'] + '.gw'] = remote_target + '.'
|
---|
| 1126 |
|
---|
| 1127 |
|
---|
[10655] | 1128 | wleiden_zone[fqdn].append((datadump['masterip'], True))
|
---|
[8588] | 1129 |
|
---|
[8598] | 1130 | # Hacking to get proper DHCP IPs and hostnames
|
---|
[8588] | 1131 | for iface_key in get_interface_keys(datadump):
|
---|
[8598] | 1132 | iface_name = datadump[iface_key]['interface'].replace(':',"-alias-")
|
---|
[10410] | 1133 | (ip, cidr) = datadump[iface_key]['ip'].split('/')
|
---|
[8588] | 1134 | try:
|
---|
| 1135 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
[10882] | 1136 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(cidr)
|
---|
[8588] | 1137 | dhcp_part = ".".join(ip.split('.')[0:3])
|
---|
| 1138 | if ip != datadump['masterip']:
|
---|
[10655] | 1139 | wleiden_zone["dhcp-gateway-%s.%s" % (iface_name, fqdn)].append((ip, False))
|
---|
[8588] | 1140 | for i in range(int(dhcp_start), int(dhcp_stop) + 1):
|
---|
[10655] | 1141 | wleiden_zone["dhcp-%s-%s.%s" % (i, iface_name, fqdn)].append(("%s.%s" % (dhcp_part, i), True))
|
---|
[10825] | 1142 | except (AttributeError, ValueError, KeyError):
|
---|
[8588] | 1143 | # First push it into a pool, to indentify the counter-part later on
|
---|
| 1144 | addr = parseaddr(ip)
|
---|
[10461] | 1145 | cidr = int(cidr)
|
---|
| 1146 | addr = addr & ~((1 << (32 - cidr)) - 1)
|
---|
[9283] | 1147 | if pool.has_key(addr):
|
---|
[8588] | 1148 | pool[addr] += [(iface_name, fqdn, ip)]
|
---|
[9283] | 1149 | else:
|
---|
[8588] | 1150 | pool[addr] = [(iface_name, fqdn, ip)]
|
---|
| 1151 | continue
|
---|
| 1152 |
|
---|
[9286] | 1153 |
|
---|
[10656] | 1154 | def pool_to_name(fqdn, pool_members):
|
---|
[9286] | 1155 | """Convert the joined name to a usable pool name"""
|
---|
| 1156 |
|
---|
[10656] | 1157 | def isplit(item):
|
---|
| 1158 | (prefix, name, number) = re.match('^(cnode|hybrid|proxy)([a-z]+)([0-9]*)$',item.lower()).group(1,2,3)
|
---|
| 1159 | return (prefix, name, number)
|
---|
| 1160 |
|
---|
| 1161 | my_name = isplit(fqdn.split('.')[0])[1]
|
---|
[9286] | 1162 |
|
---|
[10656] | 1163 | short_names = defaultdict(list)
|
---|
[9286] | 1164 | for node in sorted(pool_members):
|
---|
[10656] | 1165 | (prefix, name, number) = isplit(node)
|
---|
| 1166 | short_names[name].append((prefix,number))
|
---|
[9286] | 1167 |
|
---|
[10656] | 1168 | return '-'.join(sorted(short_names.keys()))
|
---|
[9286] | 1169 |
|
---|
| 1170 |
|
---|
[9957] | 1171 | # WL uses an /29 to configure an interface. IP's are ordered like this:
|
---|
[9958] | 1172 | # MasterA (.1) -- DeviceA (.2) <<>> DeviceB (.3) --- SlaveB (.4)
|
---|
[9957] | 1173 |
|
---|
| 1174 | sn = lambda x: re.sub(r'(?i)^cnode','',x)
|
---|
| 1175 |
|
---|
[8598] | 1176 | # Automatic naming convention of interlinks namely 2 + remote.lower()
|
---|
[8588] | 1177 | for (key,value) in pool.iteritems():
|
---|
[9958] | 1178 | # Make sure they are sorted from low-ip to high-ip
|
---|
| 1179 | value = sorted(value, key=lambda x: parseaddr(x[2]))
|
---|
| 1180 |
|
---|
[8588] | 1181 | if len(value) == 1:
|
---|
| 1182 | (iface_name, fqdn, ip) = value[0]
|
---|
[10655] | 1183 | wleiden_zone["2unused-%s.%s" % (iface_name, fqdn)].append((ip, True))
|
---|
[9957] | 1184 |
|
---|
| 1185 | # Device DNS names
|
---|
| 1186 | if 'cnode' in fqdn.lower():
|
---|
[10655] | 1187 | wleiden_zone["d-at-%s.%s" % (iface_name, fqdn)].append((showaddr(parseaddr(ip) + 1), False))
|
---|
| 1188 | wleiden_cname["d-at-%s.%s" % (iface_name,sn(fqdn))] = "d-at-%s.%s" % ((iface_name, fqdn))
|
---|
[9957] | 1189 |
|
---|
[8588] | 1190 | elif len(value) == 2:
|
---|
| 1191 | (a_iface_name, a_fqdn, a_ip) = value[0]
|
---|
| 1192 | (b_iface_name, b_fqdn, b_ip) = value[1]
|
---|
[10655] | 1193 | wleiden_zone["2%s.%s" % (b_fqdn,a_fqdn)].append((a_ip, True))
|
---|
| 1194 | wleiden_zone["2%s.%s" % (a_fqdn,b_fqdn)].append((b_ip, True))
|
---|
[9957] | 1195 |
|
---|
| 1196 | # Device DNS names
|
---|
| 1197 | if 'cnode' in a_fqdn.lower() and 'cnode' in b_fqdn.lower():
|
---|
[10655] | 1198 | wleiden_zone["d-at-%s.%s" % (a_iface_name, a_fqdn)].append((showaddr(parseaddr(a_ip) + 1), False))
|
---|
| 1199 | wleiden_zone["d-at-%s.%s" % (b_iface_name, b_fqdn)].append((showaddr(parseaddr(b_ip) - 1), False))
|
---|
[9957] | 1200 | wleiden_cname["d-at-%s.%s" % (a_iface_name,sn(a_fqdn))] = "d-at-%s.%s" % (a_iface_name, a_fqdn)
|
---|
| 1201 | wleiden_cname["d-at-%s.%s" % (b_iface_name,sn(b_fqdn))] = "d-at-%s.%s" % (b_iface_name, b_fqdn)
|
---|
| 1202 | wleiden_cname["d2%s.%s" % (sn(b_fqdn),sn(a_fqdn))] = "d-at-%s.%s" % (a_iface_name, a_fqdn)
|
---|
| 1203 | wleiden_cname["d2%s.%s" % (sn(a_fqdn),sn(b_fqdn))] = "d-at-%s.%s" % (b_iface_name, b_fqdn)
|
---|
| 1204 |
|
---|
[8588] | 1205 | else:
|
---|
| 1206 | pool_members = [k[1] for k in value]
|
---|
| 1207 | for item in value:
|
---|
[9283] | 1208 | (iface_name, fqdn, ip) = item
|
---|
[10656] | 1209 | pool_name = "2pool-" + pool_to_name(fqdn,pool_members)
|
---|
[10655] | 1210 | wleiden_zone["%s.%s" % (pool_name, fqdn)].append((ip, True))
|
---|
[8598] | 1211 |
|
---|
| 1212 | # Include static DNS entries
|
---|
| 1213 | # XXX: Should they override the autogenerated results?
|
---|
| 1214 | # XXX: Convert input to yaml more useable.
|
---|
| 1215 | # Format:
|
---|
| 1216 | ##; this is a comment
|
---|
| 1217 | ## roomburgh=CNodeRoomburgh1
|
---|
| 1218 | ## apkerk1.CNodeVosko=172.17.176.8 ;this as well
|
---|
[10642] | 1219 | dns_list = yaml.load(open(os.path.join(NODE_DIR,'../dns/staticDNS.yaml'),'r'))
|
---|
[9938] | 1220 |
|
---|
| 1221 | # Hack to allow special entries, for development
|
---|
[10642] | 1222 | wleiden_raw = {}
|
---|
[9938] | 1223 |
|
---|
[10642] | 1224 | for line in dns_list:
|
---|
[10660] | 1225 | reverse = False
|
---|
[10642] | 1226 | k, items = line.items()[0]
|
---|
[10660] | 1227 | if type(items) == dict:
|
---|
| 1228 | if items.has_key('reverse'):
|
---|
| 1229 | reverse = items['reverse']
|
---|
| 1230 | items = items['a']
|
---|
| 1231 | else:
|
---|
| 1232 | items = items['cname']
|
---|
| 1233 | items = [items] if type(items) != list else items
|
---|
[10642] | 1234 | for item in items:
|
---|
| 1235 | if item.startswith('IN '):
|
---|
| 1236 | wleiden_raw[k] = item
|
---|
| 1237 | elif valid_addr(item):
|
---|
[10660] | 1238 | wleiden_zone[k].append((item, reverse))
|
---|
[8598] | 1239 | else:
|
---|
[10642] | 1240 | wleiden_cname[k] = item
|
---|
[9283] | 1241 |
|
---|
[8598] | 1242 | details = dict()
|
---|
| 1243 | # 24 updates a day allowed
|
---|
| 1244 | details['serial'] = time.strftime('%Y%m%d%H')
|
---|
| 1245 |
|
---|
[10264] | 1246 | if external:
|
---|
| 1247 | dns_masters = ['siteview.wirelessleiden.nl', 'ns1.vanderzwet.net']
|
---|
| 1248 | else:
|
---|
| 1249 | dns_masters = ['sunny.wleiden.net']
|
---|
| 1250 |
|
---|
| 1251 | details['master'] = dns_masters[0]
|
---|
| 1252 | details['ns_servers'] = '\n'.join(['\tNS\t%s.' % x for x in dns_masters])
|
---|
| 1253 |
|
---|
[8598] | 1254 | dns_header = '''
|
---|
| 1255 | $TTL 3h
|
---|
[10659] | 1256 | %(zone)s. SOA %(master)s. beheer.lijst.wirelessleiden.nl. ( %(serial)s 1d 12h 1w 60s )
|
---|
[8598] | 1257 | ; Serial, Refresh, Retry, Expire, Neg. cache TTL
|
---|
| 1258 |
|
---|
[10264] | 1259 | %(ns_servers)s
|
---|
[8598] | 1260 | \n'''
|
---|
| 1261 |
|
---|
[9283] | 1262 |
|
---|
[10264] | 1263 | if not os.path.isdir(output_dir):
|
---|
| 1264 | os.makedirs(output_dir)
|
---|
[8598] | 1265 | details['zone'] = 'wleiden.net'
|
---|
[9284] | 1266 | f = open(os.path.join(output_dir,"db." + details['zone']), "w")
|
---|
[8598] | 1267 | f.write(dns_header % details)
|
---|
| 1268 |
|
---|
[10655] | 1269 | for host,items in wleiden_zone.iteritems():
|
---|
| 1270 | for ip,reverse in items:
|
---|
[10730] | 1271 | if ip not in ['0.0.0.0']:
|
---|
[10642] | 1272 | f.write("%s.wleiden.net. IN A %s \n" % (host.lower(), ip))
|
---|
[8588] | 1273 | for source,dest in wleiden_cname.iteritems():
|
---|
[10730] | 1274 | dest = dest if dest.endswith('.') else dest + ".wleiden.net."
|
---|
| 1275 | f.write("%s.wleiden.net. IN CNAME %s\n" % (source.lower(), dest.lower()))
|
---|
[9938] | 1276 | for source, dest in wleiden_raw.iteritems():
|
---|
| 1277 | f.write("%s.wleiden.net. %s\n" % (source, dest))
|
---|
[8588] | 1278 | f.close()
|
---|
[9283] | 1279 |
|
---|
[8598] | 1280 | # Create whole bunch of specific sub arpa zones. To keep it compliant
|
---|
| 1281 | for s in range(16,32):
|
---|
| 1282 | details['zone'] = '%i.172.in-addr.arpa' % s
|
---|
[9284] | 1283 | f = open(os.path.join(output_dir,"db." + details['zone']), "w")
|
---|
[8598] | 1284 | f.write(dns_header % details)
|
---|
[8588] | 1285 |
|
---|
[8598] | 1286 | #XXX: Not effient, fix to proper data structure and do checks at other
|
---|
| 1287 | # stages
|
---|
[10655] | 1288 | for host,items in wleiden_zone.iteritems():
|
---|
| 1289 | for ip,reverse in items:
|
---|
| 1290 | if not reverse:
|
---|
| 1291 | continue
|
---|
[10642] | 1292 | if valid_addr(ip):
|
---|
[10655] | 1293 | if valid_addr(ip):
|
---|
| 1294 | if int(ip.split('.')[1]) == s:
|
---|
| 1295 | rev_ip = '.'.join(reversed(ip.split('.')))
|
---|
| 1296 | f.write("%s.in-addr.arpa. IN PTR %s.wleiden.net.\n" % (rev_ip.lower(), host.lower()))
|
---|
[8598] | 1297 | f.close()
|
---|
[8588] | 1298 |
|
---|
[8598] | 1299 |
|
---|
[8259] | 1300 | def usage():
|
---|
[10567] | 1301 | print """Usage: %(prog)s <argument>
|
---|
| 1302 | Argument:
|
---|
| 1303 | \tstandalone [port] = Run configurator webserver [8000]
|
---|
| 1304 | \tdns [outputdir] = Generate BIND compliant zone files in dns [./dns]
|
---|
[9589] | 1305 | \tfull-export = Generate yaml export script for heatmap.
|
---|
[10567] | 1306 | \tstatic [outputdir] = Generate all config files and store on disk
|
---|
| 1307 | \t with format ./<outputdir>/%%NODE%%/%%FILE%% [./static]
|
---|
[10872] | 1308 | \ttest <node> [<file>] = Receive output for certain node [all files].
|
---|
| 1309 | \ttest-cgi <node> <file> = Receive output of CGI script [all files].
|
---|
[10567] | 1310 | \tlist <status> <items> = List systems which have certain status
|
---|
[10563] | 1311 |
|
---|
[10567] | 1312 | Arguments:
|
---|
| 1313 | \t<node> = NodeName (example: HybridRick)
|
---|
| 1314 | \t<file> = %(files)s
|
---|
| 1315 | \t<status> = all|up|down|planned
|
---|
| 1316 | \t<items> = systems|nodes|proxies
|
---|
| 1317 |
|
---|
[10563] | 1318 | NOTE FOR DEVELOPERS; you can test your changes like this:
|
---|
| 1319 | BEFORE any changes in this code:
|
---|
| 1320 | $ ./gformat.py static /tmp/pre
|
---|
| 1321 | AFTER the changes:
|
---|
| 1322 | $ ./gformat.py static /tmp/post
|
---|
| 1323 | VIEW differences and VERIFY all are OK:
|
---|
[10564] | 1324 | $ diff -urI 'Generated' -r /tmp/pre /tmp/post
|
---|
[10567] | 1325 | """ % { 'prog' : sys.argv[0], 'files' : '|'.join(files) }
|
---|
[8259] | 1326 | exit(0)
|
---|
| 1327 |
|
---|
| 1328 |
|
---|
[10070] | 1329 | def is_text_request():
|
---|
[10107] | 1330 | """ Find out whether we are calling from the CLI or any text based CLI utility """
|
---|
| 1331 | try:
|
---|
| 1332 | return os.environ['HTTP_USER_AGENT'].split()[0] in ['curl', 'fetch', 'wget']
|
---|
| 1333 | except KeyError:
|
---|
| 1334 | return True
|
---|
[8259] | 1335 |
|
---|
[10547] | 1336 | def switchFormat(setting):
|
---|
| 1337 | if setting:
|
---|
| 1338 | return "YES"
|
---|
| 1339 | else:
|
---|
| 1340 | return "NO"
|
---|
| 1341 |
|
---|
[8267] | 1342 | def main():
|
---|
| 1343 | """Hard working sub"""
|
---|
| 1344 | # Allow easy hacking using the CLI
|
---|
| 1345 | if not os.environ.has_key('PATH_INFO'):
|
---|
| 1346 | if len(sys.argv) < 2:
|
---|
| 1347 | usage()
|
---|
[9283] | 1348 |
|
---|
[8267] | 1349 | if sys.argv[1] == "standalone":
|
---|
| 1350 | import SocketServer
|
---|
| 1351 | import CGIHTTPServer
|
---|
[10105] | 1352 | # Hop to the right working directory.
|
---|
| 1353 | os.chdir(os.path.dirname(__file__))
|
---|
[8267] | 1354 | try:
|
---|
| 1355 | PORT = int(sys.argv[2])
|
---|
| 1356 | except (IndexError,ValueError):
|
---|
| 1357 | PORT = 8000
|
---|
[9283] | 1358 |
|
---|
[8267] | 1359 | class MyCGIHTTPRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler):
|
---|
| 1360 | """ Serve this CGI from the root of the webserver """
|
---|
| 1361 | def is_cgi(self):
|
---|
| 1362 | if "favicon" in self.path:
|
---|
| 1363 | return False
|
---|
[9283] | 1364 |
|
---|
[10364] | 1365 | self.cgi_info = (os.path.basename(__file__), self.path)
|
---|
[8267] | 1366 | self.path = ''
|
---|
| 1367 | return True
|
---|
| 1368 | handler = MyCGIHTTPRequestHandler
|
---|
[9807] | 1369 | SocketServer.TCPServer.allow_reuse_address = True
|
---|
[8267] | 1370 | httpd = SocketServer.TCPServer(("", PORT), handler)
|
---|
| 1371 | httpd.server_name = 'localhost'
|
---|
| 1372 | httpd.server_port = PORT
|
---|
[9283] | 1373 |
|
---|
[9728] | 1374 | logger.info("serving at port %s", PORT)
|
---|
[8860] | 1375 | try:
|
---|
| 1376 | httpd.serve_forever()
|
---|
| 1377 | except KeyboardInterrupt:
|
---|
| 1378 | httpd.shutdown()
|
---|
[9728] | 1379 | logger.info("All done goodbye")
|
---|
[8267] | 1380 | elif sys.argv[1] == "test":
|
---|
[10872] | 1381 | # Basic argument validation
|
---|
| 1382 | try:
|
---|
| 1383 | node = sys.argv[2]
|
---|
| 1384 | datadump = get_yaml(node)
|
---|
| 1385 | except IndexError:
|
---|
| 1386 | print "Invalid argument"
|
---|
| 1387 | exit(1)
|
---|
| 1388 | except IOError as e:
|
---|
| 1389 | print e
|
---|
| 1390 | exit(1)
|
---|
| 1391 |
|
---|
| 1392 |
|
---|
| 1393 | # Get files to generate
|
---|
| 1394 | gen_files = sys.argv[3:] if len(sys.argv) > 3 else files
|
---|
| 1395 |
|
---|
| 1396 | # Actual config generation
|
---|
| 1397 | for config in gen_files:
|
---|
| 1398 | logger.info("## Generating %s %s", node, config)
|
---|
| 1399 | print generate_config(node, config, datadump)
|
---|
| 1400 | elif sys.argv[1] == "test-cgi":
|
---|
[8267] | 1401 | os.environ['PATH_INFO'] = "/".join(sys.argv[2:])
|
---|
| 1402 | os.environ['SCRIPT_NAME'] = __file__
|
---|
| 1403 | process_cgi_request()
|
---|
[8296] | 1404 | elif sys.argv[1] == "static":
|
---|
| 1405 | items = dict()
|
---|
[10563] | 1406 | items['output_dir'] = sys.argv[2] if len(sys.argv) > 2 else "./static"
|
---|
[8296] | 1407 | for node in get_hostlist():
|
---|
| 1408 | items['node'] = node
|
---|
[10563] | 1409 | items['wdir'] = "%(output_dir)s/%(node)s" % items
|
---|
[8296] | 1410 | if not os.path.isdir(items['wdir']):
|
---|
| 1411 | os.makedirs(items['wdir'])
|
---|
[8298] | 1412 | datadump = get_yaml(node)
|
---|
[8296] | 1413 | for config in files:
|
---|
| 1414 | items['config'] = config
|
---|
[9728] | 1415 | logger.info("## Generating %(node)s %(config)s" % items)
|
---|
[8296] | 1416 | f = open("%(wdir)s/%(config)s" % items, "w")
|
---|
[8298] | 1417 | f.write(generate_config(node, config, datadump))
|
---|
[8296] | 1418 | f.close()
|
---|
[9514] | 1419 | elif sys.argv[1] == "wind-export":
|
---|
| 1420 | items = dict()
|
---|
| 1421 | for node in get_hostlist():
|
---|
| 1422 | datadump = get_yaml(node)
|
---|
| 1423 | sql = """INSERT IGNORE INTO nodes (name, name_ns, longitude, latitude)
|
---|
| 1424 | VALUES ('%(nodename)s', '%(nodename)s', %(latitude)s, %(longitude)s);""" % datadump;
|
---|
| 1425 | sql = """INSERT IGNORE INTO users_nodes (user_id, node_id, owner)
|
---|
| 1426 | VALUES (
|
---|
| 1427 | (SELECT id FROM users WHERE username = 'rvdzwet'),
|
---|
| 1428 | (SELECT id FROM nodes WHERE name = '%(nodename)s'),
|
---|
| 1429 | 'Y');""" % datadump
|
---|
| 1430 | #for config in files:
|
---|
| 1431 | # items['config'] = config
|
---|
| 1432 | # print "## Generating %(node)s %(config)s" % items
|
---|
| 1433 | # f = open("%(wdir)s/%(config)s" % items, "w")
|
---|
| 1434 | # f.write(generate_config(node, config, datadump))
|
---|
| 1435 | # f.close()
|
---|
| 1436 | for node in get_hostlist():
|
---|
| 1437 | datadump = get_yaml(node)
|
---|
| 1438 | for iface_key in sorted([elem for elem in datadump.keys() if elem.startswith('iface_')]):
|
---|
| 1439 | ifacedump = datadump[iface_key]
|
---|
| 1440 | if ifacedump.has_key('mode') and ifacedump['mode'] == 'ap-wds':
|
---|
| 1441 | ifacedump['nodename'] = datadump['nodename']
|
---|
| 1442 | if not ifacedump.has_key('channel') or not ifacedump['channel']:
|
---|
| 1443 | ifacedump['channel'] = 0
|
---|
| 1444 | sql = """INSERT INTO links (node_id, type, ssid, protocol, channel, status)
|
---|
| 1445 | VALUES ((SELECT id FROM nodes WHERE name = '%(nodename)s'), 'ap',
|
---|
| 1446 | '%(ssid)s', 'IEEE 802.11b', %(channel)s, 'active');""" % ifacedump
|
---|
[9589] | 1447 | elif sys.argv[1] == "full-export":
|
---|
| 1448 | hosts = {}
|
---|
| 1449 | for node in get_hostlist():
|
---|
| 1450 | datadump = get_yaml(node)
|
---|
| 1451 | hosts[datadump['nodename']] = datadump
|
---|
| 1452 | print yaml.dump(hosts)
|
---|
| 1453 |
|
---|
[8584] | 1454 | elif sys.argv[1] == "dns":
|
---|
[10264] | 1455 | make_dns(sys.argv[2] if len(sys.argv) > 2 else 'dns', 'external' in sys.argv)
|
---|
[9283] | 1456 | elif sys.argv[1] == "cleanup":
|
---|
[8588] | 1457 | # First generate all datadumps
|
---|
| 1458 | datadumps = dict()
|
---|
[10729] | 1459 | ssid_to_node = dict()
|
---|
[8588] | 1460 | for host in get_hostlist():
|
---|
[9728] | 1461 | logger.info("# Processing: %s", host)
|
---|
[10436] | 1462 | # Set some boring default values
|
---|
| 1463 | datadump = { 'board' : 'UNKNOWN' }
|
---|
| 1464 | datadump.update(get_yaml(host))
|
---|
[10391] | 1465 | datadumps[datadump['autogen_realname']] = datadump
|
---|
[9283] | 1466 |
|
---|
[10729] | 1467 | (poel, errors) = make_relations(datadumps)
|
---|
| 1468 | print "\n".join(["# WARNING: %s" % x for x in errors])
|
---|
[10455] | 1469 |
|
---|
[10156] | 1470 | for host,datadump in datadumps.iteritems():
|
---|
[10881] | 1471 | try:
|
---|
| 1472 | # Convert all yes and no to boolean values
|
---|
| 1473 | def fix_boolean(dump):
|
---|
| 1474 | for key in dump.keys():
|
---|
| 1475 | if type(dump[key]) == dict:
|
---|
| 1476 | dump[key] = fix_boolean(dump[key])
|
---|
| 1477 | elif str(dump[key]).lower() in ["yes", "true"]:
|
---|
| 1478 | dump[key] = True
|
---|
| 1479 | elif str(dump[key]).lower() in ["no", "false"]:
|
---|
| 1480 | # Compass richting no (Noord Oost) is valid input
|
---|
| 1481 | if key != "compass": dump[key] = False
|
---|
| 1482 | return dump
|
---|
| 1483 | datadump = fix_boolean(datadump)
|
---|
[10455] | 1484 |
|
---|
[10881] | 1485 | if datadump['rdnap_x'] and datadump['rdnap_y']:
|
---|
| 1486 | datadump['latitude'], datadump['longitude'] = rdnap.rd2etrs(datadump['rdnap_x'], datadump['rdnap_y'])
|
---|
| 1487 | elif datadump['latitude'] and datadump['longitude']:
|
---|
| 1488 | datadump['rdnap_x'], datadump['rdnap_y'] = rdnap.etrs2rd(datadump['latitude'], datadump['longitude'])
|
---|
[10400] | 1489 |
|
---|
[10881] | 1490 | if datadump['nodename'].startswith('Proxy'):
|
---|
| 1491 | datadump['nodename'] = datadump['nodename'].lower()
|
---|
[10319] | 1492 |
|
---|
[10881] | 1493 | for iface_key in datadump['autogen_iface_keys']:
|
---|
| 1494 | # All our normal wireless cards are normal APs now
|
---|
| 1495 | if datadump[iface_key]['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 1496 | datadump[iface_key]['mode'] = 'ap'
|
---|
| 1497 | # Wireless Leiden SSID have an consistent lowercase/uppercase
|
---|
| 1498 | if datadump[iface_key].has_key('ssid'):
|
---|
| 1499 | ssid = datadump[iface_key]['ssid']
|
---|
| 1500 | prefix = 'ap-WirelessLeiden-'
|
---|
| 1501 | if ssid.lower().startswith(prefix.lower()):
|
---|
| 1502 | datadump[iface_key]['ssid'] = prefix + ssid[len(prefix)].upper() + ssid[len(prefix) + 1:]
|
---|
| 1503 | if datadump[iface_key].has_key('ns_ip') and not datadump[iface_key].has_key('mode'):
|
---|
| 1504 | datadump[iface_key]['mode'] = 'autogen-FIXME'
|
---|
| 1505 | if not datadump[iface_key].has_key('comment'):
|
---|
| 1506 | datadump[iface_key]['comment'] = 'autogen-FIXME'
|
---|
[10882] | 1507 |
|
---|
| 1508 | if datadump[iface_key]['comment'].startswith('autogen-') and datadump[iface_key].has_key('comment'):
|
---|
[10884] | 1509 | datadump[iface_key] = datadump[iface_key]['desc']
|
---|
[10882] | 1510 |
|
---|
[10884] | 1511 | x = datadump[iface_key]['comment']
|
---|
| 1512 | datadump[iface_key]['comment'] = x[0].upper() + x[1:]
|
---|
| 1513 |
|
---|
| 1514 |
|
---|
| 1515 | if datadump[iface_key].has_key('desc') and datadump[iface_key]['comment'].lower() == datadump[iface_key]['desc'].lower():
|
---|
[10882] | 1516 | del datadump[iface_key]['desc']
|
---|
| 1517 |
|
---|
[10881] | 1518 | # Set the compass value based on the angle between the poels
|
---|
| 1519 | if datadump[iface_key].has_key('ns_ip'):
|
---|
| 1520 | my_pool = poel[network(datadump[iface_key]['ip'])]
|
---|
| 1521 | remote_hosts = list(set([x[0] for x in my_pool]) - set([host]))
|
---|
| 1522 | if remote_hosts:
|
---|
| 1523 | compass_target = remote_hosts[0]
|
---|
| 1524 | datadump[iface_key]['compass'] = cd_between_hosts(host, compass_target, datadumps)
|
---|
| 1525 |
|
---|
| 1526 | store_yaml(datadump)
|
---|
| 1527 | except Exception as e:
|
---|
| 1528 | print "# Error while processing %s" % host
|
---|
| 1529 | raise
|
---|
[9971] | 1530 | elif sys.argv[1] == "list":
|
---|
[10611] | 1531 | use_fqdn = False
|
---|
[10567] | 1532 | if len(sys.argv) < 4 or not sys.argv[2] in ["up", "down", "planned", "all"]:
|
---|
| 1533 | usage()
|
---|
| 1534 | if sys.argv[3] == "nodes":
|
---|
[9971] | 1535 | systems = get_nodelist()
|
---|
[10567] | 1536 | elif sys.argv[3] == "proxies":
|
---|
[9971] | 1537 | systems = get_proxylist()
|
---|
[10567] | 1538 | elif sys.argv[3] == "systems":
|
---|
[10270] | 1539 | systems = get_hostlist()
|
---|
[9971] | 1540 | else:
|
---|
| 1541 | usage()
|
---|
[10611] | 1542 | if len(sys.argv) > 4:
|
---|
| 1543 | if sys.argv[4] == "fqdn":
|
---|
| 1544 | use_fqdn = True
|
---|
| 1545 | else:
|
---|
| 1546 | usage()
|
---|
| 1547 |
|
---|
[9971] | 1548 | for system in systems:
|
---|
| 1549 | datadump = get_yaml(system)
|
---|
[10611] | 1550 |
|
---|
| 1551 | output = datadump['autogen_fqdn'] if use_fqdn else system
|
---|
[10567] | 1552 | if sys.argv[2] == "all":
|
---|
[10611] | 1553 | print output
|
---|
[10567] | 1554 | elif datadump['status'] == sys.argv[2]:
|
---|
[10611] | 1555 | print output
|
---|
[10378] | 1556 | elif sys.argv[1] == "create":
|
---|
| 1557 | if sys.argv[2] == "network.kml":
|
---|
| 1558 | print make_network_kml.make_graph()
|
---|
| 1559 | else:
|
---|
| 1560 | usage()
|
---|
[9283] | 1561 | usage()
|
---|
| 1562 | else:
|
---|
[10070] | 1563 | # Do not enable debugging for config requests as it highly clutters the output
|
---|
| 1564 | if not is_text_request():
|
---|
| 1565 | cgitb.enable()
|
---|
[9283] | 1566 | process_cgi_request()
|
---|
| 1567 |
|
---|
| 1568 |
|
---|
| 1569 | if __name__ == "__main__":
|
---|
| 1570 | main()
|
---|