rtspsrc: propose ports in multicast
[platform/upstream/gstreamer.git] / gst / rtsp / gstrtspsrc.c
1 /* GStreamer
2  * Copyright (C) <2005,2006> Wim Taymans <wim at fluendo dot com>
3  *               <2006> Lutz Mueller <lutz at topfrose dot de>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 /*
21  * Unless otherwise indicated, Source Code is licensed under MIT license.
22  * See further explanation attached in License Statement (distributed in the file
23  * LICENSE).
24  *
25  * Permission is hereby granted, free of charge, to any person obtaining a copy of
26  * this software and associated documentation files (the "Software"), to deal in
27  * the Software without restriction, including without limitation the rights to
28  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
29  * of the Software, and to permit persons to whom the Software is furnished to do
30  * so, subject to the following conditions:
31  *
32  * The above copyright notice and this permission notice shall be included in all
33  * copies or substantial portions of the Software.
34  *
35  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
37  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
38  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
39  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
40  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
41  * SOFTWARE.
42  */
43 /**
44  * SECTION:element-rtspsrc
45  *
46  * Makes a connection to an RTSP server and read the data.
47  * rtspsrc strictly follows RFC 2326 and therefore does not (yet) support
48  * RealMedia/Quicktime/Microsoft extensions.
49  *
50  * RTSP supports transport over TCP or UDP in unicast or multicast mode. By
51  * default rtspsrc will negotiate a connection in the following order:
52  * UDP unicast/UDP multicast/TCP. The order cannot be changed but the allowed
53  * protocols can be controlled with the #GstRTSPSrc:protocols property.
54  *
55  * rtspsrc currently understands SDP as the format of the session description.
56  * For each stream listed in the SDP a new rtp_stream%d pad will be created
57  * with caps derived from the SDP media description. This is a caps of mime type
58  * "application/x-rtp" that can be connected to any available RTP depayloader
59  * element.
60  *
61  * rtspsrc will internally instantiate an RTP session manager element
62  * that will handle the RTCP messages to and from the server, jitter removal,
63  * packet reordering along with providing a clock for the pipeline.
64  * This feature is implemented using the gstrtpbin element.
65  *
66  * rtspsrc acts like a live source and will therefore only generate data in the
67  * PLAYING state.
68  *
69  * <refsect2>
70  * <title>Example launch line</title>
71  * |[
72  * gst-launch-1.0 rtspsrc location=rtsp://some.server/url ! fakesink
73  * ]| Establish a connection to an RTSP server and send the raw RTP packets to a
74  * fakesink.
75  * </refsect2>
76  *
77  * Last reviewed on 2006-08-18 (0.10.5)
78  */
79
80 #ifdef HAVE_CONFIG_H
81 #include "config.h"
82 #endif
83
84 #ifdef HAVE_UNISTD_H
85 #include <unistd.h>
86 #endif /* HAVE_UNISTD_H */
87 #include <stdlib.h>
88 #include <string.h>
89 #include <stdio.h>
90 #include <stdarg.h>
91
92 #include <gst/sdp/gstsdpmessage.h>
93 #include <gst/rtp/gstrtppayloads.h>
94
95 #include "gst/gst-i18n-plugin.h"
96
97 #include "gstrtspsrc.h"
98
99 GST_DEBUG_CATEGORY_STATIC (rtspsrc_debug);
100 #define GST_CAT_DEFAULT (rtspsrc_debug)
101
102 static GstStaticPadTemplate rtptemplate = GST_STATIC_PAD_TEMPLATE ("stream_%u",
103     GST_PAD_SRC,
104     GST_PAD_SOMETIMES,
105     GST_STATIC_CAPS ("application/x-rtp; application/x-rdt"));
106
107 /* templates used internally */
108 static GstStaticPadTemplate anysrctemplate =
109 GST_STATIC_PAD_TEMPLATE ("internalsrc_%u",
110     GST_PAD_SRC,
111     GST_PAD_SOMETIMES,
112     GST_STATIC_CAPS_ANY);
113
114 static GstStaticPadTemplate anysinktemplate =
115 GST_STATIC_PAD_TEMPLATE ("internalsink_%u",
116     GST_PAD_SINK,
117     GST_PAD_SOMETIMES,
118     GST_STATIC_CAPS_ANY);
119
120 enum
121 {
122   /* FILL ME */
123   LAST_SIGNAL
124 };
125
126 enum _GstRtspSrcRtcpSyncMode
127 {
128   RTCP_SYNC_ALWAYS,
129   RTCP_SYNC_INITIAL,
130   RTCP_SYNC_RTP
131 };
132
133 enum _GstRtspSrcBufferMode
134 {
135   BUFFER_MODE_NONE,
136   BUFFER_MODE_SLAVE,
137   BUFFER_MODE_BUFFER,
138   BUFFER_MODE_AUTO
139 };
140
141 #define GST_TYPE_RTSP_SRC_BUFFER_MODE (gst_rtsp_src_buffer_mode_get_type())
142 static GType
143 gst_rtsp_src_buffer_mode_get_type (void)
144 {
145   static GType buffer_mode_type = 0;
146   static const GEnumValue buffer_modes[] = {
147     {BUFFER_MODE_NONE, "Only use RTP timestamps", "none"},
148     {BUFFER_MODE_SLAVE, "Slave receiver to sender clock", "slave"},
149     {BUFFER_MODE_BUFFER, "Do low/high watermark buffering", "buffer"},
150     {BUFFER_MODE_AUTO, "Choose mode depending on stream live", "auto"},
151     {0, NULL, NULL},
152   };
153
154   if (!buffer_mode_type) {
155     buffer_mode_type =
156         g_enum_register_static ("GstRTSPSrcBufferMode", buffer_modes);
157   }
158   return buffer_mode_type;
159 }
160
161 #define DEFAULT_LOCATION         NULL
162 #define DEFAULT_PROTOCOLS        GST_RTSP_LOWER_TRANS_UDP | GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP
163 #define DEFAULT_DEBUG            FALSE
164 #define DEFAULT_RETRY            20
165 #define DEFAULT_TIMEOUT          5000000
166 #define DEFAULT_UDP_BUFFER_SIZE  0x80000
167 #define DEFAULT_TCP_TIMEOUT      20000000
168 #define DEFAULT_LATENCY_MS       2000
169 #define DEFAULT_DROP_ON_LATENCY  FALSE
170 #define DEFAULT_CONNECTION_SPEED 0
171 #define DEFAULT_NAT_METHOD       GST_RTSP_NAT_DUMMY
172 #define DEFAULT_DO_RTCP          TRUE
173 #define DEFAULT_DO_RTSP_KEEP_ALIVE       TRUE
174 #define DEFAULT_PROXY            NULL
175 #define DEFAULT_RTP_BLOCKSIZE    0
176 #define DEFAULT_USER_ID          NULL
177 #define DEFAULT_USER_PW          NULL
178 #define DEFAULT_BUFFER_MODE      BUFFER_MODE_AUTO
179 #define DEFAULT_PORT_RANGE       NULL
180 #define DEFAULT_SHORT_HEADER     FALSE
181 #define DEFAULT_PROBATION        2
182
183 enum
184 {
185   PROP_0,
186   PROP_LOCATION,
187   PROP_PROTOCOLS,
188   PROP_DEBUG,
189   PROP_RETRY,
190   PROP_TIMEOUT,
191   PROP_TCP_TIMEOUT,
192   PROP_LATENCY,
193   PROP_DROP_ON_LATENCY,
194   PROP_CONNECTION_SPEED,
195   PROP_NAT_METHOD,
196   PROP_DO_RTCP,
197   PROP_DO_RTSP_KEEP_ALIVE,
198   PROP_PROXY,
199   PROP_RTP_BLOCKSIZE,
200   PROP_USER_ID,
201   PROP_USER_PW,
202   PROP_BUFFER_MODE,
203   PROP_PORT_RANGE,
204   PROP_UDP_BUFFER_SIZE,
205   PROP_SHORT_HEADER,
206   PROP_PROBATION,
207   PROP_LAST
208 };
209
210 #define GST_TYPE_RTSP_NAT_METHOD (gst_rtsp_nat_method_get_type())
211 static GType
212 gst_rtsp_nat_method_get_type (void)
213 {
214   static GType rtsp_nat_method_type = 0;
215   static const GEnumValue rtsp_nat_method[] = {
216     {GST_RTSP_NAT_NONE, "None", "none"},
217     {GST_RTSP_NAT_DUMMY, "Send Dummy packets", "dummy"},
218     {0, NULL, NULL},
219   };
220
221   if (!rtsp_nat_method_type) {
222     rtsp_nat_method_type =
223         g_enum_register_static ("GstRTSPNatMethod", rtsp_nat_method);
224   }
225   return rtsp_nat_method_type;
226 }
227
228 static void gst_rtspsrc_finalize (GObject * object);
229
230 static void gst_rtspsrc_set_property (GObject * object, guint prop_id,
231     const GValue * value, GParamSpec * pspec);
232 static void gst_rtspsrc_get_property (GObject * object, guint prop_id,
233     GValue * value, GParamSpec * pspec);
234
235 static void gst_rtspsrc_uri_handler_init (gpointer g_iface,
236     gpointer iface_data);
237
238 static void gst_rtspsrc_sdp_attributes_to_caps (GArray * attributes,
239     GstCaps * caps);
240
241 static gboolean gst_rtspsrc_set_proxy (GstRTSPSrc * rtsp, const gchar * proxy);
242 static void gst_rtspsrc_set_tcp_timeout (GstRTSPSrc * rtspsrc, guint64 timeout);
243
244 static GstCaps *gst_rtspsrc_media_to_caps (gint pt, const GstSDPMedia * media);
245
246 static GstStateChangeReturn gst_rtspsrc_change_state (GstElement * element,
247     GstStateChange transition);
248 static gboolean gst_rtspsrc_send_event (GstElement * element, GstEvent * event);
249 static void gst_rtspsrc_handle_message (GstBin * bin, GstMessage * message);
250
251 static gboolean gst_rtspsrc_setup_auth (GstRTSPSrc * src,
252     GstRTSPMessage * response);
253
254 static void gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask);
255 static GstRTSPResult gst_rtspsrc_send_cb (GstRTSPExtension * ext,
256     GstRTSPMessage * request, GstRTSPMessage * response, GstRTSPSrc * src);
257
258 static GstRTSPResult gst_rtspsrc_open (GstRTSPSrc * src, gboolean async);
259 static GstRTSPResult gst_rtspsrc_play (GstRTSPSrc * src, GstSegment * segment,
260     gboolean async);
261 static GstRTSPResult gst_rtspsrc_pause (GstRTSPSrc * src, gboolean async);
262 static GstRTSPResult gst_rtspsrc_close (GstRTSPSrc * src, gboolean async,
263     gboolean only_close);
264
265 static gboolean gst_rtspsrc_uri_set_uri (GstURIHandler * handler,
266     const gchar * uri, GError ** error);
267 static gchar *gst_rtspsrc_uri_get_uri (GstURIHandler * handler);
268
269 static gboolean gst_rtspsrc_activate_streams (GstRTSPSrc * src);
270 static gboolean gst_rtspsrc_loop (GstRTSPSrc * src);
271 static gboolean gst_rtspsrc_stream_push_event (GstRTSPSrc * src,
272     GstRTSPStream * stream, GstEvent * event);
273 static gboolean gst_rtspsrc_push_event (GstRTSPSrc * src, GstEvent * event);
274
275 /* commands we send to out loop to notify it of events */
276 #define CMD_OPEN        (1 << 0)
277 #define CMD_PLAY        (1 << 1)
278 #define CMD_PAUSE       (1 << 2)
279 #define CMD_CLOSE       (1 << 3)
280 #define CMD_WAIT        (1 << 4)
281 #define CMD_RECONNECT   (1 << 5)
282 #define CMD_LOOP        (1 << 6)
283
284 #define GST_ELEMENT_PROGRESS(el, type, code, text)      \
285 G_STMT_START {                                          \
286   gchar *__txt = _gst_element_error_printf text;        \
287   gst_element_post_message (GST_ELEMENT_CAST (el),      \
288       gst_message_new_progress (GST_OBJECT_CAST (el),   \
289           GST_PROGRESS_TYPE_ ##type, code, __txt));     \
290   g_free (__txt);                                       \
291 } G_STMT_END
292
293 /*static guint gst_rtspsrc_signals[LAST_SIGNAL] = { 0 }; */
294 #define gst_rtspsrc_parent_class parent_class
295 G_DEFINE_TYPE_WITH_CODE (GstRTSPSrc, gst_rtspsrc, GST_TYPE_BIN,
296     G_IMPLEMENT_INTERFACE (GST_TYPE_URI_HANDLER, gst_rtspsrc_uri_handler_init));
297
298 static void
299 gst_rtspsrc_class_init (GstRTSPSrcClass * klass)
300 {
301   GObjectClass *gobject_class;
302   GstElementClass *gstelement_class;
303   GstBinClass *gstbin_class;
304
305   gobject_class = (GObjectClass *) klass;
306   gstelement_class = (GstElementClass *) klass;
307   gstbin_class = (GstBinClass *) klass;
308
309   GST_DEBUG_CATEGORY_INIT (rtspsrc_debug, "rtspsrc", 0, "RTSP src");
310
311   gobject_class->set_property = gst_rtspsrc_set_property;
312   gobject_class->get_property = gst_rtspsrc_get_property;
313
314   gobject_class->finalize = gst_rtspsrc_finalize;
315
316   g_object_class_install_property (gobject_class, PROP_LOCATION,
317       g_param_spec_string ("location", "RTSP Location",
318           "Location of the RTSP url to read",
319           DEFAULT_LOCATION, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
320
321   g_object_class_install_property (gobject_class, PROP_PROTOCOLS,
322       g_param_spec_flags ("protocols", "Protocols",
323           "Allowed lower transport protocols", GST_TYPE_RTSP_LOWER_TRANS,
324           DEFAULT_PROTOCOLS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
325
326   g_object_class_install_property (gobject_class, PROP_DEBUG,
327       g_param_spec_boolean ("debug", "Debug",
328           "Dump request and response messages to stdout",
329           DEFAULT_DEBUG, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
330
331   g_object_class_install_property (gobject_class, PROP_RETRY,
332       g_param_spec_uint ("retry", "Retry",
333           "Max number of retries when allocating RTP ports.",
334           0, G_MAXUINT16, DEFAULT_RETRY,
335           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
336
337   g_object_class_install_property (gobject_class, PROP_TIMEOUT,
338       g_param_spec_uint64 ("timeout", "Timeout",
339           "Retry TCP transport after UDP timeout microseconds (0 = disabled)",
340           0, G_MAXUINT64, DEFAULT_TIMEOUT,
341           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
342
343   g_object_class_install_property (gobject_class, PROP_TCP_TIMEOUT,
344       g_param_spec_uint64 ("tcp-timeout", "TCP Timeout",
345           "Fail after timeout microseconds on TCP connections (0 = disabled)",
346           0, G_MAXUINT64, DEFAULT_TCP_TIMEOUT,
347           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
348
349   g_object_class_install_property (gobject_class, PROP_LATENCY,
350       g_param_spec_uint ("latency", "Buffer latency in ms",
351           "Amount of ms to buffer", 0, G_MAXUINT, DEFAULT_LATENCY_MS,
352           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
353
354   g_object_class_install_property (gobject_class, PROP_DROP_ON_LATENCY,
355       g_param_spec_boolean ("drop-on-latency",
356           "Drop buffers when maximum latency is reached",
357           "Tells the jitterbuffer to never exceed the given latency in size",
358           DEFAULT_DROP_ON_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
359
360   g_object_class_install_property (gobject_class, PROP_CONNECTION_SPEED,
361       g_param_spec_uint64 ("connection-speed", "Connection Speed",
362           "Network connection speed in kbps (0 = unknown)",
363           0, G_MAXUINT64 / 1000, DEFAULT_CONNECTION_SPEED,
364           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
365
366   g_object_class_install_property (gobject_class, PROP_NAT_METHOD,
367       g_param_spec_enum ("nat-method", "NAT Method",
368           "Method to use for traversing firewalls and NAT",
369           GST_TYPE_RTSP_NAT_METHOD, DEFAULT_NAT_METHOD,
370           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
371
372   /**
373    * GstRTSPSrc::do-rtcp
374    *
375    * Enable RTCP support. Some old server don't like RTCP and then this property
376    * needs to be set to FALSE.
377    *
378    * Since: 0.10.15
379    */
380   g_object_class_install_property (gobject_class, PROP_DO_RTCP,
381       g_param_spec_boolean ("do-rtcp", "Do RTCP",
382           "Send RTCP packets, disable for old incompatible server.",
383           DEFAULT_DO_RTCP, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
384
385   /**
386    * GstRTSPSrc::do-rtsp-keep-alive
387    *
388    * Enable RTSP keep laive support. Some old server don't like RTSP
389    * keep alive and then this property needs to be set to FALSE.
390    *
391    * Since: 0.10.32
392    */
393   g_object_class_install_property (gobject_class, PROP_DO_RTSP_KEEP_ALIVE,
394       g_param_spec_boolean ("do-rtsp-keep-alive", "Do RTSP Keep Alive",
395           "Send RTSP keep alive packets, disable for old incompatible server.",
396           DEFAULT_DO_RTSP_KEEP_ALIVE,
397           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
398
399   /**
400    * GstRTSPSrc::proxy
401    *
402    * Set the proxy parameters. This has to be a string of the format
403    * [http://][user:passwd@]host[:port].
404    *
405    * Since: 0.10.15
406    */
407   g_object_class_install_property (gobject_class, PROP_PROXY,
408       g_param_spec_string ("proxy", "Proxy",
409           "Proxy settings for HTTP tunneling. Format: [http://][user:passwd@]host[:port]",
410           DEFAULT_PROXY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
411
412   /**
413    * GstRTSPSrc::rtp_blocksize
414    *
415    * RTP package size to suggest to server.
416    *
417    * Since: 0.10.16
418    */
419   g_object_class_install_property (gobject_class, PROP_RTP_BLOCKSIZE,
420       g_param_spec_uint ("rtp-blocksize", "RTP Blocksize",
421           "RTP package size to suggest to server (0 = disabled)",
422           0, 65536, DEFAULT_RTP_BLOCKSIZE,
423           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
424
425   g_object_class_install_property (gobject_class,
426       PROP_USER_ID,
427       g_param_spec_string ("user-id", "user-id",
428           "RTSP location URI user id for authentication", DEFAULT_USER_ID,
429           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
430   g_object_class_install_property (gobject_class, PROP_USER_PW,
431       g_param_spec_string ("user-pw", "user-pw",
432           "RTSP location URI user password for authentication", DEFAULT_USER_PW,
433           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
434
435   /**
436    * GstRTSPSrc::buffer-mode:
437    *
438    * Control the buffering and timestamping mode used by the jitterbuffer.
439    *
440    * Since: 0.10.22
441    */
442   g_object_class_install_property (gobject_class, PROP_BUFFER_MODE,
443       g_param_spec_enum ("buffer-mode", "Buffer Mode",
444           "Control the buffering algorithm in use",
445           GST_TYPE_RTSP_SRC_BUFFER_MODE, DEFAULT_BUFFER_MODE,
446           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
447
448   /**
449    * GstRTSPSrc::port-range:
450    *
451    * Configure the client port numbers that can be used to recieve RTP and
452    * RTCP.
453    *
454    * Since: 0.10.25
455    */
456   g_object_class_install_property (gobject_class, PROP_PORT_RANGE,
457       g_param_spec_string ("port-range", "Port range",
458           "Client port range that can be used to receive RTP and RTCP data, "
459           "eg. 3000-3005 (NULL = no restrictions)", DEFAULT_PORT_RANGE,
460           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
461
462   /**
463    * GstRTSPSrc::udp-buffer-size:
464    *
465    * Size of the kernel UDP receive buffer in bytes.
466    *
467    * Since: 0.10.26
468    */
469   g_object_class_install_property (gobject_class, PROP_UDP_BUFFER_SIZE,
470       g_param_spec_int ("udp-buffer-size", "UDP Buffer Size",
471           "Size of the kernel UDP receive buffer in bytes, 0=default",
472           0, G_MAXINT, DEFAULT_UDP_BUFFER_SIZE,
473           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
474
475   /**
476    * GstRTSPSrc::short-header:
477    *
478    * Only send the basic RTSP headers for broken encoders.
479    *
480    * Since: 0.10.31
481    */
482   g_object_class_install_property (gobject_class, PROP_SHORT_HEADER,
483       g_param_spec_boolean ("short-header", "Short Header",
484           "Only send the basic RTSP headers for broken encoders",
485           DEFAULT_SHORT_HEADER, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
486
487   g_object_class_install_property (gobject_class, PROP_PROBATION,
488       g_param_spec_uint ("probation", "Number of probations",
489           "Consecutive packet sequence numbers to accept the source",
490           0, G_MAXUINT, DEFAULT_PROBATION,
491           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
492
493   gstelement_class->send_event = gst_rtspsrc_send_event;
494   gstelement_class->change_state = gst_rtspsrc_change_state;
495
496   gst_element_class_add_pad_template (gstelement_class,
497       gst_static_pad_template_get (&rtptemplate));
498
499   gst_element_class_set_static_metadata (gstelement_class,
500       "RTSP packet receiver", "Source/Network",
501       "Receive data over the network via RTSP (RFC 2326)",
502       "Wim Taymans <wim@fluendo.com>, "
503       "Thijs Vermeir <thijs.vermeir@barco.com>, "
504       "Lutz Mueller <lutz@topfrose.de>");
505
506   gstbin_class->handle_message = gst_rtspsrc_handle_message;
507
508   gst_rtsp_ext_list_init ();
509 }
510
511
512 static void
513 gst_rtspsrc_init (GstRTSPSrc * src)
514 {
515   src->conninfo.location = g_strdup (DEFAULT_LOCATION);
516   src->protocols = DEFAULT_PROTOCOLS;
517   src->debug = DEFAULT_DEBUG;
518   src->retry = DEFAULT_RETRY;
519   src->udp_timeout = DEFAULT_TIMEOUT;
520   gst_rtspsrc_set_tcp_timeout (src, DEFAULT_TCP_TIMEOUT);
521   src->latency = DEFAULT_LATENCY_MS;
522   src->drop_on_latency = DEFAULT_DROP_ON_LATENCY;
523   src->connection_speed = DEFAULT_CONNECTION_SPEED;
524   src->nat_method = DEFAULT_NAT_METHOD;
525   src->do_rtcp = DEFAULT_DO_RTCP;
526   src->do_rtsp_keep_alive = DEFAULT_DO_RTSP_KEEP_ALIVE;
527   gst_rtspsrc_set_proxy (src, DEFAULT_PROXY);
528   src->rtp_blocksize = DEFAULT_RTP_BLOCKSIZE;
529   src->user_id = g_strdup (DEFAULT_USER_ID);
530   src->user_pw = g_strdup (DEFAULT_USER_PW);
531   src->buffer_mode = DEFAULT_BUFFER_MODE;
532   src->client_port_range.min = 0;
533   src->client_port_range.max = 0;
534   src->udp_buffer_size = DEFAULT_UDP_BUFFER_SIZE;
535   src->short_header = DEFAULT_SHORT_HEADER;
536   src->probation = DEFAULT_PROBATION;
537
538   /* get a list of all extensions */
539   src->extensions = gst_rtsp_ext_list_get ();
540
541   /* connect to send signal */
542   gst_rtsp_ext_list_connect (src->extensions, "send",
543       (GCallback) gst_rtspsrc_send_cb, src);
544
545   /* protects the streaming thread in interleaved mode or the polling
546    * thread in UDP mode. */
547   g_rec_mutex_init (&src->stream_rec_lock);
548
549   /* protects our state changes from multiple invocations */
550   g_rec_mutex_init (&src->state_rec_lock);
551
552   src->state = GST_RTSP_STATE_INVALID;
553
554   GST_OBJECT_FLAG_SET (src, GST_ELEMENT_FLAG_SOURCE);
555 }
556
557 static void
558 gst_rtspsrc_finalize (GObject * object)
559 {
560   GstRTSPSrc *rtspsrc;
561
562   rtspsrc = GST_RTSPSRC (object);
563
564   gst_rtsp_ext_list_free (rtspsrc->extensions);
565   g_free (rtspsrc->conninfo.location);
566   gst_rtsp_url_free (rtspsrc->conninfo.url);
567   g_free (rtspsrc->conninfo.url_str);
568   g_free (rtspsrc->user_id);
569   g_free (rtspsrc->user_pw);
570
571   if (rtspsrc->sdp) {
572     gst_sdp_message_free (rtspsrc->sdp);
573     rtspsrc->sdp = NULL;
574   }
575
576   /* free locks */
577   g_rec_mutex_clear (&rtspsrc->stream_rec_lock);
578   g_rec_mutex_clear (&rtspsrc->state_rec_lock);
579
580   G_OBJECT_CLASS (parent_class)->finalize (object);
581 }
582
583 /* a proxy string of the format [user:passwd@]host[:port] */
584 static gboolean
585 gst_rtspsrc_set_proxy (GstRTSPSrc * rtsp, const gchar * proxy)
586 {
587   gchar *p, *at, *col;
588
589   g_free (rtsp->proxy_user);
590   rtsp->proxy_user = NULL;
591   g_free (rtsp->proxy_passwd);
592   rtsp->proxy_passwd = NULL;
593   g_free (rtsp->proxy_host);
594   rtsp->proxy_host = NULL;
595   rtsp->proxy_port = 0;
596
597   p = (gchar *) proxy;
598
599   if (p == NULL)
600     return TRUE;
601
602   /* we allow http:// in front but ignore it */
603   if (g_str_has_prefix (p, "http://"))
604     p += 7;
605
606   at = strchr (p, '@');
607   if (at) {
608     /* look for user:passwd */
609     col = strchr (proxy, ':');
610     if (col == NULL || col > at)
611       return FALSE;
612
613     rtsp->proxy_user = g_strndup (p, col - p);
614     col++;
615     rtsp->proxy_passwd = g_strndup (col, at - col);
616
617     /* move to host */
618     p = at + 1;
619   }
620   col = strchr (p, ':');
621
622   if (col) {
623     /* everything before the colon is the hostname */
624     rtsp->proxy_host = g_strndup (p, col - p);
625     p = col + 1;
626     rtsp->proxy_port = strtoul (p, (char **) &p, 10);
627   } else {
628     rtsp->proxy_host = g_strdup (p);
629     rtsp->proxy_port = 8080;
630   }
631   return TRUE;
632 }
633
634 static void
635 gst_rtspsrc_set_tcp_timeout (GstRTSPSrc * rtspsrc, guint64 timeout)
636 {
637   rtspsrc->tcp_timeout.tv_sec = timeout / G_USEC_PER_SEC;
638   rtspsrc->tcp_timeout.tv_usec = timeout % G_USEC_PER_SEC;
639
640   if (timeout != 0)
641     rtspsrc->ptcp_timeout = &rtspsrc->tcp_timeout;
642   else
643     rtspsrc->ptcp_timeout = NULL;
644 }
645
646 static void
647 gst_rtspsrc_set_property (GObject * object, guint prop_id, const GValue * value,
648     GParamSpec * pspec)
649 {
650   GstRTSPSrc *rtspsrc;
651
652   rtspsrc = GST_RTSPSRC (object);
653
654   switch (prop_id) {
655     case PROP_LOCATION:
656       gst_rtspsrc_uri_set_uri (GST_URI_HANDLER (rtspsrc),
657           g_value_get_string (value), NULL);
658       break;
659     case PROP_PROTOCOLS:
660       rtspsrc->protocols = g_value_get_flags (value);
661       break;
662     case PROP_DEBUG:
663       rtspsrc->debug = g_value_get_boolean (value);
664       break;
665     case PROP_RETRY:
666       rtspsrc->retry = g_value_get_uint (value);
667       break;
668     case PROP_TIMEOUT:
669       rtspsrc->udp_timeout = g_value_get_uint64 (value);
670       break;
671     case PROP_TCP_TIMEOUT:
672       gst_rtspsrc_set_tcp_timeout (rtspsrc, g_value_get_uint64 (value));
673       break;
674     case PROP_LATENCY:
675       rtspsrc->latency = g_value_get_uint (value);
676       break;
677     case PROP_DROP_ON_LATENCY:
678       rtspsrc->drop_on_latency = g_value_get_boolean (value);
679       break;
680     case PROP_CONNECTION_SPEED:
681       rtspsrc->connection_speed = g_value_get_uint64 (value);
682       break;
683     case PROP_NAT_METHOD:
684       rtspsrc->nat_method = g_value_get_enum (value);
685       break;
686     case PROP_DO_RTCP:
687       rtspsrc->do_rtcp = g_value_get_boolean (value);
688       break;
689     case PROP_DO_RTSP_KEEP_ALIVE:
690       rtspsrc->do_rtsp_keep_alive = g_value_get_boolean (value);
691       break;
692     case PROP_PROXY:
693       gst_rtspsrc_set_proxy (rtspsrc, g_value_get_string (value));
694       break;
695     case PROP_RTP_BLOCKSIZE:
696       rtspsrc->rtp_blocksize = g_value_get_uint (value);
697       break;
698     case PROP_USER_ID:
699       if (rtspsrc->user_id)
700         g_free (rtspsrc->user_id);
701       rtspsrc->user_id = g_value_dup_string (value);
702       break;
703     case PROP_USER_PW:
704       if (rtspsrc->user_pw)
705         g_free (rtspsrc->user_pw);
706       rtspsrc->user_pw = g_value_dup_string (value);
707       break;
708     case PROP_BUFFER_MODE:
709       rtspsrc->buffer_mode = g_value_get_enum (value);
710       break;
711     case PROP_PORT_RANGE:
712     {
713       const gchar *str;
714
715       str = g_value_get_string (value);
716       if (str) {
717         sscanf (str, "%u-%u",
718             &rtspsrc->client_port_range.min, &rtspsrc->client_port_range.max);
719       } else {
720         rtspsrc->client_port_range.min = 0;
721         rtspsrc->client_port_range.max = 0;
722       }
723       break;
724     }
725     case PROP_UDP_BUFFER_SIZE:
726       rtspsrc->udp_buffer_size = g_value_get_int (value);
727       break;
728     case PROP_SHORT_HEADER:
729       rtspsrc->short_header = g_value_get_boolean (value);
730       break;
731     case PROP_PROBATION:
732       rtspsrc->probation = g_value_get_uint (value);
733       break;
734     default:
735       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
736       break;
737   }
738 }
739
740 static void
741 gst_rtspsrc_get_property (GObject * object, guint prop_id, GValue * value,
742     GParamSpec * pspec)
743 {
744   GstRTSPSrc *rtspsrc;
745
746   rtspsrc = GST_RTSPSRC (object);
747
748   switch (prop_id) {
749     case PROP_LOCATION:
750       g_value_set_string (value, rtspsrc->conninfo.location);
751       break;
752     case PROP_PROTOCOLS:
753       g_value_set_flags (value, rtspsrc->protocols);
754       break;
755     case PROP_DEBUG:
756       g_value_set_boolean (value, rtspsrc->debug);
757       break;
758     case PROP_RETRY:
759       g_value_set_uint (value, rtspsrc->retry);
760       break;
761     case PROP_TIMEOUT:
762       g_value_set_uint64 (value, rtspsrc->udp_timeout);
763       break;
764     case PROP_TCP_TIMEOUT:
765     {
766       guint64 timeout;
767
768       timeout = rtspsrc->tcp_timeout.tv_sec * G_USEC_PER_SEC +
769           rtspsrc->tcp_timeout.tv_usec;
770       g_value_set_uint64 (value, timeout);
771       break;
772     }
773     case PROP_LATENCY:
774       g_value_set_uint (value, rtspsrc->latency);
775       break;
776     case PROP_DROP_ON_LATENCY:
777       g_value_set_boolean (value, rtspsrc->drop_on_latency);
778       break;
779     case PROP_CONNECTION_SPEED:
780       g_value_set_uint64 (value, rtspsrc->connection_speed);
781       break;
782     case PROP_NAT_METHOD:
783       g_value_set_enum (value, rtspsrc->nat_method);
784       break;
785     case PROP_DO_RTCP:
786       g_value_set_boolean (value, rtspsrc->do_rtcp);
787       break;
788     case PROP_DO_RTSP_KEEP_ALIVE:
789       g_value_set_boolean (value, rtspsrc->do_rtsp_keep_alive);
790       break;
791     case PROP_PROXY:
792     {
793       gchar *str;
794
795       if (rtspsrc->proxy_host) {
796         str =
797             g_strdup_printf ("%s:%d", rtspsrc->proxy_host, rtspsrc->proxy_port);
798       } else {
799         str = NULL;
800       }
801       g_value_take_string (value, str);
802       break;
803     }
804     case PROP_RTP_BLOCKSIZE:
805       g_value_set_uint (value, rtspsrc->rtp_blocksize);
806       break;
807     case PROP_USER_ID:
808       g_value_set_string (value, rtspsrc->user_id);
809       break;
810     case PROP_USER_PW:
811       g_value_set_string (value, rtspsrc->user_pw);
812       break;
813     case PROP_BUFFER_MODE:
814       g_value_set_enum (value, rtspsrc->buffer_mode);
815       break;
816     case PROP_PORT_RANGE:
817     {
818       gchar *str;
819
820       if (rtspsrc->client_port_range.min != 0) {
821         str = g_strdup_printf ("%u-%u", rtspsrc->client_port_range.min,
822             rtspsrc->client_port_range.max);
823       } else {
824         str = NULL;
825       }
826       g_value_take_string (value, str);
827       break;
828     }
829     case PROP_UDP_BUFFER_SIZE:
830       g_value_set_int (value, rtspsrc->udp_buffer_size);
831       break;
832     case PROP_SHORT_HEADER:
833       g_value_set_boolean (value, rtspsrc->short_header);
834       break;
835     case PROP_PROBATION:
836       g_value_set_uint (value, rtspsrc->probation);
837       break;
838     default:
839       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
840       break;
841   }
842 }
843
844 static gint
845 find_stream_by_id (GstRTSPStream * stream, gint * id)
846 {
847   if (stream->id == *id)
848     return 0;
849
850   return -1;
851 }
852
853 static gint
854 find_stream_by_channel (GstRTSPStream * stream, gint * channel)
855 {
856   if (stream->channel[0] == *channel || stream->channel[1] == *channel)
857     return 0;
858
859   return -1;
860 }
861
862 static gint
863 find_stream_by_pt (GstRTSPStream * stream, gint * pt)
864 {
865   if (stream->pt == *pt)
866     return 0;
867
868   return -1;
869 }
870
871 static gint
872 find_stream_by_udpsrc (GstRTSPStream * stream, gconstpointer a)
873 {
874   GstElement *src = (GstElement *) a;
875
876   if (stream->udpsrc[0] == src)
877     return 0;
878   if (stream->udpsrc[1] == src)
879     return 0;
880
881   return -1;
882 }
883
884 static gint
885 find_stream_by_setup (GstRTSPStream * stream, gconstpointer a)
886 {
887   /* check qualified setup_url */
888   if (!strcmp (stream->conninfo.location, (gchar *) a))
889     return 0;
890   /* check original control_url */
891   if (!strcmp (stream->control_url, (gchar *) a))
892     return 0;
893
894   /* check if qualified setup_url ends with string */
895   if (g_str_has_suffix (stream->control_url, (gchar *) a))
896     return 0;
897
898   return -1;
899 }
900
901 static GstRTSPStream *
902 find_stream (GstRTSPSrc * src, gconstpointer data, gconstpointer func)
903 {
904   GList *lstream;
905
906   /* find and get stream */
907   if ((lstream = g_list_find_custom (src->streams, data, (GCompareFunc) func)))
908     return (GstRTSPStream *) lstream->data;
909
910   return NULL;
911 }
912
913 static const GstSDPBandwidth *
914 gst_rtspsrc_get_bandwidth (GstRTSPSrc * src, const GstSDPMessage * sdp,
915     const GstSDPMedia * media, const gchar * type)
916 {
917   guint i, len;
918
919   /* first look in the media specific section */
920   len = gst_sdp_media_bandwidths_len (media);
921   for (i = 0; i < len; i++) {
922     const GstSDPBandwidth *bw = gst_sdp_media_get_bandwidth (media, i);
923
924     if (strcmp (bw->bwtype, type) == 0)
925       return bw;
926   }
927   /* then look in the message specific section */
928   len = gst_sdp_message_bandwidths_len (sdp);
929   for (i = 0; i < len; i++) {
930     const GstSDPBandwidth *bw = gst_sdp_message_get_bandwidth (sdp, i);
931
932     if (strcmp (bw->bwtype, type) == 0)
933       return bw;
934   }
935   return NULL;
936 }
937
938 static void
939 gst_rtspsrc_collect_bandwidth (GstRTSPSrc * src, const GstSDPMessage * sdp,
940     const GstSDPMedia * media, GstRTSPStream * stream)
941 {
942   const GstSDPBandwidth *bw;
943
944   if ((bw = gst_rtspsrc_get_bandwidth (src, sdp, media, GST_SDP_BWTYPE_AS)))
945     stream->as_bandwidth = bw->bandwidth;
946   else
947     stream->as_bandwidth = -1;
948
949   if ((bw = gst_rtspsrc_get_bandwidth (src, sdp, media, GST_SDP_BWTYPE_RR)))
950     stream->rr_bandwidth = bw->bandwidth;
951   else
952     stream->rr_bandwidth = -1;
953
954   if ((bw = gst_rtspsrc_get_bandwidth (src, sdp, media, GST_SDP_BWTYPE_RS)))
955     stream->rs_bandwidth = bw->bandwidth;
956   else
957     stream->rs_bandwidth = -1;
958 }
959
960 static void
961 gst_rtspsrc_do_stream_connection (GstRTSPSrc * src, GstRTSPStream * stream,
962     const GstSDPConnection * conn)
963 {
964   if (conn->nettype == NULL || strcmp (conn->nettype, "IN") != 0)
965     return;
966
967   if (conn->addrtype == NULL)
968     return;
969
970   /* check for IPV6 */
971   if (strcmp (conn->addrtype, "IP4") == 0)
972     stream->is_ipv6 = FALSE;
973   else if (strcmp (conn->addrtype, "IP6") == 0)
974     stream->is_ipv6 = TRUE;
975   else
976     return;
977
978   /* save address */
979   g_free (stream->destination);
980   stream->destination = g_strdup (conn->address);
981
982   /* check for multicast */
983   stream->is_multicast =
984       gst_sdp_address_is_multicast (conn->nettype, conn->addrtype,
985       conn->address);
986   stream->ttl = conn->ttl;
987 }
988
989 /* Go over the connections for a stream.
990  * - If we are dealing with IPV6, we will setup IPV6 sockets for sending and
991  *   receiving.
992  * - If we are dealing with a localhost address, we disable multicast
993  */
994 static void
995 gst_rtspsrc_collect_connections (GstRTSPSrc * src, const GstSDPMessage * sdp,
996     const GstSDPMedia * media, GstRTSPStream * stream)
997 {
998   const GstSDPConnection *conn;
999   guint i, len;
1000
1001   /* first look in the media specific section */
1002   len = gst_sdp_media_connections_len (media);
1003   for (i = 0; i < len; i++) {
1004     conn = gst_sdp_media_get_connection (media, i);
1005
1006     gst_rtspsrc_do_stream_connection (src, stream, conn);
1007   }
1008   /* then look in the message specific section */
1009   if ((conn = gst_sdp_message_get_connection (sdp))) {
1010     gst_rtspsrc_do_stream_connection (src, stream, conn);
1011   }
1012 }
1013
1014 static GstRTSPStream *
1015 gst_rtspsrc_create_stream (GstRTSPSrc * src, GstSDPMessage * sdp, gint idx)
1016 {
1017   GstRTSPStream *stream;
1018   const gchar *control_url;
1019   const gchar *payload;
1020   const GstSDPMedia *media;
1021
1022   /* get media, should not return NULL */
1023   media = gst_sdp_message_get_media (sdp, idx);
1024   if (media == NULL)
1025     return NULL;
1026
1027   stream = g_new0 (GstRTSPStream, 1);
1028   stream->parent = src;
1029   /* we mark the pad as not linked, we will mark it as OK when we add the pad to
1030    * the element. */
1031   stream->last_ret = GST_FLOW_NOT_LINKED;
1032   stream->added = FALSE;
1033   stream->disabled = FALSE;
1034   stream->id = src->numstreams++;
1035   stream->eos = FALSE;
1036   stream->discont = TRUE;
1037   stream->seqbase = -1;
1038   stream->timebase = -1;
1039
1040   /* collect bandwidth information for this steam. FIXME, configure in the RTP
1041    * session manager to scale RTCP. */
1042   gst_rtspsrc_collect_bandwidth (src, sdp, media, stream);
1043
1044   /* collect connection info */
1045   gst_rtspsrc_collect_connections (src, sdp, media, stream);
1046
1047   /* we must have a payload. No payload means we cannot create caps */
1048   /* FIXME, handle multiple formats. The problem here is that we just want to
1049    * take the first available format that we can handle but in order to do that
1050    * we need to scan for depayloader plugins. Scanning for payloader plugins is
1051    * also suboptimal because the user maybe just wants to save the raw stream
1052    * and then we don't care. */
1053   if ((payload = gst_sdp_media_get_format (media, 0))) {
1054     stream->pt = atoi (payload);
1055     /* convert caps */
1056     stream->caps = gst_rtspsrc_media_to_caps (stream->pt, media);
1057
1058     GST_DEBUG ("mapping sdp session level attributes to caps");
1059     gst_rtspsrc_sdp_attributes_to_caps (sdp->attributes, stream->caps);
1060     GST_DEBUG ("mapping sdp media level attributes to caps");
1061     gst_rtspsrc_sdp_attributes_to_caps (media->attributes, stream->caps);
1062
1063     if (stream->pt >= 96) {
1064       /* If we have a dynamic payload type, see if we have a stream with the
1065        * same payload number. If there is one, they are part of the same
1066        * container and we only need to add one pad. */
1067       if (find_stream (src, &stream->pt, (gpointer) find_stream_by_pt)) {
1068         stream->container = TRUE;
1069         GST_DEBUG ("found another stream with pt %d, marking as container",
1070             stream->pt);
1071       }
1072     }
1073   }
1074   /* collect port number */
1075   stream->port = gst_sdp_media_get_port (media);
1076
1077   /* get control url to construct the setup url. The setup url is used to
1078    * configure the transport of the stream and is used to identity the stream in
1079    * the RTP-Info header field returned from PLAY. */
1080   control_url = gst_sdp_media_get_attribute_val (media, "control");
1081   if (control_url == NULL)
1082     control_url = gst_sdp_message_get_attribute_val_n (sdp, "control", 0);
1083
1084   GST_DEBUG_OBJECT (src, "stream %d, (%p)", stream->id, stream);
1085   GST_DEBUG_OBJECT (src, " pt: %d", stream->pt);
1086   GST_DEBUG_OBJECT (src, " port: %d", stream->port);
1087   GST_DEBUG_OBJECT (src, " container: %d", stream->container);
1088   GST_DEBUG_OBJECT (src, " caps: %" GST_PTR_FORMAT, stream->caps);
1089   GST_DEBUG_OBJECT (src, " control: %s", GST_STR_NULL (control_url));
1090
1091   if (control_url != NULL) {
1092     stream->control_url = g_strdup (control_url);
1093     /* Build a fully qualified url using the content_base if any or by prefixing
1094      * the original request.
1095      * If the control_url starts with a '/' or a non rtsp: protocol we will most
1096      * likely build a URL that the server will fail to understand, this is ok,
1097      * we will fail then. */
1098     if (g_str_has_prefix (control_url, "rtsp://"))
1099       stream->conninfo.location = g_strdup (control_url);
1100     else {
1101       const gchar *base;
1102       gboolean has_slash;
1103
1104       if (g_strcmp0 (control_url, "*") == 0)
1105         control_url = "";
1106
1107       if (src->control)
1108         base = src->control;
1109       else if (src->content_base)
1110         base = src->content_base;
1111       else if (src->conninfo.url_str)
1112         base = src->conninfo.url_str;
1113       else
1114         base = "/";
1115
1116       /* check if the base ends or control starts with / */
1117       has_slash = g_str_has_prefix (control_url, "/");
1118       has_slash = has_slash || g_str_has_suffix (base, "/");
1119
1120       /* concatenate the two strings, insert / when not present */
1121       stream->conninfo.location =
1122           g_strdup_printf ("%s%s%s", base, has_slash ? "" : "/", control_url);
1123     }
1124   }
1125   GST_DEBUG_OBJECT (src, " setup: %s",
1126       GST_STR_NULL (stream->conninfo.location));
1127
1128   /* we keep track of all streams */
1129   src->streams = g_list_append (src->streams, stream);
1130
1131   return stream;
1132
1133   /* ERRORS */
1134 }
1135
1136 static void
1137 gst_rtspsrc_stream_free (GstRTSPSrc * src, GstRTSPStream * stream)
1138 {
1139   gint i;
1140
1141   GST_DEBUG_OBJECT (src, "free stream %p", stream);
1142
1143   if (stream->caps)
1144     gst_caps_unref (stream->caps);
1145
1146   g_free (stream->destination);
1147   g_free (stream->control_url);
1148   g_free (stream->conninfo.location);
1149
1150   for (i = 0; i < 2; i++) {
1151     if (stream->udpsrc[i]) {
1152       gst_element_set_state (stream->udpsrc[i], GST_STATE_NULL);
1153       gst_bin_remove (GST_BIN_CAST (src), stream->udpsrc[i]);
1154       gst_object_unref (stream->udpsrc[i]);
1155       stream->udpsrc[i] = NULL;
1156     }
1157     if (stream->channelpad[i]) {
1158       gst_object_unref (stream->channelpad[i]);
1159       stream->channelpad[i] = NULL;
1160     }
1161     if (stream->udpsink[i]) {
1162       gst_element_set_state (stream->udpsink[i], GST_STATE_NULL);
1163       gst_bin_remove (GST_BIN_CAST (src), stream->udpsink[i]);
1164       gst_object_unref (stream->udpsink[i]);
1165       stream->udpsink[i] = NULL;
1166     }
1167   }
1168   if (stream->fakesrc) {
1169     gst_element_set_state (stream->fakesrc, GST_STATE_NULL);
1170     gst_bin_remove (GST_BIN_CAST (src), stream->fakesrc);
1171     gst_object_unref (stream->fakesrc);
1172     stream->fakesrc = NULL;
1173   }
1174   if (stream->srcpad) {
1175     gst_pad_set_active (stream->srcpad, FALSE);
1176     if (stream->added) {
1177       gst_element_remove_pad (GST_ELEMENT_CAST (src), stream->srcpad);
1178       stream->added = FALSE;
1179     }
1180     stream->srcpad = NULL;
1181   }
1182   if (stream->rtcppad) {
1183     gst_object_unref (stream->rtcppad);
1184     stream->rtcppad = NULL;
1185   }
1186   if (stream->session) {
1187     g_object_unref (stream->session);
1188     stream->session = NULL;
1189   }
1190   g_free (stream);
1191 }
1192
1193 static void
1194 gst_rtspsrc_cleanup (GstRTSPSrc * src)
1195 {
1196   GList *walk;
1197
1198   GST_DEBUG_OBJECT (src, "cleanup");
1199
1200   for (walk = src->streams; walk; walk = g_list_next (walk)) {
1201     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
1202
1203     gst_rtspsrc_stream_free (src, stream);
1204   }
1205   g_list_free (src->streams);
1206   src->streams = NULL;
1207   if (src->manager) {
1208     if (src->manager_sig_id) {
1209       g_signal_handler_disconnect (src->manager, src->manager_sig_id);
1210       src->manager_sig_id = 0;
1211     }
1212     gst_element_set_state (src->manager, GST_STATE_NULL);
1213     gst_bin_remove (GST_BIN_CAST (src), src->manager);
1214     src->manager = NULL;
1215   }
1216   src->numstreams = 0;
1217   if (src->props)
1218     gst_structure_free (src->props);
1219   src->props = NULL;
1220
1221   g_free (src->content_base);
1222   src->content_base = NULL;
1223
1224   g_free (src->control);
1225   src->control = NULL;
1226
1227   if (src->range)
1228     gst_rtsp_range_free (src->range);
1229   src->range = NULL;
1230
1231   /* don't clear the SDP when it was used in the url */
1232   if (src->sdp && !src->from_sdp) {
1233     gst_sdp_message_free (src->sdp);
1234     src->sdp = NULL;
1235   }
1236 }
1237
1238 #define PARSE_INT(p, del, res)          \
1239 G_STMT_START {                          \
1240   gchar *t = p;                         \
1241   p = strstr (p, del);                  \
1242   if (p == NULL)                        \
1243     res = -1;                           \
1244   else {                                \
1245     *p = '\0';                          \
1246     p++;                                \
1247     res = atoi (t);                     \
1248   }                                     \
1249 } G_STMT_END
1250
1251 #define PARSE_STRING(p, del, res)       \
1252 G_STMT_START {                          \
1253   gchar *t = p;                         \
1254   p = strstr (p, del);                  \
1255   if (p == NULL) {                      \
1256     res = NULL;                         \
1257     p = t;                              \
1258   }                                     \
1259   else {                                \
1260     *p = '\0';                          \
1261     p++;                                \
1262     res = t;                            \
1263   }                                     \
1264 } G_STMT_END
1265
1266 #define SKIP_SPACES(p)                  \
1267   while (*p && g_ascii_isspace (*p))    \
1268     p++;
1269
1270 /* rtpmap contains:
1271  *
1272  *  <payload> <encoding_name>/<clock_rate>[/<encoding_params>]
1273  */
1274 static gboolean
1275 gst_rtspsrc_parse_rtpmap (const gchar * rtpmap, gint * payload, gchar ** name,
1276     gint * rate, gchar ** params)
1277 {
1278   gchar *p, *t;
1279
1280   p = (gchar *) rtpmap;
1281
1282   PARSE_INT (p, " ", *payload);
1283   if (*payload == -1)
1284     return FALSE;
1285
1286   SKIP_SPACES (p);
1287   if (*p == '\0')
1288     return FALSE;
1289
1290   PARSE_STRING (p, "/", *name);
1291   if (*name == NULL) {
1292     GST_DEBUG ("no rate, name %s", p);
1293     /* no rate, assume -1 then, this is not supposed to happen but RealMedia
1294      * streams seem to omit the rate. */
1295     *name = p;
1296     *rate = -1;
1297     return TRUE;
1298   }
1299
1300   t = p;
1301   p = strstr (p, "/");
1302   if (p == NULL) {
1303     *rate = atoi (t);
1304     return TRUE;
1305   }
1306   *p = '\0';
1307   p++;
1308   *rate = atoi (t);
1309
1310   t = p;
1311   if (*p == '\0')
1312     return TRUE;
1313   *params = t;
1314
1315   return TRUE;
1316 }
1317
1318 /*
1319  * Mapping SDP attributes to caps
1320  *
1321  * prepend 'a-' to IANA registered sdp attributes names
1322  * (ie: not prefixed with 'x-') in order to avoid
1323  * collision with gstreamer standard caps properties names
1324  */
1325 static void
1326 gst_rtspsrc_sdp_attributes_to_caps (GArray * attributes, GstCaps * caps)
1327 {
1328   if (attributes->len > 0) {
1329     GstStructure *s;
1330     guint i;
1331
1332     s = gst_caps_get_structure (caps, 0);
1333
1334     for (i = 0; i < attributes->len; i++) {
1335       GstSDPAttribute *attr = &g_array_index (attributes, GstSDPAttribute, i);
1336       gchar *tofree, *key;
1337
1338       key = attr->key;
1339
1340       /* skip some of the attribute we already handle */
1341       if (!strcmp (key, "fmtp"))
1342         continue;
1343       if (!strcmp (key, "rtpmap"))
1344         continue;
1345       if (!strcmp (key, "control"))
1346         continue;
1347       if (!strcmp (key, "range"))
1348         continue;
1349
1350       /* string must be valid UTF8 */
1351       if (!g_utf8_validate (attr->value, -1, NULL))
1352         continue;
1353
1354       if (!g_str_has_prefix (key, "x-"))
1355         tofree = key = g_strdup_printf ("a-%s", key);
1356       else
1357         tofree = NULL;
1358
1359       GST_DEBUG ("adding caps: %s=%s", key, attr->value);
1360       gst_structure_set (s, key, G_TYPE_STRING, attr->value, NULL);
1361       g_free (tofree);
1362     }
1363   }
1364 }
1365
1366 /*
1367  *  Mapping of caps to and from SDP fields:
1368  *
1369  *   m=<media> <UDP port> RTP/AVP <payload>
1370  *   a=rtpmap:<payload> <encoding_name>/<clock_rate>[/<encoding_params>]
1371  *   a=fmtp:<payload> <param>[=<value>];...
1372  */
1373 static GstCaps *
1374 gst_rtspsrc_media_to_caps (gint pt, const GstSDPMedia * media)
1375 {
1376   GstCaps *caps;
1377   const gchar *rtpmap;
1378   const gchar *fmtp;
1379   gchar *name = NULL;
1380   gint rate = -1;
1381   gchar *params = NULL;
1382   gchar *tmp;
1383   GstStructure *s;
1384   gint payload = 0;
1385   gboolean ret;
1386
1387   /* get and parse rtpmap */
1388   if ((rtpmap = gst_sdp_media_get_attribute_val (media, "rtpmap"))) {
1389     ret = gst_rtspsrc_parse_rtpmap (rtpmap, &payload, &name, &rate, &params);
1390     if (ret) {
1391       if (payload != pt) {
1392         /* we ignore the rtpmap if the payload type is different. */
1393         g_warning ("rtpmap of wrong payload type, ignoring");
1394         name = NULL;
1395         rate = -1;
1396         params = NULL;
1397       }
1398     } else {
1399       /* if we failed to parse the rtpmap for a dynamic payload type, we have an
1400        * error */
1401       if (pt >= 96)
1402         goto no_rtpmap;
1403       /* else we can ignore */
1404       g_warning ("error parsing rtpmap, ignoring");
1405     }
1406   } else {
1407     /* dynamic payloads need rtpmap or we fail */
1408     if (pt >= 96)
1409       goto no_rtpmap;
1410   }
1411   /* check if we have a rate, if not, we need to look up the rate from the
1412    * default rates based on the payload types. */
1413   if (rate == -1) {
1414     const GstRTPPayloadInfo *info;
1415
1416     if (GST_RTP_PAYLOAD_IS_DYNAMIC (pt)) {
1417       /* dynamic types, use media and encoding_name */
1418       tmp = g_ascii_strdown (media->media, -1);
1419       info = gst_rtp_payload_info_for_name (tmp, name);
1420       g_free (tmp);
1421     } else {
1422       /* static types, use payload type */
1423       info = gst_rtp_payload_info_for_pt (pt);
1424     }
1425
1426     if (info) {
1427       if ((rate = info->clock_rate) == 0)
1428         rate = -1;
1429     }
1430     /* we fail if we cannot find one */
1431     if (rate == -1)
1432       goto no_rate;
1433   }
1434
1435   tmp = g_ascii_strdown (media->media, -1);
1436   caps = gst_caps_new_simple ("application/x-unknown",
1437       "media", G_TYPE_STRING, tmp, "payload", G_TYPE_INT, pt, NULL);
1438   g_free (tmp);
1439   s = gst_caps_get_structure (caps, 0);
1440
1441   gst_structure_set (s, "clock-rate", G_TYPE_INT, rate, NULL);
1442
1443   /* encoding name must be upper case */
1444   if (name != NULL) {
1445     tmp = g_ascii_strup (name, -1);
1446     gst_structure_set (s, "encoding-name", G_TYPE_STRING, tmp, NULL);
1447     g_free (tmp);
1448   }
1449
1450   /* params must be lower case */
1451   if (params != NULL) {
1452     tmp = g_ascii_strdown (params, -1);
1453     gst_structure_set (s, "encoding-params", G_TYPE_STRING, tmp, NULL);
1454     g_free (tmp);
1455   }
1456
1457   /* parse optional fmtp: field */
1458   if ((fmtp = gst_sdp_media_get_attribute_val (media, "fmtp"))) {
1459     gchar *p;
1460     gint payload = 0;
1461
1462     p = (gchar *) fmtp;
1463
1464     /* p is now of the format <payload> <param>[=<value>];... */
1465     PARSE_INT (p, " ", payload);
1466     if (payload != -1 && payload == pt) {
1467       gchar **pairs;
1468       gint i;
1469
1470       /* <param>[=<value>] are separated with ';' */
1471       pairs = g_strsplit (p, ";", 0);
1472       for (i = 0; pairs[i]; i++) {
1473         gchar *valpos;
1474         const gchar *val, *key;
1475
1476         /* the key may not have a '=', the value can have other '='s */
1477         valpos = strstr (pairs[i], "=");
1478         if (valpos) {
1479           /* we have a '=' and thus a value, remove the '=' with \0 */
1480           *valpos = '\0';
1481           /* value is everything between '=' and ';'. We split the pairs at ;
1482            * boundaries so we can take the remainder of the value. Some servers
1483            * put spaces around the value which we strip off here. Alternatively
1484            * we could strip those spaces in the depayloaders should these spaces
1485            * actually carry any meaning in the future. */
1486           val = g_strstrip (valpos + 1);
1487         } else {
1488           /* simple <param>;.. is translated into <param>=1;... */
1489           val = "1";
1490         }
1491         /* strip the key of spaces, convert key to lowercase but not the value. */
1492         key = g_strstrip (pairs[i]);
1493         if (strlen (key) > 1) {
1494           tmp = g_ascii_strdown (key, -1);
1495           gst_structure_set (s, tmp, G_TYPE_STRING, val, NULL);
1496           g_free (tmp);
1497         }
1498       }
1499       g_strfreev (pairs);
1500     }
1501   }
1502   return caps;
1503
1504   /* ERRORS */
1505 no_rtpmap:
1506   {
1507     g_warning ("rtpmap type not given for dynamic payload %d", pt);
1508     return NULL;
1509   }
1510 no_rate:
1511   {
1512     g_warning ("rate unknown for payload type %d", pt);
1513     return NULL;
1514   }
1515 }
1516
1517 static gboolean
1518 gst_rtspsrc_alloc_udp_ports (GstRTSPStream * stream,
1519     gint * rtpport, gint * rtcpport)
1520 {
1521   GstRTSPSrc *src;
1522   GstStateChangeReturn ret;
1523   GstElement *udpsrc0, *udpsrc1;
1524   gint tmp_rtp, tmp_rtcp;
1525   guint count;
1526   const gchar *host;
1527
1528   src = stream->parent;
1529
1530   udpsrc0 = NULL;
1531   udpsrc1 = NULL;
1532   count = 0;
1533
1534   /* Start at next port */
1535   tmp_rtp = src->next_port_num;
1536
1537   if (stream->is_ipv6)
1538     host = "udp://[::0]";
1539   else
1540     host = "udp://0.0.0.0";
1541
1542   /* try to allocate 2 UDP ports, the RTP port should be an even
1543    * number and the RTCP port should be the next (uneven) port */
1544 again:
1545
1546   if (tmp_rtp != 0 && src->client_port_range.max > 0 &&
1547       tmp_rtp >= src->client_port_range.max)
1548     goto no_ports;
1549
1550   udpsrc0 = gst_element_make_from_uri (GST_URI_SRC, host, NULL, NULL);
1551   if (udpsrc0 == NULL)
1552     goto no_udp_protocol;
1553   g_object_set (G_OBJECT (udpsrc0), "port", tmp_rtp, "reuse", FALSE, NULL);
1554
1555   if (src->udp_buffer_size != 0)
1556     g_object_set (G_OBJECT (udpsrc0), "buffer-size", src->udp_buffer_size,
1557         NULL);
1558
1559   ret = gst_element_set_state (udpsrc0, GST_STATE_PAUSED);
1560   if (ret == GST_STATE_CHANGE_FAILURE) {
1561     if (tmp_rtp != 0) {
1562       GST_DEBUG_OBJECT (src, "Unable to make udpsrc from RTP port %d", tmp_rtp);
1563
1564       tmp_rtp += 2;
1565       if (++count > src->retry)
1566         goto no_ports;
1567
1568       GST_DEBUG_OBJECT (src, "free RTP udpsrc");
1569       gst_element_set_state (udpsrc0, GST_STATE_NULL);
1570       gst_object_unref (udpsrc0);
1571
1572       GST_DEBUG_OBJECT (src, "retry %d", count);
1573       goto again;
1574     }
1575     goto no_udp_protocol;
1576   }
1577
1578   g_object_get (G_OBJECT (udpsrc0), "port", &tmp_rtp, NULL);
1579   GST_DEBUG_OBJECT (src, "got RTP port %d", tmp_rtp);
1580
1581   /* check if port is even */
1582   if ((tmp_rtp & 0x01) != 0) {
1583     /* port not even, close and allocate another */
1584     if (++count > src->retry)
1585       goto no_ports;
1586
1587     GST_DEBUG_OBJECT (src, "RTP port not even");
1588
1589     GST_DEBUG_OBJECT (src, "free RTP udpsrc");
1590     gst_element_set_state (udpsrc0, GST_STATE_NULL);
1591     gst_object_unref (udpsrc0);
1592
1593     GST_DEBUG_OBJECT (src, "retry %d", count);
1594     tmp_rtp++;
1595     goto again;
1596   }
1597
1598   /* allocate port+1 for RTCP now */
1599   udpsrc1 = gst_element_make_from_uri (GST_URI_SRC, host, NULL, NULL);
1600   if (udpsrc1 == NULL)
1601     goto no_udp_rtcp_protocol;
1602
1603   /* set port */
1604   tmp_rtcp = tmp_rtp + 1;
1605   if (src->client_port_range.max > 0 && tmp_rtcp > src->client_port_range.max)
1606     goto no_ports;
1607
1608   g_object_set (G_OBJECT (udpsrc1), "port", tmp_rtcp, "reuse", FALSE, NULL);
1609
1610   GST_DEBUG_OBJECT (src, "starting RTCP on port %d", tmp_rtcp);
1611   ret = gst_element_set_state (udpsrc1, GST_STATE_PAUSED);
1612   /* tmp_rtcp port is busy already : retry to make rtp/rtcp pair */
1613   if (ret == GST_STATE_CHANGE_FAILURE) {
1614     GST_DEBUG_OBJECT (src, "Unable to make udpsrc from RTCP port %d", tmp_rtcp);
1615
1616     if (++count > src->retry)
1617       goto no_ports;
1618
1619     GST_DEBUG_OBJECT (src, "free RTP udpsrc");
1620     gst_element_set_state (udpsrc0, GST_STATE_NULL);
1621     gst_object_unref (udpsrc0);
1622
1623     GST_DEBUG_OBJECT (src, "free RTCP udpsrc");
1624     gst_element_set_state (udpsrc1, GST_STATE_NULL);
1625     gst_object_unref (udpsrc1);
1626     udpsrc1 = NULL;
1627
1628     tmp_rtp += 2;
1629     GST_DEBUG_OBJECT (src, "retry %d", count);
1630     goto again;
1631   }
1632
1633   /* all fine, do port check */
1634   g_object_get (G_OBJECT (udpsrc0), "port", rtpport, NULL);
1635   g_object_get (G_OBJECT (udpsrc1), "port", rtcpport, NULL);
1636
1637   /* this should not happen... */
1638   if (*rtpport != tmp_rtp || *rtcpport != tmp_rtcp)
1639     goto port_error;
1640
1641   /* we keep these elements, we configure all in configure_transport when the
1642    * server told us to really use the UDP ports. */
1643   stream->udpsrc[0] = gst_object_ref_sink (udpsrc0);
1644   stream->udpsrc[1] = gst_object_ref_sink (udpsrc1);
1645
1646   /* keep track of next available port number when we have a range
1647    * configured */
1648   if (src->next_port_num != 0)
1649     src->next_port_num = tmp_rtcp + 1;
1650
1651   return TRUE;
1652
1653   /* ERRORS */
1654 no_udp_protocol:
1655   {
1656     GST_DEBUG_OBJECT (src, "could not get UDP source");
1657     goto cleanup;
1658   }
1659 no_ports:
1660   {
1661     GST_DEBUG_OBJECT (src, "could not allocate UDP port pair after %d retries",
1662         count);
1663     goto cleanup;
1664   }
1665 no_udp_rtcp_protocol:
1666   {
1667     GST_DEBUG_OBJECT (src, "could not get UDP source for RTCP");
1668     goto cleanup;
1669   }
1670 port_error:
1671   {
1672     GST_DEBUG_OBJECT (src, "ports don't match rtp: %d<->%d, rtcp: %d<->%d",
1673         tmp_rtp, *rtpport, tmp_rtcp, *rtcpport);
1674     goto cleanup;
1675   }
1676 cleanup:
1677   {
1678     if (udpsrc0) {
1679       gst_element_set_state (udpsrc0, GST_STATE_NULL);
1680       gst_object_unref (udpsrc0);
1681     }
1682     if (udpsrc1) {
1683       gst_element_set_state (udpsrc1, GST_STATE_NULL);
1684       gst_object_unref (udpsrc1);
1685     }
1686     return FALSE;
1687   }
1688 }
1689
1690 static void
1691 gst_rtspsrc_flush (GstRTSPSrc * src, gboolean flush, gboolean playing)
1692 {
1693   GstEvent *event;
1694   gint cmd, i;
1695   GstState state;
1696   GList *walk;
1697
1698   if (flush) {
1699     event = gst_event_new_flush_start ();
1700     GST_DEBUG_OBJECT (src, "start flush");
1701     cmd = CMD_WAIT;
1702     state = GST_STATE_PAUSED;
1703   } else {
1704     event = gst_event_new_flush_stop (FALSE);
1705     GST_DEBUG_OBJECT (src, "stop flush; playing %d", playing);
1706     cmd = CMD_LOOP;
1707     if (playing)
1708       state = GST_STATE_PLAYING;
1709     else
1710       state = GST_STATE_PAUSED;
1711   }
1712   gst_rtspsrc_push_event (src, event);
1713   gst_rtspsrc_loop_send_cmd (src, cmd, CMD_LOOP);
1714
1715   /* to manage jitterbuffer buffer mode */
1716   if (src->manager)
1717     gst_element_set_state (GST_ELEMENT_CAST (src->manager), state);
1718
1719   /* make running time start start at 0 again */
1720   for (walk = src->streams; walk; walk = g_list_next (walk)) {
1721     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
1722
1723     for (i = 0; i < 2; i++) {
1724       /* for udp case */
1725       if (stream->udpsrc[i]) {
1726         gst_element_set_state (stream->udpsrc[i], state);
1727       }
1728     }
1729   }
1730 }
1731
1732 static GstRTSPResult
1733 gst_rtspsrc_connection_send (GstRTSPSrc * src, GstRTSPConnection * conn,
1734     GstRTSPMessage * message, GTimeVal * timeout)
1735 {
1736   GstRTSPResult ret;
1737
1738   if (conn)
1739     ret = gst_rtsp_connection_send (conn, message, timeout);
1740   else
1741     ret = GST_RTSP_ERROR;
1742
1743   return ret;
1744 }
1745
1746 static GstRTSPResult
1747 gst_rtspsrc_connection_receive (GstRTSPSrc * src, GstRTSPConnection * conn,
1748     GstRTSPMessage * message, GTimeVal * timeout)
1749 {
1750   GstRTSPResult ret;
1751
1752   if (conn)
1753     ret = gst_rtsp_connection_receive (conn, message, timeout);
1754   else
1755     ret = GST_RTSP_ERROR;
1756
1757   return ret;
1758 }
1759
1760 static void
1761 gst_rtspsrc_get_position (GstRTSPSrc * src)
1762 {
1763   GstQuery *query;
1764   GList *walk;
1765
1766   query = gst_query_new_position (GST_FORMAT_TIME);
1767   /*  should be known somewhere down the stream (e.g. jitterbuffer) */
1768   for (walk = src->streams; walk; walk = g_list_next (walk)) {
1769     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
1770     GstFormat fmt;
1771     gint64 pos;
1772
1773     if (stream->srcpad) {
1774       if (gst_pad_query (stream->srcpad, query)) {
1775         gst_query_parse_position (query, &fmt, &pos);
1776         GST_DEBUG_OBJECT (src, "retaining position %" GST_TIME_FORMAT,
1777             GST_TIME_ARGS (pos));
1778         src->last_pos = pos;
1779         return;
1780       }
1781     }
1782   }
1783
1784   src->last_pos = 0;
1785 }
1786
1787 static gboolean
1788 gst_rtspsrc_do_seek (GstRTSPSrc * src, GstSegment * segment)
1789 {
1790   src->state = GST_RTSP_STATE_SEEKING;
1791   /* PLAY will add the range header now. */
1792   src->need_range = TRUE;
1793
1794   return TRUE;
1795 }
1796
1797 static gboolean
1798 gst_rtspsrc_perform_seek (GstRTSPSrc * src, GstEvent * event)
1799 {
1800   gdouble rate;
1801   GstFormat format;
1802   GstSeekFlags flags;
1803   GstSeekType cur_type = GST_SEEK_TYPE_NONE, stop_type;
1804   gint64 cur, stop;
1805   gboolean flush, skip;
1806   gboolean update;
1807   gboolean playing;
1808   GstSegment seeksegment = { 0, };
1809   GList *walk;
1810
1811   if (event) {
1812     GST_DEBUG_OBJECT (src, "doing seek with event");
1813
1814     gst_event_parse_seek (event, &rate, &format, &flags,
1815         &cur_type, &cur, &stop_type, &stop);
1816
1817     /* no negative rates yet */
1818     if (rate < 0.0)
1819       goto negative_rate;
1820
1821     /* we need TIME format */
1822     if (format != src->segment.format)
1823       goto no_format;
1824   } else {
1825     GST_DEBUG_OBJECT (src, "doing seek without event");
1826     flags = 0;
1827     cur_type = GST_SEEK_TYPE_SET;
1828     stop_type = GST_SEEK_TYPE_SET;
1829   }
1830
1831   /* get flush flag */
1832   flush = flags & GST_SEEK_FLAG_FLUSH;
1833   skip = flags & GST_SEEK_FLAG_SKIP;
1834
1835   /* now we need to make sure the streaming thread is stopped. We do this by
1836    * either sending a FLUSH_START event downstream which will cause the
1837    * streaming thread to stop with a WRONG_STATE.
1838    * For a non-flushing seek we simply pause the task, which will happen as soon
1839    * as it completes one iteration (and thus might block when the sink is
1840    * blocking in preroll). */
1841   if (flush) {
1842     GST_DEBUG_OBJECT (src, "starting flush");
1843     gst_rtspsrc_flush (src, TRUE, FALSE);
1844   } else {
1845     if (src->task) {
1846       gst_task_pause (src->task);
1847     }
1848   }
1849
1850   /* we should now be able to grab the streaming thread because we stopped it
1851    * with the above flush/pause code */
1852   GST_RTSP_STREAM_LOCK (src);
1853
1854   GST_DEBUG_OBJECT (src, "stopped streaming");
1855
1856   /* copy segment, we need this because we still need the old
1857    * segment when we close the current segment. */
1858   memcpy (&seeksegment, &src->segment, sizeof (GstSegment));
1859
1860   /* configure the seek parameters in the seeksegment. We will then have the
1861    * right values in the segment to perform the seek */
1862   if (event) {
1863     GST_DEBUG_OBJECT (src, "configuring seek");
1864     gst_segment_do_seek (&seeksegment, rate, format, flags,
1865         cur_type, cur, stop_type, stop, &update);
1866   }
1867
1868   /* figure out the last position we need to play. If it's configured (stop !=
1869    * -1), use that, else we play until the total duration of the file */
1870   if ((stop = seeksegment.stop) == -1)
1871     stop = seeksegment.duration;
1872
1873   playing = (src->state == GST_RTSP_STATE_PLAYING);
1874
1875   /* if we were playing, pause first */
1876   if (playing) {
1877     /* obtain current position in case seek fails */
1878     gst_rtspsrc_get_position (src);
1879     gst_rtspsrc_pause (src, FALSE);
1880   }
1881   src->skip = skip;
1882
1883   gst_rtspsrc_do_seek (src, &seeksegment);
1884
1885   /* and continue playing */
1886   if (playing)
1887     gst_rtspsrc_play (src, &seeksegment, FALSE);
1888
1889   /* prepare for streaming again */
1890   if (flush) {
1891     /* if we started flush, we stop now */
1892     GST_DEBUG_OBJECT (src, "stopping flush");
1893     gst_rtspsrc_flush (src, FALSE, playing);
1894   }
1895
1896   /* now we did the seek and can activate the new segment values */
1897   memcpy (&src->segment, &seeksegment, sizeof (GstSegment));
1898
1899   /* if we're doing a segment seek, post a SEGMENT_START message */
1900   if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
1901     gst_element_post_message (GST_ELEMENT_CAST (src),
1902         gst_message_new_segment_start (GST_OBJECT_CAST (src),
1903             src->segment.format, src->segment.position));
1904   }
1905
1906   /* now create the newsegment */
1907   GST_DEBUG_OBJECT (src, "Creating newsegment from %" G_GINT64_FORMAT
1908       " to %" G_GINT64_FORMAT, src->segment.position, stop);
1909
1910   /* store the newsegment event so it can be sent from the streaming thread. */
1911   if (src->start_segment)
1912     gst_event_unref (src->start_segment);
1913   src->start_segment = gst_event_new_segment (&src->segment);
1914
1915   /* mark discont */
1916   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
1917   for (walk = src->streams; walk; walk = g_list_next (walk)) {
1918     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
1919     stream->discont = TRUE;
1920   }
1921
1922   GST_RTSP_STREAM_UNLOCK (src);
1923
1924   return TRUE;
1925
1926   /* ERRORS */
1927 negative_rate:
1928   {
1929     GST_DEBUG_OBJECT (src, "negative playback rates are not supported yet.");
1930     return FALSE;
1931   }
1932 no_format:
1933   {
1934     GST_DEBUG_OBJECT (src, "unsupported format given, seek aborted.");
1935     return FALSE;
1936   }
1937 }
1938
1939 static gboolean
1940 gst_rtspsrc_handle_src_event (GstPad * pad, GstObject * parent,
1941     GstEvent * event)
1942 {
1943   GstRTSPSrc *src;
1944   gboolean res = TRUE;
1945   gboolean forward;
1946
1947   src = GST_RTSPSRC_CAST (parent);
1948
1949   GST_DEBUG_OBJECT (src, "pad %s:%s received event %s",
1950       GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
1951
1952   switch (GST_EVENT_TYPE (event)) {
1953     case GST_EVENT_SEEK:
1954       res = gst_rtspsrc_perform_seek (src, event);
1955       forward = FALSE;
1956       break;
1957     case GST_EVENT_QOS:
1958     case GST_EVENT_NAVIGATION:
1959     case GST_EVENT_LATENCY:
1960     default:
1961       forward = TRUE;
1962       break;
1963   }
1964   if (forward) {
1965     GstPad *target;
1966
1967     if ((target = gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (pad)))) {
1968       res = gst_pad_send_event (target, event);
1969       gst_object_unref (target);
1970     } else {
1971       gst_event_unref (event);
1972     }
1973   } else {
1974     gst_event_unref (event);
1975   }
1976
1977   return res;
1978 }
1979
1980 /* this is the final event function we receive on the internal source pad when
1981  * we deal with TCP connections */
1982 static gboolean
1983 gst_rtspsrc_handle_internal_src_event (GstPad * pad, GstObject * parent,
1984     GstEvent * event)
1985 {
1986   gboolean res;
1987
1988   GST_DEBUG_OBJECT (pad, "received event %s", GST_EVENT_TYPE_NAME (event));
1989
1990   switch (GST_EVENT_TYPE (event)) {
1991     case GST_EVENT_SEEK:
1992     case GST_EVENT_QOS:
1993     case GST_EVENT_NAVIGATION:
1994     case GST_EVENT_LATENCY:
1995     default:
1996       gst_event_unref (event);
1997       res = TRUE;
1998       break;
1999   }
2000   return res;
2001 }
2002
2003 /* this is the final query function we receive on the internal source pad when
2004  * we deal with TCP connections */
2005 static gboolean
2006 gst_rtspsrc_handle_internal_src_query (GstPad * pad, GstObject * parent,
2007     GstQuery * query)
2008 {
2009   GstRTSPSrc *src;
2010   gboolean res = TRUE;
2011
2012   src = GST_RTSPSRC_CAST (gst_pad_get_element_private (pad));
2013
2014   GST_DEBUG_OBJECT (src, "pad %s:%s received query %s",
2015       GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
2016
2017   switch (GST_QUERY_TYPE (query)) {
2018     case GST_QUERY_POSITION:
2019     {
2020       /* no idea */
2021       break;
2022     }
2023     case GST_QUERY_DURATION:
2024     {
2025       GstFormat format;
2026
2027       gst_query_parse_duration (query, &format, NULL);
2028
2029       switch (format) {
2030         case GST_FORMAT_TIME:
2031           gst_query_set_duration (query, format, src->segment.duration);
2032           break;
2033         default:
2034           res = FALSE;
2035           break;
2036       }
2037       break;
2038     }
2039     case GST_QUERY_LATENCY:
2040     {
2041       /* we are live with a min latency of 0 and unlimited max latency, this
2042        * result will be updated by the session manager if there is any. */
2043       gst_query_set_latency (query, TRUE, 0, -1);
2044       break;
2045     }
2046     default:
2047       break;
2048   }
2049
2050   return res;
2051 }
2052
2053 /* this query is executed on the ghost source pad exposed on rtspsrc. */
2054 static gboolean
2055 gst_rtspsrc_handle_src_query (GstPad * pad, GstObject * parent,
2056     GstQuery * query)
2057 {
2058   GstRTSPSrc *src;
2059   gboolean res = FALSE;
2060
2061   src = GST_RTSPSRC_CAST (parent);
2062
2063   GST_DEBUG_OBJECT (src, "pad %s:%s received query %s",
2064       GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
2065
2066   switch (GST_QUERY_TYPE (query)) {
2067     case GST_QUERY_DURATION:
2068     {
2069       GstFormat format;
2070
2071       gst_query_parse_duration (query, &format, NULL);
2072
2073       switch (format) {
2074         case GST_FORMAT_TIME:
2075           gst_query_set_duration (query, format, src->segment.duration);
2076           res = TRUE;
2077           break;
2078         default:
2079           break;
2080       }
2081       break;
2082     }
2083     case GST_QUERY_SEEKING:
2084     {
2085       GstFormat format;
2086
2087       gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
2088       if (format == GST_FORMAT_TIME) {
2089         gboolean seekable =
2090             src->cur_protocols != GST_RTSP_LOWER_TRANS_UDP_MCAST;
2091
2092         /* seeking without duration is unlikely */
2093         seekable = seekable && src->seekable && src->segment.duration &&
2094             GST_CLOCK_TIME_IS_VALID (src->segment.duration);
2095
2096         /* FIXME ?? should we have 0 and segment.duration here; see demuxers */
2097         gst_query_set_seeking (query, GST_FORMAT_TIME, seekable,
2098             src->segment.start, src->segment.stop);
2099         res = TRUE;
2100       }
2101       break;
2102     }
2103     case GST_QUERY_URI:
2104     {
2105       gchar *uri;
2106
2107       uri = gst_rtspsrc_uri_get_uri (GST_URI_HANDLER (src));
2108       if (uri != NULL) {
2109         gst_query_set_uri (query, uri);
2110         g_free (uri);
2111         res = TRUE;
2112       }
2113       break;
2114     }
2115     default:
2116     {
2117       GstPad *target = gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (pad));
2118
2119       /* forward the query to the proxy target pad */
2120       if (target) {
2121         res = gst_pad_query (target, query);
2122         gst_object_unref (target);
2123       }
2124       break;
2125     }
2126   }
2127
2128   return res;
2129 }
2130
2131 /* callback for RTCP messages to be sent to the server when operating in TCP
2132  * mode. */
2133 static GstFlowReturn
2134 gst_rtspsrc_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
2135 {
2136   GstRTSPSrc *src;
2137   GstRTSPStream *stream;
2138   GstFlowReturn res = GST_FLOW_OK;
2139   GstMapInfo map;
2140   guint8 *data;
2141   guint size;
2142   GstRTSPResult ret;
2143   GstRTSPMessage message = { 0 };
2144   GstRTSPConnection *conn;
2145
2146   stream = (GstRTSPStream *) gst_pad_get_element_private (pad);
2147   src = stream->parent;
2148
2149   gst_buffer_map (buffer, &map, GST_MAP_READ);
2150   size = map.size;
2151   data = map.data;
2152
2153   gst_rtsp_message_init_data (&message, stream->channel[1]);
2154
2155   /* lend the body data to the message */
2156   gst_rtsp_message_take_body (&message, data, size);
2157
2158   if (stream->conninfo.connection)
2159     conn = stream->conninfo.connection;
2160   else
2161     conn = src->conninfo.connection;
2162
2163   GST_DEBUG_OBJECT (src, "sending %u bytes RTCP", size);
2164   ret = gst_rtspsrc_connection_send (src, conn, &message, NULL);
2165   GST_DEBUG_OBJECT (src, "sent RTCP, %d", ret);
2166
2167   /* and steal it away again because we will free it when unreffing the
2168    * buffer */
2169   gst_rtsp_message_steal_body (&message, &data, &size);
2170   gst_rtsp_message_unset (&message);
2171
2172   gst_buffer_unmap (buffer, &map);
2173   gst_buffer_unref (buffer);
2174
2175   return res;
2176 }
2177
2178 static GstPadProbeReturn
2179 pad_blocked (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
2180 {
2181   GstRTSPSrc *src = user_data;
2182
2183   GST_DEBUG_OBJECT (src, "pad %s:%s blocked, activating streams",
2184       GST_DEBUG_PAD_NAME (pad));
2185
2186   /* activate the streams */
2187   GST_OBJECT_LOCK (src);
2188   if (!src->need_activate)
2189     goto was_ok;
2190
2191   src->need_activate = FALSE;
2192   GST_OBJECT_UNLOCK (src);
2193
2194   gst_rtspsrc_activate_streams (src);
2195
2196   return GST_PAD_PROBE_OK;
2197
2198 was_ok:
2199   {
2200     GST_OBJECT_UNLOCK (src);
2201     return GST_PAD_PROBE_OK;
2202   }
2203 }
2204
2205 /* this callback is called when the session manager generated a new src pad with
2206  * payloaded RTP packets. We simply ghost the pad here. */
2207 static void
2208 new_manager_pad (GstElement * manager, GstPad * pad, GstRTSPSrc * src)
2209 {
2210   gchar *name;
2211   GstPadTemplate *template;
2212   gint id, ssrc, pt;
2213   GList *lstream;
2214   GstRTSPStream *stream;
2215   gboolean all_added;
2216
2217   GST_DEBUG_OBJECT (src, "got new manager pad %" GST_PTR_FORMAT, pad);
2218
2219   GST_RTSP_STATE_LOCK (src);
2220   /* find stream */
2221   name = gst_object_get_name (GST_OBJECT_CAST (pad));
2222   if (sscanf (name, "recv_rtp_src_%u_%u_%u", &id, &ssrc, &pt) != 3)
2223     goto unknown_stream;
2224
2225   GST_DEBUG_OBJECT (src, "stream: %u, SSRC %d, PT %d", id, ssrc, pt);
2226
2227   stream = find_stream (src, &id, (gpointer) find_stream_by_id);
2228   if (stream == NULL)
2229     goto unknown_stream;
2230
2231   /* create a new pad we will use to stream to */
2232   template = gst_static_pad_template_get (&rtptemplate);
2233   stream->srcpad = gst_ghost_pad_new_from_template (name, pad, template);
2234   gst_object_unref (template);
2235   g_free (name);
2236
2237   stream->added = TRUE;
2238   gst_pad_set_event_function (stream->srcpad, gst_rtspsrc_handle_src_event);
2239   gst_pad_set_query_function (stream->srcpad, gst_rtspsrc_handle_src_query);
2240   gst_pad_set_active (stream->srcpad, TRUE);
2241   gst_element_add_pad (GST_ELEMENT_CAST (src), stream->srcpad);
2242
2243   /* check if we added all streams */
2244   all_added = TRUE;
2245   for (lstream = src->streams; lstream; lstream = g_list_next (lstream)) {
2246     stream = (GstRTSPStream *) lstream->data;
2247
2248     GST_DEBUG_OBJECT (src, "stream %p, container %d, disabled %d, added %d",
2249         stream, stream->container, stream->disabled, stream->added);
2250
2251     /* a container stream only needs one pad added. Also disabled streams don't
2252      * count */
2253     if (!stream->container && !stream->disabled && !stream->added) {
2254       all_added = FALSE;
2255       break;
2256     }
2257   }
2258   GST_RTSP_STATE_UNLOCK (src);
2259
2260   if (all_added) {
2261     GST_DEBUG_OBJECT (src, "We added all streams");
2262     /* when we get here, all stream are added and we can fire the no-more-pads
2263      * signal. */
2264     gst_element_no_more_pads (GST_ELEMENT_CAST (src));
2265   }
2266
2267   return;
2268
2269   /* ERRORS */
2270 unknown_stream:
2271   {
2272     GST_DEBUG_OBJECT (src, "ignoring unknown stream");
2273     GST_RTSP_STATE_UNLOCK (src);
2274     g_free (name);
2275     return;
2276   }
2277 }
2278
2279 static GstCaps *
2280 request_pt_map (GstElement * manager, guint session, guint pt, GstRTSPSrc * src)
2281 {
2282   GstRTSPStream *stream;
2283   GstCaps *caps;
2284
2285   GST_DEBUG_OBJECT (src, "getting pt map for pt %d in session %d", pt, session);
2286
2287   GST_RTSP_STATE_LOCK (src);
2288   stream = find_stream (src, &session, (gpointer) find_stream_by_id);
2289   if (!stream)
2290     goto unknown_stream;
2291
2292   caps = stream->caps;
2293   if (caps)
2294     gst_caps_ref (caps);
2295   GST_RTSP_STATE_UNLOCK (src);
2296
2297   return caps;
2298
2299 unknown_stream:
2300   {
2301     GST_DEBUG_OBJECT (src, "unknown stream %d", session);
2302     GST_RTSP_STATE_UNLOCK (src);
2303     return NULL;
2304   }
2305 }
2306
2307 static void
2308 gst_rtspsrc_do_stream_eos (GstRTSPSrc * src, GstRTSPStream * stream)
2309 {
2310   GST_DEBUG_OBJECT (src, "setting stream for session %u to EOS", stream->id);
2311
2312   if (stream->eos)
2313     goto was_eos;
2314
2315   stream->eos = TRUE;
2316   gst_rtspsrc_stream_push_event (src, stream, gst_event_new_eos ());
2317   return;
2318
2319   /* ERRORS */
2320 was_eos:
2321   {
2322     GST_DEBUG_OBJECT (src, "stream for session %u was already EOS", stream->id);
2323     return;
2324   }
2325 }
2326
2327 static void
2328 on_bye_ssrc (GObject * session, GObject * source, GstRTSPStream * stream)
2329 {
2330   GstRTSPSrc *src = stream->parent;
2331
2332   GST_DEBUG_OBJECT (src, "source in session %u received BYE", stream->id);
2333
2334   gst_rtspsrc_do_stream_eos (src, stream);
2335 }
2336
2337 static void
2338 on_timeout (GObject * session, GObject * source, GstRTSPStream * stream)
2339 {
2340   GstRTSPSrc *src = stream->parent;
2341
2342   GST_DEBUG_OBJECT (src, "source in session %u timed out", stream->id);
2343
2344   gst_rtspsrc_do_stream_eos (src, stream);
2345 }
2346
2347 static void
2348 on_npt_stop (GstElement * rtpbin, guint session, guint ssrc, GstRTSPSrc * src)
2349 {
2350   GstRTSPStream *stream;
2351
2352   GST_DEBUG_OBJECT (src, "source in session %u reached NPT stop", session);
2353
2354   /* get stream for session */
2355   stream = find_stream (src, &session, (gpointer) find_stream_by_id);
2356   if (stream) {
2357     gst_rtspsrc_do_stream_eos (src, stream);
2358   }
2359 }
2360
2361 static void
2362 on_ssrc_active (GObject * session, GObject * source, GstRTSPStream * stream)
2363 {
2364   GST_DEBUG_OBJECT (stream->parent, "source in session %u is active",
2365       stream->id);
2366 }
2367
2368 /* try to get and configure a manager */
2369 static gboolean
2370 gst_rtspsrc_stream_configure_manager (GstRTSPSrc * src, GstRTSPStream * stream,
2371     GstRTSPTransport * transport)
2372 {
2373   const gchar *manager;
2374   gchar *name;
2375   GstStateChangeReturn ret;
2376
2377   /* find a manager */
2378   if (gst_rtsp_transport_get_manager (transport->trans, &manager, 0) < 0)
2379     goto no_manager;
2380
2381   if (manager) {
2382     GST_DEBUG_OBJECT (src, "using manager %s", manager);
2383
2384     /* configure the manager */
2385     if (src->manager == NULL) {
2386       GObjectClass *klass;
2387       GstState target;
2388
2389       if (!(src->manager = gst_element_factory_make (manager, NULL))) {
2390         /* fallback */
2391         if (gst_rtsp_transport_get_manager (transport->trans, &manager, 1) < 0)
2392           goto no_manager;
2393
2394         if (!manager)
2395           goto use_no_manager;
2396
2397         if (!(src->manager = gst_element_factory_make (manager, NULL)))
2398           goto manager_failed;
2399       }
2400
2401       /* we manage this element */
2402       gst_bin_add (GST_BIN_CAST (src), src->manager);
2403
2404       GST_OBJECT_LOCK (src);
2405       target = GST_STATE_TARGET (src);
2406       GST_OBJECT_UNLOCK (src);
2407
2408       ret = gst_element_set_state (src->manager, target);
2409       if (ret == GST_STATE_CHANGE_FAILURE)
2410         goto start_manager_failure;
2411
2412       g_object_set (src->manager, "latency", src->latency, NULL);
2413
2414       klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
2415       if (g_object_class_find_property (klass, "drop-on-latency")) {
2416         g_object_set (src->manager, "drop-on-latency", src->drop_on_latency,
2417             NULL);
2418       }
2419
2420       if (g_object_class_find_property (klass, "buffer-mode")) {
2421         if (src->buffer_mode != BUFFER_MODE_AUTO) {
2422           g_object_set (src->manager, "buffer-mode", src->buffer_mode, NULL);
2423         } else {
2424           gboolean need_slave;
2425           GstStructure *s;
2426           const gchar *encoding;
2427
2428           /* buffer mode pauses are handled by adding offsets to buffer times,
2429            * but some depayloaders may have a hard time syncing output times
2430            * with such input times, e.g. container ones, most notably ASF */
2431           /* TODO alternatives are having an event that indicates these shifts,
2432            * or having rtsp extensions provide suggestion on buffer mode */
2433           need_slave = stream->container;
2434           if (stream->caps && (s = gst_caps_get_structure (stream->caps, 0)) &&
2435               (encoding = gst_structure_get_string (s, "encoding-name")))
2436             need_slave = need_slave || (strcmp (encoding, "X-ASF-PF") == 0);
2437           GST_DEBUG_OBJECT (src, "auto buffering mode, need_slave %d",
2438               need_slave);
2439           /* valid duration implies not likely live pipeline,
2440            * so slaving in jitterbuffer does not make much sense
2441            * (and might mess things up due to bursts) */
2442           if (GST_CLOCK_TIME_IS_VALID (src->segment.duration) &&
2443               src->segment.duration && !need_slave) {
2444             GST_DEBUG_OBJECT (src, "selected buffer");
2445             g_object_set (src->manager, "buffer-mode", BUFFER_MODE_BUFFER,
2446                 NULL);
2447           } else {
2448             GST_DEBUG_OBJECT (src, "selected slave");
2449             g_object_set (src->manager, "buffer-mode", BUFFER_MODE_SLAVE, NULL);
2450           }
2451         }
2452       }
2453
2454       /* connect to signals if we did not already do so */
2455       GST_DEBUG_OBJECT (src, "connect to signals on session manager, stream %p",
2456           stream);
2457       src->manager_sig_id =
2458           g_signal_connect (src->manager, "pad-added",
2459           (GCallback) new_manager_pad, src);
2460       src->manager_ptmap_id =
2461           g_signal_connect (src->manager, "request-pt-map",
2462           (GCallback) request_pt_map, src);
2463
2464       g_signal_connect (src->manager, "on-npt-stop", (GCallback) on_npt_stop,
2465           src);
2466     }
2467
2468     /* we stream directly to the manager, get some pads. Each RTSP stream goes
2469      * into a separate RTP session. */
2470     name = g_strdup_printf ("recv_rtp_sink_%u", stream->id);
2471     stream->channelpad[0] = gst_element_get_request_pad (src->manager, name);
2472     g_free (name);
2473     name = g_strdup_printf ("recv_rtcp_sink_%u", stream->id);
2474     stream->channelpad[1] = gst_element_get_request_pad (src->manager, name);
2475     g_free (name);
2476
2477     /* now configure the bandwidth in the manager */
2478     if (g_signal_lookup ("get-internal-session",
2479             G_OBJECT_TYPE (src->manager)) != 0) {
2480       GObject *rtpsession;
2481
2482       g_signal_emit_by_name (src->manager, "get-internal-session", stream->id,
2483           &rtpsession);
2484       if (rtpsession) {
2485         GST_INFO_OBJECT (src, "configure bandwidth in session %p", rtpsession);
2486
2487         stream->session = rtpsession;
2488
2489         if (stream->as_bandwidth != -1) {
2490           GST_INFO_OBJECT (src, "setting AS: %f",
2491               (gdouble) (stream->as_bandwidth * 1000));
2492           g_object_set (rtpsession, "bandwidth",
2493               (gdouble) (stream->as_bandwidth * 1000), NULL);
2494         }
2495         if (stream->rr_bandwidth != -1) {
2496           GST_INFO_OBJECT (src, "setting RR: %u", stream->rr_bandwidth);
2497           g_object_set (rtpsession, "rtcp-rr-bandwidth", stream->rr_bandwidth,
2498               NULL);
2499         }
2500         if (stream->rs_bandwidth != -1) {
2501           GST_INFO_OBJECT (src, "setting RS: %u", stream->rs_bandwidth);
2502           g_object_set (rtpsession, "rtcp-rs-bandwidth", stream->rs_bandwidth,
2503               NULL);
2504         }
2505
2506         g_object_set (rtpsession, "probation", src->probation, NULL);
2507
2508         g_signal_connect (rtpsession, "on-bye-ssrc", (GCallback) on_bye_ssrc,
2509             stream);
2510         g_signal_connect (rtpsession, "on-bye-timeout", (GCallback) on_timeout,
2511             stream);
2512         g_signal_connect (rtpsession, "on-timeout", (GCallback) on_timeout,
2513             stream);
2514         g_signal_connect (rtpsession, "on-ssrc-active",
2515             (GCallback) on_ssrc_active, stream);
2516       }
2517     }
2518   }
2519
2520 use_no_manager:
2521   return TRUE;
2522
2523   /* ERRORS */
2524 no_manager:
2525   {
2526     GST_DEBUG_OBJECT (src, "cannot get a session manager");
2527     return FALSE;
2528   }
2529 manager_failed:
2530   {
2531     GST_DEBUG_OBJECT (src, "no session manager element %s found", manager);
2532     return FALSE;
2533   }
2534 start_manager_failure:
2535   {
2536     GST_DEBUG_OBJECT (src, "could not start session manager");
2537     return FALSE;
2538   }
2539 }
2540
2541 /* free the UDP sources allocated when negotiating a transport.
2542  * This function is called when the server negotiated to a transport where the
2543  * UDP sources are not needed anymore, such as TCP or multicast. */
2544 static void
2545 gst_rtspsrc_stream_free_udp (GstRTSPStream * stream)
2546 {
2547   gint i;
2548
2549   for (i = 0; i < 2; i++) {
2550     if (stream->udpsrc[i]) {
2551       GST_DEBUG ("free UDP source %d for stream %p", i, stream);
2552       gst_element_set_state (stream->udpsrc[i], GST_STATE_NULL);
2553       gst_object_unref (stream->udpsrc[i]);
2554       stream->udpsrc[i] = NULL;
2555     }
2556   }
2557 }
2558
2559 /* for TCP, create pads to send and receive data to and from the manager and to
2560  * intercept various events and queries
2561  */
2562 static gboolean
2563 gst_rtspsrc_stream_configure_tcp (GstRTSPSrc * src, GstRTSPStream * stream,
2564     GstRTSPTransport * transport, GstPad ** outpad)
2565 {
2566   gchar *name;
2567   GstPadTemplate *template;
2568   GstPad *pad0, *pad1;
2569
2570   /* configure for interleaved delivery, nothing needs to be done
2571    * here, the loop function will call the chain functions of the
2572    * session manager. */
2573   stream->channel[0] = transport->interleaved.min;
2574   stream->channel[1] = transport->interleaved.max;
2575   GST_DEBUG_OBJECT (src, "stream %p on channels %d-%d", stream,
2576       stream->channel[0], stream->channel[1]);
2577
2578   /* we can remove the allocated UDP ports now */
2579   gst_rtspsrc_stream_free_udp (stream);
2580
2581   /* no session manager, send data to srcpad directly */
2582   if (!stream->channelpad[0]) {
2583     GST_DEBUG_OBJECT (src, "no manager, creating pad");
2584
2585     /* create a new pad we will use to stream to */
2586     name = g_strdup_printf ("stream_%u", stream->id);
2587     template = gst_static_pad_template_get (&rtptemplate);
2588     stream->channelpad[0] = gst_pad_new_from_template (template, name);
2589     gst_object_unref (template);
2590     g_free (name);
2591
2592     /* set caps and activate */
2593     gst_pad_use_fixed_caps (stream->channelpad[0]);
2594     gst_pad_set_active (stream->channelpad[0], TRUE);
2595
2596     *outpad = gst_object_ref (stream->channelpad[0]);
2597   } else {
2598     GST_DEBUG_OBJECT (src, "using manager source pad");
2599
2600     template = gst_static_pad_template_get (&anysrctemplate);
2601
2602     /* allocate pads for sending the channel data into the manager */
2603     pad0 = gst_pad_new_from_template (template, "internalsrc_0");
2604     gst_pad_link (pad0, stream->channelpad[0]);
2605     gst_object_unref (stream->channelpad[0]);
2606     stream->channelpad[0] = pad0;
2607     gst_pad_set_event_function (pad0, gst_rtspsrc_handle_internal_src_event);
2608     gst_pad_set_query_function (pad0, gst_rtspsrc_handle_internal_src_query);
2609     gst_pad_set_element_private (pad0, src);
2610     gst_pad_set_active (pad0, TRUE);
2611
2612     if (stream->channelpad[1]) {
2613       /* if we have a sinkpad for the other channel, create a pad and link to the
2614        * manager. */
2615       pad1 = gst_pad_new_from_template (template, "internalsrc_1");
2616       gst_pad_set_event_function (pad1, gst_rtspsrc_handle_internal_src_event);
2617       gst_pad_link (pad1, stream->channelpad[1]);
2618       gst_object_unref (stream->channelpad[1]);
2619       stream->channelpad[1] = pad1;
2620       gst_pad_set_active (pad1, TRUE);
2621     }
2622     gst_object_unref (template);
2623   }
2624   /* setup RTCP transport back to the server if we have to. */
2625   if (src->manager && src->do_rtcp) {
2626     GstPad *pad;
2627
2628     template = gst_static_pad_template_get (&anysinktemplate);
2629
2630     stream->rtcppad = gst_pad_new_from_template (template, "internalsink_0");
2631     gst_pad_set_chain_function (stream->rtcppad, gst_rtspsrc_sink_chain);
2632     gst_pad_set_element_private (stream->rtcppad, stream);
2633     gst_pad_set_active (stream->rtcppad, TRUE);
2634
2635     /* get session RTCP pad */
2636     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
2637     pad = gst_element_get_request_pad (src->manager, name);
2638     g_free (name);
2639
2640     /* and link */
2641     if (pad) {
2642       gst_pad_link (pad, stream->rtcppad);
2643       gst_object_unref (pad);
2644     }
2645
2646     gst_object_unref (template);
2647   }
2648   return TRUE;
2649 }
2650
2651 static void
2652 gst_rtspsrc_get_transport_info (GstRTSPSrc * src, GstRTSPStream * stream,
2653     GstRTSPTransport * transport, const gchar ** destination, gint * min,
2654     gint * max, guint * ttl)
2655 {
2656   if (transport->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
2657     if (destination) {
2658       if (!(*destination = transport->destination))
2659         *destination = stream->destination;
2660     }
2661     if (min && max) {
2662       /* transport first */
2663       *min = transport->port.min;
2664       *max = transport->port.max;
2665       if (*min == -1 && *max == -1) {
2666         /* then try from SDP */
2667         if (stream->port != 0) {
2668           *min = stream->port;
2669           *max = stream->port + 1;
2670         }
2671       }
2672     }
2673
2674     if (ttl) {
2675       if (!(*ttl = transport->ttl))
2676         *ttl = stream->ttl;
2677     }
2678   } else {
2679     if (destination) {
2680       /* first take the source, then the endpoint to figure out where to send
2681        * the RTCP. */
2682       if (!(*destination = transport->source)) {
2683         if (src->conninfo.connection)
2684           *destination = gst_rtsp_connection_get_ip (src->conninfo.connection);
2685         else if (stream->conninfo.connection)
2686           *destination =
2687               gst_rtsp_connection_get_ip (stream->conninfo.connection);
2688       }
2689     }
2690     if (min && max) {
2691       /* for unicast we only expect the ports here */
2692       *min = transport->server_port.min;
2693       *max = transport->server_port.max;
2694     }
2695   }
2696 }
2697
2698 /* For multicast create UDP sources and join the multicast group. */
2699 static gboolean
2700 gst_rtspsrc_stream_configure_mcast (GstRTSPSrc * src, GstRTSPStream * stream,
2701     GstRTSPTransport * transport, GstPad ** outpad)
2702 {
2703   gchar *uri;
2704   const gchar *destination;
2705   gint min, max;
2706
2707   GST_DEBUG_OBJECT (src, "creating UDP sources for multicast");
2708
2709   /* we can remove the allocated UDP ports now */
2710   gst_rtspsrc_stream_free_udp (stream);
2711
2712   gst_rtspsrc_get_transport_info (src, stream, transport, &destination, &min,
2713       &max, NULL);
2714
2715   /* we need a destination now */
2716   if (destination == NULL)
2717     goto no_destination;
2718
2719   /* we really need ports now or we won't be able to receive anything at all */
2720   if (min == -1 && max == -1)
2721     goto no_ports;
2722
2723   GST_DEBUG_OBJECT (src, "have destination '%s' and ports (%d)-(%d)",
2724       destination, min, max);
2725
2726   /* creating UDP source for RTP */
2727   if (min != -1) {
2728     uri = g_strdup_printf ("udp://%s:%d", destination, min);
2729     stream->udpsrc[0] =
2730         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
2731     g_free (uri);
2732     if (stream->udpsrc[0] == NULL)
2733       goto no_element;
2734
2735     /* take ownership */
2736     gst_object_ref_sink (stream->udpsrc[0]);
2737
2738     if (src->udp_buffer_size != 0)
2739       g_object_set (G_OBJECT (stream->udpsrc[0]), "buffer-size",
2740           src->udp_buffer_size, NULL);
2741
2742     /* change state */
2743     gst_element_set_state (stream->udpsrc[0], GST_STATE_PAUSED);
2744   }
2745
2746   /* creating another UDP source for RTCP */
2747   if (max != -1) {
2748     uri = g_strdup_printf ("udp://%s:%d", destination, max);
2749     stream->udpsrc[1] =
2750         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
2751     g_free (uri);
2752     if (stream->udpsrc[1] == NULL)
2753       goto no_element;
2754
2755     /* take ownership */
2756     gst_object_ref_sink (stream->udpsrc[1]);
2757
2758     gst_element_set_state (stream->udpsrc[1], GST_STATE_PAUSED);
2759   }
2760   return TRUE;
2761
2762   /* ERRORS */
2763 no_element:
2764   {
2765     GST_DEBUG_OBJECT (src, "no UDP source element found");
2766     return FALSE;
2767   }
2768 no_destination:
2769   {
2770     GST_DEBUG_OBJECT (src, "no destination found");
2771     return FALSE;
2772   }
2773 no_ports:
2774   {
2775     GST_DEBUG_OBJECT (src, "no ports found");
2776     return FALSE;
2777   }
2778 }
2779
2780 /* configure the remainder of the UDP ports */
2781 static gboolean
2782 gst_rtspsrc_stream_configure_udp (GstRTSPSrc * src, GstRTSPStream * stream,
2783     GstRTSPTransport * transport, GstPad ** outpad)
2784 {
2785   /* we manage the UDP elements now. For unicast, the UDP sources where
2786    * allocated in the stream when we suggested a transport. */
2787   if (stream->udpsrc[0]) {
2788     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[0]);
2789
2790     GST_DEBUG_OBJECT (src, "setting up UDP source");
2791
2792     /* configure a timeout on the UDP port. When the timeout message is
2793      * posted, we assume UDP transport is not possible. We reconnect using TCP
2794      * if we can. */
2795     g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout", src->udp_timeout,
2796         NULL);
2797
2798     /* get output pad of the UDP source. */
2799     *outpad = gst_element_get_static_pad (stream->udpsrc[0], "src");
2800
2801     /* save it so we can unblock */
2802     stream->blockedpad = *outpad;
2803
2804     /* configure pad block on the pad. As soon as there is dataflow on the
2805      * UDP source, we know that UDP is not blocked by a firewall and we can
2806      * configure all the streams to let the application autoplug decoders. */
2807     stream->blockid =
2808         gst_pad_add_probe (stream->blockedpad,
2809         GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM, pad_blocked, src, NULL);
2810
2811     if (stream->channelpad[0]) {
2812       GST_DEBUG_OBJECT (src, "connecting UDP source 0 to manager");
2813       /* configure for UDP delivery, we need to connect the UDP pads to
2814        * the session plugin. */
2815       gst_pad_link (*outpad, stream->channelpad[0]);
2816       gst_object_unref (*outpad);
2817       *outpad = NULL;
2818       /* we connected to pad-added signal to get pads from the manager */
2819     } else {
2820       GST_DEBUG_OBJECT (src, "using UDP src pad as output");
2821     }
2822   }
2823
2824   /* RTCP port */
2825   if (stream->udpsrc[1]) {
2826     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[1]);
2827
2828     if (stream->channelpad[1]) {
2829       GstPad *pad;
2830
2831       GST_DEBUG_OBJECT (src, "connecting UDP source 1 to manager");
2832
2833       pad = gst_element_get_static_pad (stream->udpsrc[1], "src");
2834       gst_pad_link (pad, stream->channelpad[1]);
2835       gst_object_unref (pad);
2836     } else {
2837       /* leave unlinked */
2838     }
2839   }
2840   return TRUE;
2841 }
2842
2843 /* configure the UDP sink back to the server for status reports */
2844 static gboolean
2845 gst_rtspsrc_stream_configure_udp_sinks (GstRTSPSrc * src,
2846     GstRTSPStream * stream, GstRTSPTransport * transport)
2847 {
2848   GstPad *pad;
2849   gint rtp_port, rtcp_port;
2850   gboolean do_rtp, do_rtcp;
2851   const gchar *destination;
2852   gchar *uri, *name;
2853   guint ttl = 0;
2854   GSocket *socket;
2855
2856   /* get transport info */
2857   gst_rtspsrc_get_transport_info (src, stream, transport, &destination,
2858       &rtp_port, &rtcp_port, &ttl);
2859
2860   /* see what we need to do */
2861   do_rtp = (rtp_port != -1);
2862   /* it's possible that the server does not want us to send RTCP in which case
2863    * the port is -1 */
2864   do_rtcp = (rtcp_port != -1 && src->manager != NULL && src->do_rtcp);
2865
2866   /* we need a destination when we have RTP or RTCP ports */
2867   if (destination == NULL && (do_rtp || do_rtcp))
2868     goto no_destination;
2869
2870   /* try to construct the fakesrc to the RTP port of the server to open up any
2871    * NAT firewalls */
2872   if (do_rtp) {
2873     GST_DEBUG_OBJECT (src, "configure RTP UDP sink for %s:%d", destination,
2874         rtp_port);
2875
2876     uri = g_strdup_printf ("udp://%s:%d", destination, rtp_port);
2877     stream->udpsink[0] =
2878         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
2879     g_free (uri);
2880     if (stream->udpsink[0] == NULL)
2881       goto no_sink_element;
2882
2883     /* don't join multicast group, we will have the source socket do that */
2884     /* no sync or async state changes needed */
2885     g_object_set (G_OBJECT (stream->udpsink[0]), "auto-multicast", FALSE,
2886         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
2887     if (ttl > 0)
2888       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
2889
2890     if (stream->udpsrc[0]) {
2891       /* configure socket, we give it the same UDP socket as the udpsrc for RTP
2892        * so that NAT firewalls will open a hole for us */
2893       g_object_get (G_OBJECT (stream->udpsrc[0]), "used-socket", &socket, NULL);
2894       GST_DEBUG_OBJECT (src, "RTP UDP src has sock %p", socket);
2895       /* configure socket and make sure udpsink does not close it when shutting
2896        * down, it belongs to udpsrc after all. */
2897       g_object_set (G_OBJECT (stream->udpsink[0]), "socket", socket,
2898           "close-socket", FALSE, NULL);
2899       g_object_unref (socket);
2900     }
2901
2902     /* the source for the dummy packets to open up NAT */
2903     stream->fakesrc = gst_element_factory_make ("fakesrc", NULL);
2904     if (stream->fakesrc == NULL)
2905       goto no_fakesrc_element;
2906
2907     /* random data in 5 buffers, a size of 200 bytes should be fine */
2908     g_object_set (G_OBJECT (stream->fakesrc), "filltype", 3, "num-buffers", 5,
2909         "sizetype", 2, "sizemax", 200, "silent", TRUE, NULL);
2910
2911     /* we don't want to consider this a sink */
2912     GST_OBJECT_FLAG_UNSET (stream->udpsink[0], GST_ELEMENT_FLAG_SINK);
2913
2914     /* keep everything locked */
2915     gst_element_set_locked_state (stream->udpsink[0], TRUE);
2916     gst_element_set_locked_state (stream->fakesrc, TRUE);
2917
2918     gst_object_ref (stream->udpsink[0]);
2919     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[0]);
2920     gst_object_ref (stream->fakesrc);
2921     gst_bin_add (GST_BIN_CAST (src), stream->fakesrc);
2922
2923     gst_element_link (stream->fakesrc, stream->udpsink[0]);
2924   }
2925   if (do_rtcp) {
2926     GST_DEBUG_OBJECT (src, "configure RTCP UDP sink for %s:%d", destination,
2927         rtcp_port);
2928
2929     uri = g_strdup_printf ("udp://%s:%d", destination, rtcp_port);
2930     stream->udpsink[1] =
2931         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
2932     g_free (uri);
2933     if (stream->udpsink[1] == NULL)
2934       goto no_sink_element;
2935
2936     /* don't join multicast group, we will have the source socket do that */
2937     /* no sync or async state changes needed */
2938     g_object_set (G_OBJECT (stream->udpsink[1]), "auto-multicast", FALSE,
2939         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
2940     if (ttl > 0)
2941       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
2942
2943     if (stream->udpsrc[1]) {
2944       /* configure socket, we give it the same UDP socket as the udpsrc for RTCP
2945        * because some servers check the port number of where it sends RTCP to identify
2946        * the RTCP packets it receives */
2947       g_object_get (G_OBJECT (stream->udpsrc[1]), "used-socket", &socket, NULL);
2948       GST_DEBUG_OBJECT (src, "RTCP UDP src has sock %p", socket);
2949       /* configure socket and make sure udpsink does not close it when shutting
2950        * down, it belongs to udpsrc after all. */
2951       g_object_set (G_OBJECT (stream->udpsink[1]), "socket", socket,
2952           "close-socket", FALSE, NULL);
2953       g_object_unref (socket);
2954     }
2955
2956     /* we don't want to consider this a sink */
2957     GST_OBJECT_FLAG_UNSET (stream->udpsink[1], GST_ELEMENT_FLAG_SINK);
2958
2959     /* we keep this playing always */
2960     gst_element_set_locked_state (stream->udpsink[1], TRUE);
2961     gst_element_set_state (stream->udpsink[1], GST_STATE_PLAYING);
2962
2963     gst_object_ref (stream->udpsink[1]);
2964     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[1]);
2965
2966     stream->rtcppad = gst_element_get_static_pad (stream->udpsink[1], "sink");
2967
2968     /* get session RTCP pad */
2969     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
2970     pad = gst_element_get_request_pad (src->manager, name);
2971     g_free (name);
2972
2973     /* and link */
2974     if (pad) {
2975       gst_pad_link (pad, stream->rtcppad);
2976       gst_object_unref (pad);
2977     }
2978   }
2979
2980   return TRUE;
2981
2982   /* ERRORS */
2983 no_destination:
2984   {
2985     GST_DEBUG_OBJECT (src, "no destination address specified");
2986     return FALSE;
2987   }
2988 no_sink_element:
2989   {
2990     GST_DEBUG_OBJECT (src, "no UDP sink element found");
2991     return FALSE;
2992   }
2993 no_fakesrc_element:
2994   {
2995     GST_DEBUG_OBJECT (src, "no fakesrc element found");
2996     return FALSE;
2997   }
2998 }
2999
3000 /* sets up all elements needed for streaming over the specified transport.
3001  * Does not yet expose the element pads, this will be done when there is actuall
3002  * dataflow detected, which might never happen when UDP is blocked in a
3003  * firewall, for example.
3004  */
3005 static gboolean
3006 gst_rtspsrc_stream_configure_transport (GstRTSPStream * stream,
3007     GstRTSPTransport * transport)
3008 {
3009   GstRTSPSrc *src;
3010   GstPad *outpad = NULL;
3011   GstPadTemplate *template;
3012   gchar *name;
3013   GstStructure *s;
3014   const gchar *mime;
3015
3016   src = stream->parent;
3017
3018   GST_DEBUG_OBJECT (src, "configuring transport for stream %p", stream);
3019
3020   s = gst_caps_get_structure (stream->caps, 0);
3021
3022   /* get the proper mime type for this stream now */
3023   if (gst_rtsp_transport_get_mime (transport->trans, &mime) < 0)
3024     goto unknown_transport;
3025   if (!mime)
3026     goto unknown_transport;
3027
3028   /* configure the final mime type */
3029   GST_DEBUG_OBJECT (src, "setting mime to %s", mime);
3030   gst_structure_set_name (s, mime);
3031
3032   /* try to get and configure a manager, channelpad[0-1] will be configured with
3033    * the pads for the manager, or NULL when no manager is needed. */
3034   if (!gst_rtspsrc_stream_configure_manager (src, stream, transport))
3035     goto no_manager;
3036
3037   switch (transport->lower_transport) {
3038     case GST_RTSP_LOWER_TRANS_TCP:
3039       if (!gst_rtspsrc_stream_configure_tcp (src, stream, transport, &outpad))
3040         goto transport_failed;
3041       break;
3042     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
3043       if (!gst_rtspsrc_stream_configure_mcast (src, stream, transport, &outpad))
3044         goto transport_failed;
3045       /* fallthrough, the rest is the same for UDP and MCAST */
3046     case GST_RTSP_LOWER_TRANS_UDP:
3047       if (!gst_rtspsrc_stream_configure_udp (src, stream, transport, &outpad))
3048         goto transport_failed;
3049       /* configure udpsinks back to the server for RTCP messages and for the
3050        * dummy RTP messages to open NAT. */
3051       if (!gst_rtspsrc_stream_configure_udp_sinks (src, stream, transport))
3052         goto transport_failed;
3053       break;
3054     default:
3055       goto unknown_transport;
3056   }
3057
3058   if (outpad) {
3059     GST_DEBUG_OBJECT (src, "creating ghostpad");
3060
3061     gst_pad_use_fixed_caps (outpad);
3062
3063     /* create ghostpad, don't add just yet, this will be done when we activate
3064      * the stream. */
3065     name = g_strdup_printf ("stream_%u", stream->id);
3066     template = gst_static_pad_template_get (&rtptemplate);
3067     stream->srcpad = gst_ghost_pad_new_from_template (name, outpad, template);
3068     gst_pad_set_event_function (stream->srcpad, gst_rtspsrc_handle_src_event);
3069     gst_pad_set_query_function (stream->srcpad, gst_rtspsrc_handle_src_query);
3070     gst_object_unref (template);
3071     g_free (name);
3072
3073     gst_object_unref (outpad);
3074   }
3075   /* mark pad as ok */
3076   stream->last_ret = GST_FLOW_OK;
3077
3078   return TRUE;
3079
3080   /* ERRORS */
3081 transport_failed:
3082   {
3083     GST_DEBUG_OBJECT (src, "failed to configure transport");
3084     return FALSE;
3085   }
3086 unknown_transport:
3087   {
3088     GST_DEBUG_OBJECT (src, "unknown transport");
3089     return FALSE;
3090   }
3091 no_manager:
3092   {
3093     GST_DEBUG_OBJECT (src, "cannot get a session manager");
3094     return FALSE;
3095   }
3096 }
3097
3098 /* send a couple of dummy random packets on the receiver RTP port to the server,
3099  * this should make a firewall think we initiated the data transfer and
3100  * hopefully allow packets to go from the sender port to our RTP receiver port */
3101 static gboolean
3102 gst_rtspsrc_send_dummy_packets (GstRTSPSrc * src)
3103 {
3104   GList *walk;
3105
3106   if (src->nat_method != GST_RTSP_NAT_DUMMY)
3107     return TRUE;
3108
3109   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3110     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3111
3112     if (stream->fakesrc && stream->udpsink[0]) {
3113       GST_DEBUG_OBJECT (src, "sending dummy packet to stream %p", stream);
3114       gst_element_set_state (stream->udpsink[0], GST_STATE_NULL);
3115       gst_element_set_state (stream->fakesrc, GST_STATE_NULL);
3116       gst_element_set_state (stream->udpsink[0], GST_STATE_PLAYING);
3117       gst_element_set_state (stream->fakesrc, GST_STATE_PLAYING);
3118     }
3119   }
3120   return TRUE;
3121 }
3122
3123 /* Adds the source pads of all configured streams to the element.
3124  * This code is performed when we detected dataflow.
3125  *
3126  * We detect dataflow from either the _loop function or with pad probes on the
3127  * udp sources.
3128  */
3129 static gboolean
3130 gst_rtspsrc_activate_streams (GstRTSPSrc * src)
3131 {
3132   GList *walk;
3133
3134   GST_DEBUG_OBJECT (src, "activating streams");
3135
3136   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3137     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3138
3139     if (stream->udpsrc[0]) {
3140       /* remove timeout, we are streaming now and timeouts will be handled by
3141        * the session manager and jitter buffer */
3142       g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout", (guint64) 0, NULL);
3143     }
3144     if (stream->srcpad) {
3145       GST_DEBUG_OBJECT (src, "activating stream pad %p", stream);
3146       gst_pad_set_active (stream->srcpad, TRUE);
3147
3148       /* if we don't have a session manager, set the caps now. If we have a
3149        * session, we will get a notification of the pad and the caps. */
3150       if (!src->manager) {
3151         GST_DEBUG_OBJECT (src, "setting pad caps for stream %p", stream);
3152         gst_pad_set_caps (stream->srcpad, stream->caps);
3153       }
3154       /* add the pad */
3155       if (!stream->added) {
3156         GST_DEBUG_OBJECT (src, "adding stream pad %p", stream);
3157         gst_element_add_pad (GST_ELEMENT_CAST (src), stream->srcpad);
3158         stream->added = TRUE;
3159       }
3160     }
3161   }
3162
3163   /* unblock all pads */
3164   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3165     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3166
3167     if (stream->blockid) {
3168       GST_DEBUG_OBJECT (src, "unblocking stream pad %p", stream);
3169       gst_pad_remove_probe (stream->blockedpad, stream->blockid);
3170       stream->blockid = 0;
3171     }
3172   }
3173
3174   return TRUE;
3175 }
3176
3177 static void
3178 gst_rtspsrc_configure_caps (GstRTSPSrc * src, GstSegment * segment,
3179     gboolean reset_manager)
3180 {
3181   GList *walk;
3182   guint64 start, stop;
3183   gdouble play_speed, play_scale;
3184
3185   GST_DEBUG_OBJECT (src, "configuring stream caps");
3186
3187   start = segment->position;
3188   stop = segment->duration;
3189   play_speed = segment->rate;
3190   play_scale = segment->applied_rate;
3191
3192   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3193     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3194     GstCaps *caps;
3195
3196     if ((caps = stream->caps)) {
3197       caps = gst_caps_make_writable (caps);
3198       /* update caps */
3199       if (stream->timebase != -1)
3200         gst_caps_set_simple (caps, "clock-base", G_TYPE_UINT,
3201             (guint) stream->timebase, NULL);
3202       if (stream->seqbase != -1)
3203         gst_caps_set_simple (caps, "seqnum-base", G_TYPE_UINT,
3204             (guint) stream->seqbase, NULL);
3205       gst_caps_set_simple (caps, "npt-start", G_TYPE_UINT64, start, NULL);
3206       if (stop != -1)
3207         gst_caps_set_simple (caps, "npt-stop", G_TYPE_UINT64, stop, NULL);
3208       gst_caps_set_simple (caps, "play-speed", G_TYPE_DOUBLE, play_speed, NULL);
3209       gst_caps_set_simple (caps, "play-scale", G_TYPE_DOUBLE, play_scale, NULL);
3210
3211       stream->caps = caps;
3212     }
3213     GST_DEBUG_OBJECT (src, "stream %p, caps %" GST_PTR_FORMAT, stream, caps);
3214   }
3215   if (reset_manager && src->manager) {
3216     GST_DEBUG_OBJECT (src, "clear session");
3217     g_signal_emit_by_name (src->manager, "clear-pt-map", NULL);
3218   }
3219 }
3220
3221 static GstFlowReturn
3222 gst_rtspsrc_combine_flows (GstRTSPSrc * src, GstRTSPStream * stream,
3223     GstFlowReturn ret)
3224 {
3225   GList *streams;
3226
3227   /* store the value */
3228   stream->last_ret = ret;
3229
3230   /* if it's success we can return the value right away */
3231   if (ret == GST_FLOW_OK)
3232     goto done;
3233
3234   /* any other error that is not-linked can be returned right
3235    * away */
3236   if (ret != GST_FLOW_NOT_LINKED)
3237     goto done;
3238
3239   /* only return NOT_LINKED if all other pads returned NOT_LINKED */
3240   for (streams = src->streams; streams; streams = g_list_next (streams)) {
3241     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
3242
3243     ret = ostream->last_ret;
3244     /* some other return value (must be SUCCESS but we can return
3245      * other values as well) */
3246     if (ret != GST_FLOW_NOT_LINKED)
3247       goto done;
3248   }
3249   /* if we get here, all other pads were unlinked and we return
3250    * NOT_LINKED then */
3251 done:
3252   return ret;
3253 }
3254
3255 static gboolean
3256 gst_rtspsrc_stream_push_event (GstRTSPSrc * src, GstRTSPStream * stream,
3257     GstEvent * event)
3258 {
3259   gboolean res = TRUE;
3260
3261   /* only streams that have a connection to the outside world */
3262   if (stream->srcpad == NULL)
3263     goto done;
3264
3265   if (stream->udpsrc[0]) {
3266     gst_event_ref (event);
3267     res = gst_element_send_event (stream->udpsrc[0], event);
3268   } else if (stream->channelpad[0]) {
3269     gst_event_ref (event);
3270     if (GST_PAD_IS_SRC (stream->channelpad[0]))
3271       res = gst_pad_push_event (stream->channelpad[0], event);
3272     else
3273       res = gst_pad_send_event (stream->channelpad[0], event);
3274   }
3275
3276   if (stream->udpsrc[1]) {
3277     gst_event_ref (event);
3278     res &= gst_element_send_event (stream->udpsrc[1], event);
3279   } else if (stream->channelpad[1]) {
3280     gst_event_ref (event);
3281     if (GST_PAD_IS_SRC (stream->channelpad[1]))
3282       res &= gst_pad_push_event (stream->channelpad[1], event);
3283     else
3284       res &= gst_pad_send_event (stream->channelpad[1], event);
3285   }
3286
3287 done:
3288   gst_event_unref (event);
3289
3290   return res;
3291 }
3292
3293 static gboolean
3294 gst_rtspsrc_push_event (GstRTSPSrc * src, GstEvent * event)
3295 {
3296   GList *streams;
3297   gboolean res = TRUE;
3298
3299   for (streams = src->streams; streams; streams = g_list_next (streams)) {
3300     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
3301
3302     gst_event_ref (event);
3303     res &= gst_rtspsrc_stream_push_event (src, ostream, event);
3304   }
3305   gst_event_unref (event);
3306
3307   return res;
3308 }
3309
3310 static GstRTSPResult
3311 gst_rtsp_conninfo_connect (GstRTSPSrc * src, GstRTSPConnInfo * info,
3312     gboolean async)
3313 {
3314   GstRTSPResult res;
3315
3316   if (info->connection == NULL) {
3317     if (info->url == NULL) {
3318       GST_DEBUG_OBJECT (src, "parsing uri (%s)...", info->location);
3319       if ((res = gst_rtsp_url_parse (info->location, &info->url)) < 0)
3320         goto parse_error;
3321     }
3322
3323     /* create connection */
3324     GST_DEBUG_OBJECT (src, "creating connection (%s)...", info->location);
3325     if ((res = gst_rtsp_connection_create (info->url, &info->connection)) < 0)
3326       goto could_not_create;
3327
3328     if (info->url_str)
3329       g_free (info->url_str);
3330     info->url_str = gst_rtsp_url_get_request_uri (info->url);
3331
3332     GST_DEBUG_OBJECT (src, "sanitized uri %s", info->url_str);
3333
3334     if (info->url->transports & GST_RTSP_LOWER_TRANS_HTTP)
3335       gst_rtsp_connection_set_tunneled (info->connection, TRUE);
3336
3337     if (src->proxy_host) {
3338       GST_DEBUG_OBJECT (src, "setting proxy %s:%d", src->proxy_host,
3339           src->proxy_port);
3340       gst_rtsp_connection_set_proxy (info->connection, src->proxy_host,
3341           src->proxy_port);
3342     }
3343   }
3344
3345   if (!info->connected) {
3346     /* connect */
3347     if (async)
3348       GST_ELEMENT_PROGRESS (src, CONTINUE, "connect",
3349           ("Connecting to %s", info->location));
3350     GST_DEBUG_OBJECT (src, "connecting (%s)...", info->location);
3351     if ((res =
3352             gst_rtsp_connection_connect (info->connection,
3353                 src->ptcp_timeout)) < 0)
3354       goto could_not_connect;
3355
3356     info->connected = TRUE;
3357   }
3358   return GST_RTSP_OK;
3359
3360   /* ERRORS */
3361 parse_error:
3362   {
3363     GST_ERROR_OBJECT (src, "No valid RTSP URL was provided");
3364     return res;
3365   }
3366 could_not_create:
3367   {
3368     gchar *str = gst_rtsp_strresult (res);
3369     GST_ERROR_OBJECT (src, "Could not create connection. (%s)", str);
3370     g_free (str);
3371     return res;
3372   }
3373 could_not_connect:
3374   {
3375     gchar *str = gst_rtsp_strresult (res);
3376     GST_ERROR_OBJECT (src, "Could not connect to server. (%s)", str);
3377     g_free (str);
3378     return res;
3379   }
3380 }
3381
3382 static GstRTSPResult
3383 gst_rtsp_conninfo_close (GstRTSPSrc * src, GstRTSPConnInfo * info,
3384     gboolean free)
3385 {
3386   GST_RTSP_STATE_LOCK (src);
3387   if (info->connected) {
3388     GST_DEBUG_OBJECT (src, "closing connection...");
3389     gst_rtsp_connection_close (info->connection);
3390     info->connected = FALSE;
3391   }
3392   if (free && info->connection) {
3393     /* free connection */
3394     GST_DEBUG_OBJECT (src, "freeing connection...");
3395     gst_rtsp_connection_free (info->connection);
3396     info->connection = NULL;
3397   }
3398   GST_RTSP_STATE_UNLOCK (src);
3399   return GST_RTSP_OK;
3400 }
3401
3402 static GstRTSPResult
3403 gst_rtsp_conninfo_reconnect (GstRTSPSrc * src, GstRTSPConnInfo * info,
3404     gboolean async)
3405 {
3406   GstRTSPResult res;
3407
3408   GST_DEBUG_OBJECT (src, "reconnecting connection...");
3409   gst_rtsp_conninfo_close (src, info, FALSE);
3410   res = gst_rtsp_conninfo_connect (src, info, async);
3411
3412   return res;
3413 }
3414
3415 static void
3416 gst_rtspsrc_connection_flush (GstRTSPSrc * src, gboolean flush)
3417 {
3418   GList *walk;
3419
3420   GST_DEBUG_OBJECT (src, "set flushing %d", flush);
3421   GST_RTSP_STATE_LOCK (src);
3422   if (src->conninfo.connection) {
3423     GST_DEBUG_OBJECT (src, "connection flush");
3424     gst_rtsp_connection_flush (src->conninfo.connection, flush);
3425   }
3426   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3427     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3428     GST_DEBUG_OBJECT (src, "stream %p flush", stream);
3429     if (stream->conninfo.connection)
3430       gst_rtsp_connection_flush (stream->conninfo.connection, flush);
3431   }
3432   GST_RTSP_STATE_UNLOCK (src);
3433 }
3434
3435 /* FIXME, handle server request, reply with OK, for now */
3436 static GstRTSPResult
3437 gst_rtspsrc_handle_request (GstRTSPSrc * src, GstRTSPConnection * conn,
3438     GstRTSPMessage * request)
3439 {
3440   GstRTSPMessage response = { 0 };
3441   GstRTSPResult res;
3442
3443   GST_DEBUG_OBJECT (src, "got server request message");
3444
3445   if (src->debug)
3446     gst_rtsp_message_dump (request);
3447
3448   res = gst_rtsp_ext_list_receive_request (src->extensions, request);
3449
3450   if (res == GST_RTSP_ENOTIMPL) {
3451     /* default implementation, send OK */
3452     res =
3453         gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK, "OK",
3454         request);
3455     if (res < 0)
3456       goto send_error;
3457
3458     GST_DEBUG_OBJECT (src, "replying with OK");
3459
3460     if (src->debug)
3461       gst_rtsp_message_dump (&response);
3462
3463     res = gst_rtspsrc_connection_send (src, conn, &response, NULL);
3464     if (res < 0)
3465       goto send_error;
3466
3467     gst_rtsp_message_unset (&response);
3468   } else if (res == GST_RTSP_EEOF)
3469     return res;
3470
3471   return GST_RTSP_OK;
3472
3473   /* ERRORS */
3474 send_error:
3475   {
3476     gst_rtsp_message_unset (&response);
3477     return res;
3478   }
3479 }
3480
3481 /* send server keep-alive */
3482 static GstRTSPResult
3483 gst_rtspsrc_send_keep_alive (GstRTSPSrc * src)
3484 {
3485   GstRTSPMessage request = { 0 };
3486   GstRTSPResult res;
3487   GstRTSPMethod method;
3488   gchar *control;
3489
3490   if (src->do_rtsp_keep_alive == FALSE) {
3491     GST_DEBUG_OBJECT (src, "do-rtsp-keep-alive is FALSE, not sending.");
3492     gst_rtsp_connection_reset_timeout (src->conninfo.connection);
3493     return GST_RTSP_OK;
3494   }
3495
3496   GST_DEBUG_OBJECT (src, "creating server keep-alive");
3497
3498   /* find a method to use for keep-alive */
3499   if (src->methods & GST_RTSP_GET_PARAMETER)
3500     method = GST_RTSP_GET_PARAMETER;
3501   else
3502     method = GST_RTSP_OPTIONS;
3503
3504   if (src->control)
3505     control = src->control;
3506   else
3507     control = src->conninfo.url_str;
3508
3509   if (control == NULL)
3510     goto no_control;
3511
3512   res = gst_rtsp_message_init_request (&request, method, control);
3513   if (res < 0)
3514     goto send_error;
3515
3516   if (src->debug)
3517     gst_rtsp_message_dump (&request);
3518
3519   res =
3520       gst_rtspsrc_connection_send (src, src->conninfo.connection, &request,
3521       NULL);
3522   if (res < 0)
3523     goto send_error;
3524
3525   gst_rtsp_connection_reset_timeout (src->conninfo.connection);
3526   gst_rtsp_message_unset (&request);
3527
3528   return GST_RTSP_OK;
3529
3530   /* ERRORS */
3531 no_control:
3532   {
3533     GST_WARNING_OBJECT (src, "no control url to send keepalive");
3534     return GST_RTSP_OK;
3535   }
3536 send_error:
3537   {
3538     gchar *str = gst_rtsp_strresult (res);
3539
3540     gst_rtsp_message_unset (&request);
3541     GST_ELEMENT_WARNING (src, RESOURCE, WRITE, (NULL),
3542         ("Could not send keep-alive. (%s)", str));
3543     g_free (str);
3544     return res;
3545   }
3546 }
3547
3548 static GstFlowReturn
3549 gst_rtspsrc_loop_interleaved (GstRTSPSrc * src)
3550 {
3551   GstRTSPMessage message = { 0 };
3552   GstRTSPResult res;
3553   gint channel;
3554   GstRTSPStream *stream;
3555   GstPad *outpad = NULL;
3556   guint8 *data;
3557   guint size;
3558   GstFlowReturn ret = GST_FLOW_OK;
3559   GstBuffer *buf;
3560   gboolean is_rtcp, have_data;
3561
3562   /* here we are only interested in data messages */
3563   have_data = FALSE;
3564   do {
3565     GTimeVal tv_timeout;
3566
3567     /* get the next timeout interval */
3568     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
3569
3570     /* see if the timeout period expired */
3571     if ((tv_timeout.tv_sec | tv_timeout.tv_usec) == 0) {
3572       GST_DEBUG_OBJECT (src, "timout, sending keep-alive");
3573       /* send keep-alive, only act on interrupt, a warning will be posted for
3574        * other errors. */
3575       if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
3576         goto interrupt;
3577       /* get new timeout */
3578       gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
3579     }
3580
3581     GST_DEBUG_OBJECT (src, "doing receive with timeout %ld seconds, %ld usec",
3582         tv_timeout.tv_sec, tv_timeout.tv_usec);
3583
3584     /* protect the connection with the connection lock so that we can see when
3585      * we are finished doing server communication */
3586     res =
3587         gst_rtspsrc_connection_receive (src, src->conninfo.connection,
3588         &message, src->ptcp_timeout);
3589
3590     switch (res) {
3591       case GST_RTSP_OK:
3592         GST_DEBUG_OBJECT (src, "we received a server message");
3593         break;
3594       case GST_RTSP_EINTR:
3595         /* we got interrupted this means we need to stop */
3596         goto interrupt;
3597       case GST_RTSP_ETIMEOUT:
3598         /* no reply, send keep alive */
3599         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
3600         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
3601           goto interrupt;
3602         continue;
3603       case GST_RTSP_EEOF:
3604         /* go EOS when the server closed the connection */
3605         goto server_eof;
3606       default:
3607         goto receive_error;
3608     }
3609
3610     switch (message.type) {
3611       case GST_RTSP_MESSAGE_REQUEST:
3612         /* server sends us a request message, handle it */
3613         res =
3614             gst_rtspsrc_handle_request (src, src->conninfo.connection,
3615             &message);
3616         if (res == GST_RTSP_EEOF)
3617           goto server_eof;
3618         else if (res < 0)
3619           goto handle_request_failed;
3620         break;
3621       case GST_RTSP_MESSAGE_RESPONSE:
3622         /* we ignore response messages */
3623         GST_DEBUG_OBJECT (src, "ignoring response message");
3624         if (src->debug)
3625           gst_rtsp_message_dump (&message);
3626         break;
3627       case GST_RTSP_MESSAGE_DATA:
3628         GST_DEBUG_OBJECT (src, "got data message");
3629         have_data = TRUE;
3630         break;
3631       default:
3632         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
3633             message.type);
3634         break;
3635     }
3636   }
3637   while (!have_data);
3638
3639   channel = message.type_data.data.channel;
3640
3641   stream = find_stream (src, &channel, (gpointer) find_stream_by_channel);
3642   if (!stream)
3643     goto unknown_stream;
3644
3645   if (channel == stream->channel[0]) {
3646     outpad = stream->channelpad[0];
3647     is_rtcp = FALSE;
3648   } else if (channel == stream->channel[1]) {
3649     outpad = stream->channelpad[1];
3650     is_rtcp = TRUE;
3651   } else {
3652     is_rtcp = FALSE;
3653   }
3654
3655   /* take a look at the body to figure out what we have */
3656   gst_rtsp_message_get_body (&message, &data, &size);
3657   if (size < 2)
3658     goto invalid_length;
3659
3660   /* channels are not correct on some servers, do extra check */
3661   if (data[1] >= 200 && data[1] <= 204) {
3662     /* hmm RTCP message switch to the RTCP pad of the same stream. */
3663     outpad = stream->channelpad[1];
3664     is_rtcp = TRUE;
3665   }
3666
3667   /* we have no clue what this is, just ignore then. */
3668   if (outpad == NULL)
3669     goto unknown_stream;
3670
3671   /* take the message body for further processing */
3672   gst_rtsp_message_steal_body (&message, &data, &size);
3673
3674   /* strip the trailing \0 */
3675   size -= 1;
3676
3677   buf = gst_buffer_new ();
3678   gst_buffer_append_memory (buf,
3679       gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
3680
3681   /* don't need message anymore */
3682   gst_rtsp_message_unset (&message);
3683
3684   GST_DEBUG_OBJECT (src, "pushing data of size %d on channel %d", size,
3685       channel);
3686
3687   if (src->need_activate) {
3688     gst_rtspsrc_activate_streams (src);
3689     src->need_activate = FALSE;
3690   }
3691
3692   if (src->base_time == -1) {
3693     /* Take current running_time. This timestamp will be put on
3694      * the first buffer of each stream because we are a live source and so we
3695      * timestamp with the running_time. When we are dealing with TCP, we also
3696      * only timestamp the first buffer (using the DISCONT flag) because a server
3697      * typically bursts data, for which we don't want to compensate by speeding
3698      * up the media. The other timestamps will be interpollated from this one
3699      * using the RTP timestamps. */
3700     GST_OBJECT_LOCK (src);
3701     if (GST_ELEMENT_CLOCK (src)) {
3702       GstClockTime now;
3703       GstClockTime base_time;
3704
3705       now = gst_clock_get_time (GST_ELEMENT_CLOCK (src));
3706       base_time = GST_ELEMENT_CAST (src)->base_time;
3707
3708       src->base_time = now - base_time;
3709
3710       GST_DEBUG_OBJECT (src, "first buffer at time %" GST_TIME_FORMAT ", base %"
3711           GST_TIME_FORMAT, GST_TIME_ARGS (now), GST_TIME_ARGS (base_time));
3712     }
3713     GST_OBJECT_UNLOCK (src);
3714   }
3715
3716   if (stream->discont && !is_rtcp) {
3717     /* mark first RTP buffer as discont */
3718     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
3719     stream->discont = FALSE;
3720     /* first buffer gets the timestamp, other buffers are not timestamped and
3721      * their presentation time will be interpollated from the rtp timestamps. */
3722     GST_DEBUG_OBJECT (src, "setting timestamp %" GST_TIME_FORMAT,
3723         GST_TIME_ARGS (src->base_time));
3724
3725     GST_BUFFER_TIMESTAMP (buf) = src->base_time;
3726   }
3727
3728   /* chain to the peer pad */
3729   if (GST_PAD_IS_SINK (outpad))
3730     ret = gst_pad_chain (outpad, buf);
3731   else
3732     ret = gst_pad_push (outpad, buf);
3733
3734   if (!is_rtcp) {
3735     /* combine all stream flows for the data transport */
3736     ret = gst_rtspsrc_combine_flows (src, stream, ret);
3737   }
3738   return ret;
3739
3740   /* ERRORS */
3741 unknown_stream:
3742   {
3743     GST_DEBUG_OBJECT (src, "unknown stream on channel %d, ignored", channel);
3744     gst_rtsp_message_unset (&message);
3745     return GST_FLOW_OK;
3746   }
3747 server_eof:
3748   {
3749     GST_DEBUG_OBJECT (src, "we got an eof from the server");
3750     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3751         ("The server closed the connection."));
3752     src->conninfo.connected = FALSE;
3753     gst_rtsp_message_unset (&message);
3754     return GST_FLOW_EOS;
3755   }
3756 interrupt:
3757   {
3758     gst_rtsp_message_unset (&message);
3759     GST_DEBUG_OBJECT (src, "got interrupted: stop connection flush");
3760     gst_rtspsrc_connection_flush (src, FALSE);
3761     return GST_FLOW_FLUSHING;
3762   }
3763 receive_error:
3764   {
3765     gchar *str = gst_rtsp_strresult (res);
3766
3767     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
3768         ("Could not receive message. (%s)", str));
3769     g_free (str);
3770
3771     gst_rtsp_message_unset (&message);
3772     return GST_FLOW_ERROR;
3773   }
3774 handle_request_failed:
3775   {
3776     gchar *str = gst_rtsp_strresult (res);
3777
3778     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
3779         ("Could not handle server message. (%s)", str));
3780     g_free (str);
3781     gst_rtsp_message_unset (&message);
3782     return GST_FLOW_ERROR;
3783   }
3784 invalid_length:
3785   {
3786     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3787         ("Short message received, ignoring."));
3788     gst_rtsp_message_unset (&message);
3789     return GST_FLOW_OK;
3790   }
3791 }
3792
3793 static GstFlowReturn
3794 gst_rtspsrc_loop_udp (GstRTSPSrc * src)
3795 {
3796   GstRTSPResult res;
3797   GstRTSPMessage message = { 0 };
3798   gint retry = 0;
3799
3800   while (TRUE) {
3801     GTimeVal tv_timeout;
3802
3803     /* get the next timeout interval */
3804     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
3805
3806     GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
3807         (gint) tv_timeout.tv_sec);
3808
3809     gst_rtsp_message_unset (&message);
3810
3811     /* we should continue reading the TCP socket because the server might
3812      * send us requests. When the session timeout expires, we need to send a
3813      * keep-alive request to keep the session open. */
3814     res = gst_rtspsrc_connection_receive (src, src->conninfo.connection,
3815         &message, &tv_timeout);
3816
3817     switch (res) {
3818       case GST_RTSP_OK:
3819         GST_DEBUG_OBJECT (src, "we received a server message");
3820         break;
3821       case GST_RTSP_EINTR:
3822         /* we got interrupted, see what we have to do */
3823         goto interrupt;
3824       case GST_RTSP_ETIMEOUT:
3825         /* send keep-alive, ignore the result, a warning will be posted. */
3826         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
3827         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
3828           goto interrupt;
3829         continue;
3830       case GST_RTSP_EEOF:
3831         /* server closed the connection. not very fatal for UDP, reconnect and
3832          * see what happens. */
3833         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3834             ("The server closed the connection."));
3835         if ((res =
3836                 gst_rtsp_conninfo_reconnect (src, &src->conninfo, FALSE)) < 0)
3837           goto connect_error;
3838
3839         continue;
3840       case GST_RTSP_ENET:
3841         GST_DEBUG_OBJECT (src, "An ethernet problem occured.");
3842       default:
3843         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3844             ("Unhandled return value %d.", res));
3845         goto receive_error;
3846     }
3847
3848     switch (message.type) {
3849       case GST_RTSP_MESSAGE_REQUEST:
3850         /* server sends us a request message, handle it */
3851         res =
3852             gst_rtspsrc_handle_request (src, src->conninfo.connection,
3853             &message);
3854         if (res == GST_RTSP_EEOF)
3855           goto server_eof;
3856         else if (res < 0)
3857           goto handle_request_failed;
3858         break;
3859       case GST_RTSP_MESSAGE_RESPONSE:
3860         /* we ignore response and data messages */
3861         GST_DEBUG_OBJECT (src, "ignoring response message");
3862         if (src->debug)
3863           gst_rtsp_message_dump (&message);
3864         if (message.type_data.response.code == GST_RTSP_STS_UNAUTHORIZED) {
3865           GST_DEBUG_OBJECT (src, "but is Unauthorized response ...");
3866           if (gst_rtspsrc_setup_auth (src, &message) && !(retry++)) {
3867             GST_DEBUG_OBJECT (src, "so retrying keep-alive");
3868             if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
3869               goto interrupt;
3870           }
3871         } else {
3872           retry = 0;
3873         }
3874         break;
3875       case GST_RTSP_MESSAGE_DATA:
3876         /* we ignore response and data messages */
3877         GST_DEBUG_OBJECT (src, "ignoring data message");
3878         break;
3879       default:
3880         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
3881             message.type);
3882         break;
3883     }
3884   }
3885
3886   /* we get here when the connection got interrupted */
3887 interrupt:
3888   {
3889     gst_rtsp_message_unset (&message);
3890     GST_DEBUG_OBJECT (src, "got interrupted: stop connection flush");
3891     gst_rtspsrc_connection_flush (src, FALSE);
3892     return GST_FLOW_FLUSHING;
3893   }
3894 connect_error:
3895   {
3896     gchar *str = gst_rtsp_strresult (res);
3897     GstFlowReturn ret;
3898
3899     src->conninfo.connected = FALSE;
3900     if (res != GST_RTSP_EINTR) {
3901       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
3902           ("Could not connect to server. (%s)", str));
3903       g_free (str);
3904       ret = GST_FLOW_ERROR;
3905     } else {
3906       ret = GST_FLOW_FLUSHING;
3907     }
3908     return ret;
3909   }
3910 receive_error:
3911   {
3912     gchar *str = gst_rtsp_strresult (res);
3913
3914     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
3915         ("Could not receive message. (%s)", str));
3916     g_free (str);
3917     return GST_FLOW_ERROR;
3918   }
3919 handle_request_failed:
3920   {
3921     gchar *str = gst_rtsp_strresult (res);
3922     GstFlowReturn ret;
3923
3924     gst_rtsp_message_unset (&message);
3925     if (res != GST_RTSP_EINTR) {
3926       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
3927           ("Could not handle server message. (%s)", str));
3928       g_free (str);
3929       ret = GST_FLOW_ERROR;
3930     } else {
3931       ret = GST_FLOW_FLUSHING;
3932     }
3933     return ret;
3934   }
3935 server_eof:
3936   {
3937     GST_DEBUG_OBJECT (src, "we got an eof from the server");
3938     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3939         ("The server closed the connection."));
3940     src->conninfo.connected = FALSE;
3941     gst_rtsp_message_unset (&message);
3942     return GST_FLOW_EOS;
3943   }
3944 }
3945
3946 static GstRTSPResult
3947 gst_rtspsrc_reconnect (GstRTSPSrc * src, gboolean async)
3948 {
3949   GstRTSPResult res = GST_RTSP_OK;
3950   gboolean restart;
3951
3952   GST_DEBUG_OBJECT (src, "doing reconnect");
3953
3954   GST_OBJECT_LOCK (src);
3955   /* only restart when the pads were not yet activated, else we were
3956    * streaming over UDP */
3957   restart = src->need_activate;
3958   GST_OBJECT_UNLOCK (src);
3959
3960   /* no need to restart, we're done */
3961   if (!restart)
3962     goto done;
3963
3964   /* we can try only TCP now */
3965   src->cur_protocols = GST_RTSP_LOWER_TRANS_TCP;
3966
3967   /* close and cleanup our state */
3968   if ((res = gst_rtspsrc_close (src, async, FALSE)) < 0)
3969     goto done;
3970
3971   /* see if we have TCP left to try. Also don't try TCP when we were configured
3972    * with an SDP. */
3973   if (!(src->protocols & GST_RTSP_LOWER_TRANS_TCP) || src->from_sdp)
3974     goto no_protocols;
3975
3976   /* We post a warning message now to inform the user
3977    * that nothing happened. It's most likely a firewall thing. */
3978   GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
3979       ("Could not receive any UDP packets for %.4f seconds, maybe your "
3980           "firewall is blocking it. Retrying using a TCP connection.",
3981           gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
3982
3983   /* open new connection using tcp */
3984   if (gst_rtspsrc_open (src, async) < 0)
3985     goto open_failed;
3986
3987   /* start playback */
3988   if (gst_rtspsrc_play (src, &src->segment, async) < 0)
3989     goto play_failed;
3990
3991 done:
3992   return res;
3993
3994   /* ERRORS */
3995 no_protocols:
3996   {
3997     src->cur_protocols = 0;
3998     /* no transport possible, post an error and stop */
3999     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4000         ("Could not receive any UDP packets for %.4f seconds, maybe your "
4001             "firewall is blocking it. No other protocols to try.",
4002             gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
4003     return GST_RTSP_ERROR;
4004   }
4005 open_failed:
4006   {
4007     GST_DEBUG_OBJECT (src, "open failed");
4008     return GST_RTSP_OK;
4009   }
4010 play_failed:
4011   {
4012     GST_DEBUG_OBJECT (src, "play failed");
4013     return GST_RTSP_OK;
4014   }
4015 }
4016
4017 static void
4018 gst_rtspsrc_loop_start_cmd (GstRTSPSrc * src, gint cmd)
4019 {
4020   switch (cmd) {
4021     case CMD_OPEN:
4022       GST_ELEMENT_PROGRESS (src, START, "open", ("Opening Stream"));
4023       break;
4024     case CMD_PLAY:
4025       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PLAY request"));
4026       break;
4027     case CMD_PAUSE:
4028       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PAUSE request"));
4029       break;
4030     case CMD_CLOSE:
4031       GST_ELEMENT_PROGRESS (src, START, "close", ("Closing Stream"));
4032       break;
4033     default:
4034       break;
4035   }
4036 }
4037
4038 static void
4039 gst_rtspsrc_loop_complete_cmd (GstRTSPSrc * src, gint cmd)
4040 {
4041   switch (cmd) {
4042     case CMD_OPEN:
4043       GST_ELEMENT_PROGRESS (src, COMPLETE, "open", ("Opened Stream"));
4044       break;
4045     case CMD_PLAY:
4046       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PLAY request"));
4047       break;
4048     case CMD_PAUSE:
4049       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PAUSE request"));
4050       break;
4051     case CMD_CLOSE:
4052       GST_ELEMENT_PROGRESS (src, COMPLETE, "close", ("Closed Stream"));
4053       break;
4054     default:
4055       break;
4056   }
4057 }
4058
4059 static void
4060 gst_rtspsrc_loop_cancel_cmd (GstRTSPSrc * src, gint cmd)
4061 {
4062   switch (cmd) {
4063     case CMD_OPEN:
4064       GST_ELEMENT_PROGRESS (src, CANCELED, "open", ("Open canceled"));
4065       break;
4066     case CMD_PLAY:
4067       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PLAY canceled"));
4068       break;
4069     case CMD_PAUSE:
4070       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PAUSE canceled"));
4071       break;
4072     case CMD_CLOSE:
4073       GST_ELEMENT_PROGRESS (src, CANCELED, "close", ("Close canceled"));
4074       break;
4075     default:
4076       break;
4077   }
4078 }
4079
4080 static void
4081 gst_rtspsrc_loop_error_cmd (GstRTSPSrc * src, gint cmd)
4082 {
4083   switch (cmd) {
4084     case CMD_OPEN:
4085       GST_ELEMENT_PROGRESS (src, ERROR, "open", ("Open failed"));
4086       break;
4087     case CMD_PLAY:
4088       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PLAY failed"));
4089       break;
4090     case CMD_PAUSE:
4091       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PAUSE failed"));
4092       break;
4093     case CMD_CLOSE:
4094       GST_ELEMENT_PROGRESS (src, ERROR, "close", ("Close failed"));
4095       break;
4096     default:
4097       break;
4098   }
4099 }
4100
4101 static void
4102 gst_rtspsrc_loop_end_cmd (GstRTSPSrc * src, gint cmd, GstRTSPResult ret)
4103 {
4104   if (ret == GST_RTSP_OK)
4105     gst_rtspsrc_loop_complete_cmd (src, cmd);
4106   else if (ret == GST_RTSP_EINTR)
4107     gst_rtspsrc_loop_cancel_cmd (src, cmd);
4108   else
4109     gst_rtspsrc_loop_error_cmd (src, cmd);
4110 }
4111
4112 static void
4113 gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask)
4114 {
4115   gint old;
4116
4117   /* start new request */
4118   gst_rtspsrc_loop_start_cmd (src, cmd);
4119
4120   GST_DEBUG_OBJECT (src, "sending cmd %d", cmd);
4121
4122   GST_OBJECT_LOCK (src);
4123   old = src->pending_cmd;
4124   if (old != CMD_WAIT) {
4125     src->pending_cmd = CMD_WAIT;
4126     GST_OBJECT_UNLOCK (src);
4127     /* cancel previous request */
4128     gst_rtspsrc_loop_cancel_cmd (src, old);
4129     GST_OBJECT_LOCK (src);
4130   }
4131   src->pending_cmd = cmd;
4132   /* interrupt if allowed */
4133   if (src->busy_cmd & mask) {
4134     GST_DEBUG_OBJECT (src, "connection flush busy %d", src->busy_cmd);
4135     gst_rtspsrc_connection_flush (src, TRUE);
4136   } else {
4137     GST_DEBUG_OBJECT (src, "not interrupting busy cmd %d", src->busy_cmd);
4138   }
4139   if (src->task)
4140     gst_task_start (src->task);
4141   GST_OBJECT_UNLOCK (src);
4142 }
4143
4144 static gboolean
4145 gst_rtspsrc_loop (GstRTSPSrc * src)
4146 {
4147   GstFlowReturn ret;
4148
4149   if (!src->conninfo.connection || !src->conninfo.connected)
4150     goto no_connection;
4151
4152   if (src->interleaved)
4153     ret = gst_rtspsrc_loop_interleaved (src);
4154   else
4155     ret = gst_rtspsrc_loop_udp (src);
4156
4157   if (ret != GST_FLOW_OK)
4158     goto pause;
4159
4160   return TRUE;
4161
4162   /* ERRORS */
4163 no_connection:
4164   {
4165     GST_WARNING_OBJECT (src, "we are not connected");
4166     ret = GST_FLOW_FLUSHING;
4167     goto pause;
4168   }
4169 pause:
4170   {
4171     const gchar *reason = gst_flow_get_name (ret);
4172
4173     GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
4174     src->running = FALSE;
4175     if (ret == GST_FLOW_EOS) {
4176       /* perform EOS logic */
4177       if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
4178         gst_element_post_message (GST_ELEMENT_CAST (src),
4179             gst_message_new_segment_done (GST_OBJECT_CAST (src),
4180                 src->segment.format, src->segment.position));
4181         gst_rtspsrc_push_event (src,
4182             gst_event_new_segment_done (src->segment.format,
4183                 src->segment.position));
4184       } else {
4185         gst_rtspsrc_push_event (src, gst_event_new_eos ());
4186       }
4187     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
4188       /* for fatal errors we post an error message, post the error before the
4189        * EOS so the app knows about the error first. */
4190       GST_ELEMENT_ERROR (src, STREAM, FAILED,
4191           ("Internal data flow error."),
4192           ("streaming task paused, reason %s (%d)", reason, ret));
4193       gst_rtspsrc_push_event (src, gst_event_new_eos ());
4194     }
4195     return FALSE;
4196   }
4197 }
4198
4199 #ifndef GST_DISABLE_GST_DEBUG
4200 static const gchar *
4201 gst_rtsp_auth_method_to_string (GstRTSPAuthMethod method)
4202 {
4203   gint index = 0;
4204
4205   while (method != 0) {
4206     index++;
4207     method >>= 1;
4208   }
4209   switch (index) {
4210     case 0:
4211       return "None";
4212     case 1:
4213       return "Basic";
4214     case 2:
4215       return "Digest";
4216   }
4217
4218   return "Unknown";
4219 }
4220 #endif
4221
4222 static const gchar *
4223 gst_rtspsrc_skip_lws (const gchar * s)
4224 {
4225   while (g_ascii_isspace (*s))
4226     s++;
4227   return s;
4228 }
4229
4230 static const gchar *
4231 gst_rtspsrc_unskip_lws (const gchar * s, const gchar * start)
4232 {
4233   while (s > start && g_ascii_isspace (*(s - 1)))
4234     s--;
4235   return s;
4236 }
4237
4238 static const gchar *
4239 gst_rtspsrc_skip_commas (const gchar * s)
4240 {
4241   /* The grammar allows for multiple commas */
4242   while (g_ascii_isspace (*s) || *s == ',')
4243     s++;
4244   return s;
4245 }
4246
4247 static const gchar *
4248 gst_rtspsrc_skip_item (const gchar * s)
4249 {
4250   gboolean quoted = FALSE;
4251   const gchar *start = s;
4252
4253   /* A list item ends at the last non-whitespace character
4254    * before a comma which is not inside a quoted-string. Or at
4255    * the end of the string.
4256    */
4257   while (*s) {
4258     if (*s == '"')
4259       quoted = !quoted;
4260     else if (quoted) {
4261       if (*s == '\\' && *(s + 1))
4262         s++;
4263     } else {
4264       if (*s == ',')
4265         break;
4266     }
4267     s++;
4268   }
4269
4270   return gst_rtspsrc_unskip_lws (s, start);
4271 }
4272
4273 static void
4274 gst_rtsp_decode_quoted_string (gchar * quoted_string)
4275 {
4276   gchar *src, *dst;
4277
4278   src = quoted_string + 1;
4279   dst = quoted_string;
4280   while (*src && *src != '"') {
4281     if (*src == '\\' && *(src + 1))
4282       src++;
4283     *dst++ = *src++;
4284   }
4285   *dst = '\0';
4286 }
4287
4288 /* Extract the authentication tokens that the server provided for each method
4289  * into an array of structures and give those to the connection object.
4290  */
4291 static void
4292 gst_rtspsrc_parse_digest_challenge (GstRTSPConnection * conn,
4293     const gchar * header, gboolean * stale)
4294 {
4295   GSList *list = NULL, *iter;
4296   const gchar *end;
4297   gchar *item, *eq, *name_end, *value;
4298
4299   g_return_if_fail (stale != NULL);
4300
4301   gst_rtsp_connection_clear_auth_params (conn);
4302   *stale = FALSE;
4303
4304   /* Parse a header whose content is described by RFC2616 as
4305    * "#something", where "something" does not itself contain commas,
4306    * except as part of quoted-strings, into a list of allocated strings.
4307    */
4308   header = gst_rtspsrc_skip_commas (header);
4309   while (*header) {
4310     end = gst_rtspsrc_skip_item (header);
4311     list = g_slist_prepend (list, g_strndup (header, end - header));
4312     header = gst_rtspsrc_skip_commas (end);
4313   }
4314   if (!list)
4315     return;
4316
4317   list = g_slist_reverse (list);
4318   for (iter = list; iter; iter = iter->next) {
4319     item = iter->data;
4320
4321     eq = strchr (item, '=');
4322     if (eq) {
4323       name_end = (gchar *) gst_rtspsrc_unskip_lws (eq, item);
4324       if (name_end == item) {
4325         /* That's no good... */
4326         g_free (item);
4327         continue;
4328       }
4329
4330       *name_end = '\0';
4331
4332       value = (gchar *) gst_rtspsrc_skip_lws (eq + 1);
4333       if (*value == '"')
4334         gst_rtsp_decode_quoted_string (value);
4335     } else
4336       value = NULL;
4337
4338     if (item && (strcmp (item, "stale") == 0) &&
4339         value && (strcmp (value, "TRUE") == 0))
4340       *stale = TRUE;
4341     gst_rtsp_connection_set_auth_param (conn, item, value);
4342     g_free (item);
4343   }
4344
4345   g_slist_free (list);
4346 }
4347
4348 /* Parse a WWW-Authenticate Response header and determine the
4349  * available authentication methods
4350  *
4351  * This code should also cope with the fact that each WWW-Authenticate
4352  * header can contain multiple challenge methods + tokens
4353  *
4354  * At the moment, for Basic auth, we just do a minimal check and don't
4355  * even parse out the realm */
4356 static void
4357 gst_rtspsrc_parse_auth_hdr (gchar * hdr, GstRTSPAuthMethod * methods,
4358     GstRTSPConnection * conn, gboolean * stale)
4359 {
4360   gchar *start;
4361
4362   g_return_if_fail (hdr != NULL);
4363   g_return_if_fail (methods != NULL);
4364   g_return_if_fail (stale != NULL);
4365
4366   /* Skip whitespace at the start of the string */
4367   for (start = hdr; start[0] != '\0' && g_ascii_isspace (start[0]); start++);
4368
4369   if (g_ascii_strncasecmp (start, "basic", 5) == 0)
4370     *methods |= GST_RTSP_AUTH_BASIC;
4371   else if (g_ascii_strncasecmp (start, "digest ", 7) == 0) {
4372     *methods |= GST_RTSP_AUTH_DIGEST;
4373     gst_rtspsrc_parse_digest_challenge (conn, &start[7], stale);
4374   }
4375 }
4376
4377 /**
4378  * gst_rtspsrc_setup_auth:
4379  * @src: the rtsp source
4380  *
4381  * Configure a username and password and auth method on the
4382  * connection object based on a response we received from the
4383  * peer.
4384  *
4385  * Currently, this requires that a username and password were supplied
4386  * in the uri. In the future, they may be requested on demand by sending
4387  * a message up the bus.
4388  *
4389  * Returns: TRUE if authentication information could be set up correctly.
4390  */
4391 static gboolean
4392 gst_rtspsrc_setup_auth (GstRTSPSrc * src, GstRTSPMessage * response)
4393 {
4394   gchar *user = NULL;
4395   gchar *pass = NULL;
4396   GstRTSPAuthMethod avail_methods = GST_RTSP_AUTH_NONE;
4397   GstRTSPAuthMethod method;
4398   GstRTSPResult auth_result;
4399   GstRTSPUrl *url;
4400   GstRTSPConnection *conn;
4401   gchar *hdr;
4402   gboolean stale = FALSE;
4403
4404   conn = src->conninfo.connection;
4405
4406   /* Identify the available auth methods and see if any are supported */
4407   if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_WWW_AUTHENTICATE,
4408           &hdr, 0) == GST_RTSP_OK) {
4409     gst_rtspsrc_parse_auth_hdr (hdr, &avail_methods, conn, &stale);
4410   }
4411
4412   if (avail_methods == GST_RTSP_AUTH_NONE)
4413     goto no_auth_available;
4414
4415   /* For digest auth, if the response indicates that the session
4416    * data are stale, we just update them in the connection object and
4417    * return TRUE to retry the request */
4418   if (stale)
4419     src->tried_url_auth = FALSE;
4420
4421   url = gst_rtsp_connection_get_url (conn);
4422
4423   /* Do we have username and password available? */
4424   if (url != NULL && !src->tried_url_auth && url->user != NULL
4425       && url->passwd != NULL) {
4426     user = url->user;
4427     pass = url->passwd;
4428     src->tried_url_auth = TRUE;
4429     GST_DEBUG_OBJECT (src,
4430         "Attempting authentication using credentials from the URL");
4431   } else {
4432     user = src->user_id;
4433     pass = src->user_pw;
4434     GST_DEBUG_OBJECT (src,
4435         "Attempting authentication using credentials from the properties");
4436   }
4437
4438   /* FIXME: If the url didn't contain username and password or we tried them
4439    * already, request a username and passwd from the application via some kind
4440    * of credentials request message */
4441
4442   /* If we don't have a username and passwd at this point, bail out. */
4443   if (user == NULL || pass == NULL)
4444     goto no_user_pass;
4445
4446   /* Try to configure for each available authentication method, strongest to
4447    * weakest */
4448   for (method = GST_RTSP_AUTH_MAX; method != GST_RTSP_AUTH_NONE; method >>= 1) {
4449     /* Check if this method is available on the server */
4450     if ((method & avail_methods) == 0)
4451       continue;
4452
4453     /* Pass the credentials to the connection to try on the next request */
4454     auth_result = gst_rtsp_connection_set_auth (conn, method, user, pass);
4455     /* INVAL indicates an invalid username/passwd were supplied, so we'll just
4456      * ignore it and end up retrying later */
4457     if (auth_result == GST_RTSP_OK || auth_result == GST_RTSP_EINVAL) {
4458       GST_DEBUG_OBJECT (src, "Attempting %s authentication",
4459           gst_rtsp_auth_method_to_string (method));
4460       break;
4461     }
4462   }
4463
4464   if (method == GST_RTSP_AUTH_NONE)
4465     goto no_auth_available;
4466
4467   return TRUE;
4468
4469 no_auth_available:
4470   {
4471     /* Output an error indicating that we couldn't connect because there were
4472      * no supported authentication protocols */
4473     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
4474         ("No supported authentication protocol was found"));
4475     return FALSE;
4476   }
4477 no_user_pass:
4478   {
4479     /* We don't fire an error message, we just return FALSE and let the
4480      * normal NOT_AUTHORIZED error be propagated */
4481     return FALSE;
4482   }
4483 }
4484
4485 static GstRTSPResult
4486 gst_rtspsrc_try_send (GstRTSPSrc * src, GstRTSPConnection * conn,
4487     GstRTSPMessage * request, GstRTSPMessage * response,
4488     GstRTSPStatusCode * code)
4489 {
4490   GstRTSPResult res;
4491   GstRTSPStatusCode thecode;
4492   gchar *content_base = NULL;
4493   gint try = 0;
4494
4495 again:
4496   if (!src->short_header)
4497     gst_rtsp_ext_list_before_send (src->extensions, request);
4498
4499   GST_DEBUG_OBJECT (src, "sending message");
4500
4501   if (src->debug)
4502     gst_rtsp_message_dump (request);
4503
4504   res = gst_rtspsrc_connection_send (src, conn, request, src->ptcp_timeout);
4505   if (res < 0)
4506     goto send_error;
4507
4508   gst_rtsp_connection_reset_timeout (conn);
4509
4510 next:
4511   res = gst_rtspsrc_connection_receive (src, conn, response, src->ptcp_timeout);
4512   if (res < 0)
4513     goto receive_error;
4514
4515   if (src->debug)
4516     gst_rtsp_message_dump (response);
4517
4518   switch (response->type) {
4519     case GST_RTSP_MESSAGE_REQUEST:
4520       res = gst_rtspsrc_handle_request (src, conn, response);
4521       if (res == GST_RTSP_EEOF)
4522         goto server_eof;
4523       else if (res < 0)
4524         goto handle_request_failed;
4525       goto next;
4526     case GST_RTSP_MESSAGE_RESPONSE:
4527       /* ok, a response is good */
4528       GST_DEBUG_OBJECT (src, "received response message");
4529       break;
4530     case GST_RTSP_MESSAGE_DATA:
4531       /* get next response */
4532       GST_DEBUG_OBJECT (src, "ignoring data response message");
4533       goto next;
4534     default:
4535       GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4536           response->type);
4537       goto next;
4538   }
4539
4540   thecode = response->type_data.response.code;
4541
4542   GST_DEBUG_OBJECT (src, "got response message %d", thecode);
4543
4544   /* if the caller wanted the result code, we store it. */
4545   if (code)
4546     *code = thecode;
4547
4548   /* If the request didn't succeed, bail out before doing any more */
4549   if (thecode != GST_RTSP_STS_OK)
4550     return GST_RTSP_OK;
4551
4552   /* store new content base if any */
4553   gst_rtsp_message_get_header (response, GST_RTSP_HDR_CONTENT_BASE,
4554       &content_base, 0);
4555   if (content_base) {
4556     g_free (src->content_base);
4557     src->content_base = g_strdup (content_base);
4558   }
4559   gst_rtsp_ext_list_after_send (src->extensions, request, response);
4560
4561   return GST_RTSP_OK;
4562
4563   /* ERRORS */
4564 send_error:
4565   {
4566     gchar *str = gst_rtsp_strresult (res);
4567
4568     if (res != GST_RTSP_EINTR) {
4569       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4570           ("Could not send message. (%s)", str));
4571     } else {
4572       GST_WARNING_OBJECT (src, "send interrupted");
4573     }
4574     g_free (str);
4575     return res;
4576   }
4577 receive_error:
4578   {
4579     switch (res) {
4580       case GST_RTSP_EEOF:
4581         GST_WARNING_OBJECT (src, "server closed connection, doing reconnect");
4582         if (try == 0) {
4583           try++;
4584           /* if reconnect succeeds, try again */
4585           if ((res =
4586                   gst_rtsp_conninfo_reconnect (src, &src->conninfo,
4587                       FALSE)) == 0)
4588             goto again;
4589         }
4590         /* only try once after reconnect, then fallthrough and error out */
4591       default:
4592       {
4593         gchar *str = gst_rtsp_strresult (res);
4594
4595         if (res != GST_RTSP_EINTR) {
4596           GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4597               ("Could not receive message. (%s)", str));
4598         } else {
4599           GST_WARNING_OBJECT (src, "receive interrupted");
4600         }
4601         g_free (str);
4602         break;
4603       }
4604     }
4605     return res;
4606   }
4607 handle_request_failed:
4608   {
4609     /* ERROR was posted */
4610     gst_rtsp_message_unset (response);
4611     return res;
4612   }
4613 server_eof:
4614   {
4615     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4616     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4617         ("The server closed the connection."));
4618     gst_rtsp_message_unset (response);
4619     return res;
4620   }
4621 }
4622
4623 /**
4624  * gst_rtspsrc_send:
4625  * @src: the rtsp source
4626  * @conn: the connection to send on
4627  * @request: must point to a valid request
4628  * @response: must point to an empty #GstRTSPMessage
4629  * @code: an optional code result
4630  *
4631  * send @request and retrieve the response in @response. optionally @code can be
4632  * non-NULL in which case it will contain the status code of the response.
4633  *
4634  * If This function returns #GST_RTSP_OK, @response will contain a valid response
4635  * message that should be cleaned with gst_rtsp_message_unset() after usage.
4636  *
4637  * If @code is NULL, this function will return #GST_RTSP_ERROR (with an invalid
4638  * @response message) if the response code was not 200 (OK).
4639  *
4640  * If the attempt results in an authentication failure, then this will attempt
4641  * to retrieve authentication credentials via gst_rtspsrc_setup_auth and retry
4642  * the request.
4643  *
4644  * Returns: #GST_RTSP_OK if the processing was successful.
4645  */
4646 static GstRTSPResult
4647 gst_rtspsrc_send (GstRTSPSrc * src, GstRTSPConnection * conn,
4648     GstRTSPMessage * request, GstRTSPMessage * response,
4649     GstRTSPStatusCode * code)
4650 {
4651   GstRTSPStatusCode int_code = GST_RTSP_STS_OK;
4652   GstRTSPResult res = GST_RTSP_ERROR;
4653   gint count;
4654   gboolean retry;
4655   GstRTSPMethod method = GST_RTSP_INVALID;
4656
4657   count = 0;
4658   do {
4659     retry = FALSE;
4660
4661     /* make sure we don't loop forever */
4662     if (count++ > 8)
4663       break;
4664
4665     /* save method so we can disable it when the server complains */
4666     method = request->type_data.request.method;
4667
4668     if ((res =
4669             gst_rtspsrc_try_send (src, conn, request, response, &int_code)) < 0)
4670       goto error;
4671
4672     switch (int_code) {
4673       case GST_RTSP_STS_UNAUTHORIZED:
4674         if (gst_rtspsrc_setup_auth (src, response)) {
4675           /* Try the request/response again after configuring the auth info
4676            * and loop again */
4677           retry = TRUE;
4678         }
4679         break;
4680       default:
4681         break;
4682     }
4683   } while (retry == TRUE);
4684
4685   /* If the user requested the code, let them handle errors, otherwise
4686    * post an error below */
4687   if (code != NULL)
4688     *code = int_code;
4689   else if (int_code != GST_RTSP_STS_OK)
4690     goto error_response;
4691
4692   return res;
4693
4694   /* ERRORS */
4695 error:
4696   {
4697     GST_DEBUG_OBJECT (src, "got error %d", res);
4698     return res;
4699   }
4700 error_response:
4701   {
4702     res = GST_RTSP_ERROR;
4703
4704     switch (response->type_data.response.code) {
4705       case GST_RTSP_STS_NOT_FOUND:
4706         GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), ("%s",
4707                 response->type_data.response.reason));
4708         break;
4709       case GST_RTSP_STS_MOVED_PERMANENTLY:
4710       case GST_RTSP_STS_MOVE_TEMPORARILY:
4711       {
4712         gchar *new_location;
4713         GstRTSPLowerTrans transports;
4714
4715         GST_DEBUG_OBJECT (src, "got redirection");
4716         /* if we don't have a Location Header, we must error */
4717         if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_LOCATION,
4718                 &new_location, 0) < 0)
4719           break;
4720
4721         /* When we receive a redirect result, we go back to the INIT state after
4722          * parsing the new URI. The caller should do the needed steps to issue
4723          * a new setup when it detects this state change. */
4724         GST_DEBUG_OBJECT (src, "redirection to %s", new_location);
4725
4726         /* save current transports */
4727         if (src->conninfo.url)
4728           transports = src->conninfo.url->transports;
4729         else
4730           transports = GST_RTSP_LOWER_TRANS_UNKNOWN;
4731
4732         gst_rtspsrc_uri_set_uri (GST_URI_HANDLER (src), new_location, NULL);
4733
4734         /* set old transports */
4735         if (src->conninfo.url && transports != GST_RTSP_LOWER_TRANS_UNKNOWN)
4736           src->conninfo.url->transports = transports;
4737
4738         src->need_redirect = TRUE;
4739         src->state = GST_RTSP_STATE_INIT;
4740         res = GST_RTSP_OK;
4741         break;
4742       }
4743       case GST_RTSP_STS_NOT_ACCEPTABLE:
4744       case GST_RTSP_STS_NOT_IMPLEMENTED:
4745       case GST_RTSP_STS_METHOD_NOT_ALLOWED:
4746         GST_WARNING_OBJECT (src, "got NOT IMPLEMENTED, disable method %s",
4747             gst_rtsp_method_as_text (method));
4748         src->methods &= ~method;
4749         res = GST_RTSP_OK;
4750         break;
4751       default:
4752         GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4753             ("Got error response: %d (%s).", response->type_data.response.code,
4754                 response->type_data.response.reason));
4755         break;
4756     }
4757     /* if we return ERROR we should unset the response ourselves */
4758     if (res == GST_RTSP_ERROR)
4759       gst_rtsp_message_unset (response);
4760
4761     return res;
4762   }
4763 }
4764
4765 static GstRTSPResult
4766 gst_rtspsrc_send_cb (GstRTSPExtension * ext, GstRTSPMessage * request,
4767     GstRTSPMessage * response, GstRTSPSrc * src)
4768 {
4769   return gst_rtspsrc_send (src, src->conninfo.connection, request, response,
4770       NULL);
4771 }
4772
4773
4774 /* parse the response and collect all the supported methods. We need this
4775  * information so that we don't try to send an unsupported request to the
4776  * server.
4777  */
4778 static gboolean
4779 gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
4780 {
4781   GstRTSPHeaderField field;
4782   gchar *respoptions;
4783   gchar **options;
4784   gint indx = 0;
4785   gint i;
4786
4787   /* reset supported methods */
4788   src->methods = 0;
4789
4790   /* Try Allow Header first */
4791   field = GST_RTSP_HDR_ALLOW;
4792   while (TRUE) {
4793     respoptions = NULL;
4794     gst_rtsp_message_get_header (response, field, &respoptions, indx);
4795     if (indx == 0 && !respoptions) {
4796       /* if no Allow header was found then try the Public header... */
4797       field = GST_RTSP_HDR_PUBLIC;
4798       gst_rtsp_message_get_header (response, field, &respoptions, indx);
4799     }
4800     if (!respoptions)
4801       break;
4802
4803     /* If we get here, the server gave a list of supported methods, parse
4804      * them here. The string is like:
4805      *
4806      * OPTIONS, DESCRIBE, ANNOUNCE, PLAY, SETUP, ...
4807      */
4808     options = g_strsplit (respoptions, ",", 0);
4809
4810     for (i = 0; options[i]; i++) {
4811       gchar *stripped;
4812       gint method;
4813
4814       stripped = g_strstrip (options[i]);
4815       method = gst_rtsp_find_method (stripped);
4816
4817       /* keep bitfield of supported methods */
4818       if (method != GST_RTSP_INVALID)
4819         src->methods |= method;
4820     }
4821     g_strfreev (options);
4822
4823     indx++;
4824   }
4825
4826   if (src->methods == 0) {
4827     /* neither Allow nor Public are required, assume the server supports
4828      * at least DESCRIBE, SETUP, we always assume it supports PLAY as
4829      * well. */
4830     GST_DEBUG_OBJECT (src, "could not get OPTIONS");
4831     src->methods = GST_RTSP_DESCRIBE | GST_RTSP_SETUP;
4832   }
4833   /* always assume PLAY, FIXME, extensions should be able to override
4834    * this */
4835   src->methods |= GST_RTSP_PLAY;
4836   /* also assume it will support Range */
4837   src->seekable = TRUE;
4838
4839   /* we need describe and setup */
4840   if (!(src->methods & GST_RTSP_DESCRIBE))
4841     goto no_describe;
4842   if (!(src->methods & GST_RTSP_SETUP))
4843     goto no_setup;
4844
4845   return TRUE;
4846
4847   /* ERRORS */
4848 no_describe:
4849   {
4850     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
4851         ("Server does not support DESCRIBE."));
4852     return FALSE;
4853   }
4854 no_setup:
4855   {
4856     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
4857         ("Server does not support SETUP."));
4858     return FALSE;
4859   }
4860 }
4861
4862 /* masks to be kept in sync with the hardcoded protocol order of preference
4863  * in code below */
4864 static guint protocol_masks[] = {
4865   GST_RTSP_LOWER_TRANS_UDP,
4866   GST_RTSP_LOWER_TRANS_UDP_MCAST,
4867   GST_RTSP_LOWER_TRANS_TCP,
4868   0
4869 };
4870
4871 static GstRTSPResult
4872 gst_rtspsrc_create_transports_string (GstRTSPSrc * src,
4873     GstRTSPLowerTrans protocols, gchar ** transports)
4874 {
4875   GstRTSPResult res;
4876   GString *result;
4877   gboolean add_udp_str;
4878
4879   *transports = NULL;
4880
4881   res =
4882       gst_rtsp_ext_list_get_transports (src->extensions, protocols, transports);
4883
4884   if (res < 0)
4885     goto failed;
4886
4887   GST_DEBUG_OBJECT (src, "got transports %s", GST_STR_NULL (*transports));
4888
4889   /* extension listed transports, use those */
4890   if (*transports != NULL)
4891     return GST_RTSP_OK;
4892
4893   /* it's the default */
4894   add_udp_str = FALSE;
4895
4896   /* the default RTSP transports */
4897   result = g_string_new ("");
4898   if (protocols & GST_RTSP_LOWER_TRANS_UDP) {
4899     GST_DEBUG_OBJECT (src, "adding UDP unicast");
4900
4901     g_string_append (result, "RTP/AVP");
4902     if (add_udp_str)
4903       g_string_append (result, "/UDP");
4904     g_string_append (result, ";unicast;client_port=%%u1-%%u2");
4905   } else if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) {
4906     GST_DEBUG_OBJECT (src, "adding UDP multicast");
4907
4908     /* we don't have to allocate any UDP ports yet, if the selected transport
4909      * turns out to be multicast we can create them and join the multicast
4910      * group indicated in the transport reply */
4911     if (result->len > 0)
4912       g_string_append (result, ",");
4913     g_string_append (result, "RTP/AVP");
4914     if (add_udp_str)
4915       g_string_append (result, "/UDP");
4916     g_string_append (result, ";multicast");
4917     if (src->next_port_num != 0) {
4918       if (src->client_port_range.max > 0 &&
4919           src->next_port_num >= src->client_port_range.max)
4920         goto no_ports;
4921
4922       g_string_append_printf (result, ";client_port=%d-%d",
4923           src->next_port_num, src->next_port_num + 1);
4924     }
4925   } else if (protocols & GST_RTSP_LOWER_TRANS_TCP) {
4926     GST_DEBUG_OBJECT (src, "adding TCP");
4927
4928     if (result->len > 0)
4929       g_string_append (result, ",");
4930     g_string_append (result, "RTP/AVP/TCP;unicast;interleaved=%%i1-%%i2");
4931   }
4932   *transports = g_string_free (result, FALSE);
4933
4934   GST_DEBUG_OBJECT (src, "prepared transports %s", GST_STR_NULL (*transports));
4935
4936   return GST_RTSP_OK;
4937
4938   /* ERRORS */
4939 failed:
4940   {
4941     GST_ERROR ("extension gave error %d", res);
4942     return res;
4943   }
4944 no_ports:
4945   {
4946     GST_ERROR ("no more ports available");
4947     return GST_RTSP_ERROR;
4948   }
4949 }
4950
4951 static GstRTSPResult
4952 gst_rtspsrc_prepare_transports (GstRTSPStream * stream, gchar ** transports,
4953     gint orig_rtpport, gint orig_rtcpport)
4954 {
4955   GstRTSPSrc *src;
4956   gint nr_udp, nr_int;
4957   gchar *next, *p;
4958   gint rtpport = 0, rtcpport = 0;
4959   GString *str;
4960
4961   src = stream->parent;
4962
4963   /* find number of placeholders first */
4964   if (strstr (*transports, "%%i2"))
4965     nr_int = 2;
4966   else if (strstr (*transports, "%%i1"))
4967     nr_int = 1;
4968   else
4969     nr_int = 0;
4970
4971   if (strstr (*transports, "%%u2"))
4972     nr_udp = 2;
4973   else if (strstr (*transports, "%%u1"))
4974     nr_udp = 1;
4975   else
4976     nr_udp = 0;
4977
4978   if (nr_udp == 0 && nr_int == 0)
4979     goto done;
4980
4981   if (nr_udp > 0) {
4982     if (!orig_rtpport || !orig_rtcpport) {
4983       if (!gst_rtspsrc_alloc_udp_ports (stream, &rtpport, &rtcpport))
4984         goto failed;
4985     } else {
4986       rtpport = orig_rtpport;
4987       rtcpport = orig_rtcpport;
4988     }
4989   }
4990
4991   str = g_string_new ("");
4992   p = *transports;
4993   while ((next = strstr (p, "%%"))) {
4994     g_string_append_len (str, p, next - p);
4995     if (next[2] == 'u') {
4996       if (next[3] == '1')
4997         g_string_append_printf (str, "%d", rtpport);
4998       else if (next[3] == '2')
4999         g_string_append_printf (str, "%d", rtcpport);
5000     }
5001     if (next[2] == 'i') {
5002       if (next[3] == '1')
5003         g_string_append_printf (str, "%d", src->free_channel);
5004       else if (next[3] == '2')
5005         g_string_append_printf (str, "%d", src->free_channel + 1);
5006     }
5007
5008     p = next + 4;
5009   }
5010   /* append final part */
5011   g_string_append (str, p);
5012
5013   g_free (*transports);
5014   *transports = g_string_free (str, FALSE);
5015
5016 done:
5017   return GST_RTSP_OK;
5018
5019   /* ERRORS */
5020 failed:
5021   {
5022     GST_ERROR ("failed to allocate udp ports");
5023     return GST_RTSP_ERROR;
5024   }
5025 }
5026
5027 static gboolean
5028 gst_rtspsrc_stream_is_real_media (GstRTSPStream * stream)
5029 {
5030   gboolean res = FALSE;
5031
5032   if (stream->caps) {
5033     GstStructure *s;
5034     const gchar *enc = NULL;
5035
5036     s = gst_caps_get_structure (stream->caps, 0);
5037     if ((enc = gst_structure_get_string (s, "encoding-name"))) {
5038       res = (strstr (enc, "-REAL") != NULL);
5039     }
5040   }
5041   return res;
5042 }
5043
5044 /* Perform the SETUP request for all the streams.
5045  *
5046  * We ask the server for a specific transport, which initially includes all the
5047  * ones we can support (UDP/TCP/MULTICAST). For the UDP transport we allocate
5048  * two local UDP ports that we send to the server.
5049  *
5050  * Once the server replied with a transport, we configure the other streams
5051  * with the same transport.
5052  *
5053  * This function will also configure the stream for the selected transport,
5054  * which basically means creating the pipeline.
5055  */
5056 static GstRTSPResult
5057 gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
5058 {
5059   GList *walk;
5060   GstRTSPResult res = GST_RTSP_ERROR;
5061   GstRTSPMessage request = { 0 };
5062   GstRTSPMessage response = { 0 };
5063   GstRTSPStream *stream = NULL;
5064   GstRTSPLowerTrans protocols;
5065   GstRTSPStatusCode code;
5066   gboolean unsupported_real = FALSE;
5067   gint rtpport, rtcpport;
5068   GstRTSPUrl *url;
5069   gchar *hval;
5070
5071   if (src->conninfo.connection) {
5072     url = gst_rtsp_connection_get_url (src->conninfo.connection);
5073     /* we initially allow all configured lower transports. based on the URL
5074      * transports and the replies from the server we narrow them down. */
5075     protocols = url->transports & src->cur_protocols;
5076   } else {
5077     url = NULL;
5078     protocols = src->cur_protocols;
5079   }
5080
5081   if (protocols == 0)
5082     goto no_protocols;
5083
5084   /* reset some state */
5085   src->free_channel = 0;
5086   src->interleaved = FALSE;
5087   src->need_activate = FALSE;
5088   /* keep track of next port number, 0 is random */
5089   src->next_port_num = src->client_port_range.min;
5090   rtpport = rtcpport = 0;
5091
5092   if (G_UNLIKELY (src->streams == NULL))
5093     goto no_streams;
5094
5095   for (walk = src->streams; walk; walk = g_list_next (walk)) {
5096     GstRTSPConnection *conn;
5097     gchar *transports;
5098     gint retry = 0;
5099     guint mask = 0;
5100
5101     stream = (GstRTSPStream *) walk->data;
5102
5103     /* see if we need to configure this stream */
5104     if (!gst_rtsp_ext_list_configure_stream (src->extensions, stream->caps)) {
5105       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by extension",
5106           stream);
5107       stream->disabled = TRUE;
5108       continue;
5109     }
5110
5111     /* merge/overwrite global caps */
5112     if (stream->caps) {
5113       guint j, num;
5114       GstStructure *s;
5115
5116       s = gst_caps_get_structure (stream->caps, 0);
5117
5118       num = gst_structure_n_fields (src->props);
5119       for (j = 0; j < num; j++) {
5120         const gchar *name;
5121         const GValue *val;
5122
5123         name = gst_structure_nth_field_name (src->props, j);
5124         val = gst_structure_get_value (src->props, name);
5125         gst_structure_set_value (s, name, val);
5126
5127         GST_DEBUG_OBJECT (src, "copied %s", name);
5128       }
5129     }
5130
5131     /* skip setup if we have no URL for it */
5132     if (stream->conninfo.location == NULL) {
5133       GST_DEBUG_OBJECT (src, "skipping stream %p, no setup", stream);
5134       continue;
5135     }
5136
5137     if (src->conninfo.connection == NULL) {
5138       if (!gst_rtsp_conninfo_connect (src, &stream->conninfo, async)) {
5139         GST_DEBUG_OBJECT (src, "skipping stream %p, failed to connect", stream);
5140         continue;
5141       }
5142       conn = stream->conninfo.connection;
5143     } else {
5144       conn = src->conninfo.connection;
5145     }
5146     GST_DEBUG_OBJECT (src, "doing setup of stream %p with %s", stream,
5147         stream->conninfo.location);
5148
5149     /* if we have a multicast connection, only suggest multicast from now on */
5150     if (stream->is_multicast)
5151       protocols &= GST_RTSP_LOWER_TRANS_UDP_MCAST;
5152
5153   next_protocol:
5154     /* first selectable protocol */
5155     while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
5156       mask++;
5157     if (!protocol_masks[mask])
5158       goto no_protocols;
5159
5160   retry:
5161     GST_DEBUG_OBJECT (src, "protocols = 0x%x, protocol mask = 0x%x", protocols,
5162         protocol_masks[mask]);
5163     /* create a string with first transport in line */
5164     transports = NULL;
5165     res = gst_rtspsrc_create_transports_string (src,
5166         protocols & protocol_masks[mask], &transports);
5167     if (res < 0 || transports == NULL)
5168       goto setup_transport_failed;
5169
5170     if (strlen (transports) == 0) {
5171       g_free (transports);
5172       GST_DEBUG_OBJECT (src, "no transports found");
5173       mask++;
5174       goto next_protocol;
5175     }
5176
5177     GST_DEBUG_OBJECT (src, "replace ports in %s", GST_STR_NULL (transports));
5178
5179     /* replace placeholders with real values, this function will optionally
5180      * allocate UDP ports and other info needed to execute the setup request */
5181     res = gst_rtspsrc_prepare_transports (stream, &transports,
5182         retry > 0 ? rtpport : 0, retry > 0 ? rtcpport : 0);
5183     if (res < 0) {
5184       g_free (transports);
5185       goto setup_transport_failed;
5186     }
5187
5188     GST_DEBUG_OBJECT (src, "transport is now %s", GST_STR_NULL (transports));
5189
5190     /* create SETUP request */
5191     res =
5192         gst_rtsp_message_init_request (&request, GST_RTSP_SETUP,
5193         stream->conninfo.location);
5194     if (res < 0) {
5195       g_free (transports);
5196       goto create_request_failed;
5197     }
5198
5199     /* select transport, copy is made when adding to header so we can free it. */
5200     gst_rtsp_message_add_header (&request, GST_RTSP_HDR_TRANSPORT, transports);
5201     g_free (transports);
5202
5203     /* if the user wants a non default RTP packet size we add the blocksize
5204      * parameter */
5205     if (src->rtp_blocksize > 0) {
5206       hval = g_strdup_printf ("%d", src->rtp_blocksize);
5207       gst_rtsp_message_add_header (&request, GST_RTSP_HDR_BLOCKSIZE, hval);
5208       g_free (hval);
5209     }
5210
5211     if (async)
5212       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("SETUP stream %d",
5213               stream->id));
5214
5215     /* handle the code ourselves */
5216     if ((res = gst_rtspsrc_send (src, conn, &request, &response, &code) < 0))
5217       goto send_error;
5218
5219     switch (code) {
5220       case GST_RTSP_STS_OK:
5221         break;
5222       case GST_RTSP_STS_UNSUPPORTED_TRANSPORT:
5223         gst_rtsp_message_unset (&request);
5224         gst_rtsp_message_unset (&response);
5225         /* cleanup of leftover transport */
5226         gst_rtspsrc_stream_free_udp (stream);
5227         /* MS WMServer RTSP MUST use same UDP pair in all SETUP requests;
5228          * we might be in this case */
5229         if (stream->container && rtpport && rtcpport && !retry) {
5230           GST_DEBUG_OBJECT (src, "retrying with original port pair %u-%u",
5231               rtpport, rtcpport);
5232           retry++;
5233           goto retry;
5234         }
5235         /* this transport did not go down well, but we may have others to try
5236          * that we did not send yet, try those and only give up then
5237          * but not without checking for lost cause/extension so we can
5238          * post a nicer/more useful error message later */
5239         if (!unsupported_real)
5240           unsupported_real = gst_rtspsrc_stream_is_real_media (stream);
5241         /* select next available protocol, give up on this stream if none */
5242         mask++;
5243         while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
5244           mask++;
5245         if (!protocol_masks[mask] || unsupported_real)
5246           continue;
5247         else
5248           goto retry;
5249       default:
5250         /* cleanup of leftover transport and move to the next stream */
5251         gst_rtspsrc_stream_free_udp (stream);
5252         goto response_error;
5253     }
5254
5255     /* parse response transport */
5256     {
5257       gchar *resptrans = NULL;
5258       GstRTSPTransport transport = { 0 };
5259
5260       gst_rtsp_message_get_header (&response, GST_RTSP_HDR_TRANSPORT,
5261           &resptrans, 0);
5262       if (!resptrans) {
5263         gst_rtspsrc_stream_free_udp (stream);
5264         goto no_transport;
5265       }
5266
5267       /* parse transport, go to next stream on parse error */
5268       if (gst_rtsp_transport_parse (resptrans, &transport) != GST_RTSP_OK) {
5269         GST_WARNING_OBJECT (src, "failed to parse transport %s", resptrans);
5270         goto next;
5271       }
5272
5273       /* update allowed transports for other streams. once the transport of
5274        * one stream has been determined, we make sure that all other streams
5275        * are configured in the same way */
5276       switch (transport.lower_transport) {
5277         case GST_RTSP_LOWER_TRANS_TCP:
5278           GST_DEBUG_OBJECT (src, "stream %p as TCP interleaved", stream);
5279           protocols = GST_RTSP_LOWER_TRANS_TCP;
5280           src->interleaved = TRUE;
5281           /* update free channels */
5282           src->free_channel =
5283               MAX (transport.interleaved.min, src->free_channel);
5284           src->free_channel =
5285               MAX (transport.interleaved.max, src->free_channel);
5286           src->free_channel++;
5287           break;
5288         case GST_RTSP_LOWER_TRANS_UDP_MCAST:
5289           /* only allow multicast for other streams */
5290           GST_DEBUG_OBJECT (src, "stream %p as UDP multicast", stream);
5291           protocols = GST_RTSP_LOWER_TRANS_UDP_MCAST;
5292           /* if the server selected our ports, increment our counters so that
5293            * we select a new port later */
5294           if (src->next_port_num == transport.port.min &&
5295               src->next_port_num + 1 == transport.port.max) {
5296             src->next_port_num += 2;
5297           }
5298           break;
5299         case GST_RTSP_LOWER_TRANS_UDP:
5300           /* only allow unicast for other streams */
5301           GST_DEBUG_OBJECT (src, "stream %p as UDP unicast", stream);
5302           protocols = GST_RTSP_LOWER_TRANS_UDP;
5303           break;
5304         default:
5305           GST_DEBUG_OBJECT (src, "stream %p unknown transport %d", stream,
5306               transport.lower_transport);
5307           break;
5308       }
5309
5310       if (!stream->container || (!src->interleaved && !retry)) {
5311         /* now configure the stream with the selected transport */
5312         if (!gst_rtspsrc_stream_configure_transport (stream, &transport)) {
5313           GST_DEBUG_OBJECT (src,
5314               "could not configure stream %p transport, skipping stream",
5315               stream);
5316           goto next;
5317         } else if (stream->udpsrc[0] && stream->udpsrc[1]) {
5318           /* retain the first allocated UDP port pair */
5319           g_object_get (G_OBJECT (stream->udpsrc[0]), "port", &rtpport, NULL);
5320           g_object_get (G_OBJECT (stream->udpsrc[1]), "port", &rtcpport, NULL);
5321         }
5322       }
5323       /* we need to activate at least one streams when we detect activity */
5324       src->need_activate = TRUE;
5325     next:
5326       /* clean up our transport struct */
5327       gst_rtsp_transport_init (&transport);
5328       /* clean up used RTSP messages */
5329       gst_rtsp_message_unset (&request);
5330       gst_rtsp_message_unset (&response);
5331     }
5332   }
5333
5334   /* store the transport protocol that was configured */
5335   src->cur_protocols = protocols;
5336
5337   gst_rtsp_ext_list_stream_select (src->extensions, url);
5338
5339   /* if there is nothing to activate, error out */
5340   if (!src->need_activate)
5341     goto nothing_to_activate;
5342
5343   return res;
5344
5345   /* ERRORS */
5346 no_protocols:
5347   {
5348     /* no transport possible, post an error and stop */
5349     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5350         ("Could not connect to server, no protocols left"));
5351     return GST_RTSP_ERROR;
5352   }
5353 no_streams:
5354   {
5355     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
5356         ("SDP contains no streams"));
5357     return GST_RTSP_ERROR;
5358   }
5359 create_request_failed:
5360   {
5361     gchar *str = gst_rtsp_strresult (res);
5362
5363     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
5364         ("Could not create request. (%s)", str));
5365     g_free (str);
5366     goto cleanup_error;
5367   }
5368 setup_transport_failed:
5369   {
5370     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
5371         ("Could not setup transport."));
5372     res = GST_RTSP_ERROR;
5373     goto cleanup_error;
5374   }
5375 response_error:
5376   {
5377     const gchar *str = gst_rtsp_status_as_text (code);
5378
5379     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5380         ("Error (%d): %s", code, GST_STR_NULL (str)));
5381     res = GST_RTSP_ERROR;
5382     goto cleanup_error;
5383   }
5384 send_error:
5385   {
5386     gchar *str = gst_rtsp_strresult (res);
5387
5388     if (res != GST_RTSP_EINTR) {
5389       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5390           ("Could not send message. (%s)", str));
5391     } else {
5392       GST_WARNING_OBJECT (src, "send interrupted");
5393     }
5394     g_free (str);
5395     goto cleanup_error;
5396   }
5397 no_transport:
5398   {
5399     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
5400         ("Server did not select transport."));
5401     res = GST_RTSP_ERROR;
5402     goto cleanup_error;
5403   }
5404 nothing_to_activate:
5405   {
5406     /* none of the available error codes is really right .. */
5407     if (unsupported_real) {
5408       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
5409           (_("No supported stream was found. You might need to install a "
5410                   "GStreamer RTSP extension plugin for Real media streams.")),
5411           (NULL));
5412     } else {
5413       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
5414           (_("No supported stream was found. You might need to allow "
5415                   "more transport protocols or may otherwise be missing "
5416                   "the right GStreamer RTSP extension plugin.")), (NULL));
5417     }
5418     return GST_RTSP_ERROR;
5419   }
5420 cleanup_error:
5421   {
5422     gst_rtsp_message_unset (&request);
5423     gst_rtsp_message_unset (&response);
5424     return res;
5425   }
5426 }
5427
5428 static gboolean
5429 gst_rtspsrc_parse_range (GstRTSPSrc * src, const gchar * range,
5430     GstSegment * segment)
5431 {
5432   gint64 seconds;
5433   GstRTSPTimeRange *therange;
5434
5435   if (src->range)
5436     gst_rtsp_range_free (src->range);
5437
5438   if (gst_rtsp_range_parse (range, &therange) == GST_RTSP_OK) {
5439     GST_DEBUG_OBJECT (src, "parsed range %s", range);
5440     src->range = therange;
5441   } else {
5442     GST_DEBUG_OBJECT (src, "failed to parse range %s", range);
5443     src->range = NULL;
5444     gst_segment_init (segment, GST_FORMAT_TIME);
5445     return FALSE;
5446   }
5447
5448   GST_DEBUG_OBJECT (src, "range: type %d, min %f - type %d,  max %f ",
5449       therange->min.type, therange->min.seconds, therange->max.type,
5450       therange->max.seconds);
5451
5452   if (therange->min.type == GST_RTSP_TIME_NOW)
5453     seconds = 0;
5454   else if (therange->min.type == GST_RTSP_TIME_END)
5455     seconds = 0;
5456   else
5457     seconds = therange->min.seconds * GST_SECOND;
5458
5459   GST_DEBUG_OBJECT (src, "range: min %" GST_TIME_FORMAT,
5460       GST_TIME_ARGS (seconds));
5461
5462   /* we need to start playback without clipping from the position reported by
5463    * the server */
5464   segment->start = seconds;
5465   segment->position = seconds;
5466
5467   if (therange->max.type == GST_RTSP_TIME_NOW)
5468     seconds = -1;
5469   else if (therange->max.type == GST_RTSP_TIME_END)
5470     seconds = -1;
5471   else
5472     seconds = therange->max.seconds * GST_SECOND;
5473
5474   GST_DEBUG_OBJECT (src, "range: max %" GST_TIME_FORMAT,
5475       GST_TIME_ARGS (seconds));
5476
5477   /* live (WMS) server might send overflowed large max as its idea of infinity,
5478    * compensate to prevent problems later on */
5479   if (seconds != -1 && seconds < 0) {
5480     seconds = -1;
5481     GST_DEBUG_OBJECT (src, "insane range, set to NONE");
5482   }
5483
5484   /* live (WMS) might send min == max, which is not worth recording */
5485   if (segment->duration == -1 && seconds == segment->start)
5486     seconds = -1;
5487
5488   /* don't change duration with unknown value, we might have a valid value
5489    * there that we want to keep. */
5490   if (seconds != -1)
5491     segment->duration = seconds;
5492
5493   return TRUE;
5494 }
5495
5496 /* must be called with the RTSP state lock */
5497 static GstRTSPResult
5498 gst_rtspsrc_open_from_sdp (GstRTSPSrc * src, GstSDPMessage * sdp,
5499     gboolean async)
5500 {
5501   GstRTSPResult res;
5502   gint i, n_streams;
5503
5504   /* prepare global stream caps properties */
5505   if (src->props)
5506     gst_structure_remove_all_fields (src->props);
5507   else
5508     src->props = gst_structure_new_empty ("RTSPProperties");
5509
5510   if (src->debug)
5511     gst_sdp_message_dump (sdp);
5512
5513   gst_rtsp_ext_list_parse_sdp (src->extensions, sdp, src->props);
5514
5515   gst_segment_init (&src->segment, GST_FORMAT_TIME);
5516
5517   /* parse range for duration reporting. */
5518   {
5519     const gchar *range;
5520
5521     for (i = 0;; i++) {
5522       range = gst_sdp_message_get_attribute_val_n (sdp, "range", i);
5523       if (range == NULL)
5524         break;
5525
5526       /* keep track of the range and configure it in the segment */
5527       if (gst_rtspsrc_parse_range (src, range, &src->segment))
5528         break;
5529     }
5530   }
5531   /* try to find a global control attribute. Note that a '*' means that we should
5532    * do aggregate control with the current url (so we don't do anything and
5533    * leave the current connection as is) */
5534   {
5535     const gchar *control;
5536
5537     for (i = 0;; i++) {
5538       control = gst_sdp_message_get_attribute_val_n (sdp, "control", i);
5539       if (control == NULL)
5540         break;
5541
5542       /* only take fully qualified urls */
5543       if (g_str_has_prefix (control, "rtsp://"))
5544         break;
5545     }
5546     if (control) {
5547       g_free (src->conninfo.location);
5548       src->conninfo.location = g_strdup (control);
5549       /* make a connection for this, if there was a connection already, nothing
5550        * happens. */
5551       if (gst_rtsp_conninfo_connect (src, &src->conninfo, async) < 0) {
5552         GST_ERROR_OBJECT (src, "could not connect");
5553       }
5554     }
5555     /* we need to keep the control url separate from the connection url because
5556      * the rules for constructing the media control url need it */
5557     g_free (src->control);
5558     src->control = g_strdup (control);
5559   }
5560
5561   /* create streams */
5562   n_streams = gst_sdp_message_medias_len (sdp);
5563   for (i = 0; i < n_streams; i++) {
5564     gst_rtspsrc_create_stream (src, sdp, i);
5565   }
5566
5567   src->state = GST_RTSP_STATE_INIT;
5568
5569   /* setup streams */
5570   if ((res = gst_rtspsrc_setup_streams (src, async)) < 0)
5571     goto setup_failed;
5572
5573   /* reset our state */
5574   src->need_range = TRUE;
5575   src->skip = FALSE;
5576
5577   src->state = GST_RTSP_STATE_READY;
5578
5579   return res;
5580
5581   /* ERRORS */
5582 setup_failed:
5583   {
5584     GST_ERROR_OBJECT (src, "setup failed");
5585     gst_rtspsrc_cleanup (src);
5586     return res;
5587   }
5588 }
5589
5590 static GstRTSPResult
5591 gst_rtspsrc_retrieve_sdp (GstRTSPSrc * src, GstSDPMessage ** sdp,
5592     gboolean async)
5593 {
5594   GstRTSPResult res;
5595   GstRTSPMessage request = { 0 };
5596   GstRTSPMessage response = { 0 };
5597   guint8 *data;
5598   guint size;
5599   gchar *respcont = NULL;
5600
5601 restart:
5602   src->need_redirect = FALSE;
5603
5604   /* can't continue without a valid url */
5605   if (G_UNLIKELY (src->conninfo.url == NULL)) {
5606     res = GST_RTSP_EINVAL;
5607     goto no_url;
5608   }
5609   src->tried_url_auth = FALSE;
5610
5611   if ((res = gst_rtsp_conninfo_connect (src, &src->conninfo, async)) < 0)
5612     goto connect_failed;
5613
5614   /* create OPTIONS */
5615   GST_DEBUG_OBJECT (src, "create options...");
5616   res =
5617       gst_rtsp_message_init_request (&request, GST_RTSP_OPTIONS,
5618       src->conninfo.url_str);
5619   if (res < 0)
5620     goto create_request_failed;
5621
5622   /* send OPTIONS */
5623   GST_DEBUG_OBJECT (src, "send options...");
5624
5625   if (async)
5626     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving server options"));
5627
5628   if ((res =
5629           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
5630               NULL)) < 0)
5631     goto send_error;
5632
5633   /* parse OPTIONS */
5634   if (!gst_rtspsrc_parse_methods (src, &response))
5635     goto methods_error;
5636
5637   /* create DESCRIBE */
5638   GST_DEBUG_OBJECT (src, "create describe...");
5639   res =
5640       gst_rtsp_message_init_request (&request, GST_RTSP_DESCRIBE,
5641       src->conninfo.url_str);
5642   if (res < 0)
5643     goto create_request_failed;
5644
5645   /* we only accept SDP for now */
5646   gst_rtsp_message_add_header (&request, GST_RTSP_HDR_ACCEPT,
5647       "application/sdp");
5648
5649   /* send DESCRIBE */
5650   GST_DEBUG_OBJECT (src, "send describe...");
5651
5652   if (async)
5653     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving media info"));
5654
5655   if ((res =
5656           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
5657               NULL)) < 0)
5658     goto send_error;
5659
5660   /* we only perform redirect for the describe, currently */
5661   if (src->need_redirect) {
5662     /* close connection, we don't have to send a TEARDOWN yet, ignore the
5663      * result. */
5664     gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
5665
5666     gst_rtsp_message_unset (&request);
5667     gst_rtsp_message_unset (&response);
5668
5669     /* and now retry */
5670     goto restart;
5671   }
5672
5673   /* it could be that the DESCRIBE method was not implemented */
5674   if (!src->methods & GST_RTSP_DESCRIBE)
5675     goto no_describe;
5676
5677   /* check if reply is SDP */
5678   gst_rtsp_message_get_header (&response, GST_RTSP_HDR_CONTENT_TYPE, &respcont,
5679       0);
5680   /* could not be set but since the request returned OK, we assume it
5681    * was SDP, else check it. */
5682   if (respcont) {
5683     if (!g_ascii_strcasecmp (respcont, "application/sdp") == 0)
5684       goto wrong_content_type;
5685   }
5686
5687   /* get message body and parse as SDP */
5688   gst_rtsp_message_get_body (&response, &data, &size);
5689   if (data == NULL || size == 0)
5690     goto no_describe;
5691
5692   GST_DEBUG_OBJECT (src, "parse SDP...");
5693   gst_sdp_message_new (sdp);
5694   gst_sdp_message_parse_buffer (data, size, *sdp);
5695
5696   /* clean up any messages */
5697   gst_rtsp_message_unset (&request);
5698   gst_rtsp_message_unset (&response);
5699
5700   return res;
5701
5702   /* ERRORS */
5703 no_url:
5704   {
5705     GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL),
5706         ("No valid RTSP URL was provided"));
5707     goto cleanup_error;
5708   }
5709 connect_failed:
5710   {
5711     gchar *str = gst_rtsp_strresult (res);
5712
5713     if (res != GST_RTSP_EINTR) {
5714       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
5715           ("Failed to connect. (%s)", str));
5716     } else {
5717       GST_WARNING_OBJECT (src, "connect interrupted");
5718     }
5719     g_free (str);
5720     goto cleanup_error;
5721   }
5722 create_request_failed:
5723   {
5724     gchar *str = gst_rtsp_strresult (res);
5725
5726     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
5727         ("Could not create request. (%s)", str));
5728     g_free (str);
5729     goto cleanup_error;
5730   }
5731 send_error:
5732   {
5733     /* Don't post a message - the rtsp_send method will have
5734      * taken care of it because we passed NULL for the response code */
5735     goto cleanup_error;
5736   }
5737 methods_error:
5738   {
5739     /* error was posted */
5740     res = GST_RTSP_ERROR;
5741     goto cleanup_error;
5742   }
5743 wrong_content_type:
5744   {
5745     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
5746         ("Server does not support SDP, got %s.", respcont));
5747     res = GST_RTSP_ERROR;
5748     goto cleanup_error;
5749   }
5750 no_describe:
5751   {
5752     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
5753         ("Server can not provide an SDP."));
5754     res = GST_RTSP_ERROR;
5755     goto cleanup_error;
5756   }
5757 cleanup_error:
5758   {
5759     if (src->conninfo.connection) {
5760       GST_DEBUG_OBJECT (src, "free connection");
5761       gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
5762     }
5763     gst_rtsp_message_unset (&request);
5764     gst_rtsp_message_unset (&response);
5765     return res;
5766   }
5767 }
5768
5769 static GstRTSPResult
5770 gst_rtspsrc_open (GstRTSPSrc * src, gboolean async)
5771 {
5772   GstRTSPResult ret;
5773
5774   src->methods =
5775       GST_RTSP_SETUP | GST_RTSP_PLAY | GST_RTSP_PAUSE | GST_RTSP_TEARDOWN;
5776
5777   if (src->sdp == NULL) {
5778     if ((ret = gst_rtspsrc_retrieve_sdp (src, &src->sdp, async)) < 0)
5779       goto no_sdp;
5780   }
5781
5782   if ((ret = gst_rtspsrc_open_from_sdp (src, src->sdp, async)) < 0)
5783     goto open_failed;
5784
5785 done:
5786   if (async)
5787     gst_rtspsrc_loop_end_cmd (src, CMD_OPEN, ret);
5788
5789   return ret;
5790
5791   /* ERRORS */
5792 no_sdp:
5793   {
5794     GST_WARNING_OBJECT (src, "can't get sdp");
5795     src->open_error = TRUE;
5796     goto done;
5797   }
5798 open_failed:
5799   {
5800     GST_WARNING_OBJECT (src, "can't setup streaming from sdp");
5801     src->open_error = TRUE;
5802     goto done;
5803   }
5804 }
5805
5806 static GstRTSPResult
5807 gst_rtspsrc_close (GstRTSPSrc * src, gboolean async, gboolean only_close)
5808 {
5809   GstRTSPMessage request = { 0 };
5810   GstRTSPMessage response = { 0 };
5811   GstRTSPResult res = GST_RTSP_OK;
5812   GList *walk;
5813   gchar *control;
5814
5815   GST_DEBUG_OBJECT (src, "TEARDOWN...");
5816
5817   if (src->state < GST_RTSP_STATE_READY) {
5818     GST_DEBUG_OBJECT (src, "not ready, doing cleanup");
5819     goto close;
5820   }
5821
5822   if (only_close)
5823     goto close;
5824
5825   /* construct a control url */
5826   if (src->control)
5827     control = src->control;
5828   else
5829     control = src->conninfo.url_str;
5830
5831   if (!(src->methods & (GST_RTSP_PLAY | GST_RTSP_TEARDOWN)))
5832     goto not_supported;
5833
5834   for (walk = src->streams; walk; walk = g_list_next (walk)) {
5835     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
5836     gchar *setup_url;
5837     GstRTSPConnInfo *info;
5838
5839     /* try aggregate control first but do non-aggregate control otherwise */
5840     if (control)
5841       setup_url = control;
5842     else if ((setup_url = stream->conninfo.location) == NULL)
5843       continue;
5844
5845     if (src->conninfo.connection) {
5846       info = &src->conninfo;
5847     } else if (stream->conninfo.connection) {
5848       info = &stream->conninfo;
5849     } else {
5850       continue;
5851     }
5852     if (!info->connected)
5853       goto next;
5854
5855     /* do TEARDOWN */
5856     res =
5857         gst_rtsp_message_init_request (&request, GST_RTSP_TEARDOWN, setup_url);
5858     if (res < 0)
5859       goto create_request_failed;
5860
5861     if (async)
5862       GST_ELEMENT_PROGRESS (src, CONTINUE, "close", ("Closing stream"));
5863
5864     if ((res =
5865             gst_rtspsrc_send (src, info->connection, &request, &response,
5866                 NULL)) < 0)
5867       goto send_error;
5868
5869     /* FIXME, parse result? */
5870     gst_rtsp_message_unset (&request);
5871     gst_rtsp_message_unset (&response);
5872
5873   next:
5874     /* early exit when we did aggregate control */
5875     if (control)
5876       break;
5877   }
5878
5879 close:
5880   /* close connections */
5881   GST_DEBUG_OBJECT (src, "closing connection...");
5882   gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
5883   for (walk = src->streams; walk; walk = g_list_next (walk)) {
5884     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
5885     gst_rtsp_conninfo_close (src, &stream->conninfo, TRUE);
5886   }
5887
5888   /* cleanup */
5889   gst_rtspsrc_cleanup (src);
5890
5891   src->state = GST_RTSP_STATE_INVALID;
5892
5893   if (async)
5894     gst_rtspsrc_loop_end_cmd (src, CMD_CLOSE, res);
5895
5896   return res;
5897
5898   /* ERRORS */
5899 create_request_failed:
5900   {
5901     gchar *str = gst_rtsp_strresult (res);
5902
5903     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
5904         ("Could not create request. (%s)", str));
5905     g_free (str);
5906     goto close;
5907   }
5908 send_error:
5909   {
5910     gchar *str = gst_rtsp_strresult (res);
5911
5912     gst_rtsp_message_unset (&request);
5913     if (res != GST_RTSP_EINTR) {
5914       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5915           ("Could not send message. (%s)", str));
5916     } else {
5917       GST_WARNING_OBJECT (src, "TEARDOWN interrupted");
5918     }
5919     g_free (str);
5920     goto close;
5921   }
5922 not_supported:
5923   {
5924     GST_DEBUG_OBJECT (src,
5925         "TEARDOWN and PLAY not supported, can't do TEARDOWN");
5926     goto close;
5927   }
5928 }
5929
5930 /* RTP-Info is of the format:
5931  *
5932  * url=<URL>;[seq=<seqbase>;rtptime=<timebase>] [, url=...]
5933  *
5934  * rtptime corresponds to the timestamp for the NPT time given in the header
5935  * seqbase corresponds to the next sequence number we received. This number
5936  * indicates the first seqnum after the seek and should be used to discard
5937  * packets that are from before the seek.
5938  */
5939 static gboolean
5940 gst_rtspsrc_parse_rtpinfo (GstRTSPSrc * src, gchar * rtpinfo)
5941 {
5942   gchar **infos;
5943   gint i, j;
5944
5945   GST_DEBUG_OBJECT (src, "parsing RTP-Info %s", rtpinfo);
5946
5947   infos = g_strsplit (rtpinfo, ",", 0);
5948   for (i = 0; infos[i]; i++) {
5949     gchar **fields;
5950     GstRTSPStream *stream;
5951     gint32 seqbase;
5952     gint64 timebase;
5953
5954     GST_DEBUG_OBJECT (src, "parsing info %s", infos[i]);
5955
5956     /* init values, types of seqbase and timebase are bigger than needed so we
5957      * can store -1 as uninitialized values */
5958     stream = NULL;
5959     seqbase = -1;
5960     timebase = -1;
5961
5962     /* parse url, find stream for url.
5963      * parse seq and rtptime. The seq number should be configured in the rtp
5964      * depayloader or session manager to detect gaps. Same for the rtptime, it
5965      * should be used to create an initial time newsegment. */
5966     fields = g_strsplit (infos[i], ";", 0);
5967     for (j = 0; fields[j]; j++) {
5968       GST_DEBUG_OBJECT (src, "parsing field %s", fields[j]);
5969       /* remove leading whitespace */
5970       fields[j] = g_strchug (fields[j]);
5971       if (g_str_has_prefix (fields[j], "url=")) {
5972         /* get the url and the stream */
5973         stream =
5974             find_stream (src, (fields[j] + 4), (gpointer) find_stream_by_setup);
5975       } else if (g_str_has_prefix (fields[j], "seq=")) {
5976         seqbase = atoi (fields[j] + 4);
5977       } else if (g_str_has_prefix (fields[j], "rtptime=")) {
5978         timebase = g_ascii_strtoll (fields[j] + 8, NULL, 10);
5979       }
5980     }
5981     g_strfreev (fields);
5982     /* now we need to store the values for the caps of the stream */
5983     if (stream != NULL) {
5984       GST_DEBUG_OBJECT (src,
5985           "found stream %p, setting: seqbase %d, timebase %" G_GINT64_FORMAT,
5986           stream, seqbase, timebase);
5987
5988       /* we have a stream, configure detected params */
5989       stream->seqbase = seqbase;
5990       stream->timebase = timebase;
5991     }
5992   }
5993   g_strfreev (infos);
5994
5995   return TRUE;
5996 }
5997
5998 static void
5999 gst_rtspsrc_handle_rtcp_interval (GstRTSPSrc * src, gchar * rtcp)
6000 {
6001   guint64 interval;
6002   GList *walk;
6003
6004   interval = strtoul (rtcp, NULL, 10);
6005   GST_DEBUG_OBJECT (src, "rtcp interval: %" G_GUINT64_FORMAT " ms", interval);
6006
6007   if (!interval)
6008     return;
6009
6010   interval *= GST_MSECOND;
6011
6012   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6013     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
6014
6015     /* already (optionally) retrieved this when configuring manager */
6016     if (stream->session) {
6017       GObject *rtpsession = stream->session;
6018
6019       GST_DEBUG_OBJECT (src, "configure rtcp interval in session %p",
6020           rtpsession);
6021       g_object_set (rtpsession, "rtcp-min-interval", interval, NULL);
6022     }
6023   }
6024
6025   /* now it happens that (Xenon) server sending this may also provide bogus
6026    * RTCP SR sync data (i.e. with quite some jitter), so never mind those
6027    * and just use RTP-Info to sync */
6028   if (src->manager) {
6029     GObjectClass *klass;
6030
6031     klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
6032     if (g_object_class_find_property (klass, "rtcp-sync")) {
6033       GST_DEBUG_OBJECT (src, "configuring rtp sync method");
6034       g_object_set (src->manager, "rtcp-sync", RTCP_SYNC_RTP, NULL);
6035     }
6036   }
6037 }
6038
6039 static gdouble
6040 gst_rtspsrc_get_float (const gchar * dstr)
6041 {
6042   gchar s[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
6043
6044   /* canonicalise floating point string so we can handle float strings
6045    * in the form "24.930" or "24,930" irrespective of the current locale */
6046   g_strlcpy (s, dstr, sizeof (s));
6047   g_strdelimit (s, ",", '.');
6048   return g_ascii_strtod (s, NULL);
6049 }
6050
6051 static gchar *
6052 gen_range_header (GstRTSPSrc * src, GstSegment * segment)
6053 {
6054   gchar val_str[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
6055
6056   if (src->range && src->range->min.type == GST_RTSP_TIME_NOW) {
6057     g_strlcpy (val_str, "now", sizeof (val_str));
6058   } else {
6059     if (segment->position == 0) {
6060       g_strlcpy (val_str, "0", sizeof (val_str));
6061     } else {
6062       g_ascii_dtostr (val_str, sizeof (val_str),
6063           ((gdouble) segment->position) / GST_SECOND);
6064     }
6065   }
6066   return g_strdup_printf ("npt=%s-", val_str);
6067 }
6068
6069 static void
6070 clear_rtp_base (GstRTSPSrc * src, GstRTSPStream * stream)
6071 {
6072   stream->timebase = -1;
6073   stream->seqbase = -1;
6074   if (stream->caps) {
6075     GstStructure *s;
6076
6077     stream->caps = gst_caps_make_writable (stream->caps);
6078     s = gst_caps_get_structure (stream->caps, 0);
6079     gst_structure_remove_fields (s, "clock-base", "seqnum-base", NULL);
6080   }
6081 }
6082
6083 static GstRTSPResult
6084 gst_rtspsrc_ensure_open (GstRTSPSrc * src, gboolean async)
6085 {
6086   GstRTSPResult res = GST_RTSP_OK;
6087
6088   if (src->state < GST_RTSP_STATE_READY) {
6089     res = GST_RTSP_ERROR;
6090     if (src->open_error) {
6091       GST_DEBUG_OBJECT (src, "the stream was in error");
6092       goto done;
6093     }
6094     if (async)
6095       gst_rtspsrc_loop_start_cmd (src, CMD_OPEN);
6096
6097     if ((res = gst_rtspsrc_open (src, async)) < 0) {
6098       GST_DEBUG_OBJECT (src, "failed to open stream");
6099       goto done;
6100     }
6101   }
6102
6103 done:
6104   return res;
6105 }
6106
6107 static GstRTSPResult
6108 gst_rtspsrc_play (GstRTSPSrc * src, GstSegment * segment, gboolean async)
6109 {
6110   GstRTSPMessage request = { 0 };
6111   GstRTSPMessage response = { 0 };
6112   GstRTSPResult res = GST_RTSP_OK;
6113   GList *walk;
6114   gchar *hval;
6115   gint hval_idx;
6116   gchar *control;
6117
6118   GST_DEBUG_OBJECT (src, "PLAY...");
6119
6120   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
6121     goto open_failed;
6122
6123   if (!(src->methods & GST_RTSP_PLAY))
6124     goto not_supported;
6125
6126   if (src->state == GST_RTSP_STATE_PLAYING)
6127     goto was_playing;
6128
6129   if (!src->conninfo.connection || !src->conninfo.connected)
6130     goto done;
6131
6132   /* send some dummy packets before we activate the receive in the
6133    * udp sources */
6134   gst_rtspsrc_send_dummy_packets (src);
6135
6136   /* activate receive elements;
6137    * only in async case, since receive elements may not have been affected
6138    * by overall state change (e.g. not around yet),
6139    * do not mess with state in sync case (e.g. seeking) */
6140   if (async)
6141     gst_element_set_state (GST_ELEMENT_CAST (src), GST_STATE_PLAYING);
6142
6143   /* construct a control url */
6144   if (src->control)
6145     control = src->control;
6146   else
6147     control = src->conninfo.url_str;
6148
6149   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6150     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
6151     gchar *setup_url;
6152     GstRTSPConnection *conn;
6153
6154     /* try aggregate control first but do non-aggregate control otherwise */
6155     if (control)
6156       setup_url = control;
6157     else if ((setup_url = stream->conninfo.location) == NULL)
6158       continue;
6159
6160     if (src->conninfo.connection) {
6161       conn = src->conninfo.connection;
6162     } else if (stream->conninfo.connection) {
6163       conn = stream->conninfo.connection;
6164     } else {
6165       continue;
6166     }
6167
6168     /* do play */
6169     res = gst_rtsp_message_init_request (&request, GST_RTSP_PLAY, setup_url);
6170     if (res < 0)
6171       goto create_request_failed;
6172
6173     if (src->need_range) {
6174       hval = gen_range_header (src, segment);
6175
6176       gst_rtsp_message_add_header (&request, GST_RTSP_HDR_RANGE, hval);
6177       g_free (hval);
6178     }
6179
6180     if (segment->rate != 1.0) {
6181       gchar hval[G_ASCII_DTOSTR_BUF_SIZE];
6182
6183       g_ascii_dtostr (hval, sizeof (hval), segment->rate);
6184       if (src->skip)
6185         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SCALE, hval);
6186       else
6187         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SPEED, hval);
6188     }
6189
6190     if (async)
6191       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("Sending PLAY request"));
6192
6193     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
6194       goto send_error;
6195
6196     /* seek may have silently failed as it is not supported */
6197     if (!(src->methods & GST_RTSP_PLAY)) {
6198       GST_DEBUG_OBJECT (src, "PLAY Range not supported; re-enable PLAY");
6199       /* obviously it is supported as we made it here */
6200       src->methods |= GST_RTSP_PLAY;
6201       src->seekable = FALSE;
6202       /* but there is nothing to parse in the response,
6203        * so convey we have no idea and not to expect anything particular */
6204       clear_rtp_base (src, stream);
6205       if (control) {
6206         GList *run;
6207
6208         /* need to do for all streams */
6209         for (run = src->streams; run; run = g_list_next (run))
6210           clear_rtp_base (src, (GstRTSPStream *) run->data);
6211       }
6212       /* NOTE the above also disables npt based eos detection */
6213       /* and below forces position to 0,
6214        * which is visible feedback we lost the plot */
6215       segment->start = segment->position = src->last_pos;
6216     }
6217
6218     gst_rtsp_message_unset (&request);
6219
6220     /* parse RTP npt field. This is the current position in the stream (Normal
6221      * Play Time) and should be put in the NEWSEGMENT position field. */
6222     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RANGE, &hval,
6223             0) == GST_RTSP_OK)
6224       gst_rtspsrc_parse_range (src, hval, segment);
6225
6226     /* assume 1.0 rate now, overwrite when the SCALE or SPEED headers are present. */
6227     segment->rate = 1.0;
6228
6229     /* parse Speed header. This is the intended playback rate of the stream
6230      * and should be put in the NEWSEGMENT rate field. */
6231     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SPEED, &hval,
6232             0) == GST_RTSP_OK) {
6233       segment->rate = gst_rtspsrc_get_float (hval);
6234     } else if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SCALE,
6235             &hval, 0) == GST_RTSP_OK) {
6236       segment->rate = gst_rtspsrc_get_float (hval);
6237     }
6238
6239     /* parse the RTP-Info header field (if ANY) to get the base seqnum and timestamp
6240      * for the RTP packets. If this is not present, we assume all starts from 0...
6241      * This is info for the RTP session manager that we pass to it in caps. */
6242     hval_idx = 0;
6243     while (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTP_INFO,
6244             &hval, hval_idx++) == GST_RTSP_OK)
6245       gst_rtspsrc_parse_rtpinfo (src, hval);
6246
6247     /* some servers indicate RTCP parameters in PLAY response,
6248      * rather than properly in SDP */
6249     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTCP_INTERVAL,
6250             &hval, 0) == GST_RTSP_OK)
6251       gst_rtspsrc_handle_rtcp_interval (src, hval);
6252
6253     gst_rtsp_message_unset (&response);
6254
6255     /* early exit when we did aggregate control */
6256     if (control)
6257       break;
6258   }
6259   /* configure the caps of the streams after we parsed all headers. Only reset
6260    * the manager object when we set a new Range header (we did a seek) */
6261   gst_rtspsrc_configure_caps (src, segment, src->need_range);
6262
6263   /* set again when needed */
6264   src->need_range = FALSE;
6265
6266   src->running = TRUE;
6267   src->base_time = -1;
6268   src->state = GST_RTSP_STATE_PLAYING;
6269
6270   /* mark discont */
6271   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
6272   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6273     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
6274     stream->discont = TRUE;
6275   }
6276
6277 done:
6278   if (async)
6279     gst_rtspsrc_loop_end_cmd (src, CMD_PLAY, res);
6280
6281   return res;
6282
6283   /* ERRORS */
6284 open_failed:
6285   {
6286     GST_DEBUG_OBJECT (src, "failed to open stream");
6287     goto done;
6288   }
6289 not_supported:
6290   {
6291     GST_DEBUG_OBJECT (src, "PLAY is not supported");
6292     goto done;
6293   }
6294 was_playing:
6295   {
6296     GST_DEBUG_OBJECT (src, "we were already PLAYING");
6297     goto done;
6298   }
6299 create_request_failed:
6300   {
6301     gchar *str = gst_rtsp_strresult (res);
6302
6303     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6304         ("Could not create request. (%s)", str));
6305     g_free (str);
6306     goto done;
6307   }
6308 send_error:
6309   {
6310     gchar *str = gst_rtsp_strresult (res);
6311
6312     gst_rtsp_message_unset (&request);
6313     if (res != GST_RTSP_EINTR) {
6314       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6315           ("Could not send message. (%s)", str));
6316     } else {
6317       GST_WARNING_OBJECT (src, "PLAY interrupted");
6318     }
6319     g_free (str);
6320     goto done;
6321   }
6322 }
6323
6324 static GstRTSPResult
6325 gst_rtspsrc_pause (GstRTSPSrc * src, gboolean async)
6326 {
6327   GstRTSPResult res = GST_RTSP_OK;
6328   GstRTSPMessage request = { 0 };
6329   GstRTSPMessage response = { 0 };
6330   GList *walk;
6331   gchar *control;
6332
6333   GST_DEBUG_OBJECT (src, "PAUSE...");
6334
6335   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
6336     goto open_failed;
6337
6338   if (!(src->methods & GST_RTSP_PAUSE))
6339     goto not_supported;
6340
6341   if (src->state == GST_RTSP_STATE_READY)
6342     goto was_paused;
6343
6344   if (!src->conninfo.connection || !src->conninfo.connected)
6345     goto no_connection;
6346
6347   /* construct a control url */
6348   if (src->control)
6349     control = src->control;
6350   else
6351     control = src->conninfo.url_str;
6352
6353   /* loop over the streams. We might exit the loop early when we could do an
6354    * aggregate control */
6355   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6356     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
6357     GstRTSPConnection *conn;
6358     gchar *setup_url;
6359
6360     /* try aggregate control first but do non-aggregate control otherwise */
6361     if (control)
6362       setup_url = control;
6363     else if ((setup_url = stream->conninfo.location) == NULL)
6364       continue;
6365
6366     if (src->conninfo.connection) {
6367       conn = src->conninfo.connection;
6368     } else if (stream->conninfo.connection) {
6369       conn = stream->conninfo.connection;
6370     } else {
6371       continue;
6372     }
6373
6374     if (async)
6375       GST_ELEMENT_PROGRESS (src, CONTINUE, "request",
6376           ("Sending PAUSE request"));
6377
6378     if ((res =
6379             gst_rtsp_message_init_request (&request, GST_RTSP_PAUSE,
6380                 setup_url)) < 0)
6381       goto create_request_failed;
6382
6383     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
6384       goto send_error;
6385
6386     gst_rtsp_message_unset (&request);
6387     gst_rtsp_message_unset (&response);
6388
6389     /* exit early when we did agregate control */
6390     if (control)
6391       break;
6392   }
6393
6394 no_connection:
6395   src->state = GST_RTSP_STATE_READY;
6396
6397 done:
6398   if (async)
6399     gst_rtspsrc_loop_end_cmd (src, CMD_PAUSE, res);
6400
6401   return res;
6402
6403   /* ERRORS */
6404 open_failed:
6405   {
6406     GST_DEBUG_OBJECT (src, "failed to open stream");
6407     goto done;
6408   }
6409 not_supported:
6410   {
6411     GST_DEBUG_OBJECT (src, "PAUSE is not supported");
6412     goto done;
6413   }
6414 was_paused:
6415   {
6416     GST_DEBUG_OBJECT (src, "we were already PAUSED");
6417     goto done;
6418   }
6419 create_request_failed:
6420   {
6421     gchar *str = gst_rtsp_strresult (res);
6422
6423     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6424         ("Could not create request. (%s)", str));
6425     g_free (str);
6426     goto done;
6427   }
6428 send_error:
6429   {
6430     gchar *str = gst_rtsp_strresult (res);
6431
6432     gst_rtsp_message_unset (&request);
6433     if (res != GST_RTSP_EINTR) {
6434       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6435           ("Could not send message. (%s)", str));
6436     } else {
6437       GST_WARNING_OBJECT (src, "PAUSE interrupted");
6438     }
6439     g_free (str);
6440     goto done;
6441   }
6442 }
6443
6444 static void
6445 gst_rtspsrc_handle_message (GstBin * bin, GstMessage * message)
6446 {
6447   GstRTSPSrc *rtspsrc;
6448
6449   rtspsrc = GST_RTSPSRC (bin);
6450
6451   switch (GST_MESSAGE_TYPE (message)) {
6452     case GST_MESSAGE_EOS:
6453       gst_message_unref (message);
6454       break;
6455     case GST_MESSAGE_ELEMENT:
6456     {
6457       const GstStructure *s = gst_message_get_structure (message);
6458
6459       if (gst_structure_has_name (s, "GstUDPSrcTimeout")) {
6460         gboolean ignore_timeout;
6461
6462         GST_DEBUG_OBJECT (bin, "timeout on UDP port");
6463
6464         GST_OBJECT_LOCK (rtspsrc);
6465         ignore_timeout = rtspsrc->ignore_timeout;
6466         rtspsrc->ignore_timeout = TRUE;
6467         GST_OBJECT_UNLOCK (rtspsrc);
6468
6469         /* we only act on the first udp timeout message, others are irrelevant
6470          * and can be ignored. */
6471         if (!ignore_timeout)
6472           gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_RECONNECT, CMD_LOOP);
6473         /* eat and free */
6474         gst_message_unref (message);
6475         return;
6476       }
6477       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
6478       break;
6479     }
6480     case GST_MESSAGE_ERROR:
6481     {
6482       GstObject *udpsrc;
6483       GstRTSPStream *stream;
6484       GstFlowReturn ret;
6485
6486       udpsrc = GST_MESSAGE_SRC (message);
6487
6488       GST_DEBUG_OBJECT (rtspsrc, "got error from %s",
6489           GST_ELEMENT_NAME (udpsrc));
6490
6491       stream = find_stream (rtspsrc, udpsrc, (gpointer) find_stream_by_udpsrc);
6492       if (!stream)
6493         goto forward;
6494
6495       /* we ignore the RTCP udpsrc */
6496       if (stream->udpsrc[1] == GST_ELEMENT_CAST (udpsrc))
6497         goto done;
6498
6499       /* if we get error messages from the udp sources, that's not a problem as
6500        * long as not all of them error out. We also don't really know what the
6501        * problem is, the message does not give enough detail... */
6502       ret = gst_rtspsrc_combine_flows (rtspsrc, stream, GST_FLOW_NOT_LINKED);
6503       GST_DEBUG_OBJECT (rtspsrc, "combined flows: %s", gst_flow_get_name (ret));
6504       if (ret != GST_FLOW_OK)
6505         goto forward;
6506
6507     done:
6508       gst_message_unref (message);
6509       break;
6510
6511     forward:
6512       /* fatal but not our message, forward */
6513       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
6514       break;
6515     }
6516     default:
6517     {
6518       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
6519       break;
6520     }
6521   }
6522 }
6523
6524 /* the thread where everything happens */
6525 static void
6526 gst_rtspsrc_thread (GstRTSPSrc * src)
6527 {
6528   gint cmd;
6529
6530   GST_OBJECT_LOCK (src);
6531   cmd = src->pending_cmd;
6532   if (cmd == CMD_PLAY || cmd == CMD_LOOP)
6533     src->pending_cmd = CMD_LOOP;
6534   else
6535     src->pending_cmd = CMD_WAIT;
6536   GST_DEBUG_OBJECT (src, "got command %d", cmd);
6537
6538   /* we got the message command, so ensure communication is possible again */
6539   gst_rtspsrc_connection_flush (src, FALSE);
6540
6541   src->busy_cmd = cmd;
6542   GST_OBJECT_UNLOCK (src);
6543
6544   switch (cmd) {
6545     case CMD_OPEN:
6546       gst_rtspsrc_open (src, TRUE);
6547       break;
6548     case CMD_PLAY:
6549       gst_rtspsrc_play (src, &src->segment, TRUE);
6550       break;
6551     case CMD_PAUSE:
6552       gst_rtspsrc_pause (src, TRUE);
6553       break;
6554     case CMD_CLOSE:
6555       gst_rtspsrc_close (src, TRUE, FALSE);
6556       break;
6557     case CMD_LOOP:
6558       gst_rtspsrc_loop (src);
6559       break;
6560     case CMD_RECONNECT:
6561       gst_rtspsrc_reconnect (src, FALSE);
6562       break;
6563     default:
6564       break;
6565   }
6566
6567   GST_OBJECT_LOCK (src);
6568   /* and go back to sleep */
6569   if (src->pending_cmd == CMD_WAIT) {
6570     if (src->task)
6571       gst_task_pause (src->task);
6572   }
6573   /* reset waiting */
6574   src->busy_cmd = CMD_WAIT;
6575   GST_OBJECT_UNLOCK (src);
6576 }
6577
6578 static gboolean
6579 gst_rtspsrc_start (GstRTSPSrc * src)
6580 {
6581   GST_DEBUG_OBJECT (src, "starting");
6582
6583   GST_OBJECT_LOCK (src);
6584
6585   src->pending_cmd = CMD_WAIT;
6586
6587   if (src->task == NULL) {
6588     src->task = gst_task_new ((GstTaskFunction) gst_rtspsrc_thread, src, NULL);
6589     if (src->task == NULL)
6590       goto task_error;
6591
6592     gst_task_set_lock (src->task, GST_RTSP_STREAM_GET_LOCK (src));
6593   }
6594   GST_OBJECT_UNLOCK (src);
6595
6596   return TRUE;
6597
6598   /* ERRORS */
6599 task_error:
6600   {
6601     GST_ERROR_OBJECT (src, "failed to create task");
6602     return FALSE;
6603   }
6604 }
6605
6606 static gboolean
6607 gst_rtspsrc_stop (GstRTSPSrc * src)
6608 {
6609   GstTask *task;
6610
6611   GST_DEBUG_OBJECT (src, "stopping");
6612
6613   /* also cancels pending task */
6614   gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_CLOSE);
6615
6616   GST_OBJECT_LOCK (src);
6617   if ((task = src->task)) {
6618     src->task = NULL;
6619     GST_OBJECT_UNLOCK (src);
6620
6621     gst_task_stop (task);
6622
6623     /* make sure it is not running */
6624     GST_RTSP_STREAM_LOCK (src);
6625     GST_RTSP_STREAM_UNLOCK (src);
6626
6627     /* now wait for the task to finish */
6628     gst_task_join (task);
6629
6630     /* and free the task */
6631     gst_object_unref (GST_OBJECT (task));
6632
6633     GST_OBJECT_LOCK (src);
6634   }
6635   GST_OBJECT_UNLOCK (src);
6636
6637   /* ensure synchronously all is closed and clean */
6638   gst_rtspsrc_close (src, FALSE, TRUE);
6639
6640   return TRUE;
6641 }
6642
6643 static GstStateChangeReturn
6644 gst_rtspsrc_change_state (GstElement * element, GstStateChange transition)
6645 {
6646   GstRTSPSrc *rtspsrc;
6647   GstStateChangeReturn ret;
6648
6649   rtspsrc = GST_RTSPSRC (element);
6650
6651   switch (transition) {
6652     case GST_STATE_CHANGE_NULL_TO_READY:
6653       if (!gst_rtspsrc_start (rtspsrc))
6654         goto start_failed;
6655       break;
6656     case GST_STATE_CHANGE_READY_TO_PAUSED:
6657       /* init some state */
6658       rtspsrc->cur_protocols = rtspsrc->protocols;
6659       /* first attempt, don't ignore timeouts */
6660       rtspsrc->ignore_timeout = FALSE;
6661       rtspsrc->open_error = FALSE;
6662       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_OPEN, 0);
6663       break;
6664     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
6665     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
6666       /* unblock the tcp tasks and make the loop waiting */
6667       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_WAIT, CMD_LOOP);
6668       break;
6669     case GST_STATE_CHANGE_PAUSED_TO_READY:
6670       break;
6671     default:
6672       break;
6673   }
6674
6675   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
6676   if (ret == GST_STATE_CHANGE_FAILURE)
6677     goto done;
6678
6679   switch (transition) {
6680     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
6681       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PLAY, 0);
6682       break;
6683     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
6684       /* send pause request and keep the idle task around */
6685       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PAUSE, CMD_LOOP);
6686       ret = GST_STATE_CHANGE_NO_PREROLL;
6687       break;
6688     case GST_STATE_CHANGE_READY_TO_PAUSED:
6689       ret = GST_STATE_CHANGE_NO_PREROLL;
6690       break;
6691     case GST_STATE_CHANGE_PAUSED_TO_READY:
6692       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_CLOSE, CMD_PAUSE);
6693       break;
6694     case GST_STATE_CHANGE_READY_TO_NULL:
6695       gst_rtspsrc_stop (rtspsrc);
6696       break;
6697     default:
6698       break;
6699   }
6700
6701 done:
6702   return ret;
6703
6704 start_failed:
6705   {
6706     GST_DEBUG_OBJECT (rtspsrc, "start failed");
6707     return GST_STATE_CHANGE_FAILURE;
6708   }
6709 }
6710
6711 static gboolean
6712 gst_rtspsrc_send_event (GstElement * element, GstEvent * event)
6713 {
6714   gboolean res;
6715   GstRTSPSrc *rtspsrc;
6716
6717   rtspsrc = GST_RTSPSRC (element);
6718
6719   if (GST_EVENT_IS_DOWNSTREAM (event)) {
6720     res = gst_rtspsrc_push_event (rtspsrc, event);
6721   } else {
6722     res = GST_ELEMENT_CLASS (parent_class)->send_event (element, event);
6723   }
6724
6725   return res;
6726 }
6727
6728
6729 /*** GSTURIHANDLER INTERFACE *************************************************/
6730
6731 static GstURIType
6732 gst_rtspsrc_uri_get_type (GType type)
6733 {
6734   return GST_URI_SRC;
6735 }
6736
6737 static const gchar *const *
6738 gst_rtspsrc_uri_get_protocols (GType type)
6739 {
6740   static const gchar *protocols[] =
6741       { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp", NULL };
6742
6743   return protocols;
6744 }
6745
6746 static gchar *
6747 gst_rtspsrc_uri_get_uri (GstURIHandler * handler)
6748 {
6749   GstRTSPSrc *src = GST_RTSPSRC (handler);
6750
6751   /* FIXME: make thread-safe */
6752   return g_strdup (src->conninfo.location);
6753 }
6754
6755 static gboolean
6756 gst_rtspsrc_uri_set_uri (GstURIHandler * handler, const gchar * uri,
6757     GError ** error)
6758 {
6759   GstRTSPSrc *src;
6760   GstRTSPResult res;
6761   GstRTSPUrl *newurl = NULL;
6762   GstSDPMessage *sdp = NULL;
6763
6764   src = GST_RTSPSRC (handler);
6765
6766   /* same URI, we're fine */
6767   if (src->conninfo.location && uri && !strcmp (uri, src->conninfo.location))
6768     goto was_ok;
6769
6770   if (g_str_has_prefix (uri, "rtsp-sdp://")) {
6771     if ((res = gst_sdp_message_new (&sdp) < 0))
6772       goto sdp_failed;
6773
6774     GST_DEBUG_OBJECT (src, "parsing SDP message");
6775     if ((res = gst_sdp_message_parse_uri (uri, sdp) < 0))
6776       goto invalid_sdp;
6777   } else {
6778     /* try to parse */
6779     GST_DEBUG_OBJECT (src, "parsing URI");
6780     if ((res = gst_rtsp_url_parse (uri, &newurl)) < 0)
6781       goto parse_error;
6782   }
6783
6784   /* if worked, free previous and store new url object along with the original
6785    * location. */
6786   GST_DEBUG_OBJECT (src, "configuring URI");
6787   g_free (src->conninfo.location);
6788   src->conninfo.location = g_strdup (uri);
6789   gst_rtsp_url_free (src->conninfo.url);
6790   src->conninfo.url = newurl;
6791   g_free (src->conninfo.url_str);
6792   if (newurl)
6793     src->conninfo.url_str = gst_rtsp_url_get_request_uri (src->conninfo.url);
6794   else
6795     src->conninfo.url_str = NULL;
6796
6797   if (src->sdp)
6798     gst_sdp_message_free (src->sdp);
6799   src->sdp = sdp;
6800   src->from_sdp = sdp != NULL;
6801
6802   GST_DEBUG_OBJECT (src, "set uri: %s", GST_STR_NULL (uri));
6803   GST_DEBUG_OBJECT (src, "request uri is: %s",
6804       GST_STR_NULL (src->conninfo.url_str));
6805
6806   return TRUE;
6807
6808   /* Special cases */
6809 was_ok:
6810   {
6811     GST_DEBUG_OBJECT (src, "URI was ok: '%s'", GST_STR_NULL (uri));
6812     return TRUE;
6813   }
6814 sdp_failed:
6815   {
6816     GST_ERROR_OBJECT (src, "Could not create new SDP (%d)", res);
6817     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
6818         "Could not create SDP");
6819     return FALSE;
6820   }
6821 invalid_sdp:
6822   {
6823     GST_ERROR_OBJECT (src, "Not a valid SDP (%d) '%s'", res,
6824         GST_STR_NULL (uri));
6825     gst_sdp_message_free (sdp);
6826     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
6827         "Invalid SDP");
6828     return FALSE;
6829   }
6830 parse_error:
6831   {
6832     GST_ERROR_OBJECT (src, "Not a valid RTSP url '%s' (%d)",
6833         GST_STR_NULL (uri), res);
6834     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
6835         "Invalid RTSP URI");
6836     return FALSE;
6837   }
6838 }
6839
6840 static void
6841 gst_rtspsrc_uri_handler_init (gpointer g_iface, gpointer iface_data)
6842 {
6843   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
6844
6845   iface->get_type = gst_rtspsrc_uri_get_type;
6846   iface->get_protocols = gst_rtspsrc_uri_get_protocols;
6847   iface->get_uri = gst_rtspsrc_uri_get_uri;
6848   iface->set_uri = gst_rtspsrc_uri_set_uri;
6849 }