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