rtspsrc: pass the stream id when asking for crypto params
[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_free (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         return;
2332       }
2333     }
2334   }
2335
2336   src->last_pos = 0;
2337 }
2338
2339 static gboolean
2340 gst_rtspsrc_do_seek (GstRTSPSrc * src, GstSegment * segment)
2341 {
2342   src->state = GST_RTSP_STATE_SEEKING;
2343   /* PLAY will add the range header now. */
2344   src->need_range = TRUE;
2345
2346   return TRUE;
2347 }
2348
2349 static gboolean
2350 gst_rtspsrc_perform_seek (GstRTSPSrc * src, GstEvent * event)
2351 {
2352   gdouble rate;
2353   GstFormat format;
2354   GstSeekFlags flags;
2355   GstSeekType cur_type = GST_SEEK_TYPE_NONE, stop_type;
2356   gint64 cur, stop;
2357   gboolean flush, skip;
2358   gboolean update;
2359   gboolean playing;
2360   GstSegment seeksegment = { 0, };
2361   GList *walk;
2362
2363   if (event) {
2364     GST_DEBUG_OBJECT (src, "doing seek with event");
2365
2366     gst_event_parse_seek (event, &rate, &format, &flags,
2367         &cur_type, &cur, &stop_type, &stop);
2368
2369     /* no negative rates yet */
2370     if (rate < 0.0)
2371       goto negative_rate;
2372
2373     /* we need TIME format */
2374     if (format != src->segment.format)
2375       goto no_format;
2376   } else {
2377     GST_DEBUG_OBJECT (src, "doing seek without event");
2378     flags = 0;
2379     cur_type = GST_SEEK_TYPE_SET;
2380     stop_type = GST_SEEK_TYPE_SET;
2381   }
2382
2383   /* get flush flag */
2384   flush = flags & GST_SEEK_FLAG_FLUSH;
2385   skip = flags & GST_SEEK_FLAG_SKIP;
2386
2387   /* now we need to make sure the streaming thread is stopped. We do this by
2388    * either sending a FLUSH_START event downstream which will cause the
2389    * streaming thread to stop with a WRONG_STATE.
2390    * For a non-flushing seek we simply pause the task, which will happen as soon
2391    * as it completes one iteration (and thus might block when the sink is
2392    * blocking in preroll). */
2393   if (flush) {
2394     GST_DEBUG_OBJECT (src, "starting flush");
2395     gst_rtspsrc_flush (src, TRUE, FALSE);
2396   } else {
2397     if (src->task) {
2398       gst_task_pause (src->task);
2399     }
2400   }
2401
2402   /* we should now be able to grab the streaming thread because we stopped it
2403    * with the above flush/pause code */
2404   GST_RTSP_STREAM_LOCK (src);
2405
2406   GST_DEBUG_OBJECT (src, "stopped streaming");
2407
2408   /* stop flushing the rtsp connection so we can send PAUSE/PLAY below */
2409   gst_rtspsrc_connection_flush (src, FALSE);
2410
2411   /* copy segment, we need this because we still need the old
2412    * segment when we close the current segment. */
2413   memcpy (&seeksegment, &src->segment, sizeof (GstSegment));
2414
2415   /* configure the seek parameters in the seeksegment. We will then have the
2416    * right values in the segment to perform the seek */
2417   if (event) {
2418     GST_DEBUG_OBJECT (src, "configuring seek");
2419     gst_segment_do_seek (&seeksegment, rate, format, flags,
2420         cur_type, cur, stop_type, stop, &update);
2421   }
2422
2423   /* figure out the last position we need to play. If it's configured (stop !=
2424    * -1), use that, else we play until the total duration of the file */
2425   if ((stop = seeksegment.stop) == -1)
2426     stop = seeksegment.duration;
2427
2428   playing = (src->state == GST_RTSP_STATE_PLAYING);
2429
2430   /* if we were playing, pause first */
2431   if (playing) {
2432     /* obtain current position in case seek fails */
2433     gst_rtspsrc_get_position (src);
2434     gst_rtspsrc_pause (src, FALSE);
2435   }
2436   src->skip = skip;
2437
2438   gst_rtspsrc_do_seek (src, &seeksegment);
2439
2440   /* and continue playing */
2441   if (playing)
2442     gst_rtspsrc_play (src, &seeksegment, FALSE);
2443
2444   /* prepare for streaming again */
2445   if (flush) {
2446     /* if we started flush, we stop now */
2447     GST_DEBUG_OBJECT (src, "stopping flush");
2448     gst_rtspsrc_flush (src, FALSE, playing);
2449   }
2450
2451   /* now we did the seek and can activate the new segment values */
2452   memcpy (&src->segment, &seeksegment, sizeof (GstSegment));
2453
2454   /* if we're doing a segment seek, post a SEGMENT_START message */
2455   if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
2456     gst_element_post_message (GST_ELEMENT_CAST (src),
2457         gst_message_new_segment_start (GST_OBJECT_CAST (src),
2458             src->segment.format, src->segment.position));
2459   }
2460
2461   /* now create the newsegment */
2462   GST_DEBUG_OBJECT (src, "Creating newsegment from %" G_GINT64_FORMAT
2463       " to %" G_GINT64_FORMAT, src->segment.position, stop);
2464
2465   /* mark discont */
2466   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
2467   for (walk = src->streams; walk; walk = g_list_next (walk)) {
2468     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
2469     stream->discont = TRUE;
2470   }
2471
2472   GST_RTSP_STREAM_UNLOCK (src);
2473
2474   return TRUE;
2475
2476   /* ERRORS */
2477 negative_rate:
2478   {
2479     GST_DEBUG_OBJECT (src, "negative playback rates are not supported yet.");
2480     return FALSE;
2481   }
2482 no_format:
2483   {
2484     GST_DEBUG_OBJECT (src, "unsupported format given, seek aborted.");
2485     return FALSE;
2486   }
2487 }
2488
2489 static gboolean
2490 gst_rtspsrc_handle_src_event (GstPad * pad, GstObject * parent,
2491     GstEvent * event)
2492 {
2493   GstRTSPSrc *src;
2494   gboolean res = TRUE;
2495   gboolean forward;
2496
2497   src = GST_RTSPSRC_CAST (parent);
2498
2499   GST_DEBUG_OBJECT (src, "pad %s:%s received event %s",
2500       GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
2501
2502   switch (GST_EVENT_TYPE (event)) {
2503     case GST_EVENT_SEEK:
2504       res = gst_rtspsrc_perform_seek (src, event);
2505       forward = FALSE;
2506       break;
2507     case GST_EVENT_QOS:
2508     case GST_EVENT_NAVIGATION:
2509     case GST_EVENT_LATENCY:
2510     default:
2511       forward = TRUE;
2512       break;
2513   }
2514   if (forward) {
2515     GstPad *target;
2516
2517     if ((target = gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (pad)))) {
2518       res = gst_pad_send_event (target, event);
2519       gst_object_unref (target);
2520     } else {
2521       gst_event_unref (event);
2522     }
2523   } else {
2524     gst_event_unref (event);
2525   }
2526
2527   return res;
2528 }
2529
2530 /* this is the final event function we receive on the internal source pad when
2531  * we deal with TCP connections */
2532 static gboolean
2533 gst_rtspsrc_handle_internal_src_event (GstPad * pad, GstObject * parent,
2534     GstEvent * event)
2535 {
2536   gboolean res;
2537
2538   GST_DEBUG_OBJECT (pad, "received event %s", GST_EVENT_TYPE_NAME (event));
2539
2540   switch (GST_EVENT_TYPE (event)) {
2541     case GST_EVENT_SEEK:
2542     case GST_EVENT_QOS:
2543     case GST_EVENT_NAVIGATION:
2544     case GST_EVENT_LATENCY:
2545     default:
2546       gst_event_unref (event);
2547       res = TRUE;
2548       break;
2549   }
2550   return res;
2551 }
2552
2553 /* this is the final query function we receive on the internal source pad when
2554  * we deal with TCP connections */
2555 static gboolean
2556 gst_rtspsrc_handle_internal_src_query (GstPad * pad, GstObject * parent,
2557     GstQuery * query)
2558 {
2559   GstRTSPSrc *src;
2560   gboolean res = TRUE;
2561
2562   src = GST_RTSPSRC_CAST (gst_pad_get_element_private (pad));
2563
2564   GST_DEBUG_OBJECT (src, "pad %s:%s received query %s",
2565       GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
2566
2567   switch (GST_QUERY_TYPE (query)) {
2568     case GST_QUERY_POSITION:
2569     {
2570       /* no idea */
2571       break;
2572     }
2573     case GST_QUERY_DURATION:
2574     {
2575       GstFormat format;
2576
2577       gst_query_parse_duration (query, &format, NULL);
2578
2579       switch (format) {
2580         case GST_FORMAT_TIME:
2581           gst_query_set_duration (query, format, src->segment.duration);
2582           break;
2583         default:
2584           res = FALSE;
2585           break;
2586       }
2587       break;
2588     }
2589     case GST_QUERY_LATENCY:
2590     {
2591       /* we are live with a min latency of 0 and unlimited max latency, this
2592        * result will be updated by the session manager if there is any. */
2593       gst_query_set_latency (query, TRUE, 0, -1);
2594       break;
2595     }
2596     default:
2597       break;
2598   }
2599
2600   return res;
2601 }
2602
2603 /* this query is executed on the ghost source pad exposed on rtspsrc. */
2604 static gboolean
2605 gst_rtspsrc_handle_src_query (GstPad * pad, GstObject * parent,
2606     GstQuery * query)
2607 {
2608   GstRTSPSrc *src;
2609   gboolean res = FALSE;
2610
2611   src = GST_RTSPSRC_CAST (parent);
2612
2613   GST_DEBUG_OBJECT (src, "pad %s:%s received query %s",
2614       GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
2615
2616   switch (GST_QUERY_TYPE (query)) {
2617     case GST_QUERY_DURATION:
2618     {
2619       GstFormat format;
2620
2621       gst_query_parse_duration (query, &format, NULL);
2622
2623       switch (format) {
2624         case GST_FORMAT_TIME:
2625           gst_query_set_duration (query, format, src->segment.duration);
2626           res = TRUE;
2627           break;
2628         default:
2629           break;
2630       }
2631       break;
2632     }
2633     case GST_QUERY_SEEKING:
2634     {
2635       GstFormat format;
2636
2637       gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
2638       if (format == GST_FORMAT_TIME) {
2639         gboolean seekable =
2640             src->cur_protocols != GST_RTSP_LOWER_TRANS_UDP_MCAST;
2641
2642         /* seeking without duration is unlikely */
2643         seekable = seekable && src->seekable && src->segment.duration &&
2644             GST_CLOCK_TIME_IS_VALID (src->segment.duration);
2645
2646         /* FIXME ?? should we have 0 and segment.duration here; see demuxers */
2647         gst_query_set_seeking (query, GST_FORMAT_TIME, seekable,
2648             src->segment.start, src->segment.stop);
2649         res = TRUE;
2650       }
2651       break;
2652     }
2653     case GST_QUERY_URI:
2654     {
2655       gchar *uri;
2656
2657       uri = gst_rtspsrc_uri_get_uri (GST_URI_HANDLER (src));
2658       if (uri != NULL) {
2659         gst_query_set_uri (query, uri);
2660         g_free (uri);
2661         res = TRUE;
2662       }
2663       break;
2664     }
2665     default:
2666     {
2667       GstPad *target = gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (pad));
2668
2669       /* forward the query to the proxy target pad */
2670       if (target) {
2671         res = gst_pad_query (target, query);
2672         gst_object_unref (target);
2673       }
2674       break;
2675     }
2676   }
2677
2678   return res;
2679 }
2680
2681 /* callback for RTCP messages to be sent to the server when operating in TCP
2682  * mode. */
2683 static GstFlowReturn
2684 gst_rtspsrc_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
2685 {
2686   GstRTSPSrc *src;
2687   GstRTSPStream *stream;
2688   GstFlowReturn res = GST_FLOW_OK;
2689   GstMapInfo map;
2690   guint8 *data;
2691   guint size;
2692   GstRTSPResult ret;
2693   GstRTSPMessage message = { 0 };
2694   GstRTSPConnection *conn;
2695
2696   stream = (GstRTSPStream *) gst_pad_get_element_private (pad);
2697   src = stream->parent;
2698
2699   gst_buffer_map (buffer, &map, GST_MAP_READ);
2700   size = map.size;
2701   data = map.data;
2702
2703   gst_rtsp_message_init_data (&message, stream->channel[1]);
2704
2705   /* lend the body data to the message */
2706   gst_rtsp_message_take_body (&message, data, size);
2707
2708   if (stream->conninfo.connection)
2709     conn = stream->conninfo.connection;
2710   else
2711     conn = src->conninfo.connection;
2712
2713   GST_DEBUG_OBJECT (src, "sending %u bytes RTCP", size);
2714   ret = gst_rtspsrc_connection_send (src, conn, &message, NULL);
2715   GST_DEBUG_OBJECT (src, "sent RTCP, %d", ret);
2716
2717   /* and steal it away again because we will free it when unreffing the
2718    * buffer */
2719   gst_rtsp_message_steal_body (&message, &data, &size);
2720   gst_rtsp_message_unset (&message);
2721
2722   gst_buffer_unmap (buffer, &map);
2723   gst_buffer_unref (buffer);
2724
2725   return res;
2726 }
2727
2728 static GstPadProbeReturn
2729 pad_blocked (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
2730 {
2731   GstRTSPSrc *src = user_data;
2732
2733   GST_DEBUG_OBJECT (src, "pad %s:%s blocked, activating streams",
2734       GST_DEBUG_PAD_NAME (pad));
2735
2736   /* activate the streams */
2737   GST_OBJECT_LOCK (src);
2738   if (!src->need_activate)
2739     goto was_ok;
2740
2741   src->need_activate = FALSE;
2742   GST_OBJECT_UNLOCK (src);
2743
2744   gst_rtspsrc_activate_streams (src);
2745
2746   return GST_PAD_PROBE_OK;
2747
2748 was_ok:
2749   {
2750     GST_OBJECT_UNLOCK (src);
2751     return GST_PAD_PROBE_OK;
2752   }
2753 }
2754
2755 static gboolean
2756 copy_sticky_events (GstPad * pad, GstEvent ** event, gpointer user_data)
2757 {
2758   GstPad *gpad = GST_PAD_CAST (user_data);
2759
2760   GST_DEBUG_OBJECT (gpad, "store sticky event %" GST_PTR_FORMAT, *event);
2761   gst_pad_store_sticky_event (gpad, *event);
2762
2763   return TRUE;
2764 }
2765
2766 /* this callback is called when the session manager generated a new src pad with
2767  * payloaded RTP packets. We simply ghost the pad here. */
2768 static void
2769 new_manager_pad (GstElement * manager, GstPad * pad, GstRTSPSrc * src)
2770 {
2771   gchar *name;
2772   GstPadTemplate *template;
2773   gint id, ssrc, pt;
2774   GList *ostreams;
2775   GstRTSPStream *stream;
2776   gboolean all_added;
2777
2778   GST_DEBUG_OBJECT (src, "got new manager pad %" GST_PTR_FORMAT, pad);
2779
2780   GST_RTSP_STATE_LOCK (src);
2781   /* find stream */
2782   name = gst_object_get_name (GST_OBJECT_CAST (pad));
2783   if (sscanf (name, "recv_rtp_src_%u_%u_%u", &id, &ssrc, &pt) != 3)
2784     goto unknown_stream;
2785
2786   GST_DEBUG_OBJECT (src, "stream: %u, SSRC %08x, PT %d", id, ssrc, pt);
2787
2788   stream = find_stream (src, &id, (gpointer) find_stream_by_id);
2789   if (stream == NULL)
2790     goto unknown_stream;
2791
2792   /* save SSRC */
2793   stream->ssrc = ssrc;
2794
2795   /* we'll add it later see below */
2796   stream->added = TRUE;
2797
2798   /* check if we added all streams */
2799   all_added = TRUE;
2800   for (ostreams = src->streams; ostreams; ostreams = g_list_next (ostreams)) {
2801     GstRTSPStream *ostream = (GstRTSPStream *) ostreams->data;
2802
2803     GST_DEBUG_OBJECT (src, "stream %p, container %d, added %d, setup %d",
2804         ostream, ostream->container, ostream->added, ostream->setup);
2805
2806     /* if we find a stream for which we did a setup that is not added, we
2807      * need to wait some more */
2808     if (ostream->setup && !ostream->added) {
2809       all_added = FALSE;
2810       break;
2811     }
2812   }
2813   GST_RTSP_STATE_UNLOCK (src);
2814
2815   /* create a new pad we will use to stream to */
2816   template = gst_static_pad_template_get (&rtptemplate);
2817   stream->srcpad = gst_ghost_pad_new_from_template (name, pad, template);
2818   gst_object_unref (template);
2819   g_free (name);
2820
2821   gst_pad_set_event_function (stream->srcpad, gst_rtspsrc_handle_src_event);
2822   gst_pad_set_query_function (stream->srcpad, gst_rtspsrc_handle_src_query);
2823   gst_pad_set_active (stream->srcpad, TRUE);
2824   gst_pad_sticky_events_foreach (pad, copy_sticky_events, stream->srcpad);
2825   gst_element_add_pad (GST_ELEMENT_CAST (src), stream->srcpad);
2826
2827   if (all_added) {
2828     GST_DEBUG_OBJECT (src, "We added all streams");
2829     /* when we get here, all stream are added and we can fire the no-more-pads
2830      * signal. */
2831     gst_element_no_more_pads (GST_ELEMENT_CAST (src));
2832   }
2833
2834   return;
2835
2836   /* ERRORS */
2837 unknown_stream:
2838   {
2839     GST_DEBUG_OBJECT (src, "ignoring unknown stream");
2840     GST_RTSP_STATE_UNLOCK (src);
2841     g_free (name);
2842     return;
2843   }
2844 }
2845
2846 static GstCaps *
2847 stream_get_caps_for_pt (GstRTSPStream * stream, guint pt)
2848 {
2849   guint i, len;
2850
2851   len = stream->ptmap->len;
2852   for (i = 0; i < len; i++) {
2853     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
2854     if (item->pt == pt)
2855       return item->caps;
2856   }
2857   return NULL;
2858 }
2859
2860 static GstCaps *
2861 request_pt_map (GstElement * manager, guint session, guint pt, GstRTSPSrc * src)
2862 {
2863   GstRTSPStream *stream;
2864   GstCaps *caps;
2865
2866   GST_DEBUG_OBJECT (src, "getting pt map for pt %d in session %d", pt, session);
2867
2868   GST_RTSP_STATE_LOCK (src);
2869   stream = find_stream (src, &session, (gpointer) find_stream_by_id);
2870   if (!stream)
2871     goto unknown_stream;
2872
2873   if ((caps = stream_get_caps_for_pt (stream, pt)))
2874     gst_caps_ref (caps);
2875   GST_RTSP_STATE_UNLOCK (src);
2876
2877   return caps;
2878
2879 unknown_stream:
2880   {
2881     GST_DEBUG_OBJECT (src, "unknown stream %d", session);
2882     GST_RTSP_STATE_UNLOCK (src);
2883     return NULL;
2884   }
2885 }
2886
2887 static void
2888 gst_rtspsrc_do_stream_eos (GstRTSPSrc * src, GstRTSPStream * stream)
2889 {
2890   GST_DEBUG_OBJECT (src, "setting stream for session %u to EOS", stream->id);
2891
2892   if (stream->eos)
2893     goto was_eos;
2894
2895   stream->eos = TRUE;
2896   gst_rtspsrc_stream_push_event (src, stream, gst_event_new_eos ());
2897   return;
2898
2899   /* ERRORS */
2900 was_eos:
2901   {
2902     GST_DEBUG_OBJECT (src, "stream for session %u was already EOS", stream->id);
2903     return;
2904   }
2905 }
2906
2907 static void
2908 on_bye_ssrc (GObject * session, GObject * source, GstRTSPStream * stream)
2909 {
2910   GstRTSPSrc *src = stream->parent;
2911   guint ssrc;
2912
2913   g_object_get (source, "ssrc", &ssrc, NULL);
2914
2915   GST_DEBUG_OBJECT (src, "source %08x, stream %08x, session %u received BYE",
2916       ssrc, stream->ssrc, stream->id);
2917
2918   if (ssrc == stream->ssrc)
2919     gst_rtspsrc_do_stream_eos (src, stream);
2920 }
2921
2922 static void
2923 on_timeout (GObject * session, GObject * source, GstRTSPStream * stream)
2924 {
2925   GstRTSPSrc *src = stream->parent;
2926   guint ssrc;
2927
2928   g_object_get (source, "ssrc", &ssrc, NULL);
2929
2930   GST_WARNING_OBJECT (src, "source %08x, stream %08x in session %u timed out",
2931       ssrc, stream->ssrc, stream->id);
2932
2933   if (ssrc == stream->ssrc)
2934     gst_rtspsrc_do_stream_eos (src, stream);
2935 }
2936
2937 static void
2938 on_npt_stop (GstElement * rtpbin, guint session, guint ssrc, GstRTSPSrc * src)
2939 {
2940   GstRTSPStream *stream;
2941
2942   GST_DEBUG_OBJECT (src, "source in session %u reached NPT stop", session);
2943
2944   /* get stream for session */
2945   stream = find_stream (src, &session, (gpointer) find_stream_by_id);
2946   if (stream) {
2947     gst_rtspsrc_do_stream_eos (src, stream);
2948   }
2949 }
2950
2951 static void
2952 on_ssrc_active (GObject * session, GObject * source, GstRTSPStream * stream)
2953 {
2954   GST_DEBUG_OBJECT (stream->parent, "source in session %u is active",
2955       stream->id);
2956 }
2957
2958 static void
2959 set_manager_buffer_mode (GstRTSPSrc * src)
2960 {
2961   GObjectClass *klass;
2962
2963   if (src->manager == NULL)
2964     return;
2965
2966   klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
2967
2968   if (!g_object_class_find_property (klass, "buffer-mode"))
2969     return;
2970
2971   if (src->buffer_mode != BUFFER_MODE_AUTO) {
2972     g_object_set (src->manager, "buffer-mode", src->buffer_mode, NULL);
2973
2974     return;
2975   }
2976
2977   GST_DEBUG_OBJECT (src,
2978       "auto buffering mode, have clock %" GST_PTR_FORMAT, src->provided_clock);
2979
2980   if (src->provided_clock) {
2981     GstClock *clock = gst_element_get_clock (GST_ELEMENT_CAST (src));
2982
2983     if (clock == src->provided_clock) {
2984       GST_DEBUG_OBJECT (src, "selected synced");
2985       g_object_set (src->manager, "buffer-mode", BUFFER_MODE_SYNCED, NULL);
2986
2987       if (clock)
2988         gst_object_unref (clock);
2989
2990       return;
2991     }
2992
2993     /* Otherwise fall-through and use another buffer mode */
2994     if (clock)
2995       gst_object_unref (clock);
2996   }
2997
2998   GST_DEBUG_OBJECT (src, "auto buffering mode");
2999   if (src->use_buffering) {
3000     GST_DEBUG_OBJECT (src, "selected buffer");
3001     g_object_set (src->manager, "buffer-mode", BUFFER_MODE_BUFFER, NULL);
3002   } else {
3003     GST_DEBUG_OBJECT (src, "selected slave");
3004     g_object_set (src->manager, "buffer-mode", BUFFER_MODE_SLAVE, NULL);
3005   }
3006 }
3007
3008 static GstCaps *
3009 request_key (GstElement * srtpdec, guint ssrc, GstRTSPStream * stream)
3010 {
3011   GST_DEBUG ("request key %u", ssrc);
3012   return gst_caps_ref (stream_get_caps_for_pt (stream, stream->default_pt));
3013 }
3014
3015 static GstElement *
3016 request_rtp_decoder (GstElement * rtpbin, guint session, GstRTSPStream * stream)
3017 {
3018   GST_DEBUG ("decoder session %u, stream %p, %d", session, stream, stream->id);
3019   if (stream->id != session)
3020     return NULL;
3021
3022   if (stream->profile != GST_RTSP_PROFILE_SAVP &&
3023       stream->profile != GST_RTSP_PROFILE_SAVPF)
3024     return NULL;
3025
3026   if (stream->srtpdec == NULL) {
3027     gchar *name;
3028
3029     name = g_strdup_printf ("srtpdec_%u", session);
3030     stream->srtpdec = gst_element_factory_make ("srtpdec", name);
3031     g_free (name);
3032
3033     g_signal_connect (stream->srtpdec, "request-key",
3034         (GCallback) request_key, stream);
3035   }
3036   return gst_object_ref (stream->srtpdec);
3037 }
3038
3039 static GstElement *
3040 request_rtcp_encoder (GstElement * rtpbin, guint session,
3041     GstRTSPStream * stream)
3042 {
3043   gchar *name;
3044   GstPad *pad;
3045
3046   GST_DEBUG ("decoder session %u, stream %p, %d", session, stream, stream->id);
3047   if (stream->id != session)
3048     return NULL;
3049
3050   if (stream->profile != GST_RTSP_PROFILE_SAVP &&
3051       stream->profile != GST_RTSP_PROFILE_SAVPF)
3052     return NULL;
3053
3054   if (stream->srtpenc == NULL) {
3055     GstStructure *s;
3056
3057     name = g_strdup_printf ("srtpenc_%u", session);
3058     stream->srtpenc = gst_element_factory_make ("srtpenc", name);
3059     g_free (name);
3060
3061     /* get RTCP crypto parameters from caps */
3062     s = gst_caps_get_structure (stream->srtcpparams, 0);
3063     if (s) {
3064       GstBuffer *buf;
3065       const gchar *str;
3066       GType ciphertype, authtype;
3067       GValue rtcp_cipher = G_VALUE_INIT, rtcp_auth = G_VALUE_INIT;
3068
3069       ciphertype = g_type_from_name ("GstSrtpCipherType");
3070       authtype = g_type_from_name ("GstSrtpAuthType");
3071       g_value_init (&rtcp_cipher, ciphertype);
3072       g_value_init (&rtcp_auth, authtype);
3073
3074       str = gst_structure_get_string (s, "srtcp-cipher");
3075       gst_value_deserialize (&rtcp_cipher, str);
3076       str = gst_structure_get_string (s, "srtcp-auth");
3077       gst_value_deserialize (&rtcp_auth, str);
3078       gst_structure_get (s, "srtp-key", GST_TYPE_BUFFER, &buf, NULL);
3079
3080       g_object_set_property (G_OBJECT (stream->srtpenc), "rtcp-cipher",
3081           &rtcp_cipher);
3082       g_object_set_property (G_OBJECT (stream->srtpenc), "rtcp-auth",
3083           &rtcp_auth);
3084       g_object_set (stream->srtpenc, "key", buf, NULL);
3085
3086       g_value_unset (&rtcp_cipher);
3087       g_value_unset (&rtcp_auth);
3088     }
3089   }
3090   name = g_strdup_printf ("rtcp_sink_%d", session);
3091   pad = gst_element_get_request_pad (stream->srtpenc, name);
3092   g_free (name);
3093   gst_object_unref (pad);
3094
3095   return gst_object_ref (stream->srtpenc);
3096 }
3097
3098
3099 /* try to get and configure a manager */
3100 static gboolean
3101 gst_rtspsrc_stream_configure_manager (GstRTSPSrc * src, GstRTSPStream * stream,
3102     GstRTSPTransport * transport)
3103 {
3104   const gchar *manager;
3105   gchar *name;
3106   GstStateChangeReturn ret;
3107
3108   /* find a manager */
3109   if (gst_rtsp_transport_get_manager (transport->trans, &manager, 0) < 0)
3110     goto no_manager;
3111
3112   if (manager) {
3113     GST_DEBUG_OBJECT (src, "using manager %s", manager);
3114
3115     /* configure the manager */
3116     if (src->manager == NULL) {
3117       GObjectClass *klass;
3118
3119       if (!(src->manager = gst_element_factory_make (manager, "manager"))) {
3120         /* fallback */
3121         if (gst_rtsp_transport_get_manager (transport->trans, &manager, 1) < 0)
3122           goto no_manager;
3123
3124         if (!manager)
3125           goto use_no_manager;
3126
3127         if (!(src->manager = gst_element_factory_make (manager, "manager")))
3128           goto manager_failed;
3129       }
3130
3131       /* we manage this element */
3132       gst_element_set_locked_state (src->manager, TRUE);
3133       gst_bin_add (GST_BIN_CAST (src), src->manager);
3134
3135       ret = gst_element_set_state (src->manager, GST_STATE_PAUSED);
3136       if (ret == GST_STATE_CHANGE_FAILURE)
3137         goto start_manager_failure;
3138
3139       g_object_set (src->manager, "latency", src->latency, NULL);
3140
3141       klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
3142
3143       if (g_object_class_find_property (klass, "ntp-sync")) {
3144         g_object_set (src->manager, "ntp-sync", src->ntp_sync, NULL);
3145       }
3146
3147       if (g_object_class_find_property (klass, "use-pipeline-clock")) {
3148         g_object_set (src->manager, "use-pipeline-clock",
3149             src->use_pipeline_clock, NULL);
3150       }
3151
3152       if (src->sdes && g_object_class_find_property (klass, "sdes")) {
3153         g_object_set (src->manager, "sdes", src->sdes, NULL);
3154       }
3155
3156       if (g_object_class_find_property (klass, "drop-on-latency")) {
3157         g_object_set (src->manager, "drop-on-latency", src->drop_on_latency,
3158             NULL);
3159       }
3160
3161       /* buffer mode pauses are handled by adding offsets to buffer times,
3162        * but some depayloaders may have a hard time syncing output times
3163        * with such input times, e.g. container ones, most notably ASF */
3164       /* TODO alternatives are having an event that indicates these shifts,
3165        * or having rtsp extensions provide suggestion on buffer mode */
3166       /* valid duration implies not likely live pipeline,
3167        * so slaving in jitterbuffer does not make much sense
3168        * (and might mess things up due to bursts) */
3169       if (GST_CLOCK_TIME_IS_VALID (src->segment.duration) &&
3170           src->segment.duration && !stream->container) {
3171         src->use_buffering = TRUE;
3172       } else {
3173         src->use_buffering = FALSE;
3174       }
3175
3176       set_manager_buffer_mode (src);
3177
3178       /* connect to signals */
3179       GST_DEBUG_OBJECT (src, "connect to signals on session manager, stream %p",
3180           stream);
3181       src->manager_sig_id =
3182           g_signal_connect (src->manager, "pad-added",
3183           (GCallback) new_manager_pad, src);
3184       src->manager_ptmap_id =
3185           g_signal_connect (src->manager, "request-pt-map",
3186           (GCallback) request_pt_map, src);
3187
3188       g_signal_connect (src->manager, "on-npt-stop", (GCallback) on_npt_stop,
3189           src);
3190
3191       g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_NEW_MANAGER], 0,
3192           src->manager);
3193     }
3194     g_signal_connect (src->manager, "request-rtp-decoder",
3195         (GCallback) request_rtp_decoder, stream);
3196     g_signal_connect (src->manager, "request-rtcp-decoder",
3197         (GCallback) request_rtp_decoder, stream);
3198     g_signal_connect (src->manager, "request-rtcp-encoder",
3199         (GCallback) request_rtcp_encoder, stream);
3200
3201     /* we stream directly to the manager, get some pads. Each RTSP stream goes
3202      * into a separate RTP session. */
3203     name = g_strdup_printf ("recv_rtp_sink_%u", stream->id);
3204     stream->channelpad[0] = gst_element_get_request_pad (src->manager, name);
3205     g_free (name);
3206     name = g_strdup_printf ("recv_rtcp_sink_%u", stream->id);
3207     stream->channelpad[1] = gst_element_get_request_pad (src->manager, name);
3208     g_free (name);
3209
3210     /* now configure the bandwidth in the manager */
3211     if (g_signal_lookup ("get-internal-session",
3212             G_OBJECT_TYPE (src->manager)) != 0) {
3213       GObject *rtpsession;
3214
3215       g_signal_emit_by_name (src->manager, "get-internal-session", stream->id,
3216           &rtpsession);
3217       if (rtpsession) {
3218         GST_INFO_OBJECT (src, "configure bandwidth in session %p", rtpsession);
3219
3220         stream->session = rtpsession;
3221
3222         if (stream->as_bandwidth != -1) {
3223           GST_INFO_OBJECT (src, "setting AS: %f",
3224               (gdouble) (stream->as_bandwidth * 1000));
3225           g_object_set (rtpsession, "bandwidth",
3226               (gdouble) (stream->as_bandwidth * 1000), NULL);
3227         }
3228         if (stream->rr_bandwidth != -1) {
3229           GST_INFO_OBJECT (src, "setting RR: %u", stream->rr_bandwidth);
3230           g_object_set (rtpsession, "rtcp-rr-bandwidth", stream->rr_bandwidth,
3231               NULL);
3232         }
3233         if (stream->rs_bandwidth != -1) {
3234           GST_INFO_OBJECT (src, "setting RS: %u", stream->rs_bandwidth);
3235           g_object_set (rtpsession, "rtcp-rs-bandwidth", stream->rs_bandwidth,
3236               NULL);
3237         }
3238
3239         g_object_set (rtpsession, "probation", src->probation, NULL);
3240
3241         g_object_set (rtpsession, "internal-ssrc", stream->send_ssrc, NULL);
3242
3243         g_signal_connect (rtpsession, "on-bye-ssrc", (GCallback) on_bye_ssrc,
3244             stream);
3245         g_signal_connect (rtpsession, "on-bye-timeout", (GCallback) on_timeout,
3246             stream);
3247         g_signal_connect (rtpsession, "on-timeout", (GCallback) on_timeout,
3248             stream);
3249         g_signal_connect (rtpsession, "on-ssrc-active",
3250             (GCallback) on_ssrc_active, stream);
3251       }
3252     }
3253   }
3254
3255 use_no_manager:
3256   return TRUE;
3257
3258   /* ERRORS */
3259 no_manager:
3260   {
3261     GST_DEBUG_OBJECT (src, "cannot get a session manager");
3262     return FALSE;
3263   }
3264 manager_failed:
3265   {
3266     GST_DEBUG_OBJECT (src, "no session manager element %s found", manager);
3267     return FALSE;
3268   }
3269 start_manager_failure:
3270   {
3271     GST_DEBUG_OBJECT (src, "could not start session manager");
3272     return FALSE;
3273   }
3274 }
3275
3276 /* free the UDP sources allocated when negotiating a transport.
3277  * This function is called when the server negotiated to a transport where the
3278  * UDP sources are not needed anymore, such as TCP or multicast. */
3279 static void
3280 gst_rtspsrc_stream_free_udp (GstRTSPStream * stream)
3281 {
3282   gint i;
3283
3284   for (i = 0; i < 2; i++) {
3285     if (stream->udpsrc[i]) {
3286       GST_DEBUG ("free UDP source %d for stream %p", i, stream);
3287       gst_element_set_state (stream->udpsrc[i], GST_STATE_NULL);
3288       gst_object_unref (stream->udpsrc[i]);
3289       stream->udpsrc[i] = NULL;
3290     }
3291   }
3292 }
3293
3294 /* for TCP, create pads to send and receive data to and from the manager and to
3295  * intercept various events and queries
3296  */
3297 static gboolean
3298 gst_rtspsrc_stream_configure_tcp (GstRTSPSrc * src, GstRTSPStream * stream,
3299     GstRTSPTransport * transport, GstPad ** outpad)
3300 {
3301   gchar *name;
3302   GstPadTemplate *template;
3303   GstPad *pad0, *pad1;
3304
3305   /* configure for interleaved delivery, nothing needs to be done
3306    * here, the loop function will call the chain functions of the
3307    * session manager. */
3308   stream->channel[0] = transport->interleaved.min;
3309   stream->channel[1] = transport->interleaved.max;
3310   GST_DEBUG_OBJECT (src, "stream %p on channels %d-%d", stream,
3311       stream->channel[0], stream->channel[1]);
3312
3313   /* we can remove the allocated UDP ports now */
3314   gst_rtspsrc_stream_free_udp (stream);
3315
3316   /* no session manager, send data to srcpad directly */
3317   if (!stream->channelpad[0]) {
3318     GST_DEBUG_OBJECT (src, "no manager, creating pad");
3319
3320     /* create a new pad we will use to stream to */
3321     name = g_strdup_printf ("stream_%u", stream->id);
3322     template = gst_static_pad_template_get (&rtptemplate);
3323     stream->channelpad[0] = gst_pad_new_from_template (template, name);
3324     gst_object_unref (template);
3325     g_free (name);
3326
3327     /* set caps and activate */
3328     gst_pad_use_fixed_caps (stream->channelpad[0]);
3329     gst_pad_set_active (stream->channelpad[0], TRUE);
3330
3331     *outpad = gst_object_ref (stream->channelpad[0]);
3332   } else {
3333     GST_DEBUG_OBJECT (src, "using manager source pad");
3334
3335     template = gst_static_pad_template_get (&anysrctemplate);
3336
3337     /* allocate pads for sending the channel data into the manager */
3338     pad0 = gst_pad_new_from_template (template, "internalsrc_0");
3339     gst_pad_link_full (pad0, stream->channelpad[0], GST_PAD_LINK_CHECK_NOTHING);
3340     gst_object_unref (stream->channelpad[0]);
3341     stream->channelpad[0] = pad0;
3342     gst_pad_set_event_function (pad0, gst_rtspsrc_handle_internal_src_event);
3343     gst_pad_set_query_function (pad0, gst_rtspsrc_handle_internal_src_query);
3344     gst_pad_set_element_private (pad0, src);
3345     gst_pad_set_active (pad0, TRUE);
3346
3347     if (stream->channelpad[1]) {
3348       /* if we have a sinkpad for the other channel, create a pad and link to the
3349        * manager. */
3350       pad1 = gst_pad_new_from_template (template, "internalsrc_1");
3351       gst_pad_set_event_function (pad1, gst_rtspsrc_handle_internal_src_event);
3352       gst_pad_link_full (pad1, stream->channelpad[1],
3353           GST_PAD_LINK_CHECK_NOTHING);
3354       gst_object_unref (stream->channelpad[1]);
3355       stream->channelpad[1] = pad1;
3356       gst_pad_set_active (pad1, TRUE);
3357     }
3358     gst_object_unref (template);
3359   }
3360   /* setup RTCP transport back to the server if we have to. */
3361   if (src->manager && src->do_rtcp) {
3362     GstPad *pad;
3363
3364     template = gst_static_pad_template_get (&anysinktemplate);
3365
3366     stream->rtcppad = gst_pad_new_from_template (template, "internalsink_0");
3367     gst_pad_set_chain_function (stream->rtcppad, gst_rtspsrc_sink_chain);
3368     gst_pad_set_element_private (stream->rtcppad, stream);
3369     gst_pad_set_active (stream->rtcppad, TRUE);
3370
3371     /* get session RTCP pad */
3372     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
3373     pad = gst_element_get_request_pad (src->manager, name);
3374     g_free (name);
3375
3376     /* and link */
3377     if (pad) {
3378       gst_pad_link_full (pad, stream->rtcppad, GST_PAD_LINK_CHECK_NOTHING);
3379       gst_object_unref (pad);
3380     }
3381
3382     gst_object_unref (template);
3383   }
3384   return TRUE;
3385 }
3386
3387 static void
3388 gst_rtspsrc_get_transport_info (GstRTSPSrc * src, GstRTSPStream * stream,
3389     GstRTSPTransport * transport, const gchar ** destination, gint * min,
3390     gint * max, guint * ttl)
3391 {
3392   if (transport->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
3393     if (destination) {
3394       if (!(*destination = transport->destination))
3395         *destination = stream->destination;
3396     }
3397     if (min && max) {
3398       /* transport first */
3399       *min = transport->port.min;
3400       *max = transport->port.max;
3401       if (*min == -1 && *max == -1) {
3402         /* then try from SDP */
3403         if (stream->port != 0) {
3404           *min = stream->port;
3405           *max = stream->port + 1;
3406         }
3407       }
3408     }
3409
3410     if (ttl) {
3411       if (!(*ttl = transport->ttl))
3412         *ttl = stream->ttl;
3413     }
3414   } else {
3415     if (destination) {
3416       /* first take the source, then the endpoint to figure out where to send
3417        * the RTCP. */
3418       if (!(*destination = transport->source)) {
3419         if (src->conninfo.connection)
3420           *destination = gst_rtsp_connection_get_ip (src->conninfo.connection);
3421         else if (stream->conninfo.connection)
3422           *destination =
3423               gst_rtsp_connection_get_ip (stream->conninfo.connection);
3424       }
3425     }
3426     if (min && max) {
3427       /* for unicast we only expect the ports here */
3428       *min = transport->server_port.min;
3429       *max = transport->server_port.max;
3430     }
3431   }
3432 }
3433
3434 /* For multicast create UDP sources and join the multicast group. */
3435 static gboolean
3436 gst_rtspsrc_stream_configure_mcast (GstRTSPSrc * src, GstRTSPStream * stream,
3437     GstRTSPTransport * transport, GstPad ** outpad)
3438 {
3439   gchar *uri;
3440   const gchar *destination;
3441   gint min, max;
3442
3443   GST_DEBUG_OBJECT (src, "creating UDP sources for multicast");
3444
3445   /* we can remove the allocated UDP ports now */
3446   gst_rtspsrc_stream_free_udp (stream);
3447
3448   gst_rtspsrc_get_transport_info (src, stream, transport, &destination, &min,
3449       &max, NULL);
3450
3451   /* we need a destination now */
3452   if (destination == NULL)
3453     goto no_destination;
3454
3455   /* we really need ports now or we won't be able to receive anything at all */
3456   if (min == -1 && max == -1)
3457     goto no_ports;
3458
3459   GST_DEBUG_OBJECT (src, "have destination '%s' and ports (%d)-(%d)",
3460       destination, min, max);
3461
3462   /* creating UDP source for RTP */
3463   if (min != -1) {
3464     uri = g_strdup_printf ("udp://%s:%d", destination, min);
3465     stream->udpsrc[0] =
3466         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
3467     g_free (uri);
3468     if (stream->udpsrc[0] == NULL)
3469       goto no_element;
3470
3471     /* take ownership */
3472     gst_object_ref_sink (stream->udpsrc[0]);
3473
3474     if (src->udp_buffer_size != 0)
3475       g_object_set (G_OBJECT (stream->udpsrc[0]), "buffer-size",
3476           src->udp_buffer_size, NULL);
3477
3478     if (src->multi_iface != NULL)
3479       g_object_set (G_OBJECT (stream->udpsrc[0]), "multicast-iface",
3480           src->multi_iface, NULL);
3481
3482     /* change state */
3483     gst_element_set_locked_state (stream->udpsrc[0], TRUE);
3484     gst_element_set_state (stream->udpsrc[0], GST_STATE_READY);
3485   }
3486
3487   /* creating another UDP source for RTCP */
3488   if (max != -1) {
3489     GstCaps *caps;
3490
3491     uri = g_strdup_printf ("udp://%s:%d", destination, max);
3492     stream->udpsrc[1] =
3493         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
3494     g_free (uri);
3495     if (stream->udpsrc[1] == NULL)
3496       goto no_element;
3497
3498     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
3499         stream->profile == GST_RTSP_PROFILE_SAVPF)
3500       caps = gst_caps_new_empty_simple ("application/x-srtcp");
3501     else
3502       caps = gst_caps_new_empty_simple ("application/x-rtcp");
3503     g_object_set (stream->udpsrc[1], "caps", caps, NULL);
3504     gst_caps_unref (caps);
3505
3506     /* take ownership */
3507     gst_object_ref_sink (stream->udpsrc[1]);
3508
3509     if (src->multi_iface != NULL)
3510       g_object_set (G_OBJECT (stream->udpsrc[0]), "multicast-iface",
3511           src->multi_iface, NULL);
3512
3513     gst_element_set_state (stream->udpsrc[1], GST_STATE_READY);
3514   }
3515   return TRUE;
3516
3517   /* ERRORS */
3518 no_element:
3519   {
3520     GST_DEBUG_OBJECT (src, "no UDP source element found");
3521     return FALSE;
3522   }
3523 no_destination:
3524   {
3525     GST_DEBUG_OBJECT (src, "no destination found");
3526     return FALSE;
3527   }
3528 no_ports:
3529   {
3530     GST_DEBUG_OBJECT (src, "no ports found");
3531     return FALSE;
3532   }
3533 }
3534
3535 /* configure the remainder of the UDP ports */
3536 static gboolean
3537 gst_rtspsrc_stream_configure_udp (GstRTSPSrc * src, GstRTSPStream * stream,
3538     GstRTSPTransport * transport, GstPad ** outpad)
3539 {
3540   /* we manage the UDP elements now. For unicast, the UDP sources where
3541    * allocated in the stream when we suggested a transport. */
3542   if (stream->udpsrc[0]) {
3543     GstCaps *caps;
3544
3545     gst_element_set_locked_state (stream->udpsrc[0], TRUE);
3546     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[0]);
3547
3548     GST_DEBUG_OBJECT (src, "setting up UDP source");
3549
3550     /* configure a timeout on the UDP port. When the timeout message is
3551      * posted, we assume UDP transport is not possible. We reconnect using TCP
3552      * if we can. */
3553     g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout",
3554         src->udp_timeout * 1000, NULL);
3555
3556     if ((caps = stream_get_caps_for_pt (stream, stream->default_pt)))
3557       g_object_set (stream->udpsrc[0], "caps", caps, NULL);
3558
3559     /* get output pad of the UDP source. */
3560     *outpad = gst_element_get_static_pad (stream->udpsrc[0], "src");
3561
3562     /* save it so we can unblock */
3563     stream->blockedpad = *outpad;
3564
3565     /* configure pad block on the pad. As soon as there is dataflow on the
3566      * UDP source, we know that UDP is not blocked by a firewall and we can
3567      * configure all the streams to let the application autoplug decoders. */
3568     stream->blockid =
3569         gst_pad_add_probe (stream->blockedpad,
3570         GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_BUFFER |
3571         GST_PAD_PROBE_TYPE_BUFFER_LIST, pad_blocked, src, NULL);
3572
3573     if (stream->channelpad[0]) {
3574       GST_DEBUG_OBJECT (src, "connecting UDP source 0 to manager");
3575       /* configure for UDP delivery, we need to connect the UDP pads to
3576        * the session plugin. */
3577       gst_pad_link_full (*outpad, stream->channelpad[0],
3578           GST_PAD_LINK_CHECK_NOTHING);
3579       gst_object_unref (*outpad);
3580       *outpad = NULL;
3581       /* we connected to pad-added signal to get pads from the manager */
3582     } else {
3583       GST_DEBUG_OBJECT (src, "using UDP src pad as output");
3584     }
3585   }
3586
3587   /* RTCP port */
3588   if (stream->udpsrc[1]) {
3589     GstCaps *caps;
3590
3591     gst_element_set_locked_state (stream->udpsrc[1], TRUE);
3592     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[1]);
3593
3594     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
3595         stream->profile == GST_RTSP_PROFILE_SAVPF)
3596       caps = gst_caps_new_empty_simple ("application/x-srtcp");
3597     else
3598       caps = gst_caps_new_empty_simple ("application/x-rtcp");
3599     g_object_set (stream->udpsrc[1], "caps", caps, NULL);
3600     gst_caps_unref (caps);
3601
3602     if (stream->channelpad[1]) {
3603       GstPad *pad;
3604
3605       GST_DEBUG_OBJECT (src, "connecting UDP source 1 to manager");
3606
3607       pad = gst_element_get_static_pad (stream->udpsrc[1], "src");
3608       gst_pad_link_full (pad, stream->channelpad[1],
3609           GST_PAD_LINK_CHECK_NOTHING);
3610       gst_object_unref (pad);
3611     } else {
3612       /* leave unlinked */
3613     }
3614   }
3615   return TRUE;
3616 }
3617
3618 /* configure the UDP sink back to the server for status reports */
3619 static gboolean
3620 gst_rtspsrc_stream_configure_udp_sinks (GstRTSPSrc * src,
3621     GstRTSPStream * stream, GstRTSPTransport * transport)
3622 {
3623   GstPad *pad;
3624   gint rtp_port, rtcp_port;
3625   gboolean do_rtp, do_rtcp;
3626   const gchar *destination;
3627   gchar *uri, *name;
3628   guint ttl = 0;
3629   GSocket *socket;
3630
3631   /* get transport info */
3632   gst_rtspsrc_get_transport_info (src, stream, transport, &destination,
3633       &rtp_port, &rtcp_port, &ttl);
3634
3635   /* see what we need to do */
3636   do_rtp = (rtp_port != -1);
3637   /* it's possible that the server does not want us to send RTCP in which case
3638    * the port is -1 */
3639   do_rtcp = (rtcp_port != -1 && src->manager != NULL && src->do_rtcp);
3640
3641   /* we need a destination when we have RTP or RTCP ports */
3642   if (destination == NULL && (do_rtp || do_rtcp))
3643     goto no_destination;
3644
3645   /* try to construct the fakesrc to the RTP port of the server to open up any
3646    * NAT firewalls */
3647   if (do_rtp) {
3648     GST_DEBUG_OBJECT (src, "configure RTP UDP sink for %s:%d", destination,
3649         rtp_port);
3650
3651     uri = g_strdup_printf ("udp://%s:%d", destination, rtp_port);
3652     stream->udpsink[0] =
3653         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
3654     g_free (uri);
3655     if (stream->udpsink[0] == NULL)
3656       goto no_sink_element;
3657
3658     /* don't join multicast group, we will have the source socket do that */
3659     /* no sync or async state changes needed */
3660     g_object_set (G_OBJECT (stream->udpsink[0]), "auto-multicast", FALSE,
3661         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
3662     if (ttl > 0)
3663       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
3664
3665     if (stream->udpsrc[0]) {
3666       /* configure socket, we give it the same UDP socket as the udpsrc for RTP
3667        * so that NAT firewalls will open a hole for us */
3668       g_object_get (G_OBJECT (stream->udpsrc[0]), "used-socket", &socket, NULL);
3669       GST_DEBUG_OBJECT (src, "RTP UDP src has sock %p", socket);
3670       /* configure socket and make sure udpsink does not close it when shutting
3671        * down, it belongs to udpsrc after all. */
3672       g_object_set (G_OBJECT (stream->udpsink[0]), "socket", socket,
3673           "close-socket", FALSE, NULL);
3674       g_object_unref (socket);
3675     }
3676
3677     /* the source for the dummy packets to open up NAT */
3678     stream->fakesrc = gst_element_factory_make ("fakesrc", NULL);
3679     if (stream->fakesrc == NULL)
3680       goto no_fakesrc_element;
3681
3682     /* random data in 5 buffers, a size of 200 bytes should be fine */
3683     g_object_set (G_OBJECT (stream->fakesrc), "filltype", 3, "num-buffers", 5,
3684         "sizetype", 2, "sizemax", 200, "silent", TRUE, NULL);
3685
3686     /* we don't want to consider this a sink */
3687     GST_OBJECT_FLAG_UNSET (stream->udpsink[0], GST_ELEMENT_FLAG_SINK);
3688
3689     /* keep everything locked */
3690     gst_element_set_locked_state (stream->udpsink[0], TRUE);
3691     gst_element_set_locked_state (stream->fakesrc, TRUE);
3692
3693     gst_object_ref (stream->udpsink[0]);
3694     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[0]);
3695     gst_object_ref (stream->fakesrc);
3696     gst_bin_add (GST_BIN_CAST (src), stream->fakesrc);
3697
3698     gst_element_link_pads_full (stream->fakesrc, "src", stream->udpsink[0],
3699         "sink", GST_PAD_LINK_CHECK_NOTHING);
3700   }
3701   if (do_rtcp) {
3702     GST_DEBUG_OBJECT (src, "configure RTCP UDP sink for %s:%d", destination,
3703         rtcp_port);
3704
3705     uri = g_strdup_printf ("udp://%s:%d", destination, rtcp_port);
3706     stream->udpsink[1] =
3707         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
3708     g_free (uri);
3709     if (stream->udpsink[1] == NULL)
3710       goto no_sink_element;
3711
3712     /* don't join multicast group, we will have the source socket do that */
3713     /* no sync or async state changes needed */
3714     g_object_set (G_OBJECT (stream->udpsink[1]), "auto-multicast", FALSE,
3715         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
3716     if (ttl > 0)
3717       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
3718
3719     if (stream->udpsrc[1]) {
3720       /* configure socket, we give it the same UDP socket as the udpsrc for RTCP
3721        * because some servers check the port number of where it sends RTCP to identify
3722        * the RTCP packets it receives */
3723       g_object_get (G_OBJECT (stream->udpsrc[1]), "used-socket", &socket, NULL);
3724       GST_DEBUG_OBJECT (src, "RTCP UDP src has sock %p", socket);
3725       /* configure socket and make sure udpsink does not close it when shutting
3726        * down, it belongs to udpsrc after all. */
3727       g_object_set (G_OBJECT (stream->udpsink[1]), "socket", socket,
3728           "close-socket", FALSE, NULL);
3729       g_object_unref (socket);
3730     }
3731
3732     /* we don't want to consider this a sink */
3733     GST_OBJECT_FLAG_UNSET (stream->udpsink[1], GST_ELEMENT_FLAG_SINK);
3734
3735     /* we keep this playing always */
3736     gst_element_set_locked_state (stream->udpsink[1], TRUE);
3737     gst_element_set_state (stream->udpsink[1], GST_STATE_PLAYING);
3738
3739     gst_object_ref (stream->udpsink[1]);
3740     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[1]);
3741
3742     stream->rtcppad = gst_element_get_static_pad (stream->udpsink[1], "sink");
3743
3744     /* get session RTCP pad */
3745     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
3746     pad = gst_element_get_request_pad (src->manager, name);
3747     g_free (name);
3748
3749     /* and link */
3750     if (pad) {
3751       gst_pad_link_full (pad, stream->rtcppad, GST_PAD_LINK_CHECK_NOTHING);
3752       gst_object_unref (pad);
3753     }
3754   }
3755
3756   return TRUE;
3757
3758   /* ERRORS */
3759 no_destination:
3760   {
3761     GST_DEBUG_OBJECT (src, "no destination address specified");
3762     return FALSE;
3763   }
3764 no_sink_element:
3765   {
3766     GST_DEBUG_OBJECT (src, "no UDP sink element found");
3767     return FALSE;
3768   }
3769 no_fakesrc_element:
3770   {
3771     GST_DEBUG_OBJECT (src, "no fakesrc element found");
3772     return FALSE;
3773   }
3774 }
3775
3776 /* sets up all elements needed for streaming over the specified transport.
3777  * Does not yet expose the element pads, this will be done when there is actuall
3778  * dataflow detected, which might never happen when UDP is blocked in a
3779  * firewall, for example.
3780  */
3781 static gboolean
3782 gst_rtspsrc_stream_configure_transport (GstRTSPStream * stream,
3783     GstRTSPTransport * transport)
3784 {
3785   GstRTSPSrc *src;
3786   GstPad *outpad = NULL;
3787   GstPadTemplate *template;
3788   gchar *name;
3789   const gchar *media_type;
3790   guint i, len;
3791
3792   src = stream->parent;
3793
3794   GST_DEBUG_OBJECT (src, "configuring transport for stream %p", stream);
3795
3796   /* get the proper media type for this stream now */
3797   if (gst_rtsp_transport_get_media_type (transport, &media_type) < 0)
3798     goto unknown_transport;
3799   if (!media_type)
3800     goto unknown_transport;
3801
3802   /* configure the final media type */
3803   GST_DEBUG_OBJECT (src, "setting media type to %s", media_type);
3804
3805   len = stream->ptmap->len;
3806   for (i = 0; i < len; i++) {
3807     GstStructure *s;
3808     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
3809
3810     if (item->caps == NULL)
3811       continue;
3812
3813     s = gst_caps_get_structure (item->caps, 0);
3814     gst_structure_set_name (s, media_type);
3815     /* set ssrc if known */
3816     if (transport->ssrc)
3817       gst_structure_set (s, "ssrc", G_TYPE_UINT, transport->ssrc, NULL);
3818   }
3819
3820   /* try to get and configure a manager, channelpad[0-1] will be configured with
3821    * the pads for the manager, or NULL when no manager is needed. */
3822   if (!gst_rtspsrc_stream_configure_manager (src, stream, transport))
3823     goto no_manager;
3824
3825   switch (transport->lower_transport) {
3826     case GST_RTSP_LOWER_TRANS_TCP:
3827       if (!gst_rtspsrc_stream_configure_tcp (src, stream, transport, &outpad))
3828         goto transport_failed;
3829       break;
3830     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
3831       if (!gst_rtspsrc_stream_configure_mcast (src, stream, transport, &outpad))
3832         goto transport_failed;
3833       /* fallthrough, the rest is the same for UDP and MCAST */
3834     case GST_RTSP_LOWER_TRANS_UDP:
3835       if (!gst_rtspsrc_stream_configure_udp (src, stream, transport, &outpad))
3836         goto transport_failed;
3837       /* configure udpsinks back to the server for RTCP messages and for the
3838        * dummy RTP messages to open NAT. */
3839       if (!gst_rtspsrc_stream_configure_udp_sinks (src, stream, transport))
3840         goto transport_failed;
3841       break;
3842     default:
3843       goto unknown_transport;
3844   }
3845
3846   if (outpad) {
3847     GST_DEBUG_OBJECT (src, "creating ghostpad");
3848
3849     gst_pad_use_fixed_caps (outpad);
3850
3851     /* create ghostpad, don't add just yet, this will be done when we activate
3852      * the stream. */
3853     name = g_strdup_printf ("stream_%u", stream->id);
3854     template = gst_static_pad_template_get (&rtptemplate);
3855     stream->srcpad = gst_ghost_pad_new_from_template (name, outpad, template);
3856     gst_pad_set_event_function (stream->srcpad, gst_rtspsrc_handle_src_event);
3857     gst_pad_set_query_function (stream->srcpad, gst_rtspsrc_handle_src_query);
3858     gst_object_unref (template);
3859     g_free (name);
3860
3861     gst_object_unref (outpad);
3862   }
3863   /* mark pad as ok */
3864   stream->last_ret = GST_FLOW_OK;
3865
3866   return TRUE;
3867
3868   /* ERRORS */
3869 transport_failed:
3870   {
3871     GST_DEBUG_OBJECT (src, "failed to configure transport");
3872     return FALSE;
3873   }
3874 unknown_transport:
3875   {
3876     GST_DEBUG_OBJECT (src, "unknown transport");
3877     return FALSE;
3878   }
3879 no_manager:
3880   {
3881     GST_DEBUG_OBJECT (src, "cannot get a session manager");
3882     return FALSE;
3883   }
3884 }
3885
3886 /* send a couple of dummy random packets on the receiver RTP port to the server,
3887  * this should make a firewall think we initiated the data transfer and
3888  * hopefully allow packets to go from the sender port to our RTP receiver port */
3889 static gboolean
3890 gst_rtspsrc_send_dummy_packets (GstRTSPSrc * src)
3891 {
3892   GList *walk;
3893
3894   if (src->nat_method != GST_RTSP_NAT_DUMMY)
3895     return TRUE;
3896
3897   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3898     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3899
3900     if (stream->fakesrc && stream->udpsink[0]) {
3901       GST_DEBUG_OBJECT (src, "sending dummy packet to stream %p", stream);
3902       gst_element_set_state (stream->udpsink[0], GST_STATE_NULL);
3903       gst_element_set_state (stream->fakesrc, GST_STATE_NULL);
3904       gst_element_set_state (stream->udpsink[0], GST_STATE_PLAYING);
3905       gst_element_set_state (stream->fakesrc, GST_STATE_PLAYING);
3906     }
3907   }
3908   return TRUE;
3909 }
3910
3911 /* Adds the source pads of all configured streams to the element.
3912  * This code is performed when we detected dataflow.
3913  *
3914  * We detect dataflow from either the _loop function or with pad probes on the
3915  * udp sources.
3916  */
3917 static gboolean
3918 gst_rtspsrc_activate_streams (GstRTSPSrc * src)
3919 {
3920   GList *walk;
3921
3922   GST_DEBUG_OBJECT (src, "activating streams");
3923
3924   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3925     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3926
3927     if (stream->udpsrc[0]) {
3928       /* remove timeout, we are streaming now and timeouts will be handled by
3929        * the session manager and jitter buffer */
3930       g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout", (guint64) 0, NULL);
3931     }
3932     if (stream->srcpad) {
3933       GST_DEBUG_OBJECT (src, "activating stream pad %p", stream);
3934       gst_pad_set_active (stream->srcpad, TRUE);
3935
3936       /* if we don't have a session manager, set the caps now. If we have a
3937        * session, we will get a notification of the pad and the caps. */
3938       if (!src->manager) {
3939         GstCaps *caps;
3940
3941         caps = stream_get_caps_for_pt (stream, stream->default_pt);
3942         GST_DEBUG_OBJECT (src, "setting pad caps for stream %p", stream);
3943         gst_pad_set_caps (stream->srcpad, caps);
3944       }
3945       /* add the pad */
3946       if (!stream->added) {
3947         GST_DEBUG_OBJECT (src, "adding stream pad %p", stream);
3948         gst_element_add_pad (GST_ELEMENT_CAST (src), stream->srcpad);
3949         stream->added = TRUE;
3950       }
3951     }
3952   }
3953
3954   /* unblock all pads */
3955   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3956     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3957
3958     if (stream->blockid) {
3959       GST_DEBUG_OBJECT (src, "unblocking stream pad %p", stream);
3960       gst_pad_remove_probe (stream->blockedpad, stream->blockid);
3961       stream->blockid = 0;
3962     }
3963   }
3964
3965   return TRUE;
3966 }
3967
3968 static void
3969 gst_rtspsrc_configure_caps (GstRTSPSrc * src, GstSegment * segment,
3970     gboolean reset_manager)
3971 {
3972   GList *walk;
3973   guint64 start, stop;
3974   gdouble play_speed, play_scale;
3975
3976   GST_DEBUG_OBJECT (src, "configuring stream caps");
3977
3978   start = segment->position;
3979   stop = segment->duration;
3980   play_speed = segment->rate;
3981   play_scale = segment->applied_rate;
3982
3983   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3984     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3985     guint j, len;
3986
3987     if (!stream->setup)
3988       continue;
3989
3990     len = stream->ptmap->len;
3991     for (j = 0; j < len; j++) {
3992       GstCaps *caps;
3993       PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, j);
3994
3995       if (item->caps == NULL)
3996         continue;
3997
3998       caps = gst_caps_make_writable (item->caps);
3999       /* update caps */
4000       if (stream->timebase != -1)
4001         gst_caps_set_simple (caps, "clock-base", G_TYPE_UINT,
4002             (guint) stream->timebase, NULL);
4003       if (stream->seqbase != -1)
4004         gst_caps_set_simple (caps, "seqnum-base", G_TYPE_UINT,
4005             (guint) stream->seqbase, NULL);
4006       gst_caps_set_simple (caps, "npt-start", G_TYPE_UINT64, start, NULL);
4007       if (stop != -1)
4008         gst_caps_set_simple (caps, "npt-stop", G_TYPE_UINT64, stop, NULL);
4009       gst_caps_set_simple (caps, "play-speed", G_TYPE_DOUBLE, play_speed, NULL);
4010       gst_caps_set_simple (caps, "play-scale", G_TYPE_DOUBLE, play_scale, NULL);
4011
4012       item->caps = caps;
4013       GST_DEBUG_OBJECT (src, "stream %p, pt %d, caps %" GST_PTR_FORMAT, stream,
4014           item->pt, caps);
4015
4016       if (item->pt == stream->default_pt && stream->udpsrc[0]) {
4017         g_object_set (stream->udpsrc[0], "caps", caps, NULL);
4018       }
4019     }
4020   }
4021   if (reset_manager && src->manager) {
4022     GST_DEBUG_OBJECT (src, "clear session");
4023     g_signal_emit_by_name (src->manager, "clear-pt-map", NULL);
4024   }
4025 }
4026
4027 static GstFlowReturn
4028 gst_rtspsrc_combine_flows (GstRTSPSrc * src, GstRTSPStream * stream,
4029     GstFlowReturn ret)
4030 {
4031   GList *streams;
4032
4033   /* store the value */
4034   stream->last_ret = ret;
4035
4036   /* if it's success we can return the value right away */
4037   if (ret == GST_FLOW_OK)
4038     goto done;
4039
4040   /* any other error that is not-linked can be returned right
4041    * away */
4042   if (ret != GST_FLOW_NOT_LINKED)
4043     goto done;
4044
4045   /* only return NOT_LINKED if all other pads returned NOT_LINKED */
4046   for (streams = src->streams; streams; streams = g_list_next (streams)) {
4047     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4048
4049     ret = ostream->last_ret;
4050     /* some other return value (must be SUCCESS but we can return
4051      * other values as well) */
4052     if (ret != GST_FLOW_NOT_LINKED)
4053       goto done;
4054   }
4055   /* if we get here, all other pads were unlinked and we return
4056    * NOT_LINKED then */
4057 done:
4058   return ret;
4059 }
4060
4061 static gboolean
4062 gst_rtspsrc_stream_push_event (GstRTSPSrc * src, GstRTSPStream * stream,
4063     GstEvent * event)
4064 {
4065   gboolean res = TRUE;
4066
4067   /* only streams that have a connection to the outside world */
4068   if (!stream->setup)
4069     goto done;
4070
4071   if (stream->udpsrc[0]) {
4072     gst_event_ref (event);
4073     res = gst_element_send_event (stream->udpsrc[0], event);
4074   } else if (stream->channelpad[0]) {
4075     gst_event_ref (event);
4076     if (GST_PAD_IS_SRC (stream->channelpad[0]))
4077       res = gst_pad_push_event (stream->channelpad[0], event);
4078     else
4079       res = gst_pad_send_event (stream->channelpad[0], event);
4080   }
4081
4082   if (stream->udpsrc[1]) {
4083     gst_event_ref (event);
4084     res &= gst_element_send_event (stream->udpsrc[1], event);
4085   } else if (stream->channelpad[1]) {
4086     gst_event_ref (event);
4087     if (GST_PAD_IS_SRC (stream->channelpad[1]))
4088       res &= gst_pad_push_event (stream->channelpad[1], event);
4089     else
4090       res &= gst_pad_send_event (stream->channelpad[1], event);
4091   }
4092
4093 done:
4094   gst_event_unref (event);
4095
4096   return res;
4097 }
4098
4099 static gboolean
4100 gst_rtspsrc_push_event (GstRTSPSrc * src, GstEvent * event)
4101 {
4102   GList *streams;
4103   gboolean res = TRUE;
4104
4105   for (streams = src->streams; streams; streams = g_list_next (streams)) {
4106     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4107
4108     gst_event_ref (event);
4109     res &= gst_rtspsrc_stream_push_event (src, ostream, event);
4110   }
4111   gst_event_unref (event);
4112
4113   return res;
4114 }
4115
4116 static GstRTSPResult
4117 gst_rtsp_conninfo_connect (GstRTSPSrc * src, GstRTSPConnInfo * info,
4118     gboolean async)
4119 {
4120   GstRTSPResult res;
4121
4122   if (info->connection == NULL) {
4123     if (info->url == NULL) {
4124       GST_DEBUG_OBJECT (src, "parsing uri (%s)...", info->location);
4125       if ((res = gst_rtsp_url_parse (info->location, &info->url)) < 0)
4126         goto parse_error;
4127     }
4128
4129     /* create connection */
4130     GST_DEBUG_OBJECT (src, "creating connection (%s)...", info->location);
4131     if ((res = gst_rtsp_connection_create (info->url, &info->connection)) < 0)
4132       goto could_not_create;
4133
4134     if (info->url_str)
4135       g_free (info->url_str);
4136     info->url_str = gst_rtsp_url_get_request_uri (info->url);
4137
4138     GST_DEBUG_OBJECT (src, "sanitized uri %s", info->url_str);
4139
4140     if (info->url->transports & GST_RTSP_LOWER_TRANS_TLS) {
4141       if (!gst_rtsp_connection_set_tls_validation_flags (info->connection,
4142               src->tls_validation_flags))
4143         GST_WARNING_OBJECT (src, "Unable to set TLS validation flags");
4144
4145       if (src->tls_database)
4146         gst_rtsp_connection_set_tls_database (info->connection,
4147             src->tls_database);
4148     }
4149
4150     if (info->url->transports & GST_RTSP_LOWER_TRANS_HTTP)
4151       gst_rtsp_connection_set_tunneled (info->connection, TRUE);
4152
4153     if (src->proxy_host) {
4154       GST_DEBUG_OBJECT (src, "setting proxy %s:%d", src->proxy_host,
4155           src->proxy_port);
4156       gst_rtsp_connection_set_proxy (info->connection, src->proxy_host,
4157           src->proxy_port);
4158     }
4159   }
4160
4161   if (!info->connected) {
4162     /* connect */
4163     if (async)
4164       GST_ELEMENT_PROGRESS (src, CONTINUE, "connect",
4165           ("Connecting to %s", info->location));
4166     GST_DEBUG_OBJECT (src, "connecting (%s)...", info->location);
4167     if ((res =
4168             gst_rtsp_connection_connect (info->connection,
4169                 src->ptcp_timeout)) < 0)
4170       goto could_not_connect;
4171
4172     info->connected = TRUE;
4173   }
4174   return GST_RTSP_OK;
4175
4176   /* ERRORS */
4177 parse_error:
4178   {
4179     GST_ERROR_OBJECT (src, "No valid RTSP URL was provided");
4180     return res;
4181   }
4182 could_not_create:
4183   {
4184     gchar *str = gst_rtsp_strresult (res);
4185     GST_ERROR_OBJECT (src, "Could not create connection. (%s)", str);
4186     g_free (str);
4187     return res;
4188   }
4189 could_not_connect:
4190   {
4191     gchar *str = gst_rtsp_strresult (res);
4192     GST_ERROR_OBJECT (src, "Could not connect to server. (%s)", str);
4193     g_free (str);
4194     return res;
4195   }
4196 }
4197
4198 static GstRTSPResult
4199 gst_rtsp_conninfo_close (GstRTSPSrc * src, GstRTSPConnInfo * info,
4200     gboolean free)
4201 {
4202   GST_RTSP_STATE_LOCK (src);
4203   if (info->connected) {
4204     GST_DEBUG_OBJECT (src, "closing connection...");
4205     gst_rtsp_connection_close (info->connection);
4206     info->connected = FALSE;
4207   }
4208   if (free && info->connection) {
4209     /* free connection */
4210     GST_DEBUG_OBJECT (src, "freeing connection...");
4211     gst_rtsp_connection_free (info->connection);
4212     info->connection = NULL;
4213   }
4214   GST_RTSP_STATE_UNLOCK (src);
4215   return GST_RTSP_OK;
4216 }
4217
4218 static GstRTSPResult
4219 gst_rtsp_conninfo_reconnect (GstRTSPSrc * src, GstRTSPConnInfo * info,
4220     gboolean async)
4221 {
4222   GstRTSPResult res;
4223
4224   GST_DEBUG_OBJECT (src, "reconnecting connection...");
4225   gst_rtsp_conninfo_close (src, info, FALSE);
4226   res = gst_rtsp_conninfo_connect (src, info, async);
4227
4228   return res;
4229 }
4230
4231 static void
4232 gst_rtspsrc_connection_flush (GstRTSPSrc * src, gboolean flush)
4233 {
4234   GList *walk;
4235
4236   GST_DEBUG_OBJECT (src, "set flushing %d", flush);
4237   GST_RTSP_STATE_LOCK (src);
4238   if (src->conninfo.connection && src->conninfo.flushing != flush) {
4239     GST_DEBUG_OBJECT (src, "connection flush");
4240     gst_rtsp_connection_flush (src->conninfo.connection, flush);
4241     src->conninfo.flushing = flush;
4242   }
4243   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4244     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4245     if (stream->conninfo.connection && stream->conninfo.flushing != flush) {
4246       GST_DEBUG_OBJECT (src, "stream %p flush", stream);
4247       gst_rtsp_connection_flush (stream->conninfo.connection, flush);
4248       stream->conninfo.flushing = flush;
4249     }
4250   }
4251   GST_RTSP_STATE_UNLOCK (src);
4252 }
4253
4254 /* FIXME, handle server request, reply with OK, for now */
4255 static GstRTSPResult
4256 gst_rtspsrc_handle_request (GstRTSPSrc * src, GstRTSPConnection * conn,
4257     GstRTSPMessage * request)
4258 {
4259   GstRTSPMessage response = { 0 };
4260   GstRTSPResult res;
4261
4262   GST_DEBUG_OBJECT (src, "got server request message");
4263
4264   if (src->debug)
4265     gst_rtsp_message_dump (request);
4266
4267   res = gst_rtsp_ext_list_receive_request (src->extensions, request);
4268
4269   if (res == GST_RTSP_ENOTIMPL) {
4270     /* default implementation, send OK */
4271     GST_DEBUG_OBJECT (src, "prepare OK reply");
4272     res =
4273         gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK, "OK",
4274         request);
4275     if (res < 0)
4276       goto send_error;
4277
4278     /* let app parse and reply */
4279     g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_HANDLE_REQUEST],
4280         0, request, &response);
4281
4282     if (src->debug)
4283       gst_rtsp_message_dump (&response);
4284
4285     res = gst_rtspsrc_connection_send (src, conn, &response, NULL);
4286     if (res < 0)
4287       goto send_error;
4288
4289     gst_rtsp_message_unset (&response);
4290   } else if (res == GST_RTSP_EEOF)
4291     return res;
4292
4293   return GST_RTSP_OK;
4294
4295   /* ERRORS */
4296 send_error:
4297   {
4298     gst_rtsp_message_unset (&response);
4299     return res;
4300   }
4301 }
4302
4303 /* send server keep-alive */
4304 static GstRTSPResult
4305 gst_rtspsrc_send_keep_alive (GstRTSPSrc * src)
4306 {
4307   GstRTSPMessage request = { 0 };
4308   GstRTSPResult res;
4309   GstRTSPMethod method;
4310   const gchar *control;
4311
4312   if (src->do_rtsp_keep_alive == FALSE) {
4313     GST_DEBUG_OBJECT (src, "do-rtsp-keep-alive is FALSE, not sending.");
4314     gst_rtsp_connection_reset_timeout (src->conninfo.connection);
4315     return GST_RTSP_OK;
4316   }
4317
4318   GST_DEBUG_OBJECT (src, "creating server keep-alive");
4319
4320   /* find a method to use for keep-alive */
4321   if (src->methods & GST_RTSP_GET_PARAMETER)
4322     method = GST_RTSP_GET_PARAMETER;
4323   else
4324     method = GST_RTSP_OPTIONS;
4325
4326   control = get_aggregate_control (src);
4327   if (control == NULL)
4328     goto no_control;
4329
4330   res = gst_rtsp_message_init_request (&request, method, control);
4331   if (res < 0)
4332     goto send_error;
4333
4334   if (src->debug)
4335     gst_rtsp_message_dump (&request);
4336
4337   res =
4338       gst_rtspsrc_connection_send (src, src->conninfo.connection, &request,
4339       NULL);
4340   if (res < 0)
4341     goto send_error;
4342
4343   gst_rtsp_connection_reset_timeout (src->conninfo.connection);
4344   gst_rtsp_message_unset (&request);
4345
4346   return GST_RTSP_OK;
4347
4348   /* ERRORS */
4349 no_control:
4350   {
4351     GST_WARNING_OBJECT (src, "no control url to send keepalive");
4352     return GST_RTSP_OK;
4353   }
4354 send_error:
4355   {
4356     gchar *str = gst_rtsp_strresult (res);
4357
4358     gst_rtsp_message_unset (&request);
4359     GST_ELEMENT_WARNING (src, RESOURCE, WRITE, (NULL),
4360         ("Could not send keep-alive. (%s)", str));
4361     g_free (str);
4362     return res;
4363   }
4364 }
4365
4366 static GstFlowReturn
4367 gst_rtspsrc_handle_data (GstRTSPSrc * src, GstRTSPMessage * message)
4368 {
4369   GstFlowReturn ret = GST_FLOW_OK;
4370   gint channel;
4371   GstRTSPStream *stream;
4372   GstPad *outpad = NULL;
4373   guint8 *data;
4374   guint size;
4375   GstBuffer *buf;
4376   gboolean is_rtcp;
4377   GstEvent *event;
4378
4379   channel = message->type_data.data.channel;
4380
4381   stream = find_stream (src, &channel, (gpointer) find_stream_by_channel);
4382   if (!stream)
4383     goto unknown_stream;
4384
4385   if (channel == stream->channel[0]) {
4386     outpad = stream->channelpad[0];
4387     is_rtcp = FALSE;
4388   } else if (channel == stream->channel[1]) {
4389     outpad = stream->channelpad[1];
4390     is_rtcp = TRUE;
4391   } else {
4392     is_rtcp = FALSE;
4393   }
4394
4395   /* take a look at the body to figure out what we have */
4396   gst_rtsp_message_get_body (message, &data, &size);
4397   if (size < 2)
4398     goto invalid_length;
4399
4400   /* channels are not correct on some servers, do extra check */
4401   if (data[1] >= 200 && data[1] <= 204) {
4402     /* hmm RTCP message switch to the RTCP pad of the same stream. */
4403     outpad = stream->channelpad[1];
4404     is_rtcp = TRUE;
4405   }
4406
4407   /* we have no clue what this is, just ignore then. */
4408   if (outpad == NULL)
4409     goto unknown_stream;
4410
4411   /* take the message body for further processing */
4412   gst_rtsp_message_steal_body (message, &data, &size);
4413
4414   /* strip the trailing \0 */
4415   size -= 1;
4416
4417   buf = gst_buffer_new ();
4418   gst_buffer_append_memory (buf,
4419       gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
4420
4421   /* don't need message anymore */
4422   gst_rtsp_message_unset (message);
4423
4424   GST_DEBUG_OBJECT (src, "pushing data of size %d on channel %d", size,
4425       channel);
4426
4427   if (src->need_activate) {
4428     gchar *stream_id;
4429     GstEvent *event;
4430     GChecksum *cs;
4431     gchar *uri;
4432     GList *streams;
4433     guint group_id = gst_util_group_id_next ();
4434
4435     /* generate an SHA256 sum of the URI */
4436     cs = g_checksum_new (G_CHECKSUM_SHA256);
4437     uri = src->conninfo.location;
4438     g_checksum_update (cs, (const guchar *) uri, strlen (uri));
4439
4440     for (streams = src->streams; streams; streams = g_list_next (streams)) {
4441       GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4442
4443       stream_id =
4444           g_strdup_printf ("%s/%d", g_checksum_get_string (cs), ostream->id);
4445       event = gst_event_new_stream_start (stream_id);
4446       gst_event_set_group_id (event, group_id);
4447
4448       g_free (stream_id);
4449       gst_rtspsrc_stream_push_event (src, ostream, event);
4450     }
4451     g_checksum_free (cs);
4452
4453     gst_rtspsrc_activate_streams (src);
4454     src->need_activate = FALSE;
4455   }
4456   if ((event = src->start_segment) != NULL) {
4457     src->start_segment = NULL;
4458     gst_rtspsrc_push_event (src, event);
4459   }
4460
4461   if (src->base_time == -1) {
4462     /* Take current running_time. This timestamp will be put on
4463      * the first buffer of each stream because we are a live source and so we
4464      * timestamp with the running_time. When we are dealing with TCP, we also
4465      * only timestamp the first buffer (using the DISCONT flag) because a server
4466      * typically bursts data, for which we don't want to compensate by speeding
4467      * up the media. The other timestamps will be interpollated from this one
4468      * using the RTP timestamps. */
4469     GST_OBJECT_LOCK (src);
4470     if (GST_ELEMENT_CLOCK (src)) {
4471       GstClockTime now;
4472       GstClockTime base_time;
4473
4474       now = gst_clock_get_time (GST_ELEMENT_CLOCK (src));
4475       base_time = GST_ELEMENT_CAST (src)->base_time;
4476
4477       src->base_time = now - base_time;
4478
4479       GST_DEBUG_OBJECT (src, "first buffer at time %" GST_TIME_FORMAT ", base %"
4480           GST_TIME_FORMAT, GST_TIME_ARGS (now), GST_TIME_ARGS (base_time));
4481     }
4482     GST_OBJECT_UNLOCK (src);
4483   }
4484
4485   if (stream->discont && !is_rtcp) {
4486     /* mark first RTP buffer as discont */
4487     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4488     stream->discont = FALSE;
4489     /* first buffer gets the timestamp, other buffers are not timestamped and
4490      * their presentation time will be interpollated from the rtp timestamps. */
4491     GST_DEBUG_OBJECT (src, "setting timestamp %" GST_TIME_FORMAT,
4492         GST_TIME_ARGS (src->base_time));
4493
4494     GST_BUFFER_TIMESTAMP (buf) = src->base_time;
4495   }
4496
4497   /* chain to the peer pad */
4498   if (GST_PAD_IS_SINK (outpad))
4499     ret = gst_pad_chain (outpad, buf);
4500   else
4501     ret = gst_pad_push (outpad, buf);
4502
4503   if (!is_rtcp) {
4504     /* combine all stream flows for the data transport */
4505     ret = gst_rtspsrc_combine_flows (src, stream, ret);
4506   }
4507   return ret;
4508
4509   /* ERRORS */
4510 unknown_stream:
4511   {
4512     GST_DEBUG_OBJECT (src, "unknown stream on channel %d, ignored", channel);
4513     gst_rtsp_message_unset (message);
4514     return GST_FLOW_OK;
4515   }
4516 invalid_length:
4517   {
4518     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4519         ("Short message received, ignoring."));
4520     gst_rtsp_message_unset (message);
4521     return GST_FLOW_OK;
4522   }
4523 }
4524
4525 static GstFlowReturn
4526 gst_rtspsrc_loop_interleaved (GstRTSPSrc * src)
4527 {
4528   GstRTSPMessage message = { 0 };
4529   GstRTSPResult res;
4530   GstFlowReturn ret = GST_FLOW_OK;
4531   GTimeVal tv_timeout;
4532
4533   while (TRUE) {
4534     /* get the next timeout interval */
4535     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4536
4537     /* see if the timeout period expired */
4538     if ((tv_timeout.tv_sec | tv_timeout.tv_usec) == 0) {
4539       GST_DEBUG_OBJECT (src, "timout, sending keep-alive");
4540       /* send keep-alive, only act on interrupt, a warning will be posted for
4541        * other errors. */
4542       if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4543         goto interrupt;
4544       /* get new timeout */
4545       gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4546     }
4547
4548     GST_DEBUG_OBJECT (src, "doing receive with timeout %ld seconds, %ld usec",
4549         tv_timeout.tv_sec, tv_timeout.tv_usec);
4550
4551     /* protect the connection with the connection lock so that we can see when
4552      * we are finished doing server communication */
4553     res =
4554         gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4555         &message, src->ptcp_timeout);
4556
4557     switch (res) {
4558       case GST_RTSP_OK:
4559         GST_DEBUG_OBJECT (src, "we received a server message");
4560         break;
4561       case GST_RTSP_EINTR:
4562         /* we got interrupted this means we need to stop */
4563         goto interrupt;
4564       case GST_RTSP_ETIMEOUT:
4565         /* no reply, send keep alive */
4566         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4567         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4568           goto interrupt;
4569         continue;
4570       case GST_RTSP_EEOF:
4571         /* go EOS when the server closed the connection */
4572         goto server_eof;
4573       default:
4574         goto receive_error;
4575     }
4576
4577     switch (message.type) {
4578       case GST_RTSP_MESSAGE_REQUEST:
4579         /* server sends us a request message, handle it */
4580         res =
4581             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4582             &message);
4583         if (res == GST_RTSP_EEOF)
4584           goto server_eof;
4585         else if (res < 0)
4586           goto handle_request_failed;
4587         break;
4588       case GST_RTSP_MESSAGE_RESPONSE:
4589         /* we ignore response messages */
4590         GST_DEBUG_OBJECT (src, "ignoring response message");
4591         if (src->debug)
4592           gst_rtsp_message_dump (&message);
4593         break;
4594       case GST_RTSP_MESSAGE_DATA:
4595         GST_DEBUG_OBJECT (src, "got data message");
4596         ret = gst_rtspsrc_handle_data (src, &message);
4597         if (ret != GST_FLOW_OK)
4598           goto handle_data_failed;
4599         break;
4600       default:
4601         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4602             message.type);
4603         break;
4604     }
4605   }
4606   g_assert_not_reached ();
4607
4608   /* ERRORS */
4609 server_eof:
4610   {
4611     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4612     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4613         ("The server closed the connection."));
4614     src->conninfo.connected = FALSE;
4615     gst_rtsp_message_unset (&message);
4616     return GST_FLOW_EOS;
4617   }
4618 interrupt:
4619   {
4620     gst_rtsp_message_unset (&message);
4621     GST_DEBUG_OBJECT (src, "got interrupted");
4622     return GST_FLOW_FLUSHING;
4623   }
4624 receive_error:
4625   {
4626     gchar *str = gst_rtsp_strresult (res);
4627
4628     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4629         ("Could not receive message. (%s)", str));
4630     g_free (str);
4631
4632     gst_rtsp_message_unset (&message);
4633     return GST_FLOW_ERROR;
4634   }
4635 handle_request_failed:
4636   {
4637     gchar *str = gst_rtsp_strresult (res);
4638
4639     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4640         ("Could not handle server message. (%s)", str));
4641     g_free (str);
4642     gst_rtsp_message_unset (&message);
4643     return GST_FLOW_ERROR;
4644   }
4645 handle_data_failed:
4646   {
4647     GST_DEBUG_OBJECT (src, "could no handle data message");
4648     return ret;
4649   }
4650 }
4651
4652 static GstFlowReturn
4653 gst_rtspsrc_loop_udp (GstRTSPSrc * src)
4654 {
4655   GstRTSPResult res;
4656   GstRTSPMessage message = { 0 };
4657   gint retry = 0;
4658
4659   while (TRUE) {
4660     GTimeVal tv_timeout;
4661
4662     /* get the next timeout interval */
4663     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4664
4665     GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
4666         (gint) tv_timeout.tv_sec);
4667
4668     gst_rtsp_message_unset (&message);
4669
4670     /* we should continue reading the TCP socket because the server might
4671      * send us requests. When the session timeout expires, we need to send a
4672      * keep-alive request to keep the session open. */
4673     res = gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4674         &message, &tv_timeout);
4675
4676     switch (res) {
4677       case GST_RTSP_OK:
4678         GST_DEBUG_OBJECT (src, "we received a server message");
4679         break;
4680       case GST_RTSP_EINTR:
4681         /* we got interrupted, see what we have to do */
4682         goto interrupt;
4683       case GST_RTSP_ETIMEOUT:
4684         /* send keep-alive, ignore the result, a warning will be posted. */
4685         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4686         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4687           goto interrupt;
4688         continue;
4689       case GST_RTSP_EEOF:
4690         /* server closed the connection. not very fatal for UDP, reconnect and
4691          * see what happens. */
4692         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4693             ("The server closed the connection."));
4694         if (src->udp_reconnect) {
4695           if ((res =
4696                   gst_rtsp_conninfo_reconnect (src, &src->conninfo, FALSE)) < 0)
4697             goto connect_error;
4698         } else {
4699           goto server_eof;
4700         }
4701         continue;
4702       case GST_RTSP_ENET:
4703         GST_DEBUG_OBJECT (src, "An ethernet problem occured.");
4704       default:
4705         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4706             ("Unhandled return value %d.", res));
4707         goto receive_error;
4708     }
4709
4710     switch (message.type) {
4711       case GST_RTSP_MESSAGE_REQUEST:
4712         /* server sends us a request message, handle it */
4713         res =
4714             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4715             &message);
4716         if (res == GST_RTSP_EEOF)
4717           goto server_eof;
4718         else if (res < 0)
4719           goto handle_request_failed;
4720         break;
4721       case GST_RTSP_MESSAGE_RESPONSE:
4722         /* we ignore response and data messages */
4723         GST_DEBUG_OBJECT (src, "ignoring response message");
4724         if (src->debug)
4725           gst_rtsp_message_dump (&message);
4726         if (message.type_data.response.code == GST_RTSP_STS_UNAUTHORIZED) {
4727           GST_DEBUG_OBJECT (src, "but is Unauthorized response ...");
4728           if (gst_rtspsrc_setup_auth (src, &message) && !(retry++)) {
4729             GST_DEBUG_OBJECT (src, "so retrying keep-alive");
4730             if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4731               goto interrupt;
4732           }
4733         } else {
4734           retry = 0;
4735         }
4736         break;
4737       case GST_RTSP_MESSAGE_DATA:
4738         /* we ignore response and data messages */
4739         GST_DEBUG_OBJECT (src, "ignoring data message");
4740         break;
4741       default:
4742         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4743             message.type);
4744         break;
4745     }
4746   }
4747   g_assert_not_reached ();
4748
4749   /* we get here when the connection got interrupted */
4750 interrupt:
4751   {
4752     gst_rtsp_message_unset (&message);
4753     GST_DEBUG_OBJECT (src, "got interrupted");
4754     return GST_FLOW_FLUSHING;
4755   }
4756 connect_error:
4757   {
4758     gchar *str = gst_rtsp_strresult (res);
4759     GstFlowReturn ret;
4760
4761     src->conninfo.connected = FALSE;
4762     if (res != GST_RTSP_EINTR) {
4763       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
4764           ("Could not connect to server. (%s)", str));
4765       g_free (str);
4766       ret = GST_FLOW_ERROR;
4767     } else {
4768       ret = GST_FLOW_FLUSHING;
4769     }
4770     return ret;
4771   }
4772 receive_error:
4773   {
4774     gchar *str = gst_rtsp_strresult (res);
4775
4776     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4777         ("Could not receive message. (%s)", str));
4778     g_free (str);
4779     return GST_FLOW_ERROR;
4780   }
4781 handle_request_failed:
4782   {
4783     gchar *str = gst_rtsp_strresult (res);
4784     GstFlowReturn ret;
4785
4786     gst_rtsp_message_unset (&message);
4787     if (res != GST_RTSP_EINTR) {
4788       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4789           ("Could not handle server message. (%s)", str));
4790       g_free (str);
4791       ret = GST_FLOW_ERROR;
4792     } else {
4793       ret = GST_FLOW_FLUSHING;
4794     }
4795     return ret;
4796   }
4797 server_eof:
4798   {
4799     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4800     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4801         ("The server closed the connection."));
4802     src->conninfo.connected = FALSE;
4803     gst_rtsp_message_unset (&message);
4804     return GST_FLOW_EOS;
4805   }
4806 }
4807
4808 static GstRTSPResult
4809 gst_rtspsrc_reconnect (GstRTSPSrc * src, gboolean async)
4810 {
4811   GstRTSPResult res = GST_RTSP_OK;
4812   gboolean restart;
4813
4814   GST_DEBUG_OBJECT (src, "doing reconnect");
4815
4816   GST_OBJECT_LOCK (src);
4817   /* only restart when the pads were not yet activated, else we were
4818    * streaming over UDP */
4819   restart = src->need_activate;
4820   GST_OBJECT_UNLOCK (src);
4821
4822   /* no need to restart, we're done */
4823   if (!restart)
4824     goto done;
4825
4826   /* we can try only TCP now */
4827   src->cur_protocols = GST_RTSP_LOWER_TRANS_TCP;
4828
4829   /* close and cleanup our state */
4830   if ((res = gst_rtspsrc_close (src, async, FALSE)) < 0)
4831     goto done;
4832
4833   /* see if we have TCP left to try. Also don't try TCP when we were configured
4834    * with an SDP. */
4835   if (!(src->protocols & GST_RTSP_LOWER_TRANS_TCP) || src->from_sdp)
4836     goto no_protocols;
4837
4838   /* We post a warning message now to inform the user
4839    * that nothing happened. It's most likely a firewall thing. */
4840   GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4841       ("Could not receive any UDP packets for %.4f seconds, maybe your "
4842           "firewall is blocking it. Retrying using a TCP connection.",
4843           gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
4844
4845   /* open new connection using tcp */
4846   if (gst_rtspsrc_open (src, async) < 0)
4847     goto open_failed;
4848
4849   /* start playback */
4850   if (gst_rtspsrc_play (src, &src->segment, async) < 0)
4851     goto play_failed;
4852
4853 done:
4854   return res;
4855
4856   /* ERRORS */
4857 no_protocols:
4858   {
4859     src->cur_protocols = 0;
4860     /* no transport possible, post an error and stop */
4861     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4862         ("Could not receive any UDP packets for %.4f seconds, maybe your "
4863             "firewall is blocking it. No other protocols to try.",
4864             gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
4865     return GST_RTSP_ERROR;
4866   }
4867 open_failed:
4868   {
4869     GST_DEBUG_OBJECT (src, "open failed");
4870     return GST_RTSP_OK;
4871   }
4872 play_failed:
4873   {
4874     GST_DEBUG_OBJECT (src, "play failed");
4875     return GST_RTSP_OK;
4876   }
4877 }
4878
4879 static void
4880 gst_rtspsrc_loop_start_cmd (GstRTSPSrc * src, gint cmd)
4881 {
4882   switch (cmd) {
4883     case CMD_OPEN:
4884       GST_ELEMENT_PROGRESS (src, START, "open", ("Opening Stream"));
4885       break;
4886     case CMD_PLAY:
4887       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PLAY request"));
4888       break;
4889     case CMD_PAUSE:
4890       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PAUSE request"));
4891       break;
4892     case CMD_CLOSE:
4893       GST_ELEMENT_PROGRESS (src, START, "close", ("Closing Stream"));
4894       break;
4895     default:
4896       break;
4897   }
4898 }
4899
4900 static void
4901 gst_rtspsrc_loop_complete_cmd (GstRTSPSrc * src, gint cmd)
4902 {
4903   switch (cmd) {
4904     case CMD_OPEN:
4905       GST_ELEMENT_PROGRESS (src, COMPLETE, "open", ("Opened Stream"));
4906       break;
4907     case CMD_PLAY:
4908       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PLAY request"));
4909       break;
4910     case CMD_PAUSE:
4911       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PAUSE request"));
4912       break;
4913     case CMD_CLOSE:
4914       GST_ELEMENT_PROGRESS (src, COMPLETE, "close", ("Closed Stream"));
4915       break;
4916     default:
4917       break;
4918   }
4919 }
4920
4921 static void
4922 gst_rtspsrc_loop_cancel_cmd (GstRTSPSrc * src, gint cmd)
4923 {
4924   switch (cmd) {
4925     case CMD_OPEN:
4926       GST_ELEMENT_PROGRESS (src, CANCELED, "open", ("Open canceled"));
4927       break;
4928     case CMD_PLAY:
4929       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PLAY canceled"));
4930       break;
4931     case CMD_PAUSE:
4932       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PAUSE canceled"));
4933       break;
4934     case CMD_CLOSE:
4935       GST_ELEMENT_PROGRESS (src, CANCELED, "close", ("Close canceled"));
4936       break;
4937     default:
4938       break;
4939   }
4940 }
4941
4942 static void
4943 gst_rtspsrc_loop_error_cmd (GstRTSPSrc * src, gint cmd)
4944 {
4945   switch (cmd) {
4946     case CMD_OPEN:
4947       GST_ELEMENT_PROGRESS (src, ERROR, "open", ("Open failed"));
4948       break;
4949     case CMD_PLAY:
4950       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PLAY failed"));
4951       break;
4952     case CMD_PAUSE:
4953       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PAUSE failed"));
4954       break;
4955     case CMD_CLOSE:
4956       GST_ELEMENT_PROGRESS (src, ERROR, "close", ("Close failed"));
4957       break;
4958     default:
4959       break;
4960   }
4961 }
4962
4963 static void
4964 gst_rtspsrc_loop_end_cmd (GstRTSPSrc * src, gint cmd, GstRTSPResult ret)
4965 {
4966   if (ret == GST_RTSP_OK)
4967     gst_rtspsrc_loop_complete_cmd (src, cmd);
4968   else if (ret == GST_RTSP_EINTR)
4969     gst_rtspsrc_loop_cancel_cmd (src, cmd);
4970   else
4971     gst_rtspsrc_loop_error_cmd (src, cmd);
4972 }
4973
4974 static gboolean
4975 gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask)
4976 {
4977   gint old;
4978   gboolean flushed = FALSE;
4979
4980   /* start new request */
4981   gst_rtspsrc_loop_start_cmd (src, cmd);
4982
4983   GST_DEBUG_OBJECT (src, "sending cmd %d", cmd);
4984
4985   GST_OBJECT_LOCK (src);
4986   old = src->pending_cmd;
4987   if (old == CMD_RECONNECT) {
4988     GST_DEBUG_OBJECT (src, "ignore, we were reconnecting");
4989     cmd = CMD_RECONNECT;
4990   }
4991   if (old != CMD_WAIT) {
4992     src->pending_cmd = CMD_WAIT;
4993     GST_OBJECT_UNLOCK (src);
4994     /* cancel previous request */
4995     GST_DEBUG_OBJECT (src, "cancel previous request %d", old);
4996     gst_rtspsrc_loop_cancel_cmd (src, old);
4997     GST_OBJECT_LOCK (src);
4998   }
4999   src->pending_cmd = cmd;
5000   /* interrupt if allowed */
5001   if (src->busy_cmd & mask) {
5002     GST_DEBUG_OBJECT (src, "connection flush busy %d", src->busy_cmd);
5003     gst_rtspsrc_connection_flush (src, TRUE);
5004     flushed = TRUE;
5005   } else {
5006     GST_DEBUG_OBJECT (src, "not interrupting busy cmd %d", src->busy_cmd);
5007   }
5008   if (src->task)
5009     gst_task_start (src->task);
5010   GST_OBJECT_UNLOCK (src);
5011
5012   return flushed;
5013 }
5014
5015 static gboolean
5016 gst_rtspsrc_loop (GstRTSPSrc * src)
5017 {
5018   GstFlowReturn ret;
5019
5020   if (!src->conninfo.connection || !src->conninfo.connected)
5021     goto no_connection;
5022
5023   if (src->interleaved)
5024     ret = gst_rtspsrc_loop_interleaved (src);
5025   else
5026     ret = gst_rtspsrc_loop_udp (src);
5027
5028   if (ret != GST_FLOW_OK)
5029     goto pause;
5030
5031   return TRUE;
5032
5033   /* ERRORS */
5034 no_connection:
5035   {
5036     GST_WARNING_OBJECT (src, "we are not connected");
5037     ret = GST_FLOW_FLUSHING;
5038     goto pause;
5039   }
5040 pause:
5041   {
5042     const gchar *reason = gst_flow_get_name (ret);
5043
5044     GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
5045     src->running = FALSE;
5046     if (ret == GST_FLOW_EOS) {
5047       /* perform EOS logic */
5048       if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
5049         gst_element_post_message (GST_ELEMENT_CAST (src),
5050             gst_message_new_segment_done (GST_OBJECT_CAST (src),
5051                 src->segment.format, src->segment.position));
5052         gst_rtspsrc_push_event (src,
5053             gst_event_new_segment_done (src->segment.format,
5054                 src->segment.position));
5055       } else {
5056         gst_rtspsrc_push_event (src, gst_event_new_eos ());
5057       }
5058     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
5059       /* for fatal errors we post an error message, post the error before the
5060        * EOS so the app knows about the error first. */
5061       GST_ELEMENT_ERROR (src, STREAM, FAILED,
5062           ("Internal data flow error."),
5063           ("streaming task paused, reason %s (%d)", reason, ret));
5064       gst_rtspsrc_push_event (src, gst_event_new_eos ());
5065     }
5066     gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_LOOP);
5067     return FALSE;
5068   }
5069 }
5070
5071 #ifndef GST_DISABLE_GST_DEBUG
5072 static const gchar *
5073 gst_rtsp_auth_method_to_string (GstRTSPAuthMethod method)
5074 {
5075   gint index = 0;
5076
5077   while (method != 0) {
5078     index++;
5079     method >>= 1;
5080   }
5081   switch (index) {
5082     case 0:
5083       return "None";
5084     case 1:
5085       return "Basic";
5086     case 2:
5087       return "Digest";
5088   }
5089
5090   return "Unknown";
5091 }
5092 #endif
5093
5094 static const gchar *
5095 gst_rtspsrc_skip_lws (const gchar * s)
5096 {
5097   while (g_ascii_isspace (*s))
5098     s++;
5099   return s;
5100 }
5101
5102 static const gchar *
5103 gst_rtspsrc_unskip_lws (const gchar * s, const gchar * start)
5104 {
5105   while (s > start && g_ascii_isspace (*(s - 1)))
5106     s--;
5107   return s;
5108 }
5109
5110 static const gchar *
5111 gst_rtspsrc_skip_commas (const gchar * s)
5112 {
5113   /* The grammar allows for multiple commas */
5114   while (g_ascii_isspace (*s) || *s == ',')
5115     s++;
5116   return s;
5117 }
5118
5119 static const gchar *
5120 gst_rtspsrc_skip_item (const gchar * s)
5121 {
5122   gboolean quoted = FALSE;
5123   const gchar *start = s;
5124
5125   /* A list item ends at the last non-whitespace character
5126    * before a comma which is not inside a quoted-string. Or at
5127    * the end of the string.
5128    */
5129   while (*s) {
5130     if (*s == '"')
5131       quoted = !quoted;
5132     else if (quoted) {
5133       if (*s == '\\' && *(s + 1))
5134         s++;
5135     } else {
5136       if (*s == ',')
5137         break;
5138     }
5139     s++;
5140   }
5141
5142   return gst_rtspsrc_unskip_lws (s, start);
5143 }
5144
5145 static void
5146 gst_rtsp_decode_quoted_string (gchar * quoted_string)
5147 {
5148   gchar *src, *dst;
5149
5150   src = quoted_string + 1;
5151   dst = quoted_string;
5152   while (*src && *src != '"') {
5153     if (*src == '\\' && *(src + 1))
5154       src++;
5155     *dst++ = *src++;
5156   }
5157   *dst = '\0';
5158 }
5159
5160 /* Extract the authentication tokens that the server provided for each method
5161  * into an array of structures and give those to the connection object.
5162  */
5163 static void
5164 gst_rtspsrc_parse_digest_challenge (GstRTSPConnection * conn,
5165     const gchar * header, gboolean * stale)
5166 {
5167   GSList *list = NULL, *iter;
5168   const gchar *end;
5169   gchar *item, *eq, *name_end, *value;
5170
5171   g_return_if_fail (stale != NULL);
5172
5173   gst_rtsp_connection_clear_auth_params (conn);
5174   *stale = FALSE;
5175
5176   /* Parse a header whose content is described by RFC2616 as
5177    * "#something", where "something" does not itself contain commas,
5178    * except as part of quoted-strings, into a list of allocated strings.
5179    */
5180   header = gst_rtspsrc_skip_commas (header);
5181   while (*header) {
5182     end = gst_rtspsrc_skip_item (header);
5183     list = g_slist_prepend (list, g_strndup (header, end - header));
5184     header = gst_rtspsrc_skip_commas (end);
5185   }
5186   if (!list)
5187     return;
5188
5189   list = g_slist_reverse (list);
5190   for (iter = list; iter; iter = iter->next) {
5191     item = iter->data;
5192
5193     eq = strchr (item, '=');
5194     if (eq) {
5195       name_end = (gchar *) gst_rtspsrc_unskip_lws (eq, item);
5196       if (name_end == item) {
5197         /* That's no good... */
5198         g_free (item);
5199         continue;
5200       }
5201
5202       *name_end = '\0';
5203
5204       value = (gchar *) gst_rtspsrc_skip_lws (eq + 1);
5205       if (*value == '"')
5206         gst_rtsp_decode_quoted_string (value);
5207     } else
5208       value = NULL;
5209
5210     if (value && strcmp (item, "stale") == 0 && strcmp (value, "TRUE") == 0)
5211       *stale = TRUE;
5212     gst_rtsp_connection_set_auth_param (conn, item, value);
5213     g_free (item);
5214   }
5215
5216   g_slist_free (list);
5217 }
5218
5219 /* Parse a WWW-Authenticate Response header and determine the
5220  * available authentication methods
5221  *
5222  * This code should also cope with the fact that each WWW-Authenticate
5223  * header can contain multiple challenge methods + tokens
5224  *
5225  * At the moment, for Basic auth, we just do a minimal check and don't
5226  * even parse out the realm */
5227 static void
5228 gst_rtspsrc_parse_auth_hdr (gchar * hdr, GstRTSPAuthMethod * methods,
5229     GstRTSPConnection * conn, gboolean * stale)
5230 {
5231   gchar *start;
5232
5233   g_return_if_fail (hdr != NULL);
5234   g_return_if_fail (methods != NULL);
5235   g_return_if_fail (stale != NULL);
5236
5237   /* Skip whitespace at the start of the string */
5238   for (start = hdr; start[0] != '\0' && g_ascii_isspace (start[0]); start++);
5239
5240   if (g_ascii_strncasecmp (start, "basic", 5) == 0)
5241     *methods |= GST_RTSP_AUTH_BASIC;
5242   else if (g_ascii_strncasecmp (start, "digest ", 7) == 0) {
5243     *methods |= GST_RTSP_AUTH_DIGEST;
5244     gst_rtspsrc_parse_digest_challenge (conn, &start[7], stale);
5245   }
5246 }
5247
5248 /**
5249  * gst_rtspsrc_setup_auth:
5250  * @src: the rtsp source
5251  *
5252  * Configure a username and password and auth method on the
5253  * connection object based on a response we received from the
5254  * peer.
5255  *
5256  * Currently, this requires that a username and password were supplied
5257  * in the uri. In the future, they may be requested on demand by sending
5258  * a message up the bus.
5259  *
5260  * Returns: TRUE if authentication information could be set up correctly.
5261  */
5262 static gboolean
5263 gst_rtspsrc_setup_auth (GstRTSPSrc * src, GstRTSPMessage * response)
5264 {
5265   gchar *user = NULL;
5266   gchar *pass = NULL;
5267   GstRTSPAuthMethod avail_methods = GST_RTSP_AUTH_NONE;
5268   GstRTSPAuthMethod method;
5269   GstRTSPResult auth_result;
5270   GstRTSPUrl *url;
5271   GstRTSPConnection *conn;
5272   gchar *hdr;
5273   gboolean stale = FALSE;
5274
5275   conn = src->conninfo.connection;
5276
5277   /* Identify the available auth methods and see if any are supported */
5278   if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_WWW_AUTHENTICATE,
5279           &hdr, 0) == GST_RTSP_OK) {
5280     gst_rtspsrc_parse_auth_hdr (hdr, &avail_methods, conn, &stale);
5281   }
5282
5283   if (avail_methods == GST_RTSP_AUTH_NONE)
5284     goto no_auth_available;
5285
5286   /* For digest auth, if the response indicates that the session
5287    * data are stale, we just update them in the connection object and
5288    * return TRUE to retry the request */
5289   if (stale)
5290     src->tried_url_auth = FALSE;
5291
5292   url = gst_rtsp_connection_get_url (conn);
5293
5294   /* Do we have username and password available? */
5295   if (url != NULL && !src->tried_url_auth && url->user != NULL
5296       && url->passwd != NULL) {
5297     user = url->user;
5298     pass = url->passwd;
5299     src->tried_url_auth = TRUE;
5300     GST_DEBUG_OBJECT (src,
5301         "Attempting authentication using credentials from the URL");
5302   } else {
5303     user = src->user_id;
5304     pass = src->user_pw;
5305     GST_DEBUG_OBJECT (src,
5306         "Attempting authentication using credentials from the properties");
5307   }
5308
5309   /* FIXME: If the url didn't contain username and password or we tried them
5310    * already, request a username and passwd from the application via some kind
5311    * of credentials request message */
5312
5313   /* If we don't have a username and passwd at this point, bail out. */
5314   if (user == NULL || pass == NULL)
5315     goto no_user_pass;
5316
5317   /* Try to configure for each available authentication method, strongest to
5318    * weakest */
5319   for (method = GST_RTSP_AUTH_MAX; method != GST_RTSP_AUTH_NONE; method >>= 1) {
5320     /* Check if this method is available on the server */
5321     if ((method & avail_methods) == 0)
5322       continue;
5323
5324     /* Pass the credentials to the connection to try on the next request */
5325     auth_result = gst_rtsp_connection_set_auth (conn, method, user, pass);
5326     /* INVAL indicates an invalid username/passwd were supplied, so we'll just
5327      * ignore it and end up retrying later */
5328     if (auth_result == GST_RTSP_OK || auth_result == GST_RTSP_EINVAL) {
5329       GST_DEBUG_OBJECT (src, "Attempting %s authentication",
5330           gst_rtsp_auth_method_to_string (method));
5331       break;
5332     }
5333   }
5334
5335   if (method == GST_RTSP_AUTH_NONE)
5336     goto no_auth_available;
5337
5338   return TRUE;
5339
5340 no_auth_available:
5341   {
5342     /* Output an error indicating that we couldn't connect because there were
5343      * no supported authentication protocols */
5344     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5345         ("No supported authentication protocol was found"));
5346     return FALSE;
5347   }
5348 no_user_pass:
5349   {
5350     /* We don't fire an error message, we just return FALSE and let the
5351      * normal NOT_AUTHORIZED error be propagated */
5352     return FALSE;
5353   }
5354 }
5355
5356 static GstRTSPResult
5357 gst_rtspsrc_try_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5358     GstRTSPMessage * request, GstRTSPMessage * response,
5359     GstRTSPStatusCode * code)
5360 {
5361   GstRTSPResult res;
5362   GstRTSPStatusCode thecode;
5363   gchar *content_base = NULL;
5364   gint try = 0;
5365
5366 again:
5367   if (!src->short_header)
5368     gst_rtsp_ext_list_before_send (src->extensions, request);
5369
5370   GST_DEBUG_OBJECT (src, "sending message");
5371
5372   if (src->debug)
5373     gst_rtsp_message_dump (request);
5374
5375   res = gst_rtspsrc_connection_send (src, conn, request, src->ptcp_timeout);
5376   if (res < 0)
5377     goto send_error;
5378
5379   gst_rtsp_connection_reset_timeout (conn);
5380
5381 next:
5382   res = gst_rtspsrc_connection_receive (src, conn, response, src->ptcp_timeout);
5383   if (res < 0)
5384     goto receive_error;
5385
5386   if (src->debug)
5387     gst_rtsp_message_dump (response);
5388
5389   switch (response->type) {
5390     case GST_RTSP_MESSAGE_REQUEST:
5391       res = gst_rtspsrc_handle_request (src, conn, response);
5392       if (res == GST_RTSP_EEOF)
5393         goto server_eof;
5394       else if (res < 0)
5395         goto handle_request_failed;
5396       goto next;
5397     case GST_RTSP_MESSAGE_RESPONSE:
5398       /* ok, a response is good */
5399       GST_DEBUG_OBJECT (src, "received response message");
5400       break;
5401     case GST_RTSP_MESSAGE_DATA:
5402       /* get next response */
5403       GST_DEBUG_OBJECT (src, "handle data response message");
5404       gst_rtspsrc_handle_data (src, response);
5405       goto next;
5406     default:
5407       GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
5408           response->type);
5409       goto next;
5410   }
5411
5412   thecode = response->type_data.response.code;
5413
5414   GST_DEBUG_OBJECT (src, "got response message %d", thecode);
5415
5416   /* if the caller wanted the result code, we store it. */
5417   if (code)
5418     *code = thecode;
5419
5420   /* If the request didn't succeed, bail out before doing any more */
5421   if (thecode != GST_RTSP_STS_OK)
5422     return GST_RTSP_OK;
5423
5424   /* store new content base if any */
5425   gst_rtsp_message_get_header (response, GST_RTSP_HDR_CONTENT_BASE,
5426       &content_base, 0);
5427   if (content_base) {
5428     g_free (src->content_base);
5429     src->content_base = g_strdup (content_base);
5430   }
5431   gst_rtsp_ext_list_after_send (src->extensions, request, response);
5432
5433   return GST_RTSP_OK;
5434
5435   /* ERRORS */
5436 send_error:
5437   {
5438     gchar *str = gst_rtsp_strresult (res);
5439
5440     if (res != GST_RTSP_EINTR) {
5441       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5442           ("Could not send message. (%s)", str));
5443     } else {
5444       GST_WARNING_OBJECT (src, "send interrupted");
5445     }
5446     g_free (str);
5447     return res;
5448   }
5449 receive_error:
5450   {
5451     switch (res) {
5452       case GST_RTSP_EEOF:
5453         GST_WARNING_OBJECT (src, "server closed connection");
5454         if ((try == 0) && !src->interleaved && src->udp_reconnect) {
5455           try++;
5456           /* if reconnect succeeds, try again */
5457           if ((res =
5458                   gst_rtsp_conninfo_reconnect (src, &src->conninfo,
5459                       FALSE)) == 0)
5460             goto again;
5461         }
5462         /* only try once after reconnect, then fallthrough and error out */
5463       default:
5464       {
5465         gchar *str = gst_rtsp_strresult (res);
5466
5467         if (res != GST_RTSP_EINTR) {
5468           GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5469               ("Could not receive message. (%s)", str));
5470         } else {
5471           GST_WARNING_OBJECT (src, "receive interrupted");
5472         }
5473         g_free (str);
5474         break;
5475       }
5476     }
5477     return res;
5478   }
5479 handle_request_failed:
5480   {
5481     /* ERROR was posted */
5482     gst_rtsp_message_unset (response);
5483     return res;
5484   }
5485 server_eof:
5486   {
5487     GST_DEBUG_OBJECT (src, "we got an eof from the server");
5488     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
5489         ("The server closed the connection."));
5490     gst_rtsp_message_unset (response);
5491     return res;
5492   }
5493 }
5494
5495 /**
5496  * gst_rtspsrc_send:
5497  * @src: the rtsp source
5498  * @conn: the connection to send on
5499  * @request: must point to a valid request
5500  * @response: must point to an empty #GstRTSPMessage
5501  * @code: an optional code result
5502  *
5503  * send @request and retrieve the response in @response. optionally @code can be
5504  * non-NULL in which case it will contain the status code of the response.
5505  *
5506  * If This function returns #GST_RTSP_OK, @response will contain a valid response
5507  * message that should be cleaned with gst_rtsp_message_unset() after usage.
5508  *
5509  * If @code is NULL, this function will return #GST_RTSP_ERROR (with an invalid
5510  * @response message) if the response code was not 200 (OK).
5511  *
5512  * If the attempt results in an authentication failure, then this will attempt
5513  * to retrieve authentication credentials via gst_rtspsrc_setup_auth and retry
5514  * the request.
5515  *
5516  * Returns: #GST_RTSP_OK if the processing was successful.
5517  */
5518 static GstRTSPResult
5519 gst_rtspsrc_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5520     GstRTSPMessage * request, GstRTSPMessage * response,
5521     GstRTSPStatusCode * code)
5522 {
5523   GstRTSPStatusCode int_code = GST_RTSP_STS_OK;
5524   GstRTSPResult res = GST_RTSP_ERROR;
5525   gint count;
5526   gboolean retry;
5527   GstRTSPMethod method = GST_RTSP_INVALID;
5528
5529   count = 0;
5530   do {
5531     retry = FALSE;
5532
5533     /* make sure we don't loop forever */
5534     if (count++ > 8)
5535       break;
5536
5537     /* save method so we can disable it when the server complains */
5538     method = request->type_data.request.method;
5539
5540     if ((res =
5541             gst_rtspsrc_try_send (src, conn, request, response, &int_code)) < 0)
5542       goto error;
5543
5544     switch (int_code) {
5545       case GST_RTSP_STS_UNAUTHORIZED:
5546         if (gst_rtspsrc_setup_auth (src, response)) {
5547           /* Try the request/response again after configuring the auth info
5548            * and loop again */
5549           retry = TRUE;
5550         }
5551         break;
5552       default:
5553         break;
5554     }
5555   } while (retry == TRUE);
5556
5557   /* If the user requested the code, let them handle errors, otherwise
5558    * post an error below */
5559   if (code != NULL)
5560     *code = int_code;
5561   else if (int_code != GST_RTSP_STS_OK)
5562     goto error_response;
5563
5564   return res;
5565
5566   /* ERRORS */
5567 error:
5568   {
5569     GST_DEBUG_OBJECT (src, "got error %d", res);
5570     return res;
5571   }
5572 error_response:
5573   {
5574     res = GST_RTSP_ERROR;
5575
5576     switch (response->type_data.response.code) {
5577       case GST_RTSP_STS_NOT_FOUND:
5578         GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), ("%s",
5579                 response->type_data.response.reason));
5580         break;
5581       case GST_RTSP_STS_MOVED_PERMANENTLY:
5582       case GST_RTSP_STS_MOVE_TEMPORARILY:
5583       {
5584         gchar *new_location;
5585         GstRTSPLowerTrans transports;
5586
5587         GST_DEBUG_OBJECT (src, "got redirection");
5588         /* if we don't have a Location Header, we must error */
5589         if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_LOCATION,
5590                 &new_location, 0) < 0)
5591           break;
5592
5593         /* When we receive a redirect result, we go back to the INIT state after
5594          * parsing the new URI. The caller should do the needed steps to issue
5595          * a new setup when it detects this state change. */
5596         GST_DEBUG_OBJECT (src, "redirection to %s", new_location);
5597
5598         /* save current transports */
5599         if (src->conninfo.url)
5600           transports = src->conninfo.url->transports;
5601         else
5602           transports = GST_RTSP_LOWER_TRANS_UNKNOWN;
5603
5604         gst_rtspsrc_uri_set_uri (GST_URI_HANDLER (src), new_location, NULL);
5605
5606         /* set old transports */
5607         if (src->conninfo.url && transports != GST_RTSP_LOWER_TRANS_UNKNOWN)
5608           src->conninfo.url->transports = transports;
5609
5610         src->need_redirect = TRUE;
5611         src->state = GST_RTSP_STATE_INIT;
5612         res = GST_RTSP_OK;
5613         break;
5614       }
5615       case GST_RTSP_STS_NOT_ACCEPTABLE:
5616       case GST_RTSP_STS_NOT_IMPLEMENTED:
5617       case GST_RTSP_STS_METHOD_NOT_ALLOWED:
5618         GST_WARNING_OBJECT (src, "got NOT IMPLEMENTED, disable method %s",
5619             gst_rtsp_method_as_text (method));
5620         src->methods &= ~method;
5621         res = GST_RTSP_OK;
5622         break;
5623       default:
5624         GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5625             ("Got error response: %d (%s).", response->type_data.response.code,
5626                 response->type_data.response.reason));
5627         break;
5628     }
5629     /* if we return ERROR we should unset the response ourselves */
5630     if (res == GST_RTSP_ERROR)
5631       gst_rtsp_message_unset (response);
5632
5633     return res;
5634   }
5635 }
5636
5637 static GstRTSPResult
5638 gst_rtspsrc_send_cb (GstRTSPExtension * ext, GstRTSPMessage * request,
5639     GstRTSPMessage * response, GstRTSPSrc * src)
5640 {
5641   return gst_rtspsrc_send (src, src->conninfo.connection, request, response,
5642       NULL);
5643 }
5644
5645
5646 /* parse the response and collect all the supported methods. We need this
5647  * information so that we don't try to send an unsupported request to the
5648  * server.
5649  */
5650 static gboolean
5651 gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
5652 {
5653   GstRTSPHeaderField field;
5654   gchar *respoptions;
5655   gint indx = 0;
5656
5657   /* reset supported methods */
5658   src->methods = 0;
5659
5660   /* Try Allow Header first */
5661   field = GST_RTSP_HDR_ALLOW;
5662   while (TRUE) {
5663     respoptions = NULL;
5664     gst_rtsp_message_get_header (response, field, &respoptions, indx);
5665     if (indx == 0 && !respoptions) {
5666       /* if no Allow header was found then try the Public header... */
5667       field = GST_RTSP_HDR_PUBLIC;
5668       gst_rtsp_message_get_header (response, field, &respoptions, indx);
5669     }
5670     if (!respoptions)
5671       break;
5672
5673     src->methods |= gst_rtsp_options_from_text (respoptions);
5674
5675     indx++;
5676   }
5677
5678   if (src->methods == 0) {
5679     /* neither Allow nor Public are required, assume the server supports
5680      * at least DESCRIBE, SETUP, we always assume it supports PLAY as
5681      * well. */
5682     GST_DEBUG_OBJECT (src, "could not get OPTIONS");
5683     src->methods = GST_RTSP_DESCRIBE | GST_RTSP_SETUP;
5684   }
5685   /* always assume PLAY, FIXME, extensions should be able to override
5686    * this */
5687   src->methods |= GST_RTSP_PLAY;
5688   /* also assume it will support Range */
5689   src->seekable = TRUE;
5690
5691   /* we need describe and setup */
5692   if (!(src->methods & GST_RTSP_DESCRIBE))
5693     goto no_describe;
5694   if (!(src->methods & GST_RTSP_SETUP))
5695     goto no_setup;
5696
5697   return TRUE;
5698
5699   /* ERRORS */
5700 no_describe:
5701   {
5702     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5703         ("Server does not support DESCRIBE."));
5704     return FALSE;
5705   }
5706 no_setup:
5707   {
5708     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5709         ("Server does not support SETUP."));
5710     return FALSE;
5711   }
5712 }
5713
5714 /* masks to be kept in sync with the hardcoded protocol order of preference
5715  * in code below */
5716 static guint protocol_masks[] = {
5717   GST_RTSP_LOWER_TRANS_UDP,
5718   GST_RTSP_LOWER_TRANS_UDP_MCAST,
5719   GST_RTSP_LOWER_TRANS_TCP,
5720   0
5721 };
5722
5723 static GstRTSPResult
5724 gst_rtspsrc_create_transports_string (GstRTSPSrc * src,
5725     GstRTSPLowerTrans protocols, GstRTSPProfile profile, gchar ** transports)
5726 {
5727   GstRTSPResult res;
5728   GString *result;
5729   gboolean add_udp_str;
5730
5731   *transports = NULL;
5732
5733   res =
5734       gst_rtsp_ext_list_get_transports (src->extensions, protocols, transports);
5735
5736   if (res < 0)
5737     goto failed;
5738
5739   GST_DEBUG_OBJECT (src, "got transports %s", GST_STR_NULL (*transports));
5740
5741   /* extension listed transports, use those */
5742   if (*transports != NULL)
5743     return GST_RTSP_OK;
5744
5745   /* it's the default */
5746   add_udp_str = FALSE;
5747
5748   /* the default RTSP transports */
5749   result = g_string_new ("RTP");
5750
5751   switch (profile) {
5752     case GST_RTSP_PROFILE_AVP:
5753       g_string_append (result, "/AVP");
5754       break;
5755     case GST_RTSP_PROFILE_SAVP:
5756       g_string_append (result, "/SAVP");
5757       break;
5758     case GST_RTSP_PROFILE_AVPF:
5759       g_string_append (result, "/AVPF");
5760       break;
5761     case GST_RTSP_PROFILE_SAVPF:
5762       g_string_append (result, "/SAVPF");
5763       break;
5764     default:
5765       break;
5766   }
5767
5768   if (protocols & GST_RTSP_LOWER_TRANS_UDP) {
5769     GST_DEBUG_OBJECT (src, "adding UDP unicast");
5770     if (add_udp_str)
5771       g_string_append (result, "/UDP");
5772     g_string_append (result, ";unicast;client_port=%%u1-%%u2");
5773   } else if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) {
5774     GST_DEBUG_OBJECT (src, "adding UDP multicast");
5775     /* we don't have to allocate any UDP ports yet, if the selected transport
5776      * turns out to be multicast we can create them and join the multicast
5777      * group indicated in the transport reply */
5778     if (add_udp_str)
5779       g_string_append (result, "/UDP");
5780     g_string_append (result, ";multicast");
5781     if (src->next_port_num != 0) {
5782       if (src->client_port_range.max > 0 &&
5783           src->next_port_num >= src->client_port_range.max)
5784         goto no_ports;
5785
5786       g_string_append_printf (result, ";client_port=%d-%d",
5787           src->next_port_num, src->next_port_num + 1);
5788     }
5789   } else if (protocols & GST_RTSP_LOWER_TRANS_TCP) {
5790     GST_DEBUG_OBJECT (src, "adding TCP");
5791
5792     g_string_append (result, "/TCP;unicast;interleaved=%%i1-%%i2");
5793   }
5794   *transports = g_string_free (result, FALSE);
5795
5796   GST_DEBUG_OBJECT (src, "prepared transports %s", GST_STR_NULL (*transports));
5797
5798   return GST_RTSP_OK;
5799
5800   /* ERRORS */
5801 failed:
5802   {
5803     GST_ERROR ("extension gave error %d", res);
5804     return res;
5805   }
5806 no_ports:
5807   {
5808     GST_ERROR ("no more ports available");
5809     return GST_RTSP_ERROR;
5810   }
5811 }
5812
5813 static GstRTSPResult
5814 gst_rtspsrc_prepare_transports (GstRTSPStream * stream, gchar ** transports,
5815     gint orig_rtpport, gint orig_rtcpport)
5816 {
5817   GstRTSPSrc *src;
5818   gint nr_udp, nr_int;
5819   gchar *next, *p;
5820   gint rtpport = 0, rtcpport = 0;
5821   GString *str;
5822
5823   src = stream->parent;
5824
5825   /* find number of placeholders first */
5826   if (strstr (*transports, "%%i2"))
5827     nr_int = 2;
5828   else if (strstr (*transports, "%%i1"))
5829     nr_int = 1;
5830   else
5831     nr_int = 0;
5832
5833   if (strstr (*transports, "%%u2"))
5834     nr_udp = 2;
5835   else if (strstr (*transports, "%%u1"))
5836     nr_udp = 1;
5837   else
5838     nr_udp = 0;
5839
5840   if (nr_udp == 0 && nr_int == 0)
5841     goto done;
5842
5843   if (nr_udp > 0) {
5844     if (!orig_rtpport || !orig_rtcpport) {
5845       if (!gst_rtspsrc_alloc_udp_ports (stream, &rtpport, &rtcpport))
5846         goto failed;
5847     } else {
5848       rtpport = orig_rtpport;
5849       rtcpport = orig_rtcpport;
5850     }
5851   }
5852
5853   str = g_string_new ("");
5854   p = *transports;
5855   while ((next = strstr (p, "%%"))) {
5856     g_string_append_len (str, p, next - p);
5857     if (next[2] == 'u') {
5858       if (next[3] == '1')
5859         g_string_append_printf (str, "%d", rtpport);
5860       else if (next[3] == '2')
5861         g_string_append_printf (str, "%d", rtcpport);
5862     }
5863     if (next[2] == 'i') {
5864       if (next[3] == '1')
5865         g_string_append_printf (str, "%d", src->free_channel);
5866       else if (next[3] == '2')
5867         g_string_append_printf (str, "%d", src->free_channel + 1);
5868     }
5869
5870     p = next + 4;
5871   }
5872   /* append final part */
5873   g_string_append (str, p);
5874
5875   g_free (*transports);
5876   *transports = g_string_free (str, FALSE);
5877
5878 done:
5879   return GST_RTSP_OK;
5880
5881   /* ERRORS */
5882 failed:
5883   {
5884     GST_ERROR ("failed to allocate udp ports");
5885     return GST_RTSP_ERROR;
5886   }
5887 }
5888
5889 static guint8
5890 enc_key_length_from_cipher_name (const gchar * cipher)
5891 {
5892   if (g_strcmp0 (cipher, "aes-128-icm") == 0)
5893     return AES_128_KEY_LEN;
5894   else if (g_strcmp0 (cipher, "aes-256-icm") == 0)
5895     return AES_256_KEY_LEN;
5896   else {
5897     GST_ERROR ("encryption algorithm '%s' not supported", cipher);
5898     return 0;
5899   }
5900 }
5901
5902 static guint8
5903 auth_key_length_from_auth_name (const gchar * auth)
5904 {
5905   if (g_strcmp0 (auth, "hmac-sha1-32") == 0)
5906     return HMAC_32_KEY_LEN;
5907   else if (g_strcmp0 (auth, "hmac-sha1-80") == 0)
5908     return HMAC_80_KEY_LEN;
5909   else {
5910     GST_ERROR ("authentication algorithm '%s' not supported", auth);
5911     return 0;
5912   }
5913 }
5914
5915 static GstCaps *
5916 signal_get_srtcp_params (GstRTSPSrc * src, GstRTSPStream * stream)
5917 {
5918   GstCaps *caps = NULL;
5919
5920   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_REQUEST_RTCP_KEY], 0,
5921       stream->id, &caps);
5922
5923   if (caps != NULL)
5924     GST_DEBUG_OBJECT (src, "SRTP parameters received");
5925
5926   return caps;
5927 }
5928
5929 static GstCaps *
5930 default_srtcp_params (void)
5931 {
5932   guint i;
5933   GstCaps *caps;
5934   GstBuffer *buf;
5935   guint8 *key_data;
5936 #define KEY_SIZE 30
5937
5938   /* create a random key */
5939   key_data = g_malloc (KEY_SIZE);
5940   for (i = 0; i < KEY_SIZE; i += 4)
5941     GST_WRITE_UINT32_BE (key_data + i, g_random_int ());
5942
5943   buf = gst_buffer_new_wrapped (key_data, KEY_SIZE);
5944
5945   caps = gst_caps_new_simple ("application/x-srtp",
5946       "srtp-key", GST_TYPE_BUFFER, buf,
5947       "srtcp-cipher", G_TYPE_STRING, "aes-128-icm",
5948       "srtcp-auth", G_TYPE_STRING, "hmac-sha1-80", NULL);
5949
5950   return caps;
5951 }
5952
5953 static gchar *
5954 gst_rtspsrc_stream_make_keymgmt (GstRTSPSrc * src, GstRTSPStream * stream)
5955 {
5956   GBytes *bytes;
5957   gchar *result, *base64;
5958   const guint8 *data;
5959   gsize size;
5960   GstMIKEYMessage *msg;
5961   GstMIKEYPayload *payload, *pkd;
5962   guint8 byte;
5963   GstStructure *s;
5964   GstMapInfo info;
5965   GstBuffer *srtpkey;
5966   const GValue *val;
5967   const gchar *srtcpcipher, *srtcpauth;
5968
5969   stream->srtcpparams = signal_get_srtcp_params (src, stream);
5970   if (stream->srtcpparams == NULL)
5971     stream->srtcpparams = default_srtcp_params ();
5972
5973   s = gst_caps_get_structure (stream->srtcpparams, 0);
5974
5975   srtcpcipher = gst_structure_get_string (s, "srtcp-cipher");
5976   srtcpauth = gst_structure_get_string (s, "srtcp-auth");
5977   val = gst_structure_get_value (s, "srtp-key");
5978
5979   if (srtcpcipher == NULL || srtcpauth == NULL || val == NULL) {
5980     GST_ERROR_OBJECT (src, "could not find the right SRTP parameters in caps");
5981     return NULL;
5982   }
5983
5984   srtpkey = gst_value_get_buffer (val);
5985
5986   msg = gst_mikey_message_new ();
5987   /* unencrypted MIKEY message, we send this over TLS so this is allowed */
5988   gst_mikey_message_set_info (msg, GST_MIKEY_VERSION, GST_MIKEY_TYPE_PSK_INIT,
5989       FALSE, GST_MIKEY_PRF_MIKEY_1, g_random_int (), GST_MIKEY_MAP_TYPE_SRTP);
5990   /* add policy '0' for our SSRC */
5991   gst_mikey_message_add_cs_srtp (msg, 0, stream->send_ssrc, 0);
5992   /* timestamp is now */
5993   gst_mikey_message_add_t_now_ntp_utc (msg);
5994   /* add some random data */
5995   gst_mikey_message_add_rand_len (msg, 16);
5996
5997   /* the policy '0' is SRTP */
5998   payload = gst_mikey_payload_new (GST_MIKEY_PT_SP);
5999   gst_mikey_payload_sp_set (payload, 0, GST_MIKEY_SEC_PROTO_SRTP);
6000
6001   /* only AES-CM is supported */
6002   byte = 1;
6003   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_ALG, 1, &byte);
6004   /* encryption key length */
6005   byte = enc_key_length_from_cipher_name (srtcpcipher);
6006   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_KEY_LEN, 1,
6007       &byte);
6008   /* only HMAC-SHA1 */
6009   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_ALG, 1,
6010       &byte);
6011   /* authentication key length */
6012   byte = auth_key_length_from_auth_name (srtcpauth);
6013   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_KEY_LEN, 1,
6014       &byte);
6015   /* we enable encryption on RTP and RTCP */
6016   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_ENC, 1,
6017       &byte);
6018   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTCP_ENC, 1,
6019       &byte);
6020   /* we enable authentication on RTP and RTCP */
6021   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_AUTH, 1,
6022       &byte);
6023   gst_mikey_message_add_payload (msg, payload);
6024
6025   /* make unencrypted KEMAC */
6026   payload = gst_mikey_payload_new (GST_MIKEY_PT_KEMAC);
6027   gst_mikey_payload_kemac_set (payload, GST_MIKEY_ENC_NULL, GST_MIKEY_MAC_NULL);
6028   /* add the key in KEMAC */
6029   pkd = gst_mikey_payload_new (GST_MIKEY_PT_KEY_DATA);
6030   gst_buffer_map (srtpkey, &info, GST_MAP_READ);
6031   gst_mikey_payload_key_data_set_key (pkd, GST_MIKEY_KD_TEK, info.size,
6032       info.data);
6033   gst_buffer_unmap (srtpkey, &info);
6034   gst_mikey_payload_kemac_add_sub (payload, pkd);
6035   gst_mikey_message_add_payload (msg, payload);
6036
6037   /* now serialize this to bytes */
6038   bytes = gst_mikey_message_to_bytes (msg, NULL, NULL);
6039   gst_mikey_message_free (msg);
6040   /* and make it into base64 */
6041   data = g_bytes_get_data (bytes, &size);
6042   base64 = g_base64_encode (data, size);
6043   g_bytes_unref (bytes);
6044
6045   result = g_strdup_printf ("prot=mikey;uri=\"%s\";data=\"%s\"",
6046       stream->conninfo.location, base64);
6047   g_free (base64);
6048
6049   return result;
6050 }
6051
6052
6053 /* Perform the SETUP request for all the streams.
6054  *
6055  * We ask the server for a specific transport, which initially includes all the
6056  * ones we can support (UDP/TCP/MULTICAST). For the UDP transport we allocate
6057  * two local UDP ports that we send to the server.
6058  *
6059  * Once the server replied with a transport, we configure the other streams
6060  * with the same transport.
6061  *
6062  * This function will also configure the stream for the selected transport,
6063  * which basically means creating the pipeline.
6064  */
6065 static GstRTSPResult
6066 gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
6067 {
6068   GList *walk;
6069   GstRTSPResult res = GST_RTSP_ERROR;
6070   GstRTSPMessage request = { 0 };
6071   GstRTSPMessage response = { 0 };
6072   GstRTSPStream *stream = NULL;
6073   GstRTSPLowerTrans protocols;
6074   GstRTSPStatusCode code;
6075   gboolean unsupported_real = FALSE;
6076   gint rtpport, rtcpport;
6077   GstRTSPUrl *url;
6078   gchar *hval;
6079
6080   if (src->conninfo.connection) {
6081     url = gst_rtsp_connection_get_url (src->conninfo.connection);
6082     /* we initially allow all configured lower transports. based on the URL
6083      * transports and the replies from the server we narrow them down. */
6084     protocols = url->transports & src->cur_protocols;
6085   } else {
6086     url = NULL;
6087     protocols = src->cur_protocols;
6088   }
6089
6090   if (protocols == 0)
6091     goto no_protocols;
6092
6093   /* reset some state */
6094   src->free_channel = 0;
6095   src->interleaved = FALSE;
6096   src->need_activate = FALSE;
6097   /* keep track of next port number, 0 is random */
6098   src->next_port_num = src->client_port_range.min;
6099   rtpport = rtcpport = 0;
6100
6101   if (G_UNLIKELY (src->streams == NULL))
6102     goto no_streams;
6103
6104   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6105     GstRTSPConnection *conn;
6106     gchar *transports;
6107     gint retry = 0;
6108     guint mask = 0;
6109     gboolean selected;
6110     GstCaps *caps;
6111
6112     stream = (GstRTSPStream *) walk->data;
6113
6114     caps = stream_get_caps_for_pt (stream, stream->default_pt);
6115     if (caps == NULL) {
6116       GST_DEBUG_OBJECT (src, "skipping stream %p, no caps", stream);
6117       continue;
6118     }
6119
6120     if (stream->skipped) {
6121       GST_DEBUG_OBJECT (src, "skipping stream %p", stream);
6122       continue;
6123     }
6124
6125     /* see if we need to configure this stream */
6126     if (!gst_rtsp_ext_list_configure_stream (src->extensions, caps)) {
6127       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by extension",
6128           stream);
6129       continue;
6130     }
6131
6132     g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_SELECT_STREAM], 0,
6133         stream->id, caps, &selected);
6134     if (!selected) {
6135       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by signal", stream);
6136       continue;
6137     }
6138
6139     /* merge/overwrite global caps */
6140     if (caps) {
6141       guint j, num;
6142       GstStructure *s;
6143
6144       s = gst_caps_get_structure (caps, 0);
6145
6146       num = gst_structure_n_fields (src->props);
6147       for (j = 0; j < num; j++) {
6148         const gchar *name;
6149         const GValue *val;
6150
6151         name = gst_structure_nth_field_name (src->props, j);
6152         val = gst_structure_get_value (src->props, name);
6153         gst_structure_set_value (s, name, val);
6154
6155         GST_DEBUG_OBJECT (src, "copied %s", name);
6156       }
6157     }
6158
6159     /* skip setup if we have no URL for it */
6160     if (stream->conninfo.location == NULL) {
6161       GST_DEBUG_OBJECT (src, "skipping stream %p, no setup", stream);
6162       continue;
6163     }
6164
6165     if (src->conninfo.connection == NULL) {
6166       if (!gst_rtsp_conninfo_connect (src, &stream->conninfo, async)) {
6167         GST_DEBUG_OBJECT (src, "skipping stream %p, failed to connect", stream);
6168         continue;
6169       }
6170       conn = stream->conninfo.connection;
6171     } else {
6172       conn = src->conninfo.connection;
6173     }
6174     GST_DEBUG_OBJECT (src, "doing setup of stream %p with %s", stream,
6175         stream->conninfo.location);
6176
6177     /* if we have a multicast connection, only suggest multicast from now on */
6178     if (stream->is_multicast)
6179       protocols &= GST_RTSP_LOWER_TRANS_UDP_MCAST;
6180
6181   next_protocol:
6182     /* first selectable protocol */
6183     while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6184       mask++;
6185     if (!protocol_masks[mask])
6186       goto no_protocols;
6187
6188   retry:
6189     GST_DEBUG_OBJECT (src, "protocols = 0x%x, protocol mask = 0x%x", protocols,
6190         protocol_masks[mask]);
6191     /* create a string with first transport in line */
6192     transports = NULL;
6193     res = gst_rtspsrc_create_transports_string (src,
6194         protocols & protocol_masks[mask], stream->profile, &transports);
6195     if (res < 0 || transports == NULL)
6196       goto setup_transport_failed;
6197
6198     if (strlen (transports) == 0) {
6199       g_free (transports);
6200       GST_DEBUG_OBJECT (src, "no transports found");
6201       mask++;
6202       goto next_protocol;
6203     }
6204
6205     GST_DEBUG_OBJECT (src, "replace ports in %s", GST_STR_NULL (transports));
6206
6207     /* replace placeholders with real values, this function will optionally
6208      * allocate UDP ports and other info needed to execute the setup request */
6209     res = gst_rtspsrc_prepare_transports (stream, &transports,
6210         retry > 0 ? rtpport : 0, retry > 0 ? rtcpport : 0);
6211     if (res < 0) {
6212       g_free (transports);
6213       goto setup_transport_failed;
6214     }
6215
6216     GST_DEBUG_OBJECT (src, "transport is now %s", GST_STR_NULL (transports));
6217
6218     /* create SETUP request */
6219     res =
6220         gst_rtsp_message_init_request (&request, GST_RTSP_SETUP,
6221         stream->conninfo.location);
6222     if (res < 0) {
6223       g_free (transports);
6224       goto create_request_failed;
6225     }
6226
6227     /* select transport */
6228     gst_rtsp_message_take_header (&request, GST_RTSP_HDR_TRANSPORT, transports);
6229
6230     /* set up keys */
6231     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
6232         stream->profile == GST_RTSP_PROFILE_SAVPF) {
6233       hval = gst_rtspsrc_stream_make_keymgmt (src, stream);
6234       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_KEYMGMT, hval);
6235     }
6236
6237     /* if the user wants a non default RTP packet size we add the blocksize
6238      * parameter */
6239     if (src->rtp_blocksize > 0) {
6240       hval = g_strdup_printf ("%d", src->rtp_blocksize);
6241       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_BLOCKSIZE, hval);
6242     }
6243
6244     if (async)
6245       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("SETUP stream %d",
6246               stream->id));
6247
6248     /* handle the code ourselves */
6249     if ((res = gst_rtspsrc_send (src, conn, &request, &response, &code) < 0))
6250       goto send_error;
6251
6252     switch (code) {
6253       case GST_RTSP_STS_OK:
6254         break;
6255       case GST_RTSP_STS_UNSUPPORTED_TRANSPORT:
6256         gst_rtsp_message_unset (&request);
6257         gst_rtsp_message_unset (&response);
6258         /* cleanup of leftover transport */
6259         gst_rtspsrc_stream_free_udp (stream);
6260         /* MS WMServer RTSP MUST use same UDP pair in all SETUP requests;
6261          * we might be in this case */
6262         if (stream->container && rtpport && rtcpport && !retry) {
6263           GST_DEBUG_OBJECT (src, "retrying with original port pair %u-%u",
6264               rtpport, rtcpport);
6265           retry++;
6266           goto retry;
6267         }
6268         /* this transport did not go down well, but we may have others to try
6269          * that we did not send yet, try those and only give up then
6270          * but not without checking for lost cause/extension so we can
6271          * post a nicer/more useful error message later */
6272         if (!unsupported_real)
6273           unsupported_real = stream->is_real;
6274         /* select next available protocol, give up on this stream if none */
6275         mask++;
6276         while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6277           mask++;
6278         if (!protocol_masks[mask] || unsupported_real)
6279           continue;
6280         else
6281           goto retry;
6282       default:
6283         /* cleanup of leftover transport and move to the next stream */
6284         gst_rtspsrc_stream_free_udp (stream);
6285         goto response_error;
6286     }
6287
6288     /* parse response transport */
6289     {
6290       gchar *resptrans = NULL;
6291       GstRTSPTransport transport = { 0 };
6292
6293       gst_rtsp_message_get_header (&response, GST_RTSP_HDR_TRANSPORT,
6294           &resptrans, 0);
6295       if (!resptrans) {
6296         gst_rtspsrc_stream_free_udp (stream);
6297         goto no_transport;
6298       }
6299
6300       /* parse transport, go to next stream on parse error */
6301       if (gst_rtsp_transport_parse (resptrans, &transport) != GST_RTSP_OK) {
6302         GST_WARNING_OBJECT (src, "failed to parse transport %s", resptrans);
6303         goto next;
6304       }
6305
6306       /* update allowed transports for other streams. once the transport of
6307        * one stream has been determined, we make sure that all other streams
6308        * are configured in the same way */
6309       switch (transport.lower_transport) {
6310         case GST_RTSP_LOWER_TRANS_TCP:
6311           GST_DEBUG_OBJECT (src, "stream %p as TCP interleaved", stream);
6312           protocols = GST_RTSP_LOWER_TRANS_TCP;
6313           src->interleaved = TRUE;
6314           /* update free channels */
6315           src->free_channel =
6316               MAX (transport.interleaved.min, src->free_channel);
6317           src->free_channel =
6318               MAX (transport.interleaved.max, src->free_channel);
6319           src->free_channel++;
6320           break;
6321         case GST_RTSP_LOWER_TRANS_UDP_MCAST:
6322           /* only allow multicast for other streams */
6323           GST_DEBUG_OBJECT (src, "stream %p as UDP multicast", stream);
6324           protocols = GST_RTSP_LOWER_TRANS_UDP_MCAST;
6325           /* if the server selected our ports, increment our counters so that
6326            * we select a new port later */
6327           if (src->next_port_num == transport.port.min &&
6328               src->next_port_num + 1 == transport.port.max) {
6329             src->next_port_num += 2;
6330           }
6331           break;
6332         case GST_RTSP_LOWER_TRANS_UDP:
6333           /* only allow unicast for other streams */
6334           GST_DEBUG_OBJECT (src, "stream %p as UDP unicast", stream);
6335           protocols = GST_RTSP_LOWER_TRANS_UDP;
6336           break;
6337         default:
6338           GST_DEBUG_OBJECT (src, "stream %p unknown transport %d", stream,
6339               transport.lower_transport);
6340           break;
6341       }
6342
6343       if (!stream->container || (!src->interleaved && !retry)) {
6344         /* now configure the stream with the selected transport */
6345         if (!gst_rtspsrc_stream_configure_transport (stream, &transport)) {
6346           GST_DEBUG_OBJECT (src,
6347               "could not configure stream %p transport, skipping stream",
6348               stream);
6349           goto next;
6350         } else if (stream->udpsrc[0] && stream->udpsrc[1]) {
6351           /* retain the first allocated UDP port pair */
6352           g_object_get (G_OBJECT (stream->udpsrc[0]), "port", &rtpport, NULL);
6353           g_object_get (G_OBJECT (stream->udpsrc[1]), "port", &rtcpport, NULL);
6354         }
6355       }
6356       /* we need to activate at least one streams when we detect activity */
6357       src->need_activate = TRUE;
6358
6359       /* stream is setup now */
6360       stream->setup = TRUE;
6361       {
6362         GList *skip = walk;
6363
6364         while (TRUE) {
6365           GstRTSPStream *sskip;
6366
6367           skip = g_list_next (skip);
6368           if (skip == NULL)
6369             break;
6370
6371           sskip = (GstRTSPStream *) skip->data;
6372
6373           /* skip all streams with the same control url */
6374           if (g_str_equal (stream->conninfo.location, sskip->conninfo.location)) {
6375             GST_DEBUG_OBJECT (src, "found stream %p with same control %s",
6376                 sskip, sskip->conninfo.location);
6377             sskip->skipped = TRUE;
6378           }
6379         }
6380       }
6381     next:
6382       /* clean up our transport struct */
6383       gst_rtsp_transport_init (&transport);
6384       /* clean up used RTSP messages */
6385       gst_rtsp_message_unset (&request);
6386       gst_rtsp_message_unset (&response);
6387     }
6388   }
6389
6390   /* store the transport protocol that was configured */
6391   src->cur_protocols = protocols;
6392
6393   gst_rtsp_ext_list_stream_select (src->extensions, url);
6394
6395   /* if there is nothing to activate, error out */
6396   if (!src->need_activate)
6397     goto nothing_to_activate;
6398
6399   return res;
6400
6401   /* ERRORS */
6402 no_protocols:
6403   {
6404     /* no transport possible, post an error and stop */
6405     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
6406         ("Could not connect to server, no protocols left"));
6407     return GST_RTSP_ERROR;
6408   }
6409 no_streams:
6410   {
6411     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6412         ("SDP contains no streams"));
6413     return GST_RTSP_ERROR;
6414   }
6415 create_request_failed:
6416   {
6417     gchar *str = gst_rtsp_strresult (res);
6418
6419     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6420         ("Could not create request. (%s)", str));
6421     g_free (str);
6422     goto cleanup_error;
6423   }
6424 setup_transport_failed:
6425   {
6426     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6427         ("Could not setup transport."));
6428     res = GST_RTSP_ERROR;
6429     goto cleanup_error;
6430   }
6431 response_error:
6432   {
6433     const gchar *str = gst_rtsp_status_as_text (code);
6434
6435     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6436         ("Error (%d): %s", code, GST_STR_NULL (str)));
6437     res = GST_RTSP_ERROR;
6438     goto cleanup_error;
6439   }
6440 send_error:
6441   {
6442     gchar *str = gst_rtsp_strresult (res);
6443
6444     if (res != GST_RTSP_EINTR) {
6445       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6446           ("Could not send message. (%s)", str));
6447     } else {
6448       GST_WARNING_OBJECT (src, "send interrupted");
6449     }
6450     g_free (str);
6451     goto cleanup_error;
6452   }
6453 no_transport:
6454   {
6455     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6456         ("Server did not select transport."));
6457     res = GST_RTSP_ERROR;
6458     goto cleanup_error;
6459   }
6460 nothing_to_activate:
6461   {
6462     /* none of the available error codes is really right .. */
6463     if (unsupported_real) {
6464       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6465           (_("No supported stream was found. You might need to install a "
6466                   "GStreamer RTSP extension plugin for Real media streams.")),
6467           (NULL));
6468     } else {
6469       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6470           (_("No supported stream was found. You might need to allow "
6471                   "more transport protocols or may otherwise be missing "
6472                   "the right GStreamer RTSP extension plugin.")), (NULL));
6473     }
6474     return GST_RTSP_ERROR;
6475   }
6476 cleanup_error:
6477   {
6478     gst_rtsp_message_unset (&request);
6479     gst_rtsp_message_unset (&response);
6480     return res;
6481   }
6482 }
6483
6484 static gboolean
6485 gst_rtspsrc_parse_range (GstRTSPSrc * src, const gchar * range,
6486     GstSegment * segment)
6487 {
6488   gint64 seconds;
6489   GstRTSPTimeRange *therange;
6490
6491   if (src->range)
6492     gst_rtsp_range_free (src->range);
6493
6494   if (gst_rtsp_range_parse (range, &therange) == GST_RTSP_OK) {
6495     GST_DEBUG_OBJECT (src, "parsed range %s", range);
6496     src->range = therange;
6497   } else {
6498     GST_DEBUG_OBJECT (src, "failed to parse range %s", range);
6499     src->range = NULL;
6500     gst_segment_init (segment, GST_FORMAT_TIME);
6501     return FALSE;
6502   }
6503
6504   GST_DEBUG_OBJECT (src, "range: type %d, min %f - type %d,  max %f ",
6505       therange->min.type, therange->min.seconds, therange->max.type,
6506       therange->max.seconds);
6507
6508   if (therange->min.type == GST_RTSP_TIME_NOW)
6509     seconds = 0;
6510   else if (therange->min.type == GST_RTSP_TIME_END)
6511     seconds = 0;
6512   else
6513     seconds = therange->min.seconds * GST_SECOND;
6514
6515   GST_DEBUG_OBJECT (src, "range: min %" GST_TIME_FORMAT,
6516       GST_TIME_ARGS (seconds));
6517
6518   /* we need to start playback without clipping from the position reported by
6519    * the server */
6520   segment->start = seconds;
6521   segment->position = seconds;
6522
6523   if (therange->max.type == GST_RTSP_TIME_NOW)
6524     seconds = -1;
6525   else if (therange->max.type == GST_RTSP_TIME_END)
6526     seconds = -1;
6527   else
6528     seconds = therange->max.seconds * GST_SECOND;
6529
6530   GST_DEBUG_OBJECT (src, "range: max %" GST_TIME_FORMAT,
6531       GST_TIME_ARGS (seconds));
6532
6533   /* live (WMS) server might send overflowed large max as its idea of infinity,
6534    * compensate to prevent problems later on */
6535   if (seconds != -1 && seconds < 0) {
6536     seconds = -1;
6537     GST_DEBUG_OBJECT (src, "insane range, set to NONE");
6538   }
6539
6540   /* live (WMS) might send min == max, which is not worth recording */
6541   if (segment->duration == -1 && seconds == segment->start)
6542     seconds = -1;
6543
6544   /* don't change duration with unknown value, we might have a valid value
6545    * there that we want to keep. */
6546   if (seconds != -1)
6547     segment->duration = seconds;
6548
6549   return TRUE;
6550 }
6551
6552 /* Parse clock profived by the server with following syntax:
6553  *
6554  * "GstNetTimeProvider <wrapped-clock> <server-IP:port> <clock-time>"
6555  */
6556 static gboolean
6557 gst_rtspsrc_parse_gst_clock (GstRTSPSrc * src, const gchar * gstclock)
6558 {
6559   gboolean res = FALSE;
6560
6561   if (g_str_has_prefix (gstclock, "GstNetTimeProvider ")) {
6562     gchar **fields = NULL, **parts = NULL;
6563     gchar *remote_ip, *str;
6564     gint port;
6565     GstClockTime base_time;
6566     GstClock *netclock;
6567
6568     fields = g_strsplit (gstclock, " ", 0);
6569
6570     /* wrapped clock, not very interesting for now */
6571     if (fields[1] == NULL)
6572       goto cleanup;
6573
6574     /* remote IP address and port */
6575     if ((str = fields[2]) == NULL)
6576       goto cleanup;
6577
6578     parts = g_strsplit (str, ":", 0);
6579
6580     if ((remote_ip = parts[0]) == NULL)
6581       goto cleanup;
6582
6583     if ((str = parts[1]) == NULL)
6584       goto cleanup;
6585
6586     port = atoi (str);
6587     if (port == 0)
6588       goto cleanup;
6589
6590     /* base-time */
6591     if ((str = fields[3]) == NULL)
6592       goto cleanup;
6593
6594     base_time = g_ascii_strtoull (str, NULL, 10);
6595
6596     netclock =
6597         gst_net_client_clock_new ((gchar *) "GstRTSPClock", remote_ip, port,
6598         base_time);
6599
6600     if (src->provided_clock)
6601       gst_object_unref (src->provided_clock);
6602     src->provided_clock = netclock;
6603
6604     gst_element_post_message (GST_ELEMENT_CAST (src),
6605         gst_message_new_clock_provide (GST_OBJECT_CAST (src),
6606             src->provided_clock, TRUE));
6607
6608     res = TRUE;
6609   cleanup:
6610     g_strfreev (fields);
6611     g_strfreev (parts);
6612   }
6613   return res;
6614 }
6615
6616 /* must be called with the RTSP state lock */
6617 static GstRTSPResult
6618 gst_rtspsrc_open_from_sdp (GstRTSPSrc * src, GstSDPMessage * sdp,
6619     gboolean async)
6620 {
6621   GstRTSPResult res;
6622   gint i, n_streams;
6623
6624   /* prepare global stream caps properties */
6625   if (src->props)
6626     gst_structure_remove_all_fields (src->props);
6627   else
6628     src->props = gst_structure_new_empty ("RTSPProperties");
6629
6630   if (src->debug)
6631     gst_sdp_message_dump (sdp);
6632
6633   gst_rtsp_ext_list_parse_sdp (src->extensions, sdp, src->props);
6634
6635   /* let the app inspect and change the SDP */
6636   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_ON_SDP], 0, sdp);
6637
6638   gst_segment_init (&src->segment, GST_FORMAT_TIME);
6639
6640   /* parse range for duration reporting. */
6641   {
6642     const gchar *range;
6643
6644     for (i = 0;; i++) {
6645       range = gst_sdp_message_get_attribute_val_n (sdp, "range", i);
6646       if (range == NULL)
6647         break;
6648
6649       /* keep track of the range and configure it in the segment */
6650       if (gst_rtspsrc_parse_range (src, range, &src->segment))
6651         break;
6652     }
6653   }
6654   /* parse clock information. This is GStreamer specific, a server can tell the
6655    * client what clock it is using and wrap that in a network clock. The
6656    * advantage of that is that we can slave to it. */
6657   {
6658     const gchar *gstclock;
6659
6660     for (i = 0;; i++) {
6661       gstclock = gst_sdp_message_get_attribute_val_n (sdp, "x-gst-clock", i);
6662       if (gstclock == NULL)
6663         break;
6664
6665       /* parse the clock and expose it in the provide_clock method */
6666       if (gst_rtspsrc_parse_gst_clock (src, gstclock))
6667         break;
6668     }
6669   }
6670   /* try to find a global control attribute. Note that a '*' means that we should
6671    * do aggregate control with the current url (so we don't do anything and
6672    * leave the current connection as is) */
6673   {
6674     const gchar *control;
6675
6676     for (i = 0;; i++) {
6677       control = gst_sdp_message_get_attribute_val_n (sdp, "control", i);
6678       if (control == NULL)
6679         break;
6680
6681       /* only take fully qualified urls */
6682       if (g_str_has_prefix (control, "rtsp://"))
6683         break;
6684     }
6685     if (control) {
6686       g_free (src->conninfo.location);
6687       src->conninfo.location = g_strdup (control);
6688       /* make a connection for this, if there was a connection already, nothing
6689        * happens. */
6690       if (gst_rtsp_conninfo_connect (src, &src->conninfo, async) < 0) {
6691         GST_ERROR_OBJECT (src, "could not connect");
6692       }
6693     }
6694     /* we need to keep the control url separate from the connection url because
6695      * the rules for constructing the media control url need it */
6696     g_free (src->control);
6697     src->control = g_strdup (control);
6698   }
6699
6700   /* create streams */
6701   n_streams = gst_sdp_message_medias_len (sdp);
6702   for (i = 0; i < n_streams; i++) {
6703     gst_rtspsrc_create_stream (src, sdp, i);
6704   }
6705
6706   src->state = GST_RTSP_STATE_INIT;
6707
6708   /* setup streams */
6709   if ((res = gst_rtspsrc_setup_streams (src, async)) < 0)
6710     goto setup_failed;
6711
6712   /* reset our state */
6713   src->need_range = TRUE;
6714   src->skip = FALSE;
6715
6716   src->state = GST_RTSP_STATE_READY;
6717
6718   return res;
6719
6720   /* ERRORS */
6721 setup_failed:
6722   {
6723     GST_ERROR_OBJECT (src, "setup failed");
6724     gst_rtspsrc_cleanup (src);
6725     return res;
6726   }
6727 }
6728
6729 static GstRTSPResult
6730 gst_rtspsrc_retrieve_sdp (GstRTSPSrc * src, GstSDPMessage ** sdp,
6731     gboolean async)
6732 {
6733   GstRTSPResult res;
6734   GstRTSPMessage request = { 0 };
6735   GstRTSPMessage response = { 0 };
6736   guint8 *data;
6737   guint size;
6738   gchar *respcont = NULL;
6739
6740 restart:
6741   src->need_redirect = FALSE;
6742
6743   /* can't continue without a valid url */
6744   if (G_UNLIKELY (src->conninfo.url == NULL)) {
6745     res = GST_RTSP_EINVAL;
6746     goto no_url;
6747   }
6748   src->tried_url_auth = FALSE;
6749
6750   if ((res = gst_rtsp_conninfo_connect (src, &src->conninfo, async)) < 0)
6751     goto connect_failed;
6752
6753   /* create OPTIONS */
6754   GST_DEBUG_OBJECT (src, "create options...");
6755   res =
6756       gst_rtsp_message_init_request (&request, GST_RTSP_OPTIONS,
6757       src->conninfo.url_str);
6758   if (res < 0)
6759     goto create_request_failed;
6760
6761   /* send OPTIONS */
6762   GST_DEBUG_OBJECT (src, "send options...");
6763
6764   if (async)
6765     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving server options"));
6766
6767   if ((res =
6768           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
6769               NULL)) < 0)
6770     goto send_error;
6771
6772   /* parse OPTIONS */
6773   if (!gst_rtspsrc_parse_methods (src, &response))
6774     goto methods_error;
6775
6776   /* create DESCRIBE */
6777   GST_DEBUG_OBJECT (src, "create describe...");
6778   res =
6779       gst_rtsp_message_init_request (&request, GST_RTSP_DESCRIBE,
6780       src->conninfo.url_str);
6781   if (res < 0)
6782     goto create_request_failed;
6783
6784   /* we only accept SDP for now */
6785   gst_rtsp_message_add_header (&request, GST_RTSP_HDR_ACCEPT,
6786       "application/sdp");
6787
6788   /* send DESCRIBE */
6789   GST_DEBUG_OBJECT (src, "send describe...");
6790
6791   if (async)
6792     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving media info"));
6793
6794   if ((res =
6795           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
6796               NULL)) < 0)
6797     goto send_error;
6798
6799   /* we only perform redirect for the describe, currently */
6800   if (src->need_redirect) {
6801     /* close connection, we don't have to send a TEARDOWN yet, ignore the
6802      * result. */
6803     gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
6804
6805     gst_rtsp_message_unset (&request);
6806     gst_rtsp_message_unset (&response);
6807
6808     /* and now retry */
6809     goto restart;
6810   }
6811
6812   /* it could be that the DESCRIBE method was not implemented */
6813   if (!src->methods & GST_RTSP_DESCRIBE)
6814     goto no_describe;
6815
6816   /* check if reply is SDP */
6817   gst_rtsp_message_get_header (&response, GST_RTSP_HDR_CONTENT_TYPE, &respcont,
6818       0);
6819   /* could not be set but since the request returned OK, we assume it
6820    * was SDP, else check it. */
6821   if (respcont) {
6822     if (!g_ascii_strcasecmp (respcont, "application/sdp") == 0)
6823       goto wrong_content_type;
6824   }
6825
6826   /* get message body and parse as SDP */
6827   gst_rtsp_message_get_body (&response, &data, &size);
6828   if (data == NULL || size == 0)
6829     goto no_describe;
6830
6831   GST_DEBUG_OBJECT (src, "parse SDP...");
6832   gst_sdp_message_new (sdp);
6833   gst_sdp_message_parse_buffer (data, size, *sdp);
6834
6835   /* clean up any messages */
6836   gst_rtsp_message_unset (&request);
6837   gst_rtsp_message_unset (&response);
6838
6839   return res;
6840
6841   /* ERRORS */
6842 no_url:
6843   {
6844     GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL),
6845         ("No valid RTSP URL was provided"));
6846     goto cleanup_error;
6847   }
6848 connect_failed:
6849   {
6850     gchar *str = gst_rtsp_strresult (res);
6851
6852     if (res != GST_RTSP_EINTR) {
6853       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
6854           ("Failed to connect. (%s)", str));
6855     } else {
6856       GST_WARNING_OBJECT (src, "connect interrupted");
6857     }
6858     g_free (str);
6859     goto cleanup_error;
6860   }
6861 create_request_failed:
6862   {
6863     gchar *str = gst_rtsp_strresult (res);
6864
6865     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6866         ("Could not create request. (%s)", str));
6867     g_free (str);
6868     goto cleanup_error;
6869   }
6870 send_error:
6871   {
6872     /* Don't post a message - the rtsp_send method will have
6873      * taken care of it because we passed NULL for the response code */
6874     goto cleanup_error;
6875   }
6876 methods_error:
6877   {
6878     /* error was posted */
6879     res = GST_RTSP_ERROR;
6880     goto cleanup_error;
6881   }
6882 wrong_content_type:
6883   {
6884     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6885         ("Server does not support SDP, got %s.", respcont));
6886     res = GST_RTSP_ERROR;
6887     goto cleanup_error;
6888   }
6889 no_describe:
6890   {
6891     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6892         ("Server can not provide an SDP."));
6893     res = GST_RTSP_ERROR;
6894     goto cleanup_error;
6895   }
6896 cleanup_error:
6897   {
6898     if (src->conninfo.connection) {
6899       GST_DEBUG_OBJECT (src, "free connection");
6900       gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
6901     }
6902     gst_rtsp_message_unset (&request);
6903     gst_rtsp_message_unset (&response);
6904     return res;
6905   }
6906 }
6907
6908 static GstRTSPResult
6909 gst_rtspsrc_open (GstRTSPSrc * src, gboolean async)
6910 {
6911   GstRTSPResult ret;
6912
6913   src->methods =
6914       GST_RTSP_SETUP | GST_RTSP_PLAY | GST_RTSP_PAUSE | GST_RTSP_TEARDOWN;
6915
6916   if (src->sdp == NULL) {
6917     if ((ret = gst_rtspsrc_retrieve_sdp (src, &src->sdp, async)) < 0)
6918       goto no_sdp;
6919   }
6920
6921   if ((ret = gst_rtspsrc_open_from_sdp (src, src->sdp, async)) < 0)
6922     goto open_failed;
6923
6924 done:
6925   if (async)
6926     gst_rtspsrc_loop_end_cmd (src, CMD_OPEN, ret);
6927
6928   return ret;
6929
6930   /* ERRORS */
6931 no_sdp:
6932   {
6933     GST_WARNING_OBJECT (src, "can't get sdp");
6934     src->open_error = TRUE;
6935     goto done;
6936   }
6937 open_failed:
6938   {
6939     GST_WARNING_OBJECT (src, "can't setup streaming from sdp");
6940     src->open_error = TRUE;
6941     goto done;
6942   }
6943 }
6944
6945 static GstRTSPResult
6946 gst_rtspsrc_close (GstRTSPSrc * src, gboolean async, gboolean only_close)
6947 {
6948   GstRTSPMessage request = { 0 };
6949   GstRTSPMessage response = { 0 };
6950   GstRTSPResult res = GST_RTSP_OK;
6951   GList *walk;
6952   const gchar *control;
6953
6954   GST_DEBUG_OBJECT (src, "TEARDOWN...");
6955
6956   gst_rtspsrc_set_state (src, GST_STATE_READY);
6957
6958   if (src->state < GST_RTSP_STATE_READY) {
6959     GST_DEBUG_OBJECT (src, "not ready, doing cleanup");
6960     goto close;
6961   }
6962
6963   if (only_close)
6964     goto close;
6965
6966   /* construct a control url */
6967   control = get_aggregate_control (src);
6968
6969   if (!(src->methods & (GST_RTSP_PLAY | GST_RTSP_TEARDOWN)))
6970     goto not_supported;
6971
6972   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6973     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
6974     const gchar *setup_url;
6975     GstRTSPConnInfo *info;
6976
6977     /* try aggregate control first but do non-aggregate control otherwise */
6978     if (control)
6979       setup_url = control;
6980     else if ((setup_url = stream->conninfo.location) == NULL)
6981       continue;
6982
6983     if (src->conninfo.connection) {
6984       info = &src->conninfo;
6985     } else if (stream->conninfo.connection) {
6986       info = &stream->conninfo;
6987     } else {
6988       continue;
6989     }
6990     if (!info->connected)
6991       goto next;
6992
6993     /* do TEARDOWN */
6994     res =
6995         gst_rtsp_message_init_request (&request, GST_RTSP_TEARDOWN, setup_url);
6996     if (res < 0)
6997       goto create_request_failed;
6998
6999     if (async)
7000       GST_ELEMENT_PROGRESS (src, CONTINUE, "close", ("Closing stream"));
7001
7002     if ((res =
7003             gst_rtspsrc_send (src, info->connection, &request, &response,
7004                 NULL)) < 0)
7005       goto send_error;
7006
7007     /* FIXME, parse result? */
7008     gst_rtsp_message_unset (&request);
7009     gst_rtsp_message_unset (&response);
7010
7011   next:
7012     /* early exit when we did aggregate control */
7013     if (control)
7014       break;
7015   }
7016
7017 close:
7018   /* close connections */
7019   GST_DEBUG_OBJECT (src, "closing connection...");
7020   gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7021   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7022     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7023     gst_rtsp_conninfo_close (src, &stream->conninfo, TRUE);
7024   }
7025
7026   /* cleanup */
7027   gst_rtspsrc_cleanup (src);
7028
7029   src->state = GST_RTSP_STATE_INVALID;
7030
7031   if (async)
7032     gst_rtspsrc_loop_end_cmd (src, CMD_CLOSE, res);
7033
7034   return res;
7035
7036   /* ERRORS */
7037 create_request_failed:
7038   {
7039     gchar *str = gst_rtsp_strresult (res);
7040
7041     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7042         ("Could not create request. (%s)", str));
7043     g_free (str);
7044     goto close;
7045   }
7046 send_error:
7047   {
7048     gchar *str = gst_rtsp_strresult (res);
7049
7050     gst_rtsp_message_unset (&request);
7051     if (res != GST_RTSP_EINTR) {
7052       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7053           ("Could not send message. (%s)", str));
7054     } else {
7055       GST_WARNING_OBJECT (src, "TEARDOWN interrupted");
7056     }
7057     g_free (str);
7058     goto close;
7059   }
7060 not_supported:
7061   {
7062     GST_DEBUG_OBJECT (src,
7063         "TEARDOWN and PLAY not supported, can't do TEARDOWN");
7064     goto close;
7065   }
7066 }
7067
7068 /* RTP-Info is of the format:
7069  *
7070  * url=<URL>;[seq=<seqbase>;rtptime=<timebase>] [, url=...]
7071  *
7072  * rtptime corresponds to the timestamp for the NPT time given in the header
7073  * seqbase corresponds to the next sequence number we received. This number
7074  * indicates the first seqnum after the seek and should be used to discard
7075  * packets that are from before the seek.
7076  */
7077 static gboolean
7078 gst_rtspsrc_parse_rtpinfo (GstRTSPSrc * src, gchar * rtpinfo)
7079 {
7080   gchar **infos;
7081   gint i, j;
7082
7083   GST_DEBUG_OBJECT (src, "parsing RTP-Info %s", rtpinfo);
7084
7085   infos = g_strsplit (rtpinfo, ",", 0);
7086   for (i = 0; infos[i]; i++) {
7087     gchar **fields;
7088     GstRTSPStream *stream;
7089     gint32 seqbase;
7090     gint64 timebase;
7091
7092     GST_DEBUG_OBJECT (src, "parsing info %s", infos[i]);
7093
7094     /* init values, types of seqbase and timebase are bigger than needed so we
7095      * can store -1 as uninitialized values */
7096     stream = NULL;
7097     seqbase = -1;
7098     timebase = -1;
7099
7100     /* parse url, find stream for url.
7101      * parse seq and rtptime. The seq number should be configured in the rtp
7102      * depayloader or session manager to detect gaps. Same for the rtptime, it
7103      * should be used to create an initial time newsegment. */
7104     fields = g_strsplit (infos[i], ";", 0);
7105     for (j = 0; fields[j]; j++) {
7106       GST_DEBUG_OBJECT (src, "parsing field %s", fields[j]);
7107       /* remove leading whitespace */
7108       fields[j] = g_strchug (fields[j]);
7109       if (g_str_has_prefix (fields[j], "url=")) {
7110         /* get the url and the stream */
7111         stream =
7112             find_stream (src, (fields[j] + 4), (gpointer) find_stream_by_setup);
7113       } else if (g_str_has_prefix (fields[j], "seq=")) {
7114         seqbase = atoi (fields[j] + 4);
7115       } else if (g_str_has_prefix (fields[j], "rtptime=")) {
7116         timebase = g_ascii_strtoll (fields[j] + 8, NULL, 10);
7117       }
7118     }
7119     g_strfreev (fields);
7120     /* now we need to store the values for the caps of the stream */
7121     if (stream != NULL) {
7122       GST_DEBUG_OBJECT (src,
7123           "found stream %p, setting: seqbase %d, timebase %" G_GINT64_FORMAT,
7124           stream, seqbase, timebase);
7125
7126       /* we have a stream, configure detected params */
7127       stream->seqbase = seqbase;
7128       stream->timebase = timebase;
7129     }
7130   }
7131   g_strfreev (infos);
7132
7133   return TRUE;
7134 }
7135
7136 static void
7137 gst_rtspsrc_handle_rtcp_interval (GstRTSPSrc * src, gchar * rtcp)
7138 {
7139   guint64 interval;
7140   GList *walk;
7141
7142   interval = strtoul (rtcp, NULL, 10);
7143   GST_DEBUG_OBJECT (src, "rtcp interval: %" G_GUINT64_FORMAT " ms", interval);
7144
7145   if (!interval)
7146     return;
7147
7148   interval *= GST_MSECOND;
7149
7150   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7151     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7152
7153     /* already (optionally) retrieved this when configuring manager */
7154     if (stream->session) {
7155       GObject *rtpsession = stream->session;
7156
7157       GST_DEBUG_OBJECT (src, "configure rtcp interval in session %p",
7158           rtpsession);
7159       g_object_set (rtpsession, "rtcp-min-interval", interval, NULL);
7160     }
7161   }
7162
7163   /* now it happens that (Xenon) server sending this may also provide bogus
7164    * RTCP SR sync data (i.e. with quite some jitter), so never mind those
7165    * and just use RTP-Info to sync */
7166   if (src->manager) {
7167     GObjectClass *klass;
7168
7169     klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
7170     if (g_object_class_find_property (klass, "rtcp-sync")) {
7171       GST_DEBUG_OBJECT (src, "configuring rtp sync method");
7172       g_object_set (src->manager, "rtcp-sync", RTCP_SYNC_RTP, NULL);
7173     }
7174   }
7175 }
7176
7177 static gdouble
7178 gst_rtspsrc_get_float (const gchar * dstr)
7179 {
7180   gchar s[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7181
7182   /* canonicalise floating point string so we can handle float strings
7183    * in the form "24.930" or "24,930" irrespective of the current locale */
7184   g_strlcpy (s, dstr, sizeof (s));
7185   g_strdelimit (s, ",", '.');
7186   return g_ascii_strtod (s, NULL);
7187 }
7188
7189 static gchar *
7190 gen_range_header (GstRTSPSrc * src, GstSegment * segment)
7191 {
7192   gchar val_str[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7193
7194   if (src->range && src->range->min.type == GST_RTSP_TIME_NOW) {
7195     g_strlcpy (val_str, "now", sizeof (val_str));
7196   } else {
7197     if (segment->position == 0) {
7198       g_strlcpy (val_str, "0", sizeof (val_str));
7199     } else {
7200       g_ascii_dtostr (val_str, sizeof (val_str),
7201           ((gdouble) segment->position) / GST_SECOND);
7202     }
7203   }
7204   return g_strdup_printf ("npt=%s-", val_str);
7205 }
7206
7207 static void
7208 clear_rtp_base (GstRTSPSrc * src, GstRTSPStream * stream)
7209 {
7210   guint i, len;
7211
7212   stream->timebase = -1;
7213   stream->seqbase = -1;
7214
7215   len = stream->ptmap->len;
7216   for (i = 0; i < len; i++) {
7217     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
7218     GstStructure *s;
7219
7220     if (item->caps == NULL)
7221       continue;
7222
7223     item->caps = gst_caps_make_writable (item->caps);
7224     s = gst_caps_get_structure (item->caps, 0);
7225     gst_structure_remove_fields (s, "clock-base", "seqnum-base", NULL);
7226   }
7227 }
7228
7229 static GstRTSPResult
7230 gst_rtspsrc_ensure_open (GstRTSPSrc * src, gboolean async)
7231 {
7232   GstRTSPResult res = GST_RTSP_OK;
7233
7234   if (src->state < GST_RTSP_STATE_READY) {
7235     res = GST_RTSP_ERROR;
7236     if (src->open_error) {
7237       GST_DEBUG_OBJECT (src, "the stream was in error");
7238       goto done;
7239     }
7240     if (async)
7241       gst_rtspsrc_loop_start_cmd (src, CMD_OPEN);
7242
7243     if ((res = gst_rtspsrc_open (src, async)) < 0) {
7244       GST_DEBUG_OBJECT (src, "failed to open stream");
7245       goto done;
7246     }
7247   }
7248
7249 done:
7250   return res;
7251 }
7252
7253 static GstRTSPResult
7254 gst_rtspsrc_play (GstRTSPSrc * src, GstSegment * segment, gboolean async)
7255 {
7256   GstRTSPMessage request = { 0 };
7257   GstRTSPMessage response = { 0 };
7258   GstRTSPResult res = GST_RTSP_OK;
7259   GList *walk;
7260   gchar *hval;
7261   gint hval_idx;
7262   const gchar *control;
7263
7264   GST_DEBUG_OBJECT (src, "PLAY...");
7265
7266   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7267     goto open_failed;
7268
7269   if (!(src->methods & GST_RTSP_PLAY))
7270     goto not_supported;
7271
7272   if (src->state == GST_RTSP_STATE_PLAYING)
7273     goto was_playing;
7274
7275   if (!src->conninfo.connection || !src->conninfo.connected)
7276     goto done;
7277
7278   /* send some dummy packets before we activate the receive in the
7279    * udp sources */
7280   gst_rtspsrc_send_dummy_packets (src);
7281
7282   /* require new SR packets */
7283   if (src->manager)
7284     g_signal_emit_by_name (src->manager, "reset-sync", NULL);
7285
7286   gst_rtspsrc_set_state (src, GST_STATE_PLAYING);
7287
7288   /* construct a control url */
7289   control = get_aggregate_control (src);
7290
7291   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7292     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7293     const gchar *setup_url;
7294     GstRTSPConnection *conn;
7295
7296     /* try aggregate control first but do non-aggregate control otherwise */
7297     if (control)
7298       setup_url = control;
7299     else if ((setup_url = stream->conninfo.location) == NULL)
7300       continue;
7301
7302     if (src->conninfo.connection) {
7303       conn = src->conninfo.connection;
7304     } else if (stream->conninfo.connection) {
7305       conn = stream->conninfo.connection;
7306     } else {
7307       continue;
7308     }
7309
7310     /* do play */
7311     res = gst_rtsp_message_init_request (&request, GST_RTSP_PLAY, setup_url);
7312     if (res < 0)
7313       goto create_request_failed;
7314
7315     if (src->need_range) {
7316       hval = gen_range_header (src, segment);
7317
7318       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_RANGE, hval);
7319
7320       /* store the newsegment event so it can be sent from the streaming thread. */
7321       if (src->start_segment)
7322         gst_event_unref (src->start_segment);
7323       src->start_segment = gst_event_new_segment (&src->segment);
7324     }
7325
7326     if (segment->rate != 1.0) {
7327       gchar hval[G_ASCII_DTOSTR_BUF_SIZE];
7328
7329       g_ascii_dtostr (hval, sizeof (hval), segment->rate);
7330       if (src->skip)
7331         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SCALE, hval);
7332       else
7333         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SPEED, hval);
7334     }
7335
7336     if (async)
7337       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("Sending PLAY request"));
7338
7339     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7340       goto send_error;
7341
7342     /* seek may have silently failed as it is not supported */
7343     if (!(src->methods & GST_RTSP_PLAY)) {
7344       GST_DEBUG_OBJECT (src, "PLAY Range not supported; re-enable PLAY");
7345       /* obviously it is supported as we made it here */
7346       src->methods |= GST_RTSP_PLAY;
7347       src->seekable = FALSE;
7348       /* but there is nothing to parse in the response,
7349        * so convey we have no idea and not to expect anything particular */
7350       clear_rtp_base (src, stream);
7351       if (control) {
7352         GList *run;
7353
7354         /* need to do for all streams */
7355         for (run = src->streams; run; run = g_list_next (run))
7356           clear_rtp_base (src, (GstRTSPStream *) run->data);
7357       }
7358       /* NOTE the above also disables npt based eos detection */
7359       /* and below forces position to 0,
7360        * which is visible feedback we lost the plot */
7361       segment->start = segment->position = src->last_pos;
7362     }
7363
7364     gst_rtsp_message_unset (&request);
7365
7366     /* parse RTP npt field. This is the current position in the stream (Normal
7367      * Play Time) and should be put in the NEWSEGMENT position field. */
7368     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RANGE, &hval,
7369             0) == GST_RTSP_OK)
7370       gst_rtspsrc_parse_range (src, hval, segment);
7371
7372     /* assume 1.0 rate now, overwrite when the SCALE or SPEED headers are present. */
7373     segment->rate = 1.0;
7374
7375     /* parse Speed header. This is the intended playback rate of the stream
7376      * and should be put in the NEWSEGMENT rate field. */
7377     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SPEED, &hval,
7378             0) == GST_RTSP_OK) {
7379       segment->rate = gst_rtspsrc_get_float (hval);
7380     } else if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SCALE,
7381             &hval, 0) == GST_RTSP_OK) {
7382       segment->rate = gst_rtspsrc_get_float (hval);
7383     }
7384
7385     /* parse the RTP-Info header field (if ANY) to get the base seqnum and timestamp
7386      * for the RTP packets. If this is not present, we assume all starts from 0...
7387      * This is info for the RTP session manager that we pass to it in caps. */
7388     hval_idx = 0;
7389     while (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTP_INFO,
7390             &hval, hval_idx++) == GST_RTSP_OK)
7391       gst_rtspsrc_parse_rtpinfo (src, hval);
7392
7393     /* some servers indicate RTCP parameters in PLAY response,
7394      * rather than properly in SDP */
7395     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTCP_INTERVAL,
7396             &hval, 0) == GST_RTSP_OK)
7397       gst_rtspsrc_handle_rtcp_interval (src, hval);
7398
7399     gst_rtsp_message_unset (&response);
7400
7401     /* early exit when we did aggregate control */
7402     if (control)
7403       break;
7404   }
7405   /* configure the caps of the streams after we parsed all headers. Only reset
7406    * the manager object when we set a new Range header (we did a seek) */
7407   gst_rtspsrc_configure_caps (src, segment, src->need_range);
7408
7409   /* set again when needed */
7410   src->need_range = FALSE;
7411
7412   src->running = TRUE;
7413   src->base_time = -1;
7414   src->state = GST_RTSP_STATE_PLAYING;
7415
7416   /* mark discont */
7417   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
7418   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7419     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7420     stream->discont = TRUE;
7421   }
7422
7423 done:
7424   if (async)
7425     gst_rtspsrc_loop_end_cmd (src, CMD_PLAY, res);
7426
7427   return res;
7428
7429   /* ERRORS */
7430 open_failed:
7431   {
7432     GST_DEBUG_OBJECT (src, "failed to open stream");
7433     goto done;
7434   }
7435 not_supported:
7436   {
7437     GST_DEBUG_OBJECT (src, "PLAY is not supported");
7438     goto done;
7439   }
7440 was_playing:
7441   {
7442     GST_DEBUG_OBJECT (src, "we were already PLAYING");
7443     goto done;
7444   }
7445 create_request_failed:
7446   {
7447     gchar *str = gst_rtsp_strresult (res);
7448
7449     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7450         ("Could not create request. (%s)", str));
7451     g_free (str);
7452     goto done;
7453   }
7454 send_error:
7455   {
7456     gchar *str = gst_rtsp_strresult (res);
7457
7458     gst_rtsp_message_unset (&request);
7459     if (res != GST_RTSP_EINTR) {
7460       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7461           ("Could not send message. (%s)", str));
7462     } else {
7463       GST_WARNING_OBJECT (src, "PLAY interrupted");
7464     }
7465     g_free (str);
7466     goto done;
7467   }
7468 }
7469
7470 static GstRTSPResult
7471 gst_rtspsrc_pause (GstRTSPSrc * src, gboolean async)
7472 {
7473   GstRTSPResult res = GST_RTSP_OK;
7474   GstRTSPMessage request = { 0 };
7475   GstRTSPMessage response = { 0 };
7476   GList *walk;
7477   const gchar *control;
7478
7479   GST_DEBUG_OBJECT (src, "PAUSE...");
7480
7481   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7482     goto open_failed;
7483
7484   if (!(src->methods & GST_RTSP_PAUSE))
7485     goto not_supported;
7486
7487   if (src->state == GST_RTSP_STATE_READY)
7488     goto was_paused;
7489
7490   if (!src->conninfo.connection || !src->conninfo.connected)
7491     goto no_connection;
7492
7493   /* construct a control url */
7494   control = get_aggregate_control (src);
7495
7496   /* loop over the streams. We might exit the loop early when we could do an
7497    * aggregate control */
7498   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7499     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7500     GstRTSPConnection *conn;
7501     const gchar *setup_url;
7502
7503     /* try aggregate control first but do non-aggregate control otherwise */
7504     if (control)
7505       setup_url = control;
7506     else if ((setup_url = stream->conninfo.location) == NULL)
7507       continue;
7508
7509     if (src->conninfo.connection) {
7510       conn = src->conninfo.connection;
7511     } else if (stream->conninfo.connection) {
7512       conn = stream->conninfo.connection;
7513     } else {
7514       continue;
7515     }
7516
7517     if (async)
7518       GST_ELEMENT_PROGRESS (src, CONTINUE, "request",
7519           ("Sending PAUSE request"));
7520
7521     if ((res =
7522             gst_rtsp_message_init_request (&request, GST_RTSP_PAUSE,
7523                 setup_url)) < 0)
7524       goto create_request_failed;
7525
7526     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7527       goto send_error;
7528
7529     gst_rtsp_message_unset (&request);
7530     gst_rtsp_message_unset (&response);
7531
7532     /* exit early when we did agregate control */
7533     if (control)
7534       break;
7535   }
7536
7537   /* change element states now */
7538   gst_rtspsrc_set_state (src, GST_STATE_PAUSED);
7539
7540 no_connection:
7541   src->state = GST_RTSP_STATE_READY;
7542
7543 done:
7544   if (async)
7545     gst_rtspsrc_loop_end_cmd (src, CMD_PAUSE, res);
7546
7547   return res;
7548
7549   /* ERRORS */
7550 open_failed:
7551   {
7552     GST_DEBUG_OBJECT (src, "failed to open stream");
7553     goto done;
7554   }
7555 not_supported:
7556   {
7557     GST_DEBUG_OBJECT (src, "PAUSE is not supported");
7558     goto done;
7559   }
7560 was_paused:
7561   {
7562     GST_DEBUG_OBJECT (src, "we were already PAUSED");
7563     goto done;
7564   }
7565 create_request_failed:
7566   {
7567     gchar *str = gst_rtsp_strresult (res);
7568
7569     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7570         ("Could not create request. (%s)", str));
7571     g_free (str);
7572     goto done;
7573   }
7574 send_error:
7575   {
7576     gchar *str = gst_rtsp_strresult (res);
7577
7578     gst_rtsp_message_unset (&request);
7579     if (res != GST_RTSP_EINTR) {
7580       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7581           ("Could not send message. (%s)", str));
7582     } else {
7583       GST_WARNING_OBJECT (src, "PAUSE interrupted");
7584     }
7585     g_free (str);
7586     goto done;
7587   }
7588 }
7589
7590 static void
7591 gst_rtspsrc_handle_message (GstBin * bin, GstMessage * message)
7592 {
7593   GstRTSPSrc *rtspsrc;
7594
7595   rtspsrc = GST_RTSPSRC (bin);
7596
7597   switch (GST_MESSAGE_TYPE (message)) {
7598     case GST_MESSAGE_EOS:
7599       gst_message_unref (message);
7600       break;
7601     case GST_MESSAGE_ELEMENT:
7602     {
7603       const GstStructure *s = gst_message_get_structure (message);
7604
7605       if (gst_structure_has_name (s, "GstUDPSrcTimeout")) {
7606         gboolean ignore_timeout;
7607
7608         GST_DEBUG_OBJECT (bin, "timeout on UDP port");
7609
7610         GST_OBJECT_LOCK (rtspsrc);
7611         ignore_timeout = rtspsrc->ignore_timeout;
7612         rtspsrc->ignore_timeout = TRUE;
7613         GST_OBJECT_UNLOCK (rtspsrc);
7614
7615         /* we only act on the first udp timeout message, others are irrelevant
7616          * and can be ignored. */
7617         if (!ignore_timeout)
7618           gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_RECONNECT, CMD_LOOP);
7619         /* eat and free */
7620         gst_message_unref (message);
7621         return;
7622       }
7623       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7624       break;
7625     }
7626     case GST_MESSAGE_ERROR:
7627     {
7628       GstObject *udpsrc;
7629       GstRTSPStream *stream;
7630       GstFlowReturn ret;
7631
7632       udpsrc = GST_MESSAGE_SRC (message);
7633
7634       GST_DEBUG_OBJECT (rtspsrc, "got error from %s",
7635           GST_ELEMENT_NAME (udpsrc));
7636
7637       stream = find_stream (rtspsrc, udpsrc, (gpointer) find_stream_by_udpsrc);
7638       if (!stream)
7639         goto forward;
7640
7641       /* we ignore the RTCP udpsrc */
7642       if (stream->udpsrc[1] == GST_ELEMENT_CAST (udpsrc))
7643         goto done;
7644
7645       /* if we get error messages from the udp sources, that's not a problem as
7646        * long as not all of them error out. We also don't really know what the
7647        * problem is, the message does not give enough detail... */
7648       ret = gst_rtspsrc_combine_flows (rtspsrc, stream, GST_FLOW_NOT_LINKED);
7649       GST_DEBUG_OBJECT (rtspsrc, "combined flows: %s", gst_flow_get_name (ret));
7650       if (ret != GST_FLOW_OK)
7651         goto forward;
7652
7653     done:
7654       gst_message_unref (message);
7655       break;
7656
7657     forward:
7658       /* fatal but not our message, forward */
7659       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7660       break;
7661     }
7662     default:
7663     {
7664       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7665       break;
7666     }
7667   }
7668 }
7669
7670 /* the thread where everything happens */
7671 static void
7672 gst_rtspsrc_thread (GstRTSPSrc * src)
7673 {
7674   gint cmd;
7675
7676   GST_OBJECT_LOCK (src);
7677   cmd = src->pending_cmd;
7678   if (cmd == CMD_RECONNECT || cmd == CMD_PLAY || cmd == CMD_PAUSE
7679       || cmd == CMD_LOOP || cmd == CMD_OPEN)
7680     src->pending_cmd = CMD_LOOP;
7681   else
7682     src->pending_cmd = CMD_WAIT;
7683   GST_DEBUG_OBJECT (src, "got command %d", cmd);
7684
7685   /* we got the message command, so ensure communication is possible again */
7686   gst_rtspsrc_connection_flush (src, FALSE);
7687
7688   src->busy_cmd = cmd;
7689   GST_OBJECT_UNLOCK (src);
7690
7691   switch (cmd) {
7692     case CMD_OPEN:
7693       gst_rtspsrc_open (src, TRUE);
7694       break;
7695     case CMD_PLAY:
7696       gst_rtspsrc_play (src, &src->segment, TRUE);
7697       break;
7698     case CMD_PAUSE:
7699       gst_rtspsrc_pause (src, TRUE);
7700       break;
7701     case CMD_CLOSE:
7702       gst_rtspsrc_close (src, TRUE, FALSE);
7703       break;
7704     case CMD_LOOP:
7705       gst_rtspsrc_loop (src);
7706       break;
7707     case CMD_RECONNECT:
7708       gst_rtspsrc_reconnect (src, FALSE);
7709       break;
7710     default:
7711       break;
7712   }
7713
7714   GST_OBJECT_LOCK (src);
7715   /* and go back to sleep */
7716   if (src->pending_cmd == CMD_WAIT) {
7717     if (src->task)
7718       gst_task_pause (src->task);
7719   }
7720   /* reset waiting */
7721   src->busy_cmd = CMD_WAIT;
7722   GST_OBJECT_UNLOCK (src);
7723 }
7724
7725 static gboolean
7726 gst_rtspsrc_start (GstRTSPSrc * src)
7727 {
7728   GST_DEBUG_OBJECT (src, "starting");
7729
7730   GST_OBJECT_LOCK (src);
7731
7732   src->pending_cmd = CMD_WAIT;
7733
7734   if (src->task == NULL) {
7735     src->task = gst_task_new ((GstTaskFunction) gst_rtspsrc_thread, src, NULL);
7736     if (src->task == NULL)
7737       goto task_error;
7738
7739     gst_task_set_lock (src->task, GST_RTSP_STREAM_GET_LOCK (src));
7740   }
7741   GST_OBJECT_UNLOCK (src);
7742
7743   return TRUE;
7744
7745   /* ERRORS */
7746 task_error:
7747   {
7748     GST_OBJECT_UNLOCK (src);
7749     GST_ERROR_OBJECT (src, "failed to create task");
7750     return FALSE;
7751   }
7752 }
7753
7754 static gboolean
7755 gst_rtspsrc_stop (GstRTSPSrc * src)
7756 {
7757   GstTask *task;
7758
7759   GST_DEBUG_OBJECT (src, "stopping");
7760
7761   /* also cancels pending task */
7762   gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_ALL);
7763
7764   GST_OBJECT_LOCK (src);
7765   if ((task = src->task)) {
7766     src->task = NULL;
7767     GST_OBJECT_UNLOCK (src);
7768
7769     gst_task_stop (task);
7770
7771     /* make sure it is not running */
7772     GST_RTSP_STREAM_LOCK (src);
7773     GST_RTSP_STREAM_UNLOCK (src);
7774
7775     /* now wait for the task to finish */
7776     gst_task_join (task);
7777
7778     /* and free the task */
7779     gst_object_unref (GST_OBJECT (task));
7780
7781     GST_OBJECT_LOCK (src);
7782   }
7783   GST_OBJECT_UNLOCK (src);
7784
7785   /* ensure synchronously all is closed and clean */
7786   gst_rtspsrc_close (src, FALSE, TRUE);
7787
7788   return TRUE;
7789 }
7790
7791 static GstStateChangeReturn
7792 gst_rtspsrc_change_state (GstElement * element, GstStateChange transition)
7793 {
7794   GstRTSPSrc *rtspsrc;
7795   GstStateChangeReturn ret;
7796
7797   rtspsrc = GST_RTSPSRC (element);
7798
7799   switch (transition) {
7800     case GST_STATE_CHANGE_NULL_TO_READY:
7801       if (!gst_rtspsrc_start (rtspsrc))
7802         goto start_failed;
7803       break;
7804     case GST_STATE_CHANGE_READY_TO_PAUSED:
7805       /* init some state */
7806       rtspsrc->cur_protocols = rtspsrc->protocols;
7807       /* first attempt, don't ignore timeouts */
7808       rtspsrc->ignore_timeout = FALSE;
7809       rtspsrc->open_error = FALSE;
7810       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_OPEN, 0);
7811       break;
7812     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
7813       set_manager_buffer_mode (rtspsrc);
7814       /* fall-through */
7815     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
7816       /* unblock the tcp tasks and make the loop waiting */
7817       if (gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_WAIT, CMD_LOOP)) {
7818         /* make sure it is waiting before we send PAUSE or PLAY below */
7819         GST_RTSP_STREAM_LOCK (rtspsrc);
7820         GST_RTSP_STREAM_UNLOCK (rtspsrc);
7821       }
7822       break;
7823     case GST_STATE_CHANGE_PAUSED_TO_READY:
7824       break;
7825     default:
7826       break;
7827   }
7828
7829   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
7830   if (ret == GST_STATE_CHANGE_FAILURE)
7831     goto done;
7832
7833   switch (transition) {
7834     case GST_STATE_CHANGE_NULL_TO_READY:
7835       ret = GST_STATE_CHANGE_SUCCESS;
7836       break;
7837     case GST_STATE_CHANGE_READY_TO_PAUSED:
7838       ret = GST_STATE_CHANGE_NO_PREROLL;
7839       break;
7840     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
7841       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PLAY, 0);
7842       ret = GST_STATE_CHANGE_SUCCESS;
7843       break;
7844     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
7845       /* send pause request and keep the idle task around */
7846       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PAUSE, CMD_LOOP);
7847       ret = GST_STATE_CHANGE_NO_PREROLL;
7848       break;
7849     case GST_STATE_CHANGE_PAUSED_TO_READY:
7850       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_CLOSE, CMD_PAUSE);
7851       ret = GST_STATE_CHANGE_SUCCESS;
7852       break;
7853     case GST_STATE_CHANGE_READY_TO_NULL:
7854       gst_rtspsrc_stop (rtspsrc);
7855       ret = GST_STATE_CHANGE_SUCCESS;
7856       break;
7857     default:
7858       break;
7859   }
7860
7861 done:
7862   return ret;
7863
7864 start_failed:
7865   {
7866     GST_DEBUG_OBJECT (rtspsrc, "start failed");
7867     return GST_STATE_CHANGE_FAILURE;
7868   }
7869 }
7870
7871 static gboolean
7872 gst_rtspsrc_send_event (GstElement * element, GstEvent * event)
7873 {
7874   gboolean res;
7875   GstRTSPSrc *rtspsrc;
7876
7877   rtspsrc = GST_RTSPSRC (element);
7878
7879   if (GST_EVENT_IS_DOWNSTREAM (event)) {
7880     res = gst_rtspsrc_push_event (rtspsrc, event);
7881   } else {
7882     res = GST_ELEMENT_CLASS (parent_class)->send_event (element, event);
7883   }
7884
7885   return res;
7886 }
7887
7888
7889 /*** GSTURIHANDLER INTERFACE *************************************************/
7890
7891 static GstURIType
7892 gst_rtspsrc_uri_get_type (GType type)
7893 {
7894   return GST_URI_SRC;
7895 }
7896
7897 static const gchar *const *
7898 gst_rtspsrc_uri_get_protocols (GType type)
7899 {
7900   static const gchar *protocols[] =
7901       { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp",
7902     "rtsps", "rtspsu", "rtspst", "rtspsh", NULL
7903   };
7904
7905   return protocols;
7906 }
7907
7908 static gchar *
7909 gst_rtspsrc_uri_get_uri (GstURIHandler * handler)
7910 {
7911   GstRTSPSrc *src = GST_RTSPSRC (handler);
7912
7913   /* FIXME: make thread-safe */
7914   return g_strdup (src->conninfo.location);
7915 }
7916
7917 static gboolean
7918 gst_rtspsrc_uri_set_uri (GstURIHandler * handler, const gchar * uri,
7919     GError ** error)
7920 {
7921   GstRTSPSrc *src;
7922   GstRTSPResult res;
7923   GstRTSPUrl *newurl = NULL;
7924   GstSDPMessage *sdp = NULL;
7925
7926   src = GST_RTSPSRC (handler);
7927
7928   /* same URI, we're fine */
7929   if (src->conninfo.location && uri && !strcmp (uri, src->conninfo.location))
7930     goto was_ok;
7931
7932   if (g_str_has_prefix (uri, "rtsp-sdp://")) {
7933     if ((res = gst_sdp_message_new (&sdp) < 0))
7934       goto sdp_failed;
7935
7936     GST_DEBUG_OBJECT (src, "parsing SDP message");
7937     if ((res = gst_sdp_message_parse_uri (uri, sdp) < 0))
7938       goto invalid_sdp;
7939   } else {
7940     /* try to parse */
7941     GST_DEBUG_OBJECT (src, "parsing URI");
7942     if ((res = gst_rtsp_url_parse (uri, &newurl)) < 0)
7943       goto parse_error;
7944   }
7945
7946   /* if worked, free previous and store new url object along with the original
7947    * location. */
7948   GST_DEBUG_OBJECT (src, "configuring URI");
7949   g_free (src->conninfo.location);
7950   src->conninfo.location = g_strdup (uri);
7951   gst_rtsp_url_free (src->conninfo.url);
7952   src->conninfo.url = newurl;
7953   g_free (src->conninfo.url_str);
7954   if (newurl)
7955     src->conninfo.url_str = gst_rtsp_url_get_request_uri (src->conninfo.url);
7956   else
7957     src->conninfo.url_str = NULL;
7958
7959   if (src->sdp)
7960     gst_sdp_message_free (src->sdp);
7961   src->sdp = sdp;
7962   src->from_sdp = sdp != NULL;
7963
7964   GST_DEBUG_OBJECT (src, "set uri: %s", GST_STR_NULL (uri));
7965   GST_DEBUG_OBJECT (src, "request uri is: %s",
7966       GST_STR_NULL (src->conninfo.url_str));
7967
7968   return TRUE;
7969
7970   /* Special cases */
7971 was_ok:
7972   {
7973     GST_DEBUG_OBJECT (src, "URI was ok: '%s'", GST_STR_NULL (uri));
7974     return TRUE;
7975   }
7976 sdp_failed:
7977   {
7978     GST_ERROR_OBJECT (src, "Could not create new SDP (%d)", res);
7979     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
7980         "Could not create SDP");
7981     return FALSE;
7982   }
7983 invalid_sdp:
7984   {
7985     GST_ERROR_OBJECT (src, "Not a valid SDP (%d) '%s'", res,
7986         GST_STR_NULL (uri));
7987     gst_sdp_message_free (sdp);
7988     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
7989         "Invalid SDP");
7990     return FALSE;
7991   }
7992 parse_error:
7993   {
7994     GST_ERROR_OBJECT (src, "Not a valid RTSP url '%s' (%d)",
7995         GST_STR_NULL (uri), res);
7996     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
7997         "Invalid RTSP URI");
7998     return FALSE;
7999   }
8000 }
8001
8002 static void
8003 gst_rtspsrc_uri_handler_init (gpointer g_iface, gpointer iface_data)
8004 {
8005   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
8006
8007   iface->get_type = gst_rtspsrc_uri_get_type;
8008   iface->get_protocols = gst_rtspsrc_uri_get_protocols;
8009   iface->get_uri = gst_rtspsrc_uri_get_uri;
8010   iface->set_uri = gst_rtspsrc_uri_set_uri;
8011 }