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