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