[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 | #
|
---|
[11426] | 15 | # MUCH FASTER WILL IT BE with mod_wsgi, due to caches and avoiding loading all
|
---|
| 16 | # the heavy template lifting all the time.
|
---|
| 17 | #
|
---|
[11503] | 18 | # WSGIDaemonProcess gformat threads=25
|
---|
[11426] | 19 | # WSGISocketPrefix run/wsgi
|
---|
| 20 | #
|
---|
| 21 | # <Directory /var/www/cgi-bin>
|
---|
| 22 | # WSGIProcessGroup gformat
|
---|
| 23 | # </Directory>
|
---|
| 24 | # WSGIScriptAlias /hello /var/www/cgi-bin/genesis/tools/gformat.py
|
---|
| 25 | #
|
---|
[12473] | 26 | # Package dependencies list:
|
---|
| 27 | # yum install python-yaml pyproj proj-epsg python-jinja2
|
---|
[11426] | 28 | #
|
---|
[8242] | 29 | # Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
[9957] | 30 | #
|
---|
[8622] | 31 |
|
---|
| 32 | # Hack to make the script directory is also threated as a module search path.
|
---|
| 33 | import sys
|
---|
| 34 | import os
|
---|
| 35 | sys.path.append(os.path.dirname(__file__))
|
---|
| 36 |
|
---|
[12246] | 37 | SVN = filter(os.path.isfile, ('/usr/local/bin/svn', '/usr/bin/svn'))[0]
|
---|
[12245] | 38 |
|
---|
[12570] | 39 | import argparse
|
---|
[8242] | 40 | import cgi
|
---|
[8267] | 41 | import cgitb
|
---|
| 42 | import copy
|
---|
[8242] | 43 | import glob
|
---|
[11426] | 44 | import make_network_kml
|
---|
| 45 | import math
|
---|
[12570] | 46 | import pyproj
|
---|
[11738] | 47 | import random
|
---|
| 48 | import re
|
---|
[8242] | 49 | import socket
|
---|
| 50 | import string
|
---|
| 51 | import subprocess
|
---|
[12570] | 52 | import textwrap
|
---|
[8242] | 53 | import time
|
---|
[11426] | 54 | import urlparse
|
---|
[11738] | 55 |
|
---|
[8584] | 56 | from pprint import pprint
|
---|
[10281] | 57 | from collections import defaultdict
|
---|
[13276] | 58 | from sys import stderr
|
---|
[8575] | 59 | try:
|
---|
| 60 | import yaml
|
---|
| 61 | except ImportError, e:
|
---|
| 62 | print e
|
---|
| 63 | print "[ERROR] Please install the python-yaml or devel/py-yaml package"
|
---|
| 64 | exit(1)
|
---|
[8588] | 65 |
|
---|
| 66 | try:
|
---|
| 67 | from yaml import CLoader as Loader
|
---|
| 68 | from yaml import CDumper as Dumper
|
---|
| 69 | except ImportError:
|
---|
| 70 | from yaml import Loader, Dumper
|
---|
| 71 |
|
---|
[10584] | 72 | from jinja2 import Environment, Template
|
---|
| 73 | def yesorno(value):
|
---|
| 74 | return "YES" if bool(value) else "NO"
|
---|
| 75 | env = Environment()
|
---|
| 76 | env.filters['yesorno'] = yesorno
|
---|
| 77 | def render_template(datadump, template):
|
---|
| 78 | result = env.from_string(template).render(datadump)
|
---|
| 79 | # Make it look pretty to the naked eye, as jinja templates are not so
|
---|
| 80 | # friendly when it comes to whitespace formatting
|
---|
| 81 | ## Remove extra whitespace at end of line lstrip() style.
|
---|
| 82 | result = re.sub(r'\n[\ ]+','\n', result)
|
---|
| 83 | ## Include only a single newline between an definition and a comment
|
---|
| 84 | result = re.sub(r'(["\'])\n+([a-z]|\n#\n)',r'\1\n\2', result)
|
---|
| 85 | ## Remove extra newlines after single comment
|
---|
| 86 | result = re.sub(r'(#\n)\n+([a-z])',r'\1\2', result)
|
---|
| 87 | return result
|
---|
[10110] | 88 |
|
---|
[9697] | 89 | import logging
|
---|
| 90 | logging.basicConfig(format='# %(levelname)s: %(message)s' )
|
---|
| 91 | logger = logging.getLogger()
|
---|
| 92 | logger.setLevel(logging.DEBUG)
|
---|
[8242] | 93 |
|
---|
[9283] | 94 |
|
---|
[8948] | 95 | if os.environ.has_key('CONFIGROOT'):
|
---|
| 96 | NODE_DIR = os.environ['CONFIGROOT']
|
---|
| 97 | else:
|
---|
[9283] | 98 | NODE_DIR = os.path.abspath(os.path.dirname(__file__)) + '/../nodes'
|
---|
[8242] | 99 | __version__ = '$Id: gformat.py 13312 2015-07-27 19:39:20Z rick $'
|
---|
| 100 |
|
---|
[9283] | 101 | files = [
|
---|
[8242] | 102 | 'authorized_keys',
|
---|
| 103 | 'dnsmasq.conf',
|
---|
[10410] | 104 | 'dhcpd.conf',
|
---|
[8242] | 105 | 'rc.conf.local',
|
---|
| 106 | 'resolv.conf',
|
---|
[10069] | 107 | 'motd',
|
---|
[10654] | 108 | 'ntp.conf',
|
---|
[10705] | 109 | 'pf.hybrid.conf.local',
|
---|
[10054] | 110 | 'wleiden.yaml',
|
---|
[8242] | 111 | ]
|
---|
| 112 |
|
---|
[8319] | 113 | # Global variables uses
|
---|
[8323] | 114 | OK = 10
|
---|
| 115 | DOWN = 20
|
---|
| 116 | UNKNOWN = 90
|
---|
[8257] | 117 |
|
---|
[11426] | 118 |
|
---|
[11503] | 119 | ileiden_proxies = []
|
---|
| 120 | normal_proxies = []
|
---|
[10860] | 121 | datadump_cache = {}
|
---|
[11426] | 122 | interface_list_cache = {}
|
---|
| 123 | rc_conf_local_cache = {}
|
---|
[11503] | 124 | nameservers_cache = []
|
---|
[11426] | 125 | def clear_cache():
|
---|
| 126 | ''' Poor mans cache implementation '''
|
---|
[11503] | 127 | global datadump_cache, interface_list_cache, rc_conf_local_cache, ileiden_proxies, normal_proxies, nameservers_cache
|
---|
[11426] | 128 | datadump_cache = {}
|
---|
| 129 | interface_list_cache = {}
|
---|
| 130 | rc_conf_local_cache = {}
|
---|
[11503] | 131 | ileiden_proxies = []
|
---|
| 132 | normal_proxies = []
|
---|
| 133 | nameservers_cache = []
|
---|
[11533] | 134 |
|
---|
[10887] | 135 | NO_DHCP = 0
|
---|
| 136 | DHCP_CLIENT = 10
|
---|
| 137 | DHCP_SERVER = 20
|
---|
| 138 | def dhcp_type(item):
|
---|
| 139 | if not item.has_key('dhcp'):
|
---|
| 140 | return NO_DHCP
|
---|
| 141 | elif not item['dhcp']:
|
---|
| 142 | return NO_DHCP
|
---|
| 143 | elif item['dhcp'].lower() == 'client':
|
---|
| 144 | return DHCP_CLIENT
|
---|
| 145 | else:
|
---|
[10889] | 146 | # Validation Checks
|
---|
| 147 | begin,end = map(int,item['dhcp'].split('-'))
|
---|
| 148 | if begin >= end:
|
---|
| 149 | raise ValueError("DHCP Start >= DHCP End")
|
---|
[10887] | 150 | return DHCP_SERVER
|
---|
| 151 |
|
---|
[12473] | 152 | def etrs2rd(lat, lon):
|
---|
| 153 | p1 = pyproj.Proj(proj='latlon',datum='WGS84')
|
---|
| 154 | p2 = pyproj.Proj(init='EPSG:28992')
|
---|
| 155 | RDx, RDy = pyproj.transform(p1,p2,lon, lat)
|
---|
| 156 | return (RDx, RDy)
|
---|
[10904] | 157 |
|
---|
[12473] | 158 | def rd2etrs(RDx, RDy):
|
---|
| 159 | p1 = pyproj.Proj(init='EPSG:28992')
|
---|
| 160 | p2 = pyproj.Proj(proj='latlon',datum='WGS84')
|
---|
| 161 | lon, lat = pyproj.transform(p1,p2, RDx, RDy)
|
---|
| 162 | return (lat, lon)
|
---|
[10904] | 163 |
|
---|
| 164 | def get_yaml(item,add_version_info=True):
|
---|
[10872] | 165 | try:
|
---|
| 166 | """ Get configuration yaml for 'item'"""
|
---|
| 167 | if datadump_cache.has_key(item):
|
---|
| 168 | return datadump_cache[item].copy()
|
---|
[10860] | 169 |
|
---|
[10872] | 170 | gfile = os.path.join(NODE_DIR,item,'wleiden.yaml')
|
---|
[8257] | 171 |
|
---|
[10904] | 172 | # Default values
|
---|
| 173 | datadump = {
|
---|
| 174 | 'autogen_revision' : 'NOTFOUND',
|
---|
| 175 | 'autogen_gfile' : gfile,
|
---|
[13279] | 176 | 'service_proxy_ileiden' : False,
|
---|
[10904] | 177 | }
|
---|
[10872] | 178 | f = open(gfile, 'r')
|
---|
| 179 | datadump.update(yaml.load(f,Loader=Loader))
|
---|
| 180 | if datadump['nodetype'] == 'Hybrid':
|
---|
| 181 | # Some values are defined implicitly
|
---|
| 182 | if datadump.has_key('rdr_rules') and datadump['rdr_rules'] and not datadump.has_key('service_incoming_rdr'):
|
---|
| 183 | datadump['service_incoming_rdr'] = True
|
---|
| 184 | # Use some boring defaults
|
---|
| 185 | defaults = {
|
---|
| 186 | 'service_proxy_normal' : False,
|
---|
| 187 | 'service_accesspoint' : True,
|
---|
[11326] | 188 | 'service_incoming_rdr' : False,
|
---|
[11538] | 189 | 'service_concentrator' : False,
|
---|
[11326] | 190 | 'monitoring_group' : 'wleiden',
|
---|
[10872] | 191 | }
|
---|
| 192 | for (key,value) in defaults.iteritems():
|
---|
| 193 | if not datadump.has_key(key):
|
---|
| 194 | datadump[key] = value
|
---|
| 195 | f.close()
|
---|
[10391] | 196 |
|
---|
[10904] | 197 | # Sometimes getting version information is useless or harmfull, like in the pre-commit hooks
|
---|
| 198 | if add_version_info:
|
---|
[12245] | 199 | p = subprocess.Popen([SVN, 'info', datadump['autogen_gfile']], stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
|
---|
[11624] | 200 | lines = p.communicate()[0].split('\n')
|
---|
| 201 | if p.returncode == 0:
|
---|
| 202 | for line in lines:
|
---|
| 203 | if line:
|
---|
| 204 | (key, value) = line.split(': ')
|
---|
| 205 | datadump["autogen_" + key.lower().replace(' ','_')] = value
|
---|
[10904] | 206 |
|
---|
[10872] | 207 | # Preformat certain needed variables for formatting and push those into special object
|
---|
| 208 | datadump['autogen_iface_keys'] = get_interface_keys(datadump)
|
---|
[10391] | 209 |
|
---|
[10872] | 210 | wlan_count=0
|
---|
| 211 | try:
|
---|
| 212 | for key in datadump['autogen_iface_keys']:
|
---|
[10890] | 213 | datadump[key]['autogen_ifbase'] = key.split('_')[1]
|
---|
[12349] | 214 | datadump[key]['autogen_gateway'] = datadump[key]['ip'].split('/')[0]
|
---|
[10872] | 215 | if datadump[key]['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 216 | datadump[key]['autogen_ifname'] = 'wlan%i' % wlan_count
|
---|
| 217 | wlan_count += 1
|
---|
| 218 | else:
|
---|
[10890] | 219 | datadump[key]['autogen_ifname'] = datadump[key]['autogen_ifbase']
|
---|
[13169] | 220 | datadump[key]['autogen_bridge'] = datadump[key]['autogen_ifbase'].startswith('bridge')
|
---|
| 221 | if datadump[key]['autogen_bridge'] and not 'alias' in key:
|
---|
| 222 | datadump[key]['autogen_bridge_interfaces'] = datadump[key]['members'].split()
|
---|
[10872] | 223 | except Exception as e:
|
---|
| 224 | print "# Error while processing interface %s" % key
|
---|
| 225 | raise
|
---|
[10391] | 226 |
|
---|
[10887] | 227 | dhcp_interfaces = [datadump[key]['autogen_ifname'] for key in datadump['autogen_iface_keys'] \
|
---|
| 228 | if dhcp_type(datadump[key]) == DHCP_SERVER]
|
---|
| 229 |
|
---|
[10872] | 230 | datadump['autogen_dhcp_interfaces'] = dhcp_interfaces
|
---|
| 231 | datadump['autogen_item'] = item
|
---|
[10391] | 232 |
|
---|
[10872] | 233 | datadump['autogen_realname'] = get_realname(datadump)
|
---|
| 234 | datadump['autogen_domain'] = datadump['domain'] if datadump.has_key('domain') else 'wleiden.net.'
|
---|
| 235 | datadump['autogen_fqdn'] = datadump['autogen_realname'] + '.' + datadump['autogen_domain']
|
---|
| 236 | datadump_cache[item] = datadump.copy()
|
---|
| 237 | except Exception as e:
|
---|
| 238 | print "# Error while processing %s" % item
|
---|
| 239 | raise
|
---|
[10391] | 240 | return datadump
|
---|
| 241 |
|
---|
| 242 |
|
---|
| 243 | def store_yaml(datadump, header=False):
|
---|
| 244 | """ Store configuration yaml for 'item'"""
|
---|
| 245 | item = datadump['autogen_item']
|
---|
| 246 | gfile = os.path.join(NODE_DIR,item,'wleiden.yaml')
|
---|
| 247 |
|
---|
[10881] | 248 | output = generate_wleiden_yaml(datadump, header)
|
---|
| 249 |
|
---|
[10391] | 250 | f = open(gfile, 'w')
|
---|
[10881] | 251 | f.write(output)
|
---|
[10391] | 252 | f.close()
|
---|
| 253 |
|
---|
| 254 |
|
---|
[10729] | 255 | def network(ip):
|
---|
| 256 | addr, mask = ip.split('/')
|
---|
| 257 | # Not parsing of these folks please
|
---|
| 258 | addr = parseaddr(addr)
|
---|
| 259 | mask = int(mask)
|
---|
| 260 | network = addr & ~((1 << (32 - mask)) - 1)
|
---|
| 261 | return network
|
---|
| 262 |
|
---|
[10391] | 263 |
|
---|
[10729] | 264 |
|
---|
[10932] | 265 | def make_relations(datadumps=dict()):
|
---|
[10270] | 266 | """ Process _ALL_ yaml files to get connection relations """
|
---|
[10729] | 267 | errors = []
|
---|
[10281] | 268 | poel = defaultdict(list)
|
---|
[10729] | 269 |
|
---|
| 270 | if not datadumps:
|
---|
| 271 | for host in get_hostlist():
|
---|
| 272 | datadumps[host] = get_yaml(host)
|
---|
| 273 |
|
---|
| 274 | for host, datadump in datadumps.iteritems():
|
---|
[10270] | 275 | try:
|
---|
| 276 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[10729] | 277 | net_addr = network(datadump[iface_key]['ip'])
|
---|
| 278 | poel[net_addr] += [(host,datadump[iface_key])]
|
---|
[10270] | 279 | except (KeyError, ValueError), e:
|
---|
[10729] | 280 | errors.append("[FOUT] in '%s' interface '%s' (%s)" % (host,iface_key, e))
|
---|
[10270] | 281 | continue
|
---|
| 282 | return (poel, errors)
|
---|
| 283 |
|
---|
| 284 |
|
---|
[8267] | 285 |
|
---|
[8321] | 286 | def valid_addr(addr):
|
---|
| 287 | """ Show which address is valid in which are not """
|
---|
| 288 | return str(addr).startswith('172.')
|
---|
| 289 |
|
---|
[10692] | 290 | def get_system_list(prefix):
|
---|
| 291 | return sorted([os.path.basename(os.path.dirname(x)) for x in glob.glob("%s/%s*/wleiden.yaml" % (NODE_DIR, prefix))])
|
---|
[8321] | 292 |
|
---|
[10692] | 293 | get_hybridlist = lambda: get_system_list("Hybrid")
|
---|
| 294 | get_nodelist = lambda: get_system_list("CNode")
|
---|
| 295 | get_proxylist = lambda: get_system_list("Proxy")
|
---|
[8267] | 296 |
|
---|
[8296] | 297 | def get_hostlist():
|
---|
| 298 | """ Combined hosts and proxy list"""
|
---|
[10192] | 299 | return get_nodelist() + get_proxylist() + get_hybridlist()
|
---|
[8267] | 300 |
|
---|
[8588] | 301 | def angle_between_points(lat1,lat2,long1,long2):
|
---|
[9283] | 302 | """
|
---|
[8588] | 303 | Return Angle in radians between two GPS coordinates
|
---|
| 304 | See: http://stackoverflow.com/questions/3809179/angle-between-2-gps-coordinates
|
---|
| 305 | """
|
---|
| 306 | dy = lat2 - lat1
|
---|
[10729] | 307 | dx = math.cos(lat1)*(long2 - long1)
|
---|
[8588] | 308 | angle = math.atan2(dy,dx)
|
---|
| 309 | return angle
|
---|
[8267] | 310 |
|
---|
[10729] | 311 |
|
---|
| 312 |
|
---|
[8588] | 313 | def angle_to_cd(angle):
|
---|
| 314 | """ Return Dutch Cardinal Direction estimation in 'one digit' of radian angle """
|
---|
| 315 |
|
---|
| 316 | # For easy conversion get positive degree
|
---|
| 317 | degrees = math.degrees(angle)
|
---|
[10729] | 318 | abs_degrees = 360 + degrees if degrees < 0 else degrees
|
---|
[8588] | 319 |
|
---|
| 320 | # Numbers can be confusing calculate from the 4 main directions
|
---|
| 321 | p = 22.5
|
---|
[10729] | 322 | if abs_degrees < p:
|
---|
| 323 | cd = "n"
|
---|
| 324 | elif abs_degrees < (90 - p):
|
---|
| 325 | cd = "no"
|
---|
| 326 | elif abs_degrees < (90 + p):
|
---|
| 327 | cd = "o"
|
---|
| 328 | elif abs_degrees < (180 - p):
|
---|
| 329 | cd = "zo"
|
---|
| 330 | elif abs_degrees < (180 + p):
|
---|
| 331 | cd = "z"
|
---|
| 332 | elif abs_degrees < (270 - p):
|
---|
| 333 | cd = "zw"
|
---|
| 334 | elif abs_degrees < (270 + p):
|
---|
| 335 | cd = "w"
|
---|
| 336 | elif abs_degrees < (360 - p):
|
---|
| 337 | cd = "nw"
|
---|
[8588] | 338 | else:
|
---|
[10729] | 339 | cd = "n"
|
---|
| 340 | return cd
|
---|
[8588] | 341 |
|
---|
| 342 |
|
---|
[10729] | 343 |
|
---|
| 344 | def cd_between_hosts(hostA, hostB, datadumps):
|
---|
| 345 | # Using RDNAP coordinates
|
---|
| 346 | dx = float(int(datadumps[hostA]['rdnap_x']) - int(datadumps[hostB]['rdnap_x'])) * -1
|
---|
| 347 | dy = float(int(datadumps[hostA]['rdnap_y']) - int(datadumps[hostB]['rdnap_y'])) * -1
|
---|
| 348 | return angle_to_cd(math.atan2(dx,dy))
|
---|
| 349 |
|
---|
| 350 | # GPS coordinates seems to fail somehow
|
---|
| 351 | #latA = float(datadumps[hostA]['latitude'])
|
---|
| 352 | #latB = float(datadumps[hostB]['latitude'])
|
---|
| 353 | #lonA = float(datadumps[hostA]['longitude'])
|
---|
| 354 | #lonB = float(datadumps[hostB]['longitude'])
|
---|
| 355 | #return angle_to_cd(angle_between_points(latA, latB, lonA, lonB))
|
---|
| 356 |
|
---|
| 357 |
|
---|
[8267] | 358 | def generate_title(nodelist):
|
---|
[8257] | 359 | """ Main overview page """
|
---|
[9283] | 360 | items = {'root' : "." }
|
---|
[10682] | 361 | def fl(spaces, line):
|
---|
| 362 | return (' ' * spaces) + line + '\n'
|
---|
| 363 |
|
---|
[8267] | 364 | output = """
|
---|
[8257] | 365 | <html>
|
---|
| 366 | <head>
|
---|
| 367 | <title>Wireless leiden Configurator - GFormat</title>
|
---|
| 368 | <style type="text/css">
|
---|
| 369 | th {background-color: #999999}
|
---|
| 370 | tr:nth-child(odd) {background-color: #cccccc}
|
---|
| 371 | tr:nth-child(even) {background-color: #ffffff}
|
---|
| 372 | th, td {padding: 0.1em 1em}
|
---|
| 373 | </style>
|
---|
| 374 | </head>
|
---|
| 375 | <body>
|
---|
| 376 | <center>
|
---|
[8259] | 377 | <form type="GET" action="%(root)s">
|
---|
[8257] | 378 | <input type="hidden" name="action" value="update">
|
---|
| 379 | <input type="submit" value="Update Configuration Database (SVN)">
|
---|
| 380 | </form>
|
---|
| 381 | <table>
|
---|
[10682] | 382 | <caption><h3>Wireless Leiden Configurator</h3></caption>
|
---|
[8257] | 383 | """ % items
|
---|
[8242] | 384 |
|
---|
[8296] | 385 | for node in nodelist:
|
---|
[8257] | 386 | items['node'] = node
|
---|
[10682] | 387 | output += fl(5, '<tr>') + fl(7,'<td><a href="%(root)s/%(node)s">%(node)s</a></td>' % items)
|
---|
[8257] | 388 | for config in files:
|
---|
| 389 | items['config'] = config
|
---|
[10682] | 390 | output += fl(7,'<td><a href="%(root)s/%(node)s/%(config)s">%(config)s</a></td>' % items)
|
---|
| 391 | output += fl(5, "</tr>")
|
---|
[8267] | 392 | output += """
|
---|
[8257] | 393 | </table>
|
---|
| 394 | <hr />
|
---|
| 395 | <em>%s</em>
|
---|
| 396 | </center>
|
---|
| 397 | </body>
|
---|
| 398 | </html>
|
---|
| 399 | """ % __version__
|
---|
[8242] | 400 |
|
---|
[8267] | 401 | return output
|
---|
[8257] | 402 |
|
---|
| 403 |
|
---|
[8267] | 404 |
|
---|
| 405 | def generate_node(node):
|
---|
[8257] | 406 | """ Print overview of all files available for node """
|
---|
[8267] | 407 | return "\n".join(files)
|
---|
[8242] | 408 |
|
---|
[10270] | 409 | def generate_node_overview(host):
|
---|
| 410 | """ Print overview of all files available for node """
|
---|
| 411 | datadump = get_yaml(host)
|
---|
| 412 | params = { 'host' : host }
|
---|
| 413 | output = "<em><a href='..'>Back to overview</a></em><hr />"
|
---|
| 414 | output += "<h2>Available files:</h2><ul>"
|
---|
| 415 | for cf in files:
|
---|
| 416 | params['cf'] = cf
|
---|
| 417 | output += '<li><a href="%(host)s/%(cf)s">%(cf)s</a></li>\n' % params
|
---|
| 418 | output += "</ul>"
|
---|
[8257] | 419 |
|
---|
[10270] | 420 | # Generate and connection listing
|
---|
| 421 | output += "<h2>Connected To:</h2><ul>"
|
---|
[10281] | 422 | (poel, errors) = make_relations()
|
---|
| 423 | for network, hosts in poel.iteritems():
|
---|
| 424 | if host in [x[0] for x in hosts]:
|
---|
| 425 | if len(hosts) == 1:
|
---|
| 426 | # Single not connected interface
|
---|
| 427 | continue
|
---|
| 428 | for remote,ifacedump in hosts:
|
---|
| 429 | if remote == host:
|
---|
| 430 | # This side of the interface
|
---|
| 431 | continue
|
---|
| 432 | params = { 'remote': remote, 'remote_ip' : ifacedump['ip'] }
|
---|
| 433 | output += '<li><a href="%(remote)s">%(remote)s</a> -- %(remote_ip)s</li>\n' % params
|
---|
[10270] | 434 | output += "</ul>"
|
---|
[10281] | 435 | output += "<h2>MOTD details:</h2><pre>" + generate_motd(datadump) + "</pre>"
|
---|
[8257] | 436 |
|
---|
[10270] | 437 | output += "<hr /><em><a href='..'>Back to overview</a></em>"
|
---|
| 438 | return output
|
---|
| 439 |
|
---|
| 440 |
|
---|
[10904] | 441 | def generate_header(datadump, ctag="#"):
|
---|
[8242] | 442 | return """\
|
---|
[9283] | 443 | %(ctag)s
|
---|
[8242] | 444 | %(ctag)s DO NOT EDIT - Automatically generated by 'gformat'
|
---|
[9283] | 445 | %(ctag)s
|
---|
[10904] | 446 | """ % { 'ctag' : ctag, 'date' : time.ctime(), 'host' : socket.gethostname(), 'revision' : datadump['autogen_revision'] }
|
---|
[8242] | 447 |
|
---|
[8257] | 448 |
|
---|
| 449 |
|
---|
[8242] | 450 | def parseaddr(s):
|
---|
[8257] | 451 | """ Process IPv4 CIDR notation addr to a (binary) number """
|
---|
[8242] | 452 | f = s.split('.')
|
---|
| 453 | return (long(f[0]) << 24L) + \
|
---|
| 454 | (long(f[1]) << 16L) + \
|
---|
| 455 | (long(f[2]) << 8L) + \
|
---|
| 456 | long(f[3])
|
---|
| 457 |
|
---|
[8257] | 458 |
|
---|
| 459 |
|
---|
[8242] | 460 | def showaddr(a):
|
---|
[8257] | 461 | """ Display IPv4 addr in (dotted) CIDR notation """
|
---|
[8242] | 462 | return "%d.%d.%d.%d" % ((a >> 24) & 0xff, (a >> 16) & 0xff, (a >> 8) & 0xff, a & 0xff)
|
---|
| 463 |
|
---|
[8257] | 464 |
|
---|
[8584] | 465 | def is_member(ip, mask, canidate):
|
---|
| 466 | """ Return True if canidate is part of ip/mask block"""
|
---|
[10729] | 467 | ip_addr = parseaddr(ip)
|
---|
| 468 | ip_canidate = parseaddr(canidate)
|
---|
[8584] | 469 | mask = int(mask)
|
---|
| 470 | ip_addr = ip_addr & ~((1 << (32 - mask)) - 1)
|
---|
| 471 | ip_canidate = ip_canidate & ~((1 << (32 - mask)) - 1)
|
---|
| 472 | return ip_addr == ip_canidate
|
---|
[8257] | 473 |
|
---|
[8584] | 474 |
|
---|
| 475 |
|
---|
[10410] | 476 | def cidr2netmask(netmask):
|
---|
[8257] | 477 | """ Given a 'netmask' return corresponding CIDR """
|
---|
[8242] | 478 | return showaddr(0xffffffff & (0xffffffff << (32 - int(netmask))))
|
---|
| 479 |
|
---|
[10410] | 480 | def get_network(addr, mask):
|
---|
| 481 | return showaddr(parseaddr(addr) & ~((1 << (32 - int(mask))) - 1))
|
---|
[8257] | 482 |
|
---|
| 483 |
|
---|
[10410] | 484 | def generate_dhcpd_conf(datadump):
|
---|
| 485 | """ Generate config file '/usr/local/etc/dhcpd.conf """
|
---|
[10904] | 486 | output = generate_header(datadump)
|
---|
[10410] | 487 | output += Template("""\
|
---|
| 488 | # option definitions common to all supported networks...
|
---|
| 489 | option domain-name "dhcp.{{ autogen_fqdn }}";
|
---|
| 490 |
|
---|
| 491 | default-lease-time 600;
|
---|
| 492 | max-lease-time 7200;
|
---|
| 493 |
|
---|
| 494 | # Use this to enble / disable dynamic dns updates globally.
|
---|
| 495 | #ddns-update-style none;
|
---|
| 496 |
|
---|
| 497 | # If this DHCP server is the official DHCP server for the local
|
---|
| 498 | # network, the authoritative directive should be uncommented.
|
---|
| 499 | authoritative;
|
---|
| 500 |
|
---|
| 501 | # Use this to send dhcp log messages to a different log file (you also
|
---|
| 502 | # have to hack syslog.conf to complete the redirection).
|
---|
| 503 | log-facility local7;
|
---|
| 504 |
|
---|
| 505 | #
|
---|
| 506 | # Interface definitions
|
---|
| 507 | #
|
---|
| 508 | \n""").render(datadump)
|
---|
| 509 |
|
---|
[10734] | 510 | dhcp_out = defaultdict(list)
|
---|
[10410] | 511 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[10734] | 512 | ifname = datadump[iface_key]['autogen_ifname']
|
---|
[10410] | 513 | if not datadump[iface_key].has_key('comment'):
|
---|
[10455] | 514 | datadump[iface_key]['comment'] = None
|
---|
[10890] | 515 | dhcp_out[ifname].append(" ## %(autogen_ifname)s - %(comment)s\n" % datadump[iface_key])
|
---|
[10410] | 516 |
|
---|
| 517 | (addr, mask) = datadump[iface_key]['ip'].split('/')
|
---|
[10882] | 518 | datadump[iface_key]['autogen_addr'] = addr
|
---|
| 519 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(mask)
|
---|
| 520 | datadump[iface_key]['autogen_subnet'] = get_network(addr, mask)
|
---|
[10889] | 521 | if dhcp_type(datadump[iface_key]) != DHCP_SERVER:
|
---|
| 522 | dhcp_out[ifname].append(" subnet %(autogen_subnet)s netmask %(autogen_netmask)s {\n ### not autoritive\n }\n" % \
|
---|
| 523 | datadump[iface_key])
|
---|
[10410] | 524 | continue
|
---|
| 525 |
|
---|
[10889] | 526 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
[10410] | 527 | dhcp_part = ".".join(addr.split('.')[0:3])
|
---|
[10882] | 528 | datadump[iface_key]['autogen_dhcp_start'] = dhcp_part + "." + dhcp_start
|
---|
| 529 | datadump[iface_key]['autogen_dhcp_stop'] = dhcp_part + "." + dhcp_stop
|
---|
[12480] | 530 |
|
---|
| 531 | # Assume the first 10 IPs could be used for static entries
|
---|
| 532 | if 'no_portal' in datadump:
|
---|
| 533 | fixed = 5
|
---|
| 534 | for mac in datadump['no_portal']:
|
---|
| 535 | dhcp_out[ifname].append("""\
|
---|
| 536 | host fixed-%(ifname)s-%(fixed)s {
|
---|
| 537 | hardware ethernet %(mac)s;
|
---|
| 538 | fixed-address %(prefix)s.%(fixed)s;
|
---|
| 539 | }
|
---|
| 540 | """ % { 'ifname' : ifname, 'mac' : mac, 'prefix': dhcp_part, 'fixed' : fixed })
|
---|
| 541 | fixed += 1
|
---|
| 542 |
|
---|
[10734] | 543 | dhcp_out[ifname].append("""\
|
---|
[10882] | 544 | subnet %(autogen_subnet)s netmask %(autogen_netmask)s {
|
---|
| 545 | range %(autogen_dhcp_start)s %(autogen_dhcp_stop)s;
|
---|
| 546 | option routers %(autogen_addr)s;
|
---|
| 547 | option domain-name-servers %(autogen_addr)s;
|
---|
[10734] | 548 | }
|
---|
| 549 | """ % datadump[iface_key])
|
---|
[10410] | 550 |
|
---|
[10734] | 551 | for ifname,value in dhcp_out.iteritems():
|
---|
| 552 | output += ("shared-network %s {\n" % ifname) + ''.join(value) + '}\n\n'
|
---|
[10410] | 553 | return output
|
---|
| 554 |
|
---|
| 555 |
|
---|
| 556 |
|
---|
[8242] | 557 | def generate_dnsmasq_conf(datadump):
|
---|
[8257] | 558 | """ Generate configuration file '/usr/local/etc/dnsmasq.conf' """
|
---|
[10904] | 559 | output = generate_header(datadump)
|
---|
[10368] | 560 | output += Template("""\
|
---|
[9283] | 561 | # DHCP server options
|
---|
[8242] | 562 | dhcp-authoritative
|
---|
| 563 | dhcp-fqdn
|
---|
[10391] | 564 | domain=dhcp.{{ autogen_fqdn }}
|
---|
[8242] | 565 | domain-needed
|
---|
| 566 | expand-hosts
|
---|
[10120] | 567 | log-async=100
|
---|
[8242] | 568 |
|
---|
| 569 | # Low memory footprint
|
---|
| 570 | cache-size=10000
|
---|
| 571 |
|
---|
[10368] | 572 | \n""").render(datadump)
|
---|
| 573 |
|
---|
[10281] | 574 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[8262] | 575 | if not datadump[iface_key].has_key('comment'):
|
---|
[10455] | 576 | datadump[iface_key]['comment'] = None
|
---|
[10890] | 577 | output += "## %(autogen_ifname)s - %(comment)s\n" % datadump[iface_key]
|
---|
[8242] | 578 |
|
---|
[10889] | 579 | if dhcp_type(datadump[iface_key]) != DHCP_SERVER:
|
---|
[8242] | 580 | output += "# not autoritive\n\n"
|
---|
| 581 | continue
|
---|
| 582 |
|
---|
[10889] | 583 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
| 584 | (ip, cidr) = datadump[iface_key]['ip'].split('/')
|
---|
| 585 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(cidr)
|
---|
| 586 |
|
---|
[8242] | 587 | dhcp_part = ".".join(ip.split('.')[0:3])
|
---|
[10882] | 588 | datadump[iface_key]['autogen_dhcp_start'] = dhcp_part + "." + dhcp_start
|
---|
| 589 | datadump[iface_key]['autogen_dhcp_stop'] = dhcp_part + "." + dhcp_stop
|
---|
[10890] | 590 | output += "dhcp-range=%(autogen_ifname)s,%(autogen_dhcp_start)s,%(autogen_dhcp_stop)s,%(autogen_netmask)s,24h\n\n" % datadump[iface_key]
|
---|
[9283] | 591 |
|
---|
[8242] | 592 | return output
|
---|
| 593 |
|
---|
[8257] | 594 |
|
---|
[10907] | 595 | def make_interface_list(datadump):
|
---|
| 596 | if interface_list_cache.has_key(datadump['autogen_item']):
|
---|
| 597 | return (interface_list_cache[datadump['autogen_item']])
|
---|
| 598 | # lo0 configuration:
|
---|
| 599 | # - 172.32.255.1/32 is the proxy.wleiden.net deflector
|
---|
| 600 | # - masterip is special as it needs to be assigned to at
|
---|
| 601 | # least one interface, so if not used assign to lo0
|
---|
| 602 | addrs_list = { 'lo0' : [("127.0.0.1/8", "LocalHost"), ("172.31.255.1/32","Proxy IP")] }
|
---|
| 603 | dhclient_if = {'lo0' : False}
|
---|
| 604 |
|
---|
| 605 | # XXX: Find some way of send this output nicely
|
---|
| 606 | output = ''
|
---|
| 607 |
|
---|
| 608 | masterip_used = False
|
---|
| 609 | for iface_key in datadump['autogen_iface_keys']:
|
---|
| 610 | if datadump[iface_key]['ip'].startswith(datadump['masterip']):
|
---|
| 611 | masterip_used = True
|
---|
| 612 | break
|
---|
| 613 | if not masterip_used:
|
---|
| 614 | addrs_list['lo0'].append((datadump['masterip'] + "/32", 'Master IP Not used in interface'))
|
---|
| 615 |
|
---|
| 616 | for iface_key in datadump['autogen_iface_keys']:
|
---|
| 617 | ifacedump = datadump[iface_key]
|
---|
| 618 | ifname = ifacedump['autogen_ifname']
|
---|
| 619 |
|
---|
| 620 | # Flag dhclient is possible
|
---|
[11739] | 621 | if not dhclient_if.has_key(ifname) or dhclient_if[ifname] == False:
|
---|
[11736] | 622 | dhclient_if[ifname] = dhcp_type(ifacedump) == DHCP_CLIENT
|
---|
[10907] | 623 |
|
---|
| 624 | # Add interface IP to list
|
---|
| 625 | item = (ifacedump['ip'], ifacedump['comment'])
|
---|
| 626 | if addrs_list.has_key(ifname):
|
---|
| 627 | addrs_list[ifname].append(item)
|
---|
| 628 | else:
|
---|
| 629 | addrs_list[ifname] = [item]
|
---|
| 630 |
|
---|
| 631 | # Alias only needs IP assignment for now, this might change if we
|
---|
| 632 | # are going to use virtual accesspoints
|
---|
| 633 | if "alias" in iface_key:
|
---|
| 634 | continue
|
---|
| 635 |
|
---|
| 636 | # XXX: Might want to deduct type directly from interface name
|
---|
| 637 | if ifacedump['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 638 | # Default to station (client) mode
|
---|
| 639 | ifacedump['autogen_wlanmode'] = "sta"
|
---|
| 640 | if ifacedump['mode'] in ['master', 'master-wds', 'ap', 'ap-wds']:
|
---|
| 641 | ifacedump['autogen_wlanmode'] = "ap"
|
---|
| 642 |
|
---|
| 643 | if not ifacedump.has_key('channel'):
|
---|
| 644 | if ifacedump['type'] == '11a':
|
---|
| 645 | ifacedump['channel'] = 36
|
---|
| 646 | else:
|
---|
| 647 | ifacedump['channel'] = 1
|
---|
| 648 |
|
---|
| 649 | # Allow special hacks at the back like wds and stuff
|
---|
| 650 | if not ifacedump.has_key('extra'):
|
---|
| 651 | ifacedump['autogen_extra'] = 'regdomain ETSI country NL'
|
---|
| 652 | else:
|
---|
| 653 | ifacedump['autogen_extra'] = ifacedump['extra']
|
---|
| 654 |
|
---|
| 655 | output += "wlans_%(autogen_ifbase)s='%(autogen_ifname)s'\n" % ifacedump
|
---|
| 656 | output += ("create_args_%(autogen_ifname)s='wlanmode %(autogen_wlanmode)s mode " +\
|
---|
[11740] | 657 | "%(type)s ssid %(ssid)s %(autogen_extra)s channel %(channel)s'\n") % ifacedump
|
---|
[13169] | 658 | output += "\n"
|
---|
[10907] | 659 |
|
---|
| 660 | elif ifacedump['type'] in ['ethernet', 'eth']:
|
---|
| 661 | # No special config needed besides IP
|
---|
[13169] | 662 | if ifacedump['autogen_bridge']:
|
---|
| 663 | output += "cloned_interfaces='%(autogen_ifname)s'\n" % ifacedump
|
---|
| 664 | output += "ifconfig_%s='addm %s up'\n" % (ifacedump['autogen_ifname'], ' addm '.join(ifacedump['autogen_bridge_interfaces']))
|
---|
| 665 | for member in ifacedump['autogen_bridge_interfaces']:
|
---|
| 666 | output += "ifconfig_%s='up'\n" % member
|
---|
| 667 | output += "\n"
|
---|
[10907] | 668 | else:
|
---|
| 669 | assert False, "Unknown type " + ifacedump['type']
|
---|
| 670 |
|
---|
| 671 | store = (addrs_list, dhclient_if, output)
|
---|
| 672 | interface_list_cache[datadump['autogen_item']] = store
|
---|
| 673 | return(store)
|
---|
| 674 |
|
---|
| 675 |
|
---|
| 676 |
|
---|
[8242] | 677 | def generate_rc_conf_local(datadump):
|
---|
[8257] | 678 | """ Generate configuration file '/etc/rc.conf.local' """
|
---|
[10860] | 679 | item = datadump['autogen_item']
|
---|
| 680 | if rc_conf_local_cache.has_key(item):
|
---|
| 681 | return rc_conf_local_cache[item]
|
---|
| 682 |
|
---|
[10455] | 683 | if not datadump.has_key('ileiden'):
|
---|
| 684 | datadump['autogen_ileiden_enable'] = False
|
---|
| 685 | else:
|
---|
| 686 | datadump['autogen_ileiden_enable'] = datadump['ileiden']
|
---|
[10110] | 687 |
|
---|
[10547] | 688 | datadump['autogen_ileiden_enable'] = switchFormat(datadump['autogen_ileiden_enable'])
|
---|
| 689 |
|
---|
[10860] | 690 | if not ileiden_proxies or not normal_proxies:
|
---|
| 691 | for proxy in get_proxylist():
|
---|
| 692 | proxydump = get_yaml(proxy)
|
---|
| 693 | if proxydump['ileiden']:
|
---|
| 694 | ileiden_proxies.append(proxydump)
|
---|
| 695 | else:
|
---|
| 696 | normal_proxies.append(proxydump)
|
---|
| 697 | for host in get_hybridlist():
|
---|
| 698 | hostdump = get_yaml(host)
|
---|
[13218] | 699 | if hostdump['status'] == 'up':
|
---|
| 700 | if hostdump['service_proxy_ileiden']:
|
---|
| 701 | ileiden_proxies.append(hostdump)
|
---|
| 702 | if hostdump['service_proxy_normal']:
|
---|
| 703 | normal_proxies.append(hostdump)
|
---|
[10461] | 704 |
|
---|
[10585] | 705 | datadump['autogen_ileiden_proxies'] = ileiden_proxies
|
---|
| 706 | datadump['autogen_normal_proxies'] = normal_proxies
|
---|
| 707 | datadump['autogen_ileiden_proxies_ips'] = ','.join([x['masterip'] for x in ileiden_proxies])
|
---|
[10112] | 708 | datadump['autogen_ileiden_proxies_names'] = ','.join([x['autogen_item'] for x in ileiden_proxies])
|
---|
[10585] | 709 | datadump['autogen_normal_proxies_ips'] = ','.join([x['masterip'] for x in normal_proxies])
|
---|
[10367] | 710 | datadump['autogen_normal_proxies_names'] = ','.join([x['autogen_item'] for x in normal_proxies])
|
---|
[10112] | 711 |
|
---|
[10904] | 712 | output = generate_header(datadump, "#");
|
---|
[10584] | 713 | output += render_template(datadump, """\
|
---|
[10391] | 714 | hostname='{{ autogen_fqdn }}'
|
---|
[10110] | 715 | location='{{ location }}'
|
---|
| 716 | nodetype="{{ nodetype }}"
|
---|
[9283] | 717 |
|
---|
[10459] | 718 | #
|
---|
| 719 | # Configured listings
|
---|
| 720 | #
|
---|
| 721 | captive_portal_whitelist=""
|
---|
| 722 | {% if nodetype == "Proxy" %}
|
---|
[10054] | 723 | #
|
---|
[10459] | 724 | # Proxy Configuration
|
---|
[10054] | 725 | #
|
---|
[10110] | 726 | {% if gateway -%}
|
---|
| 727 | defaultrouter="{{ gateway }}"
|
---|
| 728 | {% else -%}
|
---|
| 729 | #defaultrouter="NOTSET"
|
---|
| 730 | {% endif -%}
|
---|
| 731 | internalif="{{ internalif }}"
|
---|
[10112] | 732 | ileiden_enable="{{ autogen_ileiden_enable }}"
|
---|
| 733 | gateway_enable="{{ autogen_ileiden_enable }}"
|
---|
[10238] | 734 | pf_enable="yes"
|
---|
[10302] | 735 | pf_rules="/etc/pf.conf"
|
---|
[10455] | 736 | {% if autogen_ileiden_enable -%}
|
---|
[10234] | 737 | pf_flags="-D ext_if={{ externalif }} -D int_if={{ internalif }} -D publicnat={80,443}"
|
---|
[10238] | 738 | lvrouted_enable="{{ autogen_ileiden_enable }}"
|
---|
| 739 | lvrouted_flags="-u -s s00p3rs3kr3t -m 28"
|
---|
| 740 | {% else -%}
|
---|
| 741 | pf_flags="-D ext_if={{ externalif }} -D int_if={{ internalif }} -D publicnat={0}"
|
---|
[10310] | 742 | {% endif -%}
|
---|
[10238] | 743 | {% if internalroute -%}
|
---|
| 744 | static_routes="wleiden"
|
---|
| 745 | route_wleiden="-net 172.16.0.0/12 {{ internalroute }}"
|
---|
[10110] | 746 | {% endif -%}
|
---|
[10054] | 747 |
|
---|
[10584] | 748 | {% elif nodetype == "Hybrid" %}
|
---|
| 749 | #
|
---|
| 750 | # Hybrid Configuration
|
---|
| 751 | #
|
---|
[13305] | 752 | list_ileiden_proxies="
|
---|
| 753 | {% for item in autogen_ileiden_proxies -%}
|
---|
| 754 | {{ "%-16s"|format(item.masterip) }} # {{ item.autogen_realname }}
|
---|
| 755 | {% endfor -%}
|
---|
| 756 | "
|
---|
| 757 | list_normal_proxies="
|
---|
| 758 | {% for item in autogen_normal_proxies -%}
|
---|
| 759 | {{ "%-16s"|format(item.masterip) }} # {{ item.autogen_realname }}
|
---|
| 760 | {% endfor -%}
|
---|
| 761 | "
|
---|
| 762 |
|
---|
[10733] | 763 | captive_portal_interfaces="{{ autogen_dhcp_interfaces|join(',')|default('none', true) }}"
|
---|
[10584] | 764 | externalif="{{ externalif|default('vr0', true) }}"
|
---|
| 765 | masterip="{{ masterip }}"
|
---|
| 766 |
|
---|
| 767 | # Defined services
|
---|
| 768 | service_proxy_ileiden="{{ service_proxy_ileiden|yesorno }}"
|
---|
| 769 | service_proxy_normal="{{ service_proxy_normal|yesorno }}"
|
---|
| 770 | service_accesspoint="{{ service_accesspoint|yesorno }}"
|
---|
[10748] | 771 | service_incoming_rdr="{{ service_incoming_rdr|yesorno }}"
|
---|
[11538] | 772 | service_concentrator="{{ service_concentrator|yesorno }}"
|
---|
[10584] | 773 | #
|
---|
[10459] | 774 |
|
---|
[11540] | 775 | {% if service_proxy_ileiden %}
|
---|
[10584] | 776 | pf_rules="/etc/pf.hybrid.conf"
|
---|
[11540] | 777 | {% if service_concentrator %}
|
---|
[11541] | 778 | pf_flags="-D ext_if=$externalif -D ext_if_net=$externalif:network -D inet_if=tun0 -D inet_ip='(tun0)' -D masterip=$masterip"
|
---|
[11540] | 779 | {% else %}
|
---|
| 780 | pf_flags="-D ext_if=$externalif -D ext_if_net=$externalif:network -D inet_if=$externalif -D inet_ip='($externalif:0)' -D masterip=$masterip"
|
---|
| 781 | {% endif %}
|
---|
[10587] | 782 | pf_flags="$pf_flags -D publicnat=80,443"
|
---|
[12247] | 783 | lvrouted_flags="$lvrouted_flags -g"
|
---|
[10748] | 784 | {% elif service_proxy_normal or service_incoming_rdr %}
|
---|
[10649] | 785 | pf_rules="/etc/pf.hybrid.conf"
|
---|
[10587] | 786 | pf_flags="-D ext_if=$externalif -D ext_if_net=$externalif:network -D masterip=$masterip"
|
---|
[10649] | 787 | pf_flags="$pf_flags -D publicnat=0"
|
---|
[13305] | 788 | lvrouted_flags="$lvrouted_flags -z `make_list "$list_ileiden_proxies" ","`"
|
---|
[10649] | 789 | named_setfib="1"
|
---|
| 790 | tinyproxy_setfib="1"
|
---|
| 791 | dnsmasq_setfib="1"
|
---|
[10698] | 792 | sshd_setfib="1"
|
---|
[10584] | 793 | {% else %}
|
---|
[10983] | 794 | named_auto_forward_only="YES"
|
---|
[10584] | 795 | pf_rules="/etc/pf.node.conf"
|
---|
[10587] | 796 | pf_flags=""
|
---|
[13305] | 797 | lvrouted_flags="$lvrouted_flags -z `make_list "$list_ileiden_proxies" ","`"
|
---|
[10584] | 798 | {% endif %}
|
---|
[11539] | 799 | {% if service_concentrator %}
|
---|
| 800 | # Do mind installing certificates is NOT done automatically for security reasons
|
---|
| 801 | openvpn_enable="YES"
|
---|
| 802 | openvpn_configfile="/usr/local/etc/openvpn/client.conf"
|
---|
| 803 | {% endif %}
|
---|
[10459] | 804 |
|
---|
[10584] | 805 | {% if service_proxy_normal %}
|
---|
| 806 | tinyproxy_enable="yes"
|
---|
| 807 | {% else %}
|
---|
| 808 | pen_wrapper_enable="yes"
|
---|
| 809 | {% endif %}
|
---|
[10460] | 810 |
|
---|
[10584] | 811 | {% if service_accesspoint %}
|
---|
| 812 | pf_flags="$pf_flags -D captive_portal_interfaces=$captive_portal_interfaces"
|
---|
| 813 | {% endif %}
|
---|
[10459] | 814 |
|
---|
[10584] | 815 | {% if board == "ALIX2" %}
|
---|
| 816 | #
|
---|
| 817 | # ''Fat'' configuration, board has 256MB RAM
|
---|
| 818 | #
|
---|
| 819 | dnsmasq_enable="NO"
|
---|
| 820 | named_enable="YES"
|
---|
[10732] | 821 | {% if autogen_dhcp_interfaces -%}
|
---|
[10584] | 822 | dhcpd_enable="YES"
|
---|
[10732] | 823 | dhcpd_flags="$dhcpd_flags {{ autogen_dhcp_interfaces|join(' ') }}"
|
---|
| 824 | {% endif -%}
|
---|
[10584] | 825 | {% endif -%}
|
---|
[10459] | 826 |
|
---|
[10823] | 827 | {% if gateway %}
|
---|
[10584] | 828 | defaultrouter="{{ gateway }}"
|
---|
| 829 | {% endif %}
|
---|
| 830 | {% elif nodetype == "CNode" %}
|
---|
[10459] | 831 | #
|
---|
[10054] | 832 | # NODE iLeiden Configuration
|
---|
[10112] | 833 | #
|
---|
[10585] | 834 |
|
---|
[13305] | 835 | # iLeiden Proxies {{ autogen_ileiden_proxies_names }}
|
---|
| 836 | list_ileiden_proxies="{{ autogen_ileiden_proxies_ips }}"
|
---|
| 837 | # normal Proxies {{ autogen_normal_proxies_names }}
|
---|
| 838 | list_normal_proxies="{{ autogen_normal_proxies_ips }}"
|
---|
| 839 |
|
---|
[10732] | 840 | captive_portal_interfaces="{{ autogen_dhcp_interfaces|join(',') }}"
|
---|
[10367] | 841 |
|
---|
[13305] | 842 | lvrouted_flags="-u -s s00p3rs3kr3t -m 28 -z $list_ileiden_proxies"
|
---|
[10110] | 843 | {% endif %}
|
---|
| 844 |
|
---|
[10584] | 845 | #
|
---|
| 846 | # Interface definitions
|
---|
| 847 | #\n
|
---|
| 848 | """)
|
---|
| 849 |
|
---|
[10907] | 850 | (addrs_list, dhclient_if, extra_ouput) = make_interface_list(datadump)
|
---|
[13169] | 851 | output += extra_ouput.strip() + "\n"
|
---|
[8242] | 852 |
|
---|
[9283] | 853 | # Print IP address which needs to be assigned over here
|
---|
[8242] | 854 | output += "\n"
|
---|
| 855 | for iface,addrs in sorted(addrs_list.iteritems()):
|
---|
[10079] | 856 | for addr, comment in sorted(addrs,key=lambda x: parseaddr(x[0].split('/')[0])):
|
---|
[9808] | 857 | output += "# %s || %s || %s\n" % (iface, addr, comment)
|
---|
[8242] | 858 |
|
---|
[10366] | 859 | # Write DHCLIENT entry
|
---|
| 860 | if dhclient_if[iface]:
|
---|
| 861 | output += "ifconfig_%s='SYNCDHCP'\n\n" % (iface)
|
---|
[11739] | 862 |
|
---|
| 863 | # Make sure the external address is always first as this is needed in the
|
---|
| 864 | # firewall setup
|
---|
| 865 | addrs = sorted(
|
---|
| 866 | [x for x in addrs if not '0.0.0.0' in x[0]],
|
---|
| 867 | key=lambda x: x[0].split('.')[0],
|
---|
| 868 | cmp=lambda x,y: cmp(1 if x == '172' else 0, 1 if y == '172' else 0)
|
---|
| 869 | )
|
---|
| 870 | addr_str = " ".join([x[0] for x in addrs])
|
---|
| 871 | output += "ipv4_addrs_%s='%s'\n\n" % (iface, addr_str)
|
---|
[10366] | 872 |
|
---|
[10860] | 873 | rc_conf_local_cache[datadump['autogen_item']] = output
|
---|
[8242] | 874 | return output
|
---|
| 875 |
|
---|
[8257] | 876 |
|
---|
| 877 |
|
---|
[8242] | 878 |
|
---|
[8317] | 879 | def get_all_configs():
|
---|
| 880 | """ Get dict with key 'host' with all configs present """
|
---|
| 881 | configs = dict()
|
---|
| 882 | for host in get_hostlist():
|
---|
| 883 | datadump = get_yaml(host)
|
---|
| 884 | configs[host] = datadump
|
---|
| 885 | return configs
|
---|
| 886 |
|
---|
| 887 |
|
---|
[8319] | 888 | def get_interface_keys(config):
|
---|
| 889 | """ Quick hack to get all interface keys, later stage convert this to a iterator """
|
---|
[10054] | 890 | return sorted([elem for elem in config.keys() if (elem.startswith('iface_') and not "lo0" in elem)])
|
---|
[8317] | 891 |
|
---|
[8319] | 892 |
|
---|
[8317] | 893 | def get_used_ips(configs):
|
---|
| 894 | """ Return array of all IPs used in config files"""
|
---|
| 895 | ip_list = []
|
---|
[8319] | 896 | for config in configs:
|
---|
[8317] | 897 | ip_list.append(config['masterip'])
|
---|
[8319] | 898 | for iface_key in get_interface_keys(config):
|
---|
[8317] | 899 | l = config[iface_key]['ip']
|
---|
| 900 | addr, mask = l.split('/')
|
---|
| 901 | # Special case do not process
|
---|
[8332] | 902 | if valid_addr(addr):
|
---|
| 903 | ip_list.append(addr)
|
---|
| 904 | else:
|
---|
[9728] | 905 | logger.error("## IP '%s' in '%s' not valid" % (addr, config['nodename']))
|
---|
[8317] | 906 | return sorted(ip_list)
|
---|
| 907 |
|
---|
| 908 |
|
---|
| 909 |
|
---|
[10980] | 910 | def get_nameservers(max_servers=None):
|
---|
[10934] | 911 | if nameservers_cache:
|
---|
[10980] | 912 | return nameservers_cache[0:max_servers]
|
---|
[10934] | 913 |
|
---|
[10935] | 914 | for host in get_hybridlist():
|
---|
| 915 | hostdump = get_yaml(host)
|
---|
[10937] | 916 | if hostdump['status'] == 'up' and (hostdump['service_proxy_ileiden'] or hostdump['service_proxy_normal']):
|
---|
[10936] | 917 | nameservers_cache.append((hostdump['masterip'], hostdump['autogen_realname']))
|
---|
| 918 | for host in get_proxylist():
|
---|
| 919 | hostdump = get_yaml(host)
|
---|
[10937] | 920 | if hostdump['status'] == 'up':
|
---|
| 921 | nameservers_cache.append((hostdump['masterip'], hostdump['autogen_realname']))
|
---|
[10934] | 922 |
|
---|
[10980] | 923 | return nameservers_cache[0:max_servers]
|
---|
[10934] | 924 |
|
---|
| 925 |
|
---|
[8242] | 926 | def generate_resolv_conf(datadump):
|
---|
[8257] | 927 | """ Generate configuration file '/etc/resolv.conf' """
|
---|
[10468] | 928 | # XXX: This should properly going to be an datastructure soon
|
---|
[10904] | 929 | datadump['autogen_header'] = generate_header(datadump, "#")
|
---|
[10468] | 930 | datadump['autogen_edge_nameservers'] = ''
|
---|
| 931 |
|
---|
[10934] | 932 |
|
---|
[10936] | 933 | for masterip,realname in get_nameservers():
|
---|
[10934] | 934 | datadump['autogen_edge_nameservers'] += "nameserver %-15s # %s\n" % (masterip, realname)
|
---|
| 935 |
|
---|
[10468] | 936 | return Template("""\
|
---|
| 937 | {{ autogen_header }}
|
---|
[8242] | 938 | search wleiden.net
|
---|
[10468] | 939 |
|
---|
| 940 | # Try local (cache) first
|
---|
[10209] | 941 | nameserver 127.0.0.1
|
---|
[10468] | 942 |
|
---|
[10584] | 943 | {% if service_proxy_normal or service_proxy_ileiden or nodetype == 'Proxy' -%}
|
---|
[10053] | 944 | nameserver 8.8.8.8 # Google Public NameServer
|
---|
| 945 | nameserver 8.8.4.4 # Google Public NameServer
|
---|
[10468] | 946 | {% else -%}
|
---|
[10646] | 947 | # START DYNAMIC LIST - updated by /tools/nameserver-shuffle
|
---|
[10468] | 948 | {{ autogen_edge_nameservers }}
|
---|
| 949 | {% endif -%}
|
---|
| 950 | """).render(datadump)
|
---|
[10209] | 951 |
|
---|
[9283] | 952 |
|
---|
[8242] | 953 |
|
---|
[10654] | 954 | def generate_ntp_conf(datadump):
|
---|
| 955 | """ Generate configuration file '/etc/ntp.conf' """
|
---|
| 956 | # XXX: This should properly going to be an datastructure soon
|
---|
| 957 |
|
---|
[10904] | 958 | datadump['autogen_header'] = generate_header(datadump, "#")
|
---|
[10654] | 959 | datadump['autogen_ntp_servers'] = ''
|
---|
| 960 | for host in get_proxylist():
|
---|
| 961 | hostdump = get_yaml(host)
|
---|
| 962 | datadump['autogen_ntp_servers'] += "server %(masterip)-15s iburst maxpoll 9 # %(autogen_realname)s\n" % hostdump
|
---|
| 963 | for host in get_hybridlist():
|
---|
| 964 | hostdump = get_yaml(host)
|
---|
| 965 | if hostdump['service_proxy_ileiden'] or hostdump['service_proxy_normal']:
|
---|
| 966 | datadump['autogen_ntp_servers'] += "server %(masterip)-15s iburst maxpoll 9 # %(autogen_realname)s\n" % hostdump
|
---|
| 967 |
|
---|
| 968 | return Template("""\
|
---|
| 969 | {{ autogen_header }}
|
---|
| 970 |
|
---|
| 971 | {% if service_proxy_normal or service_proxy_ileiden or nodetype == 'Proxy' -%}
|
---|
| 972 | # Machine hooked to internet.
|
---|
| 973 | server 0.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 974 | server 1.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 975 | server 2.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 976 | server 3.nl.pool.ntp.org iburst maxpoll 9
|
---|
| 977 | {% else -%}
|
---|
| 978 | # Local Wireless Leiden NTP Servers.
|
---|
| 979 | server 0.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 980 | server 1.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 981 | server 2.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 982 | server 3.pool.ntp.wleiden.net iburst maxpoll 9
|
---|
| 983 |
|
---|
| 984 | # All the configured NTP servers
|
---|
| 985 | {{ autogen_ntp_servers }}
|
---|
| 986 | {% endif %}
|
---|
| 987 |
|
---|
| 988 | # If a server loses sync with all upstream servers, NTP clients
|
---|
| 989 | # no longer follow that server. The local clock can be configured
|
---|
| 990 | # to provide a time source when this happens, but it should usually
|
---|
| 991 | # be configured on just one server on a network. For more details see
|
---|
| 992 | # http://support.ntp.org/bin/view/Support/UndisciplinedLocalClock
|
---|
| 993 | # The use of Orphan Mode may be preferable.
|
---|
| 994 | #
|
---|
| 995 | server 127.127.1.0
|
---|
| 996 | fudge 127.127.1.0 stratum 10
|
---|
| 997 | """).render(datadump)
|
---|
| 998 |
|
---|
| 999 |
|
---|
[10705] | 1000 | def generate_pf_hybrid_conf_local(datadump):
|
---|
| 1001 | """ Generate configuration file '/etc/pf.hybrid.conf.local' """
|
---|
[10904] | 1002 | datadump['autogen_header'] = generate_header(datadump, "#")
|
---|
[10705] | 1003 | return Template("""\
|
---|
| 1004 | {{ autogen_header }}
|
---|
[10654] | 1005 |
|
---|
[10705] | 1006 | # Redirect some internal facing services outside (7)
|
---|
[10714] | 1007 | # INFO: {{ rdr_rules|count }} rdr_rules (outside to internal redirect rules) defined.
|
---|
[10715] | 1008 | {% for protocol, src_port,dest_ip,dest_port in rdr_rules -%}
|
---|
| 1009 | rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ dest_ip }} port {{ dest_port }}
|
---|
[10714] | 1010 | {% endfor -%}
|
---|
[10705] | 1011 | """).render(datadump)
|
---|
| 1012 |
|
---|
[10069] | 1013 | def generate_motd(datadump):
|
---|
| 1014 | """ Generate configuration file '/etc/motd' """
|
---|
[10568] | 1015 | output = Template("""\
|
---|
[10627] | 1016 | FreeBSD run ``service motd onestart'' to make me look normal
|
---|
[8242] | 1017 |
|
---|
[10568] | 1018 | WWW: {{ autogen_fqdn }} - http://www.wirelessleiden.nl
|
---|
| 1019 | Loc: {{ location }}
|
---|
[8257] | 1020 |
|
---|
[10568] | 1021 | Services:
|
---|
| 1022 | {% if board == "ALIX2" -%}
|
---|
[10906] | 1023 | {{" -"}} Core Node ({{ board }})
|
---|
[10568] | 1024 | {% else -%}
|
---|
[10906] | 1025 | {{" -"}} Hulp Node ({{ board }})
|
---|
[10568] | 1026 | {% endif -%}
|
---|
[10584] | 1027 | {% if service_proxy_normal -%}
|
---|
[10906] | 1028 | {{" -"}} Normal Proxy
|
---|
[10568] | 1029 | {% endif -%}
|
---|
[10584] | 1030 | {% if service_proxy_ileiden -%}
|
---|
[10906] | 1031 | {{" -"}} iLeiden Proxy
|
---|
[10748] | 1032 | {% endif -%}
|
---|
| 1033 | {% if service_incoming_rdr -%}
|
---|
[10906] | 1034 | {{" -"}} Incoming port redirects
|
---|
[10568] | 1035 | {% endif %}
|
---|
[10626] | 1036 | Interlinks:\n
|
---|
[10568] | 1037 | """).render(datadump)
|
---|
[10069] | 1038 |
|
---|
[10907] | 1039 | (addrs_list, dhclient_if, extra_ouput) = make_interface_list(datadump)
|
---|
| 1040 | # Just nasty hack to make the formatting looks nice
|
---|
| 1041 | iface_len = max(map(len,addrs_list.keys()))
|
---|
| 1042 | addr_len = max(map(len,[x[0] for x in [x[0] for x in addrs_list.values()]]))
|
---|
| 1043 | for iface,addrs in sorted(addrs_list.iteritems()):
|
---|
| 1044 | if iface in ['lo0']:
|
---|
| 1045 | continue
|
---|
| 1046 | for addr, comment in sorted(addrs,key=lambda x: parseaddr(x[0].split('/')[0])):
|
---|
| 1047 | output += " - %s || %s || %s\n" % (iface.ljust(iface_len), addr.ljust(addr_len), comment)
|
---|
| 1048 |
|
---|
| 1049 | output += '\n'
|
---|
[10069] | 1050 | output += """\
|
---|
| 1051 | Attached bridges:
|
---|
| 1052 | """
|
---|
[10907] | 1053 | has_item = False
|
---|
[10069] | 1054 | for iface_key in datadump['autogen_iface_keys']:
|
---|
| 1055 | ifacedump = datadump[iface_key]
|
---|
| 1056 | if ifacedump.has_key('ns_ip'):
|
---|
[12490] | 1057 | ifacedump['autogen_ns_ip'] = ifacedump['ns_ip'].split('/')[0]
|
---|
[10907] | 1058 | has_item = True
|
---|
[12490] | 1059 | output += " - %(autogen_ifname)s || %(mode)s || https://%(autogen_ns_ip)s\n" % ifacedump
|
---|
[10907] | 1060 | if not has_item:
|
---|
| 1061 | output += " - none\n"
|
---|
[10069] | 1062 |
|
---|
| 1063 | return output
|
---|
| 1064 |
|
---|
| 1065 |
|
---|
[8267] | 1066 | def format_yaml_value(value):
|
---|
| 1067 | """ Get yaml value in right syntax for outputting """
|
---|
| 1068 | if isinstance(value,str):
|
---|
[10049] | 1069 | output = '"%s"' % value
|
---|
[8267] | 1070 | else:
|
---|
| 1071 | output = value
|
---|
[9283] | 1072 | return output
|
---|
[8267] | 1073 |
|
---|
| 1074 |
|
---|
| 1075 |
|
---|
| 1076 | def format_wleiden_yaml(datadump):
|
---|
[8242] | 1077 | """ Special formatting to ensure it is editable"""
|
---|
[9283] | 1078 | output = "# Genesis config yaml style\n"
|
---|
[8262] | 1079 | output += "# vim:ts=2:et:sw=2:ai\n"
|
---|
[8242] | 1080 | output += "#\n"
|
---|
| 1081 | iface_keys = [elem for elem in datadump.keys() if elem.startswith('iface_')]
|
---|
| 1082 | for key in sorted(set(datadump.keys()) - set(iface_keys)):
|
---|
[10714] | 1083 | if key == 'rdr_rules':
|
---|
| 1084 | output += '%-10s:\n' % 'rdr_rules'
|
---|
| 1085 | for rdr_rule in datadump[key]:
|
---|
| 1086 | output += '- %s\n' % rdr_rule
|
---|
| 1087 | else:
|
---|
| 1088 | output += "%-10s: %s\n" % (key, format_yaml_value(datadump[key]))
|
---|
[9283] | 1089 |
|
---|
[8242] | 1090 | output += "\n\n"
|
---|
[9283] | 1091 |
|
---|
[10881] | 1092 | # Format (key, required)
|
---|
| 1093 | key_order = (
|
---|
| 1094 | ('comment', True),
|
---|
| 1095 | ('ip', True),
|
---|
| 1096 | ('desc', True),
|
---|
| 1097 | ('sdesc', True),
|
---|
| 1098 | ('mode', True),
|
---|
| 1099 | ('type', True),
|
---|
| 1100 | ('extra_type', False),
|
---|
| 1101 | ('channel', False),
|
---|
| 1102 | ('ssid', False),
|
---|
[13079] | 1103 | ('wlan_mac', False),
|
---|
[10881] | 1104 | ('dhcp', True),
|
---|
| 1105 | ('compass', False),
|
---|
| 1106 | ('distance', False),
|
---|
| 1107 | ('ns_ip', False),
|
---|
[13246] | 1108 | ('repeater_ip', False),
|
---|
[10881] | 1109 | ('bullet2_ip', False),
|
---|
| 1110 | ('ns_mac', False),
|
---|
| 1111 | ('bullet2_mac', False),
|
---|
| 1112 | ('ns_type', False),
|
---|
[10892] | 1113 | ('bridge_type', False),
|
---|
[13169] | 1114 | ('members', True),
|
---|
[10881] | 1115 | ('status', True),
|
---|
| 1116 | )
|
---|
[8272] | 1117 |
|
---|
[8242] | 1118 | for iface_key in sorted(iface_keys):
|
---|
[10881] | 1119 | try:
|
---|
| 1120 | remainder = set(datadump[iface_key].keys()) - set([x[0] for x in key_order])
|
---|
| 1121 | if remainder:
|
---|
| 1122 | raise KeyError("invalid keys: %s" % remainder)
|
---|
[8242] | 1123 |
|
---|
[10881] | 1124 | output += "%s:\n" % iface_key
|
---|
| 1125 | for key,required in key_order:
|
---|
| 1126 | if datadump[iface_key].has_key(key):
|
---|
| 1127 | output += " %-11s: %s\n" % (key, format_yaml_value(datadump[iface_key][key]))
|
---|
| 1128 | output += "\n\n"
|
---|
| 1129 | except Exception as e:
|
---|
| 1130 | print "# Error while processing interface %s" % iface_key
|
---|
| 1131 | raise
|
---|
| 1132 |
|
---|
[8242] | 1133 | return output
|
---|
| 1134 |
|
---|
| 1135 |
|
---|
[8257] | 1136 |
|
---|
[10067] | 1137 | def generate_wleiden_yaml(datadump, header=True):
|
---|
[8267] | 1138 | """ Generate (petty) version of wleiden.yaml"""
|
---|
[10904] | 1139 | output = generate_header(datadump, "#") if header else ''
|
---|
| 1140 |
|
---|
[10053] | 1141 | for key in datadump.keys():
|
---|
| 1142 | if key.startswith('autogen_'):
|
---|
| 1143 | del datadump[key]
|
---|
[10054] | 1144 | # Interface autogen cleanups
|
---|
| 1145 | elif type(datadump[key]) == dict:
|
---|
| 1146 | for key2 in datadump[key].keys():
|
---|
| 1147 | if key2.startswith('autogen_'):
|
---|
| 1148 | del datadump[key][key2]
|
---|
| 1149 |
|
---|
[8267] | 1150 | output += format_wleiden_yaml(datadump)
|
---|
| 1151 | return output
|
---|
| 1152 |
|
---|
[12349] | 1153 | def generate_nanostation_config(datadump, iface, ns_type):
|
---|
[12441] | 1154 | #TODO(rvdz): Make sure the proper nanostation IP and subnet is set
|
---|
| 1155 | datadump['iface_%s' % iface]['ns_ip'] = datadump['iface_%s' % iface]['ns_ip'].split('/')[0]
|
---|
| 1156 |
|
---|
[12349] | 1157 | datadump.update(datadump['iface_%s' % iface])
|
---|
[8267] | 1158 |
|
---|
[12349] | 1159 | return open(os.path.join(os.path.dirname(__file__), 'ns5m.cfg.tmpl'),'r').read() % datadump
|
---|
| 1160 |
|
---|
[8588] | 1161 | def generate_yaml(datadump):
|
---|
| 1162 | return generate_config(datadump['nodename'], "wleiden.yaml", datadump)
|
---|
[8267] | 1163 |
|
---|
[8588] | 1164 |
|
---|
[9283] | 1165 |
|
---|
[8298] | 1166 | def generate_config(node, config, datadump=None):
|
---|
[8257] | 1167 | """ Print configuration file 'config' of 'node' """
|
---|
[8267] | 1168 | output = ""
|
---|
[8242] | 1169 | try:
|
---|
| 1170 | # Load config file
|
---|
[8298] | 1171 | if datadump == None:
|
---|
| 1172 | datadump = get_yaml(node)
|
---|
[9283] | 1173 |
|
---|
[8242] | 1174 | if config == 'wleiden.yaml':
|
---|
[8267] | 1175 | output += generate_wleiden_yaml(datadump)
|
---|
| 1176 | elif config == 'authorized_keys':
|
---|
[10051] | 1177 | f = open(os.path.join(NODE_DIR,"global_keys"), 'r')
|
---|
[8267] | 1178 | output += f.read()
|
---|
[12433] | 1179 | node_keys = os.path.join(NODE_DIR,node,'authorized_keys')
|
---|
| 1180 | # Fetch local keys if existing
|
---|
| 1181 | if os.path.exists(node_keys):
|
---|
| 1182 | output += open(node_keys, 'r').read()
|
---|
[8242] | 1183 | f.close()
|
---|
| 1184 | elif config == 'dnsmasq.conf':
|
---|
[10281] | 1185 | output += generate_dnsmasq_conf(datadump)
|
---|
[10410] | 1186 | elif config == 'dhcpd.conf':
|
---|
| 1187 | output += generate_dhcpd_conf(datadump)
|
---|
[8242] | 1188 | elif config == 'rc.conf.local':
|
---|
[10281] | 1189 | output += generate_rc_conf_local(datadump)
|
---|
[8242] | 1190 | elif config == 'resolv.conf':
|
---|
[10281] | 1191 | output += generate_resolv_conf(datadump)
|
---|
[10654] | 1192 | elif config == 'ntp.conf':
|
---|
| 1193 | output += generate_ntp_conf(datadump)
|
---|
[10069] | 1194 | elif config == 'motd':
|
---|
[10281] | 1195 | output += generate_motd(datadump)
|
---|
[10705] | 1196 | elif config == 'pf.hybrid.conf.local':
|
---|
| 1197 | output += generate_pf_hybrid_conf_local(datadump)
|
---|
[12349] | 1198 | elif config.startswith('vr'):
|
---|
| 1199 | interface, ns_type = config.strip('.yaml').split('-')
|
---|
| 1200 | output += generate_nanostation_config(datadump, interface, ns_type)
|
---|
[8242] | 1201 | else:
|
---|
[9283] | 1202 | assert False, "Config not found!"
|
---|
[8242] | 1203 | except IOError, e:
|
---|
[8267] | 1204 | output += "[ERROR] Config file not found"
|
---|
| 1205 | return output
|
---|
[8242] | 1206 |
|
---|
| 1207 |
|
---|
[8257] | 1208 |
|
---|
[11426] | 1209 | def process_cgi_request(environ=os.environ):
|
---|
[8258] | 1210 | """ When calling from CGI """
|
---|
[11426] | 1211 | response_headers = []
|
---|
| 1212 | content_type = 'text/plain'
|
---|
| 1213 |
|
---|
[8258] | 1214 | # Update repository if requested
|
---|
[11427] | 1215 | form = urlparse.parse_qs(environ['QUERY_STRING']) if environ.has_key('QUERY_STRING') else None
|
---|
| 1216 | if form and form.has_key("action") and "update" in form["action"]:
|
---|
[11426] | 1217 | output = "[INFO] Updating subverion, please wait...\n"
|
---|
[12245] | 1218 | output += subprocess.Popen([SVN, 'cleanup', "%s/.." % NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0]
|
---|
| 1219 | output += subprocess.Popen([SVN, 'up', "%s/.." % NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0]
|
---|
[11426] | 1220 | output += "[INFO] All done, redirecting in 5 seconds"
|
---|
| 1221 | response_headers += [
|
---|
| 1222 | ('Refresh', '5; url=.'),
|
---|
| 1223 | ]
|
---|
[11533] | 1224 | reload_cache()
|
---|
[11426] | 1225 | else:
|
---|
| 1226 | base_uri = environ['PATH_INFO']
|
---|
| 1227 | uri = base_uri.strip('/').split('/')
|
---|
[9283] | 1228 |
|
---|
[11426] | 1229 | output = "Template Holder"
|
---|
| 1230 | if base_uri.endswith('/create/network.kml'):
|
---|
| 1231 | content_type='application/vnd.google-earth.kml+xml'
|
---|
| 1232 | output = make_network_kml.make_graph()
|
---|
[11444] | 1233 | elif base_uri.endswith('/api/get/nodeplanner.json'):
|
---|
| 1234 | content_type='application/json'
|
---|
| 1235 | output = make_network_kml.make_nodeplanner_json()
|
---|
[11426] | 1236 | elif not uri[0]:
|
---|
| 1237 | if is_text_request(environ):
|
---|
| 1238 | output = '\n'.join(get_hostlist())
|
---|
| 1239 | else:
|
---|
| 1240 | content_type = 'text/html'
|
---|
| 1241 | output = generate_title(get_hostlist())
|
---|
| 1242 | elif len(uri) == 1:
|
---|
| 1243 | if is_text_request(environ):
|
---|
| 1244 | output = generate_node(uri[0])
|
---|
| 1245 | else:
|
---|
| 1246 | content_type = 'text/html'
|
---|
| 1247 | output = generate_node_overview(uri[0])
|
---|
| 1248 | elif len(uri) == 2:
|
---|
| 1249 | output = generate_config(uri[0], uri[1])
|
---|
| 1250 | else:
|
---|
| 1251 | assert False, "Invalid option"
|
---|
[9283] | 1252 |
|
---|
[11426] | 1253 | # Return response
|
---|
| 1254 | response_headers += [
|
---|
| 1255 | ('Content-type', content_type),
|
---|
| 1256 | ('Content-Length', str(len(output))),
|
---|
| 1257 | ]
|
---|
| 1258 | return(response_headers, str(output))
|
---|
[10270] | 1259 |
|
---|
[10681] | 1260 |
|
---|
[10391] | 1261 | def get_realname(datadump):
|
---|
[10365] | 1262 | # Proxy naming convention is special, as the proxy name is also included in
|
---|
| 1263 | # the nodename, when it comes to the numbered proxies.
|
---|
[8588] | 1264 | if datadump['nodetype'] == 'Proxy':
|
---|
[10391] | 1265 | realname = datadump['nodetype'] + datadump['nodename'].replace('proxy','')
|
---|
[8588] | 1266 | else:
|
---|
| 1267 | # By default the full name is listed and also a shortname CNAME for easy use.
|
---|
[10391] | 1268 | realname = datadump['nodetype'] + datadump['nodename']
|
---|
| 1269 | return(realname)
|
---|
[8259] | 1270 |
|
---|
[9283] | 1271 |
|
---|
| 1272 |
|
---|
[10264] | 1273 | def make_dns(output_dir = 'dns', external = False):
|
---|
[8588] | 1274 | items = dict()
|
---|
[8598] | 1275 |
|
---|
[8588] | 1276 | # hostname is key, IP is value
|
---|
[10642] | 1277 | wleiden_zone = defaultdict(list)
|
---|
[8588] | 1278 | wleiden_cname = dict()
|
---|
[8598] | 1279 |
|
---|
[8588] | 1280 | pool = dict()
|
---|
| 1281 | for node in get_hostlist():
|
---|
| 1282 | datadump = get_yaml(node)
|
---|
[9283] | 1283 |
|
---|
[8588] | 1284 | # Proxy naming convention is special
|
---|
[10391] | 1285 | fqdn = datadump['autogen_realname']
|
---|
[10461] | 1286 | if datadump['nodetype'] in ['CNode', 'Hybrid']:
|
---|
[8588] | 1287 | wleiden_cname[datadump['nodename']] = fqdn
|
---|
[10730] | 1288 |
|
---|
| 1289 | if datadump.has_key('rdr_host'):
|
---|
| 1290 | remote_target = datadump['rdr_host']
|
---|
| 1291 | elif datadump.has_key('remote_access') and datadump['remote_access']:
|
---|
| 1292 | remote_target = datadump['remote_access'].split(':')[0]
|
---|
| 1293 | else:
|
---|
| 1294 | remote_target = None
|
---|
[8588] | 1295 |
|
---|
[10730] | 1296 | if remote_target:
|
---|
| 1297 | try:
|
---|
| 1298 | parseaddr(remote_target)
|
---|
| 1299 | wleiden_zone[datadump['nodename'] + '.gw'].append((remote_target, False))
|
---|
| 1300 | except (IndexError, ValueError):
|
---|
| 1301 | wleiden_cname[datadump['nodename'] + '.gw'] = remote_target + '.'
|
---|
| 1302 |
|
---|
| 1303 |
|
---|
[10655] | 1304 | wleiden_zone[fqdn].append((datadump['masterip'], True))
|
---|
[8588] | 1305 |
|
---|
[8598] | 1306 | # Hacking to get proper DHCP IPs and hostnames
|
---|
[8588] | 1307 | for iface_key in get_interface_keys(datadump):
|
---|
[10890] | 1308 | iface_name = iface_key.replace('_','-')
|
---|
[10410] | 1309 | (ip, cidr) = datadump[iface_key]['ip'].split('/')
|
---|
[8588] | 1310 | try:
|
---|
| 1311 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
[10882] | 1312 | datadump[iface_key]['autogen_netmask'] = cidr2netmask(cidr)
|
---|
[8588] | 1313 | dhcp_part = ".".join(ip.split('.')[0:3])
|
---|
| 1314 | if ip != datadump['masterip']:
|
---|
[10655] | 1315 | wleiden_zone["dhcp-gateway-%s.%s" % (iface_name, fqdn)].append((ip, False))
|
---|
[8588] | 1316 | for i in range(int(dhcp_start), int(dhcp_stop) + 1):
|
---|
[10655] | 1317 | wleiden_zone["dhcp-%s-%s.%s" % (i, iface_name, fqdn)].append(("%s.%s" % (dhcp_part, i), True))
|
---|
[10825] | 1318 | except (AttributeError, ValueError, KeyError):
|
---|
[8588] | 1319 | # First push it into a pool, to indentify the counter-part later on
|
---|
| 1320 | addr = parseaddr(ip)
|
---|
[10461] | 1321 | cidr = int(cidr)
|
---|
| 1322 | addr = addr & ~((1 << (32 - cidr)) - 1)
|
---|
[9283] | 1323 | if pool.has_key(addr):
|
---|
[8588] | 1324 | pool[addr] += [(iface_name, fqdn, ip)]
|
---|
[9283] | 1325 | else:
|
---|
[8588] | 1326 | pool[addr] = [(iface_name, fqdn, ip)]
|
---|
| 1327 | continue
|
---|
| 1328 |
|
---|
[9286] | 1329 |
|
---|
| 1330 |
|
---|
[9957] | 1331 | # WL uses an /29 to configure an interface. IP's are ordered like this:
|
---|
[9958] | 1332 | # MasterA (.1) -- DeviceA (.2) <<>> DeviceB (.3) --- SlaveB (.4)
|
---|
[9957] | 1333 |
|
---|
| 1334 | sn = lambda x: re.sub(r'(?i)^cnode','',x)
|
---|
| 1335 |
|
---|
[8598] | 1336 | # Automatic naming convention of interlinks namely 2 + remote.lower()
|
---|
[8588] | 1337 | for (key,value) in pool.iteritems():
|
---|
[9958] | 1338 | # Make sure they are sorted from low-ip to high-ip
|
---|
| 1339 | value = sorted(value, key=lambda x: parseaddr(x[2]))
|
---|
| 1340 |
|
---|
[8588] | 1341 | if len(value) == 1:
|
---|
| 1342 | (iface_name, fqdn, ip) = value[0]
|
---|
[10655] | 1343 | wleiden_zone["2unused-%s.%s" % (iface_name, fqdn)].append((ip, True))
|
---|
[9957] | 1344 |
|
---|
| 1345 | # Device DNS names
|
---|
| 1346 | if 'cnode' in fqdn.lower():
|
---|
[10655] | 1347 | wleiden_zone["d-at-%s.%s" % (iface_name, fqdn)].append((showaddr(parseaddr(ip) + 1), False))
|
---|
| 1348 | wleiden_cname["d-at-%s.%s" % (iface_name,sn(fqdn))] = "d-at-%s.%s" % ((iface_name, fqdn))
|
---|
[9957] | 1349 |
|
---|
[8588] | 1350 | elif len(value) == 2:
|
---|
| 1351 | (a_iface_name, a_fqdn, a_ip) = value[0]
|
---|
| 1352 | (b_iface_name, b_fqdn, b_ip) = value[1]
|
---|
[10655] | 1353 | wleiden_zone["2%s.%s" % (b_fqdn,a_fqdn)].append((a_ip, True))
|
---|
| 1354 | wleiden_zone["2%s.%s" % (a_fqdn,b_fqdn)].append((b_ip, True))
|
---|
[9957] | 1355 |
|
---|
| 1356 | # Device DNS names
|
---|
| 1357 | if 'cnode' in a_fqdn.lower() and 'cnode' in b_fqdn.lower():
|
---|
[10655] | 1358 | wleiden_zone["d-at-%s.%s" % (a_iface_name, a_fqdn)].append((showaddr(parseaddr(a_ip) + 1), False))
|
---|
| 1359 | wleiden_zone["d-at-%s.%s" % (b_iface_name, b_fqdn)].append((showaddr(parseaddr(b_ip) - 1), False))
|
---|
[9957] | 1360 | wleiden_cname["d-at-%s.%s" % (a_iface_name,sn(a_fqdn))] = "d-at-%s.%s" % (a_iface_name, a_fqdn)
|
---|
| 1361 | wleiden_cname["d-at-%s.%s" % (b_iface_name,sn(b_fqdn))] = "d-at-%s.%s" % (b_iface_name, b_fqdn)
|
---|
| 1362 | wleiden_cname["d2%s.%s" % (sn(b_fqdn),sn(a_fqdn))] = "d-at-%s.%s" % (a_iface_name, a_fqdn)
|
---|
| 1363 | wleiden_cname["d2%s.%s" % (sn(a_fqdn),sn(b_fqdn))] = "d-at-%s.%s" % (b_iface_name, b_fqdn)
|
---|
| 1364 |
|
---|
[8588] | 1365 | else:
|
---|
| 1366 | pool_members = [k[1] for k in value]
|
---|
| 1367 | for item in value:
|
---|
[9283] | 1368 | (iface_name, fqdn, ip) = item
|
---|
[10919] | 1369 | wleiden_zone["2ring.%s" % (fqdn)].append((ip, True))
|
---|
[8598] | 1370 |
|
---|
| 1371 | # Include static DNS entries
|
---|
| 1372 | # XXX: Should they override the autogenerated results?
|
---|
| 1373 | # XXX: Convert input to yaml more useable.
|
---|
| 1374 | # Format:
|
---|
| 1375 | ##; this is a comment
|
---|
| 1376 | ## roomburgh=CNodeRoomburgh1
|
---|
| 1377 | ## apkerk1.CNodeVosko=172.17.176.8 ;this as well
|
---|
[10642] | 1378 | dns_list = yaml.load(open(os.path.join(NODE_DIR,'../dns/staticDNS.yaml'),'r'))
|
---|
[9938] | 1379 |
|
---|
| 1380 | # Hack to allow special entries, for development
|
---|
[10642] | 1381 | wleiden_raw = {}
|
---|
[9938] | 1382 |
|
---|
[10642] | 1383 | for line in dns_list:
|
---|
[10660] | 1384 | reverse = False
|
---|
[10642] | 1385 | k, items = line.items()[0]
|
---|
[10660] | 1386 | if type(items) == dict:
|
---|
| 1387 | if items.has_key('reverse'):
|
---|
| 1388 | reverse = items['reverse']
|
---|
| 1389 | items = items['a']
|
---|
| 1390 | else:
|
---|
| 1391 | items = items['cname']
|
---|
| 1392 | items = [items] if type(items) != list else items
|
---|
[10642] | 1393 | for item in items:
|
---|
| 1394 | if item.startswith('IN '):
|
---|
| 1395 | wleiden_raw[k] = item
|
---|
| 1396 | elif valid_addr(item):
|
---|
[10660] | 1397 | wleiden_zone[k].append((item, reverse))
|
---|
[8598] | 1398 | else:
|
---|
[10642] | 1399 | wleiden_cname[k] = item
|
---|
[9283] | 1400 |
|
---|
[10986] | 1401 | # Hack to get dynamic pool listing
|
---|
| 1402 | def chunks(l, n):
|
---|
| 1403 | return [l[i:i+n] for i in range(0, len(l), n)]
|
---|
| 1404 |
|
---|
| 1405 | ntp_servers = [x[0] for x in get_nameservers()]
|
---|
| 1406 | for id, chunk in enumerate(chunks(ntp_servers,(len(ntp_servers)/4))):
|
---|
| 1407 | for ntp_server in chunk:
|
---|
| 1408 | wleiden_zone['%i.pool.ntp' % id].append((ntp_server, False))
|
---|
| 1409 |
|
---|
[8598] | 1410 | details = dict()
|
---|
| 1411 | # 24 updates a day allowed
|
---|
| 1412 | details['serial'] = time.strftime('%Y%m%d%H')
|
---|
| 1413 |
|
---|
[10264] | 1414 | if external:
|
---|
| 1415 | dns_masters = ['siteview.wirelessleiden.nl', 'ns1.vanderzwet.net']
|
---|
| 1416 | else:
|
---|
[10980] | 1417 | dns_masters = ['sunny.wleiden.net'] + ["%s.wleiden.net" % x[1] for x in get_nameservers(max_servers=3)]
|
---|
[10264] | 1418 |
|
---|
| 1419 | details['master'] = dns_masters[0]
|
---|
| 1420 | details['ns_servers'] = '\n'.join(['\tNS\t%s.' % x for x in dns_masters])
|
---|
| 1421 |
|
---|
[8598] | 1422 | dns_header = '''
|
---|
| 1423 | $TTL 3h
|
---|
[11725] | 1424 | %(zone)s. SOA %(master)s. beheer.lijst.wirelessleiden.nl. ( %(serial)s 15m 15m 1w 60s )
|
---|
[8598] | 1425 | ; Serial, Refresh, Retry, Expire, Neg. cache TTL
|
---|
| 1426 |
|
---|
[10264] | 1427 | %(ns_servers)s
|
---|
[8598] | 1428 | \n'''
|
---|
| 1429 |
|
---|
[9283] | 1430 |
|
---|
[10264] | 1431 | if not os.path.isdir(output_dir):
|
---|
| 1432 | os.makedirs(output_dir)
|
---|
[8598] | 1433 | details['zone'] = 'wleiden.net'
|
---|
[9284] | 1434 | f = open(os.path.join(output_dir,"db." + details['zone']), "w")
|
---|
[8598] | 1435 | f.write(dns_header % details)
|
---|
| 1436 |
|
---|
[10655] | 1437 | for host,items in wleiden_zone.iteritems():
|
---|
| 1438 | for ip,reverse in items:
|
---|
[10730] | 1439 | if ip not in ['0.0.0.0']:
|
---|
[10642] | 1440 | f.write("%s.wleiden.net. IN A %s \n" % (host.lower(), ip))
|
---|
[8588] | 1441 | for source,dest in wleiden_cname.iteritems():
|
---|
[10730] | 1442 | dest = dest if dest.endswith('.') else dest + ".wleiden.net."
|
---|
| 1443 | f.write("%s.wleiden.net. IN CNAME %s\n" % (source.lower(), dest.lower()))
|
---|
[9938] | 1444 | for source, dest in wleiden_raw.iteritems():
|
---|
| 1445 | f.write("%s.wleiden.net. %s\n" % (source, dest))
|
---|
[8588] | 1446 | f.close()
|
---|
[9283] | 1447 |
|
---|
[8598] | 1448 | # Create whole bunch of specific sub arpa zones. To keep it compliant
|
---|
| 1449 | for s in range(16,32):
|
---|
| 1450 | details['zone'] = '%i.172.in-addr.arpa' % s
|
---|
[9284] | 1451 | f = open(os.path.join(output_dir,"db." + details['zone']), "w")
|
---|
[8598] | 1452 | f.write(dns_header % details)
|
---|
[8588] | 1453 |
|
---|
[8598] | 1454 | #XXX: Not effient, fix to proper data structure and do checks at other
|
---|
| 1455 | # stages
|
---|
[10655] | 1456 | for host,items in wleiden_zone.iteritems():
|
---|
| 1457 | for ip,reverse in items:
|
---|
| 1458 | if not reverse:
|
---|
| 1459 | continue
|
---|
[10642] | 1460 | if valid_addr(ip):
|
---|
[10655] | 1461 | if valid_addr(ip):
|
---|
| 1462 | if int(ip.split('.')[1]) == s:
|
---|
| 1463 | rev_ip = '.'.join(reversed(ip.split('.')))
|
---|
| 1464 | f.write("%s.in-addr.arpa. IN PTR %s.wleiden.net.\n" % (rev_ip.lower(), host.lower()))
|
---|
[8598] | 1465 | f.close()
|
---|
[8588] | 1466 |
|
---|
[8598] | 1467 |
|
---|
[8259] | 1468 | def usage():
|
---|
[10567] | 1469 | print """Usage: %(prog)s <argument>
|
---|
| 1470 | Argument:
|
---|
| 1471 | \tstandalone [port] = Run configurator webserver [8000]
|
---|
| 1472 | \tdns [outputdir] = Generate BIND compliant zone files in dns [./dns]
|
---|
[11326] | 1473 | \tnagios-export [--heavy-load] = Generate basic nagios configuration file.
|
---|
[9589] | 1474 | \tfull-export = Generate yaml export script for heatmap.
|
---|
[10567] | 1475 | \tstatic [outputdir] = Generate all config files and store on disk
|
---|
| 1476 | \t with format ./<outputdir>/%%NODE%%/%%FILE%% [./static]
|
---|
[10872] | 1477 | \ttest <node> [<file>] = Receive output for certain node [all files].
|
---|
| 1478 | \ttest-cgi <node> <file> = Receive output of CGI script [all files].
|
---|
[10567] | 1479 | \tlist <status> <items> = List systems which have certain status
|
---|
[10563] | 1480 |
|
---|
[10567] | 1481 | Arguments:
|
---|
| 1482 | \t<node> = NodeName (example: HybridRick)
|
---|
| 1483 | \t<file> = %(files)s
|
---|
| 1484 | \t<status> = all|up|down|planned
|
---|
| 1485 | \t<items> = systems|nodes|proxies
|
---|
| 1486 |
|
---|
[10563] | 1487 | NOTE FOR DEVELOPERS; you can test your changes like this:
|
---|
| 1488 | BEFORE any changes in this code:
|
---|
| 1489 | $ ./gformat.py static /tmp/pre
|
---|
| 1490 | AFTER the changes:
|
---|
| 1491 | $ ./gformat.py static /tmp/post
|
---|
| 1492 | VIEW differences and VERIFY all are OK:
|
---|
[10564] | 1493 | $ diff -urI 'Generated' -r /tmp/pre /tmp/post
|
---|
[10567] | 1494 | """ % { 'prog' : sys.argv[0], 'files' : '|'.join(files) }
|
---|
[8259] | 1495 | exit(0)
|
---|
| 1496 |
|
---|
| 1497 |
|
---|
[11426] | 1498 | def is_text_request(environ=os.environ):
|
---|
[10107] | 1499 | """ Find out whether we are calling from the CLI or any text based CLI utility """
|
---|
| 1500 | try:
|
---|
[11426] | 1501 | return environ['HTTP_USER_AGENT'].split()[0] in ['curl', 'fetch', 'wget']
|
---|
[10107] | 1502 | except KeyError:
|
---|
| 1503 | return True
|
---|
[8259] | 1504 |
|
---|
[10547] | 1505 | def switchFormat(setting):
|
---|
| 1506 | if setting:
|
---|
| 1507 | return "YES"
|
---|
| 1508 | else:
|
---|
| 1509 | return "NO"
|
---|
| 1510 |
|
---|
[10885] | 1511 | def rlinput(prompt, prefill=''):
|
---|
| 1512 | import readline
|
---|
| 1513 | readline.set_startup_hook(lambda: readline.insert_text(prefill))
|
---|
| 1514 | try:
|
---|
| 1515 | return raw_input(prompt)
|
---|
| 1516 | finally:
|
---|
| 1517 | readline.set_startup_hook()
|
---|
| 1518 |
|
---|
| 1519 | def fix_conflict(left, right, default='i'):
|
---|
| 1520 | while True:
|
---|
| 1521 | print "## %-30s | %-30s" % (left, right)
|
---|
| 1522 | c = raw_input("## Solve Conflict (h for help) <l|r|e|i|> [%s]: " % default)
|
---|
| 1523 | if not c:
|
---|
| 1524 | c = default
|
---|
| 1525 |
|
---|
| 1526 | if c in ['l','1']:
|
---|
| 1527 | return left
|
---|
| 1528 | elif c in ['r','2']:
|
---|
| 1529 | return right
|
---|
| 1530 | elif c in ['e', '3']:
|
---|
| 1531 | return rlinput("Edit: ", "%30s | %30s" % (left, right))
|
---|
| 1532 | elif c in ['i', '4']:
|
---|
| 1533 | return None
|
---|
| 1534 | else:
|
---|
| 1535 | print "#ERROR: '%s' is invalid input (left, right, edit or ignore)!" % c
|
---|
| 1536 |
|
---|
[11427] | 1537 |
|
---|
| 1538 |
|
---|
| 1539 | def print_cgi_response(response_headers, output):
|
---|
| 1540 | """Could we not use some kind of wsgi wrapper to make this output?"""
|
---|
| 1541 | for header in response_headers:
|
---|
| 1542 | print "%s: %s" % header
|
---|
[11444] | 1543 | print
|
---|
[11427] | 1544 | print output
|
---|
| 1545 |
|
---|
| 1546 |
|
---|
[11534] | 1547 | def fill_cache():
|
---|
| 1548 | ''' Poor man re-loading of few cache items (the slow ones) '''
|
---|
| 1549 | for host in get_hostlist():
|
---|
[11535] | 1550 | get_yaml(host)
|
---|
[11427] | 1551 |
|
---|
[11534] | 1552 |
|
---|
| 1553 | def reload_cache():
|
---|
| 1554 | clear_cache()
|
---|
| 1555 | fill_cache()
|
---|
| 1556 |
|
---|
| 1557 |
|
---|
[8267] | 1558 | def main():
|
---|
| 1559 | """Hard working sub"""
|
---|
| 1560 | # Allow easy hacking using the CLI
|
---|
| 1561 | if not os.environ.has_key('PATH_INFO'):
|
---|
| 1562 | if len(sys.argv) < 2:
|
---|
| 1563 | usage()
|
---|
[9283] | 1564 |
|
---|
[8267] | 1565 | if sys.argv[1] == "standalone":
|
---|
| 1566 | import SocketServer
|
---|
| 1567 | import CGIHTTPServer
|
---|
[10105] | 1568 | # Hop to the right working directory.
|
---|
| 1569 | os.chdir(os.path.dirname(__file__))
|
---|
[8267] | 1570 | try:
|
---|
| 1571 | PORT = int(sys.argv[2])
|
---|
| 1572 | except (IndexError,ValueError):
|
---|
| 1573 | PORT = 8000
|
---|
[9283] | 1574 |
|
---|
[8267] | 1575 | class MyCGIHTTPRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler):
|
---|
| 1576 | """ Serve this CGI from the root of the webserver """
|
---|
| 1577 | def is_cgi(self):
|
---|
| 1578 | if "favicon" in self.path:
|
---|
| 1579 | return False
|
---|
[9283] | 1580 |
|
---|
[10364] | 1581 | self.cgi_info = (os.path.basename(__file__), self.path)
|
---|
[8267] | 1582 | self.path = ''
|
---|
| 1583 | return True
|
---|
| 1584 | handler = MyCGIHTTPRequestHandler
|
---|
[9807] | 1585 | SocketServer.TCPServer.allow_reuse_address = True
|
---|
[8267] | 1586 | httpd = SocketServer.TCPServer(("", PORT), handler)
|
---|
| 1587 | httpd.server_name = 'localhost'
|
---|
| 1588 | httpd.server_port = PORT
|
---|
[9283] | 1589 |
|
---|
[9728] | 1590 | logger.info("serving at port %s", PORT)
|
---|
[8860] | 1591 | try:
|
---|
| 1592 | httpd.serve_forever()
|
---|
| 1593 | except KeyboardInterrupt:
|
---|
| 1594 | httpd.shutdown()
|
---|
[9728] | 1595 | logger.info("All done goodbye")
|
---|
[8267] | 1596 | elif sys.argv[1] == "test":
|
---|
[10872] | 1597 | # Basic argument validation
|
---|
| 1598 | try:
|
---|
| 1599 | node = sys.argv[2]
|
---|
| 1600 | datadump = get_yaml(node)
|
---|
| 1601 | except IndexError:
|
---|
| 1602 | print "Invalid argument"
|
---|
| 1603 | exit(1)
|
---|
| 1604 | except IOError as e:
|
---|
| 1605 | print e
|
---|
| 1606 | exit(1)
|
---|
| 1607 |
|
---|
| 1608 |
|
---|
| 1609 | # Get files to generate
|
---|
| 1610 | gen_files = sys.argv[3:] if len(sys.argv) > 3 else files
|
---|
| 1611 |
|
---|
| 1612 | # Actual config generation
|
---|
| 1613 | for config in gen_files:
|
---|
| 1614 | logger.info("## Generating %s %s", node, config)
|
---|
| 1615 | print generate_config(node, config, datadump)
|
---|
| 1616 | elif sys.argv[1] == "test-cgi":
|
---|
[8267] | 1617 | os.environ['PATH_INFO'] = "/".join(sys.argv[2:])
|
---|
| 1618 | os.environ['SCRIPT_NAME'] = __file__
|
---|
[11427] | 1619 | response_headers, output = process_cgi_request()
|
---|
| 1620 | print_cgi_response(response_headers, output)
|
---|
[8296] | 1621 | elif sys.argv[1] == "static":
|
---|
| 1622 | items = dict()
|
---|
[10563] | 1623 | items['output_dir'] = sys.argv[2] if len(sys.argv) > 2 else "./static"
|
---|
[8296] | 1624 | for node in get_hostlist():
|
---|
| 1625 | items['node'] = node
|
---|
[10563] | 1626 | items['wdir'] = "%(output_dir)s/%(node)s" % items
|
---|
[8296] | 1627 | if not os.path.isdir(items['wdir']):
|
---|
| 1628 | os.makedirs(items['wdir'])
|
---|
[8298] | 1629 | datadump = get_yaml(node)
|
---|
[8296] | 1630 | for config in files:
|
---|
| 1631 | items['config'] = config
|
---|
[9728] | 1632 | logger.info("## Generating %(node)s %(config)s" % items)
|
---|
[8296] | 1633 | f = open("%(wdir)s/%(config)s" % items, "w")
|
---|
[8298] | 1634 | f.write(generate_config(node, config, datadump))
|
---|
[8296] | 1635 | f.close()
|
---|
[9514] | 1636 | elif sys.argv[1] == "wind-export":
|
---|
| 1637 | items = dict()
|
---|
| 1638 | for node in get_hostlist():
|
---|
| 1639 | datadump = get_yaml(node)
|
---|
| 1640 | sql = """INSERT IGNORE INTO nodes (name, name_ns, longitude, latitude)
|
---|
| 1641 | VALUES ('%(nodename)s', '%(nodename)s', %(latitude)s, %(longitude)s);""" % datadump;
|
---|
| 1642 | sql = """INSERT IGNORE INTO users_nodes (user_id, node_id, owner)
|
---|
| 1643 | VALUES (
|
---|
| 1644 | (SELECT id FROM users WHERE username = 'rvdzwet'),
|
---|
| 1645 | (SELECT id FROM nodes WHERE name = '%(nodename)s'),
|
---|
| 1646 | 'Y');""" % datadump
|
---|
| 1647 | #for config in files:
|
---|
| 1648 | # items['config'] = config
|
---|
| 1649 | # print "## Generating %(node)s %(config)s" % items
|
---|
| 1650 | # f = open("%(wdir)s/%(config)s" % items, "w")
|
---|
| 1651 | # f.write(generate_config(node, config, datadump))
|
---|
| 1652 | # f.close()
|
---|
| 1653 | for node in get_hostlist():
|
---|
| 1654 | datadump = get_yaml(node)
|
---|
| 1655 | for iface_key in sorted([elem for elem in datadump.keys() if elem.startswith('iface_')]):
|
---|
| 1656 | ifacedump = datadump[iface_key]
|
---|
| 1657 | if ifacedump.has_key('mode') and ifacedump['mode'] == 'ap-wds':
|
---|
| 1658 | ifacedump['nodename'] = datadump['nodename']
|
---|
| 1659 | if not ifacedump.has_key('channel') or not ifacedump['channel']:
|
---|
| 1660 | ifacedump['channel'] = 0
|
---|
| 1661 | sql = """INSERT INTO links (node_id, type, ssid, protocol, channel, status)
|
---|
| 1662 | VALUES ((SELECT id FROM nodes WHERE name = '%(nodename)s'), 'ap',
|
---|
| 1663 | '%(ssid)s', 'IEEE 802.11b', %(channel)s, 'active');""" % ifacedump
|
---|
[11326] | 1664 | elif sys.argv[1] == "nagios-export":
|
---|
| 1665 | try:
|
---|
| 1666 | heavy_load = (sys.argv[2] == "--heavy-load")
|
---|
| 1667 | except IndexError:
|
---|
| 1668 | heavy_load = False
|
---|
| 1669 |
|
---|
| 1670 | hostgroup_details = {
|
---|
| 1671 | 'wleiden' : 'Stichting Wireless Leiden - FreeBSD Nodes',
|
---|
| 1672 | 'wzoeterwoude' : 'Stichting Wireless Leiden - Afdeling Zoeterwoude - Free-WiFi Project',
|
---|
| 1673 | 'walphen' : 'Stichting Wireless Alphen',
|
---|
[13274] | 1674 | 'westeinder' : 'Westeinder Plassen',
|
---|
[11326] | 1675 | }
|
---|
| 1676 |
|
---|
[13274] | 1677 | # Convert IP to Host
|
---|
| 1678 | ip2host = {'root' : 'root'}
|
---|
| 1679 | for host in get_hostlist():
|
---|
| 1680 | datadump = get_yaml(host)
|
---|
| 1681 | ip2host[datadump['masterip']] = datadump['autogen_fqdn']
|
---|
| 1682 | for iface in datadump['autogen_iface_keys']:
|
---|
| 1683 | ip2host[datadump[iface]['autogen_gateway']] = datadump['autogen_fqdn']
|
---|
| 1684 |
|
---|
| 1685 | # Find dependency tree based on output of lvrouted.mytree of nearest node
|
---|
[13276] | 1686 | parents = defaultdict(list)
|
---|
[13274] | 1687 | stack = ['root']
|
---|
| 1688 | prev_depth = 0
|
---|
| 1689 | for line in open('lvrouted.mytree').readlines():
|
---|
| 1690 | depth = line.count('\t')
|
---|
| 1691 | ip = line.strip().split()[0]
|
---|
| 1692 |
|
---|
| 1693 | if prev_depth < depth:
|
---|
[13276] | 1694 | try:
|
---|
| 1695 | parents[ip2host[ip]].append(ip2host[stack[-1]])
|
---|
| 1696 | except KeyError as e:
|
---|
| 1697 | print >> stderr, "# Unable to find %s in configuration files" % e.args[0]
|
---|
[13274] | 1698 | stack.append(ip)
|
---|
| 1699 | elif prev_depth > depth:
|
---|
| 1700 | stack = stack[:(depth - prev_depth)]
|
---|
[13276] | 1701 | elif prev_depth == depth:
|
---|
| 1702 | try:
|
---|
| 1703 | parents[ip2host[ip]].append(ip2host[stack[-1]])
|
---|
| 1704 | except KeyError as e:
|
---|
| 1705 | print >> stderr, "# Unable to find %s in configuration files" % e.args[0]
|
---|
[13274] | 1706 |
|
---|
[13276] | 1707 |
|
---|
[13274] | 1708 | prev_depth = depth
|
---|
| 1709 | # Observe that some nodes has themself as parent or multiple parents
|
---|
| 1710 | # for now take only the first parent, other behaviour is yet to be explained
|
---|
| 1711 |
|
---|
| 1712 |
|
---|
| 1713 |
|
---|
[11326] | 1714 | params = {
|
---|
[12787] | 1715 | 'check_interval' : 5 if heavy_load else 120,
|
---|
| 1716 | 'retry_interval' : 1 if heavy_load else 10,
|
---|
| 1717 | 'max_check_attempts' : 10 if heavy_load else 6,
|
---|
[13263] | 1718 | 'notification_interval': 120 if heavy_load else 240,
|
---|
[11326] | 1719 | }
|
---|
| 1720 |
|
---|
| 1721 | print '''\
|
---|
| 1722 | define host {
|
---|
| 1723 | name wleiden-node ; Default Node Template
|
---|
| 1724 | use generic-host ; Use the standard template as initial starting point
|
---|
| 1725 | check_period 24x7 ; By default, FreeBSD hosts are checked round the clock
|
---|
| 1726 | check_interval %(check_interval)s ; Actively check the host every 5 minutes
|
---|
| 1727 | retry_interval %(retry_interval)s ; Schedule host check retries at 1 minute intervals
|
---|
[13263] | 1728 | notification_interval %(notification_interval)s
|
---|
[11326] | 1729 | max_check_attempts %(max_check_attempts)s ; Check each FreeBSD host 10 times (max)
|
---|
[12482] | 1730 | check_command check-host-alive ; Default command to check FreeBSD hosts
|
---|
[11326] | 1731 | register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!
|
---|
| 1732 | }
|
---|
| 1733 |
|
---|
| 1734 | define service {
|
---|
| 1735 | name wleiden-service ; Default Service Template
|
---|
| 1736 | use generic-service ; Use the standard template as initial starting point
|
---|
| 1737 | check_period 24x7 ; By default, FreeBSD hosts are checked round the clock
|
---|
| 1738 | check_interval %(check_interval)s ; Actively check the host every 5 minutes
|
---|
| 1739 | retry_interval %(retry_interval)s ; Schedule host check retries at 1 minute intervals
|
---|
[13263] | 1740 | notification_interval %(notification_interval)s
|
---|
[11326] | 1741 | max_check_attempts %(max_check_attempts)s ; Check each FreeBSD host 10 times (max)
|
---|
| 1742 | register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!
|
---|
| 1743 | }
|
---|
| 1744 |
|
---|
| 1745 | # Please make sure to install:
|
---|
[13264] | 1746 | # make -C /usr/ports/net-mgmt/nagios-check_netsnmp install clean
|
---|
| 1747 | #
|
---|
| 1748 | # Recompile net-mgmt/nagios-plugins to support check_snmp
|
---|
| 1749 | # make -C /usr/ports/net-mgmt/nagios-plugins
|
---|
[11326] | 1750 | #
|
---|
[13264] | 1751 | # Install net/bind-tools to allow v2/check_dns_wl to work:
|
---|
| 1752 | # pkg install bind-tools
|
---|
| 1753 | #
|
---|
[11326] | 1754 | define command{
|
---|
[13264] | 1755 | command_name check_snmp_disk
|
---|
| 1756 | command_line $USER1$/check_snmp_disk -H $HOSTADDRESS$ -C public
|
---|
[11326] | 1757 | }
|
---|
| 1758 |
|
---|
| 1759 | define command{
|
---|
| 1760 | command_name check_netsnmp_load
|
---|
[13264] | 1761 | command_line $USER1$/check_snmp_load.pl -H $HOSTADDRESS$ -C public -w 80 -c 90
|
---|
[11326] | 1762 | }
|
---|
| 1763 |
|
---|
| 1764 | define command{
|
---|
| 1765 | command_name check_netsnmp_proc
|
---|
[13264] | 1766 | command_line $USER1$/check_snmp_proc -H $HOSTADDRESS$ -C public
|
---|
[11326] | 1767 | }
|
---|
| 1768 |
|
---|
[12787] | 1769 | define command{
|
---|
| 1770 | command_name check_by_ssh
|
---|
| 1771 | command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -p $ARG1$ -C "$ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$"
|
---|
| 1772 | }
|
---|
| 1773 |
|
---|
| 1774 | define command{
|
---|
| 1775 | command_name check_dns_wl
|
---|
| 1776 | command_line $USER1$/v2/check_dns_wl $HOSTADDRESS$ $ARG1$
|
---|
| 1777 | }
|
---|
| 1778 |
|
---|
[13264] | 1779 | define command{
|
---|
| 1780 | command_name check_snmp_uptime
|
---|
| 1781 | command_line $USER1$/check_snmp -H $HOSTADDRESS$ -C public -o .1.3.6.1.2.1.1.3.0
|
---|
| 1782 | }
|
---|
[12787] | 1783 |
|
---|
[13264] | 1784 |
|
---|
[11326] | 1785 | # TDB: dhcp leases
|
---|
| 1786 | # /usr/local/libexec/nagios/check_netsnmp -H 192.168.178.47 --oid 1 exec
|
---|
| 1787 |
|
---|
| 1788 | # TDB: internet status
|
---|
| 1789 | # /usr/local/libexec/nagios/check_netsnmp -H 192.168.178.47 --oid 1 file
|
---|
| 1790 |
|
---|
| 1791 | # TDB: Advanced local passive checks
|
---|
| 1792 | # /usr/local/libexec/nagios/check_by_ssh
|
---|
| 1793 | ''' % params
|
---|
| 1794 |
|
---|
| 1795 | print '''\
|
---|
| 1796 | # Service Group, not displayed by default
|
---|
| 1797 | define hostgroup {
|
---|
| 1798 | hostgroup_name srv_hybrid
|
---|
| 1799 | alias All Hybrid Nodes
|
---|
| 1800 | register 0
|
---|
| 1801 | }
|
---|
| 1802 |
|
---|
| 1803 | define service {
|
---|
| 1804 | use wleiden-service
|
---|
| 1805 | hostgroup_name srv_hybrid
|
---|
| 1806 | service_description SSH
|
---|
| 1807 | check_command check_ssh
|
---|
| 1808 | }
|
---|
| 1809 |
|
---|
| 1810 | define service {
|
---|
[13278] | 1811 | use wleiden-service,service-pnp
|
---|
[11326] | 1812 | hostgroup_name srv_hybrid
|
---|
| 1813 | service_description HTTP
|
---|
| 1814 | check_command check_http
|
---|
| 1815 | }
|
---|
| 1816 |
|
---|
[12787] | 1817 | define service {
|
---|
| 1818 | use wleiden-service
|
---|
| 1819 | hostgroup_name srv_hybrid
|
---|
| 1820 | service_description DNS
|
---|
| 1821 | check_command check_dns_wl!"www.wirelessleiden.nl"
|
---|
| 1822 | }
|
---|
[11326] | 1823 | '''
|
---|
| 1824 |
|
---|
| 1825 | if heavy_load:
|
---|
| 1826 | print '''\
|
---|
| 1827 | define service {
|
---|
| 1828 | use wleiden-service
|
---|
| 1829 | hostgroup_name srv_hybrid
|
---|
[13264] | 1830 | service_description UPTIME
|
---|
| 1831 | check_command check_snmp_uptime
|
---|
[11326] | 1832 | }
|
---|
| 1833 |
|
---|
[13263] | 1834 | #define service {
|
---|
| 1835 | # use wleiden-service
|
---|
| 1836 | # hostgroup_name srv_hybrid
|
---|
| 1837 | # service_description NTP
|
---|
| 1838 | # check_command check_ntp_peer
|
---|
| 1839 | #}
|
---|
[11326] | 1840 |
|
---|
| 1841 | define service {
|
---|
| 1842 | use wleiden-service
|
---|
| 1843 | hostgroup_name srv_hybrid
|
---|
| 1844 | service_description LOAD
|
---|
| 1845 | check_command check_netsnmp_load
|
---|
| 1846 | }
|
---|
| 1847 |
|
---|
| 1848 | define service {
|
---|
| 1849 | use wleiden-service
|
---|
| 1850 | hostgroup_name srv_hybrid
|
---|
| 1851 | service_description PROC
|
---|
| 1852 | check_command check_netsnmp_proc
|
---|
| 1853 | }
|
---|
| 1854 |
|
---|
| 1855 | define service {
|
---|
| 1856 | use wleiden-service
|
---|
| 1857 | hostgroup_name srv_hybrid
|
---|
| 1858 | service_description DISK
|
---|
[13264] | 1859 | check_command check_snmp_disk
|
---|
[11326] | 1860 | }
|
---|
| 1861 | '''
|
---|
| 1862 | for node in get_hostlist():
|
---|
| 1863 | datadump = get_yaml(node)
|
---|
| 1864 | if not datadump['status'] == 'up':
|
---|
| 1865 | continue
|
---|
| 1866 | if not hostgroup_details.has_key(datadump['monitoring_group']):
|
---|
| 1867 | hostgroup_details[datadump['monitoring_group']] = datadump['monitoring_group']
|
---|
| 1868 | print '''\
|
---|
| 1869 | define host {
|
---|
[13278] | 1870 | use wleiden-node,host-pnp
|
---|
[13263] | 1871 | contact_groups admins
|
---|
[11326] | 1872 | host_name %(autogen_fqdn)s
|
---|
| 1873 | address %(masterip)s
|
---|
[13274] | 1874 | hostgroups srv_hybrid,%(monitoring_group)s\
|
---|
| 1875 | ''' % datadump
|
---|
[13277] | 1876 | if (len(parents[datadump['autogen_fqdn']]) > 0) and parents[datadump['autogen_fqdn']][0] != 'root':
|
---|
[13274] | 1877 | print '''\
|
---|
[13276] | 1878 | parents %(parents)s\
|
---|
| 1879 | ''' % { 'parents' : parents[datadump['autogen_fqdn']][0] }
|
---|
[13274] | 1880 | print '''\
|
---|
[11326] | 1881 | }
|
---|
[13274] | 1882 | '''
|
---|
[11326] | 1883 |
|
---|
[13274] | 1884 |
|
---|
[11326] | 1885 | for name,alias in hostgroup_details.iteritems():
|
---|
| 1886 | print '''\
|
---|
| 1887 | define hostgroup {
|
---|
| 1888 | hostgroup_name %s
|
---|
| 1889 | alias %s
|
---|
| 1890 | } ''' % (name, alias)
|
---|
| 1891 |
|
---|
| 1892 |
|
---|
[9589] | 1893 | elif sys.argv[1] == "full-export":
|
---|
| 1894 | hosts = {}
|
---|
| 1895 | for node in get_hostlist():
|
---|
| 1896 | datadump = get_yaml(node)
|
---|
| 1897 | hosts[datadump['nodename']] = datadump
|
---|
| 1898 | print yaml.dump(hosts)
|
---|
| 1899 |
|
---|
[8584] | 1900 | elif sys.argv[1] == "dns":
|
---|
[10264] | 1901 | make_dns(sys.argv[2] if len(sys.argv) > 2 else 'dns', 'external' in sys.argv)
|
---|
[9283] | 1902 | elif sys.argv[1] == "cleanup":
|
---|
[8588] | 1903 | # First generate all datadumps
|
---|
| 1904 | datadumps = dict()
|
---|
[10729] | 1905 | ssid_to_node = dict()
|
---|
[8588] | 1906 | for host in get_hostlist():
|
---|
[9728] | 1907 | logger.info("# Processing: %s", host)
|
---|
[10436] | 1908 | # Set some boring default values
|
---|
| 1909 | datadump = { 'board' : 'UNKNOWN' }
|
---|
| 1910 | datadump.update(get_yaml(host))
|
---|
[10391] | 1911 | datadumps[datadump['autogen_realname']] = datadump
|
---|
[9283] | 1912 |
|
---|
[10729] | 1913 | (poel, errors) = make_relations(datadumps)
|
---|
| 1914 | print "\n".join(["# WARNING: %s" % x for x in errors])
|
---|
[10455] | 1915 |
|
---|
[10156] | 1916 | for host,datadump in datadumps.iteritems():
|
---|
[10881] | 1917 | try:
|
---|
| 1918 | # Convert all yes and no to boolean values
|
---|
| 1919 | def fix_boolean(dump):
|
---|
| 1920 | for key in dump.keys():
|
---|
| 1921 | if type(dump[key]) == dict:
|
---|
| 1922 | dump[key] = fix_boolean(dump[key])
|
---|
| 1923 | elif str(dump[key]).lower() in ["yes", "true"]:
|
---|
| 1924 | dump[key] = True
|
---|
| 1925 | elif str(dump[key]).lower() in ["no", "false"]:
|
---|
| 1926 | # Compass richting no (Noord Oost) is valid input
|
---|
| 1927 | if key != "compass": dump[key] = False
|
---|
| 1928 | return dump
|
---|
| 1929 | datadump = fix_boolean(datadump)
|
---|
[10455] | 1930 |
|
---|
[10881] | 1931 | if datadump['rdnap_x'] and datadump['rdnap_y']:
|
---|
[12473] | 1932 | datadump['latitude'], datadump['longitude'] = map(lambda x: "%.5f" % x, rd2etrs(datadump['rdnap_x'], datadump['rdnap_y']))
|
---|
[10881] | 1933 | elif datadump['latitude'] and datadump['longitude']:
|
---|
[12473] | 1934 | datadump['rdnap_x'], datadump['rdnap_y'] = etrs2rd(datadump['latitude'], datadump['longitude'])
|
---|
[10400] | 1935 |
|
---|
[10881] | 1936 | if datadump['nodename'].startswith('Proxy'):
|
---|
| 1937 | datadump['nodename'] = datadump['nodename'].lower()
|
---|
[10319] | 1938 |
|
---|
[10881] | 1939 | for iface_key in datadump['autogen_iface_keys']:
|
---|
[10889] | 1940 | try:
|
---|
| 1941 | # All our normal wireless cards are normal APs now
|
---|
| 1942 | if datadump[iface_key]['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
| 1943 | datadump[iface_key]['mode'] = 'ap'
|
---|
| 1944 | # Wireless Leiden SSID have an consistent lowercase/uppercase
|
---|
| 1945 | if datadump[iface_key].has_key('ssid'):
|
---|
| 1946 | ssid = datadump[iface_key]['ssid']
|
---|
| 1947 | prefix = 'ap-WirelessLeiden-'
|
---|
| 1948 | if ssid.lower().startswith(prefix.lower()):
|
---|
| 1949 | datadump[iface_key]['ssid'] = prefix + ssid[len(prefix)].upper() + ssid[len(prefix) + 1:]
|
---|
| 1950 | if datadump[iface_key].has_key('ns_ip') and not datadump[iface_key].has_key('mode'):
|
---|
| 1951 | datadump[iface_key]['mode'] = 'autogen-FIXME'
|
---|
| 1952 | if not datadump[iface_key].has_key('comment'):
|
---|
| 1953 | datadump[iface_key]['comment'] = 'autogen-FIXME'
|
---|
[10882] | 1954 |
|
---|
[11732] | 1955 | if datadump[iface_key].has_key('ns_mac'):
|
---|
| 1956 | datadump[iface_key]['ns_mac'] = datadump[iface_key]['ns_mac'].lower()
|
---|
| 1957 |
|
---|
[10889] | 1958 | if datadump[iface_key]['comment'].startswith('autogen-') and datadump[iface_key].has_key('comment'):
|
---|
| 1959 | datadump[iface_key] = datadump[iface_key]['desc']
|
---|
[10882] | 1960 |
|
---|
[11738] | 1961 | # We are not using 802.11b anymore. OFDM is preferred over DSSS
|
---|
| 1962 | # due to better collision avoidance.
|
---|
| 1963 | if datadump[iface_key]['type'] == '11b':
|
---|
| 1964 | datadump[iface_key]['type'] = '11g'
|
---|
| 1965 |
|
---|
| 1966 | # Setting 802.11g channels to de-facto standards, to avoid
|
---|
| 1967 | # un-detected sharing with other overlapping channels
|
---|
| 1968 | #
|
---|
| 1969 | # Technically we could also use channel 13 in NL, but this is not
|
---|
| 1970 | # recommended as foreign devices might not be able to select this
|
---|
| 1971 | # channel. Secondly using 1,5,9,13 instead is going to clash with
|
---|
| 1972 | # the de-facto usage of 1,6,11.
|
---|
| 1973 | #
|
---|
| 1974 | # See: https://en.wikipedia.org/wiki/List_of_WLAN_channels
|
---|
| 1975 | channels_at_2400Mhz = (1,6,11)
|
---|
| 1976 | if datadump[iface_key]['type'] == '11g' and datadump[iface_key].has_key('channel'):
|
---|
| 1977 | datadump[iface_key]['channel'] = int(datadump[iface_key]['channel'])
|
---|
| 1978 | if datadump[iface_key]['channel'] not in channels_at_2400Mhz:
|
---|
| 1979 | datadump[iface_key]['channel'] = random.choice(channels_at_2400Mhz)
|
---|
| 1980 |
|
---|
[11555] | 1981 | # Mandatory interface keys
|
---|
| 1982 | if not datadump[iface_key].has_key('status'):
|
---|
| 1983 | datadump[iface_key]['status'] = 'planned'
|
---|
| 1984 |
|
---|
[10889] | 1985 | x = datadump[iface_key]['comment']
|
---|
| 1986 | datadump[iface_key]['comment'] = x[0].upper() + x[1:]
|
---|
[10884] | 1987 |
|
---|
[12478] | 1988 | # Fixing bridge_type if none is found
|
---|
| 1989 | if datadump[iface_key].get('extra_type', '') == 'eth2wifibridge':
|
---|
| 1990 | if not 'bridge_type' in datadump[iface_key]:
|
---|
| 1991 | datadump[iface_key]['bridge_type'] = 'NanoStation M5'
|
---|
| 1992 |
|
---|
| 1993 | # Making sure description works
|
---|
[10889] | 1994 | if datadump[iface_key].has_key('desc'):
|
---|
| 1995 | if datadump[iface_key]['comment'].lower() == datadump[iface_key]['desc'].lower():
|
---|
[10885] | 1996 | del datadump[iface_key]['desc']
|
---|
[10889] | 1997 | else:
|
---|
| 1998 | print "# ERROR: At %s - %s" % (datadump['nodename'], iface_key)
|
---|
| 1999 | response = fix_conflict(datadump[iface_key]['comment'], datadump[iface_key]['desc'])
|
---|
| 2000 | if response:
|
---|
| 2001 | datadump[iface_key]['comment'] = response
|
---|
| 2002 | del datadump[iface_key]['desc']
|
---|
[10882] | 2003 |
|
---|
[10889] | 2004 | # Check DHCP configuration
|
---|
| 2005 | dhcp_type(datadump[iface_key])
|
---|
| 2006 |
|
---|
| 2007 | # Set the compass value based on the angle between the poels
|
---|
| 2008 | if datadump[iface_key].has_key('ns_ip'):
|
---|
| 2009 | my_pool = poel[network(datadump[iface_key]['ip'])]
|
---|
| 2010 | remote_hosts = list(set([x[0] for x in my_pool]) - set([host]))
|
---|
| 2011 | if remote_hosts:
|
---|
| 2012 | compass_target = remote_hosts[0]
|
---|
| 2013 | datadump[iface_key]['compass'] = cd_between_hosts(host, compass_target, datadumps)
|
---|
[12475] | 2014 |
|
---|
| 2015 | # Monitoring Group default
|
---|
| 2016 | if not 'monitoring_group' in datadump:
|
---|
| 2017 | datadump['monitoring_group'] = 'wleiden'
|
---|
| 2018 |
|
---|
[10889] | 2019 | except Exception as e:
|
---|
| 2020 | print "# Error while processing interface %s" % iface_key
|
---|
| 2021 | raise
|
---|
[10881] | 2022 | store_yaml(datadump)
|
---|
| 2023 | except Exception as e:
|
---|
| 2024 | print "# Error while processing %s" % host
|
---|
| 2025 | raise
|
---|
[9971] | 2026 | elif sys.argv[1] == "list":
|
---|
[10611] | 2027 | use_fqdn = False
|
---|
[13279] | 2028 | if len(sys.argv) < 4:
|
---|
[10567] | 2029 | usage()
|
---|
[13279] | 2030 | if not sys.argv[2] in ["up", "down", "planned", "all"]:
|
---|
[9971] | 2031 | usage()
|
---|
[13279] | 2032 | if not sys.argv[3] in ["nodes","proxies","systems"]:
|
---|
| 2033 | usage()
|
---|
| 2034 |
|
---|
[10611] | 2035 | if len(sys.argv) > 4:
|
---|
| 2036 | if sys.argv[4] == "fqdn":
|
---|
| 2037 | use_fqdn = True
|
---|
| 2038 | else:
|
---|
| 2039 | usage()
|
---|
| 2040 |
|
---|
[13279] | 2041 | for system in get_hostlist():
|
---|
[9971] | 2042 | datadump = get_yaml(system)
|
---|
[13279] | 2043 | if sys.argv[3] == 'proxies' and not datadump['service_proxy_ileiden']:
|
---|
| 2044 | continue
|
---|
[10611] | 2045 |
|
---|
| 2046 | output = datadump['autogen_fqdn'] if use_fqdn else system
|
---|
[10567] | 2047 | if sys.argv[2] == "all":
|
---|
[10611] | 2048 | print output
|
---|
[10567] | 2049 | elif datadump['status'] == sys.argv[2]:
|
---|
[10611] | 2050 | print output
|
---|
[10378] | 2051 | elif sys.argv[1] == "create":
|
---|
| 2052 | if sys.argv[2] == "network.kml":
|
---|
| 2053 | print make_network_kml.make_graph()
|
---|
[10998] | 2054 | elif sys.argv[2] == "host-ips.txt":
|
---|
| 2055 | for system in get_hostlist():
|
---|
| 2056 | datadump = get_yaml(system)
|
---|
| 2057 | ips = [datadump['masterip']]
|
---|
| 2058 | for ifkey in datadump['autogen_iface_keys']:
|
---|
| 2059 | ips.append(datadump[ifkey]['ip'].split('/')[0])
|
---|
| 2060 | print system, ' '.join(ips)
|
---|
[10999] | 2061 | elif sys.argv[2] == "host-pos.txt":
|
---|
| 2062 | for system in get_hostlist():
|
---|
| 2063 | datadump = get_yaml(system)
|
---|
| 2064 | print system, datadump['rdnap_x'], datadump['rdnap_y']
|
---|
[12233] | 2065 | elif sys.argv[2] == 'ssh_config':
|
---|
| 2066 | print '''
|
---|
| 2067 | Host *.wleiden.net
|
---|
| 2068 | User root
|
---|
| 2069 |
|
---|
| 2070 | Host 172.16.*.*
|
---|
| 2071 | User root
|
---|
| 2072 | '''
|
---|
| 2073 | for system in get_hostlist():
|
---|
| 2074 | datadump = get_yaml(system)
|
---|
| 2075 | print '''\
|
---|
| 2076 | Host %s
|
---|
| 2077 | User root
|
---|
| 2078 |
|
---|
| 2079 | Host %s
|
---|
| 2080 | User root
|
---|
| 2081 |
|
---|
| 2082 | Host %s
|
---|
| 2083 | User root
|
---|
| 2084 |
|
---|
| 2085 | Host %s
|
---|
| 2086 | User root
|
---|
| 2087 | ''' % (system, system.lower(), datadump['nodename'], datadump['nodename'].lower())
|
---|
[10378] | 2088 | else:
|
---|
[10998] | 2089 | usage()
|
---|
| 2090 | else:
|
---|
[9283] | 2091 | usage()
|
---|
| 2092 | else:
|
---|
[10070] | 2093 | # Do not enable debugging for config requests as it highly clutters the output
|
---|
| 2094 | if not is_text_request():
|
---|
| 2095 | cgitb.enable()
|
---|
[11427] | 2096 | response_headers, output = process_cgi_request()
|
---|
| 2097 | print_cgi_response(response_headers, output)
|
---|
[9283] | 2098 |
|
---|
[11426] | 2099 | def application(environ, start_response):
|
---|
| 2100 | status = '200 OK'
|
---|
| 2101 | response_headers, output = process_cgi_request(environ)
|
---|
| 2102 | start_response(status, response_headers)
|
---|
[9283] | 2103 |
|
---|
[11426] | 2104 | # Debugging only
|
---|
| 2105 | # output = 'wsgi.multithread = %s' % repr(environ['wsgi.multithread'])
|
---|
| 2106 | # soutput += '\nwsgi.multiprocess = %s' % repr(environ['wsgi.multiprocess'])
|
---|
| 2107 | return [output]
|
---|
| 2108 |
|
---|
[9283] | 2109 | if __name__ == "__main__":
|
---|
| 2110 | main()
|
---|