#! /usr/bin/env python3 # # This file is part of secnet. # See README for full list of copyright holders. # # secnet is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # secnet is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # version 3 along with secnet; if not, see # https://www.gnu.org/licenses/gpl.html. """VPN sites file manipulation. This program enables VPN site descriptions to be submitted for inclusion in a central database, and allows the resulting database to be turned into a secnet configuration file. A database file can be turned into a secnet configuration file simply: make-secnet-sites.py [infile [outfile]] It would be wise to run secnet with the "--just-check-config" option before installing the output on a live system. The program expects to be invoked via userv to manage the database; it relies on the USERV_USER and USERV_GROUP environment variables. The command line arguments for this invocation are: make-secnet-sites.py -u header-filename groupfiles-directory output-file \ group All but the last argument are expected to be set by userv; the 'group' argument is provided by the user. A suitable userv configuration file fragment is: reset no-disconnect-hup no-suppress-args cd ~/secnet/sites-test/ execute ~/secnet/make-secnet-sites.py -u vpnheader groupfiles sites This program is part of secnet. """ from __future__ import print_function from __future__ import unicode_literals from builtins import int import string import time import sys import os import getopt import re import argparse import ipaddress # entry 0 is "near the executable", or maybe from PYTHONPATH=., # which we don't want to preempt sys.path.insert(1,"/usr/local/share/secnet") sys.path.insert(1,"/usr/share/secnet") import ipaddrset VERSION="0.1.18" from sys import version_info if version_info.major == 2: # for python2 import codecs sys.stdin = codecs.getreader('utf-8')(sys.stdin) sys.stdout = codecs.getwriter('utf-8')(sys.stdout) import io open=lambda f,m='r': io.open(f,m,encoding='utf-8') def parse_args(): global service global inputfile global header global groupfiledir global sitesfile global group global user global of ap = argparse.ArgumentParser(description='process secnet sites files') ap.add_argument('--userv', '-u', action='store_true', help='userv service fragment update mode') ap.add_argument('--prefix', '-P', nargs=1, help='set prefix') ap.add_argument('arg',nargs=argparse.REMAINDER) av = ap.parse_args() #print(repr(av), file=sys.stderr) service = 1 if av.userv else 0 if service: if len(av.arg)!=4: print("Wrong number of arguments") sys.exit(1) (header, groupfiledir, sitesfile, group) = av.arg if "USERV_USER" not in os.environ: print("Environment variable USERV_USER not found") sys.exit(1) user=os.environ["USERV_USER"] # Check that group is in USERV_GROUP if "USERV_GROUP" not in os.environ: print("Environment variable USERV_GROUP not found") sys.exit(1) ugs=os.environ["USERV_GROUP"] ok=0 for i in ugs.split(): if group==i: ok=1 if not ok: print("caller not in group %s"%group) sys.exit(1) else: if len(av.arg)>3: print("Too many arguments") sys.exit(1) (inputfile, outputfile) = (av.arg + [None]*2)[0:2] if outputfile is None: of=sys.stdout else: of=open(sys.argv[2],'w') parse_args() # Classes describing possible datatypes in the configuration file class basetype: "Common protocol for configuration types." def add(self,obj,w): complain("%s %s already has property %s defined"% (obj.type,obj.name,w[0])) class conflist: "A list of some kind of configuration type." def __init__(self,subtype,w): self.subtype=subtype self.list=[subtype(w)] def add(self,obj,w): self.list.append(self.subtype(w)) def __str__(self): return ', '.join(map(str, self.list)) def listof(subtype): return lambda w: conflist(subtype, w) class single_ipaddr (basetype): "An IP address" def __init__(self,w): self.addr=ipaddress.ip_address(w[1]) def __str__(self): return '"%s"'%self.addr class networks (basetype): "A set of IP addresses specified as a list of networks" def __init__(self,w): self.set=ipaddrset.IPAddressSet() for i in w[1:]: x=ipaddress.ip_network(i,strict=True) self.set.append([x]) def __str__(self): return ",".join(map((lambda n: '"%s"'%n), self.set.networks())) class dhgroup (basetype): "A Diffie-Hellman group" def __init__(self,w): self.mod=w[1] self.gen=w[2] def __str__(self): return 'diffie-hellman("%s","%s")'%(self.mod,self.gen) class hash (basetype): "A choice of hash function" def __init__(self,w): hname=w[1] self.ht=hname if (self.ht!='md5' and self.ht!='sha1'): complain("unknown hash type %s"%(self.ht)) def __str__(self): return '%s'%(self.ht) class email (basetype): "An email address" def __init__(self,w): self.addr=w[1] def __str__(self): return '<%s>'%(self.addr) class boolean (basetype): "A boolean" def __init__(self,w): if re.match('[TtYy1]',w[1]): self.b=True elif re.match('[FfNn0]',w[1]): self.b=False else: complain("invalid boolean value"); def __str__(self): return ['False','True'][self.b] class num (basetype): "A decimal number" def __init__(self,w): self.n=int(w[1]) def __str__(self): return '%d'%(self.n) class address (basetype): "A DNS name and UDP port number" def __init__(self,w): self.adr=w[1] self.port=int(w[2]) if (self.port<1 or self.port>65535): complain("invalid port number") def __str__(self): return '"%s"; port %d'%(self.adr,self.port) class rsakey (basetype): "An RSA public key" def __init__(self,w): self.l=int(w[1]) self.e=w[2] self.n=w[3] def __str__(self): return 'rsa-public("%s","%s")'%(self.e,self.n) # Possible properties of configuration nodes keywords={ 'contact':(email,"Contact address"), 'dh':(dhgroup,"Diffie-Hellman group"), 'hash':(hash,"Hash function"), 'key-lifetime':(num,"Maximum key lifetime (ms)"), 'setup-timeout':(num,"Key setup timeout (ms)"), 'setup-retries':(num,"Maximum key setup packet retries"), 'wait-time':(num,"Time to wait after unsuccessful key setup (ms)"), 'renegotiate-time':(num,"Time after key setup to begin renegotiation (ms)"), 'restrict-nets':(networks,"Allowable networks"), 'networks':(networks,"Claimed networks"), 'pubkey':(rsakey,"RSA public site key"), 'peer':(single_ipaddr,"Tunnel peer IP address"), 'address':(address,"External contact address and port"), 'mobile':(boolean,"Site is mobile"), } def sp(name,value): "Simply output a property - the default case" return "%s %s;\n"%(name,value) # All levels support these properties global_properties={ 'contact':(lambda name,value:"# Contact email address: %s\n"%(value)), 'dh':sp, 'hash':sp, 'key-lifetime':sp, 'setup-timeout':sp, 'setup-retries':sp, 'wait-time':sp, 'renegotiate-time':sp, 'restrict-nets':(lambda name,value:"# restrict-nets %s\n"%value), } class level: "A level in the configuration hierarchy" depth=0 leaf=0 allow_properties={} require_properties={} def __init__(self,w): self.type=w[0] self.name=w[1] self.properties={} self.children={} def indent(self,w,t): w.write(" "[:t]) def prop_out(self,n): return self.allow_properties[n](n,str(self.properties[n])) def output_props(self,w,ind): for i in self.properties.keys(): if self.allow_properties[i]: self.indent(w,ind) w.write("%s"%self.prop_out(i)) def output_data(self,w,ind,np): self.indent(w,ind) w.write("%s {\n"%(self.name)) self.output_props(w,ind+2) if self.depth==1: w.write("\n"); for c in self.children.values(): c.output_data(w,ind+2,np+self.name+"/") self.indent(w,ind) w.write("};\n") class vpnlevel(level): "VPN level in the configuration hierarchy" depth=1 leaf=0 type="vpn" allow_properties=global_properties.copy() require_properties={ 'contact':"VPN admin contact address" } def __init__(self,w): level.__init__(self,w) def output_vpnflat(self,w,ind,h): "Output flattened list of site names for this VPN" self.indent(w,ind) w.write("%s {\n"%(self.name)) for i in self.children.keys(): self.children[i].output_vpnflat(w,ind+2, h+"/"+self.name+"/"+i) w.write("\n") self.indent(w,ind+2) w.write("all-sites %s;\n"% ','.join(self.children.keys())) self.indent(w,ind) w.write("};\n") class locationlevel(level): "Location level in the configuration hierarchy" depth=2 leaf=0 type="location" allow_properties=global_properties.copy() require_properties={ 'contact':"Location admin contact address", } def __init__(self,w): level.__init__(self,w) self.group=w[2] def output_vpnflat(self,w,ind,h): self.indent(w,ind) # The "h=h,self=self" abomination below exists because # Python didn't support nested_scopes until version 2.1 w.write("%s %s;\n"%(self.name,','.join( map(lambda x,h=h,self=self: h+"/"+x,self.children.keys())))) class sitelevel(level): "Site level (i.e. a leafnode) in the configuration hierarchy" depth=3 leaf=1 type="site" allow_properties=global_properties.copy() allow_properties.update({ 'address':sp, 'networks':None, 'peer':None, 'pubkey':(lambda n,v:"key %s;\n"%v), 'mobile':sp, }) require_properties={ 'dh':"Diffie-Hellman group", 'contact':"Site admin contact address", 'networks':"Networks claimed by the site", 'hash':"hash function", 'peer':"Gateway address of the site", 'pubkey':"RSA public key of the site", } def __init__(self,w): level.__init__(self,w) def output_data(self,w,ind,np): self.indent(w,ind) w.write("%s {\n"%(self.name)) self.indent(w,ind+2) w.write("name \"%s\";\n"%(np+self.name)) self.output_props(w,ind+2) self.indent(w,ind+2) w.write("link netlink {\n"); self.indent(w,ind+4) w.write("routes %s;\n"%str(self.properties["networks"])) self.indent(w,ind+4) w.write("ptp-address %s;\n"%str(self.properties["peer"])) self.indent(w,ind+2) w.write("};\n") self.indent(w,ind) w.write("};\n") # Levels in the configuration file # (depth,properties) levels={'vpn':vpnlevel, 'location':locationlevel, 'site':sitelevel} # Reserved vpn/location/site names reserved={'all-sites':None} reserved.update(keywords) reserved.update(levels) def complain(msg): "Complain about a particular input line" global complaints print(("%s line %d: "%(file,line))+msg) complaints=complaints+1 def moan(msg): "Complain about something in general" global complaints print(msg); complaints=complaints+1 root=level(['root','root']) # All vpns are children of this node obstack=[root] allow_defs=0 # Level above which new definitions are permitted prefix='' def set_property(obj,w): "Set a property on a configuration node" prop=w[0] if prop in obj.properties: obj.properties[prop].add(obj,w) else: obj.properties[prop]=keywords[prop][0](w) def pline(i,allow_include=False): "Process a configuration file line" global allow_defs, obstack, root w=i.rstrip('\n').split() if len(w)==0: return [i] keyword=w[0] current=obstack[len(obstack)-1] if keyword=='end-definitions': allow_defs=sitelevel.depth obstack=[root] return [i] if keyword=='include': if not allow_include: complain("include not permitted here") return [] if len(w) != 2: complain("include requires one argument") return [] newfile=os.path.join(os.path.dirname(file),w[1]) return pfilepath(newfile,allow_include=allow_include) if keyword in levels: # We may go up any number of levels, but only down by one newdepth=levels[keyword].depth currentdepth=len(obstack) # actually +1... if newdepth<=currentdepth: obstack=obstack[:newdepth] if newdepth>currentdepth: complain("May not go from level %d to level %d"% (currentdepth-1,newdepth)) # See if it's a new one (and whether that's permitted) # or an existing one current=obstack[len(obstack)-1] tname=w[1] if tname in current.children: # Not new current=current.children[tname] if service and group and current.depth==2: if group!=current.group: complain("Incorrect group!") else: # New # Ignore depth check for now nl=levels[keyword](w) if nl.depth0: if complaints==1: print("There was 1 problem.") else: print("There were %d problems."%(complaints)) sys.exit(1) if service: # Put the user's input into their group file, and rebuild the main # sites file f=open(groupfiledir+"/T"+group,'w') f.write("# Section submitted by user %s, %s\n"% (user,time.asctime(time.localtime(time.time())))) f.write("# Checked by make-secnet-sites version %s\n\n"%VERSION) for i in userinput: f.write(i) f.write("\n") f.close() os.rename(groupfiledir+"/T"+group,groupfiledir+"/R"+group) f=open(sitesfile+"-tmp",'w') f.write("# sites file autogenerated by make-secnet-sites\n") f.write("# generated %s, invoked by %s\n"% (time.asctime(time.localtime(time.time())),user)) f.write("# use make-secnet-sites to turn this file into a\n") f.write("# valid /etc/secnet/sites.conf file\n\n") for i in headerinput: f.write(i) files=os.listdir(groupfiledir) for i in files: if i[0]=='R': j=open(groupfiledir+"/"+i) f.write(j.read()) j.close() f.write("# end of sites file\n") f.close() os.rename(sitesfile+"-tmp",sitesfile) else: outputsites(of)