#include #include #include #include #include #include #include "certificates.h" #include "exceptions.h" using std::list; using std::string; using std::stringstream; using std::vector; using boost::shared_ptr; using namespace libdcp; /** @param c X509 certificate, which this object will take ownership of */ Certificate::Certificate (X509* c) : _certificate (c) { } Certificate::~Certificate () { X509_free (_certificate); } string Certificate::certificate () const { BIO* bio = BIO_new (BIO_s_mem ()); if (!bio) { throw MiscError ("could not create memory BIO"); } PEM_write_bio_X509 (bio, _certificate); string s; char* data; long int const data_length = BIO_get_mem_data (bio, &data); for (long int i = 0; i < data_length; ++i) { s += data[i]; } BIO_free (bio); boost::replace_all (s, "-----BEGIN CERTIFICATE-----\n", ""); boost::replace_all (s, "\n-----END CERTIFICATE-----\n", ""); return s; } string Certificate::issuer () const { X509_NAME* n = X509_get_issuer_name (_certificate); assert (n); char b[256]; X509_NAME_oneline (n, b, 256); return b; } string Certificate::name_for_xml (string const & n) { stringstream x; vector p; boost::split (p, n, boost::is_any_of ("/")); for (vector::const_reverse_iterator i = p.rbegin(); i != p.rend(); ++i) { x << *i << ","; } string s = x.str(); boost::replace_all (s, "+", "\\+"); return s.substr(0, s.length() - 2); } string Certificate::subject () const { X509_NAME* n = X509_get_subject_name (_certificate); assert (n); char b[256]; X509_NAME_oneline (n, b, 256); return b; } string Certificate::serial () const { ASN1_INTEGER* s = X509_get_serialNumber (_certificate); assert (s); BIGNUM* b = ASN1_INTEGER_to_BN (s, 0); char* c = BN_bn2dec (b); BN_free (b); string st (c); OPENSSL_free (c); return st; } /** @param filename Text file of PEM-format certificates, * in the order: * * 1. self-signed root certificate * 2. intermediate certificate signed by root certificate * ... * n. leaf certificate signed by previous intermediate. */ CertificateChain::CertificateChain (string const & filename) { FILE* f = fopen (filename.c_str(), "r"); if (!f) { throw FileError ("could not open file", filename); } while (1) { X509* c = 0; if (!PEM_read_X509 (f, &c, 0, 0)) { break; } _certificates.push_back (shared_ptr (new Certificate (c))); } } shared_ptr CertificateChain::root () const { assert (!_certificates.empty()); return _certificates.front (); } shared_ptr CertificateChain::leaf () const { assert (_certificates.size() >= 2); return _certificates.back (); } list > CertificateChain::leaf_to_root () const { list > c = _certificates; c.reverse (); return c; }