gstreamer/ext/dtls/gstdtlscertificate.c

325 lines
8.6 KiB
C
Raw Normal View History

/*
* Copyright (c) 2014, Ericsson AB. All rights reserved.
*
* 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 above 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.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT HOLDER 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h>
#include "gstdtlscertificate.h"
#include "gstdtlsagent.h"
#ifdef __APPLE__
# define __AVAILABILITYMACROS__
# define DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER
#endif
#include <openssl/ssl.h>
2015-03-16 16:48:43 +00:00
GST_DEBUG_CATEGORY_STATIC (gst_dtls_certificate_debug);
#define GST_CAT_DEFAULT gst_dtls_certificate_debug
2015-03-16 16:48:43 +00:00
G_DEFINE_TYPE_WITH_CODE (GstDtlsCertificate, gst_dtls_certificate,
G_TYPE_OBJECT, GST_DEBUG_CATEGORY_INIT (gst_dtls_certificate_debug,
"dtlscertificate", 0, "DTLS Certificate"));
2015-03-16 16:48:43 +00:00
#define GST_DTLS_CERTIFICATE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), GST_TYPE_DTLS_CERTIFICATE, GstDtlsCertificatePrivate))
2015-03-16 16:34:05 +00:00
enum
{
PROP_0,
PROP_PEM,
NUM_PROPERTIES
};
static GParamSpec *properties[NUM_PROPERTIES];
#define DEFAULT_PEM NULL
2015-03-16 16:48:43 +00:00
struct _GstDtlsCertificatePrivate
2015-03-16 16:34:05 +00:00
{
X509 *x509;
EVP_PKEY *private_key;
2015-03-16 16:34:05 +00:00
gchar *pem;
};
2015-03-16 16:48:43 +00:00
static void gst_dtls_certificate_finalize (GObject * gobject);
static void gst_dtls_certificate_set_property (GObject *, guint prop_id,
2015-03-16 16:34:05 +00:00
const GValue *, GParamSpec *);
2015-03-16 16:48:43 +00:00
static void gst_dtls_certificate_get_property (GObject *, guint prop_id,
2015-03-16 16:34:05 +00:00
GValue *, GParamSpec *);
2015-03-16 16:48:43 +00:00
static void init_generated (GstDtlsCertificate *);
static void init_from_pem_string (GstDtlsCertificate *, const gchar * pem);
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
gst_dtls_certificate_class_init (GstDtlsCertificateClass * klass)
{
2015-03-16 16:34:05 +00:00
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
2015-03-16 16:48:43 +00:00
g_type_class_add_private (klass, sizeof (GstDtlsCertificatePrivate));
2015-03-16 16:48:43 +00:00
gobject_class->set_property = gst_dtls_certificate_set_property;
gobject_class->get_property = gst_dtls_certificate_get_property;
2015-03-16 16:34:05 +00:00
properties[PROP_PEM] =
g_param_spec_string ("pem",
"Pem string",
"A string containing a X509 certificate and RSA private key in PEM format",
DEFAULT_PEM,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
2015-03-16 16:34:05 +00:00
g_object_class_install_properties (gobject_class, NUM_PROPERTIES, properties);
2015-03-16 16:48:43 +00:00
_gst_dtls_init_openssl ();
2015-03-16 16:48:43 +00:00
gobject_class->finalize = gst_dtls_certificate_finalize;
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
gst_dtls_certificate_init (GstDtlsCertificate * self)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificatePrivate *priv = GST_DTLS_CERTIFICATE_GET_PRIVATE (self);
2015-03-16 16:34:05 +00:00
self->priv = priv;
2015-03-16 16:34:05 +00:00
priv->x509 = NULL;
priv->private_key = NULL;
priv->pem = NULL;
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
gst_dtls_certificate_finalize (GObject * gobject)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificatePrivate *priv = GST_DTLS_CERTIFICATE (gobject)->priv;
2015-03-16 16:34:05 +00:00
X509_free (priv->x509);
priv->x509 = NULL;
2015-03-16 16:34:05 +00:00
EVP_PKEY_free (priv->private_key);
priv->private_key = NULL;
2015-03-16 16:34:05 +00:00
g_free (priv->pem);
priv->pem = NULL;
2015-03-16 16:48:43 +00:00
G_OBJECT_CLASS (gst_dtls_certificate_parent_class)->finalize (gobject);
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
gst_dtls_certificate_set_property (GObject * object, guint prop_id,
2015-03-16 16:34:05 +00:00
const GValue * value, GParamSpec * pspec)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificate *self = GST_DTLS_CERTIFICATE (object);
2015-03-16 16:34:05 +00:00
const gchar *pem;
2015-03-16 16:34:05 +00:00
switch (prop_id) {
case PROP_PEM:
2015-03-16 16:34:05 +00:00
pem = g_value_get_string (value);
if (pem) {
init_from_pem_string (self, pem);
} else {
init_generated (self);
}
break;
default:
2015-03-16 16:34:05 +00:00
G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
}
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
gst_dtls_certificate_get_property (GObject * object, guint prop_id,
2015-03-16 16:34:05 +00:00
GValue * value, GParamSpec * pspec)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificate *self = GST_DTLS_CERTIFICATE (object);
2015-03-16 16:34:05 +00:00
switch (prop_id) {
case PROP_PEM:
2015-03-16 16:34:05 +00:00
g_return_if_fail (self->priv->pem);
g_value_set_string (value, self->priv->pem);
break;
default:
2015-03-16 16:34:05 +00:00
G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
}
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
init_generated (GstDtlsCertificate * self)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificatePrivate *priv = self->priv;
2015-03-16 16:34:05 +00:00
RSA *rsa;
X509_NAME *name = NULL;
g_return_if_fail (!priv->x509);
g_return_if_fail (!priv->private_key);
priv->private_key = EVP_PKEY_new ();
if (!priv->private_key) {
GST_WARNING_OBJECT (self, "failed to create private key");
2015-03-16 16:34:05 +00:00
return;
}
priv->x509 = X509_new ();
if (!priv->x509) {
GST_WARNING_OBJECT (self, "failed to create certificate");
2015-03-16 16:34:05 +00:00
EVP_PKEY_free (priv->private_key);
priv->private_key = NULL;
return;
}
rsa = RSA_generate_key (2048, RSA_F4, NULL, NULL);
if (!rsa) {
GST_WARNING_OBJECT (self, "failed to generate RSA");
2015-03-16 16:34:05 +00:00
EVP_PKEY_free (priv->private_key);
priv->private_key = NULL;
X509_free (priv->x509);
priv->x509 = NULL;
return;
}
if (!EVP_PKEY_assign_RSA (priv->private_key, rsa)) {
GST_WARNING_OBJECT (self, "failed to assign RSA");
2015-03-16 16:34:05 +00:00
RSA_free (rsa);
rsa = NULL;
2015-03-16 16:34:05 +00:00
EVP_PKEY_free (priv->private_key);
priv->private_key = NULL;
X509_free (priv->x509);
priv->x509 = NULL;
return;
}
rsa = NULL;
X509_set_version (priv->x509, 2);
ASN1_INTEGER_set (X509_get_serialNumber (priv->x509), 0);
X509_gmtime_adj (X509_get_notBefore (priv->x509), 0);
X509_gmtime_adj (X509_get_notAfter (priv->x509), 31536000L); /* A year */
X509_set_pubkey (priv->x509, priv->private_key);
name = X509_get_subject_name (priv->x509);
X509_NAME_add_entry_by_txt (name, "C", MBSTRING_ASC, (unsigned char *) "SE",
-1, -1, 0);
X509_NAME_add_entry_by_txt (name, "CN", MBSTRING_ASC,
(unsigned char *) "OpenWebRTC", -1, -1, 0);
X509_set_issuer_name (priv->x509, name);
name = NULL;
if (!X509_sign (priv->x509, priv->private_key, EVP_sha256 ())) {
GST_WARNING_OBJECT (self, "failed to sign certificate");
2015-03-16 16:34:05 +00:00
EVP_PKEY_free (priv->private_key);
priv->private_key = NULL;
X509_free (priv->x509);
priv->x509 = NULL;
return;
}
2015-03-16 16:48:43 +00:00
self->priv->pem = _gst_dtls_x509_to_pem (priv->x509);
}
2015-03-16 16:34:05 +00:00
static void
2015-03-16 16:48:43 +00:00
init_from_pem_string (GstDtlsCertificate * self, const gchar * pem)
{
2015-03-16 16:48:43 +00:00
GstDtlsCertificatePrivate *priv = self->priv;
2015-03-16 16:34:05 +00:00
BIO *bio;
2015-03-16 16:34:05 +00:00
g_return_if_fail (pem);
g_return_if_fail (!priv->x509);
g_return_if_fail (!priv->private_key);
2015-03-16 16:34:05 +00:00
bio = BIO_new_mem_buf ((gpointer) pem, -1);
g_return_if_fail (bio);
2015-03-16 16:34:05 +00:00
priv->x509 = PEM_read_bio_X509 (bio, NULL, NULL, NULL);
2015-03-16 16:34:05 +00:00
if (!priv->x509) {
GST_WARNING_OBJECT (self, "failed to read certificate from pem string");
2015-03-16 16:34:05 +00:00
return;
}
2015-03-16 16:34:05 +00:00
(void) BIO_reset (bio);
2015-03-16 16:34:05 +00:00
priv->private_key = PEM_read_bio_PrivateKey (bio, NULL, NULL, NULL);
2015-03-16 16:34:05 +00:00
BIO_free (bio);
bio = NULL;
2015-03-16 16:34:05 +00:00
if (!priv->private_key) {
GST_WARNING_OBJECT (self, "failed to read private key from pem string");
2015-03-16 16:34:05 +00:00
X509_free (priv->x509);
priv->x509 = NULL;
return;
}
2015-03-16 16:34:05 +00:00
self->priv->pem = g_strdup (pem);
}
2015-03-16 16:34:05 +00:00
gchar *
2015-03-16 16:48:43 +00:00
_gst_dtls_x509_to_pem (gpointer x509)
{
2015-03-16 16:48:43 +00:00
#define GST_DTLS_BIO_BUFFER_SIZE 4096
2015-03-16 16:34:05 +00:00
BIO *bio;
2015-03-16 16:48:43 +00:00
gchar buffer[GST_DTLS_BIO_BUFFER_SIZE] = { 0 };
2015-03-16 16:34:05 +00:00
gint len;
gchar *pem = NULL;
2015-03-16 16:34:05 +00:00
bio = BIO_new (BIO_s_mem ());
g_return_val_if_fail (bio, NULL);
2015-03-16 16:34:05 +00:00
if (!PEM_write_bio_X509 (bio, (X509 *) x509)) {
g_warn_if_reached ();
goto beach;
}
2015-03-16 16:48:43 +00:00
len = BIO_read (bio, buffer, GST_DTLS_BIO_BUFFER_SIZE);
2015-03-16 16:34:05 +00:00
if (!len) {
g_warn_if_reached ();
goto beach;
}
2015-03-16 16:34:05 +00:00
pem = g_strndup (buffer, len);
beach:
2015-03-16 16:34:05 +00:00
BIO_free (bio);
2015-03-16 16:34:05 +00:00
return pem;
}
2015-03-16 16:48:43 +00:00
GstDtlsCertificateInternalCertificate
_gst_dtls_certificate_get_internal_certificate (GstDtlsCertificate * self)
{
2015-03-16 16:48:43 +00:00
g_return_val_if_fail (GST_IS_DTLS_CERTIFICATE (self), NULL);
2015-03-16 16:34:05 +00:00
return self->priv->x509;
}
2015-03-16 16:48:43 +00:00
GstDtlsCertificateInternalKey
_gst_dtls_certificate_get_internal_key (GstDtlsCertificate * self)
{
2015-03-16 16:48:43 +00:00
g_return_val_if_fail (GST_IS_DTLS_CERTIFICATE (self), NULL);
2015-03-16 16:34:05 +00:00
return self->priv->private_key;
}