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