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