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
|
# $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.
"""
XML utilities.
"""
import logging
import lxml.etree
import rpki.exceptions
logger = logging.getLogger(__name__)
class base_elt(object):
"""
Virtual base class for XML message elements. The left-right and
publication_control protocols use this.
"""
## @var attributes
# XML attributes for this element.
attributes = ()
## @var elements
# XML elements contained by this element.
elements = ()
## @var booleans
# Boolean attributes (value "yes" or "no") for this element.
booleans = ()
## @var text_attribute
# Name of class attribute that tells us where to put text values, if any.
text_attribute = None
@classmethod
def fromXML(cls, elt):
"""
First cut at non-SAX message unpacker. This will probably change.
"""
self = cls()
for key in self.attributes:
val = elt.get(key, None)
if val is not None:
val = val.encode("ascii")
if isinstance(self.attributes, dict) and self.attributes[key] is not None:
val = self.attributes[key](val)
elif val.isdigit() and not key.endswith("_handle"):
val = long(val)
setattr(self, key, val)
for key in self.booleans:
setattr(self, key, elt.get(key, False))
# This test could go in an extended method in text_elt. Then
# again, perhaps spreading the logic in as many places as we
# possibly can is not really helping matters....
if self.text_attribute is not None:
setattr(self, self.text_attribute, elt.text)
# In the long run, we probably want the key for that to include
# the namespace, but that would break the current .toXML() code,
# so kludge it for now.
for b64 in elt:
assert b64.tag.startswith(self.xmlns)
ename = b64.tag[len(self.xmlns):]
etype = self.elements[ename]
setattr(self, ename, etype(Base64 = b64.text))
return self
def toXML(self):
"""
Default toXML() element generator.
"""
return self.make_elt()
def read_attrs(self, attrs):
"""
Template-driven attribute reader.
"""
def make_elt(self):
"""
XML element constructor.
"""
elt = lxml.etree.Element(self.xmlns + self.element_name, nsmap = self.nsmap)
for key in self.attributes:
val = getattr(self, key, None)
if val is not None:
elt.set(key, str(val))
for key in self.booleans:
if getattr(self, key, False):
elt.set(key, "yes")
return elt
def make_b64elt(self, elt, name, value):
"""
Constructor for Base64-encoded subelement.
"""
if value is not None and not value.empty():
lxml.etree.SubElement(elt, self.xmlns + name, nsmap = self.nsmap).text = value.get_Base64()
def __str__(self):
"""
Convert a base_elt object to string format.
"""
return lxml.etree.tostring(self.toXML(), pretty_print = True, encoding = "us-ascii")
@classmethod
def make_pdu(cls, **kargs):
"""
Generic PDU constructor.
"""
self = cls()
for k, v in kargs.items():
if isinstance(v, bool):
v = 1 if v else 0
setattr(self, k, v)
return self
class text_elt(base_elt):
"""
Virtual base class for XML message elements that contain text.
"""
def toXML(self):
"""
Insert text into generated XML.
"""
elt = self.make_elt()
elt.text = getattr(self, self.text_attribute) or None
return elt
class data_elt(base_elt):
"""
Virtual base class for PDUs that map to SQL objects. These objects
all implement the create/set/get/list/destroy action attribute.
"""
def toXML(self):
"""
Default element generator for SQL-based objects. This assumes
that sub-elements are Base64-encoded DER objects.
"""
elt = self.make_elt()
for i in self.elements:
self.make_b64elt(elt, i, getattr(self, i, None))
return elt
def make_reply(self, r_pdu = None):
"""
Construct a reply PDU.
"""
if r_pdu is None:
r_pdu = self.__class__()
self.make_reply_clone_hook(r_pdu)
handle_name = self.element_name + "_handle"
setattr(r_pdu, handle_name, getattr(self, handle_name, None))
else:
self.make_reply_clone_hook(r_pdu)
for b in r_pdu.booleans:
setattr(r_pdu, b, False)
r_pdu.action = self.action
r_pdu.tag = self.tag
return r_pdu
def make_reply_clone_hook(self, r_pdu):
"""
Overridable hook.
"""
pass
def serve_fetch_one(self):
"""
Find the object on which a get, set, or destroy method should
operate.
"""
r = self.serve_fetch_one_maybe()
if r is None:
raise rpki.exceptions.NotFound
return r
def serve_pre_save_hook(self, q_pdu, r_pdu, cb, eb):
"""
Overridable hook.
"""
cb()
def serve_post_save_hook(self, q_pdu, r_pdu, cb, eb):
"""
Overridable hook.
"""
cb()
def serve_create(self, r_msg, cb, eb):
"""
Handle a create action.
"""
r_pdu = self.make_reply()
def one():
self.sql_store()
setattr(r_pdu, self.sql_template.index, getattr(self, self.sql_template.index))
self.serve_post_save_hook(self, r_pdu, two, eb)
def two():
r_msg.append(r_pdu)
cb()
oops = self.serve_fetch_one_maybe()
if oops is not None:
raise rpki.exceptions.DuplicateObject("Object already exists: %r[%r] %r[%r]" % (self, getattr(self, self.element_name + "_handle"),
oops, getattr(oops, oops.element_name + "_handle")))
self.serve_pre_save_hook(self, r_pdu, one, eb)
def serve_set(self, r_msg, cb, eb):
"""
Handle a set action.
"""
db_pdu = self.serve_fetch_one()
r_pdu = self.make_reply()
for a in db_pdu.sql_template.columns[1:]:
v = getattr(self, a, None)
if v is not None:
setattr(db_pdu, a, v)
db_pdu.sql_mark_dirty()
def one():
db_pdu.sql_store()
db_pdu.serve_post_save_hook(self, r_pdu, two, eb)
def two():
r_msg.append(r_pdu)
cb()
db_pdu.serve_pre_save_hook(self, r_pdu, one, eb)
def serve_get(self, r_msg, cb, eb):
"""
Handle a get action.
"""
r_pdu = self.serve_fetch_one()
self.make_reply(r_pdu)
r_msg.append(r_pdu)
cb()
def serve_list(self, r_msg, cb, eb):
"""
Handle a list action for non-self objects.
"""
for r_pdu in self.serve_fetch_all():
self.make_reply(r_pdu)
r_msg.append(r_pdu)
cb()
def serve_destroy_hook(self, cb, eb):
"""
Overridable hook.
"""
cb()
def serve_destroy(self, r_msg, cb, eb):
"""
Handle a destroy action.
"""
def done():
db_pdu.sql_delete()
r_msg.append(self.make_reply())
cb()
db_pdu = self.serve_fetch_one()
db_pdu.serve_destroy_hook(done, eb)
def serve_dispatch(self, r_msg, cb, eb):
"""
Action dispatch handler.
"""
# Transition hack: handle the .toXML() call for old handlers.
fake_r_msg = []
def fake_convert():
r_msg.extend(r_pdu.toXML() if isinstance(r_pdu, base_elt) else r_pdu
for r_pdu in fake_r_msg)
def fake_cb():
fake_convert()
cb()
def fake_eb(e):
fake_convert()
eb(e)
method = getattr(self, "serve_" + self.action, None)
if method is None:
raise rpki.exceptions.BadQuery("Unexpected query: action %s" % self.action)
method(fake_r_msg, fake_cb, fake_eb)
def unimplemented_control(self, *controls):
"""
Uniform handling for unimplemented control operations.
"""
unimplemented = [x for x in controls if getattr(self, x, False)]
if unimplemented:
raise rpki.exceptions.NotImplementedYet("Unimplemented control %s" % ", ".join(unimplemented))
|