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