2 * SRTP network protocol
3 * Copyright (c) 2012 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
22 #include "libavutil/opt.h"
24 #include "avio_internal.h"
31 typedef struct SRTPProtoContext {
34 const char *out_suite, *out_params;
35 const char *in_suite, *in_params;
36 struct SRTPContext srtp_out, srtp_in;
37 uint8_t encryptbuf[RTP_MAX_PACKET_LENGTH];
40 #define D AV_OPT_FLAG_DECODING_PARAM
41 #define E AV_OPT_FLAG_ENCODING_PARAM
42 static const AVOption options[] = {
43 { "srtp_out_suite", "", offsetof(SRTPProtoContext, out_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
44 { "srtp_out_params", "", offsetof(SRTPProtoContext, out_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
45 { "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
46 { "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
50 static const AVClass srtp_context_class = {
52 .item_name = av_default_item_name,
54 .version = LIBAVUTIL_VERSION_INT,
57 static int srtp_close(URLContext *h)
59 SRTPProtoContext *s = h->priv_data;
60 ff_srtp_free(&s->srtp_out);
61 ff_srtp_free(&s->srtp_in);
62 ffurl_close(s->rtp_hd);
67 static int srtp_open(URLContext *h, const char *uri, int flags)
69 SRTPProtoContext *s = h->priv_data;
70 char hostname[256], buf[1024], path[1024];
73 if (s->out_suite && s->out_params)
74 if ((ret = ff_srtp_set_crypto(&s->srtp_out, s->out_suite, s->out_params)) < 0)
76 if (s->in_suite && s->in_params)
77 if ((ret = ff_srtp_set_crypto(&s->srtp_in, s->in_suite, s->in_params)) < 0)
80 av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &rtp_port,
81 path, sizeof(path), uri);
82 ff_url_join(buf, sizeof(buf), "rtp", NULL, hostname, rtp_port, "%s", path);
83 if ((ret = ffurl_open_whitelist(&s->rtp_hd, buf, flags, &h->interrupt_callback,
84 NULL, h->protocol_whitelist, h->protocol_blacklist)) < 0)
87 h->max_packet_size = FFMIN(s->rtp_hd->max_packet_size,
88 sizeof(s->encryptbuf)) - 14;
97 static int srtp_read(URLContext *h, uint8_t *buf, int size)
99 SRTPProtoContext *s = h->priv_data;
102 ret = ffurl_read(s->rtp_hd, buf, size);
103 if (ret > 0 && s->srtp_in.aes) {
104 if (ff_srtp_decrypt(&s->srtp_in, buf, &ret) < 0)
110 static int srtp_write(URLContext *h, const uint8_t *buf, int size)
112 SRTPProtoContext *s = h->priv_data;
113 if (!s->srtp_out.aes)
114 return ffurl_write(s->rtp_hd, buf, size);
115 size = ff_srtp_encrypt(&s->srtp_out, buf, size, s->encryptbuf,
116 sizeof(s->encryptbuf));
119 return ffurl_write(s->rtp_hd, s->encryptbuf, size);
122 static int srtp_get_file_handle(URLContext *h)
124 SRTPProtoContext *s = h->priv_data;
125 return ffurl_get_file_handle(s->rtp_hd);
128 static int srtp_get_multi_file_handle(URLContext *h, int **handles,
131 SRTPProtoContext *s = h->priv_data;
132 return ffurl_get_multi_file_handle(s->rtp_hd, handles, numhandles);
135 const URLProtocol ff_srtp_protocol = {
137 .url_open = srtp_open,
138 .url_read = srtp_read,
139 .url_write = srtp_write,
140 .url_close = srtp_close,
141 .url_get_file_handle = srtp_get_file_handle,
142 .url_get_multi_file_handle = srtp_get_multi_file_handle,
143 .priv_data_size = sizeof(SRTPProtoContext),
144 .priv_data_class = &srtp_context_class,
145 .flags = URL_PROTOCOL_FLAG_NETWORK,