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