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