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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
# $Id$
#
# Copyright (C) 2009--2012 Internet Systems Consortium ("ISC")
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS. IN NO EVENT SHALL ISC 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.
#
# 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 notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND ARIN DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS. IN NO EVENT SHALL 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.
"""
RPKI "publication" protocol.
"""
import os
import errno
import logging
import rpki.resource_set
import rpki.x509
import rpki.sql
import rpki.exceptions
import rpki.xml_utils
import rpki.http
import rpki.up_down
import rpki.relaxng
import rpki.sundial
import rpki.log
logger = logging.getLogger(__name__)
class publication_namespace(object):
"""
XML namespace parameters for publication protocol.
"""
xmlns = "http://www.hactrn.net/uris/rpki/publication-spec/"
nsmap = { None : xmlns }
class control_elt(rpki.xml_utils.data_elt, rpki.sql.sql_persistent, publication_namespace):
"""
Virtual class for control channel objects.
"""
def serve_dispatch(self, r_msg, cb, eb):
"""
Action dispatch handler. This needs special handling because we
need to make sure that this PDU arrived via the control channel.
"""
if self.client is not None:
raise rpki.exceptions.BadQuery("Control query received on client channel")
rpki.xml_utils.data_elt.serve_dispatch(self, r_msg, cb, eb)
class config_elt(control_elt):
"""
<config/> element. This is a little weird because there should
never be more than one row in the SQL config table, but we have to
put the BPKI CRL somewhere and SQL is the least bad place available.
So we reuse a lot of the SQL machinery, but we nail config_id at 1,
we don't expose it in the XML protocol, and we only support the get
and set actions.
"""
attributes = ("action", "tag")
element_name = "config"
elements = ("bpki_crl",)
sql_template = rpki.sql.template(
"config",
"config_id",
("bpki_crl", rpki.x509.CRL))
wired_in_config_id = 1
def startElement(self, stack, name, attrs):
"""
StartElement() handler for config object. This requires special
handling because of the weird way we treat config_id.
"""
control_elt.startElement(self, stack, name, attrs)
self.config_id = self.wired_in_config_id
@classmethod
def fetch(cls, gctx):
"""
Fetch the config object from SQL. This requires special handling
because of the weird way we treat config_id.
"""
return cls.sql_fetch(gctx, cls.wired_in_config_id)
def serve_set(self, r_msg, cb, eb):
"""
Handle a set action. This requires special handling because
config doesn't support the create method.
"""
if self.sql_fetch(self.gctx, self.config_id) is None:
control_elt.serve_create(self, r_msg, cb, eb)
else:
control_elt.serve_set(self, r_msg, cb, eb)
def serve_fetch_one_maybe(self):
"""
Find the config object on which a get or set method should
operate.
"""
return self.sql_fetch(self.gctx, self.config_id)
class client_elt(control_elt):
"""
<client/> element.
"""
element_name = "client"
attributes = ("action", "tag", "client_handle", "base_uri")
elements = ("bpki_cert", "bpki_glue")
booleans = ("clear_replay_protection",)
sql_template = rpki.sql.template(
"client",
"client_id",
"client_handle",
"base_uri",
("bpki_cert", rpki.x509.X509),
("bpki_glue", rpki.x509.X509),
("last_cms_timestamp", rpki.sundial.datetime))
base_uri = None
bpki_cert = None
bpki_glue = None
last_cms_timestamp = None
def serve_post_save_hook(self, q_pdu, r_pdu, cb, eb):
"""
Extra server actions for client_elt.
"""
actions = []
if q_pdu.clear_replay_protection:
actions.append(self.serve_clear_replay_protection)
def loop(iterator, action):
action(iterator, eb)
rpki.async.iterator(actions, loop, cb)
def serve_clear_replay_protection(self, cb, eb):
"""
Handle a clear_replay_protection action for this client.
"""
self.last_cms_timestamp = None
self.sql_mark_dirty()
cb()
def serve_fetch_one_maybe(self):
"""
Find the client object on which a get, set, or destroy method
should operate, or which would conflict with a create method.
"""
return self.sql_fetch_where1(self.gctx, "client_handle = %s", (self.client_handle,))
def serve_fetch_all(self):
"""
Find client objects on which a list method should operate.
"""
return self.sql_fetch_all(self.gctx)
def check_allowed_uri(self, uri):
"""
Make sure that a target URI is within this client's allowed URI space.
"""
if not uri.startswith(self.base_uri):
raise rpki.exceptions.ForbiddenURI
class publication_object_elt(rpki.xml_utils.base_elt, publication_namespace):
"""
Virtual class for publishable objects. These have very similar
syntax, differences lie in underlying datatype and methods. XML
methods are a little different from the pattern used for objects
that support the create/set/get/list/destroy actions, but
publishable objects don't go in SQL either so these classes would be
different in any case.
"""
attributes = ("action", "tag", "client_handle", "uri")
payload_type = None
payload = None
def endElement(self, stack, name, text):
"""
Handle a publishable element element.
"""
assert name == self.element_name, "Unexpected name %s, stack %s" % (name, stack)
if text:
self.payload = self.payload_type(Base64 = text) # pylint: disable=E1102
stack.pop()
def toXML(self):
"""
Generate XML element for publishable object.
"""
elt = self.make_elt()
if self.payload:
elt.text = self.payload.get_Base64()
return elt
def serve_dispatch(self, r_msg, cb, eb):
"""
Action dispatch handler.
"""
# pylint: disable=E0203
try:
if self.client is None:
raise rpki.exceptions.BadQuery("Client query received on control channel")
dispatch = { "publish" : self.serve_publish,
"withdraw" : self.serve_withdraw }
if self.action not in dispatch:
raise rpki.exceptions.BadQuery("Unexpected query: action %s" % self.action)
self.client.check_allowed_uri(self.uri)
dispatch[self.action]()
r_pdu = self.__class__()
r_pdu.action = self.action
r_pdu.tag = self.tag
r_pdu.uri = self.uri
r_msg.append(r_pdu)
cb()
except rpki.exceptions.NoObjectAtURI, e:
# This can happen when we're cleaning up from a prior mess, so
# we generate a <report_error/> PDU then carry on.
r_msg.append(report_error_elt.from_exception(e, self.tag))
cb()
def serve_publish(self):
"""
Publish an object.
"""
logger.info("Publishing %s" % self.payload.tracking_data(self.uri))
filename = self.uri_to_filename()
filename_tmp = filename + ".tmp"
dirname = os.path.dirname(filename)
if not os.path.isdir(dirname):
os.makedirs(dirname)
f = open(filename_tmp, "wb")
f.write(self.payload.get_DER())
f.close()
os.rename(filename_tmp, filename)
def serve_withdraw(self):
"""
Withdraw an object, then recursively delete empty directories.
"""
logger.info("Withdrawing %s" % self.uri)
filename = self.uri_to_filename()
try:
os.remove(filename)
except OSError, e:
if e.errno == errno.ENOENT:
raise rpki.exceptions.NoObjectAtURI("No object published at %s" % self.uri)
else:
raise
min_path_len = len(self.gctx.publication_base.rstrip("/"))
dirname = os.path.dirname(filename)
while len(dirname) > min_path_len:
try:
os.rmdir(dirname)
except OSError:
break
else:
dirname = os.path.dirname(dirname)
def uri_to_filename(self):
"""
Convert a URI to a local filename.
"""
if not self.uri.startswith("rsync://"):
raise rpki.exceptions.BadURISyntax(self.uri)
path = self.uri.split("/")[3:]
if not self.gctx.publication_multimodule:
del path[0]
path.insert(0, self.gctx.publication_base.rstrip("/"))
filename = "/".join(path)
if "/../" in filename or filename.endswith("/.."):
raise rpki.exceptions.BadURISyntax(filename)
return filename
@classmethod
def make_publish(cls, uri, obj, tag = None):
"""
Construct a publication PDU.
"""
assert cls.payload_type is not None and type(obj) is cls.payload_type
return cls.make_pdu(action = "publish", uri = uri, payload = obj, tag = tag)
@classmethod
def make_withdraw(cls, uri, obj, tag = None):
"""
Construct a withdrawal PDU.
"""
assert cls.payload_type is not None and type(obj) is cls.payload_type
return cls.make_pdu(action = "withdraw", uri = uri, tag = tag)
def raise_if_error(self):
"""
No-op, since this is not a <report_error/> PDU.
"""
pass
class certificate_elt(publication_object_elt):
"""
<certificate/> element.
"""
element_name = "certificate"
payload_type = rpki.x509.X509
class crl_elt(publication_object_elt):
"""
<crl/> element.
"""
element_name = "crl"
payload_type = rpki.x509.CRL
class manifest_elt(publication_object_elt):
"""
<manifest/> element.
"""
element_name = "manifest"
payload_type = rpki.x509.SignedManifest
class roa_elt(publication_object_elt):
"""
<roa/> element.
"""
element_name = "roa"
payload_type = rpki.x509.ROA
class ghostbuster_elt(publication_object_elt):
"""
<ghostbuster/> element.
"""
element_name = "ghostbuster"
payload_type = rpki.x509.Ghostbuster
publication_object_elt.obj2elt = dict(
(e.payload_type, e) for e in
(certificate_elt, crl_elt, manifest_elt, roa_elt, ghostbuster_elt))
class report_error_elt(rpki.xml_utils.text_elt, publication_namespace):
"""
<report_error/> element.
"""
element_name = "report_error"
attributes = ("tag", "error_code")
text_attribute = "error_text"
error_text = None
@classmethod
def from_exception(cls, e, tag = None):
"""
Generate a <report_error/> element from an exception.
"""
self = cls()
self.tag = tag
self.error_code = e.__class__.__name__
self.error_text = str(e)
return self
def __str__(self):
s = ""
if getattr(self, "tag", None) is not None:
s += "[%s] " % self.tag
s += self.error_code
if getattr(self, "error_text", None) is not None:
s += ": " + self.error_text
return s
def raise_if_error(self):
"""
Raise exception associated with this <report_error/> PDU.
"""
t = rpki.exceptions.__dict__.get(self.error_code)
if isinstance(t, type) and issubclass(t, rpki.exceptions.RPKI_Exception):
raise t(getattr(self, "text", None))
else:
raise rpki.exceptions.BadPublicationReply("Unexpected response from pubd: %s" % self)
class msg(rpki.xml_utils.msg, publication_namespace):
"""
Publication PDU.
"""
## @var version
# Protocol version
version = 1
## @var pdus
# Dispatch table of PDUs for this protocol.
pdus = dict((x.element_name, x) for x in
(config_elt, client_elt, certificate_elt, crl_elt, manifest_elt, roa_elt, ghostbuster_elt, report_error_elt))
def serve_top_level(self, gctx, client, cb):
"""
Serve one msg PDU.
"""
if not self.is_query():
raise rpki.exceptions.BadQuery("Message type is not query")
r_msg = self.__class__.reply()
def loop(iterator, q_pdu):
def fail(e):
if not isinstance(e, rpki.exceptions.NotFound):
logger.exception("Exception processing PDU %r", q_pdu)
r_msg.append(report_error_elt.from_exception(e, q_pdu.tag))
cb(r_msg)
try:
q_pdu.gctx = gctx
q_pdu.client = client
q_pdu.serve_dispatch(r_msg, iterator, fail)
except (rpki.async.ExitNow, SystemExit):
raise
except Exception, e:
fail(e)
def done():
cb(r_msg)
rpki.async.iterator(self, loop, done)
class sax_handler(rpki.xml_utils.sax_handler):
"""
SAX handler for publication protocol.
"""
pdu = msg
name = "msg"
version = "1"
class cms_msg(rpki.x509.XML_CMS_object):
"""
Class to hold a CMS-signed publication PDU.
"""
encoding = "us-ascii"
schema = rpki.relaxng.publication
saxify = sax_handler.saxify
|