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