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
|
"""
Take the basic application/x-rpki messages that rpkid and friends
log and translate them into a text version that's easier to search,
without losing any of the original data. We use MH for the output
format because nmh makes a handy viewer.
$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 email.mime, email.mime.application, email.mime.text, email.mime.multipart, email.utils, email.encoders
import mailbox, POW, lxml.etree, getopt, sys
multipart = True
source_name = None
destination_name = None
mark_seen = False
kill_seen = False
def usage(ok):
print "Usage: %s [--mark] --input maildir --output mhfolder" % sys.argv[0]
print __doc__
sys.exit(0 if ok else 1)
opts, argv = getopt.getopt(sys.argv[1:], "hi:kmo:?", ["help", "input=", "kill", "mark", "output="])
for o, a in opts:
if o in ("-h", "--help", "-?"):
usage(ok = True)
elif o in ("-i", "--input"):
source_name = a
elif o in ("-m", "--mark"):
mark_seen = True
elif o in ("-o", "--output"):
destination_name = a
if argv or source_name is None or destination_name is None:
usage(ok = False)
def up_down():
msg["X-RPKI-Up-Down-Type"] = xml.get("type")
msg["X-RPKI-Up-Down-Sender"] = xml.get("sender")
msg["X-RPKI-Up-Down-Recipient"] = xml.get("recipient")
msg["Subject"] = "Up-down %s %s => %s" % (xml.get("type"), xml.get("sender"), xml.get("recipient"))
def left_right():
msg["X-RPKI-Left-Right-Type"] = xml.get("type")
msg["Subject"] = "Left-right %s" % xml.get("type")
def publication():
msg["X-RPKI-Left-Right-Type"] = xml.get("type")
msg["Subject"] = "Publication %s" % xml.get("type")
dispatch = { "{http://www.apnic.net/specs/rescerts/up-down/}message" : up_down,
"{http://www.hactrn.net/uris/rpki/left-right-spec/}msg" : left_right,
"{http://www.hactrn.net/uris/rpki/publication-spec/}msg" : publication }
destination = None
source = None
try:
destination = mailbox.MH(destination_name, factory = None, create = True)
source = mailbox.Maildir(source_name, factory = None)
for srckey, srcmsg in source.iteritems():
if "S" not in srcmsg.get_flags():
assert not srcmsg.is_multipart() and srcmsg.get_content_type() == "application/x-rpki"
payload = srcmsg.get_payload(decode = True)
cms = POW.derRead(POW.CMS_MESSAGE, payload)
txt = cms.verify(POW.X509Store(), None, POW.CMS_NOCRL | POW.CMS_NO_SIGNER_CERT_VERIFY | POW.CMS_NO_ATTR_VERIFY | POW.CMS_NO_CONTENT_VERIFY)
xml = lxml.etree.fromstring(txt)
tag = xml.tag
msg = email.mime.text.MIMEText(txt)
if multipart:
msg = email.mime.multipart.MIMEMultipart("related", None, (msg, email.mime.application.MIMEApplication(payload, "x-rpki")))
msg["X-RPKI-Tag"] = tag
for i in ("Date", "Message-ID"):
msg[i] = srcmsg[i]
if "X-RPKI-PID" in srcmsg or "X-RPKI-Object" in srcmsg:
msg["X-RPKI-PID"] = srcmsg["X-RPKI-PID"]
msg["X-RPKI-Object"] = srcmsg["X-RPKI-Object"]
else:
words = srcmsg["Subject"].split()
msg["X-RPKI-PID"] = words[1]
msg["X-RPKI-Object"] = " ".join(words[4:])
if tag in dispatch:
dispatch[tag]()
if "Subject" not in msg:
msg["Subject"] = srcmsg["Subject"]
msg.epilogue = "\n" # Force trailing newline
key = destination.add(msg)
print "Added", key
if kill_seen:
srcmsg.discard()
elif mark_seen:
srcmsg.set_subdir("cur")
srcmsg.add_flag("S")
source[srckey] = srcmsg
finally:
if destination:
destination.close()
if source:
source.close()
|