FFmpeg
Loading...
Searching...
No Matches
icecast.c
Go to the documentation of this file.
1/*
2 * Icecast protocol for FFmpeg
3 * Copyright (c) 2014 Marvin Scholz
4 *
5 * This file is part of FFmpeg.
6 *
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.
11 *
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.
16 *
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
20 */
21
22
23#include "libavutil/bprint.h"
24#include "libavutil/mem.h"
25#include "libavutil/opt.h"
26
27#include "avformat.h"
28#include "network.h"
29
30
31typedef struct IcecastContext {
32 const AVClass *class;
35 char *user;
36 // Options
39 char *genre;
41 char *name;
42 char *pass;
43 int public;
44 char *url;
46 int tls;
48
49#define DEFAULT_ICE_USER "source"
50
51#define NOT_EMPTY(s) (s && s[0])
52
53#define OFFSET(x) offsetof(IcecastContext, x)
54#define E AV_OPT_FLAG_ENCODING_PARAM
55
56static const AVOption options[] = {
57 { "ice_genre", "set stream genre", OFFSET(genre), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
58 { "ice_name", "set stream description", OFFSET(name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
59 { "ice_description", "set stream description", OFFSET(description), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
60 { "ice_url", "set stream website", OFFSET(url), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
61 { "ice_public", "set if stream is public", OFFSET(public), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
62 { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
63 { "password", "set password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
64 { "content_type", "set content-type, MUST be set if not audio/mpeg", OFFSET(content_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
65 { "legacy_icecast", "use legacy SOURCE method, for Icecast < v2.4", OFFSET(legacy_icecast), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
66 { "tls", "use a TLS connection", OFFSET(tls), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
67 { NULL }
68};
69
70
71static void cat_header(AVBPrint *bp, const char key[], const char value[])
72{
73 if (NOT_EMPTY(value)) {
74 if (strpbrk(value, "\r\n")) {
76 "Refusing to send '%s' header: value contains CR/LF\n", key);
77 return;
78 }
79 av_bprintf(bp, "%s: %s\r\n", key, value);
80 }
81}
82
84{
85 IcecastContext *s = h->priv_data;
86 ffurl_closep(&s->hd);
87 return 0;
88}
89
90static int icecast_open(URLContext *h, const char *uri, int flags)
91{
92 IcecastContext *s = h->priv_data;
93
94 // Dict to set options that we pass to the HTTP protocol
95 AVDictionary *opt_dict = NULL;
96
97 // URI part variables
98 char h_url[1024], host[1024], auth[1024], path[1024];
99 char *headers, *user = NULL;
100 int port, ret;
101 AVBPrint bp;
102
103 if (flags & AVIO_FLAG_READ)
104 return AVERROR(ENOSYS);
105
107
108 // Build header strings
109 cat_header(&bp, "Ice-Name", s->name);
110 cat_header(&bp, "Ice-Description", s->description);
111 cat_header(&bp, "Ice-URL", s->url);
112 cat_header(&bp, "Ice-Genre", s->genre);
113 cat_header(&bp, "Ice-Public", s->public ? "1" : "0");
114 if (!av_bprint_is_complete(&bp)) {
116 return AVERROR(ENOMEM);
117 }
118 if ((ret = av_bprint_finalize(&bp, &headers)) < 0)
119 return ret;
120
121 // Set options
122 av_dict_set(&opt_dict, "method", s->legacy_icecast ? "SOURCE" : "PUT", 0);
123 av_dict_set(&opt_dict, "auth_type", "basic", 0);
124 av_dict_set(&opt_dict, "headers", headers, AV_DICT_DONT_STRDUP_VAL);
125 av_dict_set(&opt_dict, "chunked_post", "0", 0);
126 av_dict_set(&opt_dict, "send_expect_100", s->legacy_icecast ? "-1" : "1", 0);
127 if (NOT_EMPTY(s->content_type))
128 av_dict_set(&opt_dict, "content_type", s->content_type, 0);
129 else
130 av_dict_set(&opt_dict, "content_type", "audio/mpeg", 0);
131 if (NOT_EMPTY(s->user_agent))
132 av_dict_set(&opt_dict, "user_agent", s->user_agent, 0);
133
134 // Parse URI
135 av_url_split(NULL, 0, auth, sizeof(auth), host, sizeof(host),
136 &port, path, sizeof(path), uri);
137
138 // Check for auth data in URI
139 if (auth[0]) {
140 char *sep = strchr(auth, ':');
141 if (sep) {
142 *sep = 0;
143 sep++;
144 if (s->pass) {
145 av_free(s->pass);
146 av_log(h, AV_LOG_WARNING, "Overwriting -password <pass> with URI password!\n");
147 }
148 if (!(s->pass = av_strdup(sep))) {
149 ret = AVERROR(ENOMEM);
150 goto cleanup;
151 }
152 }
153 if (!(user = av_strdup(auth))) {
154 ret = AVERROR(ENOMEM);
155 goto cleanup;
156 }
157 }
158
159 // Build new authstring
160 snprintf(auth, sizeof(auth),
161 "%s:%s",
162 user ? user : DEFAULT_ICE_USER,
163 s->pass ? s->pass : "");
164
165 // Check for mountpoint (path)
166 if (!path[0] || strcmp(path, "/") == 0) {
167 av_log(h, AV_LOG_ERROR, "No mountpoint (path) specified!\n");
168 ret = AVERROR(EIO);
169 goto cleanup;
170 }
171
172 // Build new URI for passing to http protocol
173 ff_url_join(h_url, sizeof(h_url),
174 s->tls ? "https" : "http",
175 auth, host, port, "%s", path);
176 // Finally open http proto handler
178 &opt_dict, h->protocol_whitelist, h->protocol_blacklist, h);
179
180cleanup:
181 av_freep(&user);
182 av_dict_free(&opt_dict);
183
184 return ret;
185}
186
187static int icecast_write(URLContext *h, const uint8_t *buf, int size)
188{
189 IcecastContext *s = h->priv_data;
190 if (!s->send_started) {
191 s->send_started = 1;
192 if (!s->content_type && size >= 8) {
193 static const uint8_t oggs[4] = { 0x4F, 0x67, 0x67, 0x53 };
194 static const uint8_t webm[4] = { 0x1A, 0x45, 0xDF, 0xA3 };
195 static const uint8_t opus[8] = { 0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64 };
196 if (memcmp(buf, oggs, sizeof(oggs)) == 0) {
197 av_log(h, AV_LOG_WARNING, "Streaming Ogg but appropriate content type NOT set!\n");
198 av_log(h, AV_LOG_WARNING, "Set it with -content_type application/ogg\n");
199 } else if (memcmp(buf, opus, sizeof(opus)) == 0) {
200 av_log(h, AV_LOG_WARNING, "Streaming Opus but appropriate content type NOT set!\n");
201 av_log(h, AV_LOG_WARNING, "Set it with -content_type audio/ogg\n");
202 } else if (memcmp(buf, webm, sizeof(webm)) == 0) {
203 av_log(h, AV_LOG_WARNING, "Streaming WebM but appropriate content type NOT set!\n");
204 av_log(h, AV_LOG_WARNING, "Set it with -content_type video/webm\n");
205 } else {
206 av_log(h, AV_LOG_WARNING, "It seems you are streaming an unsupported format.\n");
207 av_log(h, AV_LOG_WARNING, "It might work, but is not officially supported in Icecast!\n");
208 }
209 }
210 }
211 return ffurl_write(s->hd, buf, size);
212}
213
215 .class_name = "icecast",
216 .item_name = av_default_item_name,
217 .option = options,
218 .version = LIBAVUTIL_VERSION_INT,
219};
220
222 .name = "icecast",
223 .url_open = icecast_open,
224 .url_write = icecast_write,
225 .url_close = icecast_close,
226 .priv_data_size = sizeof(IcecastContext),
227 .priv_data_class = &icecast_context_class,
229};
#define E
Definition avdct.c:34
Main libavformat public API header.
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
Definition avio.c:461
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
Definition avio.c:656
#define AVIO_FLAG_READ
read-only
Definition avio.h:617
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
Definition avio.h:619
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition bprint.c:122
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition bprint.c:69
AVBPrint public header.
#define AV_BPRINT_SIZE_AUTOMATIC
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
double value
Definition eval.c:102
const char * key
static av_cold void cleanup(FlashSV2Context *s)
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition opt.h:326
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
Definition utils.c:361
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition bprint.h:218
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition bprint.c:235
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition dict.c:233
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition dict.h:79
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition dict.c:86
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
#define NOT_EMPTY(s)
Definition icecast.c:51
static int icecast_write(URLContext *h, const uint8_t *buf, int size)
Definition icecast.c:187
static void cat_header(AVBPrint *bp, const char key[], const char value[])
Definition icecast.c:71
static int icecast_open(URLContext *h, const char *uri, int flags)
Definition icecast.c:90
static const AVClass icecast_context_class
Definition icecast.c:214
#define OFFSET(x)
Definition icecast.c:53
static int icecast_close(URLContext *h)
Definition icecast.c:83
const URLProtocol ff_icecast_protocol
Definition icecast.c:221
#define DEFAULT_ICE_USER
Definition icecast.c:49
Memory handling functions.
#define av_strdup(s)
Definition ops_static.c:55
AVOptions.
const char * name
Definition qsvenc.c:142
#define snprintf
Definition snprintf.h:34
Describe the class of an AVClass context structure.
Definition log.h:76
AVOption.
Definition opt.h:428
char * user_agent
Definition icecast.c:45
int send_started
Definition icecast.c:34
char * pass
Definition icecast.c:42
int legacy_icecast
Definition icecast.c:40
char * url
Definition icecast.c:44
char * name
Definition icecast.c:41
URLContext * hd
Definition icecast.c:33
char * user
Definition icecast.c:35
char * description
Definition icecast.c:38
char * content_type
Definition icecast.c:37
char * genre
Definition icecast.c:39
#define av_free(p)
#define av_freep(p)
#define av_log(a,...)
int size
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
Definition url.c:40
static int ffurl_write(URLContext *h, const uint8_t *buf, int size)
Write size bytes from buf to the resource accessed by h.
Definition url.h:204
#define URL_PROTOCOL_FLAG_NETWORK
Definition url.h:33