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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
# $Id$
#
# Copyright (C) 2013--2014 Dragon Research Labs ("DRL")
# Portions copyright (C) 2009--2012 Internet Systems Consortium ("ISC")
# Portions copyright (C) 2007--2008 American Registry for Internet Numbers ("ARIN")
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notices and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND DRL, ISC, AND ARIN DISCLAIM ALL
# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DRL,
# ISC, OR ARIN BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
"""
Trivial RPKI up-down protocol root server. Not recommended for
production use. Overrides a bunch of method definitions from the
rpki.* classes in order to reuse as much code as possible.
"""
import os
import time
import logging
import argparse
import rpki.resource_set
import rpki.up_down
import rpki.left_right
import rpki.x509
import rpki.http
import rpki.config
import rpki.exceptions
import rpki.relaxng
import rpki.sundial
import rpki.log
import rpki.daemonize
logger = logging.getLogger(__name__)
rootd = None
class list_pdu(rpki.up_down.list_pdu):
def serve_pdu(self, q_msg, r_msg, ignored, callback, errback):
r_msg.payload = rpki.up_down.list_response_pdu()
rootd.compose_response(r_msg)
callback()
class issue_pdu(rpki.up_down.issue_pdu):
def serve_pdu(self, q_msg, r_msg, ignored, callback, errback):
self.pkcs10.check_valid_request_ca()
r_msg.payload = rpki.up_down.issue_response_pdu()
rootd.compose_response(r_msg, self.pkcs10)
callback()
class revoke_pdu(rpki.up_down.revoke_pdu):
def serve_pdu(self, q_msg, r_msg, ignored, callback, errback):
logger.debug("Revocation requested for SKI %s", self.ski)
subject_cert = rootd.get_subject_cert()
if subject_cert is None:
logger.debug("No subject certificate, nothing to revoke")
raise rpki.exceptions.NotInDatabase
if subject_cert.gSKI() != self.ski:
logger.debug("Subject certificate has different SKI %s, not revoking", subject_cert.gSKI())
raise rpki.exceptions.NotInDatabase
logger.debug("Revoking certificate %s", self.ski)
now = rpki.sundial.now()
rootd.revoke_subject_cert(now)
rootd.del_subject_cert()
rootd.del_subject_pkcs10()
rootd.generate_crl_and_manifest(now)
r_msg.payload = rpki.up_down.revoke_response_pdu()
r_msg.payload.class_name = self.class_name
r_msg.payload.ski = self.ski
callback()
class error_response_pdu(rpki.up_down.error_response_pdu):
exceptions = rpki.up_down.error_response_pdu.exceptions.copy()
exceptions[rpki.exceptions.ClassNameUnknown, revoke_pdu] = 1301
exceptions[rpki.exceptions.NotInDatabase, revoke_pdu] = 1302
class message_pdu(rpki.up_down.message_pdu):
name2type = {
"list" : list_pdu,
"list_response" : rpki.up_down.list_response_pdu,
"issue" : issue_pdu,
"issue_response" : rpki.up_down.issue_response_pdu,
"revoke" : revoke_pdu,
"revoke_response" : rpki.up_down.revoke_response_pdu,
"error_response" : error_response_pdu }
type2name = dict((v, k) for k, v in name2type.items())
error_pdu_type = error_response_pdu
def log_query(self, child):
"""
Log query we're handling.
"""
logger.info("Serving %s query", self.type)
class sax_handler(rpki.up_down.sax_handler):
pdu = message_pdu
class cms_msg(rpki.up_down.cms_msg):
saxify = sax_handler.saxify
class main(object):
def get_root_cert(self):
logger.debug("Read root cert %s", self.rpki_root_cert_file)
self.rpki_root_cert = rpki.x509.X509(Auto_file = self.rpki_root_cert_file)
def root_newer_than_subject(self):
return os.stat(self.rpki_root_cert_file).st_mtime > \
os.stat(os.path.join(self.rpki_root_dir, self.rpki_subject_cert)).st_mtime
def get_subject_cert(self):
filename = os.path.join(self.rpki_root_dir, self.rpki_subject_cert)
try:
x = rpki.x509.X509(Auto_file = filename)
logger.debug("Read subject cert %s", filename)
return x
except IOError:
return None
def set_subject_cert(self, cert):
filename = os.path.join(self.rpki_root_dir, self.rpki_subject_cert)
logger.debug("Writing subject cert %s, SKI %s", filename, cert.hSKI())
f = open(filename, "wb")
f.write(cert.get_DER())
f.close()
def del_subject_cert(self):
filename = os.path.join(self.rpki_root_dir, self.rpki_subject_cert)
logger.debug("Deleting subject cert %s", filename)
os.remove(filename)
def get_subject_pkcs10(self):
try:
x = rpki.x509.PKCS10(Auto_file = self.rpki_subject_pkcs10)
logger.debug("Read subject PKCS #10 %s", self.rpki_subject_pkcs10)
return x
except IOError:
return None
def set_subject_pkcs10(self, pkcs10):
logger.debug("Writing subject PKCS #10 %s", self.rpki_subject_pkcs10)
f = open(self.rpki_subject_pkcs10, "wb")
f.write(pkcs10.get_DER())
f.close()
def del_subject_pkcs10(self):
logger.debug("Deleting subject PKCS #10 %s", self.rpki_subject_pkcs10)
try:
os.remove(self.rpki_subject_pkcs10)
except OSError:
pass
def issue_subject_cert_maybe(self, new_pkcs10):
now = rpki.sundial.now()
subject_cert = self.get_subject_cert()
old_pkcs10 = self.get_subject_pkcs10()
if new_pkcs10 is not None and new_pkcs10 != old_pkcs10:
self.set_subject_pkcs10(new_pkcs10)
if subject_cert is not None:
logger.debug("PKCS #10 changed, regenerating subject certificate")
self.revoke_subject_cert(now)
subject_cert = None
if subject_cert is not None and subject_cert.getNotAfter() <= now + self.rpki_subject_regen:
logger.debug("Subject certificate has reached expiration threshold, regenerating")
self.revoke_subject_cert(now)
subject_cert = None
if subject_cert is not None and self.root_newer_than_subject():
logger.debug("Root certificate has changed, regenerating subject")
self.revoke_subject_cert(now)
subject_cert = None
self.get_root_cert()
if subject_cert is not None:
return subject_cert
pkcs10 = old_pkcs10 if new_pkcs10 is None else new_pkcs10
if pkcs10 is None:
logger.debug("No PKCS #10 request, can't generate subject certificate yet")
return None
resources = self.rpki_root_cert.get_3779resources()
notAfter = now + self.rpki_subject_lifetime
logger.info("Generating subject cert %s with resources %s, expires %s",
self.rpki_base_uri + self.rpki_subject_cert, resources, notAfter)
req_key = pkcs10.getPublicKey()
req_sia = pkcs10.get_SIA()
self.next_serial_number()
subject_cert = self.rpki_root_cert.issue(
keypair = self.rpki_root_key,
subject_key = req_key,
serial = self.serial_number,
sia = req_sia,
aia = self.rpki_root_cert_uri,
crldp = self.rpki_base_uri + self.rpki_root_crl,
resources = resources,
notBefore = now,
notAfter = notAfter)
self.set_subject_cert(subject_cert)
self.generate_crl_and_manifest(now)
return subject_cert
def generate_crl_and_manifest(self, now):
subject_cert = self.get_subject_cert()
self.next_serial_number()
self.next_crl_number()
while self.revoked and self.revoked[0][1] + 2 * self.rpki_subject_regen < now:
del self.revoked[0]
crl = rpki.x509.CRL.generate(
keypair = self.rpki_root_key,
issuer = self.rpki_root_cert,
serial = self.crl_number,
thisUpdate = now,
nextUpdate = now + self.rpki_subject_regen,
revokedCertificates = self.revoked)
fn = os.path.join(self.rpki_root_dir, self.rpki_root_crl)
logger.debug("Writing CRL %s", fn)
f = open(fn, "wb")
f.write(crl.get_DER())
f.close()
manifest_content = [(self.rpki_root_crl, crl)]
if subject_cert is not None:
manifest_content.append((self.rpki_subject_cert, subject_cert))
manifest_resources = rpki.resource_set.resource_bag.from_inheritance()
manifest_keypair = rpki.x509.RSA.generate()
manifest_cert = self.rpki_root_cert.issue(
keypair = self.rpki_root_key,
subject_key = manifest_keypair.get_public(),
serial = self.serial_number,
sia = (None, None, self.rpki_base_uri + self.rpki_root_manifest),
aia = self.rpki_root_cert_uri,
crldp = self.rpki_base_uri + self.rpki_root_crl,
resources = manifest_resources,
notBefore = now,
notAfter = now + self.rpki_subject_lifetime,
is_ca = False)
manifest = rpki.x509.SignedManifest.build(
serial = self.crl_number,
thisUpdate = now,
nextUpdate = now + self.rpki_subject_regen,
names_and_objs = manifest_content,
keypair = manifest_keypair,
certs = manifest_cert)
fn = os.path.join(self.rpki_root_dir, self.rpki_root_manifest)
logger.debug("Writing manifest %s", fn)
f = open(fn, "wb")
f.write(manifest.get_DER())
f.close()
def revoke_subject_cert(self, now):
self.revoked.append((self.get_subject_cert().getSerial(), now))
def compose_response(self, r_msg, pkcs10 = None):
subject_cert = self.issue_subject_cert_maybe(pkcs10)
rc = rpki.up_down.class_elt()
rc.class_name = self.rpki_class_name
rc.cert_url = rpki.up_down.multi_uri(self.rpki_root_cert_uri)
rc.from_resource_bag(self.rpki_root_cert.get_3779resources())
rc.issuer = self.rpki_root_cert
r_msg.payload.classes.append(rc)
if subject_cert is not None:
rc.certs.append(rpki.up_down.certificate_elt())
rc.certs[0].cert_url = rpki.up_down.multi_uri(self.rpki_base_uri + self.rpki_subject_cert)
rc.certs[0].cert = subject_cert
def up_down_handler(self, query, path, cb):
try:
q_cms = cms_msg(DER = query)
q_msg = q_cms.unwrap((self.bpki_ta, self.child_bpki_cert))
self.cms_timestamp = q_cms.check_replay(self.cms_timestamp, path)
except (rpki.async.ExitNow, SystemExit):
raise
except Exception, e:
logger.exception("Problem decoding PDU")
return cb(400, reason = "Could not decode PDU: %s" % e)
def done(r_msg):
cb(200, body = cms_msg().wrap(
r_msg, self.rootd_bpki_key, self.rootd_bpki_cert,
self.rootd_bpki_crl if self.include_bpki_crl else None))
try:
q_msg.serve_top_level(None, done)
except (rpki.async.ExitNow, SystemExit):
raise
except Exception, e:
try:
logger.exception("Exception serving up-down request %r", q_msg)
done(q_msg.serve_error(e))
except (rpki.async.ExitNow, SystemExit):
raise
except Exception, e:
logger.exception("Exception while generating error report")
cb(500, reason = "Could not process PDU: %s" % e)
def next_crl_number(self):
if self.crl_number is None:
try:
crl = rpki.x509.CRL(DER_file = os.path.join(self.rpki_root_dir, self.rpki_root_crl))
self.crl_number = crl.getCRLNumber()
except: # pylint: disable=W0702
self.crl_number = 0
self.crl_number += 1
return self.crl_number
def next_serial_number(self):
if self.serial_number is None:
subject_cert = self.get_subject_cert()
if subject_cert is not None:
self.serial_number = subject_cert.getSerial() + 1
else:
self.serial_number = 0
self.serial_number += 1
return self.serial_number
def __init__(self):
global rootd
rootd = self # Gross, but simpler than what we'd have to do otherwise
self.rpki_root_cert = None
self.serial_number = None
self.crl_number = None
self.revoked = []
self.cms_timestamp = None
os.environ["TZ"] = "UTC"
time.tzset()
parser = argparse.ArgumentParser(description = __doc__)
parser.add_argument("-c", "--config",
help = "override default location of configuration file")
parser.add_argument("-f", "--foreground", action = "store_true",
help = "do not daemonize")
parser.add_argument("--pidfile",
help = "override default location of pid file")
rpki.log.argparse_setup(parser)
args = parser.parse_args()
rpki.log.init("rootd", args)
self.cfg = rpki.config.parser(args.config, "rootd")
self.cfg.set_global_flags()
if not args.foreground:
rpki.daemonize.daemon(pidfile = args.pidfile)
self.bpki_ta = rpki.x509.X509(Auto_update = self.cfg.get("bpki-ta"))
self.rootd_bpki_key = rpki.x509.RSA( Auto_update = self.cfg.get("rootd-bpki-key"))
self.rootd_bpki_cert = rpki.x509.X509(Auto_update = self.cfg.get("rootd-bpki-cert"))
self.rootd_bpki_crl = rpki.x509.CRL( Auto_update = self.cfg.get("rootd-bpki-crl"))
self.child_bpki_cert = rpki.x509.X509(Auto_update = self.cfg.get("child-bpki-cert"))
self.http_server_host = self.cfg.get("server-host", "")
self.http_server_port = self.cfg.getint("server-port")
self.rpki_class_name = self.cfg.get("rpki-class-name", "wombat")
self.rpki_root_dir = self.cfg.get("rpki-root-dir")
self.rpki_base_uri = self.cfg.get("rpki-base-uri", "rsync://" + self.rpki_class_name + ".invalid/")
self.rpki_root_key = rpki.x509.RSA(Auto_update = self.cfg.get("rpki-root-key"))
self.rpki_root_cert_file = self.cfg.get("rpki-root-cert")
self.rpki_root_cert_uri = self.cfg.get("rpki-root-cert-uri", self.rpki_base_uri + "root.cer")
self.rpki_root_manifest = self.cfg.get("rpki-root-manifest", "root.mft")
self.rpki_root_crl = self.cfg.get("rpki-root-crl", "root.crl")
self.rpki_subject_cert = self.cfg.get("rpki-subject-cert", "child.cer")
self.rpki_subject_pkcs10 = self.cfg.get("rpki-subject-pkcs10", "child.pkcs10")
self.rpki_subject_lifetime = rpki.sundial.timedelta.parse(self.cfg.get("rpki-subject-lifetime", "8w"))
self.rpki_subject_regen = rpki.sundial.timedelta.parse(self.cfg.get("rpki-subject-regen", self.rpki_subject_lifetime.convert_to_seconds() / 2))
self.include_bpki_crl = self.cfg.getboolean("include-bpki-crl", False)
rpki.http.server(host = self.http_server_host,
port = self.http_server_port,
handlers = (("/", self.up_down_handler, rpki.up_down.allowed_content_types),))
|