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