""" Convert {parents,children,pubclients}.csv into new XML formats. $Id$ Copyright (C) 2010 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. """ import subprocess, re, os, getopt, sys, base64, urlparse import rpki.sundial, rpki.myrpki, rpki.config from lxml.etree import Element, SubElement, ElementTree section_regexp = re.compile("\s*\[\s*(.+?)\s*\]\s*$") variable_regexp = re.compile("\s*([-a-zA-Z0-9_]+)(\s*=\s*)(.+?)\s*$") cfg_file = "myrpki.conf" template_file = os.path.join(os.path.dirname(sys.argv[0]), "examples", "myrpki.conf") new_cfg_file = None preserve_valid_until = False opts, argv = getopt.getopt(sys.argv[1:], "c:hn:pt:?", ["config=", "new_config=", "preserve_valid_until", "template_config=", "help"]) for o, a in opts: if o in ("-h", "--help", "-?"): print __doc__ sys.exit(0) elif o in ("-c", "--config"): cfg_file = a elif o in ("-n", "--new_config"): new_cfg_file = a elif o in ("-p", "--preserve_valid_until"): preserve_valid_until = True elif o in ("-t", "--template_config"): template_file = a if argv: raise RuntimeError, "Unexpected arguments %r" % (argv,) if os.path.samefile(cfg_file, template_file): raise RuntimeError, "Old config and template for new config can't be the same file" if new_cfg_file is None: new_cfg_file = cfg_file + ".new" if os.path.exists(new_cfg_file): raise RuntimeError, "%s already exists, NOT overwriting" % new_cfg_file cfg = rpki.config.parser(cfg_file) # These have no counterparts in new config file, just read them from old repository_bpki_certificate = cfg.get(option = "repository_bpki_certificate", section = "myrpki") repository_handle = cfg.get(option = "repository_handle", section = "myrpki") parents_csv = cfg.get(option = "parents_csv", section = "myrpki", default = "parents.csv") children_csv = cfg.get(option = "children_csv", section = "myrpki", default = "children.csv") pubclients_csv = cfg.get(option = "pubclients_csv", section = "myrpki", default = "pubclients.csv") pubd_base = cfg.get(option = "pubd_base", section = "myirbe") # Here we need to construct values for the new config file from the # old one. Basic model here is to look at whatever variables need to # be set in the template (mostly just the [myrpki], I hope), pull # necessary data from old config file any way we can. Stuff that # didn't make the jump from old config file to new we can just ignore, # stuff that is automated via macro expansions in the new config file # should be ok without modification. r = {} if cfg.has_section("myrpki"): for i in ("handle", "roa_csv", "prefix_csv", "asn_csv", "xml_filename"): r["myrpki", i] = cfg.get(section = "myrpki", option = i) r["myrpki", "bpki_resources_directory"] = cfg.get(option = "bpki_directory", section = "myrpki") if cfg.has_section("myirbe"): r["myrpki", "bpki_servers_directory"] = cfg.get(option = "bpki_directory", section = "myirbe") r["myrpki", "run_rpkid"] = True r["myrpki", "run_pubd"] = cfg.getboolean(option = "want_pubd", section = "myirbe", default = False) r["myrpki", "run_rootd"] = cfg.getboolean(option = "want_rootd", section = "myirbe", default = False) else: for i in ("run_rpkid", "run_pubd", "run_rootd"): r["myrpki", i] = False if cfg.has_section("rpkid"): r["myrpki", "rpkid_server_host"] = cfg.get(option = "server-host", section = "rpkid") r["myrpki", "rpkid_server_port"] = cfg.get(option = "server-port", section = "rpkid") if cfg.has_section("irdbd"): u = urlparse.urlparse(cfg.get(option = "https-url", section = "irdbd")) r["myrpki", "irdbd_server_host"] = u.hostname or "localhost" r["myrpki", "irdbd_server_port"] = u.port or 443 if cfg.has_section("pubd"): r["myrpki", "pubd_server_host"] = cfg.get(option = "server-host", section = "pubd") r["myrpki", "pubd_server_port"] = cfg.get(option = "server-port", section = "pubd") r["myrpki", "publication_base_directory"] = cfg.get(option = "publication-base", section = "pubd") if cfg.has_section("rootd"): r["myrpki", "rootd_server_port"] = cfg.get(option = "server-port", section = "rootd") u = urlparse.urlparse(cfg.get(option = "rpki-base-uri", section = "rootd")) r["myrpki", "publication_rsync_server"] = u.netloc for i in ("rpkid", "irdbd", "pubd"): if cfg.has_section(i): for j in ("sql-database", "sql-username", "sql-password"): r[i, j] = cfg.get(section = i, option = j) f = open(new_cfg_file, "w") f.write("# Automatically converted from %s using %s as a template.\n\n" % (cfg_file, template_file)) section = None for line in open(template_file): m = section_regexp.match(line) if m: section = m.group(1) m = variable_regexp.match(line) if m: option, whitespace = m.group(1, 2) else: option = None if (section, option) in r: line = "%s%s%s\n" % (option, whitespace, r[section, option]) f.write(line) f.close() print "Wrote", new_cfg_file # Get all of these from the new config file; in theory we just set all # of them, but we want to use values matching new config in any case. newcfg = rpki.config.parser(new_cfg_file, "myrpki") handle = newcfg.get("handle") bpki_resources_directory = newcfg.get("bpki_resources_directory") bpki_servers_directory = newcfg.get("bpki_servers_directory") pubd_server_host = newcfg.get("pubd_server_host") pubd_server_port = newcfg.get("pubd_server_port") rpkid_server_host = newcfg.get("rpkid_server_host") rpkid_server_port = newcfg.get("rpkid_server_port") entitydb_dir = newcfg.get("entitydb_dir", "entitydb") bpki_resources_pemfile = bpki_resources_directory + "/ca.cer" bpki_servers_pemfile = bpki_servers_directory + "/ca.cer" def entitydb(*args): return os.path.join(entitydb_dir, *args) # Now convert the .csv files. It'd be nice to have XML validation # enabled for this, so try to turn it on ourselves if the magic # environment variable hasn't already been set. rng_file = os.path.join(os.path.dirname(sys.argv[0]), "myrpki.rng") if not os.getenv("MYRPKI_RNG") and os.path.exists(rng_file): os.putenv("MYRPKI_RNG", rng_file) for d in map(entitydb, ("children", "parents", "repositories", "pubclients")): if not os.path.exists(d): os.makedirs(d) one_year_from_now = str(rpki.sundial.now() + rpki.sundial.timedelta(days = 365)) if os.path.exists(children_csv): for child_handle, valid_until, child_resource_pemfile in rpki.myrpki.csv_reader(children_csv, columns = 3): try: e = Element("parent", valid_until = valid_until if preserve_valid_until else one_year_from_now, service_uri = "https://%s:%s/up-down/%s/%s" % (rpkid_server_host, rpkid_server_port, handle, child_handle), child_handle = child_handle, parent_handle = handle) rpki.myrpki.PEMElement(e, "bpki_resource_ta", bpki_resources_pemfile) rpki.myrpki.PEMElement(e, "bpki_server_ta", bpki_servers_pemfile) rpki.myrpki.PEMElement(e, "bpki_child_ta", child_resource_pemfile) rpki.myrpki.etree_write(e, entitydb("children", "%s.xml" % child_handle)) except IOError: pass if os.path.exists(parents_csv): for parent_handle, parent_service_uri, parent_cms_pemfile, parent_https_pemfile, parent_myhandle, parent_sia_base in rpki.myrpki.csv_reader(parents_csv, columns = 6): try: e = Element("parent", valid_until = one_year_from_now, service_uri = parent_service_uri, child_handle = parent_myhandle, parent_handle = parent_handle) rpki.myrpki.PEMElement(e, "bpki_resource_ta", parent_cms_pemfile) rpki.myrpki.PEMElement(e, "bpki_server_ta", parent_https_pemfile) rpki.myrpki.PEMElement(e, "bpki_child_ta", bpki_resources_pemfile) rpki.myrpki.etree_write(e, entitydb("parents", "%s.xml" % parent_handle)) client_handle = "/".join(parent_sia_base.rstrip("/").split("/")[3:]) assert client_handle.startswith(repository_handle) e = Element("repository", parent_handle = parent_handle, client_handle = client_handle, service_uri = "%s/client/%s" % (pubd_base.rstrip("/"), client_handle), sia_base = parent_sia_base, type = "confirmed") rpki.myrpki.PEMElement(e, "bpki_server_ta", repository_bpki_certificate) rpki.myrpki.PEMElement(e, "bpki_client_ta", bpki_resources_pemfile) SubElement(e, "contact_info").text = "Automatically generated by convert-csv.py" rpki.myrpki.etree_write(e, entitydb("repositories", "%s.xml" % parent_handle)) except IOError: pass if os.path.exists(pubclients_csv): for client_handle, client_resource_pemfile, client_sia_base in rpki.myrpki.csv_reader(pubclients_csv, columns = 3): try: parent_handle = client_handle.split("/")[-2] if "/" in client_handle else handle e = Element("repository", parent_handle = parent_handle, client_handle = client_handle, service_uri = "https://%s:%s/client/%s" % (pubd_server_host, pubd_server_port, client_handle), sia_base = client_sia_base, type = "confirmed") rpki.myrpki.PEMElement(e, "bpki_server_ta", bpki_servers_pemfile) rpki.myrpki.PEMElement(e, "bpki_client_ta", client_resource_pemfile) SubElement(e, "contact_info").text = "Automatically generated by convert-csv.py" rpki.myrpki.etree_write(e, entitydb("pubclients", "%s.xml" % client_handle.replace("/", "."))) except IOError: pass f1dbdf
eeb44fce
f0f1dbdf
7e30343e

eeb44fce

f0f1dbdf
eeb44fce










f0f1dbdf
a18aac9c









































d94704d2
a18aac9c
























302d3784
























d001195c
eeb44fce


a18aac9c



eeb44fce







a18aac9c
eeb44fce

7e30343e
eeb44fce
7e30343e
eeb44fce

a18aac9c

eeb44fce

eeb44fce
a18aac9c





eeb44fce

































a18aac9c




eeb44fce





7e30343e
7e30343e
eeb44fce
7e30343e
eeb44fce
7e30343e
eeb44fce

7e30343e
eeb44fce
7e30343e
eeb44fce
7e30343e
eeb44fce




7e30343e
eeb44fce














7e30343e
eeb44fce



7e30343e
eeb44fce




7e30343e
eeb44fce



















d94704d2
302d3784
d94704d2

eeb44fce

d94704d2
302d3784
d94704d2

a18aac9c


eeb44fce


















a18aac9c
eeb44fce

















a18aac9c
eeb44fce




302d3784


eeb44fce








a18aac9c







eeb44fce






7e30343e
7e30343e


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