1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
#!/usr/bin/env python
# $Id$
"""
Reimplementation of rcynic in Python. Work in progress.
Well, OK, at the moment this doesn't even come close to being a
replacement for the C version of rcynic, must less adding the new
features that were the reason for bothering with all this. Right now,
this is just a test framework for the new POW.c code to support Python
RP code. Gotta start somewhere.
"""
import os
import sys
import time
import argparse
import rpki.POW
from lxml.etree import ElementTree, Element, SubElement, Comment
args = None
def check_dir(s):
if not os.path.isdir(s):
raise argparse.ArgumentTypeError("%r is not a directory" % s)
return s
def parse_options():
global args # pylint: disable=W0603
parser = argparse.ArgumentParser(description = __doc__)
parser.add_argument("--unauthenticated", type = check_dir, default = "rcynic-data/unauthenticated")
parser.add_argument("--old-authenticated", type = check_dir, default = "rcynic-data/authenticated.old")
parser.add_argument("--tals", type = check_dir, default = "sample-trust-anchors")
parser.add_argument("--output", default = "rcynic-data/rcynicng-output")
args = parser.parse_args()
def read_tals():
for root, dirs, files in os.walk(args.tals):
for fn in files:
if fn.endswith(".tal"):
with open(os.path.join(root, fn), "r") as f:
lines = f.readlines()
uri = lines.pop(0).strip()
b64 = "".join(lines[lines.index("\n"):])
key = rpki.POW.Asymmetric.derReadPublic(b64.decode("base64"))
yield uri, key
def uri_to_fn(uri, base = None):
fn = uri[uri.index("://")+3:]
if base is not None:
fn = os.path.join(base, fn)
return fn
def first_uri(uris, scheme):
for uri in uris:
if uri.startswith(scheme):
return uri
return None
def first_rsync_uri(uris):
return first_uri(uris, "rsync://")
def walk_tree(ca, trusted, crl, basedir):
ca_status = set()
ca.verify(trusted = trusted, crl = crl, status = ca_status)
trusted.insert(0, ca)
diruri, mfturi = [first_rsync_uri(uri) for uri in ca.getSIA()[:2]]
mft = rpki.POW.Manifest.derReadFile(uri_to_fn(mfturi, basedir))
ee = mft.certs()[0]
crldp = first_rsync_uri(ee.getCRLDP())
crl = rpki.POW.CRL.derReadFile(uri_to_fn(crldp, basedir))
crl_status = set()
mft_status = set()
crl.verify(ca, crl_status)
ee.verify(trusted = trusted, crl = crl, status = mft_status)
mft.verify(status = mft_status)
print "CA status: ", ", ".join(str(s) for s in ca_status)
print "CRL status:", ", ".join(str(s) for s in crl_status)
print "MFT status:", ", ".join(str(s) for s in mft_status)
for fn, digest in mft.getFiles():
with open(os.path.join(uri_to_fn(diruri, basedir), fn), "rb") as f:
obj = f.read()
dgst = rpki.POW.Digest(rpki.POW.SHA256_DIGEST)
dgst.update(obj)
print fn, digest.encode("hex"), "OK hash" if dgst.digest() == digest else "Bad hash"
if fn.endswith(".crl") and obj != crl.derWrite():
print "CRL mismatch"
if fn.endswith(".crl"):
continue
if fn.endswith(".roa"):
roa = rpki.POW.ROA.derRead(obj)
roa_status = set()
ee = roa.certs()[0]
ee.verify(trusted = trusted, crl = crl, status = roa_status)
roa.verify(status = roa_status)
continue
if fn.endswith(".gbr"):
gbr = rpki.POW.CMS.derRead(obj)
gbr_status = set()
ee = gbr.certs()[0]
ee.verify(trusted = trusted, crl = crl, status = gbr_status)
vcard = gbr.verify(status = gbr_status)
print vcard
continue
cer = rpki.POW.X509.derRead(obj)
bc = cer.getBasicConstraints()
if bc and bc[0]:
try:
walk_tree(cer, trusted, crl, basedir)
except rpki.POW.Error as e:
print "CA", diruri + fn, "failed:", e
else:
cer_status = set()
cer.verify(trusted = trusted, crl = crl, status = cer_status)
def main():
os.putenv("TZ", "UTC")
time.tzset()
parse_options()
basedir = args.unauthenticated
for uri, pk in read_tals():
print
try:
x = rpki.POW.X509.derReadFile(uri_to_fn(uri, basedir))
except rpki.POW.OpenSSLError:
print "Couldn't open TA {}".format(uri)
else:
ok = pk.derWritePublic() == x.getPublicKey().derWritePublic()
print "OK " if ok else "Bad", uri
if ok:
walk_tree(x, [x], None, basedir)
if __name__ == "__main__":
main()
|