# $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 publication protocol.
"""
import logging
import rpki.x509
import rpki.exceptions
import rpki.relaxng
logger = logging.getLogger(__name__)
nsmap = rpki.relaxng.publication.nsmap
version = rpki.relaxng.publication.version
tag_msg = rpki.relaxng.publication.xmlns + "msg"
tag_list = rpki.relaxng.publication.xmlns + "list"
tag_publish = rpki.relaxng.publication.xmlns + "publish"
tag_withdraw = rpki.relaxng.publication.xmlns + "withdraw"
tag_report_error = rpki.relaxng.publication.xmlns + "report_error"
## @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,)
def raise_if_error(pdu):
"""
Raise an appropriate error if this is a PDU.
As a convenience, this will also accept a PDU and raise an
appropriate error if it contains any PDUs or if
the is not a reply.
"""
if pdu.tag == tag_report_error:
code = pdu.get("error_code")
logger.debug(" code %r", code)
e = getattr(rpki.exceptions, code, None)
if e is not None and issubclass(e, rpki.exceptions.RPKI_Exception):
raise e(pdu.text)
else:
raise rpki.exceptions.BadPublicationReply("Unexpected response from pubd: %r, %r" % (code, pdu))
if pdu.tag == tag_msg:
if pdu.get("type") != "reply":
raise rpki.exceptions.BadPublicationReply("Unexpected response from pubd: expected reply, got %r" % pdu.get("type"))
for p in pdu:
raise_if_error(p)
class cms_msg(rpki.x509.XML_CMS_object):
"""
CMS-signed publication PDU.
"""
encoding = "us-ascii"
schema = rpki.relaxng.publication