3 * Copyright (c) 2011 Martin Storsjo
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <gnutls/gnutls.h>
25 #include <gnutls/x509.h>
30 #include "os_support.h"
33 #include "libavcodec/internal.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/parseutils.h"
38 #if HAVE_THREADS && GNUTLS_VERSION_NUMBER <= 0x020b00
40 #include "libavutil/thread.h"
41 GCRY_THREAD_OPTION_PTHREAD_IMPL;
44 typedef struct TLSContext {
47 gnutls_session_t session;
48 gnutls_certificate_credentials_t cred;
52 void ff_gnutls_init(void)
54 avpriv_lock_avformat();
55 #if HAVE_THREADS && GNUTLS_VERSION_NUMBER < 0x020b00
56 if (gcry_control(GCRYCTL_ANY_INITIALIZATION_P) == 0)
57 gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
60 avpriv_unlock_avformat();
63 void ff_gnutls_deinit(void)
65 avpriv_lock_avformat();
66 gnutls_global_deinit();
67 avpriv_unlock_avformat();
70 static int print_tls_error(URLContext *h, int ret)
74 case GNUTLS_E_INTERRUPTED:
76 case GNUTLS_E_WARNING_ALERT_RECEIVED:
77 av_log(h, AV_LOG_WARNING, "%s\n", gnutls_strerror(ret));
80 av_log(h, AV_LOG_ERROR, "%s\n", gnutls_strerror(ret));
86 static int tls_close(URLContext *h)
88 TLSContext *c = h->priv_data;
90 gnutls_bye(c->session, GNUTLS_SHUT_WR);
92 gnutls_deinit(c->session);
94 gnutls_certificate_free_credentials(c->cred);
95 if (c->tls_shared.tcp)
96 ffurl_close(c->tls_shared.tcp);
101 static ssize_t gnutls_url_pull(gnutls_transport_ptr_t transport,
102 void *buf, size_t len)
104 URLContext *h = (URLContext*) transport;
105 int ret = ffurl_read(h, buf, len);
108 if (ret == AVERROR_EXIT)
114 static ssize_t gnutls_url_push(gnutls_transport_ptr_t transport,
115 const void *buf, size_t len)
117 URLContext *h = (URLContext*) transport;
118 int ret = ffurl_write(h, buf, len);
121 if (ret == AVERROR_EXIT)
127 static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **options)
129 TLSContext *p = h->priv_data;
130 TLSShared *c = &p->tls_shared;
135 if ((ret = ff_tls_open_underlying(c, h, uri, options)) < 0)
138 gnutls_init(&p->session, c->listen ? GNUTLS_SERVER : GNUTLS_CLIENT);
139 if (!c->listen && !c->numerichost)
140 gnutls_server_name_set(p->session, GNUTLS_NAME_DNS, c->host, strlen(c->host));
141 gnutls_certificate_allocate_credentials(&p->cred);
143 ret = gnutls_certificate_set_x509_trust_file(p->cred, c->ca_file, GNUTLS_X509_FMT_PEM);
145 av_log(h, AV_LOG_ERROR, "%s\n", gnutls_strerror(ret));
147 #if GNUTLS_VERSION_NUMBER >= 0x030020
149 gnutls_certificate_set_x509_system_trust(p->cred);
151 gnutls_certificate_set_verify_flags(p->cred, c->verify ?
152 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT : 0);
153 if (c->cert_file && c->key_file) {
154 ret = gnutls_certificate_set_x509_key_file(p->cred,
155 c->cert_file, c->key_file,
156 GNUTLS_X509_FMT_PEM);
158 av_log(h, AV_LOG_ERROR,
159 "Unable to set cert/key files %s and %s: %s\n",
160 c->cert_file, c->key_file, gnutls_strerror(ret));
164 } else if (c->cert_file || c->key_file)
165 av_log(h, AV_LOG_ERROR, "cert and key required\n");
166 gnutls_credentials_set(p->session, GNUTLS_CRD_CERTIFICATE, p->cred);
167 gnutls_transport_set_pull_function(p->session, gnutls_url_pull);
168 gnutls_transport_set_push_function(p->session, gnutls_url_push);
169 gnutls_transport_set_ptr(p->session, c->tcp);
170 gnutls_priority_set_direct(p->session, "NORMAL", NULL);
171 ret = gnutls_handshake(p->session);
173 ret = print_tls_error(h, ret);
176 p->need_shutdown = 1;
178 unsigned int status, cert_list_size;
179 gnutls_x509_crt_t cert;
180 const gnutls_datum_t *cert_list;
181 if ((ret = gnutls_certificate_verify_peers2(p->session, &status)) < 0) {
182 av_log(h, AV_LOG_ERROR, "Unable to verify peer certificate: %s\n",
183 gnutls_strerror(ret));
187 if (status & GNUTLS_CERT_INVALID) {
188 av_log(h, AV_LOG_ERROR, "Peer certificate failed verification\n");
192 if (gnutls_certificate_type_get(p->session) != GNUTLS_CRT_X509) {
193 av_log(h, AV_LOG_ERROR, "Unsupported certificate type\n");
197 gnutls_x509_crt_init(&cert);
198 cert_list = gnutls_certificate_get_peers(p->session, &cert_list_size);
199 gnutls_x509_crt_import(cert, cert_list, GNUTLS_X509_FMT_DER);
200 ret = gnutls_x509_crt_check_hostname(cert, c->host);
201 gnutls_x509_crt_deinit(cert);
203 av_log(h, AV_LOG_ERROR,
204 "The certificate's owner does not match hostname %s\n", c->host);
216 static int tls_read(URLContext *h, uint8_t *buf, int size)
218 TLSContext *c = h->priv_data;
219 int ret = gnutls_record_recv(c->session, buf, size);
224 return print_tls_error(h, ret);
227 static int tls_write(URLContext *h, const uint8_t *buf, int size)
229 TLSContext *c = h->priv_data;
230 int ret = gnutls_record_send(c->session, buf, size);
235 return print_tls_error(h, ret);
238 static const AVOption options[] = {
239 TLS_COMMON_OPTIONS(TLSContext, tls_shared),
243 static const AVClass tls_class = {
245 .item_name = av_default_item_name,
247 .version = LIBAVUTIL_VERSION_INT,
250 const URLProtocol ff_tls_gnutls_protocol = {
252 .url_open2 = tls_open,
253 .url_read = tls_read,
254 .url_write = tls_write,
255 .url_close = tls_close,
256 .priv_data_size = sizeof(TLSContext),
257 .flags = URL_PROTOCOL_FLAG_NETWORK,
258 .priv_data_class = &tls_class,