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