/* ssl/ssl_stat.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #include #include "ssl_locl.h" const char *SSL_state_string_long(const SSL *s) { const char *str; switch (s->state) { case SSL_ST_BEFORE: str="before SSL initialization"; break; case SSL_ST_ACCEPT: str="before accept initialization"; break; case SSL_ST_CONNECT: str="before connect initialization"; break; case SSL_ST_OK: str="SSL negotiation finished successfully"; break; case SSL_ST_RENEGOTIATE: str="SSL renegotiate ciphers"; break; case SSL_ST_BEFORE|SSL_ST_CONNECT: str="before/connect initialization"; break; case SSL_ST_OK|SSL_ST_CONNECT: str="ok/connect SSL initialization"; break; case SSL_ST_BEFORE|SSL_ST_ACCEPT: str="before/accept initialization"; break; case SSL_ST_OK|SSL_ST_ACCEPT: str="ok/accept SSL initialization"; break; #ifndef OPENSSL_NO_SSL2 case SSL2_ST_CLIENT_START_ENCRYPTION: str="SSLv2 client start encryption"; break; case SSL2_ST_SERVER_START_ENCRYPTION: str="SSLv2 server start encryption"; break; case SSL2_ST_SEND_CLIENT_HELLO_A: str="SSLv2 write client hello A"; break; case SSL2_ST_SEND_CLIENT_HELLO_B: str="SSLv2 write client hello B"; break; case SSL2_ST_GET_SERVER_HELLO_A: str="SSLv2 read server hello A"; break; case SSL2_ST_GET_SERVER_HELLO_B: str="SSLv2 read server hello B"; break; case SSL2_ST_SEND_CLIENT_MASTER_KEY_A: str="SSLv2 write client master key A"; break; case SSL2_ST_SEND_CLIENT_MASTER_KEY_B: str="SSLv2 write client master key B"; break; case SSL2_ST_SEND_CLIENT_FINISHED_A: str="SSLv2 write client finished A"; break; case SSL2_ST_SEND_CLIENT_FINISHED_B: str="SSLv2 write client finished B"; break; c
"""
Parse IANA XML data and write out just what we need to generate a root
cert for Pseudo-RIPE.

$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 sys, lxml.etree, rpki.myrpki

def ns(tag):
  return "{http://www.iana.org/assignments}" + tag

tag_registry    = ns("registry")
tag_description = ns("description")
tag_designation = ns("designation")
tag_record      = ns("record")
tag_number      = ns("number")
tag_prefix      = ns("prefix")

asn_xml  = lxml.etree.parse("as-numbers.xml").getroot()
ipv4_xml = lxml.etree.parse("ipv4-address-space.xml").getroot()
ipv6_xml = lxml.etree.parse("ipv6-unicast-address-assignments.xml").getroot()

asns     = rpki.myrpki.csv_writer("asns.csv")
prefixes = rpki.myrpki.csv_writer("prefixes.csv")

for record in asn_xml.getiterator(tag_record):
  if record.findtext(tag_description) == "Assigned by RIPE NCC":
    asns.writerow(("RIPE", record.findtext(tag_number)))
    
for record in ipv4_xml.getiterator(tag_record):
  if record.findtext(tag_designation) in ("RIPE NCC", "Administered by RIPE NCC"):
    prefix = record.findtext(tag_prefix)
    p, l = prefix.split("/")
    assert l == "8", "Violated /8 assumption: %r" % prefix
    prefixes.writerow(("RIPE", "%d.0.0.0/8" % int(p)))
    
for record in ipv6_xml.getiterator(tag_record):
  if record.findtext(tag_description) == "RIPE NCC":
    prefixes.writerow(("RIPE", record.findtext(tag_prefix)))

asns.close()
prefixes.close()
U"; break; case SSL3_AD_ILLEGAL_PARAMETER: str="IP"; break; case TLS1_AD_DECRYPTION_FAILED: str="DC"; break; case TLS1_AD_RECORD_OVERFLOW: str="RO"; break; case TLS1_AD_UNKNOWN_CA: str="CA"; break; case TLS1_AD_ACCESS_DENIED: str="AD"; break; case TLS1_AD_DECODE_ERROR: str="DE"; break; case TLS1_AD_DECRYPT_ERROR: str="CY"; break; case TLS1_AD_EXPORT_RESTRICTION: str="ER"; break; case TLS1_AD_PROTOCOL_VERSION: str="PV"; break; case TLS1_AD_INSUFFICIENT_SECURITY: str="IS"; break; case TLS1_AD_INTERNAL_ERROR: str="IE"; break; case TLS1_AD_USER_CANCELLED: str="US"; break; case TLS1_AD_NO_RENEGOTIATION: str="NR"; break; default: str="UK"; break; } return(str); } const char *SSL_alert_desc_string_long(int value) { const char *str; switch (value & 0xff) { case SSL3_AD_CLOSE_NOTIFY: str="close notify"; break; case SSL3_AD_UNEXPECTED_MESSAGE: str="unexpected_message"; break; case SSL3_AD_BAD_RECORD_MAC: str="bad record mac"; break; case SSL3_AD_DECOMPRESSION_FAILURE: str="decompression failure"; break; case SSL3_AD_HANDSHAKE_FAILURE: str="handshake failure"; break; case SSL3_AD_NO_CERTIFICATE: str="no certificate"; break; case SSL3_AD_BAD_CERTIFICATE: str="bad certificate"; break; case SSL3_AD_UNSUPPORTED_CERTIFICATE: str="unsupported certificate"; break; case SSL3_AD_CERTIFICATE_REVOKED: str="certificate revoked"; break; case SSL3_AD_CERTIFICATE_EXPIRED: str="certificate expired"; break; case SSL3_AD_CERTIFICATE_UNKNOWN: str="certificate unknown"; break; case SSL3_AD_ILLEGAL_PARAMETER: str="illegal parameter"; break; case TLS1_AD_DECRYPTION_FAILED: str="decryption failed"; break; case TLS1_AD_RECORD_OVERFLOW: str="record overflow"; break; case TLS1_AD_UNKNOWN_CA: str="unknown CA"; break; case TLS1_AD_ACCESS_DENIED: str="access denied"; break; case TLS1_AD_DECODE_ERROR: str="decode error"; break; case TLS1_AD_DECRYPT_ERROR: str="decrypt error"; break; case TLS1_AD_EXPORT_RESTRICTION: str="export restriction"; break; case TLS1_AD_PROTOCOL_VERSION: str="protocol version"; break; case TLS1_AD_INSUFFICIENT_SECURITY: str="insufficient security"; break; case TLS1_AD_INTERNAL_ERROR: str="internal error"; break; case TLS1_AD_USER_CANCELLED: str="user canceled"; break; case TLS1_AD_NO_RENEGOTIATION: str="no renegotiation"; break; default: str="unknown"; break; } return(str); } const char *SSL_rstate_string(const SSL *s) { const char *str; switch (s->rstate) { case SSL_ST_READ_HEADER:str="RH"; break; case SSL_ST_READ_BODY: str="RB"; break; case SSL_ST_READ_DONE: str="RD"; break; default: str="unknown"; break; } return(str); }