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
|
# $Id$
#
# Copyright (C) 2015-2016 Parsons Government Services ("PARSONS")
# Portions 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 PARSONS, DRL, ISC, AND ARIN
# DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT
# SHALL PARSONS, 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.
"""
RPKI "left-right" protocol.
"""
import logging
import rpki.x509
import rpki.exceptions
import rpki.up_down
import rpki.relaxng
import rpki.sundial
import rpki.log
import rpki.publication
import rpki.rpkid_tasks
logger = logging.getLogger(__name__)
xmlns = rpki.relaxng.left_right.xmlns
nsmap = rpki.relaxng.left_right.nsmap
version = rpki.relaxng.left_right.version
tag_bpki_cert = xmlns + "bpki_cert"
tag_bpki_glue = xmlns + "bpki_glue"
tag_bsc = xmlns + "bsc"
tag_child = xmlns + "child"
tag_list_ee_certificate_requests = xmlns + "list_ee_certificate_requests"
tag_list_ghostbuster_requests = xmlns + "list_ghostbuster_requests"
tag_list_published_objects = xmlns + "list_published_objects"
tag_list_received_resources = xmlns + "list_received_resources"
tag_list_resources = xmlns + "list_resources"
tag_list_roa_requests = xmlns + "list_roa_requests"
tag_msg = xmlns + "msg"
tag_parent = xmlns + "parent"
tag_pkcs10 = xmlns + "pkcs10"
tag_pkcs10_request = xmlns + "pkcs10_request"
tag_report_error = xmlns + "report_error"
tag_repository = xmlns + "repository"
tag_rpki_root_cert = xmlns + "rpki_root_cert"
tag_tenant = xmlns + "tenant"
tag_signing_cert = xmlns + "signing_cert"
tag_signing_cert_crl = xmlns + "signing_cert_crl"
## @var content_type
# Content type to use when sending left-right queries
content_type = "application/x-rpki"
## @var allowed_content_types
# Content types we consider acceptable for incoming left-right
# queries.
allowed_content_types = (content_type,)
class cms_msg(rpki.x509.XML_CMS_object):
"""
CMS-signed left-right PDU.
"""
encoding = "us-ascii"
schema = rpki.relaxng.left_right
|