]> git.sesse.net Git - ffmpeg/blob - libavformat/rtsp.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / rtsp.c
1 /*
2  * RTSP/SDP client
3  * Copyright (c) 2002 Fabrice Bellard
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 #include "libavutil/avassert.h"
23 #include "libavutil/base64.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/mathematics.h"
27 #include "libavutil/parseutils.h"
28 #include "libavutil/random_seed.h"
29 #include "libavutil/dict.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/time.h"
32 #include "avformat.h"
33 #include "avio_internal.h"
34
35 #if HAVE_POLL_H
36 #include <poll.h>
37 #endif
38 #include "internal.h"
39 #include "network.h"
40 #include "os_support.h"
41 #include "http.h"
42 #include "rtsp.h"
43
44 #include "rtpdec.h"
45 #include "rdt.h"
46 #include "rtpdec_formats.h"
47 #include "rtpenc_chain.h"
48 #include "url.h"
49 #include "rtpenc.h"
50 #include "mpegts.h"
51
52 //#define DEBUG
53
54 /* Timeout values for socket poll, in ms,
55  * and read_packet(), in seconds  */
56 #define POLL_TIMEOUT_MS 100
57 #define READ_PACKET_TIMEOUT_S 10
58 #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / POLL_TIMEOUT_MS
59 #define SDP_MAX_SIZE 16384
60 #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
61 #define DEFAULT_REORDERING_DELAY 100000
62
63 #define OFFSET(x) offsetof(RTSPState, x)
64 #define DEC AV_OPT_FLAG_DECODING_PARAM
65 #define ENC AV_OPT_FLAG_ENCODING_PARAM
66
67 #define RTSP_FLAG_OPTS(name, longname) \
68     { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
69     { "filter_src", "Only receive packets from the negotiated peer IP", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_FILTER_SRC}, 0, 0, DEC, "rtsp_flags" }, \
70     { "listen", "Wait for incoming connections", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_LISTEN}, 0, 0, DEC, "rtsp_flags" }
71
72 #define RTSP_MEDIATYPE_OPTS(name, longname) \
73     { name, longname, OFFSET(media_type_mask), AV_OPT_TYPE_FLAGS, { .i64 = (1 << (AVMEDIA_TYPE_DATA+1)) - 1 }, INT_MIN, INT_MAX, DEC, "allowed_media_types" }, \
74     { "video", "Video", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_VIDEO}, 0, 0, DEC, "allowed_media_types" }, \
75     { "audio", "Audio", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_AUDIO}, 0, 0, DEC, "allowed_media_types" }, \
76     { "data", "Data", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_DATA}, 0, 0, DEC, "allowed_media_types" }
77
78 #define RTSP_REORDERING_OPTS() \
79     { "reorder_queue_size", "Number of packets to buffer for handling of reordered packets", OFFSET(reordering_queue_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC }
80
81 const AVOption ff_rtsp_options[] = {
82     { "initial_pause",  "Don't start playing the stream immediately", OFFSET(initial_pause), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC },
83     FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
84     { "rtsp_transport", "RTSP transport protocols", OFFSET(lower_transport_mask), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC|ENC, "rtsp_transport" }, \
85     { "udp", "UDP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
86     { "tcp", "TCP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_TCP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
87     { "udp_multicast", "UDP multicast", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP_MULTICAST}, 0, 0, DEC, "rtsp_transport" },
88     { "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {.i64 = (1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
89     RTSP_FLAG_OPTS("rtsp_flags", "RTSP flags"),
90     RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
91     { "min_port", "Minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC },
92     { "max_port", "Maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC },
93     { "timeout", "Maximum timeout (in seconds) to wait for incoming connections. -1 is infinite. Implies flag listen", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, DEC },
94     RTSP_REORDERING_OPTS(),
95     { NULL },
96 };
97
98 static const AVOption sdp_options[] = {
99     RTSP_FLAG_OPTS("sdp_flags", "SDP flags"),
100     RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
101     RTSP_REORDERING_OPTS(),
102     { NULL },
103 };
104
105 static const AVOption rtp_options[] = {
106     RTSP_FLAG_OPTS("rtp_flags", "RTP flags"),
107     RTSP_REORDERING_OPTS(),
108     { NULL },
109 };
110
111 static void get_word_until_chars(char *buf, int buf_size,
112                                  const char *sep, const char **pp)
113 {
114     const char *p;
115     char *q;
116
117     p = *pp;
118     p += strspn(p, SPACE_CHARS);
119     q = buf;
120     while (!strchr(sep, *p) && *p != '\0') {
121         if ((q - buf) < buf_size - 1)
122             *q++ = *p;
123         p++;
124     }
125     if (buf_size > 0)
126         *q = '\0';
127     *pp = p;
128 }
129
130 static void get_word_sep(char *buf, int buf_size, const char *sep,
131                          const char **pp)
132 {
133     if (**pp == '/') (*pp)++;
134     get_word_until_chars(buf, buf_size, sep, pp);
135 }
136
137 static void get_word(char *buf, int buf_size, const char **pp)
138 {
139     get_word_until_chars(buf, buf_size, SPACE_CHARS, pp);
140 }
141
142 /** Parse a string p in the form of Range:npt=xx-xx, and determine the start
143  *  and end time.
144  *  Used for seeking in the rtp stream.
145  */
146 static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
147 {
148     char buf[256];
149
150     p += strspn(p, SPACE_CHARS);
151     if (!av_stristart(p, "npt=", &p))
152         return;
153
154     *start = AV_NOPTS_VALUE;
155     *end = AV_NOPTS_VALUE;
156
157     get_word_sep(buf, sizeof(buf), "-", &p);
158     av_parse_time(start, buf, 1);
159     if (*p == '-') {
160         p++;
161         get_word_sep(buf, sizeof(buf), "-", &p);
162         av_parse_time(end, buf, 1);
163     }
164 }
165
166 static int get_sockaddr(const char *buf, struct sockaddr_storage *sock)
167 {
168     struct addrinfo hints = { 0 }, *ai = NULL;
169     hints.ai_flags = AI_NUMERICHOST;
170     if (getaddrinfo(buf, NULL, &hints, &ai))
171         return -1;
172     memcpy(sock, ai->ai_addr, FFMIN(sizeof(*sock), ai->ai_addrlen));
173     freeaddrinfo(ai);
174     return 0;
175 }
176
177 #if CONFIG_RTPDEC
178 static void init_rtp_handler(RTPDynamicProtocolHandler *handler,
179                              RTSPStream *rtsp_st, AVCodecContext *codec)
180 {
181     if (!handler)
182         return;
183     codec->codec_id          = handler->codec_id;
184     rtsp_st->dynamic_handler = handler;
185     if (handler->alloc) {
186         rtsp_st->dynamic_protocol_context = handler->alloc();
187         if (!rtsp_st->dynamic_protocol_context)
188             rtsp_st->dynamic_handler = NULL;
189     }
190 }
191
192 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other params>] */
193 static int sdp_parse_rtpmap(AVFormatContext *s,
194                             AVStream *st, RTSPStream *rtsp_st,
195                             int payload_type, const char *p)
196 {
197     AVCodecContext *codec = st->codec;
198     char buf[256];
199     int i;
200     AVCodec *c;
201     const char *c_name;
202
203     /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and
204      * see if we can handle this kind of payload.
205      * The space should normally not be there but some Real streams or
206      * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
207      * have a trailing space. */
208     get_word_sep(buf, sizeof(buf), "/ ", &p);
209     if (payload_type < RTP_PT_PRIVATE) {
210         /* We are in a standard case
211          * (from http://www.iana.org/assignments/rtp-parameters). */
212         /* search into AVRtpPayloadTypes[] */
213         codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
214     }
215
216     if (codec->codec_id == AV_CODEC_ID_NONE) {
217         RTPDynamicProtocolHandler *handler =
218             ff_rtp_handler_find_by_name(buf, codec->codec_type);
219         init_rtp_handler(handler, rtsp_st, codec);
220         /* If no dynamic handler was found, check with the list of standard
221          * allocated types, if such a stream for some reason happens to
222          * use a private payload type. This isn't handled in rtpdec.c, since
223          * the format name from the rtpmap line never is passed into rtpdec. */
224         if (!rtsp_st->dynamic_handler)
225             codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
226     }
227
228     c = avcodec_find_decoder(codec->codec_id);
229     if (c && c->name)
230         c_name = c->name;
231     else
232         c_name = "(null)";
233
234     get_word_sep(buf, sizeof(buf), "/", &p);
235     i = atoi(buf);
236     switch (codec->codec_type) {
237     case AVMEDIA_TYPE_AUDIO:
238         av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name);
239         codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE;
240         codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS;
241         if (i > 0) {
242             codec->sample_rate = i;
243             avpriv_set_pts_info(st, 32, 1, codec->sample_rate);
244             get_word_sep(buf, sizeof(buf), "/", &p);
245             i = atoi(buf);
246             if (i > 0)
247                 codec->channels = i;
248             // TODO: there is a bug here; if it is a mono stream, and
249             // less than 22000Hz, faad upconverts to stereo and twice
250             // the frequency.  No problem, but the sample rate is being
251             // set here by the sdp line. Patch on its way. (rdm)
252         }
253         av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
254                codec->sample_rate);
255         av_log(s, AV_LOG_DEBUG, "audio channels set to: %i\n",
256                codec->channels);
257         break;
258     case AVMEDIA_TYPE_VIDEO:
259         av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name);
260         if (i > 0)
261             avpriv_set_pts_info(st, 32, 1, i);
262         break;
263     default:
264         break;
265     }
266     if (rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->init)
267         rtsp_st->dynamic_handler->init(s, st->index,
268                                        rtsp_st->dynamic_protocol_context);
269     return 0;
270 }
271
272 /* parse the attribute line from the fmtp a line of an sdp response. This
273  * is broken out as a function because it is used in rtp_h264.c, which is
274  * forthcoming. */
275 int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
276                                 char *value, int value_size)
277 {
278     *p += strspn(*p, SPACE_CHARS);
279     if (**p) {
280         get_word_sep(attr, attr_size, "=", p);
281         if (**p == '=')
282             (*p)++;
283         get_word_sep(value, value_size, ";", p);
284         if (**p == ';')
285             (*p)++;
286         return 1;
287     }
288     return 0;
289 }
290
291 typedef struct SDPParseState {
292     /* SDP only */
293     struct sockaddr_storage default_ip;
294     int            default_ttl;
295     int            skip_media;  ///< set if an unknown m= line occurs
296 } SDPParseState;
297
298 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
299                            int letter, const char *buf)
300 {
301     RTSPState *rt = s->priv_data;
302     char buf1[64], st_type[64];
303     const char *p;
304     enum AVMediaType codec_type;
305     int payload_type, i;
306     AVStream *st;
307     RTSPStream *rtsp_st;
308     struct sockaddr_storage sdp_ip;
309     int ttl;
310
311     av_dlog(s, "sdp: %c='%s'\n", letter, buf);
312
313     p = buf;
314     if (s1->skip_media && letter != 'm')
315         return;
316     switch (letter) {
317     case 'c':
318         get_word(buf1, sizeof(buf1), &p);
319         if (strcmp(buf1, "IN") != 0)
320             return;
321         get_word(buf1, sizeof(buf1), &p);
322         if (strcmp(buf1, "IP4") && strcmp(buf1, "IP6"))
323             return;
324         get_word_sep(buf1, sizeof(buf1), "/", &p);
325         if (get_sockaddr(buf1, &sdp_ip))
326             return;
327         ttl = 16;
328         if (*p == '/') {
329             p++;
330             get_word_sep(buf1, sizeof(buf1), "/", &p);
331             ttl = atoi(buf1);
332         }
333         if (s->nb_streams == 0) {
334             s1->default_ip = sdp_ip;
335             s1->default_ttl = ttl;
336         } else {
337             rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
338             rtsp_st->sdp_ip = sdp_ip;
339             rtsp_st->sdp_ttl = ttl;
340         }
341         break;
342     case 's':
343         av_dict_set(&s->metadata, "title", p, 0);
344         break;
345     case 'i':
346         if (s->nb_streams == 0) {
347             av_dict_set(&s->metadata, "comment", p, 0);
348             break;
349         }
350         break;
351     case 'm':
352         /* new stream */
353         s1->skip_media = 0;
354         codec_type = AVMEDIA_TYPE_UNKNOWN;
355         get_word(st_type, sizeof(st_type), &p);
356         if (!strcmp(st_type, "audio")) {
357             codec_type = AVMEDIA_TYPE_AUDIO;
358         } else if (!strcmp(st_type, "video")) {
359             codec_type = AVMEDIA_TYPE_VIDEO;
360         } else if (!strcmp(st_type, "application")) {
361             codec_type = AVMEDIA_TYPE_DATA;
362         }
363         if (codec_type == AVMEDIA_TYPE_UNKNOWN || !(rt->media_type_mask & (1 << codec_type))) {
364             s1->skip_media = 1;
365             return;
366         }
367         rtsp_st = av_mallocz(sizeof(RTSPStream));
368         if (!rtsp_st)
369             return;
370         rtsp_st->stream_index = -1;
371         dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
372
373         rtsp_st->sdp_ip = s1->default_ip;
374         rtsp_st->sdp_ttl = s1->default_ttl;
375
376         get_word(buf1, sizeof(buf1), &p); /* port */
377         rtsp_st->sdp_port = atoi(buf1);
378
379         get_word(buf1, sizeof(buf1), &p); /* protocol */
380         if (!strcmp(buf1, "udp"))
381             rt->transport = RTSP_TRANSPORT_RAW;
382
383         /* XXX: handle list of formats */
384         get_word(buf1, sizeof(buf1), &p); /* format list */
385         rtsp_st->sdp_payload_type = atoi(buf1);
386
387         if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
388             /* no corresponding stream */
389             if (rt->transport == RTSP_TRANSPORT_RAW && !rt->ts && CONFIG_RTPDEC)
390                 rt->ts = ff_mpegts_parse_open(s);
391         } else if (rt->server_type == RTSP_SERVER_WMS &&
392                    codec_type == AVMEDIA_TYPE_DATA) {
393             /* RTX stream, a stream that carries all the other actual
394              * audio/video streams. Don't expose this to the callers. */
395         } else {
396             st = avformat_new_stream(s, NULL);
397             if (!st)
398                 return;
399             st->id = rt->nb_rtsp_streams - 1;
400             rtsp_st->stream_index = st->index;
401             st->codec->codec_type = codec_type;
402             if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
403                 RTPDynamicProtocolHandler *handler;
404                 /* if standard payload type, we can find the codec right now */
405                 ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
406                 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
407                     st->codec->sample_rate > 0)
408                     avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
409                 /* Even static payload types may need a custom depacketizer */
410                 handler = ff_rtp_handler_find_by_id(
411                               rtsp_st->sdp_payload_type, st->codec->codec_type);
412                 init_rtp_handler(handler, rtsp_st, st->codec);
413                 if (handler && handler->init)
414                     handler->init(s, st->index,
415                                   rtsp_st->dynamic_protocol_context);
416             }
417         }
418         /* put a default control url */
419         av_strlcpy(rtsp_st->control_url, rt->control_uri,
420                    sizeof(rtsp_st->control_url));
421         break;
422     case 'a':
423         if (av_strstart(p, "control:", &p)) {
424             if (s->nb_streams == 0) {
425                 if (!strncmp(p, "rtsp://", 7))
426                     av_strlcpy(rt->control_uri, p,
427                                sizeof(rt->control_uri));
428             } else {
429                 char proto[32];
430                 /* get the control url */
431                 rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
432
433                 /* XXX: may need to add full url resolution */
434                 av_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
435                              NULL, NULL, 0, p);
436                 if (proto[0] == '\0') {
437                     /* relative control URL */
438                     if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/')
439                     av_strlcat(rtsp_st->control_url, "/",
440                                sizeof(rtsp_st->control_url));
441                     av_strlcat(rtsp_st->control_url, p,
442                                sizeof(rtsp_st->control_url));
443                 } else
444                     av_strlcpy(rtsp_st->control_url, p,
445                                sizeof(rtsp_st->control_url));
446             }
447         } else if (av_strstart(p, "rtpmap:", &p) && s->nb_streams > 0) {
448             /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
449             get_word(buf1, sizeof(buf1), &p);
450             payload_type = atoi(buf1);
451             rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
452             if (rtsp_st->stream_index >= 0) {
453                 st = s->streams[rtsp_st->stream_index];
454                 sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
455             }
456         } else if (av_strstart(p, "fmtp:", &p) ||
457                    av_strstart(p, "framesize:", &p)) {
458             /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */
459             // let dynamic protocol handlers have a stab at the line.
460             get_word(buf1, sizeof(buf1), &p);
461             payload_type = atoi(buf1);
462             for (i = 0; i < rt->nb_rtsp_streams; i++) {
463                 rtsp_st = rt->rtsp_streams[i];
464                 if (rtsp_st->sdp_payload_type == payload_type &&
465                     rtsp_st->dynamic_handler &&
466                     rtsp_st->dynamic_handler->parse_sdp_a_line)
467                     rtsp_st->dynamic_handler->parse_sdp_a_line(s, i,
468                         rtsp_st->dynamic_protocol_context, buf);
469             }
470         } else if (av_strstart(p, "range:", &p)) {
471             int64_t start, end;
472
473             // this is so that seeking on a streamed file can work.
474             rtsp_parse_range_npt(p, &start, &end);
475             s->start_time = start;
476             /* AV_NOPTS_VALUE means live broadcast (and can't seek) */
477             s->duration   = (end == AV_NOPTS_VALUE) ?
478                             AV_NOPTS_VALUE : end - start;
479         } else if (av_strstart(p, "IsRealDataType:integer;",&p)) {
480             if (atoi(p) == 1)
481                 rt->transport = RTSP_TRANSPORT_RDT;
482         } else if (av_strstart(p, "SampleRate:integer;", &p) &&
483                    s->nb_streams > 0) {
484             st = s->streams[s->nb_streams - 1];
485             st->codec->sample_rate = atoi(p);
486         } else {
487             if (rt->server_type == RTSP_SERVER_WMS)
488                 ff_wms_parse_sdp_a_line(s, p);
489             if (s->nb_streams > 0) {
490                 rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
491
492                 if (rt->server_type == RTSP_SERVER_REAL)
493                     ff_real_parse_sdp_a_line(s, rtsp_st->stream_index, p);
494
495                 if (rtsp_st->dynamic_handler &&
496                     rtsp_st->dynamic_handler->parse_sdp_a_line)
497                     rtsp_st->dynamic_handler->parse_sdp_a_line(s,
498                         rtsp_st->stream_index,
499                         rtsp_st->dynamic_protocol_context, buf);
500             }
501         }
502         break;
503     }
504 }
505
506 int ff_sdp_parse(AVFormatContext *s, const char *content)
507 {
508     RTSPState *rt = s->priv_data;
509     const char *p;
510     int letter;
511     /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
512      * contain long SDP lines containing complete ASF Headers (several
513      * kB) or arrays of MDPR (RM stream descriptor) headers plus
514      * "rulebooks" describing their properties. Therefore, the SDP line
515      * buffer is large.
516      *
517      * The Vorbis FMTP line can be up to 16KB - see xiph_parse_sdp_line
518      * in rtpdec_xiph.c. */
519     char buf[16384], *q;
520     SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
521
522     p = content;
523     for (;;) {
524         p += strspn(p, SPACE_CHARS);
525         letter = *p;
526         if (letter == '\0')
527             break;
528         p++;
529         if (*p != '=')
530             goto next_line;
531         p++;
532         /* get the content */
533         q = buf;
534         while (*p != '\n' && *p != '\r' && *p != '\0') {
535             if ((q - buf) < sizeof(buf) - 1)
536                 *q++ = *p;
537             p++;
538         }
539         *q = '\0';
540         sdp_parse_line(s, s1, letter, buf);
541     next_line:
542         while (*p != '\n' && *p != '\0')
543             p++;
544         if (*p == '\n')
545             p++;
546     }
547     rt->p = av_malloc(sizeof(struct pollfd)*2*(rt->nb_rtsp_streams+1));
548     if (!rt->p) return AVERROR(ENOMEM);
549     return 0;
550 }
551 #endif /* CONFIG_RTPDEC */
552
553 void ff_rtsp_undo_setup(AVFormatContext *s)
554 {
555     RTSPState *rt = s->priv_data;
556     int i;
557
558     for (i = 0; i < rt->nb_rtsp_streams; i++) {
559         RTSPStream *rtsp_st = rt->rtsp_streams[i];
560         if (!rtsp_st)
561             continue;
562         if (rtsp_st->transport_priv) {
563             if (s->oformat) {
564                 AVFormatContext *rtpctx = rtsp_st->transport_priv;
565                 av_write_trailer(rtpctx);
566                 if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
567                     uint8_t *ptr;
568                     avio_close_dyn_buf(rtpctx->pb, &ptr);
569                     av_free(ptr);
570                 } else {
571                     avio_close(rtpctx->pb);
572                 }
573                 avformat_free_context(rtpctx);
574             } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
575                 ff_rdt_parse_close(rtsp_st->transport_priv);
576             else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC)
577                 ff_rtp_parse_close(rtsp_st->transport_priv);
578         }
579         rtsp_st->transport_priv = NULL;
580         if (rtsp_st->rtp_handle)
581             ffurl_close(rtsp_st->rtp_handle);
582         rtsp_st->rtp_handle = NULL;
583     }
584 }
585
586 /* close and free RTSP streams */
587 void ff_rtsp_close_streams(AVFormatContext *s)
588 {
589     RTSPState *rt = s->priv_data;
590     int i;
591     RTSPStream *rtsp_st;
592
593     ff_rtsp_undo_setup(s);
594     for (i = 0; i < rt->nb_rtsp_streams; i++) {
595         rtsp_st = rt->rtsp_streams[i];
596         if (rtsp_st) {
597             if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
598                 rtsp_st->dynamic_handler->free(
599                     rtsp_st->dynamic_protocol_context);
600             av_free(rtsp_st);
601         }
602     }
603     av_free(rt->rtsp_streams);
604     if (rt->asf_ctx) {
605         avformat_close_input(&rt->asf_ctx);
606     }
607     if (rt->ts && CONFIG_RTPDEC)
608         ff_mpegts_parse_close(rt->ts);
609     av_free(rt->p);
610     av_free(rt->recvbuf);
611 }
612
613 int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
614 {
615     RTSPState *rt = s->priv_data;
616     AVStream *st = NULL;
617     int reordering_queue_size = rt->reordering_queue_size;
618     if (reordering_queue_size < 0) {
619         if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP || !s->max_delay)
620             reordering_queue_size = 0;
621         else
622             reordering_queue_size = RTP_REORDER_QUEUE_DEFAULT_SIZE;
623     }
624
625     /* open the RTP context */
626     if (rtsp_st->stream_index >= 0)
627         st = s->streams[rtsp_st->stream_index];
628     if (!st)
629         s->ctx_flags |= AVFMTCTX_NOHEADER;
630
631     if (s->oformat && CONFIG_RTSP_MUXER) {
632         int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, s, st,
633                                         rtsp_st->rtp_handle,
634                                         RTSP_TCP_MAX_PACKET_SIZE);
635         /* Ownership of rtp_handle is passed to the rtp mux context */
636         rtsp_st->rtp_handle = NULL;
637         if (ret < 0)
638             return ret;
639     } else if (rt->transport == RTSP_TRANSPORT_RAW) {
640         return 0; // Don't need to open any parser here
641     } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
642         rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index,
643                                             rtsp_st->dynamic_protocol_context,
644                                             rtsp_st->dynamic_handler);
645     else if (CONFIG_RTPDEC)
646         rtsp_st->transport_priv = ff_rtp_parse_open(s, st, rtsp_st->rtp_handle,
647                                          rtsp_st->sdp_payload_type,
648                                          reordering_queue_size);
649
650     if (!rtsp_st->transport_priv) {
651          return AVERROR(ENOMEM);
652     } else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC) {
653         if (rtsp_st->dynamic_handler) {
654             ff_rtp_parse_set_dynamic_protocol(rtsp_st->transport_priv,
655                                               rtsp_st->dynamic_protocol_context,
656                                               rtsp_st->dynamic_handler);
657         }
658     }
659
660     return 0;
661 }
662
663 #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
664 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
665 {
666     const char *q;
667     char *p;
668     int v;
669
670     q = *pp;
671     q += strspn(q, SPACE_CHARS);
672     v = strtol(q, &p, 10);
673     if (*p == '-') {
674         p++;
675         *min_ptr = v;
676         v = strtol(p, &p, 10);
677         *max_ptr = v;
678     } else {
679         *min_ptr = v;
680         *max_ptr = v;
681     }
682     *pp = p;
683 }
684
685 /* XXX: only one transport specification is parsed */
686 static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
687 {
688     char transport_protocol[16];
689     char profile[16];
690     char lower_transport[16];
691     char parameter[16];
692     RTSPTransportField *th;
693     char buf[256];
694
695     reply->nb_transports = 0;
696
697     for (;;) {
698         p += strspn(p, SPACE_CHARS);
699         if (*p == '\0')
700             break;
701
702         th = &reply->transports[reply->nb_transports];
703
704         get_word_sep(transport_protocol, sizeof(transport_protocol),
705                      "/", &p);
706         if (!av_strcasecmp (transport_protocol, "rtp")) {
707             get_word_sep(profile, sizeof(profile), "/;,", &p);
708             lower_transport[0] = '\0';
709             /* rtp/avp/<protocol> */
710             if (*p == '/') {
711                 get_word_sep(lower_transport, sizeof(lower_transport),
712                              ";,", &p);
713             }
714             th->transport = RTSP_TRANSPORT_RTP;
715         } else if (!av_strcasecmp (transport_protocol, "x-pn-tng") ||
716                    !av_strcasecmp (transport_protocol, "x-real-rdt")) {
717             /* x-pn-tng/<protocol> */
718             get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
719             profile[0] = '\0';
720             th->transport = RTSP_TRANSPORT_RDT;
721         } else if (!av_strcasecmp(transport_protocol, "raw")) {
722             get_word_sep(profile, sizeof(profile), "/;,", &p);
723             lower_transport[0] = '\0';
724             /* raw/raw/<protocol> */
725             if (*p == '/') {
726                 get_word_sep(lower_transport, sizeof(lower_transport),
727                              ";,", &p);
728             }
729             th->transport = RTSP_TRANSPORT_RAW;
730         }
731         if (!av_strcasecmp(lower_transport, "TCP"))
732             th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;
733         else
734             th->lower_transport = RTSP_LOWER_TRANSPORT_UDP;
735
736         if (*p == ';')
737             p++;
738         /* get each parameter */
739         while (*p != '\0' && *p != ',') {
740             get_word_sep(parameter, sizeof(parameter), "=;,", &p);
741             if (!strcmp(parameter, "port")) {
742                 if (*p == '=') {
743                     p++;
744                     rtsp_parse_range(&th->port_min, &th->port_max, &p);
745                 }
746             } else if (!strcmp(parameter, "client_port")) {
747                 if (*p == '=') {
748                     p++;
749                     rtsp_parse_range(&th->client_port_min,
750                                      &th->client_port_max, &p);
751                 }
752             } else if (!strcmp(parameter, "server_port")) {
753                 if (*p == '=') {
754                     p++;
755                     rtsp_parse_range(&th->server_port_min,
756                                      &th->server_port_max, &p);
757                 }
758             } else if (!strcmp(parameter, "interleaved")) {
759                 if (*p == '=') {
760                     p++;
761                     rtsp_parse_range(&th->interleaved_min,
762                                      &th->interleaved_max, &p);
763                 }
764             } else if (!strcmp(parameter, "multicast")) {
765                 if (th->lower_transport == RTSP_LOWER_TRANSPORT_UDP)
766                     th->lower_transport = RTSP_LOWER_TRANSPORT_UDP_MULTICAST;
767             } else if (!strcmp(parameter, "ttl")) {
768                 if (*p == '=') {
769                     p++;
770                     th->ttl = strtol(p, (char **)&p, 10);
771                 }
772             } else if (!strcmp(parameter, "destination")) {
773                 if (*p == '=') {
774                     p++;
775                     get_word_sep(buf, sizeof(buf), ";,", &p);
776                     get_sockaddr(buf, &th->destination);
777                 }
778             } else if (!strcmp(parameter, "source")) {
779                 if (*p == '=') {
780                     p++;
781                     get_word_sep(buf, sizeof(buf), ";,", &p);
782                     av_strlcpy(th->source, buf, sizeof(th->source));
783                 }
784             } else if (!strcmp(parameter, "mode")) {
785                 if (*p == '=') {
786                     p++;
787                     get_word_sep(buf, sizeof(buf), ";, ", &p);
788                     if (!strcmp(buf, "record") ||
789                         !strcmp(buf, "receive"))
790                         th->mode_record = 1;
791                 }
792             }
793
794             while (*p != ';' && *p != '\0' && *p != ',')
795                 p++;
796             if (*p == ';')
797                 p++;
798         }
799         if (*p == ',')
800             p++;
801
802         reply->nb_transports++;
803     }
804 }
805
806 static void handle_rtp_info(RTSPState *rt, const char *url,
807                             uint32_t seq, uint32_t rtptime)
808 {
809     int i;
810     if (!rtptime || !url[0])
811         return;
812     if (rt->transport != RTSP_TRANSPORT_RTP)
813         return;
814     for (i = 0; i < rt->nb_rtsp_streams; i++) {
815         RTSPStream *rtsp_st = rt->rtsp_streams[i];
816         RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
817         if (!rtpctx)
818             continue;
819         if (!strcmp(rtsp_st->control_url, url)) {
820             rtpctx->base_timestamp = rtptime;
821             break;
822         }
823     }
824 }
825
826 static void rtsp_parse_rtp_info(RTSPState *rt, const char *p)
827 {
828     int read = 0;
829     char key[20], value[1024], url[1024] = "";
830     uint32_t seq = 0, rtptime = 0;
831
832     for (;;) {
833         p += strspn(p, SPACE_CHARS);
834         if (!*p)
835             break;
836         get_word_sep(key, sizeof(key), "=", &p);
837         if (*p != '=')
838             break;
839         p++;
840         get_word_sep(value, sizeof(value), ";, ", &p);
841         read++;
842         if (!strcmp(key, "url"))
843             av_strlcpy(url, value, sizeof(url));
844         else if (!strcmp(key, "seq"))
845             seq = strtoul(value, NULL, 10);
846         else if (!strcmp(key, "rtptime"))
847             rtptime = strtoul(value, NULL, 10);
848         if (*p == ',') {
849             handle_rtp_info(rt, url, seq, rtptime);
850             url[0] = '\0';
851             seq = rtptime = 0;
852             read = 0;
853         }
854         if (*p)
855             p++;
856     }
857     if (read > 0)
858         handle_rtp_info(rt, url, seq, rtptime);
859 }
860
861 void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf,
862                         RTSPState *rt, const char *method)
863 {
864     const char *p;
865
866     /* NOTE: we do case independent match for broken servers */
867     p = buf;
868     if (av_stristart(p, "Session:", &p)) {
869         int t;
870         get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
871         if (av_stristart(p, ";timeout=", &p) &&
872             (t = strtol(p, NULL, 10)) > 0) {
873             reply->timeout = t;
874         }
875     } else if (av_stristart(p, "Content-Length:", &p)) {
876         reply->content_length = strtol(p, NULL, 10);
877     } else if (av_stristart(p, "Transport:", &p)) {
878         rtsp_parse_transport(reply, p);
879     } else if (av_stristart(p, "CSeq:", &p)) {
880         reply->seq = strtol(p, NULL, 10);
881     } else if (av_stristart(p, "Range:", &p)) {
882         rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
883     } else if (av_stristart(p, "RealChallenge1:", &p)) {
884         p += strspn(p, SPACE_CHARS);
885         av_strlcpy(reply->real_challenge, p, sizeof(reply->real_challenge));
886     } else if (av_stristart(p, "Server:", &p)) {
887         p += strspn(p, SPACE_CHARS);
888         av_strlcpy(reply->server, p, sizeof(reply->server));
889     } else if (av_stristart(p, "Notice:", &p) ||
890                av_stristart(p, "X-Notice:", &p)) {
891         reply->notice = strtol(p, NULL, 10);
892     } else if (av_stristart(p, "Location:", &p)) {
893         p += strspn(p, SPACE_CHARS);
894         av_strlcpy(reply->location, p , sizeof(reply->location));
895     } else if (av_stristart(p, "WWW-Authenticate:", &p) && rt) {
896         p += strspn(p, SPACE_CHARS);
897         ff_http_auth_handle_header(&rt->auth_state, "WWW-Authenticate", p);
898     } else if (av_stristart(p, "Authentication-Info:", &p) && rt) {
899         p += strspn(p, SPACE_CHARS);
900         ff_http_auth_handle_header(&rt->auth_state, "Authentication-Info", p);
901     } else if (av_stristart(p, "Content-Base:", &p) && rt) {
902         p += strspn(p, SPACE_CHARS);
903         if (method && !strcmp(method, "DESCRIBE"))
904             av_strlcpy(rt->control_uri, p , sizeof(rt->control_uri));
905     } else if (av_stristart(p, "RTP-Info:", &p) && rt) {
906         p += strspn(p, SPACE_CHARS);
907         if (method && !strcmp(method, "PLAY"))
908             rtsp_parse_rtp_info(rt, p);
909     } else if (av_stristart(p, "Public:", &p) && rt) {
910         if (strstr(p, "GET_PARAMETER") &&
911             method && !strcmp(method, "OPTIONS"))
912             rt->get_parameter_supported = 1;
913     } else if (av_stristart(p, "x-Accept-Dynamic-Rate:", &p) && rt) {
914         p += strspn(p, SPACE_CHARS);
915         rt->accept_dynamic_rate = atoi(p);
916     } else if (av_stristart(p, "Content-Type:", &p)) {
917         p += strspn(p, SPACE_CHARS);
918         av_strlcpy(reply->content_type, p, sizeof(reply->content_type));
919     }
920 }
921
922 /* skip a RTP/TCP interleaved packet */
923 void ff_rtsp_skip_packet(AVFormatContext *s)
924 {
925     RTSPState *rt = s->priv_data;
926     int ret, len, len1;
927     uint8_t buf[1024];
928
929     ret = ffurl_read_complete(rt->rtsp_hd, buf, 3);
930     if (ret != 3)
931         return;
932     len = AV_RB16(buf + 1);
933
934     av_dlog(s, "skipping RTP packet len=%d\n", len);
935
936     /* skip payload */
937     while (len > 0) {
938         len1 = len;
939         if (len1 > sizeof(buf))
940             len1 = sizeof(buf);
941         ret = ffurl_read_complete(rt->rtsp_hd, buf, len1);
942         if (ret != len1)
943             return;
944         len -= len1;
945     }
946 }
947
948 int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
949                        unsigned char **content_ptr,
950                        int return_on_interleaved_data, const char *method)
951 {
952     RTSPState *rt = s->priv_data;
953     char buf[4096], buf1[1024], *q;
954     unsigned char ch;
955     const char *p;
956     int ret, content_length, line_count = 0, request = 0;
957     unsigned char *content = NULL;
958
959 start:
960     line_count = 0;
961     request = 0;
962     content = NULL;
963     memset(reply, 0, sizeof(*reply));
964
965     /* parse reply (XXX: use buffers) */
966     rt->last_reply[0] = '\0';
967     for (;;) {
968         q = buf;
969         for (;;) {
970             ret = ffurl_read_complete(rt->rtsp_hd, &ch, 1);
971             av_dlog(s, "ret=%d c=%02x [%c]\n", ret, ch, ch);
972             if (ret != 1)
973                 return AVERROR_EOF;
974             if (ch == '\n')
975                 break;
976             if (ch == '$') {
977                 /* XXX: only parse it if first char on line ? */
978                 if (return_on_interleaved_data) {
979                     return 1;
980                 } else
981                     ff_rtsp_skip_packet(s);
982             } else if (ch != '\r') {
983                 if ((q - buf) < sizeof(buf) - 1)
984                     *q++ = ch;
985             }
986         }
987         *q = '\0';
988
989         av_dlog(s, "line='%s'\n", buf);
990
991         /* test if last line */
992         if (buf[0] == '\0')
993             break;
994         p = buf;
995         if (line_count == 0) {
996             /* get reply code */
997             get_word(buf1, sizeof(buf1), &p);
998             if (!strncmp(buf1, "RTSP/", 5)) {
999                 get_word(buf1, sizeof(buf1), &p);
1000                 reply->status_code = atoi(buf1);
1001                 av_strlcpy(reply->reason, p, sizeof(reply->reason));
1002             } else {
1003                 av_strlcpy(reply->reason, buf1, sizeof(reply->reason)); // method
1004                 get_word(buf1, sizeof(buf1), &p); // object
1005                 request = 1;
1006             }
1007         } else {
1008             ff_rtsp_parse_line(reply, p, rt, method);
1009             av_strlcat(rt->last_reply, p,    sizeof(rt->last_reply));
1010             av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
1011         }
1012         line_count++;
1013     }
1014
1015     if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0' && !request)
1016         av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
1017
1018     content_length = reply->content_length;
1019     if (content_length > 0) {
1020         /* leave some room for a trailing '\0' (useful for simple parsing) */
1021         content = av_malloc(content_length + 1);
1022         ffurl_read_complete(rt->rtsp_hd, content, content_length);
1023         content[content_length] = '\0';
1024     }
1025     if (content_ptr)
1026         *content_ptr = content;
1027     else
1028         av_free(content);
1029
1030     if (request) {
1031         char buf[1024];
1032         char base64buf[AV_BASE64_SIZE(sizeof(buf))];
1033         const char* ptr = buf;
1034
1035         if (!strcmp(reply->reason, "OPTIONS")) {
1036             snprintf(buf, sizeof(buf), "RTSP/1.0 200 OK\r\n");
1037             if (reply->seq)
1038                 av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", reply->seq);
1039             if (reply->session_id[0])
1040                 av_strlcatf(buf, sizeof(buf), "Session: %s\r\n",
1041                                               reply->session_id);
1042         } else {
1043             snprintf(buf, sizeof(buf), "RTSP/1.0 501 Not Implemented\r\n");
1044         }
1045         av_strlcat(buf, "\r\n", sizeof(buf));
1046
1047         if (rt->control_transport == RTSP_MODE_TUNNEL) {
1048             av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
1049             ptr = base64buf;
1050         }
1051         ffurl_write(rt->rtsp_hd_out, ptr, strlen(ptr));
1052
1053         rt->last_cmd_time = av_gettime();
1054         /* Even if the request from the server had data, it is not the data
1055          * that the caller wants or expects. The memory could also be leaked
1056          * if the actual following reply has content data. */
1057         if (content_ptr)
1058             av_freep(content_ptr);
1059         /* If method is set, this is called from ff_rtsp_send_cmd,
1060          * where a reply to exactly this request is awaited. For
1061          * callers from within packet receiving, we just want to
1062          * return to the caller and go back to receiving packets. */
1063         if (method)
1064             goto start;
1065         return 0;
1066     }
1067
1068     if (rt->seq != reply->seq) {
1069         av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
1070             rt->seq, reply->seq);
1071     }
1072
1073     /* EOS */
1074     if (reply->notice == 2101 /* End-of-Stream Reached */      ||
1075         reply->notice == 2104 /* Start-of-Stream Reached */    ||
1076         reply->notice == 2306 /* Continuous Feed Terminated */) {
1077         rt->state = RTSP_STATE_IDLE;
1078     } else if (reply->notice >= 4400 && reply->notice < 5500) {
1079         return AVERROR(EIO); /* data or server error */
1080     } else if (reply->notice == 2401 /* Ticket Expired */ ||
1081              (reply->notice >= 5500 && reply->notice < 5600) /* end of term */ )
1082         return AVERROR(EPERM);
1083
1084     return 0;
1085 }
1086
1087 /**
1088  * Send a command to the RTSP server without waiting for the reply.
1089  *
1090  * @param s RTSP (de)muxer context
1091  * @param method the method for the request
1092  * @param url the target url for the request
1093  * @param headers extra header lines to include in the request
1094  * @param send_content if non-null, the data to send as request body content
1095  * @param send_content_length the length of the send_content data, or 0 if
1096  *                            send_content is null
1097  *
1098  * @return zero if success, nonzero otherwise
1099  */
1100 static int ff_rtsp_send_cmd_with_content_async(AVFormatContext *s,
1101                                                const char *method, const char *url,
1102                                                const char *headers,
1103                                                const unsigned char *send_content,
1104                                                int send_content_length)
1105 {
1106     RTSPState *rt = s->priv_data;
1107     char buf[4096], *out_buf;
1108     char base64buf[AV_BASE64_SIZE(sizeof(buf))];
1109
1110     /* Add in RTSP headers */
1111     out_buf = buf;
1112     rt->seq++;
1113     snprintf(buf, sizeof(buf), "%s %s RTSP/1.0\r\n", method, url);
1114     if (headers)
1115         av_strlcat(buf, headers, sizeof(buf));
1116     av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
1117     if (rt->session_id[0] != '\0' && (!headers ||
1118         !strstr(headers, "\nIf-Match:"))) {
1119         av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);
1120     }
1121     if (rt->auth[0]) {
1122         char *str = ff_http_auth_create_response(&rt->auth_state,
1123                                                  rt->auth, url, method);
1124         if (str)
1125             av_strlcat(buf, str, sizeof(buf));
1126         av_free(str);
1127     }
1128     if (send_content_length > 0 && send_content)
1129         av_strlcatf(buf, sizeof(buf), "Content-Length: %d\r\n", send_content_length);
1130     av_strlcat(buf, "\r\n", sizeof(buf));
1131
1132     /* base64 encode rtsp if tunneling */
1133     if (rt->control_transport == RTSP_MODE_TUNNEL) {
1134         av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
1135         out_buf = base64buf;
1136     }
1137
1138     av_dlog(s, "Sending:\n%s--\n", buf);
1139
1140     ffurl_write(rt->rtsp_hd_out, out_buf, strlen(out_buf));
1141     if (send_content_length > 0 && send_content) {
1142         if (rt->control_transport == RTSP_MODE_TUNNEL) {
1143             av_log(s, AV_LOG_ERROR, "tunneling of RTSP requests "
1144                                     "with content data not supported\n");
1145             return AVERROR_PATCHWELCOME;
1146         }
1147         ffurl_write(rt->rtsp_hd_out, send_content, send_content_length);
1148     }
1149     rt->last_cmd_time = av_gettime();
1150
1151     return 0;
1152 }
1153
1154 int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method,
1155                            const char *url, const char *headers)
1156 {
1157     return ff_rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
1158 }
1159
1160 int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url,
1161                      const char *headers, RTSPMessageHeader *reply,
1162                      unsigned char **content_ptr)
1163 {
1164     return ff_rtsp_send_cmd_with_content(s, method, url, headers, reply,
1165                                          content_ptr, NULL, 0);
1166 }
1167
1168 int ff_rtsp_send_cmd_with_content(AVFormatContext *s,
1169                                   const char *method, const char *url,
1170                                   const char *header,
1171                                   RTSPMessageHeader *reply,
1172                                   unsigned char **content_ptr,
1173                                   const unsigned char *send_content,
1174                                   int send_content_length)
1175 {
1176     RTSPState *rt = s->priv_data;
1177     HTTPAuthType cur_auth_type;
1178     int ret, attempts = 0;
1179
1180 retry:
1181     cur_auth_type = rt->auth_state.auth_type;
1182     if ((ret = ff_rtsp_send_cmd_with_content_async(s, method, url, header,
1183                                                    send_content,
1184                                                    send_content_length)))
1185         return ret;
1186
1187     if ((ret = ff_rtsp_read_reply(s, reply, content_ptr, 0, method) ) < 0)
1188         return ret;
1189     attempts++;
1190
1191     if (reply->status_code == 401 &&
1192         (cur_auth_type == HTTP_AUTH_NONE || rt->auth_state.stale) &&
1193         rt->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2)
1194         goto retry;
1195
1196     if (reply->status_code > 400){
1197         av_log(s, AV_LOG_ERROR, "method %s failed: %d%s\n",
1198                method,
1199                reply->status_code,
1200                reply->reason);
1201         av_log(s, AV_LOG_DEBUG, "%s\n", rt->last_reply);
1202     }
1203
1204     return 0;
1205 }
1206
1207 int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
1208                               int lower_transport, const char *real_challenge)
1209 {
1210     RTSPState *rt = s->priv_data;
1211     int rtx = 0, j, i, err, interleave = 0, port_off;
1212     RTSPStream *rtsp_st;
1213     RTSPMessageHeader reply1, *reply = &reply1;
1214     char cmd[2048];
1215     const char *trans_pref;
1216
1217     if (rt->transport == RTSP_TRANSPORT_RDT)
1218         trans_pref = "x-pn-tng";
1219     else if (rt->transport == RTSP_TRANSPORT_RAW)
1220         trans_pref = "RAW/RAW";
1221     else
1222         trans_pref = "RTP/AVP";
1223
1224     /* default timeout: 1 minute */
1225     rt->timeout = 60;
1226
1227     /* Choose a random starting offset within the first half of the
1228      * port range, to allow for a number of ports to try even if the offset
1229      * happens to be at the end of the random range. */
1230     port_off = av_get_random_seed() % ((rt->rtp_port_max - rt->rtp_port_min)/2);
1231     /* even random offset */
1232     port_off -= port_off & 0x01;
1233
1234     for (j = rt->rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
1235         char transport[2048];
1236
1237         /*
1238          * WMS serves all UDP data over a single connection, the RTX, which
1239          * isn't necessarily the first in the SDP but has to be the first
1240          * to be set up, else the second/third SETUP will fail with a 461.
1241          */
1242         if (lower_transport == RTSP_LOWER_TRANSPORT_UDP &&
1243              rt->server_type == RTSP_SERVER_WMS) {
1244             if (i == 0) {
1245                 /* rtx first */
1246                 for (rtx = 0; rtx < rt->nb_rtsp_streams; rtx++) {
1247                     int len = strlen(rt->rtsp_streams[rtx]->control_url);
1248                     if (len >= 4 &&
1249                         !strcmp(rt->rtsp_streams[rtx]->control_url + len - 4,
1250                                 "/rtx"))
1251                         break;
1252                 }
1253                 if (rtx == rt->nb_rtsp_streams)
1254                     return -1; /* no RTX found */
1255                 rtsp_st = rt->rtsp_streams[rtx];
1256             } else
1257                 rtsp_st = rt->rtsp_streams[i > rtx ? i : i - 1];
1258         } else
1259             rtsp_st = rt->rtsp_streams[i];
1260
1261         /* RTP/UDP */
1262         if (lower_transport == RTSP_LOWER_TRANSPORT_UDP) {
1263             char buf[256];
1264
1265             if (rt->server_type == RTSP_SERVER_WMS && i > 1) {
1266                 port = reply->transports[0].client_port_min;
1267                 goto have_port;
1268             }
1269
1270             /* first try in specified port range */
1271             while (j <= rt->rtp_port_max) {
1272                 ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
1273                             "?localport=%d", j);
1274                 /* we will use two ports per rtp stream (rtp and rtcp) */
1275                 j += 2;
1276                 if (!ffurl_open(&rtsp_st->rtp_handle, buf, AVIO_FLAG_READ_WRITE,
1277                                &s->interrupt_callback, NULL))
1278                     goto rtp_opened;
1279             }
1280             av_log(s, AV_LOG_ERROR, "Unable to open an input RTP port\n");
1281             err = AVERROR(EIO);
1282             goto fail;
1283
1284         rtp_opened:
1285             port = ff_rtp_get_local_rtp_port(rtsp_st->rtp_handle);
1286         have_port:
1287             snprintf(transport, sizeof(transport) - 1,
1288                      "%s/UDP;", trans_pref);
1289             if (rt->server_type != RTSP_SERVER_REAL)
1290                 av_strlcat(transport, "unicast;", sizeof(transport));
1291             av_strlcatf(transport, sizeof(transport),
1292                      "client_port=%d", port);
1293             if (rt->transport == RTSP_TRANSPORT_RTP &&
1294                 !(rt->server_type == RTSP_SERVER_WMS && i > 0))
1295                 av_strlcatf(transport, sizeof(transport), "-%d", port + 1);
1296         }
1297
1298         /* RTP/TCP */
1299         else if (lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
1300             /* For WMS streams, the application streams are only used for
1301              * UDP. When trying to set it up for TCP streams, the server
1302              * will return an error. Therefore, we skip those streams. */
1303             if (rt->server_type == RTSP_SERVER_WMS &&
1304                 (rtsp_st->stream_index < 0 ||
1305                  s->streams[rtsp_st->stream_index]->codec->codec_type ==
1306                     AVMEDIA_TYPE_DATA))
1307                 continue;
1308             snprintf(transport, sizeof(transport) - 1,
1309                      "%s/TCP;", trans_pref);
1310             if (rt->transport != RTSP_TRANSPORT_RDT)
1311                 av_strlcat(transport, "unicast;", sizeof(transport));
1312             av_strlcatf(transport, sizeof(transport),
1313                         "interleaved=%d-%d",
1314                         interleave, interleave + 1);
1315             interleave += 2;
1316         }
1317
1318         else if (lower_transport == RTSP_LOWER_TRANSPORT_UDP_MULTICAST) {
1319             snprintf(transport, sizeof(transport) - 1,
1320                      "%s/UDP;multicast", trans_pref);
1321         }
1322         if (s->oformat) {
1323             av_strlcat(transport, ";mode=record", sizeof(transport));
1324         } else if (rt->server_type == RTSP_SERVER_REAL ||
1325                    rt->server_type == RTSP_SERVER_WMS)
1326             av_strlcat(transport, ";mode=play", sizeof(transport));
1327         snprintf(cmd, sizeof(cmd),
1328                  "Transport: %s\r\n",
1329                  transport);
1330         if (rt->accept_dynamic_rate)
1331             av_strlcat(cmd, "x-Dynamic-Rate: 0\r\n", sizeof(cmd));
1332         if (i == 0 && rt->server_type == RTSP_SERVER_REAL && CONFIG_RTPDEC) {
1333             char real_res[41], real_csum[9];
1334             ff_rdt_calc_response_and_checksum(real_res, real_csum,
1335                                               real_challenge);
1336             av_strlcatf(cmd, sizeof(cmd),
1337                         "If-Match: %s\r\n"
1338                         "RealChallenge2: %s, sd=%s\r\n",
1339                         rt->session_id, real_res, real_csum);
1340         }
1341         ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
1342         if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
1343             err = 1;
1344             goto fail;
1345         } else if (reply->status_code != RTSP_STATUS_OK ||
1346                    reply->nb_transports != 1) {
1347             err = AVERROR_INVALIDDATA;
1348             goto fail;
1349         }
1350
1351         /* XXX: same protocol for all streams is required */
1352         if (i > 0) {
1353             if (reply->transports[0].lower_transport != rt->lower_transport ||
1354                 reply->transports[0].transport != rt->transport) {
1355                 err = AVERROR_INVALIDDATA;
1356                 goto fail;
1357             }
1358         } else {
1359             rt->lower_transport = reply->transports[0].lower_transport;
1360             rt->transport = reply->transports[0].transport;
1361         }
1362
1363         /* Fail if the server responded with another lower transport mode
1364          * than what we requested. */
1365         if (reply->transports[0].lower_transport != lower_transport) {
1366             av_log(s, AV_LOG_ERROR, "Nonmatching transport in server reply\n");
1367             err = AVERROR_INVALIDDATA;
1368             goto fail;
1369         }
1370
1371         switch(reply->transports[0].lower_transport) {
1372         case RTSP_LOWER_TRANSPORT_TCP:
1373             rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
1374             rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
1375             break;
1376
1377         case RTSP_LOWER_TRANSPORT_UDP: {
1378             char url[1024], options[30] = "";
1379
1380             if (rt->rtsp_flags & RTSP_FLAG_FILTER_SRC)
1381                 av_strlcpy(options, "?connect=1", sizeof(options));
1382             /* Use source address if specified */
1383             if (reply->transports[0].source[0]) {
1384                 ff_url_join(url, sizeof(url), "rtp", NULL,
1385                             reply->transports[0].source,
1386                             reply->transports[0].server_port_min, "%s", options);
1387             } else {
1388                 ff_url_join(url, sizeof(url), "rtp", NULL, host,
1389                             reply->transports[0].server_port_min, "%s", options);
1390             }
1391             if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) &&
1392                 ff_rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
1393                 err = AVERROR_INVALIDDATA;
1394                 goto fail;
1395             }
1396             /* Try to initialize the connection state in a
1397              * potential NAT router by sending dummy packets.
1398              * RTP/RTCP dummy packets are used for RDT, too.
1399              */
1400             if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) && s->iformat &&
1401                 CONFIG_RTPDEC)
1402                 ff_rtp_send_punch_packets(rtsp_st->rtp_handle);
1403             break;
1404         }
1405         case RTSP_LOWER_TRANSPORT_UDP_MULTICAST: {
1406             char url[1024], namebuf[50], optbuf[20] = "";
1407             struct sockaddr_storage addr;
1408             int port, ttl;
1409
1410             if (reply->transports[0].destination.ss_family) {
1411                 addr      = reply->transports[0].destination;
1412                 port      = reply->transports[0].port_min;
1413                 ttl       = reply->transports[0].ttl;
1414             } else {
1415                 addr      = rtsp_st->sdp_ip;
1416                 port      = rtsp_st->sdp_port;
1417                 ttl       = rtsp_st->sdp_ttl;
1418             }
1419             if (ttl > 0)
1420                 snprintf(optbuf, sizeof(optbuf), "?ttl=%d", ttl);
1421             getnameinfo((struct sockaddr*) &addr, sizeof(addr),
1422                         namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
1423             ff_url_join(url, sizeof(url), "rtp", NULL, namebuf,
1424                         port, "%s", optbuf);
1425             if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
1426                            &s->interrupt_callback, NULL) < 0) {
1427                 err = AVERROR_INVALIDDATA;
1428                 goto fail;
1429             }
1430             break;
1431         }
1432         }
1433
1434         if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
1435             goto fail;
1436     }
1437
1438     if (rt->nb_rtsp_streams && reply->timeout > 0)
1439         rt->timeout = reply->timeout;
1440
1441     if (rt->server_type == RTSP_SERVER_REAL)
1442         rt->need_subscription = 1;
1443
1444     return 0;
1445
1446 fail:
1447     ff_rtsp_undo_setup(s);
1448     return err;
1449 }
1450
1451 void ff_rtsp_close_connections(AVFormatContext *s)
1452 {
1453     RTSPState *rt = s->priv_data;
1454     if (rt->rtsp_hd_out != rt->rtsp_hd) ffurl_close(rt->rtsp_hd_out);
1455     ffurl_close(rt->rtsp_hd);
1456     rt->rtsp_hd = rt->rtsp_hd_out = NULL;
1457 }
1458
1459 int ff_rtsp_connect(AVFormatContext *s)
1460 {
1461     RTSPState *rt = s->priv_data;
1462     char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128];
1463     int port, err, tcp_fd;
1464     RTSPMessageHeader reply1 = {0}, *reply = &reply1;
1465     int lower_transport_mask = 0;
1466     char real_challenge[64] = "";
1467     struct sockaddr_storage peer;
1468     socklen_t peer_len = sizeof(peer);
1469
1470     if (rt->rtp_port_max < rt->rtp_port_min) {
1471         av_log(s, AV_LOG_ERROR, "Invalid UDP port range, max port %d less "
1472                                 "than min port %d\n", rt->rtp_port_max,
1473                                                       rt->rtp_port_min);
1474         return AVERROR(EINVAL);
1475     }
1476
1477     if (!ff_network_init())
1478         return AVERROR(EIO);
1479
1480     if (s->max_delay < 0) /* Not set by the caller */
1481         s->max_delay = s->iformat ? DEFAULT_REORDERING_DELAY : 0;
1482
1483     rt->control_transport = RTSP_MODE_PLAIN;
1484     if (rt->lower_transport_mask & (1 << RTSP_LOWER_TRANSPORT_HTTP)) {
1485         rt->lower_transport_mask = 1 << RTSP_LOWER_TRANSPORT_TCP;
1486         rt->control_transport = RTSP_MODE_TUNNEL;
1487     }
1488     /* Only pass through valid flags from here */
1489     rt->lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
1490
1491 redirect:
1492     lower_transport_mask = rt->lower_transport_mask;
1493     /* extract hostname and port */
1494     av_url_split(NULL, 0, auth, sizeof(auth),
1495                  host, sizeof(host), &port, path, sizeof(path), s->filename);
1496     if (*auth) {
1497         av_strlcpy(rt->auth, auth, sizeof(rt->auth));
1498     }
1499     if (port < 0)
1500         port = RTSP_DEFAULT_PORT;
1501
1502     if (!lower_transport_mask)
1503         lower_transport_mask = (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
1504
1505     if (s->oformat) {
1506         /* Only UDP or TCP - UDP multicast isn't supported. */
1507         lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_UDP) |
1508                                 (1 << RTSP_LOWER_TRANSPORT_TCP);
1509         if (!lower_transport_mask || rt->control_transport == RTSP_MODE_TUNNEL) {
1510             av_log(s, AV_LOG_ERROR, "Unsupported lower transport method, "
1511                                     "only UDP and TCP are supported for output.\n");
1512             err = AVERROR(EINVAL);
1513             goto fail;
1514         }
1515     }
1516
1517     /* Construct the URI used in request; this is similar to s->filename,
1518      * but with authentication credentials removed and RTSP specific options
1519      * stripped out. */
1520     ff_url_join(rt->control_uri, sizeof(rt->control_uri), "rtsp", NULL,
1521                 host, port, "%s", path);
1522
1523     if (rt->control_transport == RTSP_MODE_TUNNEL) {
1524         /* set up initial handshake for tunneling */
1525         char httpname[1024];
1526         char sessioncookie[17];
1527         char headers[1024];
1528
1529         ff_url_join(httpname, sizeof(httpname), "http", auth, host, port, "%s", path);
1530         snprintf(sessioncookie, sizeof(sessioncookie), "%08x%08x",
1531                  av_get_random_seed(), av_get_random_seed());
1532
1533         /* GET requests */
1534         if (ffurl_alloc(&rt->rtsp_hd, httpname, AVIO_FLAG_READ,
1535                         &s->interrupt_callback) < 0) {
1536             err = AVERROR(EIO);
1537             goto fail;
1538         }
1539
1540         /* generate GET headers */
1541         snprintf(headers, sizeof(headers),
1542                  "x-sessioncookie: %s\r\n"
1543                  "Accept: application/x-rtsp-tunnelled\r\n"
1544                  "Pragma: no-cache\r\n"
1545                  "Cache-Control: no-cache\r\n",
1546                  sessioncookie);
1547         av_opt_set(rt->rtsp_hd->priv_data, "headers", headers, 0);
1548
1549         /* complete the connection */
1550         if (ffurl_connect(rt->rtsp_hd, NULL)) {
1551             err = AVERROR(EIO);
1552             goto fail;
1553         }
1554
1555         /* POST requests */
1556         if (ffurl_alloc(&rt->rtsp_hd_out, httpname, AVIO_FLAG_WRITE,
1557                         &s->interrupt_callback) < 0 ) {
1558             err = AVERROR(EIO);
1559             goto fail;
1560         }
1561
1562         /* generate POST headers */
1563         snprintf(headers, sizeof(headers),
1564                  "x-sessioncookie: %s\r\n"
1565                  "Content-Type: application/x-rtsp-tunnelled\r\n"
1566                  "Pragma: no-cache\r\n"
1567                  "Cache-Control: no-cache\r\n"
1568                  "Content-Length: 32767\r\n"
1569                  "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
1570                  sessioncookie);
1571         av_opt_set(rt->rtsp_hd_out->priv_data, "headers", headers, 0);
1572         av_opt_set(rt->rtsp_hd_out->priv_data, "chunked_post", "0", 0);
1573
1574         /* Initialize the authentication state for the POST session. The HTTP
1575          * protocol implementation doesn't properly handle multi-pass
1576          * authentication for POST requests, since it would require one of
1577          * the following:
1578          * - implementing Expect: 100-continue, which many HTTP servers
1579          *   don't support anyway, even less the RTSP servers that do HTTP
1580          *   tunneling
1581          * - sending the whole POST data until getting a 401 reply specifying
1582          *   what authentication method to use, then resending all that data
1583          * - waiting for potential 401 replies directly after sending the
1584          *   POST header (waiting for some unspecified time)
1585          * Therefore, we copy the full auth state, which works for both basic
1586          * and digest. (For digest, we would have to synchronize the nonce
1587          * count variable between the two sessions, if we'd do more requests
1588          * with the original session, though.)
1589          */
1590         ff_http_init_auth_state(rt->rtsp_hd_out, rt->rtsp_hd);
1591
1592         /* complete the connection */
1593         if (ffurl_connect(rt->rtsp_hd_out, NULL)) {
1594             err = AVERROR(EIO);
1595             goto fail;
1596         }
1597     } else {
1598         /* open the tcp connection */
1599         ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL);
1600         if (ffurl_open(&rt->rtsp_hd, tcpname, AVIO_FLAG_READ_WRITE,
1601                        &s->interrupt_callback, NULL) < 0) {
1602             err = AVERROR(EIO);
1603             goto fail;
1604         }
1605         rt->rtsp_hd_out = rt->rtsp_hd;
1606     }
1607     rt->seq = 0;
1608
1609     tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
1610     if (!getpeername(tcp_fd, (struct sockaddr*) &peer, &peer_len)) {
1611         getnameinfo((struct sockaddr*) &peer, peer_len, host, sizeof(host),
1612                     NULL, 0, NI_NUMERICHOST);
1613     }
1614
1615     /* request options supported by the server; this also detects server
1616      * type */
1617     for (rt->server_type = RTSP_SERVER_RTP;;) {
1618         cmd[0] = 0;
1619         if (rt->server_type == RTSP_SERVER_REAL)
1620             av_strlcat(cmd,
1621                        /*
1622                         * The following entries are required for proper
1623                         * streaming from a Realmedia server. They are
1624                         * interdependent in some way although we currently
1625                         * don't quite understand how. Values were copied
1626                         * from mplayer SVN r23589.
1627                         *   ClientChallenge is a 16-byte ID in hex
1628                         *   CompanyID is a 16-byte ID in base64
1629                         */
1630                        "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1631                        "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1632                        "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1633                        "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1634                        sizeof(cmd));
1635         ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
1636         if (reply->status_code != RTSP_STATUS_OK) {
1637             err = AVERROR_INVALIDDATA;
1638             goto fail;
1639         }
1640
1641         /* detect server type if not standard-compliant RTP */
1642         if (rt->server_type != RTSP_SERVER_REAL && reply->real_challenge[0]) {
1643             rt->server_type = RTSP_SERVER_REAL;
1644             continue;
1645         } else if (!av_strncasecmp(reply->server, "WMServer/", 9)) {
1646             rt->server_type = RTSP_SERVER_WMS;
1647         } else if (rt->server_type == RTSP_SERVER_REAL)
1648             strcpy(real_challenge, reply->real_challenge);
1649         break;
1650     }
1651
1652     if (s->iformat && CONFIG_RTSP_DEMUXER)
1653         err = ff_rtsp_setup_input_streams(s, reply);
1654     else if (CONFIG_RTSP_MUXER)
1655         err = ff_rtsp_setup_output_streams(s, host);
1656     if (err)
1657         goto fail;
1658
1659     do {
1660         int lower_transport = ff_log2_tab[lower_transport_mask &
1661                                   ~(lower_transport_mask - 1)];
1662
1663         err = ff_rtsp_make_setup_request(s, host, port, lower_transport,
1664                                  rt->server_type == RTSP_SERVER_REAL ?
1665                                      real_challenge : NULL);
1666         if (err < 0)
1667             goto fail;
1668         lower_transport_mask &= ~(1 << lower_transport);
1669         if (lower_transport_mask == 0 && err == 1) {
1670             err = AVERROR(EPROTONOSUPPORT);
1671             goto fail;
1672         }
1673     } while (err);
1674
1675     rt->lower_transport_mask = lower_transport_mask;
1676     av_strlcpy(rt->real_challenge, real_challenge, sizeof(rt->real_challenge));
1677     rt->state = RTSP_STATE_IDLE;
1678     rt->seek_timestamp = 0; /* default is to start stream at position zero */
1679     return 0;
1680  fail:
1681     ff_rtsp_close_streams(s);
1682     ff_rtsp_close_connections(s);
1683     if (reply->status_code >=300 && reply->status_code < 400 && s->iformat) {
1684         av_strlcpy(s->filename, reply->location, sizeof(s->filename));
1685         av_log(s, AV_LOG_INFO, "Status %d: Redirecting to %s\n",
1686                reply->status_code,
1687                s->filename);
1688         goto redirect;
1689     }
1690     ff_network_close();
1691     return err;
1692 }
1693 #endif /* CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER */
1694
1695 #if CONFIG_RTPDEC
1696 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
1697                            uint8_t *buf, int buf_size, int64_t wait_end)
1698 {
1699     RTSPState *rt = s->priv_data;
1700     RTSPStream *rtsp_st;
1701     int n, i, ret, tcp_fd, timeout_cnt = 0;
1702     int max_p = 0;
1703     struct pollfd *p = rt->p;
1704     int *fds = NULL, fdsnum, fdsidx;
1705
1706     for (;;) {
1707         if (ff_check_interrupt(&s->interrupt_callback))
1708             return AVERROR_EXIT;
1709         if (wait_end && wait_end - av_gettime() < 0)
1710             return AVERROR(EAGAIN);
1711         max_p = 0;
1712         if (rt->rtsp_hd) {
1713             tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
1714             p[max_p].fd = tcp_fd;
1715             p[max_p++].events = POLLIN;
1716         } else {
1717             tcp_fd = -1;
1718         }
1719         for (i = 0; i < rt->nb_rtsp_streams; i++) {
1720             rtsp_st = rt->rtsp_streams[i];
1721             if (rtsp_st->rtp_handle) {
1722                 if (ret = ffurl_get_multi_file_handle(rtsp_st->rtp_handle,
1723                                                       &fds, &fdsnum)) {
1724                     av_log(s, AV_LOG_ERROR, "Unable to recover rtp ports\n");
1725                     return ret;
1726                 }
1727                 if (fdsnum != 2) {
1728                     av_log(s, AV_LOG_ERROR,
1729                            "Number of fds %d not supported\n", fdsnum);
1730                     return AVERROR_INVALIDDATA;
1731                 }
1732                 for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
1733                     p[max_p].fd       = fds[fdsidx];
1734                     p[max_p++].events = POLLIN;
1735                 }
1736                 av_free(fds);
1737             }
1738         }
1739         n = poll(p, max_p, POLL_TIMEOUT_MS);
1740         if (n > 0) {
1741             int j = 1 - (tcp_fd == -1);
1742             timeout_cnt = 0;
1743             for (i = 0; i < rt->nb_rtsp_streams; i++) {
1744                 rtsp_st = rt->rtsp_streams[i];
1745                 if (rtsp_st->rtp_handle) {
1746                     if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
1747                         ret = ffurl_read(rtsp_st->rtp_handle, buf, buf_size);
1748                         if (ret > 0) {
1749                             *prtsp_st = rtsp_st;
1750                             return ret;
1751                         }
1752                     }
1753                     j+=2;
1754                 }
1755             }
1756 #if CONFIG_RTSP_DEMUXER
1757             if (tcp_fd != -1 && p[0].revents & POLLIN) {
1758                 if (rt->rtsp_flags & RTSP_FLAG_LISTEN) {
1759                     if (rt->state == RTSP_STATE_STREAMING) {
1760                         if (!ff_rtsp_parse_streaming_commands(s))
1761                             return AVERROR_EOF;
1762                         else
1763                             av_log(s, AV_LOG_WARNING,
1764                                    "Unable to answer to TEARDOWN\n");
1765                     } else
1766                         return 0;
1767                 } else {
1768                     RTSPMessageHeader reply;
1769                     ret = ff_rtsp_read_reply(s, &reply, NULL, 0, NULL);
1770                     if (ret < 0)
1771                         return ret;
1772                     /* XXX: parse message */
1773                     if (rt->state != RTSP_STATE_STREAMING)
1774                         return 0;
1775                 }
1776             }
1777 #endif
1778         } else if (n == 0 && ++timeout_cnt >= MAX_TIMEOUTS) {
1779             return AVERROR(ETIMEDOUT);
1780         } else if (n < 0 && errno != EINTR)
1781             return AVERROR(errno);
1782     }
1783 }
1784
1785 int ff_rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
1786 {
1787     RTSPState *rt = s->priv_data;
1788     int ret, len;
1789     RTSPStream *rtsp_st, *first_queue_st = NULL;
1790     int64_t wait_end = 0;
1791
1792     if (rt->nb_byes == rt->nb_rtsp_streams)
1793         return AVERROR_EOF;
1794
1795     /* get next frames from the same RTP packet */
1796     if (rt->cur_transport_priv) {
1797         if (rt->transport == RTSP_TRANSPORT_RDT) {
1798             ret = ff_rdt_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
1799         } else if (rt->transport == RTSP_TRANSPORT_RTP) {
1800             ret = ff_rtp_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
1801         } else if (rt->ts && CONFIG_RTPDEC) {
1802             ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf + rt->recvbuf_pos, rt->recvbuf_len - rt->recvbuf_pos);
1803             if (ret >= 0) {
1804                 rt->recvbuf_pos += ret;
1805                 ret = rt->recvbuf_pos < rt->recvbuf_len;
1806             }
1807         } else
1808             ret = -1;
1809         if (ret == 0) {
1810             rt->cur_transport_priv = NULL;
1811             return 0;
1812         } else if (ret == 1) {
1813             return 0;
1814         } else
1815             rt->cur_transport_priv = NULL;
1816     }
1817
1818     if (rt->transport == RTSP_TRANSPORT_RTP) {
1819         int i;
1820         int64_t first_queue_time = 0;
1821         for (i = 0; i < rt->nb_rtsp_streams; i++) {
1822             RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
1823             int64_t queue_time;
1824             if (!rtpctx)
1825                 continue;
1826             queue_time = ff_rtp_queued_packet_time(rtpctx);
1827             if (queue_time && (queue_time - first_queue_time < 0 ||
1828                                !first_queue_time)) {
1829                 first_queue_time = queue_time;
1830                 first_queue_st   = rt->rtsp_streams[i];
1831             }
1832         }
1833         if (first_queue_time)
1834             wait_end = first_queue_time + s->max_delay;
1835     }
1836
1837     /* read next RTP packet */
1838  redo:
1839     if (!rt->recvbuf) {
1840         rt->recvbuf = av_malloc(RECVBUF_SIZE);
1841         if (!rt->recvbuf)
1842             return AVERROR(ENOMEM);
1843     }
1844
1845     switch(rt->lower_transport) {
1846     default:
1847 #if CONFIG_RTSP_DEMUXER
1848     case RTSP_LOWER_TRANSPORT_TCP:
1849         len = ff_rtsp_tcp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE);
1850         break;
1851 #endif
1852     case RTSP_LOWER_TRANSPORT_UDP:
1853     case RTSP_LOWER_TRANSPORT_UDP_MULTICAST:
1854         len = udp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE, wait_end);
1855         if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
1856             ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, len);
1857         break;
1858     }
1859     if (len == AVERROR(EAGAIN) && first_queue_st &&
1860         rt->transport == RTSP_TRANSPORT_RTP) {
1861         rtsp_st = first_queue_st;
1862         ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
1863         goto end;
1864     }
1865     if (len < 0)
1866         return len;
1867     if (len == 0)
1868         return AVERROR_EOF;
1869     if (rt->transport == RTSP_TRANSPORT_RDT) {
1870         ret = ff_rdt_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
1871     } else if (rt->transport == RTSP_TRANSPORT_RTP) {
1872         ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
1873         if (ret < 0) {
1874             /* Either bad packet, or a RTCP packet. Check if the
1875              * first_rtcp_ntp_time field was initialized. */
1876             RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
1877             if (rtpctx->first_rtcp_ntp_time != AV_NOPTS_VALUE) {
1878                 /* first_rtcp_ntp_time has been initialized for this stream,
1879                  * copy the same value to all other uninitialized streams,
1880                  * in order to map their timestamp origin to the same ntp time
1881                  * as this one. */
1882                 int i;
1883                 AVStream *st = NULL;
1884                 if (rtsp_st->stream_index >= 0)
1885                     st = s->streams[rtsp_st->stream_index];
1886                 for (i = 0; i < rt->nb_rtsp_streams; i++) {
1887                     RTPDemuxContext *rtpctx2 = rt->rtsp_streams[i]->transport_priv;
1888                     AVStream *st2 = NULL;
1889                     if (rt->rtsp_streams[i]->stream_index >= 0)
1890                         st2 = s->streams[rt->rtsp_streams[i]->stream_index];
1891                     if (rtpctx2 && st && st2 &&
1892                         rtpctx2->first_rtcp_ntp_time == AV_NOPTS_VALUE) {
1893                         rtpctx2->first_rtcp_ntp_time = rtpctx->first_rtcp_ntp_time;
1894                         rtpctx2->rtcp_ts_offset = av_rescale_q(
1895                             rtpctx->rtcp_ts_offset, st->time_base,
1896                             st2->time_base);
1897                     }
1898                 }
1899             }
1900             if (ret == -RTCP_BYE) {
1901                 rt->nb_byes++;
1902
1903                 av_log(s, AV_LOG_DEBUG, "Received BYE for stream %d (%d/%d)\n",
1904                        rtsp_st->stream_index, rt->nb_byes, rt->nb_rtsp_streams);
1905
1906                 if (rt->nb_byes == rt->nb_rtsp_streams)
1907                     return AVERROR_EOF;
1908             }
1909         }
1910     } else if (rt->ts && CONFIG_RTPDEC) {
1911         ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf, len);
1912         if (ret >= 0) {
1913             if (ret < len) {
1914                 rt->recvbuf_len = len;
1915                 rt->recvbuf_pos = ret;
1916                 rt->cur_transport_priv = rt->ts;
1917                 return 1;
1918             } else {
1919                 ret = 0;
1920             }
1921         }
1922     } else {
1923         return AVERROR_INVALIDDATA;
1924     }
1925 end:
1926     if (ret < 0)
1927         goto redo;
1928     if (ret == 1)
1929         /* more packets may follow, so we save the RTP context */
1930         rt->cur_transport_priv = rtsp_st->transport_priv;
1931
1932     return ret;
1933 }
1934 #endif /* CONFIG_RTPDEC */
1935
1936 #if CONFIG_SDP_DEMUXER
1937 static int sdp_probe(AVProbeData *p1)
1938 {
1939     const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
1940
1941     /* we look for a line beginning "c=IN IP" */
1942     while (p < p_end && *p != '\0') {
1943         if (p + sizeof("c=IN IP") - 1 < p_end &&
1944             av_strstart(p, "c=IN IP", NULL))
1945             return AVPROBE_SCORE_MAX / 2;
1946
1947         while (p < p_end - 1 && *p != '\n') p++;
1948         if (++p >= p_end)
1949             break;
1950         if (*p == '\r')
1951             p++;
1952     }
1953     return 0;
1954 }
1955
1956 static int sdp_read_header(AVFormatContext *s)
1957 {
1958     RTSPState *rt = s->priv_data;
1959     RTSPStream *rtsp_st;
1960     int size, i, err;
1961     char *content;
1962     char url[1024];
1963
1964     if (!ff_network_init())
1965         return AVERROR(EIO);
1966
1967     if (s->max_delay < 0) /* Not set by the caller */
1968         s->max_delay = DEFAULT_REORDERING_DELAY;
1969
1970     /* read the whole sdp file */
1971     /* XXX: better loading */
1972     content = av_malloc(SDP_MAX_SIZE);
1973     size = avio_read(s->pb, content, SDP_MAX_SIZE - 1);
1974     if (size <= 0) {
1975         av_free(content);
1976         return AVERROR_INVALIDDATA;
1977     }
1978     content[size] ='\0';
1979
1980     err = ff_sdp_parse(s, content);
1981     av_free(content);
1982     if (err) goto fail;
1983
1984     /* open each RTP stream */
1985     for (i = 0; i < rt->nb_rtsp_streams; i++) {
1986         char namebuf[50];
1987         rtsp_st = rt->rtsp_streams[i];
1988
1989         getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip, sizeof(rtsp_st->sdp_ip),
1990                     namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
1991         ff_url_join(url, sizeof(url), "rtp", NULL,
1992                     namebuf, rtsp_st->sdp_port,
1993                     "?localport=%d&ttl=%d&connect=%d", rtsp_st->sdp_port,
1994                     rtsp_st->sdp_ttl,
1995                     rt->rtsp_flags & RTSP_FLAG_FILTER_SRC ? 1 : 0);
1996         if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
1997                        &s->interrupt_callback, NULL) < 0) {
1998             err = AVERROR_INVALIDDATA;
1999             goto fail;
2000         }
2001         if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
2002             goto fail;
2003     }
2004     return 0;
2005 fail:
2006     ff_rtsp_close_streams(s);
2007     ff_network_close();
2008     return err;
2009 }
2010
2011 static int sdp_read_close(AVFormatContext *s)
2012 {
2013     ff_rtsp_close_streams(s);
2014     ff_network_close();
2015     return 0;
2016 }
2017
2018 static const AVClass sdp_demuxer_class = {
2019     .class_name     = "SDP demuxer",
2020     .item_name      = av_default_item_name,
2021     .option         = sdp_options,
2022     .version        = LIBAVUTIL_VERSION_INT,
2023 };
2024
2025 AVInputFormat ff_sdp_demuxer = {
2026     .name           = "sdp",
2027     .long_name      = NULL_IF_CONFIG_SMALL("SDP"),
2028     .priv_data_size = sizeof(RTSPState),
2029     .read_probe     = sdp_probe,
2030     .read_header    = sdp_read_header,
2031     .read_packet    = ff_rtsp_fetch_packet,
2032     .read_close     = sdp_read_close,
2033     .priv_class     = &sdp_demuxer_class,
2034 };
2035 #endif /* CONFIG_SDP_DEMUXER */
2036
2037 #if CONFIG_RTP_DEMUXER
2038 static int rtp_probe(AVProbeData *p)
2039 {
2040     if (av_strstart(p->filename, "rtp:", NULL))
2041         return AVPROBE_SCORE_MAX;
2042     return 0;
2043 }
2044
2045 static int rtp_read_header(AVFormatContext *s)
2046 {
2047     uint8_t recvbuf[1500];
2048     char host[500], sdp[500];
2049     int ret, port;
2050     URLContext* in = NULL;
2051     int payload_type;
2052     AVCodecContext codec = { 0 };
2053     struct sockaddr_storage addr;
2054     AVIOContext pb;
2055     socklen_t addrlen = sizeof(addr);
2056     RTSPState *rt = s->priv_data;
2057
2058     if (!ff_network_init())
2059         return AVERROR(EIO);
2060
2061     ret = ffurl_open(&in, s->filename, AVIO_FLAG_READ,
2062                      &s->interrupt_callback, NULL);
2063     if (ret)
2064         goto fail;
2065
2066     while (1) {
2067         ret = ffurl_read(in, recvbuf, sizeof(recvbuf));
2068         if (ret == AVERROR(EAGAIN))
2069             continue;
2070         if (ret < 0)
2071             goto fail;
2072         if (ret < 12) {
2073             av_log(s, AV_LOG_WARNING, "Received too short packet\n");
2074             continue;
2075         }
2076
2077         if ((recvbuf[0] & 0xc0) != 0x80) {
2078             av_log(s, AV_LOG_WARNING, "Unsupported RTP version packet "
2079                                       "received\n");
2080             continue;
2081         }
2082
2083         if (RTP_PT_IS_RTCP(recvbuf[1]))
2084             continue;
2085
2086         payload_type = recvbuf[1] & 0x7f;
2087         break;
2088     }
2089     getsockname(ffurl_get_file_handle(in), (struct sockaddr*) &addr, &addrlen);
2090     ffurl_close(in);
2091     in = NULL;
2092
2093     if (ff_rtp_get_codec_info(&codec, payload_type)) {
2094         av_log(s, AV_LOG_ERROR, "Unable to receive RTP payload type %d "
2095                                 "without an SDP file describing it\n",
2096                                  payload_type);
2097         goto fail;
2098     }
2099     if (codec.codec_type != AVMEDIA_TYPE_DATA) {
2100         av_log(s, AV_LOG_WARNING, "Guessing on RTP content - if not received "
2101                                   "properly you need an SDP file "
2102                                   "describing it\n");
2103     }
2104
2105     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
2106                  NULL, 0, s->filename);
2107
2108     snprintf(sdp, sizeof(sdp),
2109              "v=0\r\nc=IN IP%d %s\r\nm=%s %d RTP/AVP %d\r\n",
2110              addr.ss_family == AF_INET ? 4 : 6, host,
2111              codec.codec_type == AVMEDIA_TYPE_DATA  ? "application" :
2112              codec.codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio",
2113              port, payload_type);
2114     av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp);
2115
2116     ffio_init_context(&pb, sdp, strlen(sdp), 0, NULL, NULL, NULL, NULL);
2117     s->pb = &pb;
2118
2119     /* sdp_read_header initializes this again */
2120     ff_network_close();
2121
2122     rt->media_type_mask = (1 << (AVMEDIA_TYPE_DATA+1)) - 1;
2123
2124     ret = sdp_read_header(s);
2125     s->pb = NULL;
2126     return ret;
2127
2128 fail:
2129     if (in)
2130         ffurl_close(in);
2131     ff_network_close();
2132     return ret;
2133 }
2134
2135 static const AVClass rtp_demuxer_class = {
2136     .class_name     = "RTP demuxer",
2137     .item_name      = av_default_item_name,
2138     .option         = rtp_options,
2139     .version        = LIBAVUTIL_VERSION_INT,
2140 };
2141
2142 AVInputFormat ff_rtp_demuxer = {
2143     .name           = "rtp",
2144     .long_name      = NULL_IF_CONFIG_SMALL("RTP input"),
2145     .priv_data_size = sizeof(RTSPState),
2146     .read_probe     = rtp_probe,
2147     .read_header    = rtp_read_header,
2148     .read_packet    = ff_rtsp_fetch_packet,
2149     .read_close     = sdp_read_close,
2150     .flags          = AVFMT_NOFILE,
2151     .priv_class     = &rtp_demuxer_class,
2152 };
2153 #endif /* CONFIG_RTP_DEMUXER */