mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-22 19:20:40 +08:00
add more doc and checks
This commit is contained in:
parent
019c07e433
commit
0871adc10e
1 changed files with 11 additions and 8 deletions
|
@ -9,6 +9,8 @@ import re
|
|||
class BashParser:
|
||||
def __init__(self):
|
||||
self.__pa = None # are we parsing bash array?
|
||||
def end(self):
|
||||
assert not self.__pa # check if array ends properly
|
||||
def parseline(self, line):
|
||||
repl_quotes = lambda t: t.replace('"', '').replace('\'', '')
|
||||
line = line.strip()
|
||||
|
@ -30,7 +32,7 @@ class BashParser:
|
|||
if not line or line.startswith('#'):
|
||||
return None
|
||||
l = line.split('=')
|
||||
assert len(l) >= 2
|
||||
assert len(l) >= 2 # is this line key=value syntax?
|
||||
return [l[0], '='.join([repl_quotes(i) for i in l[1:]])]
|
||||
bp = BashParser()
|
||||
|
||||
|
@ -41,6 +43,7 @@ def shell2dict(shellscript):
|
|||
if r:
|
||||
key, val = r
|
||||
fc[key.lower()] = val
|
||||
bp.end()
|
||||
return fc
|
||||
|
||||
cwd = Path()
|
||||
|
@ -73,7 +76,7 @@ def neoneo_get_people():
|
|||
assert f.name
|
||||
people[f.name] = {k: fc.get(k) for k in present_keys}
|
||||
nic_hdl = name2nichdl(f.name)
|
||||
assert nic_hdl not in nic_hdl_names
|
||||
assert nic_hdl not in nic_hdl_names # nic_hdl collision
|
||||
nic_hdl_names.add(nic_hdl)
|
||||
people[f.name]['nic_hdl'] = nic_hdl
|
||||
for v in people[f.name].values():
|
||||
|
@ -129,14 +132,14 @@ def neonet_route2roa(dirname, is_ipv6=False):
|
|||
roa_entries_key = ("asn", "prefix", "supernet", "netname")
|
||||
if fc.get('type').lower() in ('lo', 'subnet'):
|
||||
asn = str2asn(fc.get('asn'))
|
||||
assert asn in ASNS
|
||||
assert asn in ASNS # asn not in as-dir
|
||||
route = f.name.replace(',', '/')
|
||||
supernet = get_supernet(fc.get('supernet'))
|
||||
netname = fc.get('name')
|
||||
assert netname
|
||||
roa_entries.append(dict(zip(roa_entries_key, [asn, nettype(route, strict=True), supernet, netname])))
|
||||
elif fc.get('type').lower().startswith('tun'):
|
||||
assert NODE_TABLE[fc.get('downstream')] # extra check for downstream
|
||||
assert NODE_TABLE[fc.get('downstream')] # not in node-dir
|
||||
asn = NODE_TABLE[fc.get('upstream')]
|
||||
assert asn in ASNS
|
||||
route = f.name.replace(',', '/')
|
||||
|
@ -144,10 +147,10 @@ def neonet_route2roa(dirname, is_ipv6=False):
|
|||
netname = "%s-%s" % (fc.get('type'), route)
|
||||
roa_entries.append(dict(zip(roa_entries_key, [asn, nettype(route, strict=True), supernet, netname])))
|
||||
elif fc.get('type').lower() == 'ptp':
|
||||
assert NODE_TABLE[fc.get('upstream')] # extra check for upstream
|
||||
assert NODE_TABLE[fc.get('downstream')] # extra check for downstream
|
||||
assert NODE_TABLE[fc.get('upstream')] # not in node-dir
|
||||
assert NODE_TABLE[fc.get('downstream')] # not in node-dir
|
||||
else:
|
||||
raise AssertionError
|
||||
raise AssertionError # unknown type
|
||||
except Exception:
|
||||
print("[!] Error while processing file", f)
|
||||
raise
|
||||
|
@ -161,7 +164,7 @@ def neonet_route2roa(dirname, is_ipv6=False):
|
|||
pass
|
||||
else:
|
||||
print("[!] Error: found", net2, "overlaps", net1)
|
||||
raise AssertionError
|
||||
raise AssertionError # if this is intended, please include SUPERNET=<cidr> in your route
|
||||
return roa_entries
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue