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