rtspsrc: Only enable retransmissions if there is retransmission info in the SDP
[platform/upstream/gst-plugins-good.git] / gst / rtsp / gstrtspsrc.c
1 /* GStreamer
2  * Copyright (C) <2005,2006> Wim Taymans <wim at fluendo dot com>
3  *               <2006> Lutz Mueller <lutz at topfrose dot de>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 /*
21  * Unless otherwise indicated, Source Code is licensed under MIT license.
22  * See further explanation attached in License Statement (distributed in the file
23  * LICENSE).
24  *
25  * Permission is hereby granted, free of charge, to any person obtaining a copy of
26  * this software and associated documentation files (the "Software"), to deal in
27  * the Software without restriction, including without limitation the rights to
28  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
29  * of the Software, and to permit persons to whom the Software is furnished to do
30  * so, subject to the following conditions:
31  *
32  * The above copyright notice and this permission notice shall be included in all
33  * copies or substantial portions of the Software.
34  *
35  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
37  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
38  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
39  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
40  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
41  * SOFTWARE.
42  */
43 /**
44  * SECTION:element-rtspsrc
45  *
46  * Makes a connection to an RTSP server and read the data.
47  * rtspsrc strictly follows RFC 2326 and therefore does not (yet) support
48  * RealMedia/Quicktime/Microsoft extensions.
49  *
50  * RTSP supports transport over TCP or UDP in unicast or multicast mode. By
51  * default rtspsrc will negotiate a connection in the following order:
52  * UDP unicast/UDP multicast/TCP. The order cannot be changed but the allowed
53  * protocols can be controlled with the #GstRTSPSrc:protocols property.
54  *
55  * rtspsrc currently understands SDP as the format of the session description.
56  * For each stream listed in the SDP a new rtp_stream\%d pad will be created
57  * with caps derived from the SDP media description. This is a caps of mime type
58  * "application/x-rtp" that can be connected to any available RTP depayloader
59  * element.
60  *
61  * rtspsrc will internally instantiate an RTP session manager element
62  * that will handle the RTCP messages to and from the server, jitter removal,
63  * packet reordering along with providing a clock for the pipeline.
64  * This feature is implemented using the gstrtpbin element.
65  *
66  * rtspsrc acts like a live source and will therefore only generate data in the
67  * PLAYING state.
68  *
69  * <refsect2>
70  * <title>Example launch line</title>
71  * |[
72  * gst-launch-1.0 rtspsrc location=rtsp://some.server/url ! fakesink
73  * ]| Establish a connection to an RTSP server and send the raw RTP packets to a
74  * fakesink.
75  * </refsect2>
76  */
77
78 #ifdef HAVE_CONFIG_H
79 #include "config.h"
80 #endif
81
82 #ifdef HAVE_UNISTD_H
83 #include <unistd.h>
84 #endif /* HAVE_UNISTD_H */
85 #include <stdlib.h>
86 #include <string.h>
87 #include <stdio.h>
88 #include <stdarg.h>
89
90 #include <gst/net/gstnet.h>
91 #include <gst/sdp/gstsdpmessage.h>
92 #include <gst/sdp/gstmikey.h>
93 #include <gst/rtp/gstrtppayloads.h>
94
95 #include "gst/gst-i18n-plugin.h"
96
97 #include "gstrtspsrc.h"
98
99 GST_DEBUG_CATEGORY_STATIC (rtspsrc_debug);
100 #define GST_CAT_DEFAULT (rtspsrc_debug)
101
102 static GstStaticPadTemplate rtptemplate = GST_STATIC_PAD_TEMPLATE ("stream_%u",
103     GST_PAD_SRC,
104     GST_PAD_SOMETIMES,
105     GST_STATIC_CAPS ("application/x-rtp; application/x-rdt"));
106
107 /* templates used internally */
108 static GstStaticPadTemplate anysrctemplate =
109 GST_STATIC_PAD_TEMPLATE ("internalsrc_%u",
110     GST_PAD_SRC,
111     GST_PAD_SOMETIMES,
112     GST_STATIC_CAPS_ANY);
113
114 static GstStaticPadTemplate anysinktemplate =
115 GST_STATIC_PAD_TEMPLATE ("internalsink_%u",
116     GST_PAD_SINK,
117     GST_PAD_SOMETIMES,
118     GST_STATIC_CAPS_ANY);
119
120 enum
121 {
122   SIGNAL_HANDLE_REQUEST,
123   SIGNAL_ON_SDP,
124   SIGNAL_SELECT_STREAM,
125   SIGNAL_NEW_MANAGER,
126   SIGNAL_REQUEST_RTCP_KEY,
127   LAST_SIGNAL
128 };
129
130 enum _GstRtspSrcRtcpSyncMode
131 {
132   RTCP_SYNC_ALWAYS,
133   RTCP_SYNC_INITIAL,
134   RTCP_SYNC_RTP
135 };
136
137 enum _GstRtspSrcBufferMode
138 {
139   BUFFER_MODE_NONE,
140   BUFFER_MODE_SLAVE,
141   BUFFER_MODE_BUFFER,
142   BUFFER_MODE_AUTO,
143   BUFFER_MODE_SYNCED
144 };
145
146 #define GST_TYPE_RTSP_SRC_BUFFER_MODE (gst_rtsp_src_buffer_mode_get_type())
147 static GType
148 gst_rtsp_src_buffer_mode_get_type (void)
149 {
150   static GType buffer_mode_type = 0;
151   static const GEnumValue buffer_modes[] = {
152     {BUFFER_MODE_NONE, "Only use RTP timestamps", "none"},
153     {BUFFER_MODE_SLAVE, "Slave receiver to sender clock", "slave"},
154     {BUFFER_MODE_BUFFER, "Do low/high watermark buffering", "buffer"},
155     {BUFFER_MODE_AUTO, "Choose mode depending on stream live", "auto"},
156     {BUFFER_MODE_SYNCED, "Synchronized sender and receiver clocks", "synced"},
157     {0, NULL, NULL},
158   };
159
160   if (!buffer_mode_type) {
161     buffer_mode_type =
162         g_enum_register_static ("GstRTSPSrcBufferMode", buffer_modes);
163   }
164   return buffer_mode_type;
165 }
166
167 #define AES_128_KEY_LEN 16
168 #define AES_256_KEY_LEN 32
169
170 #define HMAC_32_KEY_LEN 4
171 #define HMAC_80_KEY_LEN 10
172
173 #define DEFAULT_LOCATION         NULL
174 #define DEFAULT_PROTOCOLS        GST_RTSP_LOWER_TRANS_UDP | GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP
175 #define DEFAULT_DEBUG            FALSE
176 #define DEFAULT_RETRY            20
177 #define DEFAULT_TIMEOUT          5000000
178 #define DEFAULT_UDP_BUFFER_SIZE  0x80000
179 #define DEFAULT_TCP_TIMEOUT      20000000
180 #define DEFAULT_LATENCY_MS       2000
181 #define DEFAULT_DROP_ON_LATENCY  FALSE
182 #define DEFAULT_CONNECTION_SPEED 0
183 #define DEFAULT_NAT_METHOD       GST_RTSP_NAT_DUMMY
184 #define DEFAULT_DO_RTCP          TRUE
185 #define DEFAULT_DO_RTSP_KEEP_ALIVE       TRUE
186 #define DEFAULT_PROXY            NULL
187 #define DEFAULT_RTP_BLOCKSIZE    0
188 #define DEFAULT_USER_ID          NULL
189 #define DEFAULT_USER_PW          NULL
190 #define DEFAULT_BUFFER_MODE      BUFFER_MODE_AUTO
191 #define DEFAULT_PORT_RANGE       NULL
192 #define DEFAULT_SHORT_HEADER     FALSE
193 #define DEFAULT_PROBATION        2
194 #define DEFAULT_UDP_RECONNECT    TRUE
195 #define DEFAULT_MULTICAST_IFACE  NULL
196 #define DEFAULT_NTP_SYNC         FALSE
197 #define DEFAULT_USE_PIPELINE_CLOCK       FALSE
198 #define DEFAULT_TLS_VALIDATION_FLAGS     G_TLS_CERTIFICATE_VALIDATE_ALL
199 #define DEFAULT_TLS_DATABASE     NULL
200 #define DEFAULT_DO_RETRANSMISSION        TRUE
201
202 enum
203 {
204   PROP_0,
205   PROP_LOCATION,
206   PROP_PROTOCOLS,
207   PROP_DEBUG,
208   PROP_RETRY,
209   PROP_TIMEOUT,
210   PROP_TCP_TIMEOUT,
211   PROP_LATENCY,
212   PROP_DROP_ON_LATENCY,
213   PROP_CONNECTION_SPEED,
214   PROP_NAT_METHOD,
215   PROP_DO_RTCP,
216   PROP_DO_RTSP_KEEP_ALIVE,
217   PROP_PROXY,
218   PROP_PROXY_ID,
219   PROP_PROXY_PW,
220   PROP_RTP_BLOCKSIZE,
221   PROP_USER_ID,
222   PROP_USER_PW,
223   PROP_BUFFER_MODE,
224   PROP_PORT_RANGE,
225   PROP_UDP_BUFFER_SIZE,
226   PROP_SHORT_HEADER,
227   PROP_PROBATION,
228   PROP_UDP_RECONNECT,
229   PROP_MULTICAST_IFACE,
230   PROP_NTP_SYNC,
231   PROP_USE_PIPELINE_CLOCK,
232   PROP_SDES,
233   PROP_TLS_VALIDATION_FLAGS,
234   PROP_TLS_DATABASE,
235   PROP_DO_RETRANSMISSION
236 };
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
3208   signal_id = g_signal_lookup ("request-aux-receiver",
3209       G_OBJECT_TYPE (src->manager));
3210   /* there's already something connected */
3211   if (g_signal_handler_find (src->manager, G_SIGNAL_MATCH_ID, signal_id, 0,
3212           NULL, NULL, NULL) != 0) {
3213     GST_DEBUG_OBJECT (src, "Not adding RTX AUX element as "
3214         "\"request-aux-receiver\" signal is "
3215         "already used by the application");
3216     return;
3217   }
3218
3219   /* build the retransmission payload type map */
3220   for (walk = src->streams; walk; walk = g_list_next (walk)) {
3221     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
3222     gboolean do_retransmission_stream = FALSE;
3223     int i;
3224
3225     if (stream->rtx_pt_map)
3226       gst_structure_free (stream->rtx_pt_map);
3227     stream->rtx_pt_map = gst_structure_new_empty ("application/x-rtp-pt-map");
3228
3229     for (i = 0; i < stream->ptmap->len; i++) {
3230       PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
3231       GstStructure *s = gst_caps_get_structure (item->caps, 0);
3232       const gchar *encoding;
3233
3234       /* we only care about RTX streams */
3235       if ((encoding = gst_structure_get_string (s, "encoding-name"))
3236           && g_strcmp0 (encoding, "RTX") == 0) {
3237         const gchar *stream_pt_s;
3238         gint rtx_pt;
3239
3240         if (gst_structure_get_int (s, "payload", &rtx_pt)
3241             && (stream_pt_s = gst_structure_get_string (s, "apt"))) {
3242
3243           if (rtx_pt != 0) {
3244             gst_structure_set (stream->rtx_pt_map, stream_pt_s, G_TYPE_UINT,
3245                 rtx_pt, NULL);
3246             do_retransmission_stream = TRUE;
3247           }
3248         }
3249       }
3250     }
3251
3252     if (do_retransmission_stream) {
3253       GST_DEBUG_OBJECT (src, "built retransmission payload map for stream "
3254           "id %i: %" GST_PTR_FORMAT, stream->id, stream->rtx_pt_map);
3255       do_retransmission = TRUE;
3256     } else {
3257       GST_DEBUG_OBJECT (src, "no retransmission payload map for stream "
3258           "id %i", stream->id);
3259       gst_structure_free (stream->rtx_pt_map);
3260       stream->rtx_pt_map = NULL;
3261     }
3262   }
3263
3264   if (do_retransmission) {
3265     GST_DEBUG_OBJECT (src, "Enabling retransmissions");
3266
3267     g_object_set (src->manager, "do-retransmission", TRUE, NULL);
3268
3269     /* enable RFC4588 retransmission handling by setting rtprtxreceive
3270      * as the "aux" element of rtpbin */
3271     g_signal_connect (src->manager, "request-aux-receiver",
3272         (GCallback) request_aux_receiver, src);
3273   } else {
3274     GST_DEBUG_OBJECT (src,
3275         "Not enabling retransmissions as no stream had a retransmission payload map");
3276   }
3277 }
3278
3279 /* try to get and configure a manager */
3280 static gboolean
3281 gst_rtspsrc_stream_configure_manager (GstRTSPSrc * src, GstRTSPStream * stream,
3282     GstRTSPTransport * transport)
3283 {
3284   const gchar *manager;
3285   gchar *name;
3286   GstStateChangeReturn ret;
3287
3288   /* find a manager */
3289   if (gst_rtsp_transport_get_manager (transport->trans, &manager, 0) < 0)
3290     goto no_manager;
3291
3292   if (manager) {
3293     GST_DEBUG_OBJECT (src, "using manager %s", manager);
3294
3295     /* configure the manager */
3296     if (src->manager == NULL) {
3297       GObjectClass *klass;
3298
3299       if (!(src->manager = gst_element_factory_make (manager, "manager"))) {
3300         /* fallback */
3301         if (gst_rtsp_transport_get_manager (transport->trans, &manager, 1) < 0)
3302           goto no_manager;
3303
3304         if (!manager)
3305           goto use_no_manager;
3306
3307         if (!(src->manager = gst_element_factory_make (manager, "manager")))
3308           goto manager_failed;
3309       }
3310
3311       /* we manage this element */
3312       gst_element_set_locked_state (src->manager, TRUE);
3313       gst_bin_add (GST_BIN_CAST (src), src->manager);
3314
3315       ret = gst_element_set_state (src->manager, GST_STATE_PAUSED);
3316       if (ret == GST_STATE_CHANGE_FAILURE)
3317         goto start_manager_failure;
3318
3319       g_object_set (src->manager, "latency", src->latency, NULL);
3320
3321       klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
3322
3323       if (g_object_class_find_property (klass, "ntp-sync")) {
3324         g_object_set (src->manager, "ntp-sync", src->ntp_sync, NULL);
3325       }
3326
3327       if (g_object_class_find_property (klass, "use-pipeline-clock")) {
3328         g_object_set (src->manager, "use-pipeline-clock",
3329             src->use_pipeline_clock, NULL);
3330       }
3331
3332       if (src->sdes && g_object_class_find_property (klass, "sdes")) {
3333         g_object_set (src->manager, "sdes", src->sdes, NULL);
3334       }
3335
3336       if (g_object_class_find_property (klass, "drop-on-latency")) {
3337         g_object_set (src->manager, "drop-on-latency", src->drop_on_latency,
3338             NULL);
3339       }
3340
3341       /* buffer mode pauses are handled by adding offsets to buffer times,
3342        * but some depayloaders may have a hard time syncing output times
3343        * with such input times, e.g. container ones, most notably ASF */
3344       /* TODO alternatives are having an event that indicates these shifts,
3345        * or having rtsp extensions provide suggestion on buffer mode */
3346       /* valid duration implies not likely live pipeline,
3347        * so slaving in jitterbuffer does not make much sense
3348        * (and might mess things up due to bursts) */
3349       if (GST_CLOCK_TIME_IS_VALID (src->segment.duration) &&
3350           src->segment.duration && stream->container) {
3351         src->use_buffering = TRUE;
3352       } else {
3353         src->use_buffering = FALSE;
3354       }
3355
3356       set_manager_buffer_mode (src);
3357
3358       /* connect to signals */
3359       GST_DEBUG_OBJECT (src, "connect to signals on session manager, stream %p",
3360           stream);
3361       src->manager_sig_id =
3362           g_signal_connect (src->manager, "pad-added",
3363           (GCallback) new_manager_pad, src);
3364       src->manager_ptmap_id =
3365           g_signal_connect (src->manager, "request-pt-map",
3366           (GCallback) request_pt_map, src);
3367
3368       g_signal_connect (src->manager, "on-npt-stop", (GCallback) on_npt_stop,
3369           src);
3370
3371       g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_NEW_MANAGER], 0,
3372           src->manager);
3373
3374       if (src->do_retransmission)
3375         add_retransmission (src, transport);
3376     }
3377     g_signal_connect (src->manager, "request-rtp-decoder",
3378         (GCallback) request_rtp_decoder, stream);
3379     g_signal_connect (src->manager, "request-rtcp-decoder",
3380         (GCallback) request_rtp_decoder, stream);
3381     g_signal_connect (src->manager, "request-rtcp-encoder",
3382         (GCallback) request_rtcp_encoder, stream);
3383
3384     /* we stream directly to the manager, get some pads. Each RTSP stream goes
3385      * into a separate RTP session. */
3386     name = g_strdup_printf ("recv_rtp_sink_%u", stream->id);
3387     stream->channelpad[0] = gst_element_get_request_pad (src->manager, name);
3388     g_free (name);
3389     name = g_strdup_printf ("recv_rtcp_sink_%u", stream->id);
3390     stream->channelpad[1] = gst_element_get_request_pad (src->manager, name);
3391     g_free (name);
3392
3393     /* now configure the bandwidth in the manager */
3394     if (g_signal_lookup ("get-internal-session",
3395             G_OBJECT_TYPE (src->manager)) != 0) {
3396       GObject *rtpsession;
3397
3398       g_signal_emit_by_name (src->manager, "get-internal-session", stream->id,
3399           &rtpsession);
3400       if (rtpsession) {
3401         GST_INFO_OBJECT (src, "configure bandwidth in session %p", rtpsession);
3402
3403         stream->session = rtpsession;
3404
3405         if (stream->as_bandwidth != -1) {
3406           GST_INFO_OBJECT (src, "setting AS: %f",
3407               (gdouble) (stream->as_bandwidth * 1000));
3408           g_object_set (rtpsession, "bandwidth",
3409               (gdouble) (stream->as_bandwidth * 1000), NULL);
3410         }
3411         if (stream->rr_bandwidth != -1) {
3412           GST_INFO_OBJECT (src, "setting RR: %u", stream->rr_bandwidth);
3413           g_object_set (rtpsession, "rtcp-rr-bandwidth", stream->rr_bandwidth,
3414               NULL);
3415         }
3416         if (stream->rs_bandwidth != -1) {
3417           GST_INFO_OBJECT (src, "setting RS: %u", stream->rs_bandwidth);
3418           g_object_set (rtpsession, "rtcp-rs-bandwidth", stream->rs_bandwidth,
3419               NULL);
3420         }
3421
3422         g_object_set (rtpsession, "probation", src->probation, NULL);
3423
3424         g_object_set (rtpsession, "internal-ssrc", stream->send_ssrc, NULL);
3425
3426         g_signal_connect (rtpsession, "on-bye-ssrc", (GCallback) on_bye_ssrc,
3427             stream);
3428         g_signal_connect (rtpsession, "on-bye-timeout", (GCallback) on_timeout,
3429             stream);
3430         g_signal_connect (rtpsession, "on-timeout", (GCallback) on_timeout,
3431             stream);
3432         g_signal_connect (rtpsession, "on-ssrc-active",
3433             (GCallback) on_ssrc_active, stream);
3434       }
3435     }
3436   }
3437
3438 use_no_manager:
3439   return TRUE;
3440
3441   /* ERRORS */
3442 no_manager:
3443   {
3444     GST_DEBUG_OBJECT (src, "cannot get a session manager");
3445     return FALSE;
3446   }
3447 manager_failed:
3448   {
3449     GST_DEBUG_OBJECT (src, "no session manager element %s found", manager);
3450     return FALSE;
3451   }
3452 start_manager_failure:
3453   {
3454     GST_DEBUG_OBJECT (src, "could not start session manager");
3455     return FALSE;
3456   }
3457 }
3458
3459 /* free the UDP sources allocated when negotiating a transport.
3460  * This function is called when the server negotiated to a transport where the
3461  * UDP sources are not needed anymore, such as TCP or multicast. */
3462 static void
3463 gst_rtspsrc_stream_free_udp (GstRTSPStream * stream)
3464 {
3465   gint i;
3466
3467   for (i = 0; i < 2; i++) {
3468     if (stream->udpsrc[i]) {
3469       GST_DEBUG ("free UDP source %d for stream %p", i, stream);
3470       gst_element_set_state (stream->udpsrc[i], GST_STATE_NULL);
3471       gst_object_unref (stream->udpsrc[i]);
3472       stream->udpsrc[i] = NULL;
3473     }
3474   }
3475 }
3476
3477 /* for TCP, create pads to send and receive data to and from the manager and to
3478  * intercept various events and queries
3479  */
3480 static gboolean
3481 gst_rtspsrc_stream_configure_tcp (GstRTSPSrc * src, GstRTSPStream * stream,
3482     GstRTSPTransport * transport, GstPad ** outpad)
3483 {
3484   gchar *name;
3485   GstPadTemplate *template;
3486   GstPad *pad0, *pad1;
3487
3488   /* configure for interleaved delivery, nothing needs to be done
3489    * here, the loop function will call the chain functions of the
3490    * session manager. */
3491   stream->channel[0] = transport->interleaved.min;
3492   stream->channel[1] = transport->interleaved.max;
3493   GST_DEBUG_OBJECT (src, "stream %p on channels %d-%d", stream,
3494       stream->channel[0], stream->channel[1]);
3495
3496   /* we can remove the allocated UDP ports now */
3497   gst_rtspsrc_stream_free_udp (stream);
3498
3499   /* no session manager, send data to srcpad directly */
3500   if (!stream->channelpad[0]) {
3501     GST_DEBUG_OBJECT (src, "no manager, creating pad");
3502
3503     /* create a new pad we will use to stream to */
3504     name = g_strdup_printf ("stream_%u", stream->id);
3505     template = gst_static_pad_template_get (&rtptemplate);
3506     stream->channelpad[0] = gst_pad_new_from_template (template, name);
3507     gst_object_unref (template);
3508     g_free (name);
3509
3510     /* set caps and activate */
3511     gst_pad_use_fixed_caps (stream->channelpad[0]);
3512     gst_pad_set_active (stream->channelpad[0], TRUE);
3513
3514     *outpad = gst_object_ref (stream->channelpad[0]);
3515   } else {
3516     GST_DEBUG_OBJECT (src, "using manager source pad");
3517
3518     template = gst_static_pad_template_get (&anysrctemplate);
3519
3520     /* allocate pads for sending the channel data into the manager */
3521     pad0 = gst_pad_new_from_template (template, "internalsrc_0");
3522     gst_pad_link_full (pad0, stream->channelpad[0], GST_PAD_LINK_CHECK_NOTHING);
3523     gst_object_unref (stream->channelpad[0]);
3524     stream->channelpad[0] = pad0;
3525     gst_pad_set_event_function (pad0, gst_rtspsrc_handle_internal_src_event);
3526     gst_pad_set_query_function (pad0, gst_rtspsrc_handle_internal_src_query);
3527     gst_pad_set_element_private (pad0, src);
3528     gst_pad_set_active (pad0, TRUE);
3529
3530     if (stream->channelpad[1]) {
3531       /* if we have a sinkpad for the other channel, create a pad and link to the
3532        * manager. */
3533       pad1 = gst_pad_new_from_template (template, "internalsrc_1");
3534       gst_pad_set_event_function (pad1, gst_rtspsrc_handle_internal_src_event);
3535       gst_pad_link_full (pad1, stream->channelpad[1],
3536           GST_PAD_LINK_CHECK_NOTHING);
3537       gst_object_unref (stream->channelpad[1]);
3538       stream->channelpad[1] = pad1;
3539       gst_pad_set_active (pad1, TRUE);
3540     }
3541     gst_object_unref (template);
3542   }
3543   /* setup RTCP transport back to the server if we have to. */
3544   if (src->manager && src->do_rtcp) {
3545     GstPad *pad;
3546
3547     template = gst_static_pad_template_get (&anysinktemplate);
3548
3549     stream->rtcppad = gst_pad_new_from_template (template, "internalsink_0");
3550     gst_pad_set_chain_function (stream->rtcppad, gst_rtspsrc_sink_chain);
3551     gst_pad_set_element_private (stream->rtcppad, stream);
3552     gst_pad_set_active (stream->rtcppad, TRUE);
3553
3554     /* get session RTCP pad */
3555     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
3556     pad = gst_element_get_request_pad (src->manager, name);
3557     g_free (name);
3558
3559     /* and link */
3560     if (pad) {
3561       gst_pad_link_full (pad, stream->rtcppad, GST_PAD_LINK_CHECK_NOTHING);
3562       gst_object_unref (pad);
3563     }
3564
3565     gst_object_unref (template);
3566   }
3567   return TRUE;
3568 }
3569
3570 static void
3571 gst_rtspsrc_get_transport_info (GstRTSPSrc * src, GstRTSPStream * stream,
3572     GstRTSPTransport * transport, const gchar ** destination, gint * min,
3573     gint * max, guint * ttl)
3574 {
3575   if (transport->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
3576     if (destination) {
3577       if (!(*destination = transport->destination))
3578         *destination = stream->destination;
3579     }
3580     if (min && max) {
3581       /* transport first */
3582       *min = transport->port.min;
3583       *max = transport->port.max;
3584       if (*min == -1 && *max == -1) {
3585         /* then try from SDP */
3586         if (stream->port != 0) {
3587           *min = stream->port;
3588           *max = stream->port + 1;
3589         }
3590       }
3591     }
3592
3593     if (ttl) {
3594       if (!(*ttl = transport->ttl))
3595         *ttl = stream->ttl;
3596     }
3597   } else {
3598     if (destination) {
3599       /* first take the source, then the endpoint to figure out where to send
3600        * the RTCP. */
3601       if (!(*destination = transport->source)) {
3602         if (src->conninfo.connection)
3603           *destination = gst_rtsp_connection_get_ip (src->conninfo.connection);
3604         else if (stream->conninfo.connection)
3605           *destination =
3606               gst_rtsp_connection_get_ip (stream->conninfo.connection);
3607       }
3608     }
3609     if (min && max) {
3610       /* for unicast we only expect the ports here */
3611       *min = transport->server_port.min;
3612       *max = transport->server_port.max;
3613     }
3614   }
3615 }
3616
3617 /* For multicast create UDP sources and join the multicast group. */
3618 static gboolean
3619 gst_rtspsrc_stream_configure_mcast (GstRTSPSrc * src, GstRTSPStream * stream,
3620     GstRTSPTransport * transport, GstPad ** outpad)
3621 {
3622   gchar *uri;
3623   const gchar *destination;
3624   gint min, max;
3625
3626   GST_DEBUG_OBJECT (src, "creating UDP sources for multicast");
3627
3628   /* we can remove the allocated UDP ports now */
3629   gst_rtspsrc_stream_free_udp (stream);
3630
3631   gst_rtspsrc_get_transport_info (src, stream, transport, &destination, &min,
3632       &max, NULL);
3633
3634   /* we need a destination now */
3635   if (destination == NULL)
3636     goto no_destination;
3637
3638   /* we really need ports now or we won't be able to receive anything at all */
3639   if (min == -1 && max == -1)
3640     goto no_ports;
3641
3642   GST_DEBUG_OBJECT (src, "have destination '%s' and ports (%d)-(%d)",
3643       destination, min, max);
3644
3645   /* creating UDP source for RTP */
3646   if (min != -1) {
3647     uri = g_strdup_printf ("udp://%s:%d", destination, min);
3648     stream->udpsrc[0] =
3649         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
3650     g_free (uri);
3651     if (stream->udpsrc[0] == NULL)
3652       goto no_element;
3653
3654     /* take ownership */
3655     gst_object_ref_sink (stream->udpsrc[0]);
3656
3657     if (src->udp_buffer_size != 0)
3658       g_object_set (G_OBJECT (stream->udpsrc[0]), "buffer-size",
3659           src->udp_buffer_size, NULL);
3660
3661     if (src->multi_iface != NULL)
3662       g_object_set (G_OBJECT (stream->udpsrc[0]), "multicast-iface",
3663           src->multi_iface, NULL);
3664
3665     /* change state */
3666     gst_element_set_locked_state (stream->udpsrc[0], TRUE);
3667     gst_element_set_state (stream->udpsrc[0], GST_STATE_READY);
3668   }
3669
3670   /* creating another UDP source for RTCP */
3671   if (max != -1) {
3672     GstCaps *caps;
3673
3674     uri = g_strdup_printf ("udp://%s:%d", destination, max);
3675     stream->udpsrc[1] =
3676         gst_element_make_from_uri (GST_URI_SRC, uri, NULL, NULL);
3677     g_free (uri);
3678     if (stream->udpsrc[1] == NULL)
3679       goto no_element;
3680
3681     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
3682         stream->profile == GST_RTSP_PROFILE_SAVPF)
3683       caps = gst_caps_new_empty_simple ("application/x-srtcp");
3684     else
3685       caps = gst_caps_new_empty_simple ("application/x-rtcp");
3686     g_object_set (stream->udpsrc[1], "caps", caps, NULL);
3687     gst_caps_unref (caps);
3688
3689     /* take ownership */
3690     gst_object_ref_sink (stream->udpsrc[1]);
3691
3692     if (src->multi_iface != NULL)
3693       g_object_set (G_OBJECT (stream->udpsrc[0]), "multicast-iface",
3694           src->multi_iface, NULL);
3695
3696     gst_element_set_state (stream->udpsrc[1], GST_STATE_READY);
3697   }
3698   return TRUE;
3699
3700   /* ERRORS */
3701 no_element:
3702   {
3703     GST_DEBUG_OBJECT (src, "no UDP source element found");
3704     return FALSE;
3705   }
3706 no_destination:
3707   {
3708     GST_DEBUG_OBJECT (src, "no destination found");
3709     return FALSE;
3710   }
3711 no_ports:
3712   {
3713     GST_DEBUG_OBJECT (src, "no ports found");
3714     return FALSE;
3715   }
3716 }
3717
3718 /* configure the remainder of the UDP ports */
3719 static gboolean
3720 gst_rtspsrc_stream_configure_udp (GstRTSPSrc * src, GstRTSPStream * stream,
3721     GstRTSPTransport * transport, GstPad ** outpad)
3722 {
3723   /* we manage the UDP elements now. For unicast, the UDP sources where
3724    * allocated in the stream when we suggested a transport. */
3725   if (stream->udpsrc[0]) {
3726     GstCaps *caps;
3727
3728     gst_element_set_locked_state (stream->udpsrc[0], TRUE);
3729     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[0]);
3730
3731     GST_DEBUG_OBJECT (src, "setting up UDP source");
3732
3733     /* configure a timeout on the UDP port. When the timeout message is
3734      * posted, we assume UDP transport is not possible. We reconnect using TCP
3735      * if we can. */
3736     g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout",
3737         src->udp_timeout * 1000, NULL);
3738
3739     if ((caps = stream_get_caps_for_pt (stream, stream->default_pt)))
3740       g_object_set (stream->udpsrc[0], "caps", caps, NULL);
3741
3742     /* get output pad of the UDP source. */
3743     *outpad = gst_element_get_static_pad (stream->udpsrc[0], "src");
3744
3745     /* save it so we can unblock */
3746     stream->blockedpad = *outpad;
3747
3748     /* configure pad block on the pad. As soon as there is dataflow on the
3749      * UDP source, we know that UDP is not blocked by a firewall and we can
3750      * configure all the streams to let the application autoplug decoders. */
3751     stream->blockid =
3752         gst_pad_add_probe (stream->blockedpad,
3753         GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_BUFFER |
3754         GST_PAD_PROBE_TYPE_BUFFER_LIST, pad_blocked, src, NULL);
3755
3756     if (stream->channelpad[0]) {
3757       GST_DEBUG_OBJECT (src, "connecting UDP source 0 to manager");
3758       /* configure for UDP delivery, we need to connect the UDP pads to
3759        * the session plugin. */
3760       gst_pad_link_full (*outpad, stream->channelpad[0],
3761           GST_PAD_LINK_CHECK_NOTHING);
3762       gst_object_unref (*outpad);
3763       *outpad = NULL;
3764       /* we connected to pad-added signal to get pads from the manager */
3765     } else {
3766       GST_DEBUG_OBJECT (src, "using UDP src pad as output");
3767     }
3768   }
3769
3770   /* RTCP port */
3771   if (stream->udpsrc[1]) {
3772     GstCaps *caps;
3773
3774     gst_element_set_locked_state (stream->udpsrc[1], TRUE);
3775     gst_bin_add (GST_BIN_CAST (src), stream->udpsrc[1]);
3776
3777     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
3778         stream->profile == GST_RTSP_PROFILE_SAVPF)
3779       caps = gst_caps_new_empty_simple ("application/x-srtcp");
3780     else
3781       caps = gst_caps_new_empty_simple ("application/x-rtcp");
3782     g_object_set (stream->udpsrc[1], "caps", caps, NULL);
3783     gst_caps_unref (caps);
3784
3785     if (stream->channelpad[1]) {
3786       GstPad *pad;
3787
3788       GST_DEBUG_OBJECT (src, "connecting UDP source 1 to manager");
3789
3790       pad = gst_element_get_static_pad (stream->udpsrc[1], "src");
3791       gst_pad_link_full (pad, stream->channelpad[1],
3792           GST_PAD_LINK_CHECK_NOTHING);
3793       gst_object_unref (pad);
3794     } else {
3795       /* leave unlinked */
3796     }
3797   }
3798   return TRUE;
3799 }
3800
3801 /* configure the UDP sink back to the server for status reports */
3802 static gboolean
3803 gst_rtspsrc_stream_configure_udp_sinks (GstRTSPSrc * src,
3804     GstRTSPStream * stream, GstRTSPTransport * transport)
3805 {
3806   GstPad *pad;
3807   gint rtp_port, rtcp_port;
3808   gboolean do_rtp, do_rtcp;
3809   const gchar *destination;
3810   gchar *uri, *name;
3811   guint ttl = 0;
3812   GSocket *socket;
3813
3814   /* get transport info */
3815   gst_rtspsrc_get_transport_info (src, stream, transport, &destination,
3816       &rtp_port, &rtcp_port, &ttl);
3817
3818   /* see what we need to do */
3819   do_rtp = (rtp_port != -1);
3820   /* it's possible that the server does not want us to send RTCP in which case
3821    * the port is -1 */
3822   do_rtcp = (rtcp_port != -1 && src->manager != NULL && src->do_rtcp);
3823
3824   /* we need a destination when we have RTP or RTCP ports */
3825   if (destination == NULL && (do_rtp || do_rtcp))
3826     goto no_destination;
3827
3828   /* try to construct the fakesrc to the RTP port of the server to open up any
3829    * NAT firewalls */
3830   if (do_rtp) {
3831     GST_DEBUG_OBJECT (src, "configure RTP UDP sink for %s:%d", destination,
3832         rtp_port);
3833
3834     uri = g_strdup_printf ("udp://%s:%d", destination, rtp_port);
3835     stream->udpsink[0] =
3836         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
3837     g_free (uri);
3838     if (stream->udpsink[0] == NULL)
3839       goto no_sink_element;
3840
3841     /* don't join multicast group, we will have the source socket do that */
3842     /* no sync or async state changes needed */
3843     g_object_set (G_OBJECT (stream->udpsink[0]), "auto-multicast", FALSE,
3844         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
3845     if (ttl > 0)
3846       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
3847
3848     if (stream->udpsrc[0]) {
3849       /* configure socket, we give it the same UDP socket as the udpsrc for RTP
3850        * so that NAT firewalls will open a hole for us */
3851       g_object_get (G_OBJECT (stream->udpsrc[0]), "used-socket", &socket, NULL);
3852       GST_DEBUG_OBJECT (src, "RTP UDP src has sock %p", socket);
3853       /* configure socket and make sure udpsink does not close it when shutting
3854        * down, it belongs to udpsrc after all. */
3855       g_object_set (G_OBJECT (stream->udpsink[0]), "socket", socket,
3856           "close-socket", FALSE, NULL);
3857       g_object_unref (socket);
3858     }
3859
3860     /* the source for the dummy packets to open up NAT */
3861     stream->fakesrc = gst_element_factory_make ("fakesrc", NULL);
3862     if (stream->fakesrc == NULL)
3863       goto no_fakesrc_element;
3864
3865     /* random data in 5 buffers, a size of 200 bytes should be fine */
3866     g_object_set (G_OBJECT (stream->fakesrc), "filltype", 3, "num-buffers", 5,
3867         "sizetype", 2, "sizemax", 200, "silent", TRUE, NULL);
3868
3869     /* we don't want to consider this a sink */
3870     GST_OBJECT_FLAG_UNSET (stream->udpsink[0], GST_ELEMENT_FLAG_SINK);
3871
3872     /* keep everything locked */
3873     gst_element_set_locked_state (stream->udpsink[0], TRUE);
3874     gst_element_set_locked_state (stream->fakesrc, TRUE);
3875
3876     gst_object_ref (stream->udpsink[0]);
3877     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[0]);
3878     gst_object_ref (stream->fakesrc);
3879     gst_bin_add (GST_BIN_CAST (src), stream->fakesrc);
3880
3881     gst_element_link_pads_full (stream->fakesrc, "src", stream->udpsink[0],
3882         "sink", GST_PAD_LINK_CHECK_NOTHING);
3883   }
3884   if (do_rtcp) {
3885     GST_DEBUG_OBJECT (src, "configure RTCP UDP sink for %s:%d", destination,
3886         rtcp_port);
3887
3888     uri = g_strdup_printf ("udp://%s:%d", destination, rtcp_port);
3889     stream->udpsink[1] =
3890         gst_element_make_from_uri (GST_URI_SINK, uri, NULL, NULL);
3891     g_free (uri);
3892     if (stream->udpsink[1] == NULL)
3893       goto no_sink_element;
3894
3895     /* don't join multicast group, we will have the source socket do that */
3896     /* no sync or async state changes needed */
3897     g_object_set (G_OBJECT (stream->udpsink[1]), "auto-multicast", FALSE,
3898         "loop", FALSE, "sync", FALSE, "async", FALSE, NULL);
3899     if (ttl > 0)
3900       g_object_set (G_OBJECT (stream->udpsink[0]), "ttl", ttl, NULL);
3901
3902     if (stream->udpsrc[1]) {
3903       /* configure socket, we give it the same UDP socket as the udpsrc for RTCP
3904        * because some servers check the port number of where it sends RTCP to identify
3905        * the RTCP packets it receives */
3906       g_object_get (G_OBJECT (stream->udpsrc[1]), "used-socket", &socket, NULL);
3907       GST_DEBUG_OBJECT (src, "RTCP UDP src has sock %p", socket);
3908       /* configure socket and make sure udpsink does not close it when shutting
3909        * down, it belongs to udpsrc after all. */
3910       g_object_set (G_OBJECT (stream->udpsink[1]), "socket", socket,
3911           "close-socket", FALSE, NULL);
3912       g_object_unref (socket);
3913     }
3914
3915     /* we don't want to consider this a sink */
3916     GST_OBJECT_FLAG_UNSET (stream->udpsink[1], GST_ELEMENT_FLAG_SINK);
3917
3918     /* we keep this playing always */
3919     gst_element_set_locked_state (stream->udpsink[1], TRUE);
3920     gst_element_set_state (stream->udpsink[1], GST_STATE_PLAYING);
3921
3922     gst_object_ref (stream->udpsink[1]);
3923     gst_bin_add (GST_BIN_CAST (src), stream->udpsink[1]);
3924
3925     stream->rtcppad = gst_element_get_static_pad (stream->udpsink[1], "sink");
3926
3927     /* get session RTCP pad */
3928     name = g_strdup_printf ("send_rtcp_src_%u", stream->id);
3929     pad = gst_element_get_request_pad (src->manager, name);
3930     g_free (name);
3931
3932     /* and link */
3933     if (pad) {
3934       gst_pad_link_full (pad, stream->rtcppad, GST_PAD_LINK_CHECK_NOTHING);
3935       gst_object_unref (pad);
3936     }
3937   }
3938
3939   return TRUE;
3940
3941   /* ERRORS */
3942 no_destination:
3943   {
3944     GST_DEBUG_OBJECT (src, "no destination address specified");
3945     return FALSE;
3946   }
3947 no_sink_element:
3948   {
3949     GST_DEBUG_OBJECT (src, "no UDP sink element found");
3950     return FALSE;
3951   }
3952 no_fakesrc_element:
3953   {
3954     GST_DEBUG_OBJECT (src, "no fakesrc element found");
3955     return FALSE;
3956   }
3957 }
3958
3959 /* sets up all elements needed for streaming over the specified transport.
3960  * Does not yet expose the element pads, this will be done when there is actuall
3961  * dataflow detected, which might never happen when UDP is blocked in a
3962  * firewall, for example.
3963  */
3964 static gboolean
3965 gst_rtspsrc_stream_configure_transport (GstRTSPStream * stream,
3966     GstRTSPTransport * transport)
3967 {
3968   GstRTSPSrc *src;
3969   GstPad *outpad = NULL;
3970   GstPadTemplate *template;
3971   gchar *name;
3972   const gchar *media_type;
3973   guint i, len;
3974
3975   src = stream->parent;
3976
3977   GST_DEBUG_OBJECT (src, "configuring transport for stream %p", stream);
3978
3979   /* get the proper media type for this stream now */
3980   if (gst_rtsp_transport_get_media_type (transport, &media_type) < 0)
3981     goto unknown_transport;
3982   if (!media_type)
3983     goto unknown_transport;
3984
3985   /* configure the final media type */
3986   GST_DEBUG_OBJECT (src, "setting media type to %s", media_type);
3987
3988   len = stream->ptmap->len;
3989   for (i = 0; i < len; i++) {
3990     GstStructure *s;
3991     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
3992
3993     if (item->caps == NULL)
3994       continue;
3995
3996     s = gst_caps_get_structure (item->caps, 0);
3997     gst_structure_set_name (s, media_type);
3998     /* set ssrc if known */
3999     if (transport->ssrc)
4000       gst_structure_set (s, "ssrc", G_TYPE_UINT, transport->ssrc, NULL);
4001   }
4002
4003   /* try to get and configure a manager, channelpad[0-1] will be configured with
4004    * the pads for the manager, or NULL when no manager is needed. */
4005   if (!gst_rtspsrc_stream_configure_manager (src, stream, transport))
4006     goto no_manager;
4007
4008   switch (transport->lower_transport) {
4009     case GST_RTSP_LOWER_TRANS_TCP:
4010       if (!gst_rtspsrc_stream_configure_tcp (src, stream, transport, &outpad))
4011         goto transport_failed;
4012       break;
4013     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
4014       if (!gst_rtspsrc_stream_configure_mcast (src, stream, transport, &outpad))
4015         goto transport_failed;
4016       /* fallthrough, the rest is the same for UDP and MCAST */
4017     case GST_RTSP_LOWER_TRANS_UDP:
4018       if (!gst_rtspsrc_stream_configure_udp (src, stream, transport, &outpad))
4019         goto transport_failed;
4020       /* configure udpsinks back to the server for RTCP messages and for the
4021        * dummy RTP messages to open NAT. */
4022       if (!gst_rtspsrc_stream_configure_udp_sinks (src, stream, transport))
4023         goto transport_failed;
4024       break;
4025     default:
4026       goto unknown_transport;
4027   }
4028
4029   if (outpad) {
4030     GST_DEBUG_OBJECT (src, "creating ghostpad");
4031
4032     gst_pad_use_fixed_caps (outpad);
4033
4034     /* create ghostpad, don't add just yet, this will be done when we activate
4035      * the stream. */
4036     name = g_strdup_printf ("stream_%u", stream->id);
4037     template = gst_static_pad_template_get (&rtptemplate);
4038     stream->srcpad = gst_ghost_pad_new_from_template (name, outpad, template);
4039     gst_pad_set_event_function (stream->srcpad, gst_rtspsrc_handle_src_event);
4040     gst_pad_set_query_function (stream->srcpad, gst_rtspsrc_handle_src_query);
4041     gst_object_unref (template);
4042     g_free (name);
4043
4044     gst_object_unref (outpad);
4045   }
4046   /* mark pad as ok */
4047   stream->last_ret = GST_FLOW_OK;
4048
4049   return TRUE;
4050
4051   /* ERRORS */
4052 transport_failed:
4053   {
4054     GST_DEBUG_OBJECT (src, "failed to configure transport");
4055     return FALSE;
4056   }
4057 unknown_transport:
4058   {
4059     GST_DEBUG_OBJECT (src, "unknown transport");
4060     return FALSE;
4061   }
4062 no_manager:
4063   {
4064     GST_DEBUG_OBJECT (src, "cannot get a session manager");
4065     return FALSE;
4066   }
4067 }
4068
4069 /* send a couple of dummy random packets on the receiver RTP port to the server,
4070  * this should make a firewall think we initiated the data transfer and
4071  * hopefully allow packets to go from the sender port to our RTP receiver port */
4072 static gboolean
4073 gst_rtspsrc_send_dummy_packets (GstRTSPSrc * src)
4074 {
4075   GList *walk;
4076
4077   if (src->nat_method != GST_RTSP_NAT_DUMMY)
4078     return TRUE;
4079
4080   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4081     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4082
4083     if (stream->fakesrc && stream->udpsink[0]) {
4084       GST_DEBUG_OBJECT (src, "sending dummy packet to stream %p", stream);
4085       gst_element_set_state (stream->udpsink[0], GST_STATE_NULL);
4086       gst_element_set_state (stream->fakesrc, GST_STATE_NULL);
4087       gst_element_set_state (stream->udpsink[0], GST_STATE_PLAYING);
4088       gst_element_set_state (stream->fakesrc, GST_STATE_PLAYING);
4089     }
4090   }
4091   return TRUE;
4092 }
4093
4094 /* Adds the source pads of all configured streams to the element.
4095  * This code is performed when we detected dataflow.
4096  *
4097  * We detect dataflow from either the _loop function or with pad probes on the
4098  * udp sources.
4099  */
4100 static gboolean
4101 gst_rtspsrc_activate_streams (GstRTSPSrc * src)
4102 {
4103   GList *walk;
4104
4105   GST_DEBUG_OBJECT (src, "activating streams");
4106
4107   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4108     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4109
4110     if (stream->udpsrc[0]) {
4111       /* remove timeout, we are streaming now and timeouts will be handled by
4112        * the session manager and jitter buffer */
4113       g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout", (guint64) 0, NULL);
4114     }
4115     if (stream->srcpad) {
4116       GST_DEBUG_OBJECT (src, "activating stream pad %p", stream);
4117       gst_pad_set_active (stream->srcpad, TRUE);
4118
4119       /* if we don't have a session manager, set the caps now. If we have a
4120        * session, we will get a notification of the pad and the caps. */
4121       if (!src->manager) {
4122         GstCaps *caps;
4123
4124         caps = stream_get_caps_for_pt (stream, stream->default_pt);
4125         GST_DEBUG_OBJECT (src, "setting pad caps for stream %p", stream);
4126         gst_pad_set_caps (stream->srcpad, caps);
4127       }
4128       /* add the pad */
4129       if (!stream->added) {
4130         GST_DEBUG_OBJECT (src, "adding stream pad %p", stream);
4131         gst_element_add_pad (GST_ELEMENT_CAST (src), stream->srcpad);
4132         stream->added = TRUE;
4133       }
4134     }
4135   }
4136
4137   /* unblock all pads */
4138   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4139     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4140
4141     if (stream->blockid) {
4142       GST_DEBUG_OBJECT (src, "unblocking stream pad %p", stream);
4143       gst_pad_remove_probe (stream->blockedpad, stream->blockid);
4144       stream->blockid = 0;
4145     }
4146   }
4147
4148   return TRUE;
4149 }
4150
4151 static void
4152 gst_rtspsrc_configure_caps (GstRTSPSrc * src, GstSegment * segment,
4153     gboolean reset_manager)
4154 {
4155   GList *walk;
4156   guint64 start, stop;
4157   gdouble play_speed, play_scale;
4158
4159   GST_DEBUG_OBJECT (src, "configuring stream caps");
4160
4161   start = segment->position;
4162   stop = segment->duration;
4163   play_speed = segment->rate;
4164   play_scale = segment->applied_rate;
4165
4166   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4167     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4168     guint j, len;
4169
4170     if (!stream->setup)
4171       continue;
4172
4173     len = stream->ptmap->len;
4174     for (j = 0; j < len; j++) {
4175       GstCaps *caps;
4176       PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, j);
4177
4178       if (item->caps == NULL)
4179         continue;
4180
4181       caps = gst_caps_make_writable (item->caps);
4182       /* update caps */
4183       if (stream->timebase != -1)
4184         gst_caps_set_simple (caps, "clock-base", G_TYPE_UINT,
4185             (guint) stream->timebase, NULL);
4186       if (stream->seqbase != -1)
4187         gst_caps_set_simple (caps, "seqnum-base", G_TYPE_UINT,
4188             (guint) stream->seqbase, NULL);
4189       gst_caps_set_simple (caps, "npt-start", G_TYPE_UINT64, start, NULL);
4190       if (stop != -1)
4191         gst_caps_set_simple (caps, "npt-stop", G_TYPE_UINT64, stop, NULL);
4192       gst_caps_set_simple (caps, "play-speed", G_TYPE_DOUBLE, play_speed, NULL);
4193       gst_caps_set_simple (caps, "play-scale", G_TYPE_DOUBLE, play_scale, NULL);
4194
4195       item->caps = caps;
4196       GST_DEBUG_OBJECT (src, "stream %p, pt %d, caps %" GST_PTR_FORMAT, stream,
4197           item->pt, caps);
4198
4199       if (item->pt == stream->default_pt && stream->udpsrc[0]) {
4200         g_object_set (stream->udpsrc[0], "caps", caps, NULL);
4201       }
4202     }
4203   }
4204   if (reset_manager && src->manager) {
4205     GST_DEBUG_OBJECT (src, "clear session");
4206     g_signal_emit_by_name (src->manager, "clear-pt-map", NULL);
4207   }
4208 }
4209
4210 static GstFlowReturn
4211 gst_rtspsrc_combine_flows (GstRTSPSrc * src, GstRTSPStream * stream,
4212     GstFlowReturn ret)
4213 {
4214   GList *streams;
4215
4216   /* store the value */
4217   stream->last_ret = ret;
4218
4219   /* if it's success we can return the value right away */
4220   if (ret == GST_FLOW_OK)
4221     goto done;
4222
4223   /* any other error that is not-linked can be returned right
4224    * away */
4225   if (ret != GST_FLOW_NOT_LINKED)
4226     goto done;
4227
4228   /* only return NOT_LINKED if all other pads returned NOT_LINKED */
4229   for (streams = src->streams; streams; streams = g_list_next (streams)) {
4230     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4231
4232     ret = ostream->last_ret;
4233     /* some other return value (must be SUCCESS but we can return
4234      * other values as well) */
4235     if (ret != GST_FLOW_NOT_LINKED)
4236       goto done;
4237   }
4238   /* if we get here, all other pads were unlinked and we return
4239    * NOT_LINKED then */
4240 done:
4241   return ret;
4242 }
4243
4244 static gboolean
4245 gst_rtspsrc_stream_push_event (GstRTSPSrc * src, GstRTSPStream * stream,
4246     GstEvent * event)
4247 {
4248   gboolean res = TRUE;
4249
4250   /* only streams that have a connection to the outside world */
4251   if (!stream->setup)
4252     goto done;
4253
4254   if (stream->udpsrc[0]) {
4255     gst_event_ref (event);
4256     res = gst_element_send_event (stream->udpsrc[0], event);
4257   } else if (stream->channelpad[0]) {
4258     gst_event_ref (event);
4259     if (GST_PAD_IS_SRC (stream->channelpad[0]))
4260       res = gst_pad_push_event (stream->channelpad[0], event);
4261     else
4262       res = gst_pad_send_event (stream->channelpad[0], event);
4263   }
4264
4265   if (stream->udpsrc[1]) {
4266     gst_event_ref (event);
4267     res &= gst_element_send_event (stream->udpsrc[1], event);
4268   } else if (stream->channelpad[1]) {
4269     gst_event_ref (event);
4270     if (GST_PAD_IS_SRC (stream->channelpad[1]))
4271       res &= gst_pad_push_event (stream->channelpad[1], event);
4272     else
4273       res &= gst_pad_send_event (stream->channelpad[1], event);
4274   }
4275
4276 done:
4277   gst_event_unref (event);
4278
4279   return res;
4280 }
4281
4282 static gboolean
4283 gst_rtspsrc_push_event (GstRTSPSrc * src, GstEvent * event)
4284 {
4285   GList *streams;
4286   gboolean res = TRUE;
4287
4288   for (streams = src->streams; streams; streams = g_list_next (streams)) {
4289     GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4290
4291     gst_event_ref (event);
4292     res &= gst_rtspsrc_stream_push_event (src, ostream, event);
4293   }
4294   gst_event_unref (event);
4295
4296   return res;
4297 }
4298
4299 static GstRTSPResult
4300 gst_rtsp_conninfo_connect (GstRTSPSrc * src, GstRTSPConnInfo * info,
4301     gboolean async)
4302 {
4303   GstRTSPResult res;
4304
4305   if (info->connection == NULL) {
4306     if (info->url == NULL) {
4307       GST_DEBUG_OBJECT (src, "parsing uri (%s)...", info->location);
4308       if ((res = gst_rtsp_url_parse (info->location, &info->url)) < 0)
4309         goto parse_error;
4310     }
4311
4312     /* create connection */
4313     GST_DEBUG_OBJECT (src, "creating connection (%s)...", info->location);
4314     if ((res = gst_rtsp_connection_create (info->url, &info->connection)) < 0)
4315       goto could_not_create;
4316
4317     if (info->url_str)
4318       g_free (info->url_str);
4319     info->url_str = gst_rtsp_url_get_request_uri (info->url);
4320
4321     GST_DEBUG_OBJECT (src, "sanitized uri %s", info->url_str);
4322
4323     if (info->url->transports & GST_RTSP_LOWER_TRANS_TLS) {
4324       if (!gst_rtsp_connection_set_tls_validation_flags (info->connection,
4325               src->tls_validation_flags))
4326         GST_WARNING_OBJECT (src, "Unable to set TLS validation flags");
4327
4328       if (src->tls_database)
4329         gst_rtsp_connection_set_tls_database (info->connection,
4330             src->tls_database);
4331     }
4332
4333     if (info->url->transports & GST_RTSP_LOWER_TRANS_HTTP)
4334       gst_rtsp_connection_set_tunneled (info->connection, TRUE);
4335
4336     if (src->proxy_host) {
4337       GST_DEBUG_OBJECT (src, "setting proxy %s:%d", src->proxy_host,
4338           src->proxy_port);
4339       gst_rtsp_connection_set_proxy (info->connection, src->proxy_host,
4340           src->proxy_port);
4341     }
4342   }
4343
4344   if (!info->connected) {
4345     /* connect */
4346     if (async)
4347       GST_ELEMENT_PROGRESS (src, CONTINUE, "connect",
4348           ("Connecting to %s", info->location));
4349     GST_DEBUG_OBJECT (src, "connecting (%s)...", info->location);
4350     if ((res =
4351             gst_rtsp_connection_connect (info->connection,
4352                 src->ptcp_timeout)) < 0)
4353       goto could_not_connect;
4354
4355     info->connected = TRUE;
4356   }
4357   return GST_RTSP_OK;
4358
4359   /* ERRORS */
4360 parse_error:
4361   {
4362     GST_ERROR_OBJECT (src, "No valid RTSP URL was provided");
4363     return res;
4364   }
4365 could_not_create:
4366   {
4367     gchar *str = gst_rtsp_strresult (res);
4368     GST_ERROR_OBJECT (src, "Could not create connection. (%s)", str);
4369     g_free (str);
4370     return res;
4371   }
4372 could_not_connect:
4373   {
4374     gchar *str = gst_rtsp_strresult (res);
4375     GST_ERROR_OBJECT (src, "Could not connect to server. (%s)", str);
4376     g_free (str);
4377     return res;
4378   }
4379 }
4380
4381 static GstRTSPResult
4382 gst_rtsp_conninfo_close (GstRTSPSrc * src, GstRTSPConnInfo * info,
4383     gboolean free)
4384 {
4385   GST_RTSP_STATE_LOCK (src);
4386   if (info->connected) {
4387     GST_DEBUG_OBJECT (src, "closing connection...");
4388     gst_rtsp_connection_close (info->connection);
4389     info->connected = FALSE;
4390   }
4391   if (free && info->connection) {
4392     /* free connection */
4393     GST_DEBUG_OBJECT (src, "freeing connection...");
4394     gst_rtsp_connection_free (info->connection);
4395     info->connection = NULL;
4396   }
4397   GST_RTSP_STATE_UNLOCK (src);
4398   return GST_RTSP_OK;
4399 }
4400
4401 static GstRTSPResult
4402 gst_rtsp_conninfo_reconnect (GstRTSPSrc * src, GstRTSPConnInfo * info,
4403     gboolean async)
4404 {
4405   GstRTSPResult res;
4406
4407   GST_DEBUG_OBJECT (src, "reconnecting connection...");
4408   gst_rtsp_conninfo_close (src, info, FALSE);
4409   res = gst_rtsp_conninfo_connect (src, info, async);
4410
4411   return res;
4412 }
4413
4414 static void
4415 gst_rtspsrc_connection_flush (GstRTSPSrc * src, gboolean flush)
4416 {
4417   GList *walk;
4418
4419   GST_DEBUG_OBJECT (src, "set flushing %d", flush);
4420   GST_RTSP_STATE_LOCK (src);
4421   if (src->conninfo.connection && src->conninfo.flushing != flush) {
4422     GST_DEBUG_OBJECT (src, "connection flush");
4423     gst_rtsp_connection_flush (src->conninfo.connection, flush);
4424     src->conninfo.flushing = flush;
4425   }
4426   for (walk = src->streams; walk; walk = g_list_next (walk)) {
4427     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
4428     if (stream->conninfo.connection && stream->conninfo.flushing != flush) {
4429       GST_DEBUG_OBJECT (src, "stream %p flush", stream);
4430       gst_rtsp_connection_flush (stream->conninfo.connection, flush);
4431       stream->conninfo.flushing = flush;
4432     }
4433   }
4434   GST_RTSP_STATE_UNLOCK (src);
4435 }
4436
4437 /* FIXME, handle server request, reply with OK, for now */
4438 static GstRTSPResult
4439 gst_rtspsrc_handle_request (GstRTSPSrc * src, GstRTSPConnection * conn,
4440     GstRTSPMessage * request)
4441 {
4442   GstRTSPMessage response = { 0 };
4443   GstRTSPResult res;
4444
4445   GST_DEBUG_OBJECT (src, "got server request message");
4446
4447   if (src->debug)
4448     gst_rtsp_message_dump (request);
4449
4450   res = gst_rtsp_ext_list_receive_request (src->extensions, request);
4451
4452   if (res == GST_RTSP_ENOTIMPL) {
4453     /* default implementation, send OK */
4454     GST_DEBUG_OBJECT (src, "prepare OK reply");
4455     res =
4456         gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK, "OK",
4457         request);
4458     if (res < 0)
4459       goto send_error;
4460
4461     /* let app parse and reply */
4462     g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_HANDLE_REQUEST],
4463         0, request, &response);
4464
4465     if (src->debug)
4466       gst_rtsp_message_dump (&response);
4467
4468     res = gst_rtspsrc_connection_send (src, conn, &response, NULL);
4469     if (res < 0)
4470       goto send_error;
4471
4472     gst_rtsp_message_unset (&response);
4473   } else if (res == GST_RTSP_EEOF)
4474     return res;
4475
4476   return GST_RTSP_OK;
4477
4478   /* ERRORS */
4479 send_error:
4480   {
4481     gst_rtsp_message_unset (&response);
4482     return res;
4483   }
4484 }
4485
4486 /* send server keep-alive */
4487 static GstRTSPResult
4488 gst_rtspsrc_send_keep_alive (GstRTSPSrc * src)
4489 {
4490   GstRTSPMessage request = { 0 };
4491   GstRTSPResult res;
4492   GstRTSPMethod method;
4493   const gchar *control;
4494
4495   if (src->do_rtsp_keep_alive == FALSE) {
4496     GST_DEBUG_OBJECT (src, "do-rtsp-keep-alive is FALSE, not sending.");
4497     gst_rtsp_connection_reset_timeout (src->conninfo.connection);
4498     return GST_RTSP_OK;
4499   }
4500
4501   GST_DEBUG_OBJECT (src, "creating server keep-alive");
4502
4503   /* find a method to use for keep-alive */
4504   if (src->methods & GST_RTSP_GET_PARAMETER)
4505     method = GST_RTSP_GET_PARAMETER;
4506   else
4507     method = GST_RTSP_OPTIONS;
4508
4509   control = get_aggregate_control (src);
4510   if (control == NULL)
4511     goto no_control;
4512
4513   res = gst_rtsp_message_init_request (&request, method, control);
4514   if (res < 0)
4515     goto send_error;
4516
4517   if (src->debug)
4518     gst_rtsp_message_dump (&request);
4519
4520   res =
4521       gst_rtspsrc_connection_send (src, src->conninfo.connection, &request,
4522       NULL);
4523   if (res < 0)
4524     goto send_error;
4525
4526   gst_rtsp_connection_reset_timeout (src->conninfo.connection);
4527   gst_rtsp_message_unset (&request);
4528
4529   return GST_RTSP_OK;
4530
4531   /* ERRORS */
4532 no_control:
4533   {
4534     GST_WARNING_OBJECT (src, "no control url to send keepalive");
4535     return GST_RTSP_OK;
4536   }
4537 send_error:
4538   {
4539     gchar *str = gst_rtsp_strresult (res);
4540
4541     gst_rtsp_message_unset (&request);
4542     GST_ELEMENT_WARNING (src, RESOURCE, WRITE, (NULL),
4543         ("Could not send keep-alive. (%s)", str));
4544     g_free (str);
4545     return res;
4546   }
4547 }
4548
4549 static GstFlowReturn
4550 gst_rtspsrc_handle_data (GstRTSPSrc * src, GstRTSPMessage * message)
4551 {
4552   GstFlowReturn ret = GST_FLOW_OK;
4553   gint channel;
4554   GstRTSPStream *stream;
4555   GstPad *outpad = NULL;
4556   guint8 *data;
4557   guint size;
4558   GstBuffer *buf;
4559   gboolean is_rtcp;
4560
4561   channel = message->type_data.data.channel;
4562
4563   stream = find_stream (src, &channel, (gpointer) find_stream_by_channel);
4564   if (!stream)
4565     goto unknown_stream;
4566
4567   if (channel == stream->channel[0]) {
4568     outpad = stream->channelpad[0];
4569     is_rtcp = FALSE;
4570   } else if (channel == stream->channel[1]) {
4571     outpad = stream->channelpad[1];
4572     is_rtcp = TRUE;
4573   } else {
4574     is_rtcp = FALSE;
4575   }
4576
4577   /* take a look at the body to figure out what we have */
4578   gst_rtsp_message_get_body (message, &data, &size);
4579   if (size < 2)
4580     goto invalid_length;
4581
4582   /* channels are not correct on some servers, do extra check */
4583   if (data[1] >= 200 && data[1] <= 204) {
4584     /* hmm RTCP message switch to the RTCP pad of the same stream. */
4585     outpad = stream->channelpad[1];
4586     is_rtcp = TRUE;
4587   }
4588
4589   /* we have no clue what this is, just ignore then. */
4590   if (outpad == NULL)
4591     goto unknown_stream;
4592
4593   /* take the message body for further processing */
4594   gst_rtsp_message_steal_body (message, &data, &size);
4595
4596   /* strip the trailing \0 */
4597   size -= 1;
4598
4599   buf = gst_buffer_new ();
4600   gst_buffer_append_memory (buf,
4601       gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
4602
4603   /* don't need message anymore */
4604   gst_rtsp_message_unset (message);
4605
4606   GST_DEBUG_OBJECT (src, "pushing data of size %d on channel %d", size,
4607       channel);
4608
4609   if (src->need_activate) {
4610     gchar *stream_id;
4611     GstEvent *event;
4612     GChecksum *cs;
4613     gchar *uri;
4614     GList *streams;
4615     guint group_id = gst_util_group_id_next ();
4616
4617     /* generate an SHA256 sum of the URI */
4618     cs = g_checksum_new (G_CHECKSUM_SHA256);
4619     uri = src->conninfo.location;
4620     g_checksum_update (cs, (const guchar *) uri, strlen (uri));
4621
4622     for (streams = src->streams; streams; streams = g_list_next (streams)) {
4623       GstRTSPStream *ostream = (GstRTSPStream *) streams->data;
4624       GstCaps *caps;
4625
4626       stream_id =
4627           g_strdup_printf ("%s/%d", g_checksum_get_string (cs), ostream->id);
4628       event = gst_event_new_stream_start (stream_id);
4629       gst_event_set_group_id (event, group_id);
4630
4631       g_free (stream_id);
4632       gst_rtspsrc_stream_push_event (src, ostream, event);
4633
4634       if ((caps = stream_get_caps_for_pt (ostream, ostream->default_pt))) {
4635         /* only streams that have a connection to the outside world */
4636         if (ostream->setup) {
4637           if (ostream->udpsrc[0]) {
4638             gst_element_send_event (ostream->udpsrc[0],
4639                 gst_event_new_caps (caps));
4640           } else if (ostream->channelpad[0]) {
4641             if (GST_PAD_IS_SRC (ostream->channelpad[0]))
4642               gst_pad_push_event (ostream->channelpad[0],
4643                   gst_event_new_caps (caps));
4644             else
4645               gst_pad_send_event (ostream->channelpad[0],
4646                   gst_event_new_caps (caps));
4647           }
4648
4649           caps = gst_caps_new_empty_simple ("application/x-rtcp");
4650
4651           if (ostream->udpsrc[1]) {
4652             gst_element_send_event (ostream->udpsrc[1],
4653                 gst_event_new_caps (caps));
4654           } else if (ostream->channelpad[1]) {
4655             if (GST_PAD_IS_SRC (ostream->channelpad[1]))
4656               gst_pad_push_event (ostream->channelpad[1],
4657                   gst_event_new_caps (caps));
4658             else
4659               gst_pad_send_event (ostream->channelpad[1],
4660                   gst_event_new_caps (caps));
4661           }
4662
4663           gst_caps_unref (caps);
4664         }
4665       }
4666     }
4667     g_checksum_free (cs);
4668
4669     gst_rtspsrc_activate_streams (src);
4670     src->need_activate = FALSE;
4671     src->need_segment = TRUE;
4672   }
4673
4674   if (src->base_time == -1) {
4675     /* Take current running_time. This timestamp will be put on
4676      * the first buffer of each stream because we are a live source and so we
4677      * timestamp with the running_time. When we are dealing with TCP, we also
4678      * only timestamp the first buffer (using the DISCONT flag) because a server
4679      * typically bursts data, for which we don't want to compensate by speeding
4680      * up the media. The other timestamps will be interpollated from this one
4681      * using the RTP timestamps. */
4682     GST_OBJECT_LOCK (src);
4683     if (GST_ELEMENT_CLOCK (src)) {
4684       GstClockTime now;
4685       GstClockTime base_time;
4686
4687       now = gst_clock_get_time (GST_ELEMENT_CLOCK (src));
4688       base_time = GST_ELEMENT_CAST (src)->base_time;
4689
4690       src->base_time = now - base_time;
4691
4692       GST_DEBUG_OBJECT (src, "first buffer at time %" GST_TIME_FORMAT ", base %"
4693           GST_TIME_FORMAT, GST_TIME_ARGS (now), GST_TIME_ARGS (base_time));
4694     }
4695     GST_OBJECT_UNLOCK (src);
4696   }
4697
4698   /* If needed send a new segment, don't forget we are live and buffer are
4699    * timestamped with running time */
4700   if (src->need_segment) {
4701     GstSegment segment;
4702     src->need_segment = FALSE;
4703     gst_segment_init (&segment, GST_FORMAT_TIME);
4704     gst_rtspsrc_push_event (src, gst_event_new_segment (&segment));
4705   }
4706
4707   if (stream->discont && !is_rtcp) {
4708     /* mark first RTP buffer as discont */
4709     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
4710     stream->discont = FALSE;
4711     /* first buffer gets the timestamp, other buffers are not timestamped and
4712      * their presentation time will be interpollated from the rtp timestamps. */
4713     GST_DEBUG_OBJECT (src, "setting timestamp %" GST_TIME_FORMAT,
4714         GST_TIME_ARGS (src->base_time));
4715
4716     GST_BUFFER_TIMESTAMP (buf) = src->base_time;
4717   }
4718
4719   /* chain to the peer pad */
4720   if (GST_PAD_IS_SINK (outpad))
4721     ret = gst_pad_chain (outpad, buf);
4722   else
4723     ret = gst_pad_push (outpad, buf);
4724
4725   if (!is_rtcp) {
4726     /* combine all stream flows for the data transport */
4727     ret = gst_rtspsrc_combine_flows (src, stream, ret);
4728   }
4729   return ret;
4730
4731   /* ERRORS */
4732 unknown_stream:
4733   {
4734     GST_DEBUG_OBJECT (src, "unknown stream on channel %d, ignored", channel);
4735     gst_rtsp_message_unset (message);
4736     return GST_FLOW_OK;
4737   }
4738 invalid_length:
4739   {
4740     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4741         ("Short message received, ignoring."));
4742     gst_rtsp_message_unset (message);
4743     return GST_FLOW_OK;
4744   }
4745 }
4746
4747 static GstFlowReturn
4748 gst_rtspsrc_loop_interleaved (GstRTSPSrc * src)
4749 {
4750   GstRTSPMessage message = { 0 };
4751   GstRTSPResult res;
4752   GstFlowReturn ret = GST_FLOW_OK;
4753   GTimeVal tv_timeout;
4754
4755   while (TRUE) {
4756     /* get the next timeout interval */
4757     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4758
4759     /* see if the timeout period expired */
4760     if ((tv_timeout.tv_sec | tv_timeout.tv_usec) == 0) {
4761       GST_DEBUG_OBJECT (src, "timout, sending keep-alive");
4762       /* send keep-alive, only act on interrupt, a warning will be posted for
4763        * other errors. */
4764       if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4765         goto interrupt;
4766       /* get new timeout */
4767       gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4768     }
4769
4770     GST_DEBUG_OBJECT (src, "doing receive with timeout %ld seconds, %ld usec",
4771         tv_timeout.tv_sec, tv_timeout.tv_usec);
4772
4773     /* protect the connection with the connection lock so that we can see when
4774      * we are finished doing server communication */
4775     res =
4776         gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4777         &message, src->ptcp_timeout);
4778
4779     switch (res) {
4780       case GST_RTSP_OK:
4781         GST_DEBUG_OBJECT (src, "we received a server message");
4782         break;
4783       case GST_RTSP_EINTR:
4784         /* we got interrupted this means we need to stop */
4785         goto interrupt;
4786       case GST_RTSP_ETIMEOUT:
4787         /* no reply, send keep alive */
4788         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4789         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4790           goto interrupt;
4791         continue;
4792       case GST_RTSP_EEOF:
4793         /* go EOS when the server closed the connection */
4794         goto server_eof;
4795       default:
4796         goto receive_error;
4797     }
4798
4799     switch (message.type) {
4800       case GST_RTSP_MESSAGE_REQUEST:
4801         /* server sends us a request message, handle it */
4802         res =
4803             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4804             &message);
4805         if (res == GST_RTSP_EEOF)
4806           goto server_eof;
4807         else if (res < 0)
4808           goto handle_request_failed;
4809         break;
4810       case GST_RTSP_MESSAGE_RESPONSE:
4811         /* we ignore response messages */
4812         GST_DEBUG_OBJECT (src, "ignoring response message");
4813         if (src->debug)
4814           gst_rtsp_message_dump (&message);
4815         break;
4816       case GST_RTSP_MESSAGE_DATA:
4817         GST_DEBUG_OBJECT (src, "got data message");
4818         ret = gst_rtspsrc_handle_data (src, &message);
4819         if (ret != GST_FLOW_OK)
4820           goto handle_data_failed;
4821         break;
4822       default:
4823         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4824             message.type);
4825         break;
4826     }
4827   }
4828   g_assert_not_reached ();
4829
4830   /* ERRORS */
4831 server_eof:
4832   {
4833     GST_DEBUG_OBJECT (src, "we got an eof from the server");
4834     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4835         ("The server closed the connection."));
4836     src->conninfo.connected = FALSE;
4837     gst_rtsp_message_unset (&message);
4838     return GST_FLOW_EOS;
4839   }
4840 interrupt:
4841   {
4842     gst_rtsp_message_unset (&message);
4843     GST_DEBUG_OBJECT (src, "got interrupted");
4844     return GST_FLOW_FLUSHING;
4845   }
4846 receive_error:
4847   {
4848     gchar *str = gst_rtsp_strresult (res);
4849
4850     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4851         ("Could not receive message. (%s)", str));
4852     g_free (str);
4853
4854     gst_rtsp_message_unset (&message);
4855     return GST_FLOW_ERROR;
4856   }
4857 handle_request_failed:
4858   {
4859     gchar *str = gst_rtsp_strresult (res);
4860
4861     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
4862         ("Could not handle server message. (%s)", str));
4863     g_free (str);
4864     gst_rtsp_message_unset (&message);
4865     return GST_FLOW_ERROR;
4866   }
4867 handle_data_failed:
4868   {
4869     GST_DEBUG_OBJECT (src, "could no handle data message");
4870     return ret;
4871   }
4872 }
4873
4874 static GstFlowReturn
4875 gst_rtspsrc_loop_udp (GstRTSPSrc * src)
4876 {
4877   GstRTSPResult res;
4878   GstRTSPMessage message = { 0 };
4879   gint retry = 0;
4880
4881   while (TRUE) {
4882     GTimeVal tv_timeout;
4883
4884     /* get the next timeout interval */
4885     gst_rtsp_connection_next_timeout (src->conninfo.connection, &tv_timeout);
4886
4887     GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
4888         (gint) tv_timeout.tv_sec);
4889
4890     gst_rtsp_message_unset (&message);
4891
4892     /* we should continue reading the TCP socket because the server might
4893      * send us requests. When the session timeout expires, we need to send a
4894      * keep-alive request to keep the session open. */
4895     res = gst_rtspsrc_connection_receive (src, src->conninfo.connection,
4896         &message, &tv_timeout);
4897
4898     switch (res) {
4899       case GST_RTSP_OK:
4900         GST_DEBUG_OBJECT (src, "we received a server message");
4901         break;
4902       case GST_RTSP_EINTR:
4903         /* we got interrupted, see what we have to do */
4904         goto interrupt;
4905       case GST_RTSP_ETIMEOUT:
4906         /* send keep-alive, ignore the result, a warning will be posted. */
4907         GST_DEBUG_OBJECT (src, "timeout, sending keep-alive");
4908         if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4909           goto interrupt;
4910         continue;
4911       case GST_RTSP_EEOF:
4912         /* server closed the connection. not very fatal for UDP, reconnect and
4913          * see what happens. */
4914         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4915             ("The server closed the connection."));
4916         if (src->udp_reconnect) {
4917           if ((res =
4918                   gst_rtsp_conninfo_reconnect (src, &src->conninfo, FALSE)) < 0)
4919             goto connect_error;
4920         } else {
4921           goto server_eof;
4922         }
4923         continue;
4924       case GST_RTSP_ENET:
4925         GST_DEBUG_OBJECT (src, "An ethernet problem occured.");
4926       default:
4927         GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
4928             ("Unhandled return value %d.", res));
4929         goto receive_error;
4930     }
4931
4932     switch (message.type) {
4933       case GST_RTSP_MESSAGE_REQUEST:
4934         /* server sends us a request message, handle it */
4935         res =
4936             gst_rtspsrc_handle_request (src, src->conninfo.connection,
4937             &message);
4938         if (res == GST_RTSP_EEOF)
4939           goto server_eof;
4940         else if (res < 0)
4941           goto handle_request_failed;
4942         break;
4943       case GST_RTSP_MESSAGE_RESPONSE:
4944         /* we ignore response and data messages */
4945         GST_DEBUG_OBJECT (src, "ignoring response message");
4946         if (src->debug)
4947           gst_rtsp_message_dump (&message);
4948         if (message.type_data.response.code == GST_RTSP_STS_UNAUTHORIZED) {
4949           GST_DEBUG_OBJECT (src, "but is Unauthorized response ...");
4950           if (gst_rtspsrc_setup_auth (src, &message) && !(retry++)) {
4951             GST_DEBUG_OBJECT (src, "so retrying keep-alive");
4952             if ((res = gst_rtspsrc_send_keep_alive (src)) == GST_RTSP_EINTR)
4953               goto interrupt;
4954           }
4955         } else {
4956           retry = 0;
4957         }
4958         break;
4959       case GST_RTSP_MESSAGE_DATA:
4960         /* we ignore response and data messages */
4961         GST_DEBUG_OBJECT (src, "ignoring data message");
4962         break;
4963       default:
4964         GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
4965             message.type);
4966         break;
4967     }
4968   }
4969   g_assert_not_reached ();
4970
4971   /* we get here when the connection got interrupted */
4972 interrupt:
4973   {
4974     gst_rtsp_message_unset (&message);
4975     GST_DEBUG_OBJECT (src, "got interrupted");
4976     return GST_FLOW_FLUSHING;
4977   }
4978 connect_error:
4979   {
4980     gchar *str = gst_rtsp_strresult (res);
4981     GstFlowReturn ret;
4982
4983     src->conninfo.connected = FALSE;
4984     if (res != GST_RTSP_EINTR) {
4985       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
4986           ("Could not connect to server. (%s)", str));
4987       g_free (str);
4988       ret = GST_FLOW_ERROR;
4989     } else {
4990       ret = GST_FLOW_FLUSHING;
4991     }
4992     return ret;
4993   }
4994 receive_error:
4995   {
4996     gchar *str = gst_rtsp_strresult (res);
4997
4998     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
4999         ("Could not receive message. (%s)", str));
5000     g_free (str);
5001     return GST_FLOW_ERROR;
5002   }
5003 handle_request_failed:
5004   {
5005     gchar *str = gst_rtsp_strresult (res);
5006     GstFlowReturn ret;
5007
5008     gst_rtsp_message_unset (&message);
5009     if (res != GST_RTSP_EINTR) {
5010       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5011           ("Could not handle server message. (%s)", str));
5012       g_free (str);
5013       ret = GST_FLOW_ERROR;
5014     } else {
5015       ret = GST_FLOW_FLUSHING;
5016     }
5017     return ret;
5018   }
5019 server_eof:
5020   {
5021     GST_DEBUG_OBJECT (src, "we got an eof from the server");
5022     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
5023         ("The server closed the connection."));
5024     src->conninfo.connected = FALSE;
5025     gst_rtsp_message_unset (&message);
5026     return GST_FLOW_EOS;
5027   }
5028 }
5029
5030 static GstRTSPResult
5031 gst_rtspsrc_reconnect (GstRTSPSrc * src, gboolean async)
5032 {
5033   GstRTSPResult res = GST_RTSP_OK;
5034   gboolean restart;
5035
5036   GST_DEBUG_OBJECT (src, "doing reconnect");
5037
5038   GST_OBJECT_LOCK (src);
5039   /* only restart when the pads were not yet activated, else we were
5040    * streaming over UDP */
5041   restart = src->need_activate;
5042   GST_OBJECT_UNLOCK (src);
5043
5044   /* no need to restart, we're done */
5045   if (!restart)
5046     goto done;
5047
5048   /* we can try only TCP now */
5049   src->cur_protocols = GST_RTSP_LOWER_TRANS_TCP;
5050
5051   /* close and cleanup our state */
5052   if ((res = gst_rtspsrc_close (src, async, FALSE)) < 0)
5053     goto done;
5054
5055   /* see if we have TCP left to try. Also don't try TCP when we were configured
5056    * with an SDP. */
5057   if (!(src->protocols & GST_RTSP_LOWER_TRANS_TCP) || src->from_sdp)
5058     goto no_protocols;
5059
5060   /* We post a warning message now to inform the user
5061    * that nothing happened. It's most likely a firewall thing. */
5062   GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
5063       ("Could not receive any UDP packets for %.4f seconds, maybe your "
5064           "firewall is blocking it. Retrying using a TCP connection.",
5065           gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
5066
5067   /* open new connection using tcp */
5068   if (gst_rtspsrc_open (src, async) < 0)
5069     goto open_failed;
5070
5071   /* start playback */
5072   if (gst_rtspsrc_play (src, &src->segment, async) < 0)
5073     goto play_failed;
5074
5075 done:
5076   return res;
5077
5078   /* ERRORS */
5079 no_protocols:
5080   {
5081     src->cur_protocols = 0;
5082     /* no transport possible, post an error and stop */
5083     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5084         ("Could not receive any UDP packets for %.4f seconds, maybe your "
5085             "firewall is blocking it. No other protocols to try.",
5086             gst_guint64_to_gdouble (src->udp_timeout / 1000000.0)));
5087     return GST_RTSP_ERROR;
5088   }
5089 open_failed:
5090   {
5091     GST_DEBUG_OBJECT (src, "open failed");
5092     return GST_RTSP_OK;
5093   }
5094 play_failed:
5095   {
5096     GST_DEBUG_OBJECT (src, "play failed");
5097     return GST_RTSP_OK;
5098   }
5099 }
5100
5101 static void
5102 gst_rtspsrc_loop_start_cmd (GstRTSPSrc * src, gint cmd)
5103 {
5104   switch (cmd) {
5105     case CMD_OPEN:
5106       GST_ELEMENT_PROGRESS (src, START, "open", ("Opening Stream"));
5107       break;
5108     case CMD_PLAY:
5109       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PLAY request"));
5110       break;
5111     case CMD_PAUSE:
5112       GST_ELEMENT_PROGRESS (src, START, "request", ("Sending PAUSE request"));
5113       break;
5114     case CMD_CLOSE:
5115       GST_ELEMENT_PROGRESS (src, START, "close", ("Closing Stream"));
5116       break;
5117     default:
5118       break;
5119   }
5120 }
5121
5122 static void
5123 gst_rtspsrc_loop_complete_cmd (GstRTSPSrc * src, gint cmd)
5124 {
5125   switch (cmd) {
5126     case CMD_OPEN:
5127       GST_ELEMENT_PROGRESS (src, COMPLETE, "open", ("Opened Stream"));
5128       break;
5129     case CMD_PLAY:
5130       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PLAY request"));
5131       break;
5132     case CMD_PAUSE:
5133       GST_ELEMENT_PROGRESS (src, COMPLETE, "request", ("Sent PAUSE request"));
5134       break;
5135     case CMD_CLOSE:
5136       GST_ELEMENT_PROGRESS (src, COMPLETE, "close", ("Closed Stream"));
5137       break;
5138     default:
5139       break;
5140   }
5141 }
5142
5143 static void
5144 gst_rtspsrc_loop_cancel_cmd (GstRTSPSrc * src, gint cmd)
5145 {
5146   switch (cmd) {
5147     case CMD_OPEN:
5148       GST_ELEMENT_PROGRESS (src, CANCELED, "open", ("Open canceled"));
5149       break;
5150     case CMD_PLAY:
5151       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PLAY canceled"));
5152       break;
5153     case CMD_PAUSE:
5154       GST_ELEMENT_PROGRESS (src, CANCELED, "request", ("PAUSE canceled"));
5155       break;
5156     case CMD_CLOSE:
5157       GST_ELEMENT_PROGRESS (src, CANCELED, "close", ("Close canceled"));
5158       break;
5159     default:
5160       break;
5161   }
5162 }
5163
5164 static void
5165 gst_rtspsrc_loop_error_cmd (GstRTSPSrc * src, gint cmd)
5166 {
5167   switch (cmd) {
5168     case CMD_OPEN:
5169       GST_ELEMENT_PROGRESS (src, ERROR, "open", ("Open failed"));
5170       break;
5171     case CMD_PLAY:
5172       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PLAY failed"));
5173       break;
5174     case CMD_PAUSE:
5175       GST_ELEMENT_PROGRESS (src, ERROR, "request", ("PAUSE failed"));
5176       break;
5177     case CMD_CLOSE:
5178       GST_ELEMENT_PROGRESS (src, ERROR, "close", ("Close failed"));
5179       break;
5180     default:
5181       break;
5182   }
5183 }
5184
5185 static void
5186 gst_rtspsrc_loop_end_cmd (GstRTSPSrc * src, gint cmd, GstRTSPResult ret)
5187 {
5188   if (ret == GST_RTSP_OK)
5189     gst_rtspsrc_loop_complete_cmd (src, cmd);
5190   else if (ret == GST_RTSP_EINTR)
5191     gst_rtspsrc_loop_cancel_cmd (src, cmd);
5192   else
5193     gst_rtspsrc_loop_error_cmd (src, cmd);
5194 }
5195
5196 static gboolean
5197 gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask)
5198 {
5199   gint old;
5200   gboolean flushed = FALSE;
5201
5202   /* start new request */
5203   gst_rtspsrc_loop_start_cmd (src, cmd);
5204
5205   GST_DEBUG_OBJECT (src, "sending cmd %s", cmd_to_string (cmd));
5206
5207   GST_OBJECT_LOCK (src);
5208   old = src->pending_cmd;
5209   if (old == CMD_RECONNECT) {
5210     GST_DEBUG_OBJECT (src, "ignore, we were reconnecting");
5211     cmd = CMD_RECONNECT;
5212   }
5213   if (old != CMD_WAIT) {
5214     src->pending_cmd = CMD_WAIT;
5215     GST_OBJECT_UNLOCK (src);
5216     /* cancel previous request */
5217     GST_DEBUG_OBJECT (src, "cancel previous request %s", cmd_to_string (old));
5218     gst_rtspsrc_loop_cancel_cmd (src, old);
5219     GST_OBJECT_LOCK (src);
5220   }
5221   src->pending_cmd = cmd;
5222   /* interrupt if allowed */
5223   if (src->busy_cmd & mask) {
5224     GST_DEBUG_OBJECT (src, "connection flush busy %s",
5225         cmd_to_string (src->busy_cmd));
5226     gst_rtspsrc_connection_flush (src, TRUE);
5227     flushed = TRUE;
5228   } else {
5229     GST_DEBUG_OBJECT (src, "not interrupting busy cmd %s",
5230         cmd_to_string (src->busy_cmd));
5231   }
5232   if (src->task)
5233     gst_task_start (src->task);
5234   GST_OBJECT_UNLOCK (src);
5235
5236   return flushed;
5237 }
5238
5239 static gboolean
5240 gst_rtspsrc_loop (GstRTSPSrc * src)
5241 {
5242   GstFlowReturn ret;
5243
5244   if (!src->conninfo.connection || !src->conninfo.connected)
5245     goto no_connection;
5246
5247   if (src->interleaved)
5248     ret = gst_rtspsrc_loop_interleaved (src);
5249   else
5250     ret = gst_rtspsrc_loop_udp (src);
5251
5252   if (ret != GST_FLOW_OK)
5253     goto pause;
5254
5255   return TRUE;
5256
5257   /* ERRORS */
5258 no_connection:
5259   {
5260     GST_WARNING_OBJECT (src, "we are not connected");
5261     ret = GST_FLOW_FLUSHING;
5262     goto pause;
5263   }
5264 pause:
5265   {
5266     const gchar *reason = gst_flow_get_name (ret);
5267
5268     GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
5269     src->running = FALSE;
5270     if (ret == GST_FLOW_EOS) {
5271       /* perform EOS logic */
5272       if (src->segment.flags & GST_SEEK_FLAG_SEGMENT) {
5273         gst_element_post_message (GST_ELEMENT_CAST (src),
5274             gst_message_new_segment_done (GST_OBJECT_CAST (src),
5275                 src->segment.format, src->segment.position));
5276         gst_rtspsrc_push_event (src,
5277             gst_event_new_segment_done (src->segment.format,
5278                 src->segment.position));
5279       } else {
5280         gst_rtspsrc_push_event (src, gst_event_new_eos ());
5281       }
5282     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
5283       /* for fatal errors we post an error message, post the error before the
5284        * EOS so the app knows about the error first. */
5285       GST_ELEMENT_ERROR (src, STREAM, FAILED,
5286           ("Internal data flow error."),
5287           ("streaming task paused, reason %s (%d)", reason, ret));
5288       gst_rtspsrc_push_event (src, gst_event_new_eos ());
5289     }
5290     gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_LOOP);
5291     return FALSE;
5292   }
5293 }
5294
5295 #ifndef GST_DISABLE_GST_DEBUG
5296 static const gchar *
5297 gst_rtsp_auth_method_to_string (GstRTSPAuthMethod method)
5298 {
5299   gint index = 0;
5300
5301   while (method != 0) {
5302     index++;
5303     method >>= 1;
5304   }
5305   switch (index) {
5306     case 0:
5307       return "None";
5308     case 1:
5309       return "Basic";
5310     case 2:
5311       return "Digest";
5312   }
5313
5314   return "Unknown";
5315 }
5316 #endif
5317
5318 static const gchar *
5319 gst_rtspsrc_skip_lws (const gchar * s)
5320 {
5321   while (g_ascii_isspace (*s))
5322     s++;
5323   return s;
5324 }
5325
5326 static const gchar *
5327 gst_rtspsrc_unskip_lws (const gchar * s, const gchar * start)
5328 {
5329   while (s > start && g_ascii_isspace (*(s - 1)))
5330     s--;
5331   return s;
5332 }
5333
5334 static const gchar *
5335 gst_rtspsrc_skip_commas (const gchar * s)
5336 {
5337   /* The grammar allows for multiple commas */
5338   while (g_ascii_isspace (*s) || *s == ',')
5339     s++;
5340   return s;
5341 }
5342
5343 static const gchar *
5344 gst_rtspsrc_skip_item (const gchar * s)
5345 {
5346   gboolean quoted = FALSE;
5347   const gchar *start = s;
5348
5349   /* A list item ends at the last non-whitespace character
5350    * before a comma which is not inside a quoted-string. Or at
5351    * the end of the string.
5352    */
5353   while (*s) {
5354     if (*s == '"')
5355       quoted = !quoted;
5356     else if (quoted) {
5357       if (*s == '\\' && *(s + 1))
5358         s++;
5359     } else {
5360       if (*s == ',')
5361         break;
5362     }
5363     s++;
5364   }
5365
5366   return gst_rtspsrc_unskip_lws (s, start);
5367 }
5368
5369 static void
5370 gst_rtsp_decode_quoted_string (gchar * quoted_string)
5371 {
5372   gchar *src, *dst;
5373
5374   src = quoted_string + 1;
5375   dst = quoted_string;
5376   while (*src && *src != '"') {
5377     if (*src == '\\' && *(src + 1))
5378       src++;
5379     *dst++ = *src++;
5380   }
5381   *dst = '\0';
5382 }
5383
5384 /* Extract the authentication tokens that the server provided for each method
5385  * into an array of structures and give those to the connection object.
5386  */
5387 static void
5388 gst_rtspsrc_parse_digest_challenge (GstRTSPConnection * conn,
5389     const gchar * header, gboolean * stale)
5390 {
5391   GSList *list = NULL, *iter;
5392   const gchar *end;
5393   gchar *item, *eq, *name_end, *value;
5394
5395   g_return_if_fail (stale != NULL);
5396
5397   gst_rtsp_connection_clear_auth_params (conn);
5398   *stale = FALSE;
5399
5400   /* Parse a header whose content is described by RFC2616 as
5401    * "#something", where "something" does not itself contain commas,
5402    * except as part of quoted-strings, into a list of allocated strings.
5403    */
5404   header = gst_rtspsrc_skip_commas (header);
5405   while (*header) {
5406     end = gst_rtspsrc_skip_item (header);
5407     list = g_slist_prepend (list, g_strndup (header, end - header));
5408     header = gst_rtspsrc_skip_commas (end);
5409   }
5410   if (!list)
5411     return;
5412
5413   list = g_slist_reverse (list);
5414   for (iter = list; iter; iter = iter->next) {
5415     item = iter->data;
5416
5417     eq = strchr (item, '=');
5418     if (eq) {
5419       name_end = (gchar *) gst_rtspsrc_unskip_lws (eq, item);
5420       if (name_end == item) {
5421         /* That's no good... */
5422         g_free (item);
5423         continue;
5424       }
5425
5426       *name_end = '\0';
5427
5428       value = (gchar *) gst_rtspsrc_skip_lws (eq + 1);
5429       if (*value == '"')
5430         gst_rtsp_decode_quoted_string (value);
5431     } else
5432       value = NULL;
5433
5434     if (value && strcmp (item, "stale") == 0 && strcmp (value, "TRUE") == 0)
5435       *stale = TRUE;
5436     gst_rtsp_connection_set_auth_param (conn, item, value);
5437     g_free (item);
5438   }
5439
5440   g_slist_free (list);
5441 }
5442
5443 /* Parse a WWW-Authenticate Response header and determine the
5444  * available authentication methods
5445  *
5446  * This code should also cope with the fact that each WWW-Authenticate
5447  * header can contain multiple challenge methods + tokens
5448  *
5449  * At the moment, for Basic auth, we just do a minimal check and don't
5450  * even parse out the realm */
5451 static void
5452 gst_rtspsrc_parse_auth_hdr (gchar * hdr, GstRTSPAuthMethod * methods,
5453     GstRTSPConnection * conn, gboolean * stale)
5454 {
5455   gchar *start;
5456
5457   g_return_if_fail (hdr != NULL);
5458   g_return_if_fail (methods != NULL);
5459   g_return_if_fail (stale != NULL);
5460
5461   /* Skip whitespace at the start of the string */
5462   for (start = hdr; start[0] != '\0' && g_ascii_isspace (start[0]); start++);
5463
5464   if (g_ascii_strncasecmp (start, "basic", 5) == 0)
5465     *methods |= GST_RTSP_AUTH_BASIC;
5466   else if (g_ascii_strncasecmp (start, "digest ", 7) == 0) {
5467     *methods |= GST_RTSP_AUTH_DIGEST;
5468     gst_rtspsrc_parse_digest_challenge (conn, &start[7], stale);
5469   }
5470 }
5471
5472 /**
5473  * gst_rtspsrc_setup_auth:
5474  * @src: the rtsp source
5475  *
5476  * Configure a username and password and auth method on the
5477  * connection object based on a response we received from the
5478  * peer.
5479  *
5480  * Currently, this requires that a username and password were supplied
5481  * in the uri. In the future, they may be requested on demand by sending
5482  * a message up the bus.
5483  *
5484  * Returns: TRUE if authentication information could be set up correctly.
5485  */
5486 static gboolean
5487 gst_rtspsrc_setup_auth (GstRTSPSrc * src, GstRTSPMessage * response)
5488 {
5489   gchar *user = NULL;
5490   gchar *pass = NULL;
5491   GstRTSPAuthMethod avail_methods = GST_RTSP_AUTH_NONE;
5492   GstRTSPAuthMethod method;
5493   GstRTSPResult auth_result;
5494   GstRTSPUrl *url;
5495   GstRTSPConnection *conn;
5496   gchar *hdr;
5497   gboolean stale = FALSE;
5498
5499   conn = src->conninfo.connection;
5500
5501   /* Identify the available auth methods and see if any are supported */
5502   if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_WWW_AUTHENTICATE,
5503           &hdr, 0) == GST_RTSP_OK) {
5504     gst_rtspsrc_parse_auth_hdr (hdr, &avail_methods, conn, &stale);
5505   }
5506
5507   if (avail_methods == GST_RTSP_AUTH_NONE)
5508     goto no_auth_available;
5509
5510   /* For digest auth, if the response indicates that the session
5511    * data are stale, we just update them in the connection object and
5512    * return TRUE to retry the request */
5513   if (stale)
5514     src->tried_url_auth = FALSE;
5515
5516   url = gst_rtsp_connection_get_url (conn);
5517
5518   /* Do we have username and password available? */
5519   if (url != NULL && !src->tried_url_auth && url->user != NULL
5520       && url->passwd != NULL) {
5521     user = url->user;
5522     pass = url->passwd;
5523     src->tried_url_auth = TRUE;
5524     GST_DEBUG_OBJECT (src,
5525         "Attempting authentication using credentials from the URL");
5526   } else {
5527     user = src->user_id;
5528     pass = src->user_pw;
5529     GST_DEBUG_OBJECT (src,
5530         "Attempting authentication using credentials from the properties");
5531   }
5532
5533   /* FIXME: If the url didn't contain username and password or we tried them
5534    * already, request a username and passwd from the application via some kind
5535    * of credentials request message */
5536
5537   /* If we don't have a username and passwd at this point, bail out. */
5538   if (user == NULL || pass == NULL)
5539     goto no_user_pass;
5540
5541   /* Try to configure for each available authentication method, strongest to
5542    * weakest */
5543   for (method = GST_RTSP_AUTH_MAX; method != GST_RTSP_AUTH_NONE; method >>= 1) {
5544     /* Check if this method is available on the server */
5545     if ((method & avail_methods) == 0)
5546       continue;
5547
5548     /* Pass the credentials to the connection to try on the next request */
5549     auth_result = gst_rtsp_connection_set_auth (conn, method, user, pass);
5550     /* INVAL indicates an invalid username/passwd were supplied, so we'll just
5551      * ignore it and end up retrying later */
5552     if (auth_result == GST_RTSP_OK || auth_result == GST_RTSP_EINVAL) {
5553       GST_DEBUG_OBJECT (src, "Attempting %s authentication",
5554           gst_rtsp_auth_method_to_string (method));
5555       break;
5556     }
5557   }
5558
5559   if (method == GST_RTSP_AUTH_NONE)
5560     goto no_auth_available;
5561
5562   return TRUE;
5563
5564 no_auth_available:
5565   {
5566     /* Output an error indicating that we couldn't connect because there were
5567      * no supported authentication protocols */
5568     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5569         ("No supported authentication protocol was found"));
5570     return FALSE;
5571   }
5572 no_user_pass:
5573   {
5574     /* We don't fire an error message, we just return FALSE and let the
5575      * normal NOT_AUTHORIZED error be propagated */
5576     return FALSE;
5577   }
5578 }
5579
5580 static GstRTSPResult
5581 gst_rtspsrc_try_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5582     GstRTSPMessage * request, GstRTSPMessage * response,
5583     GstRTSPStatusCode * code)
5584 {
5585   GstRTSPResult res;
5586   GstRTSPStatusCode thecode;
5587   gchar *content_base = NULL;
5588   gint try = 0;
5589
5590 again:
5591   if (!src->short_header)
5592     gst_rtsp_ext_list_before_send (src->extensions, request);
5593
5594   GST_DEBUG_OBJECT (src, "sending message");
5595
5596   if (src->debug)
5597     gst_rtsp_message_dump (request);
5598
5599   res = gst_rtspsrc_connection_send (src, conn, request, src->ptcp_timeout);
5600   if (res < 0)
5601     goto send_error;
5602
5603   gst_rtsp_connection_reset_timeout (conn);
5604
5605 next:
5606   res = gst_rtspsrc_connection_receive (src, conn, response, src->ptcp_timeout);
5607   if (res < 0)
5608     goto receive_error;
5609
5610   if (src->debug)
5611     gst_rtsp_message_dump (response);
5612
5613   switch (response->type) {
5614     case GST_RTSP_MESSAGE_REQUEST:
5615       res = gst_rtspsrc_handle_request (src, conn, response);
5616       if (res == GST_RTSP_EEOF)
5617         goto server_eof;
5618       else if (res < 0)
5619         goto handle_request_failed;
5620       goto next;
5621     case GST_RTSP_MESSAGE_RESPONSE:
5622       /* ok, a response is good */
5623       GST_DEBUG_OBJECT (src, "received response message");
5624       break;
5625     case GST_RTSP_MESSAGE_DATA:
5626       /* get next response */
5627       GST_DEBUG_OBJECT (src, "handle data response message");
5628       gst_rtspsrc_handle_data (src, response);
5629       goto next;
5630     default:
5631       GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
5632           response->type);
5633       goto next;
5634   }
5635
5636   thecode = response->type_data.response.code;
5637
5638   GST_DEBUG_OBJECT (src, "got response message %d", thecode);
5639
5640   /* if the caller wanted the result code, we store it. */
5641   if (code)
5642     *code = thecode;
5643
5644   /* If the request didn't succeed, bail out before doing any more */
5645   if (thecode != GST_RTSP_STS_OK)
5646     return GST_RTSP_OK;
5647
5648   /* store new content base if any */
5649   gst_rtsp_message_get_header (response, GST_RTSP_HDR_CONTENT_BASE,
5650       &content_base, 0);
5651   if (content_base) {
5652     g_free (src->content_base);
5653     src->content_base = g_strdup (content_base);
5654   }
5655   gst_rtsp_ext_list_after_send (src->extensions, request, response);
5656
5657   return GST_RTSP_OK;
5658
5659   /* ERRORS */
5660 send_error:
5661   {
5662     gchar *str = gst_rtsp_strresult (res);
5663
5664     if (res != GST_RTSP_EINTR) {
5665       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
5666           ("Could not send message. (%s)", str));
5667     } else {
5668       GST_WARNING_OBJECT (src, "send interrupted");
5669     }
5670     g_free (str);
5671     return res;
5672   }
5673 receive_error:
5674   {
5675     switch (res) {
5676       case GST_RTSP_EEOF:
5677         GST_WARNING_OBJECT (src, "server closed connection");
5678         if ((try == 0) && !src->interleaved && src->udp_reconnect) {
5679           try++;
5680           /* if reconnect succeeds, try again */
5681           if ((res =
5682                   gst_rtsp_conninfo_reconnect (src, &src->conninfo,
5683                       FALSE)) == 0)
5684             goto again;
5685         }
5686         /* only try once after reconnect, then fallthrough and error out */
5687       default:
5688       {
5689         gchar *str = gst_rtsp_strresult (res);
5690
5691         if (res != GST_RTSP_EINTR) {
5692           GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5693               ("Could not receive message. (%s)", str));
5694         } else {
5695           GST_WARNING_OBJECT (src, "receive interrupted");
5696         }
5697         g_free (str);
5698         break;
5699       }
5700     }
5701     return res;
5702   }
5703 handle_request_failed:
5704   {
5705     /* ERROR was posted */
5706     gst_rtsp_message_unset (response);
5707     return res;
5708   }
5709 server_eof:
5710   {
5711     GST_DEBUG_OBJECT (src, "we got an eof from the server");
5712     GST_ELEMENT_WARNING (src, RESOURCE, READ, (NULL),
5713         ("The server closed the connection."));
5714     gst_rtsp_message_unset (response);
5715     return res;
5716   }
5717 }
5718
5719 /**
5720  * gst_rtspsrc_send:
5721  * @src: the rtsp source
5722  * @conn: the connection to send on
5723  * @request: must point to a valid request
5724  * @response: must point to an empty #GstRTSPMessage
5725  * @code: an optional code result
5726  *
5727  * send @request and retrieve the response in @response. optionally @code can be
5728  * non-NULL in which case it will contain the status code of the response.
5729  *
5730  * If This function returns #GST_RTSP_OK, @response will contain a valid response
5731  * message that should be cleaned with gst_rtsp_message_unset() after usage.
5732  *
5733  * If @code is NULL, this function will return #GST_RTSP_ERROR (with an invalid
5734  * @response message) if the response code was not 200 (OK).
5735  *
5736  * If the attempt results in an authentication failure, then this will attempt
5737  * to retrieve authentication credentials via gst_rtspsrc_setup_auth and retry
5738  * the request.
5739  *
5740  * Returns: #GST_RTSP_OK if the processing was successful.
5741  */
5742 static GstRTSPResult
5743 gst_rtspsrc_send (GstRTSPSrc * src, GstRTSPConnection * conn,
5744     GstRTSPMessage * request, GstRTSPMessage * response,
5745     GstRTSPStatusCode * code)
5746 {
5747   GstRTSPStatusCode int_code = GST_RTSP_STS_OK;
5748   GstRTSPResult res = GST_RTSP_ERROR;
5749   gint count;
5750   gboolean retry;
5751   GstRTSPMethod method = GST_RTSP_INVALID;
5752
5753   count = 0;
5754   do {
5755     retry = FALSE;
5756
5757     /* make sure we don't loop forever */
5758     if (count++ > 8)
5759       break;
5760
5761     /* save method so we can disable it when the server complains */
5762     method = request->type_data.request.method;
5763
5764     if ((res =
5765             gst_rtspsrc_try_send (src, conn, request, response, &int_code)) < 0)
5766       goto error;
5767
5768     switch (int_code) {
5769       case GST_RTSP_STS_UNAUTHORIZED:
5770         if (gst_rtspsrc_setup_auth (src, response)) {
5771           /* Try the request/response again after configuring the auth info
5772            * and loop again */
5773           retry = TRUE;
5774         }
5775         break;
5776       default:
5777         break;
5778     }
5779   } while (retry == TRUE);
5780
5781   /* If the user requested the code, let them handle errors, otherwise
5782    * post an error below */
5783   if (code != NULL)
5784     *code = int_code;
5785   else if (int_code != GST_RTSP_STS_OK)
5786     goto error_response;
5787
5788   return res;
5789
5790   /* ERRORS */
5791 error:
5792   {
5793     GST_DEBUG_OBJECT (src, "got error %d", res);
5794     return res;
5795   }
5796 error_response:
5797   {
5798     res = GST_RTSP_ERROR;
5799
5800     switch (response->type_data.response.code) {
5801       case GST_RTSP_STS_NOT_FOUND:
5802         GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), ("%s",
5803                 response->type_data.response.reason));
5804         break;
5805       case GST_RTSP_STS_UNAUTHORIZED:
5806         GST_ELEMENT_ERROR (src, RESOURCE, NOT_AUTHORIZED, (NULL), ("%s",
5807                 response->type_data.response.reason));
5808         break;
5809       case GST_RTSP_STS_MOVED_PERMANENTLY:
5810       case GST_RTSP_STS_MOVE_TEMPORARILY:
5811       {
5812         gchar *new_location;
5813         GstRTSPLowerTrans transports;
5814
5815         GST_DEBUG_OBJECT (src, "got redirection");
5816         /* if we don't have a Location Header, we must error */
5817         if (gst_rtsp_message_get_header (response, GST_RTSP_HDR_LOCATION,
5818                 &new_location, 0) < 0)
5819           break;
5820
5821         /* When we receive a redirect result, we go back to the INIT state after
5822          * parsing the new URI. The caller should do the needed steps to issue
5823          * a new setup when it detects this state change. */
5824         GST_DEBUG_OBJECT (src, "redirection to %s", new_location);
5825
5826         /* save current transports */
5827         if (src->conninfo.url)
5828           transports = src->conninfo.url->transports;
5829         else
5830           transports = GST_RTSP_LOWER_TRANS_UNKNOWN;
5831
5832         gst_rtspsrc_uri_set_uri (GST_URI_HANDLER (src), new_location, NULL);
5833
5834         /* set old transports */
5835         if (src->conninfo.url && transports != GST_RTSP_LOWER_TRANS_UNKNOWN)
5836           src->conninfo.url->transports = transports;
5837
5838         src->need_redirect = TRUE;
5839         src->state = GST_RTSP_STATE_INIT;
5840         res = GST_RTSP_OK;
5841         break;
5842       }
5843       case GST_RTSP_STS_NOT_ACCEPTABLE:
5844       case GST_RTSP_STS_NOT_IMPLEMENTED:
5845       case GST_RTSP_STS_METHOD_NOT_ALLOWED:
5846         GST_WARNING_OBJECT (src, "got NOT IMPLEMENTED, disable method %s",
5847             gst_rtsp_method_as_text (method));
5848         src->methods &= ~method;
5849         res = GST_RTSP_OK;
5850         break;
5851       default:
5852         GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
5853             ("Got error response: %d (%s).", response->type_data.response.code,
5854                 response->type_data.response.reason));
5855         break;
5856     }
5857     /* if we return ERROR we should unset the response ourselves */
5858     if (res == GST_RTSP_ERROR)
5859       gst_rtsp_message_unset (response);
5860
5861     return res;
5862   }
5863 }
5864
5865 static GstRTSPResult
5866 gst_rtspsrc_send_cb (GstRTSPExtension * ext, GstRTSPMessage * request,
5867     GstRTSPMessage * response, GstRTSPSrc * src)
5868 {
5869   return gst_rtspsrc_send (src, src->conninfo.connection, request, response,
5870       NULL);
5871 }
5872
5873
5874 /* parse the response and collect all the supported methods. We need this
5875  * information so that we don't try to send an unsupported request to the
5876  * server.
5877  */
5878 static gboolean
5879 gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
5880 {
5881   GstRTSPHeaderField field;
5882   gchar *respoptions;
5883   gint indx = 0;
5884
5885   /* reset supported methods */
5886   src->methods = 0;
5887
5888   /* Try Allow Header first */
5889   field = GST_RTSP_HDR_ALLOW;
5890   while (TRUE) {
5891     respoptions = NULL;
5892     gst_rtsp_message_get_header (response, field, &respoptions, indx);
5893     if (indx == 0 && !respoptions) {
5894       /* if no Allow header was found then try the Public header... */
5895       field = GST_RTSP_HDR_PUBLIC;
5896       gst_rtsp_message_get_header (response, field, &respoptions, indx);
5897     }
5898     if (!respoptions)
5899       break;
5900
5901     src->methods |= gst_rtsp_options_from_text (respoptions);
5902
5903     indx++;
5904   }
5905
5906   if (src->methods == 0) {
5907     /* neither Allow nor Public are required, assume the server supports
5908      * at least DESCRIBE, SETUP, we always assume it supports PLAY as
5909      * well. */
5910     GST_DEBUG_OBJECT (src, "could not get OPTIONS");
5911     src->methods = GST_RTSP_DESCRIBE | GST_RTSP_SETUP;
5912   }
5913   /* always assume PLAY, FIXME, extensions should be able to override
5914    * this */
5915   src->methods |= GST_RTSP_PLAY;
5916   /* also assume it will support Range */
5917   src->seekable = TRUE;
5918
5919   /* we need describe and setup */
5920   if (!(src->methods & GST_RTSP_DESCRIBE))
5921     goto no_describe;
5922   if (!(src->methods & GST_RTSP_SETUP))
5923     goto no_setup;
5924
5925   return TRUE;
5926
5927   /* ERRORS */
5928 no_describe:
5929   {
5930     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5931         ("Server does not support DESCRIBE."));
5932     return FALSE;
5933   }
5934 no_setup:
5935   {
5936     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
5937         ("Server does not support SETUP."));
5938     return FALSE;
5939   }
5940 }
5941
5942 /* masks to be kept in sync with the hardcoded protocol order of preference
5943  * in code below */
5944 static const guint protocol_masks[] = {
5945   GST_RTSP_LOWER_TRANS_UDP,
5946   GST_RTSP_LOWER_TRANS_UDP_MCAST,
5947   GST_RTSP_LOWER_TRANS_TCP,
5948   0
5949 };
5950
5951 static GstRTSPResult
5952 gst_rtspsrc_create_transports_string (GstRTSPSrc * src,
5953     GstRTSPLowerTrans protocols, GstRTSPProfile profile, gchar ** transports)
5954 {
5955   GstRTSPResult res;
5956   GString *result;
5957   gboolean add_udp_str;
5958
5959   *transports = NULL;
5960
5961   res =
5962       gst_rtsp_ext_list_get_transports (src->extensions, protocols, transports);
5963
5964   if (res < 0)
5965     goto failed;
5966
5967   GST_DEBUG_OBJECT (src, "got transports %s", GST_STR_NULL (*transports));
5968
5969   /* extension listed transports, use those */
5970   if (*transports != NULL)
5971     return GST_RTSP_OK;
5972
5973   /* it's the default */
5974   add_udp_str = FALSE;
5975
5976   /* the default RTSP transports */
5977   result = g_string_new ("RTP");
5978
5979   switch (profile) {
5980     case GST_RTSP_PROFILE_AVP:
5981       g_string_append (result, "/AVP");
5982       break;
5983     case GST_RTSP_PROFILE_SAVP:
5984       g_string_append (result, "/SAVP");
5985       break;
5986     case GST_RTSP_PROFILE_AVPF:
5987       g_string_append (result, "/AVPF");
5988       break;
5989     case GST_RTSP_PROFILE_SAVPF:
5990       g_string_append (result, "/SAVPF");
5991       break;
5992     default:
5993       break;
5994   }
5995
5996   if (protocols & GST_RTSP_LOWER_TRANS_UDP) {
5997     GST_DEBUG_OBJECT (src, "adding UDP unicast");
5998     if (add_udp_str)
5999       g_string_append (result, "/UDP");
6000     g_string_append (result, ";unicast;client_port=%%u1-%%u2");
6001   } else if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) {
6002     GST_DEBUG_OBJECT (src, "adding UDP multicast");
6003     /* we don't have to allocate any UDP ports yet, if the selected transport
6004      * turns out to be multicast we can create them and join the multicast
6005      * group indicated in the transport reply */
6006     if (add_udp_str)
6007       g_string_append (result, "/UDP");
6008     g_string_append (result, ";multicast");
6009     if (src->next_port_num != 0) {
6010       if (src->client_port_range.max > 0 &&
6011           src->next_port_num >= src->client_port_range.max)
6012         goto no_ports;
6013
6014       g_string_append_printf (result, ";client_port=%d-%d",
6015           src->next_port_num, src->next_port_num + 1);
6016     }
6017   } else if (protocols & GST_RTSP_LOWER_TRANS_TCP) {
6018     GST_DEBUG_OBJECT (src, "adding TCP");
6019
6020     g_string_append (result, "/TCP;unicast;interleaved=%%i1-%%i2");
6021   }
6022   *transports = g_string_free (result, FALSE);
6023
6024   GST_DEBUG_OBJECT (src, "prepared transports %s", GST_STR_NULL (*transports));
6025
6026   return GST_RTSP_OK;
6027
6028   /* ERRORS */
6029 failed:
6030   {
6031     GST_ERROR ("extension gave error %d", res);
6032     return res;
6033   }
6034 no_ports:
6035   {
6036     GST_ERROR ("no more ports available");
6037     return GST_RTSP_ERROR;
6038   }
6039 }
6040
6041 static GstRTSPResult
6042 gst_rtspsrc_prepare_transports (GstRTSPStream * stream, gchar ** transports,
6043     gint orig_rtpport, gint orig_rtcpport)
6044 {
6045   GstRTSPSrc *src;
6046   gint nr_udp, nr_int;
6047   gchar *next, *p;
6048   gint rtpport = 0, rtcpport = 0;
6049   GString *str;
6050
6051   src = stream->parent;
6052
6053   /* find number of placeholders first */
6054   if (strstr (*transports, "%%i2"))
6055     nr_int = 2;
6056   else if (strstr (*transports, "%%i1"))
6057     nr_int = 1;
6058   else
6059     nr_int = 0;
6060
6061   if (strstr (*transports, "%%u2"))
6062     nr_udp = 2;
6063   else if (strstr (*transports, "%%u1"))
6064     nr_udp = 1;
6065   else
6066     nr_udp = 0;
6067
6068   if (nr_udp == 0 && nr_int == 0)
6069     goto done;
6070
6071   if (nr_udp > 0) {
6072     if (!orig_rtpport || !orig_rtcpport) {
6073       if (!gst_rtspsrc_alloc_udp_ports (stream, &rtpport, &rtcpport))
6074         goto failed;
6075     } else {
6076       rtpport = orig_rtpport;
6077       rtcpport = orig_rtcpport;
6078     }
6079   }
6080
6081   str = g_string_new ("");
6082   p = *transports;
6083   while ((next = strstr (p, "%%"))) {
6084     g_string_append_len (str, p, next - p);
6085     if (next[2] == 'u') {
6086       if (next[3] == '1')
6087         g_string_append_printf (str, "%d", rtpport);
6088       else if (next[3] == '2')
6089         g_string_append_printf (str, "%d", rtcpport);
6090     }
6091     if (next[2] == 'i') {
6092       if (next[3] == '1')
6093         g_string_append_printf (str, "%d", src->free_channel);
6094       else if (next[3] == '2')
6095         g_string_append_printf (str, "%d", src->free_channel + 1);
6096     }
6097
6098     p = next + 4;
6099   }
6100   /* append final part */
6101   g_string_append (str, p);
6102
6103   g_free (*transports);
6104   *transports = g_string_free (str, FALSE);
6105
6106 done:
6107   return GST_RTSP_OK;
6108
6109   /* ERRORS */
6110 failed:
6111   {
6112     GST_ERROR ("failed to allocate udp ports");
6113     return GST_RTSP_ERROR;
6114   }
6115 }
6116
6117 static guint8
6118 enc_key_length_from_cipher_name (const gchar * cipher)
6119 {
6120   if (g_strcmp0 (cipher, "aes-128-icm") == 0)
6121     return AES_128_KEY_LEN;
6122   else if (g_strcmp0 (cipher, "aes-256-icm") == 0)
6123     return AES_256_KEY_LEN;
6124   else {
6125     GST_ERROR ("encryption algorithm '%s' not supported", cipher);
6126     return 0;
6127   }
6128 }
6129
6130 static guint8
6131 auth_key_length_from_auth_name (const gchar * auth)
6132 {
6133   if (g_strcmp0 (auth, "hmac-sha1-32") == 0)
6134     return HMAC_32_KEY_LEN;
6135   else if (g_strcmp0 (auth, "hmac-sha1-80") == 0)
6136     return HMAC_80_KEY_LEN;
6137   else {
6138     GST_ERROR ("authentication algorithm '%s' not supported", auth);
6139     return 0;
6140   }
6141 }
6142
6143 static GstCaps *
6144 signal_get_srtcp_params (GstRTSPSrc * src, GstRTSPStream * stream)
6145 {
6146   GstCaps *caps = NULL;
6147
6148   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_REQUEST_RTCP_KEY], 0,
6149       stream->id, &caps);
6150
6151   if (caps != NULL)
6152     GST_DEBUG_OBJECT (src, "SRTP parameters received");
6153
6154   return caps;
6155 }
6156
6157 static GstCaps *
6158 default_srtcp_params (void)
6159 {
6160   guint i;
6161   GstCaps *caps;
6162   GstBuffer *buf;
6163   guint8 *key_data;
6164 #define KEY_SIZE 30
6165
6166   /* create a random key */
6167   key_data = g_malloc (KEY_SIZE);
6168   for (i = 0; i < KEY_SIZE; i += 4)
6169     GST_WRITE_UINT32_BE (key_data + i, g_random_int ());
6170
6171   buf = gst_buffer_new_wrapped (key_data, KEY_SIZE);
6172
6173   caps = gst_caps_new_simple ("application/x-srtp",
6174       "srtp-key", GST_TYPE_BUFFER, buf,
6175       "srtcp-cipher", G_TYPE_STRING, "aes-128-icm",
6176       "srtcp-auth", G_TYPE_STRING, "hmac-sha1-80", NULL);
6177
6178   gst_buffer_unref (buf);
6179
6180   return caps;
6181 }
6182
6183 static gchar *
6184 gst_rtspsrc_stream_make_keymgmt (GstRTSPSrc * src, GstRTSPStream * stream)
6185 {
6186   GBytes *bytes;
6187   gchar *result, *base64;
6188   const guint8 *data;
6189   gsize size;
6190   GstMIKEYMessage *msg;
6191   GstMIKEYPayload *payload, *pkd;
6192   guint8 byte;
6193   GstStructure *s;
6194   GstMapInfo info;
6195   GstBuffer *srtpkey;
6196   const GValue *val;
6197   const gchar *srtcpcipher, *srtcpauth;
6198
6199   stream->srtcpparams = signal_get_srtcp_params (src, stream);
6200   if (stream->srtcpparams == NULL)
6201     stream->srtcpparams = default_srtcp_params ();
6202
6203   s = gst_caps_get_structure (stream->srtcpparams, 0);
6204
6205   srtcpcipher = gst_structure_get_string (s, "srtcp-cipher");
6206   srtcpauth = gst_structure_get_string (s, "srtcp-auth");
6207   val = gst_structure_get_value (s, "srtp-key");
6208
6209   if (srtcpcipher == NULL || srtcpauth == NULL || val == NULL) {
6210     GST_ERROR_OBJECT (src, "could not find the right SRTP parameters in caps");
6211     return NULL;
6212   }
6213
6214   srtpkey = gst_value_get_buffer (val);
6215
6216   msg = gst_mikey_message_new ();
6217   /* unencrypted MIKEY message, we send this over TLS so this is allowed */
6218   gst_mikey_message_set_info (msg, GST_MIKEY_VERSION, GST_MIKEY_TYPE_PSK_INIT,
6219       FALSE, GST_MIKEY_PRF_MIKEY_1, g_random_int (), GST_MIKEY_MAP_TYPE_SRTP);
6220   /* add policy '0' for our SSRC */
6221   gst_mikey_message_add_cs_srtp (msg, 0, stream->send_ssrc, 0);
6222   /* timestamp is now */
6223   gst_mikey_message_add_t_now_ntp_utc (msg);
6224   /* add some random data */
6225   gst_mikey_message_add_rand_len (msg, 16);
6226
6227   /* the policy '0' is SRTP */
6228   payload = gst_mikey_payload_new (GST_MIKEY_PT_SP);
6229   gst_mikey_payload_sp_set (payload, 0, GST_MIKEY_SEC_PROTO_SRTP);
6230
6231   /* only AES-CM is supported */
6232   byte = 1;
6233   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_ALG, 1, &byte);
6234   /* encryption key length */
6235   byte = enc_key_length_from_cipher_name (srtcpcipher);
6236   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_ENC_KEY_LEN, 1,
6237       &byte);
6238   /* only HMAC-SHA1 */
6239   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_ALG, 1,
6240       &byte);
6241   /* authentication key length */
6242   byte = auth_key_length_from_auth_name (srtcpauth);
6243   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_AUTH_KEY_LEN, 1,
6244       &byte);
6245   /* we enable encryption on RTP and RTCP */
6246   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_ENC, 1,
6247       &byte);
6248   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTCP_ENC, 1,
6249       &byte);
6250   /* we enable authentication on RTP and RTCP */
6251   gst_mikey_payload_sp_add_param (payload, GST_MIKEY_SP_SRTP_SRTP_AUTH, 1,
6252       &byte);
6253   gst_mikey_message_add_payload (msg, payload);
6254
6255   /* make unencrypted KEMAC */
6256   payload = gst_mikey_payload_new (GST_MIKEY_PT_KEMAC);
6257   gst_mikey_payload_kemac_set (payload, GST_MIKEY_ENC_NULL, GST_MIKEY_MAC_NULL);
6258   /* add the key in KEMAC */
6259   pkd = gst_mikey_payload_new (GST_MIKEY_PT_KEY_DATA);
6260   gst_buffer_map (srtpkey, &info, GST_MAP_READ);
6261   gst_mikey_payload_key_data_set_key (pkd, GST_MIKEY_KD_TEK, info.size,
6262       info.data);
6263   gst_buffer_unmap (srtpkey, &info);
6264   gst_mikey_payload_kemac_add_sub (payload, pkd);
6265   gst_mikey_message_add_payload (msg, payload);
6266
6267   /* now serialize this to bytes */
6268   bytes = gst_mikey_message_to_bytes (msg, NULL, NULL);
6269   gst_mikey_message_unref (msg);
6270   /* and make it into base64 */
6271   data = g_bytes_get_data (bytes, &size);
6272   base64 = g_base64_encode (data, size);
6273   g_bytes_unref (bytes);
6274
6275   result = g_strdup_printf ("prot=mikey;uri=\"%s\";data=\"%s\"",
6276       stream->conninfo.location, base64);
6277   g_free (base64);
6278
6279   return result;
6280 }
6281
6282
6283 /* Perform the SETUP request for all the streams.
6284  *
6285  * We ask the server for a specific transport, which initially includes all the
6286  * ones we can support (UDP/TCP/MULTICAST). For the UDP transport we allocate
6287  * two local UDP ports that we send to the server.
6288  *
6289  * Once the server replied with a transport, we configure the other streams
6290  * with the same transport.
6291  *
6292  * This function will also configure the stream for the selected transport,
6293  * which basically means creating the pipeline.
6294  */
6295 static GstRTSPResult
6296 gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
6297 {
6298   GList *walk;
6299   GstRTSPResult res = GST_RTSP_ERROR;
6300   GstRTSPMessage request = { 0 };
6301   GstRTSPMessage response = { 0 };
6302   GstRTSPStream *stream = NULL;
6303   GstRTSPLowerTrans protocols;
6304   GstRTSPStatusCode code;
6305   gboolean unsupported_real = FALSE;
6306   gint rtpport, rtcpport;
6307   GstRTSPUrl *url;
6308   gchar *hval;
6309
6310   if (src->conninfo.connection) {
6311     url = gst_rtsp_connection_get_url (src->conninfo.connection);
6312     /* we initially allow all configured lower transports. based on the URL
6313      * transports and the replies from the server we narrow them down. */
6314     protocols = url->transports & src->cur_protocols;
6315   } else {
6316     url = NULL;
6317     protocols = src->cur_protocols;
6318   }
6319
6320   if (protocols == 0)
6321     goto no_protocols;
6322
6323   /* reset some state */
6324   src->free_channel = 0;
6325   src->interleaved = FALSE;
6326   src->need_activate = FALSE;
6327   /* keep track of next port number, 0 is random */
6328   src->next_port_num = src->client_port_range.min;
6329   rtpport = rtcpport = 0;
6330
6331   if (G_UNLIKELY (src->streams == NULL))
6332     goto no_streams;
6333
6334   for (walk = src->streams; walk; walk = g_list_next (walk)) {
6335     GstRTSPConnection *conn;
6336     gchar *transports;
6337     gint retry = 0;
6338     guint mask = 0;
6339     gboolean selected;
6340     GstCaps *caps;
6341
6342     stream = (GstRTSPStream *) walk->data;
6343
6344     caps = stream_get_caps_for_pt (stream, stream->default_pt);
6345     if (caps == NULL) {
6346       GST_DEBUG_OBJECT (src, "skipping stream %p, no caps", stream);
6347       continue;
6348     }
6349
6350     if (stream->skipped) {
6351       GST_DEBUG_OBJECT (src, "skipping stream %p", stream);
6352       continue;
6353     }
6354
6355     /* see if we need to configure this stream */
6356     if (!gst_rtsp_ext_list_configure_stream (src->extensions, caps)) {
6357       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by extension",
6358           stream);
6359       continue;
6360     }
6361
6362     g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_SELECT_STREAM], 0,
6363         stream->id, caps, &selected);
6364     if (!selected) {
6365       GST_DEBUG_OBJECT (src, "skipping stream %p, disabled by signal", stream);
6366       continue;
6367     }
6368
6369     /* merge/overwrite global caps */
6370     if (caps) {
6371       guint j, num;
6372       GstStructure *s;
6373
6374       s = gst_caps_get_structure (caps, 0);
6375
6376       num = gst_structure_n_fields (src->props);
6377       for (j = 0; j < num; j++) {
6378         const gchar *name;
6379         const GValue *val;
6380
6381         name = gst_structure_nth_field_name (src->props, j);
6382         val = gst_structure_get_value (src->props, name);
6383         gst_structure_set_value (s, name, val);
6384
6385         GST_DEBUG_OBJECT (src, "copied %s", name);
6386       }
6387     }
6388
6389     /* skip setup if we have no URL for it */
6390     if (stream->conninfo.location == NULL) {
6391       GST_DEBUG_OBJECT (src, "skipping stream %p, no setup", stream);
6392       continue;
6393     }
6394
6395     if (src->conninfo.connection == NULL) {
6396       if (!gst_rtsp_conninfo_connect (src, &stream->conninfo, async)) {
6397         GST_DEBUG_OBJECT (src, "skipping stream %p, failed to connect", stream);
6398         continue;
6399       }
6400       conn = stream->conninfo.connection;
6401     } else {
6402       conn = src->conninfo.connection;
6403     }
6404     GST_DEBUG_OBJECT (src, "doing setup of stream %p with %s", stream,
6405         stream->conninfo.location);
6406
6407     /* if we have a multicast connection, only suggest multicast from now on */
6408     if (stream->is_multicast)
6409       protocols &= GST_RTSP_LOWER_TRANS_UDP_MCAST;
6410
6411   next_protocol:
6412     /* first selectable protocol */
6413     while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6414       mask++;
6415     if (!protocol_masks[mask])
6416       goto no_protocols;
6417
6418   retry:
6419     GST_DEBUG_OBJECT (src, "protocols = 0x%x, protocol mask = 0x%x", protocols,
6420         protocol_masks[mask]);
6421     /* create a string with first transport in line */
6422     transports = NULL;
6423     res = gst_rtspsrc_create_transports_string (src,
6424         protocols & protocol_masks[mask], stream->profile, &transports);
6425     if (res < 0 || transports == NULL)
6426       goto setup_transport_failed;
6427
6428     if (strlen (transports) == 0) {
6429       g_free (transports);
6430       GST_DEBUG_OBJECT (src, "no transports found");
6431       mask++;
6432       goto next_protocol;
6433     }
6434
6435     GST_DEBUG_OBJECT (src, "replace ports in %s", GST_STR_NULL (transports));
6436
6437     /* replace placeholders with real values, this function will optionally
6438      * allocate UDP ports and other info needed to execute the setup request */
6439     res = gst_rtspsrc_prepare_transports (stream, &transports,
6440         retry > 0 ? rtpport : 0, retry > 0 ? rtcpport : 0);
6441     if (res < 0) {
6442       g_free (transports);
6443       goto setup_transport_failed;
6444     }
6445
6446     GST_DEBUG_OBJECT (src, "transport is now %s", GST_STR_NULL (transports));
6447
6448     /* create SETUP request */
6449     res =
6450         gst_rtsp_message_init_request (&request, GST_RTSP_SETUP,
6451         stream->conninfo.location);
6452     if (res < 0) {
6453       g_free (transports);
6454       goto create_request_failed;
6455     }
6456
6457     /* select transport */
6458     gst_rtsp_message_take_header (&request, GST_RTSP_HDR_TRANSPORT, transports);
6459
6460     /* set up keys */
6461     if (stream->profile == GST_RTSP_PROFILE_SAVP ||
6462         stream->profile == GST_RTSP_PROFILE_SAVPF) {
6463       hval = gst_rtspsrc_stream_make_keymgmt (src, stream);
6464       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_KEYMGMT, hval);
6465     }
6466
6467     /* if the user wants a non default RTP packet size we add the blocksize
6468      * parameter */
6469     if (src->rtp_blocksize > 0) {
6470       hval = g_strdup_printf ("%d", src->rtp_blocksize);
6471       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_BLOCKSIZE, hval);
6472     }
6473
6474     if (async)
6475       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("SETUP stream %d",
6476               stream->id));
6477
6478     /* handle the code ourselves */
6479     res = gst_rtspsrc_send (src, conn, &request, &response, &code);
6480     if (res < 0)
6481       goto send_error;
6482
6483     switch (code) {
6484       case GST_RTSP_STS_OK:
6485         break;
6486       case GST_RTSP_STS_UNSUPPORTED_TRANSPORT:
6487         gst_rtsp_message_unset (&request);
6488         gst_rtsp_message_unset (&response);
6489         /* cleanup of leftover transport */
6490         gst_rtspsrc_stream_free_udp (stream);
6491         /* MS WMServer RTSP MUST use same UDP pair in all SETUP requests;
6492          * we might be in this case */
6493         if (stream->container && rtpport && rtcpport && !retry) {
6494           GST_DEBUG_OBJECT (src, "retrying with original port pair %u-%u",
6495               rtpport, rtcpport);
6496           retry++;
6497           goto retry;
6498         }
6499         /* this transport did not go down well, but we may have others to try
6500          * that we did not send yet, try those and only give up then
6501          * but not without checking for lost cause/extension so we can
6502          * post a nicer/more useful error message later */
6503         if (!unsupported_real)
6504           unsupported_real = stream->is_real;
6505         /* select next available protocol, give up on this stream if none */
6506         mask++;
6507         while (protocol_masks[mask] && !(protocols & protocol_masks[mask]))
6508           mask++;
6509         if (!protocol_masks[mask] || unsupported_real)
6510           continue;
6511         else
6512           goto retry;
6513       default:
6514         /* cleanup of leftover transport and move to the next stream */
6515         gst_rtspsrc_stream_free_udp (stream);
6516         goto response_error;
6517     }
6518
6519     /* parse response transport */
6520     {
6521       gchar *resptrans = NULL;
6522       GstRTSPTransport transport = { 0 };
6523
6524       gst_rtsp_message_get_header (&response, GST_RTSP_HDR_TRANSPORT,
6525           &resptrans, 0);
6526       if (!resptrans) {
6527         gst_rtspsrc_stream_free_udp (stream);
6528         goto no_transport;
6529       }
6530
6531       /* parse transport, go to next stream on parse error */
6532       if (gst_rtsp_transport_parse (resptrans, &transport) != GST_RTSP_OK) {
6533         GST_WARNING_OBJECT (src, "failed to parse transport %s", resptrans);
6534         goto next;
6535       }
6536
6537       /* update allowed transports for other streams. once the transport of
6538        * one stream has been determined, we make sure that all other streams
6539        * are configured in the same way */
6540       switch (transport.lower_transport) {
6541         case GST_RTSP_LOWER_TRANS_TCP:
6542           GST_DEBUG_OBJECT (src, "stream %p as TCP interleaved", stream);
6543           protocols = GST_RTSP_LOWER_TRANS_TCP;
6544           src->interleaved = TRUE;
6545           /* update free channels */
6546           src->free_channel =
6547               MAX (transport.interleaved.min, src->free_channel);
6548           src->free_channel =
6549               MAX (transport.interleaved.max, src->free_channel);
6550           src->free_channel++;
6551           break;
6552         case GST_RTSP_LOWER_TRANS_UDP_MCAST:
6553           /* only allow multicast for other streams */
6554           GST_DEBUG_OBJECT (src, "stream %p as UDP multicast", stream);
6555           protocols = GST_RTSP_LOWER_TRANS_UDP_MCAST;
6556           /* if the server selected our ports, increment our counters so that
6557            * we select a new port later */
6558           if (src->next_port_num == transport.port.min &&
6559               src->next_port_num + 1 == transport.port.max) {
6560             src->next_port_num += 2;
6561           }
6562           break;
6563         case GST_RTSP_LOWER_TRANS_UDP:
6564           /* only allow unicast for other streams */
6565           GST_DEBUG_OBJECT (src, "stream %p as UDP unicast", stream);
6566           protocols = GST_RTSP_LOWER_TRANS_UDP;
6567           break;
6568         default:
6569           GST_DEBUG_OBJECT (src, "stream %p unknown transport %d", stream,
6570               transport.lower_transport);
6571           break;
6572       }
6573
6574       if (!src->interleaved || !retry) {
6575         /* now configure the stream with the selected transport */
6576         if (!gst_rtspsrc_stream_configure_transport (stream, &transport)) {
6577           GST_DEBUG_OBJECT (src,
6578               "could not configure stream %p transport, skipping stream",
6579               stream);
6580           goto next;
6581         } else if (stream->udpsrc[0] && stream->udpsrc[1]) {
6582           /* retain the first allocated UDP port pair */
6583           g_object_get (G_OBJECT (stream->udpsrc[0]), "port", &rtpport, NULL);
6584           g_object_get (G_OBJECT (stream->udpsrc[1]), "port", &rtcpport, NULL);
6585         }
6586       }
6587       /* we need to activate at least one streams when we detect activity */
6588       src->need_activate = TRUE;
6589
6590       /* stream is setup now */
6591       stream->setup = TRUE;
6592       {
6593         GList *skip = walk;
6594
6595         while (TRUE) {
6596           GstRTSPStream *sskip;
6597
6598           skip = g_list_next (skip);
6599           if (skip == NULL)
6600             break;
6601
6602           sskip = (GstRTSPStream *) skip->data;
6603
6604           /* skip all streams with the same control url */
6605           if (g_str_equal (stream->conninfo.location, sskip->conninfo.location)) {
6606             GST_DEBUG_OBJECT (src, "found stream %p with same control %s",
6607                 sskip, sskip->conninfo.location);
6608             sskip->skipped = TRUE;
6609           }
6610         }
6611       }
6612     next:
6613       /* clean up our transport struct */
6614       gst_rtsp_transport_init (&transport);
6615       /* clean up used RTSP messages */
6616       gst_rtsp_message_unset (&request);
6617       gst_rtsp_message_unset (&response);
6618     }
6619   }
6620
6621   /* store the transport protocol that was configured */
6622   src->cur_protocols = protocols;
6623
6624   gst_rtsp_ext_list_stream_select (src->extensions, url);
6625
6626   /* if there is nothing to activate, error out */
6627   if (!src->need_activate)
6628     goto nothing_to_activate;
6629
6630   return res;
6631
6632   /* ERRORS */
6633 no_protocols:
6634   {
6635     /* no transport possible, post an error and stop */
6636     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
6637         ("Could not connect to server, no protocols left"));
6638     return GST_RTSP_ERROR;
6639   }
6640 no_streams:
6641   {
6642     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6643         ("SDP contains no streams"));
6644     return GST_RTSP_ERROR;
6645   }
6646 create_request_failed:
6647   {
6648     gchar *str = gst_rtsp_strresult (res);
6649
6650     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
6651         ("Could not create request. (%s)", str));
6652     g_free (str);
6653     goto cleanup_error;
6654   }
6655 setup_transport_failed:
6656   {
6657     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6658         ("Could not setup transport."));
6659     res = GST_RTSP_ERROR;
6660     goto cleanup_error;
6661   }
6662 response_error:
6663   {
6664     const gchar *str = gst_rtsp_status_as_text (code);
6665
6666     GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6667         ("Error (%d): %s", code, GST_STR_NULL (str)));
6668     res = GST_RTSP_ERROR;
6669     goto cleanup_error;
6670   }
6671 send_error:
6672   {
6673     gchar *str = gst_rtsp_strresult (res);
6674
6675     if (res != GST_RTSP_EINTR) {
6676       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
6677           ("Could not send message. (%s)", str));
6678     } else {
6679       GST_WARNING_OBJECT (src, "send interrupted");
6680     }
6681     g_free (str);
6682     goto cleanup_error;
6683   }
6684 no_transport:
6685   {
6686     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
6687         ("Server did not select transport."));
6688     res = GST_RTSP_ERROR;
6689     goto cleanup_error;
6690   }
6691 nothing_to_activate:
6692   {
6693     /* none of the available error codes is really right .. */
6694     if (unsupported_real) {
6695       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6696           (_("No supported stream was found. You might need to install a "
6697                   "GStreamer RTSP extension plugin for Real media streams.")),
6698           (NULL));
6699     } else {
6700       GST_ELEMENT_ERROR (src, STREAM, CODEC_NOT_FOUND,
6701           (_("No supported stream was found. You might need to allow "
6702                   "more transport protocols or may otherwise be missing "
6703                   "the right GStreamer RTSP extension plugin.")), (NULL));
6704     }
6705     return GST_RTSP_ERROR;
6706   }
6707 cleanup_error:
6708   {
6709     gst_rtsp_message_unset (&request);
6710     gst_rtsp_message_unset (&response);
6711     return res;
6712   }
6713 }
6714
6715 static gboolean
6716 gst_rtspsrc_parse_range (GstRTSPSrc * src, const gchar * range,
6717     GstSegment * segment)
6718 {
6719   gint64 seconds;
6720   GstRTSPTimeRange *therange;
6721
6722   if (src->range)
6723     gst_rtsp_range_free (src->range);
6724
6725   if (gst_rtsp_range_parse (range, &therange) == GST_RTSP_OK) {
6726     GST_DEBUG_OBJECT (src, "parsed range %s", range);
6727     src->range = therange;
6728   } else {
6729     GST_DEBUG_OBJECT (src, "failed to parse range %s", range);
6730     src->range = NULL;
6731     gst_segment_init (segment, GST_FORMAT_TIME);
6732     return FALSE;
6733   }
6734
6735   GST_DEBUG_OBJECT (src, "range: type %d, min %f - type %d,  max %f ",
6736       therange->min.type, therange->min.seconds, therange->max.type,
6737       therange->max.seconds);
6738
6739   if (therange->min.type == GST_RTSP_TIME_NOW)
6740     seconds = 0;
6741   else if (therange->min.type == GST_RTSP_TIME_END)
6742     seconds = 0;
6743   else
6744     seconds = therange->min.seconds * GST_SECOND;
6745
6746   GST_DEBUG_OBJECT (src, "range: min %" GST_TIME_FORMAT,
6747       GST_TIME_ARGS (seconds));
6748
6749   /* we need to start playback without clipping from the position reported by
6750    * the server */
6751   segment->start = seconds;
6752   segment->position = seconds;
6753
6754   if (therange->max.type == GST_RTSP_TIME_NOW)
6755     seconds = -1;
6756   else if (therange->max.type == GST_RTSP_TIME_END)
6757     seconds = -1;
6758   else
6759     seconds = therange->max.seconds * GST_SECOND;
6760
6761   GST_DEBUG_OBJECT (src, "range: max %" GST_TIME_FORMAT,
6762       GST_TIME_ARGS (seconds));
6763
6764   /* live (WMS) server might send overflowed large max as its idea of infinity,
6765    * compensate to prevent problems later on */
6766   if (seconds != -1 && seconds < 0) {
6767     seconds = -1;
6768     GST_DEBUG_OBJECT (src, "insane range, set to NONE");
6769   }
6770
6771   /* live (WMS) might send min == max, which is not worth recording */
6772   if (segment->duration == -1 && seconds == segment->start)
6773     seconds = -1;
6774
6775   /* don't change duration with unknown value, we might have a valid value
6776    * there that we want to keep. */
6777   if (seconds != -1)
6778     segment->duration = seconds;
6779
6780   return TRUE;
6781 }
6782
6783 /* Parse clock profived by the server with following syntax:
6784  *
6785  * "GstNetTimeProvider <wrapped-clock> <server-IP:port> <clock-time>"
6786  */
6787 static gboolean
6788 gst_rtspsrc_parse_gst_clock (GstRTSPSrc * src, const gchar * gstclock)
6789 {
6790   gboolean res = FALSE;
6791
6792   if (g_str_has_prefix (gstclock, "GstNetTimeProvider ")) {
6793     gchar **fields = NULL, **parts = NULL;
6794     gchar *remote_ip, *str;
6795     gint port;
6796     GstClockTime base_time;
6797     GstClock *netclock;
6798
6799     fields = g_strsplit (gstclock, " ", 0);
6800
6801     /* wrapped clock, not very interesting for now */
6802     if (fields[1] == NULL)
6803       goto cleanup;
6804
6805     /* remote IP address and port */
6806     if ((str = fields[2]) == NULL)
6807       goto cleanup;
6808
6809     parts = g_strsplit (str, ":", 0);
6810
6811     if ((remote_ip = parts[0]) == NULL)
6812       goto cleanup;
6813
6814     if ((str = parts[1]) == NULL)
6815       goto cleanup;
6816
6817     port = atoi (str);
6818     if (port == 0)
6819       goto cleanup;
6820
6821     /* base-time */
6822     if ((str = fields[3]) == NULL)
6823       goto cleanup;
6824
6825     base_time = g_ascii_strtoull (str, NULL, 10);
6826
6827     netclock =
6828         gst_net_client_clock_new ((gchar *) "GstRTSPClock", remote_ip, port,
6829         base_time);
6830
6831     if (src->provided_clock)
6832       gst_object_unref (src->provided_clock);
6833     src->provided_clock = netclock;
6834
6835     gst_element_post_message (GST_ELEMENT_CAST (src),
6836         gst_message_new_clock_provide (GST_OBJECT_CAST (src),
6837             src->provided_clock, TRUE));
6838
6839     res = TRUE;
6840   cleanup:
6841     g_strfreev (fields);
6842     g_strfreev (parts);
6843   }
6844   return res;
6845 }
6846
6847 /* must be called with the RTSP state lock */
6848 static GstRTSPResult
6849 gst_rtspsrc_open_from_sdp (GstRTSPSrc * src, GstSDPMessage * sdp,
6850     gboolean async)
6851 {
6852   GstRTSPResult res;
6853   gint i, n_streams;
6854
6855   /* prepare global stream caps properties */
6856   if (src->props)
6857     gst_structure_remove_all_fields (src->props);
6858   else
6859     src->props = gst_structure_new_empty ("RTSPProperties");
6860
6861   if (src->debug)
6862     gst_sdp_message_dump (sdp);
6863
6864   gst_rtsp_ext_list_parse_sdp (src->extensions, sdp, src->props);
6865
6866   /* let the app inspect and change the SDP */
6867   g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_ON_SDP], 0, sdp);
6868
6869   gst_segment_init (&src->segment, GST_FORMAT_TIME);
6870
6871   /* parse range for duration reporting. */
6872   {
6873     const gchar *range;
6874
6875     for (i = 0;; i++) {
6876       range = gst_sdp_message_get_attribute_val_n (sdp, "range", i);
6877       if (range == NULL)
6878         break;
6879
6880       /* keep track of the range and configure it in the segment */
6881       if (gst_rtspsrc_parse_range (src, range, &src->segment))
6882         break;
6883     }
6884   }
6885   /* parse clock information. This is GStreamer specific, a server can tell the
6886    * client what clock it is using and wrap that in a network clock. The
6887    * advantage of that is that we can slave to it. */
6888   {
6889     const gchar *gstclock;
6890
6891     for (i = 0;; i++) {
6892       gstclock = gst_sdp_message_get_attribute_val_n (sdp, "x-gst-clock", i);
6893       if (gstclock == NULL)
6894         break;
6895
6896       /* parse the clock and expose it in the provide_clock method */
6897       if (gst_rtspsrc_parse_gst_clock (src, gstclock))
6898         break;
6899     }
6900   }
6901   /* try to find a global control attribute. Note that a '*' means that we should
6902    * do aggregate control with the current url (so we don't do anything and
6903    * leave the current connection as is) */
6904   {
6905     const gchar *control;
6906
6907     for (i = 0;; i++) {
6908       control = gst_sdp_message_get_attribute_val_n (sdp, "control", i);
6909       if (control == NULL)
6910         break;
6911
6912       /* only take fully qualified urls */
6913       if (g_str_has_prefix (control, "rtsp://"))
6914         break;
6915     }
6916     if (control) {
6917       g_free (src->conninfo.location);
6918       src->conninfo.location = g_strdup (control);
6919       /* make a connection for this, if there was a connection already, nothing
6920        * happens. */
6921       if (gst_rtsp_conninfo_connect (src, &src->conninfo, async) < 0) {
6922         GST_ERROR_OBJECT (src, "could not connect");
6923       }
6924     }
6925     /* we need to keep the control url separate from the connection url because
6926      * the rules for constructing the media control url need it */
6927     g_free (src->control);
6928     src->control = g_strdup (control);
6929   }
6930
6931   /* create streams */
6932   n_streams = gst_sdp_message_medias_len (sdp);
6933   for (i = 0; i < n_streams; i++) {
6934     gst_rtspsrc_create_stream (src, sdp, i);
6935   }
6936
6937   src->state = GST_RTSP_STATE_INIT;
6938
6939   /* setup streams */
6940   if ((res = gst_rtspsrc_setup_streams (src, async)) < 0)
6941     goto setup_failed;
6942
6943   /* reset our state */
6944   src->need_range = TRUE;
6945   src->skip = FALSE;
6946
6947   src->state = GST_RTSP_STATE_READY;
6948
6949   return res;
6950
6951   /* ERRORS */
6952 setup_failed:
6953   {
6954     GST_ERROR_OBJECT (src, "setup failed");
6955     gst_rtspsrc_cleanup (src);
6956     return res;
6957   }
6958 }
6959
6960 static GstRTSPResult
6961 gst_rtspsrc_retrieve_sdp (GstRTSPSrc * src, GstSDPMessage ** sdp,
6962     gboolean async)
6963 {
6964   GstRTSPResult res;
6965   GstRTSPMessage request = { 0 };
6966   GstRTSPMessage response = { 0 };
6967   guint8 *data;
6968   guint size;
6969   gchar *respcont = NULL;
6970
6971 restart:
6972   src->need_redirect = FALSE;
6973
6974   /* can't continue without a valid url */
6975   if (G_UNLIKELY (src->conninfo.url == NULL)) {
6976     res = GST_RTSP_EINVAL;
6977     goto no_url;
6978   }
6979   src->tried_url_auth = FALSE;
6980
6981   if ((res = gst_rtsp_conninfo_connect (src, &src->conninfo, async)) < 0)
6982     goto connect_failed;
6983
6984   /* create OPTIONS */
6985   GST_DEBUG_OBJECT (src, "create options...");
6986   res =
6987       gst_rtsp_message_init_request (&request, GST_RTSP_OPTIONS,
6988       src->conninfo.url_str);
6989   if (res < 0)
6990     goto create_request_failed;
6991
6992   /* send OPTIONS */
6993   GST_DEBUG_OBJECT (src, "send options...");
6994
6995   if (async)
6996     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving server options"));
6997
6998   if ((res =
6999           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
7000               NULL)) < 0)
7001     goto send_error;
7002
7003   /* parse OPTIONS */
7004   if (!gst_rtspsrc_parse_methods (src, &response))
7005     goto methods_error;
7006
7007   /* create DESCRIBE */
7008   GST_DEBUG_OBJECT (src, "create describe...");
7009   res =
7010       gst_rtsp_message_init_request (&request, GST_RTSP_DESCRIBE,
7011       src->conninfo.url_str);
7012   if (res < 0)
7013     goto create_request_failed;
7014
7015   /* we only accept SDP for now */
7016   gst_rtsp_message_add_header (&request, GST_RTSP_HDR_ACCEPT,
7017       "application/sdp");
7018
7019   /* send DESCRIBE */
7020   GST_DEBUG_OBJECT (src, "send describe...");
7021
7022   if (async)
7023     GST_ELEMENT_PROGRESS (src, CONTINUE, "open", ("Retrieving media info"));
7024
7025   if ((res =
7026           gst_rtspsrc_send (src, src->conninfo.connection, &request, &response,
7027               NULL)) < 0)
7028     goto send_error;
7029
7030   /* we only perform redirect for the describe, currently */
7031   if (src->need_redirect) {
7032     /* close connection, we don't have to send a TEARDOWN yet, ignore the
7033      * result. */
7034     gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7035
7036     gst_rtsp_message_unset (&request);
7037     gst_rtsp_message_unset (&response);
7038
7039     /* and now retry */
7040     goto restart;
7041   }
7042
7043   /* it could be that the DESCRIBE method was not implemented */
7044   if (!src->methods & GST_RTSP_DESCRIBE)
7045     goto no_describe;
7046
7047   /* check if reply is SDP */
7048   gst_rtsp_message_get_header (&response, GST_RTSP_HDR_CONTENT_TYPE, &respcont,
7049       0);
7050   /* could not be set but since the request returned OK, we assume it
7051    * was SDP, else check it. */
7052   if (respcont) {
7053     if (g_ascii_strcasecmp (respcont, "application/sdp") != 0)
7054       goto wrong_content_type;
7055   }
7056
7057   /* get message body and parse as SDP */
7058   gst_rtsp_message_get_body (&response, &data, &size);
7059   if (data == NULL || size == 0)
7060     goto no_describe;
7061
7062   GST_DEBUG_OBJECT (src, "parse SDP...");
7063   gst_sdp_message_new (sdp);
7064   gst_sdp_message_parse_buffer (data, size, *sdp);
7065
7066   /* clean up any messages */
7067   gst_rtsp_message_unset (&request);
7068   gst_rtsp_message_unset (&response);
7069
7070   return res;
7071
7072   /* ERRORS */
7073 no_url:
7074   {
7075     GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL),
7076         ("No valid RTSP URL was provided"));
7077     goto cleanup_error;
7078   }
7079 connect_failed:
7080   {
7081     gchar *str = gst_rtsp_strresult (res);
7082
7083     if (res != GST_RTSP_EINTR) {
7084       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
7085           ("Failed to connect. (%s)", str));
7086     } else {
7087       GST_WARNING_OBJECT (src, "connect interrupted");
7088     }
7089     g_free (str);
7090     goto cleanup_error;
7091   }
7092 create_request_failed:
7093   {
7094     gchar *str = gst_rtsp_strresult (res);
7095
7096     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7097         ("Could not create request. (%s)", str));
7098     g_free (str);
7099     goto cleanup_error;
7100   }
7101 send_error:
7102   {
7103     /* Don't post a message - the rtsp_send method will have
7104      * taken care of it because we passed NULL for the response code */
7105     goto cleanup_error;
7106   }
7107 methods_error:
7108   {
7109     /* error was posted */
7110     res = GST_RTSP_ERROR;
7111     goto cleanup_error;
7112   }
7113 wrong_content_type:
7114   {
7115     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
7116         ("Server does not support SDP, got %s.", respcont));
7117     res = GST_RTSP_ERROR;
7118     goto cleanup_error;
7119   }
7120 no_describe:
7121   {
7122     GST_ELEMENT_ERROR (src, RESOURCE, SETTINGS, (NULL),
7123         ("Server can not provide an SDP."));
7124     res = GST_RTSP_ERROR;
7125     goto cleanup_error;
7126   }
7127 cleanup_error:
7128   {
7129     if (src->conninfo.connection) {
7130       GST_DEBUG_OBJECT (src, "free connection");
7131       gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7132     }
7133     gst_rtsp_message_unset (&request);
7134     gst_rtsp_message_unset (&response);
7135     return res;
7136   }
7137 }
7138
7139 static GstRTSPResult
7140 gst_rtspsrc_open (GstRTSPSrc * src, gboolean async)
7141 {
7142   GstRTSPResult ret;
7143
7144   src->methods =
7145       GST_RTSP_SETUP | GST_RTSP_PLAY | GST_RTSP_PAUSE | GST_RTSP_TEARDOWN;
7146
7147   if (src->sdp == NULL) {
7148     if ((ret = gst_rtspsrc_retrieve_sdp (src, &src->sdp, async)) < 0)
7149       goto no_sdp;
7150   }
7151
7152   if ((ret = gst_rtspsrc_open_from_sdp (src, src->sdp, async)) < 0)
7153     goto open_failed;
7154
7155 done:
7156   if (async)
7157     gst_rtspsrc_loop_end_cmd (src, CMD_OPEN, ret);
7158
7159   return ret;
7160
7161   /* ERRORS */
7162 no_sdp:
7163   {
7164     GST_WARNING_OBJECT (src, "can't get sdp");
7165     src->open_error = TRUE;
7166     goto done;
7167   }
7168 open_failed:
7169   {
7170     GST_WARNING_OBJECT (src, "can't setup streaming from sdp");
7171     src->open_error = TRUE;
7172     goto done;
7173   }
7174 }
7175
7176 static GstRTSPResult
7177 gst_rtspsrc_close (GstRTSPSrc * src, gboolean async, gboolean only_close)
7178 {
7179   GstRTSPMessage request = { 0 };
7180   GstRTSPMessage response = { 0 };
7181   GstRTSPResult res = GST_RTSP_OK;
7182   GList *walk;
7183   const gchar *control;
7184
7185   GST_DEBUG_OBJECT (src, "TEARDOWN...");
7186
7187   gst_rtspsrc_set_state (src, GST_STATE_READY);
7188
7189   if (src->state < GST_RTSP_STATE_READY) {
7190     GST_DEBUG_OBJECT (src, "not ready, doing cleanup");
7191     goto close;
7192   }
7193
7194   if (only_close)
7195     goto close;
7196
7197   /* construct a control url */
7198   control = get_aggregate_control (src);
7199
7200   if (!(src->methods & (GST_RTSP_PLAY | GST_RTSP_TEARDOWN)))
7201     goto not_supported;
7202
7203   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7204     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7205     const gchar *setup_url;
7206     GstRTSPConnInfo *info;
7207
7208     /* try aggregate control first but do non-aggregate control otherwise */
7209     if (control)
7210       setup_url = control;
7211     else if ((setup_url = stream->conninfo.location) == NULL)
7212       continue;
7213
7214     if (src->conninfo.connection) {
7215       info = &src->conninfo;
7216     } else if (stream->conninfo.connection) {
7217       info = &stream->conninfo;
7218     } else {
7219       continue;
7220     }
7221     if (!info->connected)
7222       goto next;
7223
7224     /* do TEARDOWN */
7225     res =
7226         gst_rtsp_message_init_request (&request, GST_RTSP_TEARDOWN, setup_url);
7227     if (res < 0)
7228       goto create_request_failed;
7229
7230     if (async)
7231       GST_ELEMENT_PROGRESS (src, CONTINUE, "close", ("Closing stream"));
7232
7233     if ((res =
7234             gst_rtspsrc_send (src, info->connection, &request, &response,
7235                 NULL)) < 0)
7236       goto send_error;
7237
7238     /* FIXME, parse result? */
7239     gst_rtsp_message_unset (&request);
7240     gst_rtsp_message_unset (&response);
7241
7242   next:
7243     /* early exit when we did aggregate control */
7244     if (control)
7245       break;
7246   }
7247
7248 close:
7249   /* close connections */
7250   GST_DEBUG_OBJECT (src, "closing connection...");
7251   gst_rtsp_conninfo_close (src, &src->conninfo, TRUE);
7252   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7253     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7254     gst_rtsp_conninfo_close (src, &stream->conninfo, TRUE);
7255   }
7256
7257   /* cleanup */
7258   gst_rtspsrc_cleanup (src);
7259
7260   src->state = GST_RTSP_STATE_INVALID;
7261
7262   if (async)
7263     gst_rtspsrc_loop_end_cmd (src, CMD_CLOSE, res);
7264
7265   return res;
7266
7267   /* ERRORS */
7268 create_request_failed:
7269   {
7270     gchar *str = gst_rtsp_strresult (res);
7271
7272     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7273         ("Could not create request. (%s)", str));
7274     g_free (str);
7275     goto close;
7276   }
7277 send_error:
7278   {
7279     gchar *str = gst_rtsp_strresult (res);
7280
7281     gst_rtsp_message_unset (&request);
7282     if (res != GST_RTSP_EINTR) {
7283       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7284           ("Could not send message. (%s)", str));
7285     } else {
7286       GST_WARNING_OBJECT (src, "TEARDOWN interrupted");
7287     }
7288     g_free (str);
7289     goto close;
7290   }
7291 not_supported:
7292   {
7293     GST_DEBUG_OBJECT (src,
7294         "TEARDOWN and PLAY not supported, can't do TEARDOWN");
7295     goto close;
7296   }
7297 }
7298
7299 /* RTP-Info is of the format:
7300  *
7301  * url=<URL>;[seq=<seqbase>;rtptime=<timebase>] [, url=...]
7302  *
7303  * rtptime corresponds to the timestamp for the NPT time given in the header
7304  * seqbase corresponds to the next sequence number we received. This number
7305  * indicates the first seqnum after the seek and should be used to discard
7306  * packets that are from before the seek.
7307  */
7308 static gboolean
7309 gst_rtspsrc_parse_rtpinfo (GstRTSPSrc * src, gchar * rtpinfo)
7310 {
7311   gchar **infos;
7312   gint i, j;
7313
7314   GST_DEBUG_OBJECT (src, "parsing RTP-Info %s", rtpinfo);
7315
7316   infos = g_strsplit (rtpinfo, ",", 0);
7317   for (i = 0; infos[i]; i++) {
7318     gchar **fields;
7319     GstRTSPStream *stream;
7320     gint32 seqbase;
7321     gint64 timebase;
7322
7323     GST_DEBUG_OBJECT (src, "parsing info %s", infos[i]);
7324
7325     /* init values, types of seqbase and timebase are bigger than needed so we
7326      * can store -1 as uninitialized values */
7327     stream = NULL;
7328     seqbase = -1;
7329     timebase = -1;
7330
7331     /* parse url, find stream for url.
7332      * parse seq and rtptime. The seq number should be configured in the rtp
7333      * depayloader or session manager to detect gaps. Same for the rtptime, it
7334      * should be used to create an initial time newsegment. */
7335     fields = g_strsplit (infos[i], ";", 0);
7336     for (j = 0; fields[j]; j++) {
7337       GST_DEBUG_OBJECT (src, "parsing field %s", fields[j]);
7338       /* remove leading whitespace */
7339       fields[j] = g_strchug (fields[j]);
7340       if (g_str_has_prefix (fields[j], "url=")) {
7341         /* get the url and the stream */
7342         stream =
7343             find_stream (src, (fields[j] + 4), (gpointer) find_stream_by_setup);
7344       } else if (g_str_has_prefix (fields[j], "seq=")) {
7345         seqbase = atoi (fields[j] + 4);
7346       } else if (g_str_has_prefix (fields[j], "rtptime=")) {
7347         timebase = g_ascii_strtoll (fields[j] + 8, NULL, 10);
7348       }
7349     }
7350     g_strfreev (fields);
7351     /* now we need to store the values for the caps of the stream */
7352     if (stream != NULL) {
7353       GST_DEBUG_OBJECT (src,
7354           "found stream %p, setting: seqbase %d, timebase %" G_GINT64_FORMAT,
7355           stream, seqbase, timebase);
7356
7357       /* we have a stream, configure detected params */
7358       stream->seqbase = seqbase;
7359       stream->timebase = timebase;
7360     }
7361   }
7362   g_strfreev (infos);
7363
7364   return TRUE;
7365 }
7366
7367 static void
7368 gst_rtspsrc_handle_rtcp_interval (GstRTSPSrc * src, gchar * rtcp)
7369 {
7370   guint64 interval;
7371   GList *walk;
7372
7373   interval = strtoul (rtcp, NULL, 10);
7374   GST_DEBUG_OBJECT (src, "rtcp interval: %" G_GUINT64_FORMAT " ms", interval);
7375
7376   if (!interval)
7377     return;
7378
7379   interval *= GST_MSECOND;
7380
7381   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7382     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7383
7384     /* already (optionally) retrieved this when configuring manager */
7385     if (stream->session) {
7386       GObject *rtpsession = stream->session;
7387
7388       GST_DEBUG_OBJECT (src, "configure rtcp interval in session %p",
7389           rtpsession);
7390       g_object_set (rtpsession, "rtcp-min-interval", interval, NULL);
7391     }
7392   }
7393
7394   /* now it happens that (Xenon) server sending this may also provide bogus
7395    * RTCP SR sync data (i.e. with quite some jitter), so never mind those
7396    * and just use RTP-Info to sync */
7397   if (src->manager) {
7398     GObjectClass *klass;
7399
7400     klass = G_OBJECT_GET_CLASS (G_OBJECT (src->manager));
7401     if (g_object_class_find_property (klass, "rtcp-sync")) {
7402       GST_DEBUG_OBJECT (src, "configuring rtp sync method");
7403       g_object_set (src->manager, "rtcp-sync", RTCP_SYNC_RTP, NULL);
7404     }
7405   }
7406 }
7407
7408 static gdouble
7409 gst_rtspsrc_get_float (const gchar * dstr)
7410 {
7411   gchar s[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7412
7413   /* canonicalise floating point string so we can handle float strings
7414    * in the form "24.930" or "24,930" irrespective of the current locale */
7415   g_strlcpy (s, dstr, sizeof (s));
7416   g_strdelimit (s, ",", '.');
7417   return g_ascii_strtod (s, NULL);
7418 }
7419
7420 static gchar *
7421 gen_range_header (GstRTSPSrc * src, GstSegment * segment)
7422 {
7423   gchar val_str[G_ASCII_DTOSTR_BUF_SIZE] = { 0, };
7424
7425   if (src->range && src->range->min.type == GST_RTSP_TIME_NOW) {
7426     g_strlcpy (val_str, "now", sizeof (val_str));
7427   } else {
7428     if (segment->position == 0) {
7429       g_strlcpy (val_str, "0", sizeof (val_str));
7430     } else {
7431       g_ascii_dtostr (val_str, sizeof (val_str),
7432           ((gdouble) segment->position) / GST_SECOND);
7433     }
7434   }
7435   return g_strdup_printf ("npt=%s-", val_str);
7436 }
7437
7438 static void
7439 clear_rtp_base (GstRTSPSrc * src, GstRTSPStream * stream)
7440 {
7441   guint i, len;
7442
7443   stream->timebase = -1;
7444   stream->seqbase = -1;
7445
7446   len = stream->ptmap->len;
7447   for (i = 0; i < len; i++) {
7448     PtMapItem *item = &g_array_index (stream->ptmap, PtMapItem, i);
7449     GstStructure *s;
7450
7451     if (item->caps == NULL)
7452       continue;
7453
7454     item->caps = gst_caps_make_writable (item->caps);
7455     s = gst_caps_get_structure (item->caps, 0);
7456     gst_structure_remove_fields (s, "clock-base", "seqnum-base", NULL);
7457   }
7458 }
7459
7460 static GstRTSPResult
7461 gst_rtspsrc_ensure_open (GstRTSPSrc * src, gboolean async)
7462 {
7463   GstRTSPResult res = GST_RTSP_OK;
7464
7465   if (src->state < GST_RTSP_STATE_READY) {
7466     res = GST_RTSP_ERROR;
7467     if (src->open_error) {
7468       GST_DEBUG_OBJECT (src, "the stream was in error");
7469       goto done;
7470     }
7471     if (async)
7472       gst_rtspsrc_loop_start_cmd (src, CMD_OPEN);
7473
7474     if ((res = gst_rtspsrc_open (src, async)) < 0) {
7475       GST_DEBUG_OBJECT (src, "failed to open stream");
7476       goto done;
7477     }
7478   }
7479
7480 done:
7481   return res;
7482 }
7483
7484 static GstRTSPResult
7485 gst_rtspsrc_play (GstRTSPSrc * src, GstSegment * segment, gboolean async)
7486 {
7487   GstRTSPMessage request = { 0 };
7488   GstRTSPMessage response = { 0 };
7489   GstRTSPResult res = GST_RTSP_OK;
7490   GList *walk;
7491   gchar *hval;
7492   gint hval_idx;
7493   const gchar *control;
7494
7495   GST_DEBUG_OBJECT (src, "PLAY...");
7496
7497   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7498     goto open_failed;
7499
7500   if (!(src->methods & GST_RTSP_PLAY))
7501     goto not_supported;
7502
7503   if (src->state == GST_RTSP_STATE_PLAYING)
7504     goto was_playing;
7505
7506   if (!src->conninfo.connection || !src->conninfo.connected)
7507     goto done;
7508
7509   /* send some dummy packets before we activate the receive in the
7510    * udp sources */
7511   gst_rtspsrc_send_dummy_packets (src);
7512
7513   /* require new SR packets */
7514   if (src->manager)
7515     g_signal_emit_by_name (src->manager, "reset-sync", NULL);
7516
7517   /* construct a control url */
7518   control = get_aggregate_control (src);
7519
7520   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7521     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7522     const gchar *setup_url;
7523     GstRTSPConnection *conn;
7524
7525     /* try aggregate control first but do non-aggregate control otherwise */
7526     if (control)
7527       setup_url = control;
7528     else if ((setup_url = stream->conninfo.location) == NULL)
7529       continue;
7530
7531     if (src->conninfo.connection) {
7532       conn = src->conninfo.connection;
7533     } else if (stream->conninfo.connection) {
7534       conn = stream->conninfo.connection;
7535     } else {
7536       continue;
7537     }
7538
7539     /* do play */
7540     res = gst_rtsp_message_init_request (&request, GST_RTSP_PLAY, setup_url);
7541     if (res < 0)
7542       goto create_request_failed;
7543
7544     if (src->need_range) {
7545       hval = gen_range_header (src, segment);
7546
7547       gst_rtsp_message_take_header (&request, GST_RTSP_HDR_RANGE, hval);
7548
7549       /* store the newsegment event so it can be sent from the streaming thread. */
7550       src->need_segment = TRUE;
7551     }
7552
7553     if (segment->rate != 1.0) {
7554       gchar hval[G_ASCII_DTOSTR_BUF_SIZE];
7555
7556       g_ascii_dtostr (hval, sizeof (hval), segment->rate);
7557       if (src->skip)
7558         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SCALE, hval);
7559       else
7560         gst_rtsp_message_add_header (&request, GST_RTSP_HDR_SPEED, hval);
7561     }
7562
7563     if (async)
7564       GST_ELEMENT_PROGRESS (src, CONTINUE, "request", ("Sending PLAY request"));
7565
7566     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7567       goto send_error;
7568
7569     /* seek may have silently failed as it is not supported */
7570     if (!(src->methods & GST_RTSP_PLAY)) {
7571       GST_DEBUG_OBJECT (src, "PLAY Range not supported; re-enable PLAY");
7572       /* obviously it is supported as we made it here */
7573       src->methods |= GST_RTSP_PLAY;
7574       src->seekable = FALSE;
7575       /* but there is nothing to parse in the response,
7576        * so convey we have no idea and not to expect anything particular */
7577       clear_rtp_base (src, stream);
7578       if (control) {
7579         GList *run;
7580
7581         /* need to do for all streams */
7582         for (run = src->streams; run; run = g_list_next (run))
7583           clear_rtp_base (src, (GstRTSPStream *) run->data);
7584       }
7585       /* NOTE the above also disables npt based eos detection */
7586       /* and below forces position to 0,
7587        * which is visible feedback we lost the plot */
7588       segment->start = segment->position = src->last_pos;
7589     }
7590
7591     gst_rtsp_message_unset (&request);
7592
7593     /* parse RTP npt field. This is the current position in the stream (Normal
7594      * Play Time) and should be put in the NEWSEGMENT position field. */
7595     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RANGE, &hval,
7596             0) == GST_RTSP_OK)
7597       gst_rtspsrc_parse_range (src, hval, segment);
7598
7599     /* assume 1.0 rate now, overwrite when the SCALE or SPEED headers are present. */
7600     segment->rate = 1.0;
7601
7602     /* parse Speed header. This is the intended playback rate of the stream
7603      * and should be put in the NEWSEGMENT rate field. */
7604     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SPEED, &hval,
7605             0) == GST_RTSP_OK) {
7606       segment->rate = gst_rtspsrc_get_float (hval);
7607     } else if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_SCALE,
7608             &hval, 0) == GST_RTSP_OK) {
7609       segment->rate = gst_rtspsrc_get_float (hval);
7610     }
7611
7612     /* parse the RTP-Info header field (if ANY) to get the base seqnum and timestamp
7613      * for the RTP packets. If this is not present, we assume all starts from 0...
7614      * This is info for the RTP session manager that we pass to it in caps. */
7615     hval_idx = 0;
7616     while (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTP_INFO,
7617             &hval, hval_idx++) == GST_RTSP_OK)
7618       gst_rtspsrc_parse_rtpinfo (src, hval);
7619
7620     /* some servers indicate RTCP parameters in PLAY response,
7621      * rather than properly in SDP */
7622     if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_RTCP_INTERVAL,
7623             &hval, 0) == GST_RTSP_OK)
7624       gst_rtspsrc_handle_rtcp_interval (src, hval);
7625
7626     gst_rtsp_message_unset (&response);
7627
7628     /* early exit when we did aggregate control */
7629     if (control)
7630       break;
7631   }
7632   /* configure the caps of the streams after we parsed all headers. Only reset
7633    * the manager object when we set a new Range header (we did a seek) */
7634   gst_rtspsrc_configure_caps (src, segment, src->need_range);
7635
7636   /* set to PLAYING after we have configured the caps, otherwise we
7637    * might end up calling request_key (with SRTP) while caps are still
7638    * being configured. */
7639   gst_rtspsrc_set_state (src, GST_STATE_PLAYING);
7640
7641   /* set again when needed */
7642   src->need_range = FALSE;
7643
7644   src->running = TRUE;
7645   src->base_time = -1;
7646   src->state = GST_RTSP_STATE_PLAYING;
7647
7648   /* mark discont */
7649   GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");
7650   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7651     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7652     stream->discont = TRUE;
7653   }
7654
7655 done:
7656   if (async)
7657     gst_rtspsrc_loop_end_cmd (src, CMD_PLAY, res);
7658
7659   return res;
7660
7661   /* ERRORS */
7662 open_failed:
7663   {
7664     GST_DEBUG_OBJECT (src, "failed to open stream");
7665     goto done;
7666   }
7667 not_supported:
7668   {
7669     GST_DEBUG_OBJECT (src, "PLAY is not supported");
7670     goto done;
7671   }
7672 was_playing:
7673   {
7674     GST_DEBUG_OBJECT (src, "we were already PLAYING");
7675     goto done;
7676   }
7677 create_request_failed:
7678   {
7679     gchar *str = gst_rtsp_strresult (res);
7680
7681     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7682         ("Could not create request. (%s)", str));
7683     g_free (str);
7684     goto done;
7685   }
7686 send_error:
7687   {
7688     gchar *str = gst_rtsp_strresult (res);
7689
7690     gst_rtsp_message_unset (&request);
7691     if (res != GST_RTSP_EINTR) {
7692       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7693           ("Could not send message. (%s)", str));
7694     } else {
7695       GST_WARNING_OBJECT (src, "PLAY interrupted");
7696     }
7697     g_free (str);
7698     goto done;
7699   }
7700 }
7701
7702 static GstRTSPResult
7703 gst_rtspsrc_pause (GstRTSPSrc * src, gboolean async)
7704 {
7705   GstRTSPResult res = GST_RTSP_OK;
7706   GstRTSPMessage request = { 0 };
7707   GstRTSPMessage response = { 0 };
7708   GList *walk;
7709   const gchar *control;
7710
7711   GST_DEBUG_OBJECT (src, "PAUSE...");
7712
7713   if ((res = gst_rtspsrc_ensure_open (src, async)) < 0)
7714     goto open_failed;
7715
7716   if (!(src->methods & GST_RTSP_PAUSE))
7717     goto not_supported;
7718
7719   if (src->state == GST_RTSP_STATE_READY)
7720     goto was_paused;
7721
7722   if (!src->conninfo.connection || !src->conninfo.connected)
7723     goto no_connection;
7724
7725   /* construct a control url */
7726   control = get_aggregate_control (src);
7727
7728   /* loop over the streams. We might exit the loop early when we could do an
7729    * aggregate control */
7730   for (walk = src->streams; walk; walk = g_list_next (walk)) {
7731     GstRTSPStream *stream = (GstRTSPStream *) walk->data;
7732     GstRTSPConnection *conn;
7733     const gchar *setup_url;
7734
7735     /* try aggregate control first but do non-aggregate control otherwise */
7736     if (control)
7737       setup_url = control;
7738     else if ((setup_url = stream->conninfo.location) == NULL)
7739       continue;
7740
7741     if (src->conninfo.connection) {
7742       conn = src->conninfo.connection;
7743     } else if (stream->conninfo.connection) {
7744       conn = stream->conninfo.connection;
7745     } else {
7746       continue;
7747     }
7748
7749     if (async)
7750       GST_ELEMENT_PROGRESS (src, CONTINUE, "request",
7751           ("Sending PAUSE request"));
7752
7753     if ((res =
7754             gst_rtsp_message_init_request (&request, GST_RTSP_PAUSE,
7755                 setup_url)) < 0)
7756       goto create_request_failed;
7757
7758     if ((res = gst_rtspsrc_send (src, conn, &request, &response, NULL)) < 0)
7759       goto send_error;
7760
7761     gst_rtsp_message_unset (&request);
7762     gst_rtsp_message_unset (&response);
7763
7764     /* exit early when we did agregate control */
7765     if (control)
7766       break;
7767   }
7768
7769   /* change element states now */
7770   gst_rtspsrc_set_state (src, GST_STATE_PAUSED);
7771
7772 no_connection:
7773   src->state = GST_RTSP_STATE_READY;
7774
7775 done:
7776   if (async)
7777     gst_rtspsrc_loop_end_cmd (src, CMD_PAUSE, res);
7778
7779   return res;
7780
7781   /* ERRORS */
7782 open_failed:
7783   {
7784     GST_DEBUG_OBJECT (src, "failed to open stream");
7785     goto done;
7786   }
7787 not_supported:
7788   {
7789     GST_DEBUG_OBJECT (src, "PAUSE is not supported");
7790     goto done;
7791   }
7792 was_paused:
7793   {
7794     GST_DEBUG_OBJECT (src, "we were already PAUSED");
7795     goto done;
7796   }
7797 create_request_failed:
7798   {
7799     gchar *str = gst_rtsp_strresult (res);
7800
7801     GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL),
7802         ("Could not create request. (%s)", str));
7803     g_free (str);
7804     goto done;
7805   }
7806 send_error:
7807   {
7808     gchar *str = gst_rtsp_strresult (res);
7809
7810     gst_rtsp_message_unset (&request);
7811     if (res != GST_RTSP_EINTR) {
7812       GST_ELEMENT_ERROR (src, RESOURCE, WRITE, (NULL),
7813           ("Could not send message. (%s)", str));
7814     } else {
7815       GST_WARNING_OBJECT (src, "PAUSE interrupted");
7816     }
7817     g_free (str);
7818     goto done;
7819   }
7820 }
7821
7822 static void
7823 gst_rtspsrc_handle_message (GstBin * bin, GstMessage * message)
7824 {
7825   GstRTSPSrc *rtspsrc;
7826
7827   rtspsrc = GST_RTSPSRC (bin);
7828
7829   switch (GST_MESSAGE_TYPE (message)) {
7830     case GST_MESSAGE_EOS:
7831       gst_message_unref (message);
7832       break;
7833     case GST_MESSAGE_ELEMENT:
7834     {
7835       const GstStructure *s = gst_message_get_structure (message);
7836
7837       if (gst_structure_has_name (s, "GstUDPSrcTimeout")) {
7838         gboolean ignore_timeout;
7839
7840         GST_DEBUG_OBJECT (bin, "timeout on UDP port");
7841
7842         GST_OBJECT_LOCK (rtspsrc);
7843         ignore_timeout = rtspsrc->ignore_timeout;
7844         rtspsrc->ignore_timeout = TRUE;
7845         GST_OBJECT_UNLOCK (rtspsrc);
7846
7847         /* we only act on the first udp timeout message, others are irrelevant
7848          * and can be ignored. */
7849         if (!ignore_timeout)
7850           gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_RECONNECT, CMD_LOOP);
7851         /* eat and free */
7852         gst_message_unref (message);
7853         return;
7854       }
7855       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7856       break;
7857     }
7858     case GST_MESSAGE_ERROR:
7859     {
7860       GstObject *udpsrc;
7861       GstRTSPStream *stream;
7862       GstFlowReturn ret;
7863
7864       udpsrc = GST_MESSAGE_SRC (message);
7865
7866       GST_DEBUG_OBJECT (rtspsrc, "got error from %s",
7867           GST_ELEMENT_NAME (udpsrc));
7868
7869       stream = find_stream (rtspsrc, udpsrc, (gpointer) find_stream_by_udpsrc);
7870       if (!stream)
7871         goto forward;
7872
7873       /* we ignore the RTCP udpsrc */
7874       if (stream->udpsrc[1] == GST_ELEMENT_CAST (udpsrc))
7875         goto done;
7876
7877       /* if we get error messages from the udp sources, that's not a problem as
7878        * long as not all of them error out. We also don't really know what the
7879        * problem is, the message does not give enough detail... */
7880       ret = gst_rtspsrc_combine_flows (rtspsrc, stream, GST_FLOW_NOT_LINKED);
7881       GST_DEBUG_OBJECT (rtspsrc, "combined flows: %s", gst_flow_get_name (ret));
7882       if (ret != GST_FLOW_OK)
7883         goto forward;
7884
7885     done:
7886       gst_message_unref (message);
7887       break;
7888
7889     forward:
7890       /* fatal but not our message, forward */
7891       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7892       break;
7893     }
7894     default:
7895     {
7896       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
7897       break;
7898     }
7899   }
7900 }
7901
7902 /* the thread where everything happens */
7903 static void
7904 gst_rtspsrc_thread (GstRTSPSrc * src)
7905 {
7906   gint cmd;
7907
7908   GST_OBJECT_LOCK (src);
7909   cmd = src->pending_cmd;
7910   if (cmd == CMD_RECONNECT || cmd == CMD_PLAY || cmd == CMD_PAUSE
7911       || cmd == CMD_LOOP || cmd == CMD_OPEN)
7912     src->pending_cmd = CMD_LOOP;
7913   else
7914     src->pending_cmd = CMD_WAIT;
7915   GST_DEBUG_OBJECT (src, "got command %s", cmd_to_string (cmd));
7916
7917   /* we got the message command, so ensure communication is possible again */
7918   gst_rtspsrc_connection_flush (src, FALSE);
7919
7920   src->busy_cmd = cmd;
7921   GST_OBJECT_UNLOCK (src);
7922
7923   switch (cmd) {
7924     case CMD_OPEN:
7925       gst_rtspsrc_open (src, TRUE);
7926       break;
7927     case CMD_PLAY:
7928       gst_rtspsrc_play (src, &src->segment, TRUE);
7929       break;
7930     case CMD_PAUSE:
7931       gst_rtspsrc_pause (src, TRUE);
7932       break;
7933     case CMD_CLOSE:
7934       gst_rtspsrc_close (src, TRUE, FALSE);
7935       break;
7936     case CMD_LOOP:
7937       gst_rtspsrc_loop (src);
7938       break;
7939     case CMD_RECONNECT:
7940       gst_rtspsrc_reconnect (src, FALSE);
7941       break;
7942     default:
7943       break;
7944   }
7945
7946   GST_OBJECT_LOCK (src);
7947   /* and go back to sleep */
7948   if (src->pending_cmd == CMD_WAIT) {
7949     if (src->task)
7950       gst_task_pause (src->task);
7951   }
7952   /* reset waiting */
7953   src->busy_cmd = CMD_WAIT;
7954   GST_OBJECT_UNLOCK (src);
7955 }
7956
7957 static gboolean
7958 gst_rtspsrc_start (GstRTSPSrc * src)
7959 {
7960   GST_DEBUG_OBJECT (src, "starting");
7961
7962   GST_OBJECT_LOCK (src);
7963
7964   src->pending_cmd = CMD_WAIT;
7965
7966   if (src->task == NULL) {
7967     src->task = gst_task_new ((GstTaskFunction) gst_rtspsrc_thread, src, NULL);
7968     if (src->task == NULL)
7969       goto task_error;
7970
7971     gst_task_set_lock (src->task, GST_RTSP_STREAM_GET_LOCK (src));
7972   }
7973   GST_OBJECT_UNLOCK (src);
7974
7975   return TRUE;
7976
7977   /* ERRORS */
7978 task_error:
7979   {
7980     GST_OBJECT_UNLOCK (src);
7981     GST_ERROR_OBJECT (src, "failed to create task");
7982     return FALSE;
7983   }
7984 }
7985
7986 static gboolean
7987 gst_rtspsrc_stop (GstRTSPSrc * src)
7988 {
7989   GstTask *task;
7990
7991   GST_DEBUG_OBJECT (src, "stopping");
7992
7993   /* also cancels pending task */
7994   gst_rtspsrc_loop_send_cmd (src, CMD_WAIT, CMD_ALL);
7995
7996   GST_OBJECT_LOCK (src);
7997   if ((task = src->task)) {
7998     src->task = NULL;
7999     GST_OBJECT_UNLOCK (src);
8000
8001     gst_task_stop (task);
8002
8003     /* make sure it is not running */
8004     GST_RTSP_STREAM_LOCK (src);
8005     GST_RTSP_STREAM_UNLOCK (src);
8006
8007     /* now wait for the task to finish */
8008     gst_task_join (task);
8009
8010     /* and free the task */
8011     gst_object_unref (GST_OBJECT (task));
8012
8013     GST_OBJECT_LOCK (src);
8014   }
8015   GST_OBJECT_UNLOCK (src);
8016
8017   /* ensure synchronously all is closed and clean */
8018   gst_rtspsrc_close (src, FALSE, TRUE);
8019
8020   return TRUE;
8021 }
8022
8023 static GstStateChangeReturn
8024 gst_rtspsrc_change_state (GstElement * element, GstStateChange transition)
8025 {
8026   GstRTSPSrc *rtspsrc;
8027   GstStateChangeReturn ret;
8028
8029   rtspsrc = GST_RTSPSRC (element);
8030
8031   switch (transition) {
8032     case GST_STATE_CHANGE_NULL_TO_READY:
8033       if (!gst_rtspsrc_start (rtspsrc))
8034         goto start_failed;
8035       break;
8036     case GST_STATE_CHANGE_READY_TO_PAUSED:
8037       /* init some state */
8038       rtspsrc->cur_protocols = rtspsrc->protocols;
8039       /* first attempt, don't ignore timeouts */
8040       rtspsrc->ignore_timeout = FALSE;
8041       rtspsrc->open_error = FALSE;
8042       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_OPEN, 0);
8043       break;
8044     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
8045       set_manager_buffer_mode (rtspsrc);
8046       /* fall-through */
8047     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
8048       /* unblock the tcp tasks and make the loop waiting */
8049       if (gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_WAIT, CMD_LOOP)) {
8050         /* make sure it is waiting before we send PAUSE or PLAY below */
8051         GST_RTSP_STREAM_LOCK (rtspsrc);
8052         GST_RTSP_STREAM_UNLOCK (rtspsrc);
8053       }
8054       break;
8055     case GST_STATE_CHANGE_PAUSED_TO_READY:
8056       break;
8057     default:
8058       break;
8059   }
8060
8061   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
8062   if (ret == GST_STATE_CHANGE_FAILURE)
8063     goto done;
8064
8065   switch (transition) {
8066     case GST_STATE_CHANGE_NULL_TO_READY:
8067       ret = GST_STATE_CHANGE_SUCCESS;
8068       break;
8069     case GST_STATE_CHANGE_READY_TO_PAUSED:
8070       ret = GST_STATE_CHANGE_NO_PREROLL;
8071       break;
8072     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
8073       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PLAY, 0);
8074       ret = GST_STATE_CHANGE_SUCCESS;
8075       break;
8076     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
8077       /* send pause request and keep the idle task around */
8078       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PAUSE, CMD_LOOP);
8079       ret = GST_STATE_CHANGE_NO_PREROLL;
8080       break;
8081     case GST_STATE_CHANGE_PAUSED_TO_READY:
8082       gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_CLOSE, CMD_PAUSE);
8083       ret = GST_STATE_CHANGE_SUCCESS;
8084       break;
8085     case GST_STATE_CHANGE_READY_TO_NULL:
8086       gst_rtspsrc_stop (rtspsrc);
8087       ret = GST_STATE_CHANGE_SUCCESS;
8088       break;
8089     default:
8090       break;
8091   }
8092
8093 done:
8094   return ret;
8095
8096 start_failed:
8097   {
8098     GST_DEBUG_OBJECT (rtspsrc, "start failed");
8099     return GST_STATE_CHANGE_FAILURE;
8100   }
8101 }
8102
8103 static gboolean
8104 gst_rtspsrc_send_event (GstElement * element, GstEvent * event)
8105 {
8106   gboolean res;
8107   GstRTSPSrc *rtspsrc;
8108
8109   rtspsrc = GST_RTSPSRC (element);
8110
8111   if (GST_EVENT_IS_DOWNSTREAM (event)) {
8112     res = gst_rtspsrc_push_event (rtspsrc, event);
8113   } else {
8114     res = GST_ELEMENT_CLASS (parent_class)->send_event (element, event);
8115   }
8116
8117   return res;
8118 }
8119
8120
8121 /*** GSTURIHANDLER INTERFACE *************************************************/
8122
8123 static GstURIType
8124 gst_rtspsrc_uri_get_type (GType type)
8125 {
8126   return GST_URI_SRC;
8127 }
8128
8129 static const gchar *const *
8130 gst_rtspsrc_uri_get_protocols (GType type)
8131 {
8132   static const gchar *protocols[] =
8133       { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp",
8134     "rtsps", "rtspsu", "rtspst", "rtspsh", NULL
8135   };
8136
8137   return protocols;
8138 }
8139
8140 static gchar *
8141 gst_rtspsrc_uri_get_uri (GstURIHandler * handler)
8142 {
8143   GstRTSPSrc *src = GST_RTSPSRC (handler);
8144
8145   /* FIXME: make thread-safe */
8146   return g_strdup (src->conninfo.location);
8147 }
8148
8149 static gboolean
8150 gst_rtspsrc_uri_set_uri (GstURIHandler * handler, const gchar * uri,
8151     GError ** error)
8152 {
8153   GstRTSPSrc *src;
8154   GstRTSPResult res;
8155   GstSDPResult sres;
8156   GstRTSPUrl *newurl = NULL;
8157   GstSDPMessage *sdp = NULL;
8158
8159   src = GST_RTSPSRC (handler);
8160
8161   /* same URI, we're fine */
8162   if (src->conninfo.location && uri && !strcmp (uri, src->conninfo.location))
8163     goto was_ok;
8164
8165   if (g_str_has_prefix (uri, "rtsp-sdp://")) {
8166     sres = gst_sdp_message_new (&sdp);
8167     if (sres < 0)
8168       goto sdp_failed;
8169
8170     GST_DEBUG_OBJECT (src, "parsing SDP message");
8171     sres = gst_sdp_message_parse_uri (uri, sdp);
8172     if (sres < 0)
8173       goto invalid_sdp;
8174   } else {
8175     /* try to parse */
8176     GST_DEBUG_OBJECT (src, "parsing URI");
8177     if ((res = gst_rtsp_url_parse (uri, &newurl)) < 0)
8178       goto parse_error;
8179   }
8180
8181   /* if worked, free previous and store new url object along with the original
8182    * location. */
8183   GST_DEBUG_OBJECT (src, "configuring URI");
8184   g_free (src->conninfo.location);
8185   src->conninfo.location = g_strdup (uri);
8186   gst_rtsp_url_free (src->conninfo.url);
8187   src->conninfo.url = newurl;
8188   g_free (src->conninfo.url_str);
8189   if (newurl)
8190     src->conninfo.url_str = gst_rtsp_url_get_request_uri (src->conninfo.url);
8191   else
8192     src->conninfo.url_str = NULL;
8193
8194   if (src->sdp)
8195     gst_sdp_message_free (src->sdp);
8196   src->sdp = sdp;
8197   src->from_sdp = sdp != NULL;
8198
8199   GST_DEBUG_OBJECT (src, "set uri: %s", GST_STR_NULL (uri));
8200   GST_DEBUG_OBJECT (src, "request uri is: %s",
8201       GST_STR_NULL (src->conninfo.url_str));
8202
8203   return TRUE;
8204
8205   /* Special cases */
8206 was_ok:
8207   {
8208     GST_DEBUG_OBJECT (src, "URI was ok: '%s'", GST_STR_NULL (uri));
8209     return TRUE;
8210   }
8211 sdp_failed:
8212   {
8213     GST_ERROR_OBJECT (src, "Could not create new SDP (%d)", sres);
8214     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8215         "Could not create SDP");
8216     return FALSE;
8217   }
8218 invalid_sdp:
8219   {
8220     GST_ERROR_OBJECT (src, "Not a valid SDP (%d) '%s'", sres,
8221         GST_STR_NULL (uri));
8222     gst_sdp_message_free (sdp);
8223     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8224         "Invalid SDP");
8225     return FALSE;
8226   }
8227 parse_error:
8228   {
8229     GST_ERROR_OBJECT (src, "Not a valid RTSP url '%s' (%d)",
8230         GST_STR_NULL (uri), res);
8231     g_set_error_literal (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
8232         "Invalid RTSP URI");
8233     return FALSE;
8234   }
8235 }
8236
8237 static void
8238 gst_rtspsrc_uri_handler_init (gpointer g_iface, gpointer iface_data)
8239 {
8240   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
8241
8242   iface->get_type = gst_rtspsrc_uri_get_type;
8243   iface->get_protocols = gst_rtspsrc_uri_get_protocols;
8244   iface->get_uri = gst_rtspsrc_uri_get_uri;
8245   iface->set_uri = gst_rtspsrc_uri_set_uri;
8246 }