rtspsrc: fix container handling
[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_rtspsrc_stream_push_event (src, ostream, gst_event_new_caps (caps));
4587       }
4588     }
4589     g_checksum_free (cs);
4590
4591     gst_rtspsrc_activate_streams (src);
4592     src->need_activate = FALSE;
4593   }
4594
4595   if ((event = src->start_segment) != NULL) {
4596     src->start_segment = NULL;
4597     gst_rtspsrc_push_event (src, event);
4598   }
4599
4600   if (src->base_time == -1) {
4601     /* Take current running_time. This timestamp will be put on
4602      * the first buffer of each stream because we are a live source and so we
4603      * timestamp with the running_time. When we are dealing with TCP, we also
4604      * only timestamp the first buffer (using the DISCONT flag) because a server
4605      * typically bursts data, for which we don't want to compensate by speeding
4606      * up the media. The other timestamps will be interpollated from this one
4607      * using the RTP timestamps. */
4608     GST_OBJECT_LOCK (src);
4609     if (GST_ELEMENT_CLOCK (src)) {
4610       GstClockTime now;
4611       GstClockTime base_time;
4612
4613       now = gst_clock_get_time (GST_ELEMENT_CLOCK (src));
4614       base_time = GST_ELEMENT_CAST (src)->base_time;
4615
4616       src->base_time = now - base_time;
4617
4618       GST_DEBUG_OBJECT (src, "first buffer at time %" GST_TIME_FORMAT ", base %"
4619           GST_TIME_FORMAT, GST_TIME_ARGS (now), GST_TIME_ARGS (base_time));
4620     }
4621     GST_OBJECT_UNLOCK (src);
4622   }
4623
4624   if (stream->discont && !is_rtcp) {
4625     /* mark first RTP buffer as discont */
4626     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4627     stream->discont = FALSE;
4628     /* first buffer gets the timestamp, other buffers are not timestamped and
4629      * their presentation time will be interpollated from the rtp timestamps. */
4630     GST_DEBUG_OBJECT (src, "setting timestamp %" GST_TIME_FORMAT,
4631         GST_TIME_ARGS (src->base_time));
4632
4633     GST_BUFFER_TIMESTAMP (buf) = src->base_time;
4634   }
4635
4636   /* chain to the peer pad */
4637   if (GST_PAD_IS_SINK (outpad))
4638     ret = gst_pad_chain (outpad, buf);
4639   else
4640     ret = gst_pad_push (outpad, buf);
4641
4642   if (!is_rtcp) {
4643     /* combine all stream flows for the data transport */
4644     ret = gst_rtspsrc_combine_flows (src, stream, ret);
4645   }
4646   return ret;
4647
4648   /* ERRORS */
4649 unknown_stream:
4650   {
4651     GST_DEBUG_OBJECT (src, "unknown stream on channel %d, ignored", channel);
4652     gst_rtsp_message_unset (message);
4653     return GST_FLOW_OK;
4654   }
4655 invalid_length:
4656   {
4657     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4658         ("Short message received, ignoring."));
4659     gst_rtsp_message_unset (message);
4660     return GST_FLOW_OK;
4661   }
4662 }
4663
4664 static GstFlowReturn
4665 gst_rtspsrc_loop_interleaved (GstRTSPSrc * src)
4666 {
4667   GstRTSPMessage message = { 0 };
4668   GstRTSPResult res;
4669   GstFlowReturn ret = GST_FLOW_OK;
4670   GTimeVal tv_timeout;
4671
4672   while (TRUE) {
4673     /* get the next timeout interval */
4674     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4675
4676     /* see if the timeout period expired */
4677     if ((tv_timeout.tv_sec | tv_timeout.tv_usec) == 0) {
4678       GST_DEBUG_OBJECT (src, "timout, sending keep-alive");
4679       /* send keep-alive, only act on interrupt, a warning will be posted for
4680        * other errors. */
4681       if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4682         goto interrupt;
4683       /* get new timeout */
4684       gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4685     }
4686
4687     GST_DEBUG_OBJECT (src, "doing receive with timeout %ld seconds, %ld usec",
4688         tv_timeout.tv_sec, tv_timeout.tv_usec);
4689
4690     /* protect the connection with the connection lock so that we can see when
4691      * we are finished doing server communication */
4692     res =
4693         gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4694         &message, src->ptcp_timeout);
4695
4696     switch (res) {
4697       case GST_RTSP_OK:
4698         GST_DEBUG_OBJECT (src, "we received a server message");
4699         break;
4700       case GST_RTSP_EINTR:
4701         /* we got interrupted this means we need to stop */
4702         goto interrupt;
4703       case GST_RTSP_ETIMEOUT:
4704         /* no reply, send keep alive */
4705         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4706         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4707           goto interrupt;
4708         continue;
4709       case GST_RTSP_EEOF:
4710         /* go EOS when the server closed the connection */
4711         goto server_eof;
4712       default:
4713         goto receive_error;
4714     }
4715
4716     switch (message.type) {
4717       case GST_RTSP_MESSAGE_REQUEST:
4718         /* server sends us a request message, handle it */
4719         res =
4720             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4721             &message);
4722         if (res == GST_RTSP_EEOF)
4723           goto server_eof;
4724         else if (res < 0)
4725           goto handle_request_failed;
4726         break;
4727       case GST_RTSP_MESSAGE_RESPONSE:
4728         /* we ignore response messages */
4729         GST_DEBUG_OBJECT (src, "ignoring response message");
4730         if (src->debug)
4731           gst_rtsp_message_dump (&message);
4732         break;
4733       case GST_RTSP_MESSAGE_DATA:
4734         GST_DEBUG_OBJECT (src, "got data message");
4735         ret = gst_rtspsrc_handle_data (src, &message);
4736         if (ret != GST_FLOW_OK)
4737           goto handle_data_failed;
4738         break;
4739       default:
4740         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4741             message.type);
4742         break;
4743     }
4744   }
4745   g_assert_not_reached ();
4746
4747   /* ERRORS */
4748 server_eof:
4749   {
4750     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4751     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4752         ("The server closed the connection."));
4753     src->conninfo.connected = FALSE;
4754     gst_rtsp_message_unset (&message);
4755     return GST_FLOW_EOS;
4756   }
4757 interrupt:
4758   {
4759     gst_rtsp_message_unset (&message);
4760     GST_DEBUG_OBJECT (src, "got interrupted");
4761     return GST_FLOW_FLUSHING;
4762   }
4763 receive_error:
4764   {
4765     gchar *str = gst_rtsp_strresult (res);
4766
4767     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4768         ("Could not receive message. (%s)", str));
4769     g_free (str);
4770
4771     gst_rtsp_message_unset (&message);
4772     return GST_FLOW_ERROR;
4773   }
4774 handle_request_failed:
4775   {
4776     gchar *str = gst_rtsp_strresult (res);
4777
4778     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4779         ("Could not handle server message. (%s)", str));
4780     g_free (str);
4781     gst_rtsp_message_unset (&message);
4782     return GST_FLOW_ERROR;
4783   }
4784 handle_data_failed:
4785   {
4786     GST_DEBUG_OBJECT (src, "could no handle data message");
4787     return ret;
4788   }
4789 }
4790
4791 static GstFlowReturn
4792 gst_rtspsrc_loop_udp (GstRTSPSrc * src)
4793 {
4794   GstRTSPResult res;
4795   GstRTSPMessage message = { 0 };
4796   gint retry = 0;
4797
4798   while (TRUE) {
4799     GTimeVal tv_timeout;
4800
4801     /* get the next timeout interval */
4802     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4803
4804     GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
4805         (gint) tv_timeout.tv_sec);
4806
4807     gst_rtsp_message_unset (&message);
4808
4809     /* we should continue reading the TCP socket because the server might
4810      * send us requests. When the session timeout expires, we need to send a
4811      * keep-alive request to keep the session open. */
4812     res = gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4813         &message, &tv_timeout);
4814
4815     switch (res) {
4816       case GST_RTSP_OK:
4817         GST_DEBUG_OBJECT (src, "we received a server message");
4818         break;
4819       case GST_RTSP_EINTR:
4820         /* we got interrupted, see what we have to do */
4821         goto interrupt;
4822       case GST_RTSP_ETIMEOUT:
4823         /* send keep-alive, ignore the result, a warning will be posted. */
4824         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4825         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4826           goto interrupt;
4827         continue;
4828       case GST_RTSP_EEOF:
4829         /* server closed the connection. not very fatal for UDP, reconnect and
4830          * see what happens. */
4831         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4832             ("The server closed the connection."));
4833         if (src->udp_reconnect) {
4834           if ((res =
4835                   gst_rtsp_conninfo_reconnect (src, &src->conninfo, FALSE)) < 0)
4836             goto connect_error;
4837         } else {
4838           goto server_eof;
4839         }
4840         continue;
4841       case GST_RTSP_ENET:
4842         GST_DEBUG_OBJECT (src, "An ethernet problem occured.");
4843       default:
4844         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4845             ("Unhandled return value %d.", res));
4846         goto receive_error;
4847     }
4848
4849     switch (message.type) {
4850       case GST_RTSP_MESSAGE_REQUEST:
4851         /* server sends us a request message, handle it */
4852         res =
4853             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4854             &message);
4855         if (res == GST_RTSP_EEOF)
4856           goto server_eof;
4857         else if (res < 0)
4858           goto handle_request_failed;
4859         break;
4860       case GST_RTSP_MESSAGE_RESPONSE:
4861         /* we ignore response and data messages */
4862         GST_DEBUG_OBJECT (src, "ignoring response message");
4863         if (src->debug)
4864           gst_rtsp_message_dump (&message);
4865         if (message.type_data.response.code == GST_RTSP_STS_UNAUTHORIZED) {
4866           GST_DEBUG_OBJECT (src, "but is Unauthorized response ...");
4867           if (gst_rtspsrc_setup_auth (src, &message) && !(retry++)) {
4868             GST_DEBUG_OBJECT (src, "so retrying keep-alive");
4869             if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4870               goto interrupt;
4871           }
4872         } else {
4873           retry = 0;
4874         }
4875         break;
4876       case GST_RTSP_MESSAGE_DATA:
4877         /* we ignore response and data messages */
4878         GST_DEBUG_OBJECT (src, "ignoring data message");
4879         break;
4880       default:
4881         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4882             message.type);
4883         break;
4884     }
4885   }
4886   g_assert_not_reached ();
4887
4888   /* we get here when the connection got interrupted */
4889 interrupt:
4890   {
4891     gst_rtsp_message_unset (&message);
4892     GST_DEBUG_OBJECT (src, "got interrupted");
4893     return GST_FLOW_FLUSHING;
4894   }
4895 connect_error:
4896   {
4897     gchar *str = gst_rtsp_strresult (res);
4898     GstFlowReturn ret;
4899
4900     src->conninfo.connected = FALSE;
4901     if (res != GST_RTSP_EINTR) {
4902       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
4903           ("Could not connect to server. (%s)", str));
4904       g_free (str);
4905       ret = GST_FLOW_ERROR;
4906     } else {
4907       ret = GST_FLOW_FLUSHING;
4908     }
4909     return ret;
4910   }
4911 receive_error:
4912   {
4913     gchar *str = gst_rtsp_strresult (res);
4914
4915     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4916         ("Could not receive message. (%s)", str));
4917     g_free (str);
4918     return GST_FLOW_ERROR;
4919   }
4920 handle_request_failed:
4921   {
4922     gchar *str = gst_rtsp_strresult (res);
4923     GstFlowReturn ret;
4924
4925     gst_rtsp_message_unset (&message);
4926     if (res != GST_RTSP_EINTR) {
4927       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4928           ("Could not handle server message. (%s)", str));
4929       g_free (str);
4930       ret = GST_FLOW_ERROR;
4931     } else {
4932       ret = GST_FLOW_FLUSHING;
4933     }
4934     return ret;
4935   }
4936 server_eof:
4937   {
4938     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4939     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4940         ("The server closed the connection."));
4941     src->conninfo.connected = FALSE;
4942     gst_rtsp_message_unset (&message);
4943     return GST_FLOW_EOS;
4944   }
4945 }
4946
4947 static GstRTSPResult
4948 gst_rtspsrc_reconnect (GstRTSPSrc * src, gboolean async)
4949 {
4950   GstRTSPResult res = GST_RTSP_OK;
4951   gboolean restart;
4952
4953   GST_DEBUG_OBJECT (src, "doing reconnect");
4954
4955   GST_OBJECT_LOCK (src);
4956   /* only restart when the pads were not yet activated, else we were
4957    * streaming over UDP */
4958   restart = src->need_activate;
4959   GST_OBJECT_UNLOCK (src);
4960
4961   /* no need to restart, we're done */
4962   if (!restart)
4963     goto done;
4964
4965   /* we can try only TCP now */
4966   src->cur_protocols = GST_RTSP_LOWER_TRANS_TCP;
4967
4968   /* close and cleanup our state */
4969   if ((res = gst_rtspsrc_close (src, async, FALSE)) < 0)
4970     goto done;
4971
4972   /* see if we have TCP left to try. Also don't try TCP when we were configured
4973    * with an SDP. */
4974   if (!(src->protocols & GST_RTSP_LOWER_TRANS_TCP) || src->from_sdp)
4975     goto no_protocols;
4976
4977   /* We post a warning message now to inform the user
4978    * that nothing happened. It's most likely a firewall thing. */
4979   GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4980       ("Could not receive any UDP packets for %.4f seconds, maybe your "
4981           "firewall is blocking it. Retrying using a TCP connection.",
4982           gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
4983
4984   /* open new connection using tcp */
4985   if (gst_rtspsrc_open (src, async) < 0)
4986     goto open_failed;
4987
4988   /* start playback */
4989   if (gst_rtspsrc_play (src, &src->segment, async) < 0)
4990     goto play_failed;
4991
4992 done:
4993   return res;
4994
4995   /* ERRORS */
4996 no_protocols:
4997   {
4998     src->cur_protocols = 0;
4999     /* no transport possible, post an error and stop */
5000     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5001         ("Could not receive any UDP packets for %.4f seconds, maybe your "
5002             "firewall is blocking it. No other protocols to try.",
5003             gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
5004     return GST_RTSP_ERROR;
5005   }
5006 open_failed:
5007   {
5008     GST_DEBUG_OBJECT (src, "open failed");
5009     return GST_RTSP_OK;
5010   }
5011 play_failed:
5012   {
5013     GST_DEBUG_OBJECT (src, "play failed");
5014     return GST_RTSP_OK;
5015   }
5016 }
5017
5018 static void
5019 gst_rtspsrc_loop_start_cmd (GstRTSPSrc * src, gint cmd)
5020 {
5021   switch (cmd) {
5022     case CMD_OPEN:
5023       GST_ELEMENT_PROGRESS (src, START, "open", ("Opening Stream"));
5024       break;
5025     case CMD_PLAY:
5026       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PLAY request"));
5027       break;
5028     case CMD_PAUSE:
5029       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PAUSE request"));
5030       break;
5031     case CMD_CLOSE:
5032       GST_ELEMENT_PROGRESS (src, START, "close", ("Closing Stream"));
5033       break;
5034     default:
5035       break;
5036   }
5037 }
5038
5039 static void
5040 gst_rtspsrc_loop_complete_cmd (GstRTSPSrc * src, gint cmd)
5041 {
5042   switch (cmd) {
5043     case CMD_OPEN:
5044       GST_ELEMENT_PROGRESS (src, COMPLETE, "open", ("Opened Stream"));
5045       break;
5046     case CMD_PLAY:
5047       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PLAY request"));
5048       break;
5049     case CMD_PAUSE:
5050       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PAUSE request"));
5051       break;
5052     case CMD_CLOSE:
5053       GST_ELEMENT_PROGRESS (src, COMPLETE, "close", ("Closed Stream"));
5054       break;
5055     default:
5056       break;
5057   }
5058 }
5059
5060 static void
5061 gst_rtspsrc_loop_cancel_cmd (GstRTSPSrc * src, gint cmd)
5062 {
5063   switch (cmd) {
5064     case CMD_OPEN:
5065       GST_ELEMENT_PROGRESS (src, CANCELED, "open", ("Open canceled"));
5066       break;
5067     case CMD_PLAY:
5068       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PLAY canceled"));
5069       break;
5070     case CMD_PAUSE:
5071       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PAUSE canceled"));
5072       break;
5073     case CMD_CLOSE:
5074       GST_ELEMENT_PROGRESS (src, CANCELED, "close", ("Close canceled"));
5075       break;
5076     default:
5077       break;
5078   }
5079 }
5080
5081 static void
5082 gst_rtspsrc_loop_error_cmd (GstRTSPSrc * src, gint cmd)
5083 {
5084   switch (cmd) {
5085     case CMD_OPEN:
5086       GST_ELEMENT_PROGRESS (src, ERROR, "open", ("Open failed"));
5087       break;
5088     case CMD_PLAY:
5089       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PLAY failed"));
5090       break;
5091     case CMD_PAUSE:
5092       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PAUSE failed"));
5093       break;
5094     case CMD_CLOSE:
5095       GST_ELEMENT_PROGRESS (src, ERROR, "close", ("Close failed"));
5096       break;
5097     default:
5098       break;
5099   }
5100 }
5101
5102 static void
5103 gst_rtspsrc_loop_end_cmd (GstRTSPSrc * src, gint cmd, GstRTSPResult ret)
5104 {
5105   if (ret == GST_RTSP_OK)
5106     gst_rtspsrc_loop_complete_cmd (src, cmd);
5107   else if (ret == GST_RTSP_EINTR)
5108     gst_rtspsrc_loop_cancel_cmd (src, cmd);
5109   else
5110     gst_rtspsrc_loop_error_cmd (src, cmd);
5111 }
5112
5113 static gboolean
5114 gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask)
5115 {
5116   gint old;
5117   gboolean flushed = FALSE;
5118
5119   /* start new request */
5120   gst_rtspsrc_loop_start_cmd (src, cmd);
5121
5122   GST_DEBUG_OBJECT (src, "sending cmd %d", cmd);
5123
5124   GST_OBJECT_LOCK (src);
5125   old = src->pending_cmd;
5126   if (old == CMD_RECONNECT) {
5127     GST_DEBUG_OBJECT (src, "ignore, we were reconnecting");
5128     cmd = CMD_RECONNECT;
5129   }
5130   if (old != CMD_WAIT) {
5131     src->pending_cmd = CMD_WAIT;
5132     GST_OBJECT_UNLOCK (src);
5133     /* cancel previous request */
5134     GST_DEBUG_OBJECT (src, "cancel previous request %d", old);
5135     gst_rtspsrc_loop_cancel_cmd (src, old);
5136     GST_OBJECT_LOCK (src);
5137   }
5138   src->pending_cmd = cmd;
5139   /* interrupt if allowed */
5140   if (src->busy_cmd & mask) {
5141     GST_DEBUG_OBJECT (src, "connection flush busy %d", src->busy_cmd);
5142     gst_rtspsrc_connection_flush (src, TRUE);
5143     flushed = TRUE;
5144   } else {
5145     GST_DEBUG_OBJECT (src, "not interrupting busy cmd %d", src->busy_cmd);
5146   }
5147   if (src->task)
5148     gst_task_start (src->task);
5149   GST_OBJECT_UNLOCK (src);
5150
5151   return flushed;
5152 }
5153
5154 static gboolean
5155 gst_rtspsrc_loop (GstRTSPSrc * src)
5156 {
5157   GstFlowReturn ret;
5158
5159   if (!src->conninfo.connection || !src->conninfo.connected)
5160     goto no_connection;
5161
5162   if (src->interleaved)
5163     ret = gst_rtspsrc_loop_interleaved (src);
5164   else
5165     ret = gst_rtspsrc_loop_udp (src);
5166
5167   if (ret != GST_FLOW_OK)
5168     goto pause;
5169
5170   return TRUE;
5171
5172   /* ERRORS */
5173 no_connection:
5174   {
5175     GST_WARNING_OBJECT (src, "we are not connected");
5176     ret = GST_FLOW_FLUSHING;
5177     goto pause;
5178   }
5179 pause:
5180   {
5181     const gchar *reason = gst_flow_get_name (ret);
5182
5183     GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
5184     src->running = FALSE;
5185     if (ret == GST_FLOW_EOS) {
5186       /* perform EOS logic */
5187       if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
5188         gst_element_post_message (GST_ELEMENT_CAST (src),
5189             gst_message_new_segment_done (GST_OBJECT_CAST (src),
5190                 src->segment.format, src->segment.position));
5191         gst_rtspsrc_push_event (src,
5192             gst_event_new_segment_done (src->segment.format,
5193                 src->segment.position));
5194       } else {
5195         gst_rtspsrc_push_event (src, gst_event_new_eos ());
5196       }
5197     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
5198       /* for fatal errors we post an error message, post the error before the
5199        * EOS so the app knows about the error first. */
5200       GST_ELEMENT_ERROR (src, STREAM, FAILED,
5201           ("Internal data flow error."),
5202           ("streaming task paused, reason %s (%d)", reason, ret));
5203       gst_rtspsrc_push_event (src, gst_event_new_eos ());
5204     }
5205     gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_LOOP);
5206     return FALSE;
5207   }
5208 }
5209
5210 #ifndef GST_DISABLE_GST_DEBUG
5211 static const gchar *
5212 gst_rtsp_auth_method_to_string (GstRTSPAuthMethod method)
5213 {
5214   gint index = 0;
5215
5216   while (method != 0) {
5217     index++;
5218     method >>= 1;
5219   }
5220   switch (index) {
5221     case 0:
5222       return "None";
5223     case 1:
5224       return "Basic";
5225     case 2:
5226       return "Digest";
5227   }
5228
5229   return "Unknown";
5230 }
5231 #endif
5232
5233 static const gchar *
5234 gst_rtspsrc_skip_lws (const gchar * s)
5235 {
5236   while (g_ascii_isspace (*s))
5237     s++;
5238   return s;
5239 }
5240
5241 static const gchar *
5242 gst_rtspsrc_unskip_lws (const gchar * s, const gchar * start)
5243 {
5244   while (s > start && g_ascii_isspace (*(s - 1)))
5245     s--;
5246   return s;
5247 }
5248
5249 static const gchar *
5250 gst_rtspsrc_skip_commas (const gchar * s)
5251 {
5252   /* The grammar allows for multiple commas */
5253   while (g_ascii_isspace (*s) || *s == ',')
5254     s++;
5255   return s;
5256 }
5257
5258 static const gchar *
5259 gst_rtspsrc_skip_item (const gchar * s)
5260 {
5261   gboolean quoted = FALSE;
5262   const gchar *start = s;
5263
5264   /* A list item ends at the last non-whitespace character
5265    * before a comma which is not inside a quoted-string. Or at
5266    * the end of the string.
5267    */
5268   while (*s) {
5269     if (*s == '"')
5270       quoted = !quoted;
5271     else if (quoted) {
5272       if (*s == '\\' && *(s + 1))
5273         s++;
5274     } else {
5275       if (*s == ',')
5276         break;
5277     }
5278     s++;
5279   }
5280
5281   return gst_rtspsrc_unskip_lws (s, start);
5282 }
5283
5284 static void
5285 gst_rtsp_decode_quoted_string (gchar * quoted_string)
5286 {
5287   gchar *src, *dst;
5288
5289   src = quoted_string + 1;
5290   dst = quoted_string;
5291   while (*src && *src != '"') {
5292     if (*src == '\\' && *(src + 1))
5293       src++;
5294     *dst++ = *src++;
5295   }
5296   *dst = '\0';
5297 }
5298
5299 /* Extract the authentication tokens that the server provided for each method
5300  * into an array of structures and give those to the connection object.
5301  */
5302 static void
5303 gst_rtspsrc_parse_digest_challenge (GstRTSPConnection * conn,
5304     const gchar * header, gboolean * stale)
5305 {
5306   GSList *list = NULL, *iter;
5307   const gchar *end;
5308   gchar *item, *eq, *name_end, *value;
5309
5310   g_return_if_fail (stale != NULL);
5311
5312   gst_rtsp_connection_clear_auth_params (conn);
5313   *stale = FALSE;
5314
5315   /* Parse a header whose content is described by RFC2616 as
5316    * "#something", where "something" does not itself contain commas,
5317    * except as part of quoted-strings, into a list of allocated strings.
5318    */
5319   header = gst_rtspsrc_skip_commas (header);
5320   while (*header) {
5321     end = gst_rtspsrc_skip_item (header);
5322     list = g_slist_prepend (list, g_strndup (header, end - header));
5323     header = gst_rtspsrc_skip_commas (end);
5324   }
5325   if (!list)
5326     return;
5327
5328   list = g_slist_reverse (list);
5329   for (iter = list; iter; iter = iter->next) {
5330     item = iter->data;
5331
5332     eq = strchr (item, '=');
5333     if (eq) {
5334       name_end = (gchar *) gst_rtspsrc_unskip_lws (eq, item);
5335       if (name_end == item) {
5336         /* That's no good... */
5337         g_free (item);
5338         continue;
5339       }
5340
5341       *name_end = '\0';
5342
5343       value = (gchar *) gst_rtspsrc_skip_lws (eq + 1);
5344       if (*value == '"')
5345         gst_rtsp_decode_quoted_string (value);
5346     } else
5347       value = NULL;
5348
5349     if (value && strcmp (item, "stale") == 0 && strcmp (value, "TRUE") == 0)
5350       *stale = TRUE;
5351     gst_rtsp_connection_set_auth_param (conn, item, value);
5352     g_free (item);
5353   }
5354
5355   g_slist_free (list);
5356 }
5357
5358 /* Parse a WWW-Authenticate Response header and determine the
5359  * available authentication methods
5360  *
5361  * This code should also cope with the fact that each WWW-Authenticate
5362  * header can contain multiple challenge methods + tokens
5363  *
5364  * At the moment, for Basic auth, we just do a minimal check and don't
5365  * even parse out the realm */
5366 static void
5367 gst_rtspsrc_parse_auth_hdr (gchar * hdr, GstRTSPAuthMethod * methods,
5368     GstRTSPConnection * conn, gboolean * stale)
5369 {
5370   gchar *start;
5371
5372   g_return_if_fail (hdr != NULL);
5373   g_return_if_fail (methods != NULL);
5374   g_return_if_fail (stale != NULL);
5375
5376   /* Skip whitespace at the start of the string */
5377   for (start = hdr; start[0] != '\0' && g_ascii_isspace (start[0]); start++);
5378
5379   if (g_ascii_strncasecmp (start, "basic", 5) == 0)
5380     *methods |= GST_RTSP_AUTH_BASIC;
5381   else if (g_ascii_strncasecmp (start, "digest ", 7) == 0) {
5382     *methods |= GST_RTSP_AUTH_DIGEST;
5383     gst_rtspsrc_parse_digest_challenge (conn, &start[7], stale);
5384   }
5385 }
5386
5387 /**
5388  * gst_rtspsrc_setup_auth:
5389  * @src: the rtsp source
5390  *
5391  * Configure a username and password and auth method on the
5392  * connection object based on a response we received from the
5393  * peer.
5394  *
5395  * Currently, this requires that a username and password were supplied
5396  * in the uri. In the future, they may be requested on demand by sending
5397  * a message up the bus.
5398  *
5399  * Returns: TRUE if authentication information could be set up correctly.
5400  */
5401 static gboolean
5402 gst_rtspsrc_setup_auth (GstRTSPSrc * src, GstRTSPMessage * response)
5403 {
5404   gchar *user = NULL;
5405   gchar *pass = NULL;
5406   GstRTSPAuthMethod avail_methods = GST_RTSP_AUTH_NONE;
5407   GstRTSPAuthMethod method;
5408   GstRTSPResult auth_result;
5409   GstRTSPUrl *url;
5410   GstRTSPConnection *conn;
5411   gchar *hdr;
5412   gboolean stale = FALSE;
5413
5414   conn = src->conninfo.connection;
5415
5416   /* Identify the available auth methods and see if any are supported */
5417   if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_WWW_AUTHENTICATE,
5418           &hdr, 0) == GST_RTSP_OK) {
5419     gst_rtspsrc_parse_auth_hdr (hdr, &avail_methods, conn, &stale);
5420   }
5421
5422   if (avail_methods == GST_RTSP_AUTH_NONE)
5423     goto no_auth_available;
5424
5425   /* For digest auth, if the response indicates that the session
5426    * data are stale, we just update them in the connection object and
5427    * return TRUE to retry the request */
5428   if (stale)
5429     src->tried_url_auth = FALSE;
5430
5431   url = gst_rtsp_connection_get_url (conn);
5432
5433   /* Do we have username and password available? */
5434   if (url != NULL && !src->tried_url_auth && url->user != NULL
5435       && url->passwd != NULL) {
5436     user = url->user;
5437     pass = url->passwd;
5438     src->tried_url_auth = TRUE;
5439     GST_DEBUG_OBJECT (src,
5440         "Attempting authentication using credentials from the URL");
5441   } else {
5442     user = src->user_id;
5443     pass = src->user_pw;
5444     GST_DEBUG_OBJECT (src,
5445         "Attempting authentication using credentials from the properties");
5446   }
5447
5448   /* FIXME: If the url didn't contain username and password or we tried them
5449    * already, request a username and passwd from the application via some kind
5450    * of credentials request message */
5451
5452   /* If we don't have a username and passwd at this point, bail out. */
5453   if (user == NULL || pass == NULL)
5454     goto no_user_pass;
5455
5456   /* Try to configure for each available authentication method, strongest to
5457    * weakest */
5458   for (method = GST_RTSP_AUTH_MAX; method != GST_RTSP_AUTH_NONE; method >>= 1) {
5459     /* Check if this method is available on the server */
5460     if ((method & avail_methods) == 0)
5461       continue;
5462
5463     /* Pass the credentials to the connection to try on the next request */
5464     auth_result = gst_rtsp_connection_set_auth (conn, method, user, pass);
5465     /* INVAL indicates an invalid username/passwd were supplied, so we'll just
5466      * ignore it and end up retrying later */
5467     if (auth_result == GST_RTSP_OK || auth_result == GST_RTSP_EINVAL) {
5468       GST_DEBUG_OBJECT (src, "Attempting %s authentication",
5469           gst_rtsp_auth_method_to_string (method));
5470       break;
5471     }
5472   }
5473
5474   if (method == GST_RTSP_AUTH_NONE)
5475     goto no_auth_available;
5476
5477   return TRUE;
5478
5479 no_auth_available:
5480   {
5481     /* Output an error indicating that we couldn't connect because there were
5482      * no supported authentication protocols */
5483     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5484         ("No supported authentication protocol was found"));
5485     return FALSE;
5486   }
5487 no_user_pass:
5488   {
5489     /* We don't fire an error message, we just return FALSE and let the
5490      * normal NOT_AUTHORIZED error be propagated */
5491     return FALSE;
5492   }
5493 }
5494
5495 static GstRTSPResult
5496 gst_rtspsrc_try_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5497     GstRTSPMessage * request, GstRTSPMessage * response,
5498     GstRTSPStatusCode * code)
5499 {
5500   GstRTSPResult res;
5501   GstRTSPStatusCode thecode;
5502   gchar *content_base = NULL;
5503   gint try = 0;
5504
5505 again:
5506   if (!src->short_header)
5507     gst_rtsp_ext_list_before_send (src->extensions, request);
5508
5509   GST_DEBUG_OBJECT (src, "sending message");
5510
5511   if (src->debug)
5512     gst_rtsp_message_dump (request);
5513
5514   res = gst_rtspsrc_connection_send (src, conn, request, src->ptcp_timeout);
5515   if (res < 0)
5516     goto send_error;
5517
5518   gst_rtsp_connection_reset_timeout (conn);
5519
5520 next:
5521   res = gst_rtspsrc_connection_receive (src, conn, response, src->ptcp_timeout);
5522   if (res < 0)
5523     goto receive_error;
5524
5525   if (src->debug)
5526     gst_rtsp_message_dump (response);
5527
5528   switch (response->type) {
5529     case GST_RTSP_MESSAGE_REQUEST:
5530       res = gst_rtspsrc_handle_request (src, conn, response);
5531       if (res == GST_RTSP_EEOF)
5532         goto server_eof;
5533       else if (res < 0)
5534         goto handle_request_failed;
5535       goto next;
5536     case GST_RTSP_MESSAGE_RESPONSE:
5537       /* ok, a response is good */
5538       GST_DEBUG_OBJECT (src, "received response message");
5539       break;
5540     case GST_RTSP_MESSAGE_DATA:
5541       /* get next response */
5542       GST_DEBUG_OBJECT (src, "handle data response message");
5543       gst_rtspsrc_handle_data (src, response);
5544       goto next;
5545     default:
5546       GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
5547           response->type);
5548       goto next;
5549   }
5550
5551   thecode = response->type_data.response.code;
5552
5553   GST_DEBUG_OBJECT (src, "got response message %d", thecode);
5554
5555   /* if the caller wanted the result code, we store it. */
5556   if (code)
5557     *code = thecode;
5558
5559   /* If the request didn't succeed, bail out before doing any more */
5560   if (thecode != GST_RTSP_STS_OK)
5561     return GST_RTSP_OK;
5562
5563   /* store new content base if any */
5564   gst_rtsp_message_get_header (response, GST_RTSP_HDR_CONTENT_BASE,
5565       &content_base, 0);
5566   if (content_base) {
5567     g_free (src->content_base);
5568     src->content_base = g_strdup (content_base);
5569   }
5570   gst_rtsp_ext_list_after_send (src->extensions, request, response);
5571
5572   return GST_RTSP_OK;
5573
5574   /* ERRORS */
5575 send_error:
5576   {
5577     gchar *str = gst_rtsp_strresult (res);
5578
5579     if (res != GST_RTSP_EINTR) {
5580       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5581           ("Could not send message. (%s)", str));
5582     } else {
5583       GST_WARNING_OBJECT (src, "send interrupted");
5584     }
5585     g_free (str);
5586     return res;
5587   }
5588 receive_error:
5589   {
5590     switch (res) {
5591       case GST_RTSP_EEOF:
5592         GST_WARNING_OBJECT (src, "server closed connection");
5593         if ((try == 0) && !src->interleaved && src->udp_reconnect) {
5594           try++;
5595           /* if reconnect succeeds, try again */
5596           if ((res =
5597                   gst_rtsp_conninfo_reconnect (src, &src->conninfo,
5598                       FALSE)) == 0)
5599             goto again;
5600         }
5601         /* only try once after reconnect, then fallthrough and error out */
5602       default:
5603       {
5604         gchar *str = gst_rtsp_strresult (res);
5605
5606         if (res != GST_RTSP_EINTR) {
5607           GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5608               ("Could not receive message. (%s)", str));
5609         } else {
5610           GST_WARNING_OBJECT (src, "receive interrupted");
5611         }
5612         g_free (str);
5613         break;
5614       }
5615     }
5616     return res;
5617   }
5618 handle_request_failed:
5619   {
5620     /* ERROR was posted */
5621     gst_rtsp_message_unset (response);
5622     return res;
5623   }
5624 server_eof:
5625   {
5626     GST_DEBUG_OBJECT (src, "we got an eof from the server");
5627     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
5628         ("The server closed the connection."));
5629     gst_rtsp_message_unset (response);
5630     return res;
5631   }
5632 }
5633
5634 /**
5635  * gst_rtspsrc_send:
5636  * @src: the rtsp source
5637  * @conn: the connection to send on
5638  * @request: must point to a valid request
5639  * @response: must point to an empty #GstRTSPMessage
5640  * @code: an optional code result
5641  *
5642  * send @request and retrieve the response in @response. optionally @code can be
5643  * non-NULL in which case it will contain the status code of the response.
5644  *
5645  * If This function returns #GST_RTSP_OK, @response will contain a valid response
5646  * message that should be cleaned with gst_rtsp_message_unset() after usage.
5647  *
5648  * If @code is NULL, this function will return #GST_RTSP_ERROR (with an invalid
5649  * @response message) if the response code was not 200 (OK).
5650  *
5651  * If the attempt results in an authentication failure, then this will attempt
5652  * to retrieve authentication credentials via gst_rtspsrc_setup_auth and retry
5653  * the request.
5654  *
5655  * Returns: #GST_RTSP_OK if the processing was successful.
5656  */
5657 static GstRTSPResult
5658 gst_rtspsrc_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5659     GstRTSPMessage * request, GstRTSPMessage * response,
5660     GstRTSPStatusCode * code)
5661 {
5662   GstRTSPStatusCode int_code = GST_RTSP_STS_OK;
5663   GstRTSPResult res = GST_RTSP_ERROR;
5664   gint count;
5665   gboolean retry;
5666   GstRTSPMethod method = GST_RTSP_INVALID;
5667
5668   count = 0;
5669   do {
5670     retry = FALSE;
5671
5672     /* make sure we don't loop forever */
5673     if (count++ > 8)
5674       break;
5675
5676     /* save method so we can disable it when the server complains */
5677     method = request->type_data.request.method;
5678
5679     if ((res =
5680             gst_rtspsrc_try_send (src, conn, request, response, &int_code)) < 0)
5681       goto error;
5682
5683     switch (int_code) {
5684       case GST_RTSP_STS_UNAUTHORIZED:
5685         if (gst_rtspsrc_setup_auth (src, response)) {
5686           /* Try the request/response again after configuring the auth info
5687            * and loop again */
5688           retry = TRUE;
5689         }
5690         break;
5691       default:
5692         break;
5693     }
5694   } while (retry == TRUE);
5695
5696   /* If the user requested the code, let them handle errors, otherwise
5697    * post an error below */
5698   if (code != NULL)
5699     *code = int_code;
5700   else if (int_code != GST_RTSP_STS_OK)
5701     goto error_response;
5702
5703   return res;
5704
5705   /* ERRORS */
5706 error:
5707   {
5708     GST_DEBUG_OBJECT (src, "got error %d", res);
5709     return res;
5710   }
5711 error_response:
5712   {
5713     res = GST_RTSP_ERROR;
5714
5715     switch (response->type_data.response.code) {
5716       case GST_RTSP_STS_NOT_FOUND:
5717         GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), ("%s",
5718                 response->type_data.response.reason));
5719         break;
5720       case GST_RTSP_STS_MOVED_PERMANENTLY:
5721       case GST_RTSP_STS_MOVE_TEMPORARILY:
5722       {
5723         gchar *new_location;
5724         GstRTSPLowerTrans transports;
5725
5726         GST_DEBUG_OBJECT (src, "got redirection");
5727         /* if we don't have a Location Header, we must error */
5728         if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_LOCATION,
5729                 &new_location, 0) < 0)
5730           break;
5731
5732         /* When we receive a redirect result, we go back to the INIT state after
5733          * parsing the new URI. The caller should do the needed steps to issue
5734          * a new setup when it detects this state change. */
5735         GST_DEBUG_OBJECT (src, "redirection to %s", new_location);
5736
5737         /* save current transports */
5738         if (src->conninfo.url)
5739           transports = src->conninfo.url->transports;
5740         else
5741           transports = GST_RTSP_LOWER_TRANS_UNKNOWN;
5742
5743         gst_rtspsrc_uri_set_uri (GST_URI_HANDLER (src), new_location, NULL);
5744
5745         /* set old transports */
5746         if (src->conninfo.url && transports != GST_RTSP_LOWER_TRANS_UNKNOWN)
5747           src->conninfo.url->transports = transports;
5748
5749         src->need_redirect = TRUE;
5750         src->state = GST_RTSP_STATE_INIT;
5751         res = GST_RTSP_OK;
5752         break;
5753       }
5754       case GST_RTSP_STS_NOT_ACCEPTABLE:
5755       case GST_RTSP_STS_NOT_IMPLEMENTED:
5756       case GST_RTSP_STS_METHOD_NOT_ALLOWED:
5757         GST_WARNING_OBJECT (src, "got NOT IMPLEMENTED, disable method %s",
5758             gst_rtsp_method_as_text (method));
5759         src->methods &= ~method;
5760         res = GST_RTSP_OK;
5761         break;
5762       default:
5763         GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5764             ("Got error response: %d (%s).", response->type_data.response.code,
5765                 response->type_data.response.reason));
5766         break;
5767     }
5768     /* if we return ERROR we should unset the response ourselves */
5769     if (res == GST_RTSP_ERROR)
5770       gst_rtsp_message_unset (response);
5771
5772     return res;
5773   }
5774 }
5775
5776 static GstRTSPResult
5777 gst_rtspsrc_send_cb (GstRTSPExtension * ext, GstRTSPMessage * request,
5778     GstRTSPMessage * response, GstRTSPSrc * src)
5779 {
5780   return gst_rtspsrc_send (src, src->conninfo.connection, request, response,
5781       NULL);
5782 }
5783
5784
5785 /* parse the response and collect all the supported methods. We need this
5786  * information so that we don't try to send an unsupported request to the
5787  * server.
5788  */
5789 static gboolean
5790 gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
5791 {
5792   GstRTSPHeaderField field;
5793   gchar *respoptions;
5794   gint indx = 0;
5795
5796   /* reset supported methods */
5797   src->methods = 0;
5798
5799   /* Try Allow Header first */
5800   field = GST_RTSP_HDR_ALLOW;
5801   while (TRUE) {
5802     respoptions = NULL;
5803     gst_rtsp_message_get_header (response, field, &respoptions, indx);
5804     if (indx == 0 && !respoptions) {
5805       /* if no Allow header was found then try the Public header... */
5806       field = GST_RTSP_HDR_PUBLIC;
5807       gst_rtsp_message_get_header (response, field, &respoptions, indx);
5808     }
5809     if (!respoptions)
5810       break;
5811
5812     src->methods |= gst_rtsp_options_from_text (respoptions);
5813
5814     indx++;
5815   }
5816
5817   if (src->methods == 0) {
5818     /* neither Allow nor Public are required, assume the server supports
5819      * at least DESCRIBE, SETUP, we always assume it supports PLAY as
5820      * well. */
5821     GST_DEBUG_OBJECT (src, "could not get OPTIONS");
5822     src->methods = GST_RTSP_DESCRIBE | GST_RTSP_SETUP;
5823   }
5824   /* always assume PLAY, FIXME, extensions should be able to override
5825    * this */
5826   src->methods |= GST_RTSP_PLAY;
5827   /* also assume it will support Range */
5828   src->seekable = TRUE;
5829
5830   /* we need describe and setup */
5831   if (!(src->methods & GST_RTSP_DESCRIBE))
5832     goto no_describe;
5833   if (!(src->methods & GST_RTSP_SETUP))
5834     goto no_setup;
5835
5836   return TRUE;
5837
5838   /* ERRORS */
5839 no_describe:
5840   {
5841     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5842         ("Server does not support DESCRIBE."));
5843     return FALSE;
5844   }
5845 no_setup:
5846   {
5847     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5848         ("Server does not support SETUP."));
5849     return FALSE;
5850   }
5851 }
5852
5853 /* masks to be kept in sync with the hardcoded protocol order of preference
5854  * in code below */
5855 static const guint protocol_masks[] = {
5856   GST_RTSP_LOWER_TRANS_UDP,
5857   GST_RTSP_LOWER_TRANS_UDP_MCAST,
5858   GST_RTSP_LOWER_TRANS_TCP,
5859   0
5860 };
5861
5862 static GstRTSPResult
5863 gst_rtspsrc_create_transports_string (GstRTSPSrc * src,
5864     GstRTSPLowerTrans protocols, GstRTSPProfile profile, gchar ** transports)
5865 {
5866   GstRTSPResult res;
5867   GString *result;
5868   gboolean add_udp_str;
5869
5870   *transports = NULL;
5871
5872   res =
5873       gst_rtsp_ext_list_get_transports (src->extensions, protocols, transports);
5874
5875   if (res < 0)
5876     goto failed;
5877
5878   GST_DEBUG_OBJECT (src, "got transports %s", GST_STR_NULL (*transports));
5879
5880   /* extension listed transports, use those */
5881   if (*transports != NULL)
5882     return GST_RTSP_OK;
5883
5884   /* it's the default */
5885   add_udp_str = FALSE;
5886
5887   /* the default RTSP transports */
5888   result = g_string_new ("RTP");
5889
5890   switch (profile) {
5891     case GST_RTSP_PROFILE_AVP:
5892       g_string_append (result, "/AVP");
5893       break;
5894     case GST_RTSP_PROFILE_SAVP:
5895       g_string_append (result, "/SAVP");
5896       break;
5897     case GST_RTSP_PROFILE_AVPF:
5898       g_string_append (result, "/AVPF");
5899       break;
5900     case GST_RTSP_PROFILE_SAVPF:
5901       g_string_append (result, "/SAVPF");
5902       break;
5903     default:
5904       break;
5905   }
5906
5907   if (protocols & GST_RTSP_LOWER_TRANS_UDP) {
5908     GST_DEBUG_OBJECT (src, "adding UDP unicast");
5909     if (add_udp_str)
5910       g_string_append (result, "/UDP");
5911     g_string_append (result, ";unicast;client_port=%%u1-%%u2");
5912   } else if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) {
5913     GST_DEBUG_OBJECT (src, "adding UDP multicast");
5914     /* we don't have to allocate any UDP ports yet, if the selected transport
5915      * turns out to be multicast we can create them and join the multicast
5916      * group indicated in the transport reply */
5917     if (add_udp_str)
5918       g_string_append (result, "/UDP");
5919     g_string_append (result, ";multicast");
5920     if (src->next_port_num != 0) {
5921       if (src->client_port_range.max > 0 &&
5922           src->next_port_num >= src->client_port_range.max)
5923         goto no_ports;
5924
5925       g_string_append_printf (result, ";client_port=%d-%d",
5926           src->next_port_num, src->next_port_num + 1);
5927     }
5928   } else if (protocols & GST_RTSP_LOWER_TRANS_TCP) {
5929     GST_DEBUG_OBJECT (src, "adding TCP");
5930
5931     g_string_append (result, "/TCP;unicast;interleaved=%%i1-%%i2");
5932   }
5933   *transports = g_string_free (result, FALSE);
5934
5935   GST_DEBUG_OBJECT (src, "prepared transports %s", GST_STR_NULL (*transports));
5936
5937   return GST_RTSP_OK;
5938
5939   /* ERRORS */
5940 failed:
5941   {
5942     GST_ERROR ("extension gave error %d", res);
5943     return res;
5944   }
5945 no_ports:
5946   {
5947     GST_ERROR ("no more ports available");
5948     return GST_RTSP_ERROR;
5949   }
5950 }
5951
5952 static GstRTSPResult
5953 gst_rtspsrc_prepare_transports (GstRTSPStream * stream, gchar ** transports,
5954     gint orig_rtpport, gint orig_rtcpport)
5955 {
5956   GstRTSPSrc *src;
5957   gint nr_udp, nr_int;
5958   gchar *next, *p;
5959   gint rtpport = 0, rtcpport = 0;
5960   GString *str;
5961
5962   src = stream->parent;
5963
5964   /* find number of placeholders first */
5965   if (strstr (*transports, "%%i2"))
5966     nr_int = 2;
5967   else if (strstr (*transports, "%%i1"))
5968     nr_int = 1;
5969   else
5970     nr_int = 0;
5971
5972   if (strstr (*transports, "%%u2"))
5973     nr_udp = 2;
5974   else if (strstr (*transports, "%%u1"))
5975     nr_udp = 1;
5976   else
5977     nr_udp = 0;
5978
5979   if (nr_udp == 0 && nr_int == 0)
5980     goto done;
5981
5982   if (nr_udp > 0) {
5983     if (!orig_rtpport || !orig_rtcpport) {
5984       if (!gst_rtspsrc_alloc_udp_ports (stream, &rtpport, &rtcpport))
5985         goto failed;
5986     } else {
5987       rtpport = orig_rtpport;
5988       rtcpport = orig_rtcpport;
5989     }
5990   }
5991
5992   str = g_string_new ("");
5993   p = *transports;
5994   while ((next = strstr (p, "%%"))) {
5995     g_string_append_len (str, p, next - p);
5996     if (next[2] == 'u') {
5997       if (next[3] == '1')
5998         g_string_append_printf (str, "%d", rtpport);
5999       else if (next[3] == '2')
6000         g_string_append_printf (str, "%d", rtcpport);
6001     }
6002     if (next[2] == 'i') {
6003       if (next[3] == '1')
6004         g_string_append_printf (str, "%d", src->free_channel);
6005       else if (next[3] == '2')
6006         g_string_append_printf (str, "%d", src->free_channel + 1);
6007     }
6008
6009     p = next + 4;
6010   }
6011   /* append final part */
6012   g_string_append (str, p);
6013
6014   g_free (*transports);
6015   *transports = g_string_free (str, FALSE);
6016
6017 done:
6018   return GST_RTSP_OK;
6019
6020   /* ERRORS */
6021 failed:
6022   {
6023     GST_ERROR ("failed to allocate udp ports");
6024     return GST_RTSP_ERROR;
6025   }
6026 }
6027
6028 static guint8
6029 enc_key_length_from_cipher_name (const gchar * cipher)
6030 {
6031   if (g_strcmp0 (cipher, "aes-128-icm") == 0)
6032     return AES_128_KEY_LEN;
6033   else if (g_strcmp0 (cipher, "aes-256-icm") == 0)
6034     return AES_256_KEY_LEN;
6035   else {
6036     GST_ERROR ("encryption algorithm '%s' not supported", cipher);
6037     return 0;
6038   }
6039 }
6040
6041 static guint8
6042 auth_key_length_from_auth_name (const gchar * auth)
6043 {
6044   if (g_strcmp0 (auth, "hmac-sha1-32") == 0)
6045     return HMAC_32_KEY_LEN;
6046   else if (g_strcmp0 (auth, "hmac-sha1-80") == 0)
6047     return HMAC_80_KEY_LEN;
6048   else {
6049     GST_ERROR ("authentication algorithm '%s' not supported", auth);
6050     return 0;
6051   }
6052 }
6053
6054 static GstCaps *
6055 signal_get_srtcp_params (GstRTSPSrc * src, GstRTSPStream * stream)
6056 {
6057   GstCaps *caps = NULL;
6058
6059   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_REQUEST_RTCP_KEY], 0,
6060       stream->id, &caps);
6061
6062   if (caps != NULL)
6063     GST_DEBUG_OBJECT (src, "SRTP parameters received");
6064
6065   return caps;
6066 }
6067
6068 static GstCaps *
6069 default_srtcp_params (void)
6070 {
6071   guint i;
6072   GstCaps *caps;
6073   GstBuffer *buf;
6074   guint8 *key_data;
6075 #define KEY_SIZE 30
6076
6077   /* create a random key */
6078   key_data = g_malloc (KEY_SIZE);
6079   for (i = 0; i < KEY_SIZE; i += 4)
6080     GST_WRITE_UINT32_BE (key_data + i, g_random_int ());
6081
6082   buf = gst_buffer_new_wrapped (key_data, KEY_SIZE);
6083
6084   caps = gst_caps_new_simple ("application/x-srtp",
6085       "srtp-key", GST_TYPE_BUFFER, buf,
6086       "srtcp-cipher", G_TYPE_STRING, "aes-128-icm",
6087       "srtcp-auth", G_TYPE_STRING, "hmac-sha1-80", NULL);
6088
6089   gst_buffer_unref (buf);
6090
6091   return caps;
6092 }
6093
6094 static gchar *
6095 gst_rtspsrc_stream_make_keymgmt (GstRTSPSrc * src, GstRTSPStream * stream)
6096 {
6097   GBytes *bytes;
6098   gchar *result, *base64;
6099   const guint8 *data;
6100   gsize size;
6101   GstMIKEYMessage *msg;
6102   GstMIKEYPayload *payload, *pkd;
6103   guint8 byte;
6104   GstStructure *s;
6105   GstMapInfo info;
6106   GstBuffer *srtpkey;
6107   const GValue *val;
6108   const gchar *srtcpcipher, *srtcpauth;
6109
6110   stream->srtcpparams = signal_get_srtcp_params (src, stream);
6111   if (stream->srtcpparams == NULL)
6112     stream->srtcpparams = default_srtcp_params ();
6113
6114   s = gst_caps_get_structure (stream->srtcpparams, 0);
6115
6116   srtcpcipher = gst_structure_get_string (s, "srtcp-cipher");
6117   srtcpauth = gst_structure_get_string (s, "srtcp-auth");
6118   val = gst_structure_get_value (s, "srtp-key");
6119
6120   if (srtcpcipher == NULL || srtcpauth == NULL || val == NULL) {
6121     GST_ERROR_OBJECT (src, "could not find the right SRTP parameters in caps");
6122     return NULL;
6123   }
6124
6125   srtpkey = gst_value_get_buffer (val);
6126
6127   msg = gst_mikey_message_new ();
6128   /* unencrypted MIKEY message, we send this over TLS so this is allowed */
6129   gst_mikey_message_set_info (msg, GST_MIKEY_VERSION, GST_MIKEY_TYPE_PSK_INIT,
6130       FALSE, GST_MIKEY_PRF_MIKEY_1, g_random_int (), GST_MIKEY_MAP_TYPE_SRTP);
6131   /* add policy '0' for our SSRC */
6132   gst_mikey_message_add_cs_srtp (msg, 0, stream->send_ssrc, 0);
6133   /* timestamp is now */
6134   gst_mikey_message_add_t_now_ntp_utc (msg);
6135   /* add some random data */
6136   gst_mikey_message_add_rand_len (msg, 16);
6137
6138   /* the policy '0' is SRTP */
6139   payload = gst_mikey_payload_new (GST_MIKEY_PT_SP);
6140   gst_mikey_payload_sp_set (payload, 0, GST_MIKEY_SEC_PROTO_SRTP);
6141
6142   /* only AES-CM is supported */
6143   byte = 1;
6144   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_ALG, 1, &byte);
6145   /* encryption key length */
6146   byte = enc_key_length_from_cipher_name (srtcpcipher);
6147   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_KEY_LEN, 1,
6148       &byte);
6149   /* only HMAC-SHA1 */
6150   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_ALG, 1,
6151       &byte);
6152   /* authentication key length */
6153   byte = auth_key_length_from_auth_name (srtcpauth);
6154   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_KEY_LEN, 1,
6155       &byte);
6156   /* we enable encryption on RTP and RTCP */
6157   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_ENC, 1,
6158       &byte);
6159   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTCP_ENC, 1,
6160       &byte);
6161   /* we enable authentication on RTP and RTCP */
6162   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_AUTH, 1,
6163       &byte);
6164   gst_mikey_message_add_payload (msg, payload);
6165
6166   /* make unencrypted KEMAC */
6167   payload = gst_mikey_payload_new (GST_MIKEY_PT_KEMAC);
6168   gst_mikey_payload_kemac_set (payload, GST_MIKEY_ENC_NULL, GST_MIKEY_MAC_NULL);
6169   /* add the key in KEMAC */
6170   pkd = gst_mikey_payload_new (GST_MIKEY_PT_KEY_DATA);
6171   gst_buffer_map (srtpkey, &info, GST_MAP_READ);
6172   gst_mikey_payload_key_data_set_key (pkd, GST_MIKEY_KD_TEK, info.size,
6173       info.data);
6174   gst_buffer_unmap (srtpkey, &info);
6175   gst_mikey_payload_kemac_add_sub (payload, pkd);
6176   gst_mikey_message_add_payload (msg, payload);
6177
6178   /* now serialize this to bytes */
6179   bytes = gst_mikey_message_to_bytes (msg, NULL, NULL);
6180   gst_mikey_message_unref (msg);
6181   /* and make it into base64 */
6182   data = g_bytes_get_data (bytes, &size);
6183   base64 = g_base64_encode (data, size);
6184   g_bytes_unref (bytes);
6185
6186   result = g_strdup_printf ("prot=mikey;uri=\"%s\";data=\"%s\"",
6187       stream->conninfo.location, base64);
6188   g_free (base64);
6189
6190   return result;
6191 }
6192
6193
6194 /* Perform the SETUP request for all the streams.
6195  *
6196  * We ask the server for a specific transport, which initially includes all the
6197  * ones we can support (UDP/TCP/MULTICAST). For the UDP transport we allocate
6198  * two local UDP ports that we send to the server.
6199  *
6200  * Once the server replied with a transport, we configure the other streams
6201  * with the same transport.
6202  *
6203  * This function will also configure the stream for the selected transport,
6204  * which basically means creating the pipeline.
6205  */
6206 static GstRTSPResult
6207 gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
6208 {
6209   GList *walk;
6210   GstRTSPResult res = GST_RTSP_ERROR;
6211   GstRTSPMessage request = { 0 };
6212   GstRTSPMessage response = { 0 };
6213   GstRTSPStream *stream = NULL;
6214   GstRTSPLowerTrans protocols;
6215   GstRTSPStatusCode code;
6216   gboolean unsupported_real = FALSE;
6217   gint rtpport, rtcpport;
6218   GstRTSPUrl *url;
6219   gchar *hval;
6220
6221   if (src->conninfo.connection) {
6222     url = gst_rtsp_connection_get_url (src->conninfo.connection);
6223     /* we initially allow all configured lower transports. based on the URL
6224      * transports and the replies from the server we narrow them down. */
6225     protocols = url->transports & src->cur_protocols;
6226   } else {
6227     url = NULL;
6228     protocols = src->cur_protocols;
6229   }
6230
6231   if (protocols == 0)
6232     goto no_protocols;
6233
6234   /* reset some state */
6235   src->free_channel = 0;
6236   src->interleaved = FALSE;
6237   src->need_activate = FALSE;
6238   /* keep track of next port number, 0 is random */
6239   src->next_port_num = src->client_port_range.min;
6240   rtpport = rtcpport = 0;
6241
6242   if (G_UNLIKELY (src->streams == NULL))
6243     goto no_streams;
6244
6245   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6246     GstRTSPConnection *conn;
6247     gchar *transports;
6248     gint retry = 0;
6249     guint mask = 0;
6250     gboolean selected;
6251     GstCaps *caps;
6252
6253     stream = (GstRTSPStream *) walk->data;
6254
6255     caps = stream_get_caps_for_pt (stream, stream->default_pt);
6256     if (caps == NULL) {
6257       GST_DEBUG_OBJECT (src, "skipping stream %p, no caps", stream);
6258       continue;
6259     }
6260
6261     if (stream->skipped) {
6262       GST_DEBUG_OBJECT (src, "skipping stream %p", stream);
6263       continue;
6264     }
6265
6266     /* see if we need to configure this stream */
6267     if (!gst_rtsp_ext_list_configure_stream (src->extensions, caps)) {
6268       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by extension",
6269           stream);
6270       continue;
6271     }
6272
6273     g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_SELECT_STREAM], 0,
6274         stream->id, caps, &selected);
6275     if (!selected) {
6276       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by signal", stream);
6277       continue;
6278     }
6279
6280     /* merge/overwrite global caps */
6281     if (caps) {
6282       guint j, num;
6283       GstStructure *s;
6284
6285       s = gst_caps_get_structure (caps, 0);
6286
6287       num = gst_structure_n_fields (src->props);
6288       for (j = 0; j < num; j++) {
6289         const gchar *name;
6290         const GValue *val;
6291
6292         name = gst_structure_nth_field_name (src->props, j);
6293         val = gst_structure_get_value (src->props, name);
6294         gst_structure_set_value (s, name, val);
6295
6296         GST_DEBUG_OBJECT (src, "copied %s", name);
6297       }
6298     }
6299
6300     /* skip setup if we have no URL for it */
6301     if (stream->conninfo.location == NULL) {
6302       GST_DEBUG_OBJECT (src, "skipping stream %p, no setup", stream);
6303       continue;
6304     }
6305
6306     if (src->conninfo.connection == NULL) {
6307       if (!gst_rtsp_conninfo_connect (src, &stream->conninfo, async)) {
6308         GST_DEBUG_OBJECT (src, "skipping stream %p, failed to connect", stream);
6309         continue;
6310       }
6311       conn = stream->conninfo.connection;
6312     } else {
6313       conn = src->conninfo.connection;
6314     }
6315     GST_DEBUG_OBJECT (src, "doing setup of stream %p with %s", stream,
6316         stream->conninfo.location);
6317
6318     /* if we have a multicast connection, only suggest multicast from now on */
6319     if (stream->is_multicast)
6320       protocols &= GST_RTSP_LOWER_TRANS_UDP_MCAST;
6321
6322   next_protocol:
6323     /* first selectable protocol */
6324     while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6325       mask++;
6326     if (!protocol_masks[mask])
6327       goto no_protocols;
6328
6329   retry:
6330     GST_DEBUG_OBJECT (src, "protocols = 0x%x, protocol mask = 0x%x", protocols,
6331         protocol_masks[mask]);
6332     /* create a string with first transport in line */
6333     transports = NULL;
6334     res = gst_rtspsrc_create_transports_string (src,
6335         protocols & protocol_masks[mask], stream->profile, &transports);
6336     if (res < 0 || transports == NULL)
6337       goto setup_transport_failed;
6338
6339     if (strlen (transports) == 0) {
6340       g_free (transports);
6341       GST_DEBUG_OBJECT (src, "no transports found");
6342       mask++;
6343       goto next_protocol;
6344     }
6345
6346     GST_DEBUG_OBJECT (src, "replace ports in %s", GST_STR_NULL (transports));
6347
6348     /* replace placeholders with real values, this function will optionally
6349      * allocate UDP ports and other info needed to execute the setup request */
6350     res = gst_rtspsrc_prepare_transports (stream, &transports,
6351         retry > 0 ? rtpport : 0, retry > 0 ? rtcpport : 0);
6352     if (res < 0) {
6353       g_free (transports);
6354       goto setup_transport_failed;
6355     }
6356
6357     GST_DEBUG_OBJECT (src, "transport is now %s", GST_STR_NULL (transports));
6358
6359     /* create SETUP request */
6360     res =
6361         gst_rtsp_message_init_request (&request, GST_RTSP_SETUP,
6362         stream->conninfo.location);
6363     if (res < 0) {
6364       g_free (transports);
6365       goto create_request_failed;
6366     }
6367
6368     /* select transport */
6369     gst_rtsp_message_take_header (&request, GST_RTSP_HDR_TRANSPORT, transports);
6370
6371     /* set up keys */
6372     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
6373         stream->profile == GST_RTSP_PROFILE_SAVPF) {
6374       hval = gst_rtspsrc_stream_make_keymgmt (src, stream);
6375       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_KEYMGMT, hval);
6376     }
6377
6378     /* if the user wants a non default RTP packet size we add the blocksize
6379      * parameter */
6380     if (src->rtp_blocksize > 0) {
6381       hval = g_strdup_printf ("%d", src->rtp_blocksize);
6382       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_BLOCKSIZE, hval);
6383     }
6384
6385     if (async)
6386       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("SETUP stream %d",
6387               stream->id));
6388
6389     /* handle the code ourselves */
6390     res = gst_rtspsrc_send (src, conn, &request, &response, &code);
6391     if (res < 0)
6392       goto send_error;
6393
6394     switch (code) {
6395       case GST_RTSP_STS_OK:
6396         break;
6397       case GST_RTSP_STS_UNSUPPORTED_TRANSPORT:
6398         gst_rtsp_message_unset (&request);
6399         gst_rtsp_message_unset (&response);
6400         /* cleanup of leftover transport */
6401         gst_rtspsrc_stream_free_udp (stream);
6402         /* MS WMServer RTSP MUST use same UDP pair in all SETUP requests;
6403          * we might be in this case */
6404         if (stream->container && rtpport && rtcpport && !retry) {
6405           GST_DEBUG_OBJECT (src, "retrying with original port pair %u-%u",
6406               rtpport, rtcpport);
6407           retry++;
6408           goto retry;
6409         }
6410         /* this transport did not go down well, but we may have others to try
6411          * that we did not send yet, try those and only give up then
6412          * but not without checking for lost cause/extension so we can
6413          * post a nicer/more useful error message later */
6414         if (!unsupported_real)
6415           unsupported_real = stream->is_real;
6416         /* select next available protocol, give up on this stream if none */
6417         mask++;
6418         while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6419           mask++;
6420         if (!protocol_masks[mask] || unsupported_real)
6421           continue;
6422         else
6423           goto retry;
6424       default:
6425         /* cleanup of leftover transport and move to the next stream */
6426         gst_rtspsrc_stream_free_udp (stream);
6427         goto response_error;
6428     }
6429
6430     /* parse response transport */
6431     {
6432       gchar *resptrans = NULL;
6433       GstRTSPTransport transport = { 0 };
6434
6435       gst_rtsp_message_get_header (&response, GST_RTSP_HDR_TRANSPORT,
6436           &resptrans, 0);
6437       if (!resptrans) {
6438         gst_rtspsrc_stream_free_udp (stream);
6439         goto no_transport;
6440       }
6441
6442       /* parse transport, go to next stream on parse error */
6443       if (gst_rtsp_transport_parse (resptrans, &transport) != GST_RTSP_OK) {
6444         GST_WARNING_OBJECT (src, "failed to parse transport %s", resptrans);
6445         goto next;
6446       }
6447
6448       /* update allowed transports for other streams. once the transport of
6449        * one stream has been determined, we make sure that all other streams
6450        * are configured in the same way */
6451       switch (transport.lower_transport) {
6452         case GST_RTSP_LOWER_TRANS_TCP:
6453           GST_DEBUG_OBJECT (src, "stream %p as TCP interleaved", stream);
6454           protocols = GST_RTSP_LOWER_TRANS_TCP;
6455           src->interleaved = TRUE;
6456           /* update free channels */
6457           src->free_channel =
6458               MAX (transport.interleaved.min, src->free_channel);
6459           src->free_channel =
6460               MAX (transport.interleaved.max, src->free_channel);
6461           src->free_channel++;
6462           break;
6463         case GST_RTSP_LOWER_TRANS_UDP_MCAST:
6464           /* only allow multicast for other streams */
6465           GST_DEBUG_OBJECT (src, "stream %p as UDP multicast", stream);
6466           protocols = GST_RTSP_LOWER_TRANS_UDP_MCAST;
6467           /* if the server selected our ports, increment our counters so that
6468            * we select a new port later */
6469           if (src->next_port_num == transport.port.min &&
6470               src->next_port_num + 1 == transport.port.max) {
6471             src->next_port_num += 2;
6472           }
6473           break;
6474         case GST_RTSP_LOWER_TRANS_UDP:
6475           /* only allow unicast for other streams */
6476           GST_DEBUG_OBJECT (src, "stream %p as UDP unicast", stream);
6477           protocols = GST_RTSP_LOWER_TRANS_UDP;
6478           break;
6479         default:
6480           GST_DEBUG_OBJECT (src, "stream %p unknown transport %d", stream,
6481               transport.lower_transport);
6482           break;
6483       }
6484
6485       if (stream->container || (!src->interleaved && !retry)) {
6486         /* now configure the stream with the selected transport */
6487         if (!gst_rtspsrc_stream_configure_transport (stream, &transport)) {
6488           GST_DEBUG_OBJECT (src,
6489               "could not configure stream %p transport, skipping stream",
6490               stream);
6491           goto next;
6492         } else if (stream->udpsrc[0] && stream->udpsrc[1]) {
6493           /* retain the first allocated UDP port pair */
6494           g_object_get (G_OBJECT (stream->udpsrc[0]), "port", &rtpport, NULL);
6495           g_object_get (G_OBJECT (stream->udpsrc[1]), "port", &rtcpport, NULL);
6496         }
6497       }
6498       /* we need to activate at least one streams when we detect activity */
6499       src->need_activate = TRUE;
6500
6501       /* stream is setup now */
6502       stream->setup = TRUE;
6503       {
6504         GList *skip = walk;
6505
6506         while (TRUE) {
6507           GstRTSPStream *sskip;
6508
6509           skip = g_list_next (skip);
6510           if (skip == NULL)
6511             break;
6512
6513           sskip = (GstRTSPStream *) skip->data;
6514
6515           /* skip all streams with the same control url */
6516           if (g_str_equal (stream->conninfo.location, sskip->conninfo.location)) {
6517             GST_DEBUG_OBJECT (src, "found stream %p with same control %s",
6518                 sskip, sskip->conninfo.location);
6519             sskip->skipped = TRUE;
6520           }
6521         }
6522       }
6523     next:
6524       /* clean up our transport struct */
6525       gst_rtsp_transport_init (&transport);
6526       /* clean up used RTSP messages */
6527       gst_rtsp_message_unset (&request);
6528       gst_rtsp_message_unset (&response);
6529     }
6530   }
6531
6532   /* store the transport protocol that was configured */
6533   src->cur_protocols = protocols;
6534
6535   gst_rtsp_ext_list_stream_select (src->extensions, url);
6536
6537   /* if there is nothing to activate, error out */
6538   if (!src->need_activate)
6539     goto nothing_to_activate;
6540
6541   return res;
6542
6543   /* ERRORS */
6544 no_protocols:
6545   {
6546     /* no transport possible, post an error and stop */
6547     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
6548         ("Could not connect to server, no protocols left"));
6549     return GST_RTSP_ERROR;
6550   }
6551 no_streams:
6552   {
6553     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6554         ("SDP contains no streams"));
6555     return GST_RTSP_ERROR;
6556   }
6557 create_request_failed:
6558   {
6559     gchar *str = gst_rtsp_strresult (res);
6560
6561     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6562         ("Could not create request. (%s)", str));
6563     g_free (str);
6564     goto cleanup_error;
6565   }
6566 setup_transport_failed:
6567   {
6568     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6569         ("Could not setup transport."));
6570     res = GST_RTSP_ERROR;
6571     goto cleanup_error;
6572   }
6573 response_error:
6574   {
6575     const gchar *str = gst_rtsp_status_as_text (code);
6576
6577     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6578         ("Error (%d): %s", code, GST_STR_NULL (str)));
6579     res = GST_RTSP_ERROR;
6580     goto cleanup_error;
6581   }
6582 send_error:
6583   {
6584     gchar *str = gst_rtsp_strresult (res);
6585
6586     if (res != GST_RTSP_EINTR) {
6587       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6588           ("Could not send message. (%s)", str));
6589     } else {
6590       GST_WARNING_OBJECT (src, "send interrupted");
6591     }
6592     g_free (str);
6593     goto cleanup_error;
6594   }
6595 no_transport:
6596   {
6597     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6598         ("Server did not select transport."));
6599     res = GST_RTSP_ERROR;
6600     goto cleanup_error;
6601   }
6602 nothing_to_activate:
6603   {
6604     /* none of the available error codes is really right .. */
6605     if (unsupported_real) {
6606       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6607           (_("No supported stream was found. You might need to install a "
6608                   "GStreamer RTSP extension plugin for Real media streams.")),
6609           (NULL));
6610     } else {
6611       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6612           (_("No supported stream was found. You might need to allow "
6613                   "more transport protocols or may otherwise be missing "
6614                   "the right GStreamer RTSP extension plugin.")), (NULL));
6615     }
6616     return GST_RTSP_ERROR;
6617   }
6618 cleanup_error:
6619   {
6620     gst_rtsp_message_unset (&request);
6621     gst_rtsp_message_unset (&response);
6622     return res;
6623   }
6624 }
6625
6626 static gboolean
6627 gst_rtspsrc_parse_range (GstRTSPSrc * src, const gchar * range,
6628     GstSegment * segment)
6629 {
6630   gint64 seconds;
6631   GstRTSPTimeRange *therange;
6632
6633   if (src->range)
6634     gst_rtsp_range_free (src->range);
6635
6636   if (gst_rtsp_range_parse (range, &therange) == GST_RTSP_OK) {
6637     GST_DEBUG_OBJECT (src, "parsed range %s", range);
6638     src->range = therange;
6639   } else {
6640     GST_DEBUG_OBJECT (src, "failed to parse range %s", range);
6641     src->range = NULL;
6642     gst_segment_init (segment, GST_FORMAT_TIME);
6643     return FALSE;
6644   }
6645
6646   GST_DEBUG_OBJECT (src, "range: type %d, min %f - type %d,  max %f ",
6647       therange->min.type, therange->min.seconds, therange->max.type,
6648       therange->max.seconds);
6649
6650   if (therange->min.type == GST_RTSP_TIME_NOW)
6651     seconds = 0;
6652   else if (therange->min.type == GST_RTSP_TIME_END)
6653     seconds = 0;
6654   else
6655     seconds = therange->min.seconds * GST_SECOND;
6656
6657   GST_DEBUG_OBJECT (src, "range: min %" GST_TIME_FORMAT,
6658       GST_TIME_ARGS (seconds));
6659
6660   /* we need to start playback without clipping from the position reported by
6661    * the server */
6662   segment->start = seconds;
6663   segment->position = seconds;
6664
6665   if (therange->max.type == GST_RTSP_TIME_NOW)
6666     seconds = -1;
6667   else if (therange->max.type == GST_RTSP_TIME_END)
6668     seconds = -1;
6669   else
6670     seconds = therange->max.seconds * GST_SECOND;
6671
6672   GST_DEBUG_OBJECT (src, "range: max %" GST_TIME_FORMAT,
6673       GST_TIME_ARGS (seconds));
6674
6675   /* live (WMS) server might send overflowed large max as its idea of infinity,
6676    * compensate to prevent problems later on */
6677   if (seconds != -1 && seconds < 0) {
6678     seconds = -1;
6679     GST_DEBUG_OBJECT (src, "insane range, set to NONE");
6680   }
6681
6682   /* live (WMS) might send min == max, which is not worth recording */
6683   if (segment->duration == -1 && seconds == segment->start)
6684     seconds = -1;
6685
6686   /* don't change duration with unknown value, we might have a valid value
6687    * there that we want to keep. */
6688   if (seconds != -1)
6689     segment->duration = seconds;
6690
6691   return TRUE;
6692 }
6693
6694 /* Parse clock profived by the server with following syntax:
6695  *
6696  * "GstNetTimeProvider <wrapped-clock> <server-IP:port> <clock-time>"
6697  */
6698 static gboolean
6699 gst_rtspsrc_parse_gst_clock (GstRTSPSrc * src, const gchar * gstclock)
6700 {
6701   gboolean res = FALSE;
6702
6703   if (g_str_has_prefix (gstclock, "GstNetTimeProvider ")) {
6704     gchar **fields = NULL, **parts = NULL;
6705     gchar *remote_ip, *str;
6706     gint port;
6707     GstClockTime base_time;
6708     GstClock *netclock;
6709
6710     fields = g_strsplit (gstclock, " ", 0);
6711
6712     /* wrapped clock, not very interesting for now */
6713     if (fields[1] == NULL)
6714       goto cleanup;
6715
6716     /* remote IP address and port */
6717     if ((str = fields[2]) == NULL)
6718       goto cleanup;
6719
6720     parts = g_strsplit (str, ":", 0);
6721
6722     if ((remote_ip = parts[0]) == NULL)
6723       goto cleanup;
6724
6725     if ((str = parts[1]) == NULL)
6726       goto cleanup;
6727
6728     port = atoi (str);
6729     if (port == 0)
6730       goto cleanup;
6731
6732     /* base-time */
6733     if ((str = fields[3]) == NULL)
6734       goto cleanup;
6735
6736     base_time = g_ascii_strtoull (str, NULL, 10);
6737
6738     netclock =
6739         gst_net_client_clock_new ((gchar *) "GstRTSPClock", remote_ip, port,
6740         base_time);
6741
6742     if (src->provided_clock)
6743       gst_object_unref (src->provided_clock);
6744     src->provided_clock = netclock;
6745
6746     gst_element_post_message (GST_ELEMENT_CAST (src),
6747         gst_message_new_clock_provide (GST_OBJECT_CAST (src),
6748             src->provided_clock, TRUE));
6749
6750     res = TRUE;
6751   cleanup:
6752     g_strfreev (fields);
6753     g_strfreev (parts);
6754   }
6755   return res;
6756 }
6757
6758 /* must be called with the RTSP state lock */
6759 static GstRTSPResult
6760 gst_rtspsrc_open_from_sdp (GstRTSPSrc * src, GstSDPMessage * sdp,
6761     gboolean async)
6762 {
6763   GstRTSPResult res;
6764   gint i, n_streams;
6765
6766   /* prepare global stream caps properties */
6767   if (src->props)
6768     gst_structure_remove_all_fields (src->props);
6769   else
6770     src->props = gst_structure_new_empty ("RTSPProperties");
6771
6772   if (src->debug)
6773     gst_sdp_message_dump (sdp);
6774
6775   gst_rtsp_ext_list_parse_sdp (src->extensions, sdp, src->props);
6776
6777   /* let the app inspect and change the SDP */
6778   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_ON_SDP], 0, sdp);
6779
6780   gst_segment_init (&src->segment, GST_FORMAT_TIME);
6781
6782   /* parse range for duration reporting. */
6783   {
6784     const gchar *range;
6785
6786     for (i = 0;; i++) {
6787       range = gst_sdp_message_get_attribute_val_n (sdp, "range", i);
6788       if (range == NULL)
6789         break;
6790
6791       /* keep track of the range and configure it in the segment */
6792       if (gst_rtspsrc_parse_range (src, range, &src->segment))
6793         break;
6794     }
6795   }
6796   /* parse clock information. This is GStreamer specific, a server can tell the
6797    * client what clock it is using and wrap that in a network clock. The
6798    * advantage of that is that we can slave to it. */
6799   {
6800     const gchar *gstclock;
6801
6802     for (i = 0;; i++) {
6803       gstclock = gst_sdp_message_get_attribute_val_n (sdp, "x-gst-clock", i);
6804       if (gstclock == NULL)
6805         break;
6806
6807       /* parse the clock and expose it in the provide_clock method */
6808       if (gst_rtspsrc_parse_gst_clock (src, gstclock))
6809         break;
6810     }
6811   }
6812   /* try to find a global control attribute. Note that a '*' means that we should
6813    * do aggregate control with the current url (so we don't do anything and
6814    * leave the current connection as is) */
6815   {
6816     const gchar *control;
6817
6818     for (i = 0;; i++) {
6819       control = gst_sdp_message_get_attribute_val_n (sdp, "control", i);
6820       if (control == NULL)
6821         break;
6822
6823       /* only take fully qualified urls */
6824       if (g_str_has_prefix (control, "rtsp://"))
6825         break;
6826     }
6827     if (control) {
6828       g_free (src->conninfo.location);
6829       src->conninfo.location = g_strdup (control);
6830       /* make a connection for this, if there was a connection already, nothing
6831        * happens. */
6832       if (gst_rtsp_conninfo_connect (src, &src->conninfo, async) < 0) {
6833         GST_ERROR_OBJECT (src, "could not connect");
6834       }
6835     }
6836     /* we need to keep the control url separate from the connection url because
6837      * the rules for constructing the media control url need it */
6838     g_free (src->control);
6839     src->control = g_strdup (control);
6840   }
6841
6842   /* create streams */
6843   n_streams = gst_sdp_message_medias_len (sdp);
6844   for (i = 0; i < n_streams; i++) {
6845     gst_rtspsrc_create_stream (src, sdp, i);
6846   }
6847
6848   src->state = GST_RTSP_STATE_INIT;
6849
6850   /* setup streams */
6851   if ((res = gst_rtspsrc_setup_streams (src, async)) < 0)
6852     goto setup_failed;
6853
6854   /* reset our state */
6855   src->need_range = TRUE;
6856   src->skip = FALSE;
6857
6858   src->state = GST_RTSP_STATE_READY;
6859
6860   return res;
6861
6862   /* ERRORS */
6863 setup_failed:
6864   {
6865     GST_ERROR_OBJECT (src, "setup failed");
6866     gst_rtspsrc_cleanup (src);
6867     return res;
6868   }
6869 }
6870
6871 static GstRTSPResult
6872 gst_rtspsrc_retrieve_sdp (GstRTSPSrc * src, GstSDPMessage ** sdp,
6873     gboolean async)
6874 {
6875   GstRTSPResult res;
6876   GstRTSPMessage request = { 0 };
6877   GstRTSPMessage response = { 0 };
6878   guint8 *data;
6879   guint size;
6880   gchar *respcont = NULL;
6881
6882 restart:
6883   src->need_redirect = FALSE;
6884
6885   /* can't continue without a valid url */
6886   if (G_UNLIKELY (src->conninfo.url == NULL)) {
6887     res = GST_RTSP_EINVAL;
6888     goto no_url;
6889   }
6890   src->tried_url_auth = FALSE;
6891
6892   if ((res = gst_rtsp_conninfo_connect (src, &src->conninfo, async)) < 0)
6893     goto connect_failed;
6894
6895   /* create OPTIONS */
6896   GST_DEBUG_OBJECT (src, "create options...");
6897   res =
6898       gst_rtsp_message_init_request (&request, GST_RTSP_OPTIONS,
6899       src->conninfo.url_str);
6900   if (res < 0)
6901     goto create_request_failed;
6902
6903   /* send OPTIONS */
6904   GST_DEBUG_OBJECT (src, "send options...");
6905
6906   if (async)
6907     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving server options"));
6908
6909   if ((res =
6910           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
6911               NULL)) < 0)
6912     goto send_error;
6913
6914   /* parse OPTIONS */
6915   if (!gst_rtspsrc_parse_methods (src, &response))
6916     goto methods_error;
6917
6918   /* create DESCRIBE */
6919   GST_DEBUG_OBJECT (src, "create describe...");
6920   res =
6921       gst_rtsp_message_init_request (&request, GST_RTSP_DESCRIBE,
6922       src->conninfo.url_str);
6923   if (res < 0)
6924     goto create_request_failed;
6925
6926   /* we only accept SDP for now */
6927   gst_rtsp_message_add_header (&request, GST_RTSP_HDR_ACCEPT,
6928       "application/sdp");
6929
6930   /* send DESCRIBE */
6931   GST_DEBUG_OBJECT (src, "send describe...");
6932
6933   if (async)
6934     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving media info"));
6935
6936   if ((res =
6937           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
6938               NULL)) < 0)
6939     goto send_error;
6940
6941   /* we only perform redirect for the describe, currently */
6942   if (src->need_redirect) {
6943     /* close connection, we don't have to send a TEARDOWN yet, ignore the
6944      * result. */
6945     gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
6946
6947     gst_rtsp_message_unset (&request);
6948     gst_rtsp_message_unset (&response);
6949
6950     /* and now retry */
6951     goto restart;
6952   }
6953
6954   /* it could be that the DESCRIBE method was not implemented */
6955   if (!src->methods & GST_RTSP_DESCRIBE)
6956     goto no_describe;
6957
6958   /* check if reply is SDP */
6959   gst_rtsp_message_get_header (&response, GST_RTSP_HDR_CONTENT_TYPE, &respcont,
6960       0);
6961   /* could not be set but since the request returned OK, we assume it
6962    * was SDP, else check it. */
6963   if (respcont) {
6964     if (!g_ascii_strcasecmp (respcont, "application/sdp") == 0)
6965       goto wrong_content_type;
6966   }
6967
6968   /* get message body and parse as SDP */
6969   gst_rtsp_message_get_body (&response, &data, &size);
6970   if (data == NULL || size == 0)
6971     goto no_describe;
6972
6973   GST_DEBUG_OBJECT (src, "parse SDP...");
6974   gst_sdp_message_new (sdp);
6975   gst_sdp_message_parse_buffer (data, size, *sdp);
6976
6977   /* clean up any messages */
6978   gst_rtsp_message_unset (&request);
6979   gst_rtsp_message_unset (&response);
6980
6981   return res;
6982
6983   /* ERRORS */
6984 no_url:
6985   {
6986     GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL),
6987         ("No valid RTSP URL was provided"));
6988     goto cleanup_error;
6989   }
6990 connect_failed:
6991   {
6992     gchar *str = gst_rtsp_strresult (res);
6993
6994     if (res != GST_RTSP_EINTR) {
6995       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
6996           ("Failed to connect. (%s)", str));
6997     } else {
6998       GST_WARNING_OBJECT (src, "connect interrupted");
6999     }
7000     g_free (str);
7001     goto cleanup_error;
7002   }
7003 create_request_failed:
7004   {
7005     gchar *str = gst_rtsp_strresult (res);
7006
7007     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7008         ("Could not create request. (%s)", str));
7009     g_free (str);
7010     goto cleanup_error;
7011   }
7012 send_error:
7013   {
7014     /* Don't post a message - the rtsp_send method will have
7015      * taken care of it because we passed NULL for the response code */
7016     goto cleanup_error;
7017   }
7018 methods_error:
7019   {
7020     /* error was posted */
7021     res = GST_RTSP_ERROR;
7022     goto cleanup_error;
7023   }
7024 wrong_content_type:
7025   {
7026     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
7027         ("Server does not support SDP, got %s.", respcont));
7028     res = GST_RTSP_ERROR;
7029     goto cleanup_error;
7030   }
7031 no_describe:
7032   {
7033     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
7034         ("Server can not provide an SDP."));
7035     res = GST_RTSP_ERROR;
7036     goto cleanup_error;
7037   }
7038 cleanup_error:
7039   {
7040     if (src->conninfo.connection) {
7041       GST_DEBUG_OBJECT (src, "free connection");
7042       gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7043     }
7044     gst_rtsp_message_unset (&request);
7045     gst_rtsp_message_unset (&response);
7046     return res;
7047   }
7048 }
7049
7050 static GstRTSPResult
7051 gst_rtspsrc_open (GstRTSPSrc * src, gboolean async)
7052 {
7053   GstRTSPResult ret;
7054
7055   src->methods =
7056       GST_RTSP_SETUP | GST_RTSP_PLAY | GST_RTSP_PAUSE | GST_RTSP_TEARDOWN;
7057
7058   if (src->sdp == NULL) {
7059     if ((ret = gst_rtspsrc_retrieve_sdp (src, &src->sdp, async)) < 0)
7060       goto no_sdp;
7061   }
7062
7063   if ((ret = gst_rtspsrc_open_from_sdp (src, src->sdp, async)) < 0)
7064     goto open_failed;
7065
7066 done:
7067   if (async)
7068     gst_rtspsrc_loop_end_cmd (src, CMD_OPEN, ret);
7069
7070   return ret;
7071
7072   /* ERRORS */
7073 no_sdp:
7074   {
7075     GST_WARNING_OBJECT (src, "can't get sdp");
7076     src->open_error = TRUE;
7077     goto done;
7078   }
7079 open_failed:
7080   {
7081     GST_WARNING_OBJECT (src, "can't setup streaming from sdp");
7082     src->open_error = TRUE;
7083     goto done;
7084   }
7085 }
7086
7087 static GstRTSPResult
7088 gst_rtspsrc_close (GstRTSPSrc * src, gboolean async, gboolean only_close)
7089 {
7090   GstRTSPMessage request = { 0 };
7091   GstRTSPMessage response = { 0 };
7092   GstRTSPResult res = GST_RTSP_OK;
7093   GList *walk;
7094   const gchar *control;
7095
7096   GST_DEBUG_OBJECT (src, "TEARDOWN...");
7097
7098   gst_rtspsrc_set_state (src, GST_STATE_READY);
7099
7100   if (src->state < GST_RTSP_STATE_READY) {
7101     GST_DEBUG_OBJECT (src, "not ready, doing cleanup");
7102     goto close;
7103   }
7104
7105   if (only_close)
7106     goto close;
7107
7108   /* construct a control url */
7109   control = get_aggregate_control (src);
7110
7111   if (!(src->methods & (GST_RTSP_PLAY | GST_RTSP_TEARDOWN)))
7112     goto not_supported;
7113
7114   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7115     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7116     const gchar *setup_url;
7117     GstRTSPConnInfo *info;
7118
7119     /* try aggregate control first but do non-aggregate control otherwise */
7120     if (control)
7121       setup_url = control;
7122     else if ((setup_url = stream->conninfo.location) == NULL)
7123       continue;
7124
7125     if (src->conninfo.connection) {
7126       info = &src->conninfo;
7127     } else if (stream->conninfo.connection) {
7128       info = &stream->conninfo;
7129     } else {
7130       continue;
7131     }
7132     if (!info->connected)
7133       goto next;
7134
7135     /* do TEARDOWN */
7136     res =
7137         gst_rtsp_message_init_request (&request, GST_RTSP_TEARDOWN, setup_url);
7138     if (res < 0)
7139       goto create_request_failed;
7140
7141     if (async)
7142       GST_ELEMENT_PROGRESS (src, CONTINUE, "close", ("Closing stream"));
7143
7144     if ((res =
7145             gst_rtspsrc_send (src, info->connection, &request, &response,
7146                 NULL)) < 0)
7147       goto send_error;
7148
7149     /* FIXME, parse result? */
7150     gst_rtsp_message_unset (&request);
7151     gst_rtsp_message_unset (&response);
7152
7153   next:
7154     /* early exit when we did aggregate control */
7155     if (control)
7156       break;
7157   }
7158
7159 close:
7160   /* close connections */
7161   GST_DEBUG_OBJECT (src, "closing connection...");
7162   gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7163   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7164     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7165     gst_rtsp_conninfo_close (src, &stream->conninfo, TRUE);
7166   }
7167
7168   /* cleanup */
7169   gst_rtspsrc_cleanup (src);
7170
7171   src->state = GST_RTSP_STATE_INVALID;
7172
7173   if (async)
7174     gst_rtspsrc_loop_end_cmd (src, CMD_CLOSE, res);
7175
7176   return res;
7177
7178   /* ERRORS */
7179 create_request_failed:
7180   {
7181     gchar *str = gst_rtsp_strresult (res);
7182
7183     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7184         ("Could not create request. (%s)", str));
7185     g_free (str);
7186     goto close;
7187   }
7188 send_error:
7189   {
7190     gchar *str = gst_rtsp_strresult (res);
7191
7192     gst_rtsp_message_unset (&request);
7193     if (res != GST_RTSP_EINTR) {
7194       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7195           ("Could not send message. (%s)", str));
7196     } else {
7197       GST_WARNING_OBJECT (src, "TEARDOWN interrupted");
7198     }
7199     g_free (str);
7200     goto close;
7201   }
7202 not_supported:
7203   {
7204     GST_DEBUG_OBJECT (src,
7205         "TEARDOWN and PLAY not supported, can't do TEARDOWN");
7206     goto close;
7207   }
7208 }
7209
7210 /* RTP-Info is of the format:
7211  *
7212  * url=<URL>;[seq=<seqbase>;rtptime=<timebase>] [, url=...]
7213  *
7214  * rtptime corresponds to the timestamp for the NPT time given in the header
7215  * seqbase corresponds to the next sequence number we received. This number
7216  * indicates the first seqnum after the seek and should be used to discard
7217  * packets that are from before the seek.
7218  */
7219 static gboolean
7220 gst_rtspsrc_parse_rtpinfo (GstRTSPSrc * src, gchar * rtpinfo)
7221 {
7222   gchar **infos;
7223   gint i, j;
7224
7225   GST_DEBUG_OBJECT (src, "parsing RTP-Info %s", rtpinfo);
7226
7227   infos = g_strsplit (rtpinfo, ",", 0);
7228   for (i = 0; infos[i]; i++) {
7229     gchar **fields;
7230     GstRTSPStream *stream;
7231     gint32 seqbase;
7232     gint64 timebase;
7233
7234     GST_DEBUG_OBJECT (src, "parsing info %s", infos[i]);
7235
7236     /* init values, types of seqbase and timebase are bigger than needed so we
7237      * can store -1 as uninitialized values */
7238     stream = NULL;
7239     seqbase = -1;
7240     timebase = -1;
7241
7242     /* parse url, find stream for url.
7243      * parse seq and rtptime. The seq number should be configured in the rtp
7244      * depayloader or session manager to detect gaps. Same for the rtptime, it
7245      * should be used to create an initial time newsegment. */
7246     fields = g_strsplit (infos[i], ";", 0);
7247     for (j = 0; fields[j]; j++) {
7248       GST_DEBUG_OBJECT (src, "parsing field %s", fields[j]);
7249       /* remove leading whitespace */
7250       fields[j] = g_strchug (fields[j]);
7251       if (g_str_has_prefix (fields[j], "url=")) {
7252         /* get the url and the stream */
7253         stream =
7254             find_stream (src, (fields[j] + 4), (gpointer) find_stream_by_setup);
7255       } else if (g_str_has_prefix (fields[j], "seq=")) {
7256         seqbase = atoi (fields[j] + 4);
7257       } else if (g_str_has_prefix (fields[j], "rtptime=")) {
7258         timebase = g_ascii_strtoll (fields[j] + 8, NULL, 10);
7259       }
7260     }
7261     g_strfreev (fields);
7262     /* now we need to store the values for the caps of the stream */
7263     if (stream != NULL) {
7264       GST_DEBUG_OBJECT (src,
7265           "found stream %p, setting: seqbase %d, timebase %" G_GINT64_FORMAT,
7266           stream, seqbase, timebase);
7267
7268       /* we have a stream, configure detected params */
7269       stream->seqbase = seqbase;
7270       stream->timebase = timebase;
7271     }
7272   }
7273   g_strfreev (infos);
7274
7275   return TRUE;
7276 }
7277
7278 static void
7279 gst_rtspsrc_handle_rtcp_interval (GstRTSPSrc * src, gchar * rtcp)
7280 {
7281   guint64 interval;
7282   GList *walk;
7283
7284   interval = strtoul (rtcp, NULL, 10);
7285   GST_DEBUG_OBJECT (src, "rtcp interval: %" G_GUINT64_FORMAT " ms", interval);
7286
7287   if (!interval)
7288     return;
7289
7290   interval *= GST_MSECOND;
7291
7292   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7293     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7294
7295     /* already (optionally) retrieved this when configuring manager */
7296     if (stream->session) {
7297       GObject *rtpsession = stream->session;
7298
7299       GST_DEBUG_OBJECT (src, "configure rtcp interval in session %p",
7300           rtpsession);
7301       g_object_set (rtpsession, "rtcp-min-interval", interval, NULL);
7302     }
7303   }
7304
7305   /* now it happens that (Xenon) server sending this may also provide bogus
7306    * RTCP SR sync data (i.e. with quite some jitter), so never mind those
7307    * and just use RTP-Info to sync */
7308   if (src->manager) {
7309     GObjectClass *klass;
7310
7311     klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
7312     if (g_object_class_find_property (klass, "rtcp-sync")) {
7313       GST_DEBUG_OBJECT (src, "configuring rtp sync method");
7314       g_object_set (src->manager, "rtcp-sync", RTCP_SYNC_RTP, NULL);
7315     }
7316   }
7317 }
7318
7319 static gdouble
7320 gst_rtspsrc_get_float (const gchar * dstr)
7321 {
7322   gchar s[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7323
7324   /* canonicalise floating point string so we can handle float strings
7325    * in the form "24.930" or "24,930" irrespective of the current locale */
7326   g_strlcpy (s, dstr, sizeof (s));
7327   g_strdelimit (s, ",", '.');
7328   return g_ascii_strtod (s, NULL);
7329 }
7330
7331 static gchar *
7332 gen_range_header (GstRTSPSrc * src, GstSegment * segment)
7333 {
7334   gchar val_str[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7335
7336   if (src->range && src->range->min.type == GST_RTSP_TIME_NOW) {
7337     g_strlcpy (val_str, "now", sizeof (val_str));
7338   } else {
7339     if (segment->position == 0) {
7340       g_strlcpy (val_str, "0", sizeof (val_str));
7341     } else {
7342       g_ascii_dtostr (val_str, sizeof (val_str),
7343           ((gdouble) segment->position) / GST_SECOND);
7344     }
7345   }
7346   return g_strdup_printf ("npt=%s-", val_str);
7347 }
7348
7349 static void
7350 clear_rtp_base (GstRTSPSrc * src, GstRTSPStream * stream)
7351 {
7352   guint i, len;
7353
7354   stream->timebase = -1;
7355   stream->seqbase = -1;
7356
7357   len = stream->ptmap->len;
7358   for (i = 0; i < len; i++) {
7359     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
7360     GstStructure *s;
7361
7362     if (item->caps == NULL)
7363       continue;
7364
7365     item->caps = gst_caps_make_writable (item->caps);
7366     s = gst_caps_get_structure (item->caps, 0);
7367     gst_structure_remove_fields (s, "clock-base", "seqnum-base", NULL);
7368   }
7369 }
7370
7371 static GstRTSPResult
7372 gst_rtspsrc_ensure_open (GstRTSPSrc * src, gboolean async)
7373 {
7374   GstRTSPResult res = GST_RTSP_OK;
7375
7376   if (src->state < GST_RTSP_STATE_READY) {
7377     res = GST_RTSP_ERROR;
7378     if (src->open_error) {
7379       GST_DEBUG_OBJECT (src, "the stream was in error");
7380       goto done;
7381     }
7382     if (async)
7383       gst_rtspsrc_loop_start_cmd (src, CMD_OPEN);
7384
7385     if ((res = gst_rtspsrc_open (src, async)) < 0) {
7386       GST_DEBUG_OBJECT (src, "failed to open stream");
7387       goto done;
7388     }
7389   }
7390
7391 done:
7392   return res;
7393 }
7394
7395 static GstRTSPResult
7396 gst_rtspsrc_play (GstRTSPSrc * src, GstSegment * segment, gboolean async)
7397 {
7398   GstRTSPMessage request = { 0 };
7399   GstRTSPMessage response = { 0 };
7400   GstRTSPResult res = GST_RTSP_OK;
7401   GList *walk;
7402   gchar *hval;
7403   gint hval_idx;
7404   const gchar *control;
7405
7406   GST_DEBUG_OBJECT (src, "PLAY...");
7407
7408   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7409     goto open_failed;
7410
7411   if (!(src->methods & GST_RTSP_PLAY))
7412     goto not_supported;
7413
7414   if (src->state == GST_RTSP_STATE_PLAYING)
7415     goto was_playing;
7416
7417   if (!src->conninfo.connection || !src->conninfo.connected)
7418     goto done;
7419
7420   /* send some dummy packets before we activate the receive in the
7421    * udp sources */
7422   gst_rtspsrc_send_dummy_packets (src);
7423
7424   /* require new SR packets */
7425   if (src->manager)
7426     g_signal_emit_by_name (src->manager, "reset-sync", NULL);
7427
7428   /* construct a control url */
7429   control = get_aggregate_control (src);
7430
7431   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7432     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7433     const gchar *setup_url;
7434     GstRTSPConnection *conn;
7435
7436     /* try aggregate control first but do non-aggregate control otherwise */
7437     if (control)
7438       setup_url = control;
7439     else if ((setup_url = stream->conninfo.location) == NULL)
7440       continue;
7441
7442     if (src->conninfo.connection) {
7443       conn = src->conninfo.connection;
7444     } else if (stream->conninfo.connection) {
7445       conn = stream->conninfo.connection;
7446     } else {
7447       continue;
7448     }
7449
7450     /* do play */
7451     res = gst_rtsp_message_init_request (&request, GST_RTSP_PLAY, setup_url);
7452     if (res < 0)
7453       goto create_request_failed;
7454
7455     if (src->need_range) {
7456       hval = gen_range_header (src, segment);
7457
7458       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_RANGE, hval);
7459
7460       /* store the newsegment event so it can be sent from the streaming thread. */
7461       if (src->start_segment)
7462         gst_event_unref (src->start_segment);
7463       src->start_segment = gst_event_new_segment (segment);
7464     }
7465
7466     if (segment->rate != 1.0) {
7467       gchar hval[G_ASCII_DTOSTR_BUF_SIZE];
7468
7469       g_ascii_dtostr (hval, sizeof (hval), segment->rate);
7470       if (src->skip)
7471         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SCALE, hval);
7472       else
7473         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SPEED, hval);
7474     }
7475
7476     if (async)
7477       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("Sending PLAY request"));
7478
7479     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7480       goto send_error;
7481
7482     /* seek may have silently failed as it is not supported */
7483     if (!(src->methods & GST_RTSP_PLAY)) {
7484       GST_DEBUG_OBJECT (src, "PLAY Range not supported; re-enable PLAY");
7485       /* obviously it is supported as we made it here */
7486       src->methods |= GST_RTSP_PLAY;
7487       src->seekable = FALSE;
7488       /* but there is nothing to parse in the response,
7489        * so convey we have no idea and not to expect anything particular */
7490       clear_rtp_base (src, stream);
7491       if (control) {
7492         GList *run;
7493
7494         /* need to do for all streams */
7495         for (run = src->streams; run; run = g_list_next (run))
7496           clear_rtp_base (src, (GstRTSPStream *) run->data);
7497       }
7498       /* NOTE the above also disables npt based eos detection */
7499       /* and below forces position to 0,
7500        * which is visible feedback we lost the plot */
7501       segment->start = segment->position = src->last_pos;
7502     }
7503
7504     gst_rtsp_message_unset (&request);
7505
7506     /* parse RTP npt field. This is the current position in the stream (Normal
7507      * Play Time) and should be put in the NEWSEGMENT position field. */
7508     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RANGE, &hval,
7509             0) == GST_RTSP_OK)
7510       gst_rtspsrc_parse_range (src, hval, segment);
7511
7512     /* assume 1.0 rate now, overwrite when the SCALE or SPEED headers are present. */
7513     segment->rate = 1.0;
7514
7515     /* parse Speed header. This is the intended playback rate of the stream
7516      * and should be put in the NEWSEGMENT rate field. */
7517     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SPEED, &hval,
7518             0) == GST_RTSP_OK) {
7519       segment->rate = gst_rtspsrc_get_float (hval);
7520     } else if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SCALE,
7521             &hval, 0) == GST_RTSP_OK) {
7522       segment->rate = gst_rtspsrc_get_float (hval);
7523     }
7524
7525     /* parse the RTP-Info header field (if ANY) to get the base seqnum and timestamp
7526      * for the RTP packets. If this is not present, we assume all starts from 0...
7527      * This is info for the RTP session manager that we pass to it in caps. */
7528     hval_idx = 0;
7529     while (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTP_INFO,
7530             &hval, hval_idx++) == GST_RTSP_OK)
7531       gst_rtspsrc_parse_rtpinfo (src, hval);
7532
7533     /* some servers indicate RTCP parameters in PLAY response,
7534      * rather than properly in SDP */
7535     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTCP_INTERVAL,
7536             &hval, 0) == GST_RTSP_OK)
7537       gst_rtspsrc_handle_rtcp_interval (src, hval);
7538
7539     gst_rtsp_message_unset (&response);
7540
7541     /* early exit when we did aggregate control */
7542     if (control)
7543       break;
7544   }
7545   /* configure the caps of the streams after we parsed all headers. Only reset
7546    * the manager object when we set a new Range header (we did a seek) */
7547   gst_rtspsrc_configure_caps (src, segment, src->need_range);
7548
7549   /* set to PLAYING after we have configured the caps, otherwise we
7550    * might end up calling request_key (with SRTP) while caps are still
7551    * being configured. */
7552   gst_rtspsrc_set_state (src, GST_STATE_PLAYING);
7553
7554   /* set again when needed */
7555   src->need_range = FALSE;
7556
7557   src->running = TRUE;
7558   src->base_time = -1;
7559   src->state = GST_RTSP_STATE_PLAYING;
7560
7561   /* mark discont */
7562   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
7563   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7564     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7565     stream->discont = TRUE;
7566   }
7567
7568 done:
7569   if (async)
7570     gst_rtspsrc_loop_end_cmd (src, CMD_PLAY, res);
7571
7572   return res;
7573
7574   /* ERRORS */
7575 open_failed:
7576   {
7577     GST_DEBUG_OBJECT (src, "failed to open stream");
7578     goto done;
7579   }
7580 not_supported:
7581   {
7582     GST_DEBUG_OBJECT (src, "PLAY is not supported");
7583     goto done;
7584   }
7585 was_playing:
7586   {
7587     GST_DEBUG_OBJECT (src, "we were already PLAYING");
7588     goto done;
7589   }
7590 create_request_failed:
7591   {
7592     gchar *str = gst_rtsp_strresult (res);
7593
7594     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7595         ("Could not create request. (%s)", str));
7596     g_free (str);
7597     goto done;
7598   }
7599 send_error:
7600   {
7601     gchar *str = gst_rtsp_strresult (res);
7602
7603     gst_rtsp_message_unset (&request);
7604     if (res != GST_RTSP_EINTR) {
7605       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7606           ("Could not send message. (%s)", str));
7607     } else {
7608       GST_WARNING_OBJECT (src, "PLAY interrupted");
7609     }
7610     g_free (str);
7611     goto done;
7612   }
7613 }
7614
7615 static GstRTSPResult
7616 gst_rtspsrc_pause (GstRTSPSrc * src, gboolean async)
7617 {
7618   GstRTSPResult res = GST_RTSP_OK;
7619   GstRTSPMessage request = { 0 };
7620   GstRTSPMessage response = { 0 };
7621   GList *walk;
7622   const gchar *control;
7623
7624   GST_DEBUG_OBJECT (src, "PAUSE...");
7625
7626   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7627     goto open_failed;
7628
7629   if (!(src->methods & GST_RTSP_PAUSE))
7630     goto not_supported;
7631
7632   if (src->state == GST_RTSP_STATE_READY)
7633     goto was_paused;
7634
7635   if (!src->conninfo.connection || !src->conninfo.connected)
7636     goto no_connection;
7637
7638   /* construct a control url */
7639   control = get_aggregate_control (src);
7640
7641   /* loop over the streams. We might exit the loop early when we could do an
7642    * aggregate control */
7643   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7644     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7645     GstRTSPConnection *conn;
7646     const gchar *setup_url;
7647
7648     /* try aggregate control first but do non-aggregate control otherwise */
7649     if (control)
7650       setup_url = control;
7651     else if ((setup_url = stream->conninfo.location) == NULL)
7652       continue;
7653
7654     if (src->conninfo.connection) {
7655       conn = src->conninfo.connection;
7656     } else if (stream->conninfo.connection) {
7657       conn = stream->conninfo.connection;
7658     } else {
7659       continue;
7660     }
7661
7662     if (async)
7663       GST_ELEMENT_PROGRESS (src, CONTINUE, "request",
7664           ("Sending PAUSE request"));
7665
7666     if ((res =
7667             gst_rtsp_message_init_request (&request, GST_RTSP_PAUSE,
7668                 setup_url)) < 0)
7669       goto create_request_failed;
7670
7671     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7672       goto send_error;
7673
7674     gst_rtsp_message_unset (&request);
7675     gst_rtsp_message_unset (&response);
7676
7677     /* exit early when we did agregate control */
7678     if (control)
7679       break;
7680   }
7681
7682   /* change element states now */
7683   gst_rtspsrc_set_state (src, GST_STATE_PAUSED);
7684
7685 no_connection:
7686   src->state = GST_RTSP_STATE_READY;
7687
7688 done:
7689   if (async)
7690     gst_rtspsrc_loop_end_cmd (src, CMD_PAUSE, res);
7691
7692   return res;
7693
7694   /* ERRORS */
7695 open_failed:
7696   {
7697     GST_DEBUG_OBJECT (src, "failed to open stream");
7698     goto done;
7699   }
7700 not_supported:
7701   {
7702     GST_DEBUG_OBJECT (src, "PAUSE is not supported");
7703     goto done;
7704   }
7705 was_paused:
7706   {
7707     GST_DEBUG_OBJECT (src, "we were already PAUSED");
7708     goto done;
7709   }
7710 create_request_failed:
7711   {
7712     gchar *str = gst_rtsp_strresult (res);
7713
7714     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7715         ("Could not create request. (%s)", str));
7716     g_free (str);
7717     goto done;
7718   }
7719 send_error:
7720   {
7721     gchar *str = gst_rtsp_strresult (res);
7722
7723     gst_rtsp_message_unset (&request);
7724     if (res != GST_RTSP_EINTR) {
7725       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7726           ("Could not send message. (%s)", str));
7727     } else {
7728       GST_WARNING_OBJECT (src, "PAUSE interrupted");
7729     }
7730     g_free (str);
7731     goto done;
7732   }
7733 }
7734
7735 static void
7736 gst_rtspsrc_handle_message (GstBin * bin, GstMessage * message)
7737 {
7738   GstRTSPSrc *rtspsrc;
7739
7740   rtspsrc = GST_RTSPSRC (bin);
7741
7742   switch (GST_MESSAGE_TYPE (message)) {
7743     case GST_MESSAGE_EOS:
7744       gst_message_unref (message);
7745       break;
7746     case GST_MESSAGE_ELEMENT:
7747     {
7748       const GstStructure *s = gst_message_get_structure (message);
7749
7750       if (gst_structure_has_name (s, "GstUDPSrcTimeout")) {
7751         gboolean ignore_timeout;
7752
7753         GST_DEBUG_OBJECT (bin, "timeout on UDP port");
7754
7755         GST_OBJECT_LOCK (rtspsrc);
7756         ignore_timeout = rtspsrc->ignore_timeout;
7757         rtspsrc->ignore_timeout = TRUE;
7758         GST_OBJECT_UNLOCK (rtspsrc);
7759
7760         /* we only act on the first udp timeout message, others are irrelevant
7761          * and can be ignored. */
7762         if (!ignore_timeout)
7763           gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_RECONNECT, CMD_LOOP);
7764         /* eat and free */
7765         gst_message_unref (message);
7766         return;
7767       }
7768       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7769       break;
7770     }
7771     case GST_MESSAGE_ERROR:
7772     {
7773       GstObject *udpsrc;
7774       GstRTSPStream *stream;
7775       GstFlowReturn ret;
7776
7777       udpsrc = GST_MESSAGE_SRC (message);
7778
7779       GST_DEBUG_OBJECT (rtspsrc, "got error from %s",
7780           GST_ELEMENT_NAME (udpsrc));
7781
7782       stream = find_stream (rtspsrc, udpsrc, (gpointer) find_stream_by_udpsrc);
7783       if (!stream)
7784         goto forward;
7785
7786       /* we ignore the RTCP udpsrc */
7787       if (stream->udpsrc[1] == GST_ELEMENT_CAST (udpsrc))
7788         goto done;
7789
7790       /* if we get error messages from the udp sources, that's not a problem as
7791        * long as not all of them error out. We also don't really know what the
7792        * problem is, the message does not give enough detail... */
7793       ret = gst_rtspsrc_combine_flows (rtspsrc, stream, GST_FLOW_NOT_LINKED);
7794       GST_DEBUG_OBJECT (rtspsrc, "combined flows: %s", gst_flow_get_name (ret));
7795       if (ret != GST_FLOW_OK)
7796         goto forward;
7797
7798     done:
7799       gst_message_unref (message);
7800       break;
7801
7802     forward:
7803       /* fatal but not our message, forward */
7804       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7805       break;
7806     }
7807     default:
7808     {
7809       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7810       break;
7811     }
7812   }
7813 }
7814
7815 /* the thread where everything happens */
7816 static void
7817 gst_rtspsrc_thread (GstRTSPSrc * src)
7818 {
7819   gint cmd;
7820
7821   GST_OBJECT_LOCK (src);
7822   cmd = src->pending_cmd;
7823   if (cmd == CMD_RECONNECT || cmd == CMD_PLAY || cmd == CMD_PAUSE
7824       || cmd == CMD_LOOP || cmd == CMD_OPEN)
7825     src->pending_cmd = CMD_LOOP;
7826   else
7827     src->pending_cmd = CMD_WAIT;
7828   GST_DEBUG_OBJECT (src, "got command %d", cmd);
7829
7830   /* we got the message command, so ensure communication is possible again */
7831   gst_rtspsrc_connection_flush (src, FALSE);
7832
7833   src->busy_cmd = cmd;
7834   GST_OBJECT_UNLOCK (src);
7835
7836   switch (cmd) {
7837     case CMD_OPEN:
7838       gst_rtspsrc_open (src, TRUE);
7839       break;
7840     case CMD_PLAY:
7841       gst_rtspsrc_play (src, &src->segment, TRUE);
7842       break;
7843     case CMD_PAUSE:
7844       gst_rtspsrc_pause (src, TRUE);
7845       break;
7846     case CMD_CLOSE:
7847       gst_rtspsrc_close (src, TRUE, FALSE);
7848       break;
7849     case CMD_LOOP:
7850       gst_rtspsrc_loop (src);
7851       break;
7852     case CMD_RECONNECT:
7853       gst_rtspsrc_reconnect (src, FALSE);
7854       break;
7855     default:
7856       break;
7857   }
7858
7859   GST_OBJECT_LOCK (src);
7860   /* and go back to sleep */
7861   if (src->pending_cmd == CMD_WAIT) {
7862     if (src->task)
7863       gst_task_pause (src->task);
7864   }
7865   /* reset waiting */
7866   src->busy_cmd = CMD_WAIT;
7867   GST_OBJECT_UNLOCK (src);
7868 }
7869
7870 static gboolean
7871 gst_rtspsrc_start (GstRTSPSrc * src)
7872 {
7873   GST_DEBUG_OBJECT (src, "starting");
7874
7875   GST_OBJECT_LOCK (src);
7876
7877   src->pending_cmd = CMD_WAIT;
7878
7879   if (src->task == NULL) {
7880     src->task = gst_task_new ((GstTaskFunction) gst_rtspsrc_thread, src, NULL);
7881     if (src->task == NULL)
7882       goto task_error;
7883
7884     gst_task_set_lock (src->task, GST_RTSP_STREAM_GET_LOCK (src));
7885   }
7886   GST_OBJECT_UNLOCK (src);
7887
7888   return TRUE;
7889
7890   /* ERRORS */
7891 task_error:
7892   {
7893     GST_OBJECT_UNLOCK (src);
7894     GST_ERROR_OBJECT (src, "failed to create task");
7895     return FALSE;
7896   }
7897 }
7898
7899 static gboolean
7900 gst_rtspsrc_stop (GstRTSPSrc * src)
7901 {
7902   GstTask *task;
7903
7904   GST_DEBUG_OBJECT (src, "stopping");
7905
7906   /* also cancels pending task */
7907   gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_ALL);
7908
7909   GST_OBJECT_LOCK (src);
7910   if ((task = src->task)) {
7911     src->task = NULL;
7912     GST_OBJECT_UNLOCK (src);
7913
7914     gst_task_stop (task);
7915
7916     /* make sure it is not running */
7917     GST_RTSP_STREAM_LOCK (src);
7918     GST_RTSP_STREAM_UNLOCK (src);
7919
7920     /* now wait for the task to finish */
7921     gst_task_join (task);
7922
7923     /* and free the task */
7924     gst_object_unref (GST_OBJECT (task));
7925
7926     GST_OBJECT_LOCK (src);
7927   }
7928   GST_OBJECT_UNLOCK (src);
7929
7930   /* ensure synchronously all is closed and clean */
7931   gst_rtspsrc_close (src, FALSE, TRUE);
7932
7933   return TRUE;
7934 }
7935
7936 static GstStateChangeReturn
7937 gst_rtspsrc_change_state (GstElement * element, GstStateChange transition)
7938 {
7939   GstRTSPSrc *rtspsrc;
7940   GstStateChangeReturn ret;
7941
7942   rtspsrc = GST_RTSPSRC (element);
7943
7944   switch (transition) {
7945     case GST_STATE_CHANGE_NULL_TO_READY:
7946       if (!gst_rtspsrc_start (rtspsrc))
7947         goto start_failed;
7948       break;
7949     case GST_STATE_CHANGE_READY_TO_PAUSED:
7950       /* init some state */
7951       rtspsrc->cur_protocols = rtspsrc->protocols;
7952       /* first attempt, don't ignore timeouts */
7953       rtspsrc->ignore_timeout = FALSE;
7954       rtspsrc->open_error = FALSE;
7955       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_OPEN, 0);
7956       break;
7957     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
7958       set_manager_buffer_mode (rtspsrc);
7959       /* fall-through */
7960     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
7961       /* unblock the tcp tasks and make the loop waiting */
7962       if (gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_WAIT, CMD_LOOP)) {
7963         /* make sure it is waiting before we send PAUSE or PLAY below */
7964         GST_RTSP_STREAM_LOCK (rtspsrc);
7965         GST_RTSP_STREAM_UNLOCK (rtspsrc);
7966       }
7967       break;
7968     case GST_STATE_CHANGE_PAUSED_TO_READY:
7969       break;
7970     default:
7971       break;
7972   }
7973
7974   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
7975   if (ret == GST_STATE_CHANGE_FAILURE)
7976     goto done;
7977
7978   switch (transition) {
7979     case GST_STATE_CHANGE_NULL_TO_READY:
7980       ret = GST_STATE_CHANGE_SUCCESS;
7981       break;
7982     case GST_STATE_CHANGE_READY_TO_PAUSED:
7983       ret = GST_STATE_CHANGE_NO_PREROLL;
7984       break;
7985     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
7986       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PLAY, 0);
7987       ret = GST_STATE_CHANGE_SUCCESS;
7988       break;
7989     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
7990       /* send pause request and keep the idle task around */
7991       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PAUSE, CMD_LOOP);
7992       ret = GST_STATE_CHANGE_NO_PREROLL;
7993       break;
7994     case GST_STATE_CHANGE_PAUSED_TO_READY:
7995       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_CLOSE, CMD_PAUSE);
7996       ret = GST_STATE_CHANGE_SUCCESS;
7997       break;
7998     case GST_STATE_CHANGE_READY_TO_NULL:
7999       gst_rtspsrc_stop (rtspsrc);
8000       ret = GST_STATE_CHANGE_SUCCESS;
8001       break;
8002     default:
8003       break;
8004   }
8005
8006 done:
8007   return ret;
8008
8009 start_failed:
8010   {
8011     GST_DEBUG_OBJECT (rtspsrc, "start failed");
8012     return GST_STATE_CHANGE_FAILURE;
8013   }
8014 }
8015
8016 static gboolean
8017 gst_rtspsrc_send_event (GstElement * element, GstEvent * event)
8018 {
8019   gboolean res;
8020   GstRTSPSrc *rtspsrc;
8021
8022   rtspsrc = GST_RTSPSRC (element);
8023
8024   if (GST_EVENT_IS_DOWNSTREAM (event)) {
8025     res = gst_rtspsrc_push_event (rtspsrc, event);
8026   } else {
8027     res = GST_ELEMENT_CLASS (parent_class)->send_event (element, event);
8028   }
8029
8030   return res;
8031 }
8032
8033
8034 /*** GSTURIHANDLER INTERFACE *************************************************/
8035
8036 static GstURIType
8037 gst_rtspsrc_uri_get_type (GType type)
8038 {
8039   return GST_URI_SRC;
8040 }
8041
8042 static const gchar *const *
8043 gst_rtspsrc_uri_get_protocols (GType type)
8044 {
8045   static const gchar *protocols[] =
8046       { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp",
8047     "rtsps", "rtspsu", "rtspst", "rtspsh", NULL
8048   };
8049
8050   return protocols;
8051 }
8052
8053 static gchar *
8054 gst_rtspsrc_uri_get_uri (GstURIHandler * handler)
8055 {
8056   GstRTSPSrc *src = GST_RTSPSRC (handler);
8057
8058   /* FIXME: make thread-safe */
8059   return g_strdup (src->conninfo.location);
8060 }
8061
8062 static gboolean
8063 gst_rtspsrc_uri_set_uri (GstURIHandler * handler, const gchar * uri,
8064     GError ** error)
8065 {
8066   GstRTSPSrc *src;
8067   GstRTSPResult res;
8068   GstSDPResult sres;
8069   GstRTSPUrl *newurl = NULL;
8070   GstSDPMessage *sdp = NULL;
8071
8072   src = GST_RTSPSRC (handler);
8073
8074   /* same URI, we're fine */
8075   if (src->conninfo.location && uri && !strcmp (uri, src->conninfo.location))
8076     goto was_ok;
8077
8078   if (g_str_has_prefix (uri, "rtsp-sdp://")) {
8079     sres = gst_sdp_message_new (&sdp);
8080     if (sres < 0)
8081       goto sdp_failed;
8082
8083     GST_DEBUG_OBJECT (src, "parsing SDP message");
8084     sres = gst_sdp_message_parse_uri (uri, sdp);
8085     if (sres < 0)
8086       goto invalid_sdp;
8087   } else {
8088     /* try to parse */
8089     GST_DEBUG_OBJECT (src, "parsing URI");
8090     if ((res = gst_rtsp_url_parse (uri, &newurl)) < 0)
8091       goto parse_error;
8092   }
8093
8094   /* if worked, free previous and store new url object along with the original
8095    * location. */
8096   GST_DEBUG_OBJECT (src, "configuring URI");
8097   g_free (src->conninfo.location);
8098   src->conninfo.location = g_strdup (uri);
8099   gst_rtsp_url_free (src->conninfo.url);
8100   src->conninfo.url = newurl;
8101   g_free (src->conninfo.url_str);
8102   if (newurl)
8103     src->conninfo.url_str = gst_rtsp_url_get_request_uri (src->conninfo.url);
8104   else
8105     src->conninfo.url_str = NULL;
8106
8107   if (src->sdp)
8108     gst_sdp_message_free (src->sdp);
8109   src->sdp = sdp;
8110   src->from_sdp = sdp != NULL;
8111
8112   GST_DEBUG_OBJECT (src, "set uri: %s", GST_STR_NULL (uri));
8113   GST_DEBUG_OBJECT (src, "request uri is: %s",
8114       GST_STR_NULL (src->conninfo.url_str));
8115
8116   return TRUE;
8117
8118   /* Special cases */
8119 was_ok:
8120   {
8121     GST_DEBUG_OBJECT (src, "URI was ok: '%s'", GST_STR_NULL (uri));
8122     return TRUE;
8123   }
8124 sdp_failed:
8125   {
8126     GST_ERROR_OBJECT (src, "Could not create new SDP (%d)", sres);
8127     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8128         "Could not create SDP");
8129     return FALSE;
8130   }
8131 invalid_sdp:
8132   {
8133     GST_ERROR_OBJECT (src, "Not a valid SDP (%d) '%s'", sres,
8134         GST_STR_NULL (uri));
8135     gst_sdp_message_free (sdp);
8136     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8137         "Invalid SDP");
8138     return FALSE;
8139   }
8140 parse_error:
8141   {
8142     GST_ERROR_OBJECT (src, "Not a valid RTSP url '%s' (%d)",
8143         GST_STR_NULL (uri), res);
8144     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8145         "Invalid RTSP URI");
8146     return FALSE;
8147   }
8148 }
8149
8150 static void
8151 gst_rtspsrc_uri_handler_init (gpointer g_iface, gpointer iface_data)
8152 {
8153   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
8154
8155   iface->get_type = gst_rtspsrc_uri_get_type;
8156   iface->get_protocols = gst_rtspsrc_uri_get_protocols;
8157   iface->get_uri = gst_rtspsrc_uri_get_uri;
8158   iface->set_uri = gst_rtspsrc_uri_set_uri;
8159 }