e89203def95d946bfe4a21d6318a5cd423c5444c
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-client.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  * Copyright (C) 2015 Centricular Ltd
4  *     Author: Sebastian Dröge <sebastian@centricular.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21 /**
22  * SECTION:rtsp-client
23  * @short_description: A client connection state
24  * @see_also: #GstRTSPServer, #GstRTSPThreadPool
25  *
26  * The client object handles the connection with a client for as long as a TCP
27  * connection is open.
28  *
29  * A #GstRTSPClient is created by #GstRTSPServer when a new connection is
30  * accepted and it inherits the #GstRTSPMountPoints, #GstRTSPSessionPool,
31  * #GstRTSPAuth and #GstRTSPThreadPool from the server.
32  *
33  * The client connection should be configured with the #GstRTSPConnection using
34  * gst_rtsp_client_set_connection() before it can be attached to a #GMainContext
35  * using gst_rtsp_client_attach(). From then on the client will handle requests
36  * on the connection.
37  *
38  * Use gst_rtsp_client_session_filter() to iterate or modify all the
39  * #GstRTSPSession objects managed by the client object.
40  *
41  * Last reviewed on 2013-07-11 (1.0.0)
42  */
43
44 #include <stdio.h>
45 #include <string.h>
46
47 #include <gst/sdp/gstmikey.h>
48 #include <gst/rtsp/gstrtsp-enumtypes.h>
49
50 #include "rtsp-client.h"
51 #include "rtsp-sdp.h"
52 #include "rtsp-params.h"
53
54 typedef enum
55 {
56   TUNNEL_STATE_UNKNOWN,
57   TUNNEL_STATE_GET,
58   TUNNEL_STATE_POST
59 } GstRTSPTunnelState;
60
61 /* locking order:
62  * send_lock, lock, tunnels_lock
63  */
64
65 struct _GstRTSPClientPrivate
66 {
67   GMutex lock;                  /* protects everything else */
68   GMutex send_lock;
69   GMutex watch_lock;
70   GstRTSPConnection *connection;
71   GstRTSPWatch *watch;
72   GMainContext *watch_context;
73   gchar *server_ip;
74   gboolean is_ipv6;
75
76   /* protected by send_lock */
77   GstRTSPClientSendFunc send_func;
78   gpointer send_data;
79   GDestroyNotify send_notify;
80   guint close_seq;
81   GArray *data_seqs;
82
83   GstRTSPSessionPool *session_pool;
84   gulong session_removed_id;
85   GstRTSPMountPoints *mount_points;
86   GstRTSPAuth *auth;
87   GstRTSPThreadPool *thread_pool;
88
89   /* used to cache the media in the last requested DESCRIBE so that
90    * we can pick it up in the next SETUP immediately */
91   gchar *path;
92   GstRTSPMedia *media;
93
94   GHashTable *transports;
95   GList *sessions;
96   guint sessions_cookie;
97
98   gboolean drop_backlog;
99
100   guint rtsp_ctrl_timeout_id;
101   guint rtsp_ctrl_timeout_cnt;
102
103   /* The version currently being used */
104   GstRTSPVersion version;
105
106   GHashTable *pipelined_requests;       /* pipelined_request_id -> session_id */
107   GstRTSPTunnelState tstate;
108 };
109
110 typedef struct
111 {
112   guint8 channel;
113   guint seq;
114 } DataSeq;
115
116 static GMutex tunnels_lock;
117 static GHashTable *tunnels;     /* protected by tunnels_lock */
118
119 #define WATCH_BACKLOG_SIZE              100
120
121 #define DEFAULT_SESSION_POOL            NULL
122 #define DEFAULT_MOUNT_POINTS            NULL
123 #define DEFAULT_DROP_BACKLOG            TRUE
124
125 #define RTSP_CTRL_CB_INTERVAL           1
126 #define RTSP_CTRL_TIMEOUT_VALUE         60
127
128 enum
129 {
130   PROP_0,
131   PROP_SESSION_POOL,
132   PROP_MOUNT_POINTS,
133   PROP_DROP_BACKLOG,
134   PROP_LAST
135 };
136
137 enum
138 {
139   SIGNAL_CLOSED,
140   SIGNAL_NEW_SESSION,
141   SIGNAL_PRE_OPTIONS_REQUEST,
142   SIGNAL_OPTIONS_REQUEST,
143   SIGNAL_PRE_DESCRIBE_REQUEST,
144   SIGNAL_DESCRIBE_REQUEST,
145   SIGNAL_PRE_SETUP_REQUEST,
146   SIGNAL_SETUP_REQUEST,
147   SIGNAL_PRE_PLAY_REQUEST,
148   SIGNAL_PLAY_REQUEST,
149   SIGNAL_PRE_PAUSE_REQUEST,
150   SIGNAL_PAUSE_REQUEST,
151   SIGNAL_PRE_TEARDOWN_REQUEST,
152   SIGNAL_TEARDOWN_REQUEST,
153   SIGNAL_PRE_SET_PARAMETER_REQUEST,
154   SIGNAL_SET_PARAMETER_REQUEST,
155   SIGNAL_PRE_GET_PARAMETER_REQUEST,
156   SIGNAL_GET_PARAMETER_REQUEST,
157   SIGNAL_HANDLE_RESPONSE,
158   SIGNAL_SEND_MESSAGE,
159   SIGNAL_PRE_ANNOUNCE_REQUEST,
160   SIGNAL_ANNOUNCE_REQUEST,
161   SIGNAL_PRE_RECORD_REQUEST,
162   SIGNAL_RECORD_REQUEST,
163   SIGNAL_CHECK_REQUIREMENTS,
164   SIGNAL_LAST
165 };
166
167 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
168 #define GST_CAT_DEFAULT rtsp_client_debug
169
170 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
171
172 static void gst_rtsp_client_get_property (GObject * object, guint propid,
173     GValue * value, GParamSpec * pspec);
174 static void gst_rtsp_client_set_property (GObject * object, guint propid,
175     const GValue * value, GParamSpec * pspec);
176 static void gst_rtsp_client_finalize (GObject * obj);
177
178 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
179 static gboolean handle_sdp (GstRTSPClient * client, GstRTSPContext * ctx,
180     GstRTSPMedia * media, GstSDPMessage * sdp);
181 static gboolean default_configure_client_media (GstRTSPClient * client,
182     GstRTSPMedia * media, GstRTSPStream * stream, GstRTSPContext * ctx);
183 static gboolean default_configure_client_transport (GstRTSPClient * client,
184     GstRTSPContext * ctx, GstRTSPTransport * ct);
185 static GstRTSPResult default_params_set (GstRTSPClient * client,
186     GstRTSPContext * ctx);
187 static GstRTSPResult default_params_get (GstRTSPClient * client,
188     GstRTSPContext * ctx);
189 static gchar *default_make_path_from_uri (GstRTSPClient * client,
190     const GstRTSPUrl * uri);
191 static void client_session_removed (GstRTSPSessionPool * pool,
192     GstRTSPSession * session, GstRTSPClient * client);
193 static GstRTSPStatusCode default_pre_signal_handler (GstRTSPClient * client,
194     GstRTSPContext * ctx);
195 static gboolean pre_signal_accumulator (GSignalInvocationHint * ihint,
196     GValue * return_accu, const GValue * handler_return, gpointer data);
197
198 G_DEFINE_TYPE_WITH_PRIVATE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
199
200 static void
201 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
202 {
203   GObjectClass *gobject_class;
204
205   gobject_class = G_OBJECT_CLASS (klass);
206
207   gobject_class->get_property = gst_rtsp_client_get_property;
208   gobject_class->set_property = gst_rtsp_client_set_property;
209   gobject_class->finalize = gst_rtsp_client_finalize;
210
211   klass->create_sdp = create_sdp;
212   klass->handle_sdp = handle_sdp;
213   klass->configure_client_media = default_configure_client_media;
214   klass->configure_client_transport = default_configure_client_transport;
215   klass->params_set = default_params_set;
216   klass->params_get = default_params_get;
217   klass->make_path_from_uri = default_make_path_from_uri;
218
219   klass->pre_options_request = default_pre_signal_handler;
220   klass->pre_describe_request = default_pre_signal_handler;
221   klass->pre_setup_request = default_pre_signal_handler;
222   klass->pre_play_request = default_pre_signal_handler;
223   klass->pre_pause_request = default_pre_signal_handler;
224   klass->pre_teardown_request = default_pre_signal_handler;
225   klass->pre_set_parameter_request = default_pre_signal_handler;
226   klass->pre_get_parameter_request = default_pre_signal_handler;
227   klass->pre_announce_request = default_pre_signal_handler;
228   klass->pre_record_request = default_pre_signal_handler;
229
230   g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
231       g_param_spec_object ("session-pool", "Session Pool",
232           "The session pool to use for client session",
233           GST_TYPE_RTSP_SESSION_POOL,
234           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
235
236   g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
237       g_param_spec_object ("mount-points", "Mount Points",
238           "The mount points to use for client session",
239           GST_TYPE_RTSP_MOUNT_POINTS,
240           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
241
242   g_object_class_install_property (gobject_class, PROP_DROP_BACKLOG,
243       g_param_spec_boolean ("drop-backlog", "Drop Backlog",
244           "Drop data when the backlog queue is full",
245           DEFAULT_DROP_BACKLOG, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
246
247   gst_rtsp_client_signals[SIGNAL_CLOSED] =
248       g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
249       G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
250       g_cclosure_marshal_generic, G_TYPE_NONE, 0, G_TYPE_NONE);
251
252   gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
253       g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
254       G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
255       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
256
257   /**
258    * GstRTSPClient::pre-options-request:
259    * @client: a #GstRTSPClient
260    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
261    *
262    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
263    *          otherwise an appropriate return code
264    *
265    * Since: 1.12
266    */
267   gst_rtsp_client_signals[SIGNAL_PRE_OPTIONS_REQUEST] =
268       g_signal_new ("pre-options-request", G_TYPE_FROM_CLASS (klass),
269       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
270           pre_options_request), pre_signal_accumulator, NULL,
271       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
272       GST_TYPE_RTSP_CONTEXT);
273
274   /**
275    * GstRTSPClient::options-request:
276    * @client: a #GstRTSPClient
277    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
278    */
279   gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
280       g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
281       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
282       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
283       GST_TYPE_RTSP_CONTEXT);
284
285   /**
286    * GstRTSPClient::pre-describe-request:
287    * @client: a #GstRTSPClient
288    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
289    *
290    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
291    *          otherwise an appropriate return code
292    *
293    * Since: 1.12
294    */
295   gst_rtsp_client_signals[SIGNAL_PRE_DESCRIBE_REQUEST] =
296       g_signal_new ("pre-describe-request", G_TYPE_FROM_CLASS (klass),
297       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
298           pre_describe_request), pre_signal_accumulator, NULL,
299       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
300       GST_TYPE_RTSP_CONTEXT);
301
302   /**
303    * GstRTSPClient::describe-request:
304    * @client: a #GstRTSPClient
305    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
306    */
307   gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
308       g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
309       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
310       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
311       GST_TYPE_RTSP_CONTEXT);
312
313   /**
314    * GstRTSPClient::pre-setup-request:
315    * @client: a #GstRTSPClient
316    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
317    *
318    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
319    *          otherwise an appropriate return code
320    *
321    * Since: 1.12
322    */
323   gst_rtsp_client_signals[SIGNAL_PRE_SETUP_REQUEST] =
324       g_signal_new ("pre-setup-request", G_TYPE_FROM_CLASS (klass),
325       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
326           pre_setup_request), pre_signal_accumulator, NULL,
327       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
328       GST_TYPE_RTSP_CONTEXT);
329
330   /**
331    * GstRTSPClient::setup-request:
332    * @client: a #GstRTSPClient
333    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
334    */
335   gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
336       g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
337       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
338       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
339       GST_TYPE_RTSP_CONTEXT);
340
341   /**
342    * GstRTSPClient::pre-play-request:
343    * @client: a #GstRTSPClient
344    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
345    *
346    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
347    *          otherwise an appropriate return code
348    *
349    * Since: 1.12
350    */
351   gst_rtsp_client_signals[SIGNAL_PRE_PLAY_REQUEST] =
352       g_signal_new ("pre-play-request", G_TYPE_FROM_CLASS (klass),
353       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
354           pre_play_request), pre_signal_accumulator, NULL,
355       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
356       GST_TYPE_RTSP_CONTEXT);
357
358   /**
359    * GstRTSPClient::play-request:
360    * @client: a #GstRTSPClient
361    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
362    */
363   gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
364       g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
365       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
366       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
367       GST_TYPE_RTSP_CONTEXT);
368
369   /**
370    * GstRTSPClient::pre-pause-request:
371    * @client: a #GstRTSPClient
372    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
373    *
374    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
375    *          otherwise an appropriate return code
376    *
377    * Since: 1.12
378    */
379   gst_rtsp_client_signals[SIGNAL_PRE_PAUSE_REQUEST] =
380       g_signal_new ("pre-pause-request", G_TYPE_FROM_CLASS (klass),
381       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
382           pre_pause_request), pre_signal_accumulator, NULL,
383       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
384       GST_TYPE_RTSP_CONTEXT);
385
386   /**
387    * GstRTSPClient::pause-request:
388    * @client: a #GstRTSPClient
389    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
390    */
391   gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
392       g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
393       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
394       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
395       GST_TYPE_RTSP_CONTEXT);
396
397   /**
398    * GstRTSPClient::pre-teardown-request:
399    * @client: a #GstRTSPClient
400    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
401    *
402    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
403    *          otherwise an appropriate return code
404    *
405    * Since: 1.12
406    */
407   gst_rtsp_client_signals[SIGNAL_PRE_TEARDOWN_REQUEST] =
408       g_signal_new ("pre-teardown-request", G_TYPE_FROM_CLASS (klass),
409       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
410           pre_teardown_request), pre_signal_accumulator, NULL,
411       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
412       GST_TYPE_RTSP_CONTEXT);
413
414   /**
415    * GstRTSPClient::teardown-request:
416    * @client: a #GstRTSPClient
417    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
418    */
419   gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
420       g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
421       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
422       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
423       GST_TYPE_RTSP_CONTEXT);
424
425   /**
426    * GstRTSPClient::pre-set-parameter-request:
427    * @client: a #GstRTSPClient
428    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
429    *
430    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
431    *          otherwise an appropriate return code
432    *
433    * Since: 1.12
434    */
435   gst_rtsp_client_signals[SIGNAL_PRE_SET_PARAMETER_REQUEST] =
436       g_signal_new ("pre-set-parameter-request", G_TYPE_FROM_CLASS (klass),
437       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
438           pre_set_parameter_request), pre_signal_accumulator, NULL,
439       g_cclosure_marshal_generic,
440       GST_TYPE_RTSP_STATUS_CODE, 1, GST_TYPE_RTSP_CONTEXT);
441
442   /**
443    * GstRTSPClient::set-parameter-request:
444    * @client: a #GstRTSPClient
445    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
446    */
447   gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
448       g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
449       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
450           set_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
451       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
452
453   /**
454    * GstRTSPClient::pre-get-parameter-request:
455    * @client: a #GstRTSPClient
456    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
457    *
458    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
459    *          otherwise an appropriate return code
460    *
461    * Since: 1.12
462    */
463   gst_rtsp_client_signals[SIGNAL_PRE_GET_PARAMETER_REQUEST] =
464       g_signal_new ("pre-get-parameter-request", G_TYPE_FROM_CLASS (klass),
465       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
466           pre_get_parameter_request), pre_signal_accumulator, NULL,
467       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
468       GST_TYPE_RTSP_CONTEXT);
469
470   /**
471    * GstRTSPClient::get-parameter-request:
472    * @client: a #GstRTSPClient
473    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
474    */
475   gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
476       g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
477       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
478           get_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
479       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
480
481   /**
482    * GstRTSPClient::handle-response:
483    * @client: a #GstRTSPClient
484    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
485    */
486   gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
487       g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
488       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
489           handle_response), NULL, NULL, g_cclosure_marshal_generic,
490       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
491
492   /**
493    * GstRTSPClient::send-message:
494    * @client: The RTSP client
495    * @session: (type GstRtspServer.RTSPSession): The session
496    * @message: (type GstRtsp.RTSPMessage): The message
497    */
498   gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE] =
499       g_signal_new ("send-message", G_TYPE_FROM_CLASS (klass),
500       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
501           send_message), NULL, NULL, g_cclosure_marshal_generic,
502       G_TYPE_NONE, 2, GST_TYPE_RTSP_CONTEXT, G_TYPE_POINTER);
503
504   /**
505    * GstRTSPClient::pre-announce-request:
506    * @client: a #GstRTSPClient
507    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
508    *
509    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
510    *          otherwise an appropriate return code
511    *
512    * Since: 1.12
513    */
514   gst_rtsp_client_signals[SIGNAL_PRE_ANNOUNCE_REQUEST] =
515       g_signal_new ("pre-announce-request", G_TYPE_FROM_CLASS (klass),
516       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
517           pre_announce_request), pre_signal_accumulator, NULL,
518       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
519       GST_TYPE_RTSP_CONTEXT);
520
521   /**
522    * GstRTSPClient::announce-request:
523    * @client: a #GstRTSPClient
524    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
525    */
526   gst_rtsp_client_signals[SIGNAL_ANNOUNCE_REQUEST] =
527       g_signal_new ("announce-request", G_TYPE_FROM_CLASS (klass),
528       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, announce_request),
529       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
530       GST_TYPE_RTSP_CONTEXT);
531
532   /**
533    * GstRTSPClient::pre-record-request:
534    * @client: a #GstRTSPClient
535    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
536    *
537    * Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
538    *          otherwise an appropriate return code
539    *
540    * Since: 1.12
541    */
542   gst_rtsp_client_signals[SIGNAL_PRE_RECORD_REQUEST] =
543       g_signal_new ("pre-record-request", G_TYPE_FROM_CLASS (klass),
544       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
545           pre_record_request), pre_signal_accumulator, NULL,
546       g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
547       GST_TYPE_RTSP_CONTEXT);
548
549   /**
550    * GstRTSPClient::record-request:
551    * @client: a #GstRTSPClient
552    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
553    */
554   gst_rtsp_client_signals[SIGNAL_RECORD_REQUEST] =
555       g_signal_new ("record-request", G_TYPE_FROM_CLASS (klass),
556       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, record_request),
557       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
558       GST_TYPE_RTSP_CONTEXT);
559
560   /**
561    * GstRTSPClient::check-requirements:
562    * @client: a #GstRTSPClient
563    * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
564    * @arr: a NULL-terminated array of strings
565    *
566    * Returns: a newly allocated string with comma-separated list of
567    *          unsupported options. An empty string must be returned if
568    *          all options are supported.
569    *
570    * Since: 1.6
571    */
572   gst_rtsp_client_signals[SIGNAL_CHECK_REQUIREMENTS] =
573       g_signal_new ("check-requirements", G_TYPE_FROM_CLASS (klass),
574       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
575           check_requirements), NULL, NULL, g_cclosure_marshal_generic,
576       G_TYPE_STRING, 2, GST_TYPE_RTSP_CONTEXT, G_TYPE_STRV);
577
578   tunnels =
579       g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
580   g_mutex_init (&tunnels_lock);
581
582   GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
583 }
584
585 static void
586 gst_rtsp_client_init (GstRTSPClient * client)
587 {
588   GstRTSPClientPrivate *priv = gst_rtsp_client_get_instance_private (client);
589
590   client->priv = priv;
591
592   g_mutex_init (&priv->lock);
593   g_mutex_init (&priv->send_lock);
594   g_mutex_init (&priv->watch_lock);
595   priv->close_seq = 0;
596   priv->data_seqs = g_array_new (FALSE, FALSE, sizeof (DataSeq));
597   priv->drop_backlog = DEFAULT_DROP_BACKLOG;
598   priv->transports =
599       g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL,
600       g_object_unref);
601   priv->pipelined_requests = g_hash_table_new_full (g_str_hash,
602       g_str_equal, g_free, g_free);
603   priv->tstate = TUNNEL_STATE_UNKNOWN;
604 }
605
606 static GstRTSPFilterResult
607 filter_session_media (GstRTSPSession * sess, GstRTSPSessionMedia * sessmedia,
608     gpointer user_data)
609 {
610   gboolean *closed = user_data;
611   GstRTSPMedia *media;
612   guint i, n_streams;
613   gboolean is_all_udp = TRUE;
614
615   media = gst_rtsp_session_media_get_media (sessmedia);
616   n_streams = gst_rtsp_media_n_streams (media);
617
618   for (i = 0; i < n_streams; i++) {
619     GstRTSPStreamTransport *transport =
620         gst_rtsp_session_media_get_transport (sessmedia, i);
621     const GstRTSPTransport *rtsp_transport;
622
623     if (!transport)
624       continue;
625
626     rtsp_transport = gst_rtsp_stream_transport_get_transport (transport);
627     if (rtsp_transport
628         && rtsp_transport->lower_transport != GST_RTSP_LOWER_TRANS_UDP
629         && rtsp_transport->lower_transport != GST_RTSP_LOWER_TRANS_UDP_MCAST) {
630       is_all_udp = FALSE;
631       break;
632     }
633   }
634
635   if (!is_all_udp || gst_rtsp_media_is_stop_on_disconnect (media)) {
636     gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
637     return GST_RTSP_FILTER_REMOVE;
638   } else {
639     *closed = FALSE;
640     return GST_RTSP_FILTER_KEEP;
641   }
642 }
643
644 static void
645 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
646 {
647   GstRTSPClientPrivate *priv = client->priv;
648
649   g_mutex_lock (&priv->lock);
650   /* check if we already know about this session */
651   if (g_list_find (priv->sessions, session) == NULL) {
652     GST_INFO ("watching session %p", session);
653
654     priv->sessions = g_list_prepend (priv->sessions, g_object_ref (session));
655     priv->sessions_cookie++;
656
657     /* connect removed session handler, it will be disconnected when the last
658      * session gets removed  */
659     if (priv->session_removed_id == 0)
660       priv->session_removed_id = g_signal_connect_data (priv->session_pool,
661           "session-removed", G_CALLBACK (client_session_removed),
662           g_object_ref (client), (GClosureNotify) g_object_unref, 0);
663   }
664   g_mutex_unlock (&priv->lock);
665
666   return;
667 }
668
669 /* should be called with lock */
670 static void
671 client_unwatch_session (GstRTSPClient * client, GstRTSPSession * session,
672     GList * link)
673 {
674   GstRTSPClientPrivate *priv = client->priv;
675
676   GST_INFO ("client %p: unwatch session %p", client, session);
677
678   if (link == NULL) {
679     link = g_list_find (priv->sessions, session);
680     if (link == NULL)
681       return;
682   }
683
684   priv->sessions = g_list_delete_link (priv->sessions, link);
685   priv->sessions_cookie++;
686
687   /* if this was the last session, disconnect the handler.
688    * This will also drop the extra client ref */
689   if (!priv->sessions) {
690     g_signal_handler_disconnect (priv->session_pool, priv->session_removed_id);
691     priv->session_removed_id = 0;
692   }
693
694   if (!priv->drop_backlog) {
695     /* unlink all media managed in this session */
696     gst_rtsp_session_filter (session, filter_session_media, client);
697   }
698
699   /* remove the session */
700   g_object_unref (session);
701 }
702
703 static GstRTSPFilterResult
704 cleanup_session (GstRTSPClient * client, GstRTSPSession * sess,
705     gpointer user_data)
706 {
707   gboolean *closed = user_data;
708   GstRTSPClientPrivate *priv = client->priv;
709
710   if (priv->drop_backlog) {
711     /* unlink all media managed in this session. This needs to happen
712      * without the client lock, so we really want to do it here. */
713     gst_rtsp_session_filter (sess, filter_session_media, user_data);
714   }
715
716   if (*closed)
717     return GST_RTSP_FILTER_REMOVE;
718   else
719     return GST_RTSP_FILTER_KEEP;
720 }
721
722 static void
723 clean_cached_media (GstRTSPClient * client, gboolean unprepare)
724 {
725   GstRTSPClientPrivate *priv = client->priv;
726
727   if (priv->path) {
728     g_free (priv->path);
729     priv->path = NULL;
730   }
731   if (priv->media) {
732     if (unprepare)
733       gst_rtsp_media_unprepare (priv->media);
734     g_object_unref (priv->media);
735     priv->media = NULL;
736   }
737 }
738
739 /* A client is finalized when the connection is broken */
740 static void
741 gst_rtsp_client_finalize (GObject * obj)
742 {
743   GstRTSPClient *client = GST_RTSP_CLIENT (obj);
744   GstRTSPClientPrivate *priv = client->priv;
745
746   GST_INFO ("finalize client %p", client);
747
748   if (priv->watch)
749     gst_rtsp_watch_set_flushing (priv->watch, TRUE);
750   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
751
752   if (priv->watch)
753     g_source_destroy ((GSource *) priv->watch);
754
755   if (priv->watch_context)
756     g_main_context_unref (priv->watch_context);
757
758   /* all sessions should have been removed by now. We keep a ref to
759    * the client object for the session removed handler. The ref is
760    * dropped when the last session is removed from the list. */
761   g_assert (priv->sessions == NULL);
762   g_assert (priv->session_removed_id == 0);
763
764   g_array_unref (priv->data_seqs);
765   g_hash_table_unref (priv->transports);
766   g_hash_table_unref (priv->pipelined_requests);
767
768   if (priv->connection)
769     gst_rtsp_connection_free (priv->connection);
770   if (priv->session_pool) {
771     g_object_unref (priv->session_pool);
772   }
773   if (priv->mount_points)
774     g_object_unref (priv->mount_points);
775   if (priv->auth)
776     g_object_unref (priv->auth);
777   if (priv->thread_pool)
778     g_object_unref (priv->thread_pool);
779
780   clean_cached_media (client, TRUE);
781
782   g_free (priv->server_ip);
783   g_mutex_clear (&priv->lock);
784   g_mutex_clear (&priv->send_lock);
785   g_mutex_clear (&priv->watch_lock);
786
787   G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
788 }
789
790 static void
791 gst_rtsp_client_get_property (GObject * object, guint propid,
792     GValue * value, GParamSpec * pspec)
793 {
794   GstRTSPClient *client = GST_RTSP_CLIENT (object);
795   GstRTSPClientPrivate *priv = client->priv;
796
797   switch (propid) {
798     case PROP_SESSION_POOL:
799       g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
800       break;
801     case PROP_MOUNT_POINTS:
802       g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
803       break;
804     case PROP_DROP_BACKLOG:
805       g_value_set_boolean (value, priv->drop_backlog);
806       break;
807     default:
808       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
809   }
810 }
811
812 static void
813 gst_rtsp_client_set_property (GObject * object, guint propid,
814     const GValue * value, GParamSpec * pspec)
815 {
816   GstRTSPClient *client = GST_RTSP_CLIENT (object);
817   GstRTSPClientPrivate *priv = client->priv;
818
819   switch (propid) {
820     case PROP_SESSION_POOL:
821       gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
822       break;
823     case PROP_MOUNT_POINTS:
824       gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
825       break;
826     case PROP_DROP_BACKLOG:
827       g_mutex_lock (&priv->lock);
828       priv->drop_backlog = g_value_get_boolean (value);
829       g_mutex_unlock (&priv->lock);
830       break;
831     default:
832       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
833   }
834 }
835
836 /**
837  * gst_rtsp_client_new:
838  *
839  * Create a new #GstRTSPClient instance.
840  *
841  * Returns: (transfer full): a new #GstRTSPClient
842  */
843 GstRTSPClient *
844 gst_rtsp_client_new (void)
845 {
846   GstRTSPClient *result;
847
848   result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
849
850   return result;
851 }
852
853 static void
854 send_message (GstRTSPClient * client, GstRTSPContext * ctx,
855     GstRTSPMessage * message, gboolean close)
856 {
857   GstRTSPClientPrivate *priv = client->priv;
858
859   gst_rtsp_message_add_header (message, GST_RTSP_HDR_SERVER,
860       "GStreamer RTSP server");
861
862   /* remove any previous header */
863   gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
864
865   /* add the new session header for new session ids */
866   if (ctx->session) {
867     gst_rtsp_message_take_header (message, GST_RTSP_HDR_SESSION,
868         gst_rtsp_session_get_header (ctx->session));
869   }
870
871   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
872     gst_rtsp_message_dump (message);
873   }
874
875   if (close)
876     gst_rtsp_message_add_header (message, GST_RTSP_HDR_CONNECTION, "close");
877
878   if (ctx->request)
879     message->type_data.response.version =
880         ctx->request->type_data.request.version;
881
882   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE],
883       0, ctx, message);
884
885   g_mutex_lock (&priv->send_lock);
886   if (priv->send_func)
887     priv->send_func (client, message, close, priv->send_data);
888   g_mutex_unlock (&priv->send_lock);
889
890   gst_rtsp_message_unset (message);
891 }
892
893 static void
894 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
895     GstRTSPContext * ctx)
896 {
897   gst_rtsp_message_init_response (ctx->response, code,
898       gst_rtsp_status_as_text (code), ctx->request);
899
900   ctx->session = NULL;
901
902   send_message (client, ctx, ctx->response, FALSE);
903 }
904
905 static void
906 send_option_not_supported_response (GstRTSPClient * client,
907     GstRTSPContext * ctx, const gchar * unsupported_options)
908 {
909   GstRTSPStatusCode code = GST_RTSP_STS_OPTION_NOT_SUPPORTED;
910
911   gst_rtsp_message_init_response (ctx->response, code,
912       gst_rtsp_status_as_text (code), ctx->request);
913
914   if (unsupported_options != NULL) {
915     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_UNSUPPORTED,
916         unsupported_options);
917   }
918
919   ctx->session = NULL;
920
921   send_message (client, ctx, ctx->response, FALSE);
922 }
923
924 static gboolean
925 paths_are_equal (const gchar * path1, const gchar * path2, gint len2)
926 {
927   if (path1 == NULL || path2 == NULL)
928     return FALSE;
929
930   if (strlen (path1) != len2)
931     return FALSE;
932
933   if (strncmp (path1, path2, len2))
934     return FALSE;
935
936   return TRUE;
937 }
938
939 /* this function is called to initially find the media for the DESCRIBE request
940  * but is cached for when the same client (without breaking the connection) is
941  * doing a setup for the exact same url. */
942 static GstRTSPMedia *
943 find_media (GstRTSPClient * client, GstRTSPContext * ctx, gchar * path,
944     gint * matched)
945 {
946   GstRTSPClientPrivate *priv = client->priv;
947   GstRTSPMediaFactory *factory;
948   GstRTSPMedia *media;
949   gint path_len;
950
951   /* find the longest matching factory for the uri first */
952   if (!(factory = gst_rtsp_mount_points_match (priv->mount_points,
953               path, matched)))
954     goto no_factory;
955
956   ctx->factory = factory;
957
958   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS))
959     goto no_factory_access;
960
961   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT))
962     goto not_authorized;
963
964   if (matched)
965     path_len = *matched;
966   else
967     path_len = strlen (path);
968
969   if (!paths_are_equal (priv->path, path, path_len)) {
970     /* remove any previously cached values before we try to construct a new
971      * media for uri */
972     clean_cached_media (client, TRUE);
973
974     /* prepare the media and add it to the pipeline */
975     if (!(media = gst_rtsp_media_factory_construct (factory, ctx->uri)))
976       goto no_media;
977
978     ctx->media = media;
979
980     if (!(gst_rtsp_media_get_transport_mode (media) &
981             GST_RTSP_TRANSPORT_MODE_RECORD)) {
982       GstRTSPThread *thread;
983
984       thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
985           GST_RTSP_THREAD_TYPE_MEDIA, ctx);
986       if (thread == NULL)
987         goto no_thread;
988
989       /* prepare the media */
990       if (!gst_rtsp_media_prepare (media, thread))
991         goto no_prepare;
992     }
993
994     /* now keep track of the uri and the media */
995     priv->path = g_strndup (path, path_len);
996     priv->media = media;
997   } else {
998     /* we have seen this path before, used cached media */
999     media = priv->media;
1000     ctx->media = media;
1001     GST_INFO ("reusing cached media %p for path %s", media, priv->path);
1002   }
1003
1004   g_object_unref (factory);
1005   ctx->factory = NULL;
1006
1007   if (media)
1008     g_object_ref (media);
1009
1010   return media;
1011
1012   /* ERRORS */
1013 no_factory:
1014   {
1015     GST_ERROR ("client %p: no factory for path %s", client, path);
1016     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1017     return NULL;
1018   }
1019 no_factory_access:
1020   {
1021     g_object_unref (factory);
1022     ctx->factory = NULL;
1023     GST_ERROR ("client %p: not authorized to see factory path %s", client,
1024         path);
1025     /* error reply is already sent */
1026     return NULL;
1027   }
1028 not_authorized:
1029   {
1030     g_object_unref (factory);
1031     ctx->factory = NULL;
1032     GST_ERROR ("client %p: not authorized for factory path %s", client, path);
1033     /* error reply is already sent */
1034     return NULL;
1035   }
1036 no_media:
1037   {
1038     GST_ERROR ("client %p: can't create media", client);
1039     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1040     g_object_unref (factory);
1041     ctx->factory = NULL;
1042     return NULL;
1043   }
1044 no_thread:
1045   {
1046     GST_ERROR ("client %p: can't create thread", client);
1047     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1048     g_object_unref (media);
1049     ctx->media = NULL;
1050     g_object_unref (factory);
1051     ctx->factory = NULL;
1052     return NULL;
1053   }
1054 no_prepare:
1055   {
1056     GST_ERROR ("client %p: can't prepare media", client);
1057     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1058     g_object_unref (media);
1059     ctx->media = NULL;
1060     g_object_unref (factory);
1061     ctx->factory = NULL;
1062     return NULL;
1063   }
1064 }
1065
1066 static inline DataSeq *
1067 get_data_seq_element (GstRTSPClient * client, guint8 channel)
1068 {
1069   GstRTSPClientPrivate *priv = client->priv;
1070   GArray *data_seqs = priv->data_seqs;
1071   gint i = 0;
1072
1073   while (i < data_seqs->len) {
1074     DataSeq *data_seq = &g_array_index (data_seqs, DataSeq, i);
1075     if (data_seq->channel == channel)
1076       return data_seq;
1077     i++;
1078   }
1079
1080   return NULL;
1081 }
1082
1083 static void
1084 add_data_seq (GstRTSPClient * client, guint8 channel)
1085 {
1086   GstRTSPClientPrivate *priv = client->priv;
1087   DataSeq data_seq = {.channel = channel,.seq = 0 };
1088
1089   if (get_data_seq_element (client, channel) == NULL)
1090     g_array_append_val (priv->data_seqs, data_seq);
1091 }
1092
1093 static void
1094 set_data_seq (GstRTSPClient * client, guint8 channel, guint seq)
1095 {
1096   DataSeq *data_seq;
1097
1098   data_seq = get_data_seq_element (client, channel);
1099   g_assert_nonnull (data_seq);
1100   data_seq->seq = seq;
1101 }
1102
1103 static guint
1104 get_data_seq (GstRTSPClient * client, guint8 channel)
1105 {
1106   DataSeq *data_seq;
1107
1108   data_seq = get_data_seq_element (client, channel);
1109   g_assert_nonnull (data_seq);
1110   return data_seq->seq;
1111 }
1112
1113 static gboolean
1114 get_data_channel (GstRTSPClient * client, guint seq, guint8 * channel)
1115 {
1116   GstRTSPClientPrivate *priv = client->priv;
1117   GArray *data_seqs = priv->data_seqs;
1118   gint i = 0;
1119
1120   while (i < data_seqs->len) {
1121     DataSeq *data_seq = &g_array_index (data_seqs, DataSeq, i);
1122     if (data_seq->seq == seq) {
1123       *channel = data_seq->channel;
1124       return TRUE;
1125     }
1126     i++;
1127   }
1128
1129   return FALSE;
1130 }
1131
1132 static gboolean
1133 do_close (gpointer user_data)
1134 {
1135   GstRTSPClient *client = user_data;
1136
1137   gst_rtsp_client_close (client);
1138
1139   return G_SOURCE_REMOVE;
1140 }
1141
1142 static gboolean
1143 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
1144 {
1145   GstRTSPClientPrivate *priv = client->priv;
1146   GstRTSPMessage message = { 0 };
1147   gboolean ret = TRUE;
1148   GstMapInfo map_info;
1149   guint8 *data;
1150   guint usize;
1151
1152   gst_rtsp_message_init_data (&message, channel);
1153
1154   /* FIXME, need some sort of iovec RTSPMessage here */
1155   if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
1156     return FALSE;
1157
1158   gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
1159
1160   g_mutex_lock (&priv->send_lock);
1161   if (get_data_seq (client, channel) != 0) {
1162     GST_WARNING ("already a queued data message for channel %d", channel);
1163     g_mutex_unlock (&priv->send_lock);
1164     return FALSE;
1165   }
1166   if (priv->send_func)
1167     ret = priv->send_func (client, &message, FALSE, priv->send_data);
1168   g_mutex_unlock (&priv->send_lock);
1169
1170   gst_rtsp_message_steal_body (&message, &data, &usize);
1171   gst_buffer_unmap (buffer, &map_info);
1172
1173   gst_rtsp_message_unset (&message);
1174
1175   if (!ret) {
1176     GSource *idle_src;
1177
1178     /* close in watch context */
1179     idle_src = g_idle_source_new ();
1180     g_source_set_callback (idle_src, do_close, client, NULL);
1181     g_source_attach (idle_src, priv->watch_context);
1182     g_source_unref (idle_src);
1183   }
1184
1185   return ret;
1186 }
1187
1188 /**
1189  * gst_rtsp_client_close:
1190  * @client: a #GstRTSPClient
1191  *
1192  * Close the connection of @client and remove all media it was managing.
1193  *
1194  * Since: 1.4
1195  */
1196 void
1197 gst_rtsp_client_close (GstRTSPClient * client)
1198 {
1199   GstRTSPClientPrivate *priv = client->priv;
1200   const gchar *tunnelid;
1201
1202   GST_DEBUG ("client %p: closing connection", client);
1203
1204   if (priv->connection) {
1205     if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
1206       g_mutex_lock (&tunnels_lock);
1207       /* remove from tunnelids */
1208       g_hash_table_remove (tunnels, tunnelid);
1209       g_mutex_unlock (&tunnels_lock);
1210     }
1211     gst_rtsp_connection_close (priv->connection);
1212   }
1213
1214   /* connection is now closed, destroy the watch which will also cause the
1215    * closed signal to be emitted */
1216   if (priv->watch) {
1217     GST_DEBUG ("client %p: destroying watch", client);
1218     g_source_destroy ((GSource *) priv->watch);
1219     priv->watch = NULL;
1220     gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
1221     g_main_context_unref (priv->watch_context);
1222     priv->watch_context = NULL;
1223   }
1224 }
1225
1226 static gchar *
1227 default_make_path_from_uri (GstRTSPClient * client, const GstRTSPUrl * uri)
1228 {
1229   gchar *path;
1230
1231   if (uri->query)
1232     path = g_strconcat (uri->abspath, "?", uri->query, NULL);
1233   else
1234     path = g_strdup (uri->abspath);
1235
1236   return path;
1237 }
1238
1239 /* Default signal handler function for all "pre-command" signals, like
1240  * pre-options-request. It just returns the RTSP return code 200.
1241  * Subclasses can override this to get another default behaviour.
1242  */
1243 static GstRTSPStatusCode
1244 default_pre_signal_handler (GstRTSPClient * client, GstRTSPContext * ctx)
1245 {
1246   GST_LOG_OBJECT (client, "returning GST_RTSP_STS_OK");
1247   return GST_RTSP_STS_OK;
1248 }
1249
1250 /* The pre-signal accumulator function checks the return value of the signal
1251  * handlers. If any of them returns an RTSP status code that does not start
1252  * with 2 it will return FALSE, no more signal handlers will be called, and
1253  * this last RTSP status code will be the result of the signal emission.
1254  */
1255 static gboolean
1256 pre_signal_accumulator (GSignalInvocationHint * ihint, GValue * return_accu,
1257     const GValue * handler_return, gpointer data)
1258 {
1259   GstRTSPStatusCode handler_value = g_value_get_enum (handler_return);
1260   GstRTSPStatusCode accumulated_value = g_value_get_enum (return_accu);
1261
1262   if (handler_value < 200 || handler_value > 299) {
1263     GST_DEBUG ("handler_value : %d, returning FALSE", handler_value);
1264     g_value_set_enum (return_accu, handler_value);
1265     return FALSE;
1266   }
1267
1268   /* the accumulated value is initiated to 0 by GLib. if current handler value is
1269    * bigger then use that instead
1270    *
1271    * FIXME: Should we prioritize the 2xx codes in a smarter way?
1272    *        Like, "201 Created" > "250 Low On Storage Space" > "200 OK"?
1273    */
1274   if (handler_value > accumulated_value)
1275     g_value_set_enum (return_accu, handler_value);
1276
1277   return TRUE;
1278 }
1279
1280 static gboolean
1281 handle_teardown_request (GstRTSPClient * client, GstRTSPContext * ctx)
1282 {
1283   GstRTSPClientPrivate *priv = client->priv;
1284   GstRTSPClientClass *klass;
1285   GstRTSPSession *session;
1286   GstRTSPSessionMedia *sessmedia;
1287   GstRTSPStatusCode code;
1288   gchar *path;
1289   gint matched;
1290   gboolean keep_session;
1291   GstRTSPStatusCode sig_result;
1292
1293   if (!ctx->session)
1294     goto no_session;
1295
1296   session = ctx->session;
1297
1298   if (!ctx->uri)
1299     goto no_uri;
1300
1301   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1302   path = klass->make_path_from_uri (client, ctx->uri);
1303
1304   /* get a handle to the configuration of the media in the session */
1305   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1306   if (!sessmedia)
1307     goto not_found;
1308
1309   /* only aggregate control for now.. */
1310   if (path[matched] != '\0')
1311     goto no_aggregate;
1312
1313   g_free (path);
1314
1315   ctx->sessmedia = sessmedia;
1316
1317   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_TEARDOWN_REQUEST],
1318       0, ctx, &sig_result);
1319   if (sig_result != GST_RTSP_STS_OK) {
1320     goto sig_failed;
1321   }
1322
1323   /* we emit the signal before closing the connection */
1324   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
1325       0, ctx);
1326
1327   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
1328
1329   /* unmanage the media in the session, returns false if all media session
1330    * are torn down. */
1331   keep_session = gst_rtsp_session_release_media (session, sessmedia);
1332
1333   /* construct the response now */
1334   code = GST_RTSP_STS_OK;
1335   gst_rtsp_message_init_response (ctx->response, code,
1336       gst_rtsp_status_as_text (code), ctx->request);
1337
1338   send_message (client, ctx, ctx->response, TRUE);
1339
1340   if (!keep_session) {
1341     /* remove the session */
1342     gst_rtsp_session_pool_remove (priv->session_pool, session);
1343   }
1344
1345   return TRUE;
1346
1347   /* ERRORS */
1348 no_session:
1349   {
1350     GST_ERROR ("client %p: no session", client);
1351     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1352     return FALSE;
1353   }
1354 no_uri:
1355   {
1356     GST_ERROR ("client %p: no uri supplied", client);
1357     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1358     return FALSE;
1359   }
1360 not_found:
1361   {
1362     GST_ERROR ("client %p: no media for uri", client);
1363     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1364     g_free (path);
1365     return FALSE;
1366   }
1367 no_aggregate:
1368   {
1369     GST_ERROR ("client %p: no aggregate path %s", client, path);
1370     send_generic_response (client,
1371         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1372     g_free (path);
1373     return FALSE;
1374   }
1375 sig_failed:
1376   {
1377     GST_ERROR ("client %p: pre signal returned error: %s", client,
1378         gst_rtsp_status_as_text (sig_result));
1379     send_generic_response (client, sig_result, ctx);
1380     return FALSE;
1381   }
1382 }
1383
1384 static GstRTSPResult
1385 default_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
1386 {
1387   GstRTSPResult res;
1388
1389   res = gst_rtsp_params_set (client, ctx);
1390
1391   return res;
1392 }
1393
1394 static GstRTSPResult
1395 default_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
1396 {
1397   GstRTSPResult res;
1398
1399   res = gst_rtsp_params_get (client, ctx);
1400
1401   return res;
1402 }
1403
1404 static gboolean
1405 handle_get_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
1406 {
1407   GstRTSPResult res;
1408   guint8 *data;
1409   guint size;
1410   GstRTSPStatusCode sig_result;
1411
1412   g_signal_emit (client,
1413       gst_rtsp_client_signals[SIGNAL_PRE_GET_PARAMETER_REQUEST], 0, ctx,
1414       &sig_result);
1415   if (sig_result != GST_RTSP_STS_OK) {
1416     goto sig_failed;
1417   }
1418
1419   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
1420   if (res != GST_RTSP_OK)
1421     goto bad_request;
1422
1423   if (size == 0 || !data || strlen ((char *) data) == 0) {
1424     if (ctx->request->type_data.request.version >= GST_RTSP_VERSION_2_0) {
1425       GST_ERROR_OBJECT (client, "Using PLAY request for keep-alive is forbidden"
1426           " in RTSP 2.0");
1427       goto bad_request;
1428     }
1429
1430     /* no body (or only '\0'), keep-alive request */
1431     send_generic_response (client, GST_RTSP_STS_OK, ctx);
1432   } else {
1433     /* there is a body, handle the params */
1434     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_get (client, ctx);
1435     if (res != GST_RTSP_OK)
1436       goto bad_request;
1437
1438     send_message (client, ctx, ctx->response, FALSE);
1439   }
1440
1441   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
1442       0, ctx);
1443
1444   return TRUE;
1445
1446   /* ERRORS */
1447 sig_failed:
1448   {
1449     GST_ERROR ("client %p: pre signal returned error: %s", client,
1450         gst_rtsp_status_as_text (sig_result));
1451     send_generic_response (client, sig_result, ctx);
1452     return FALSE;
1453   }
1454 bad_request:
1455   {
1456     GST_ERROR ("client %p: bad request", client);
1457     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1458     return FALSE;
1459   }
1460 }
1461
1462 static gboolean
1463 handle_set_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
1464 {
1465   GstRTSPResult res;
1466   guint8 *data;
1467   guint size;
1468   GstRTSPStatusCode sig_result;
1469
1470   g_signal_emit (client,
1471       gst_rtsp_client_signals[SIGNAL_PRE_SET_PARAMETER_REQUEST], 0, ctx,
1472       &sig_result);
1473   if (sig_result != GST_RTSP_STS_OK) {
1474     goto sig_failed;
1475   }
1476
1477   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
1478   if (res != GST_RTSP_OK)
1479     goto bad_request;
1480
1481   if (size == 0 || !data || strlen ((char *) data) == 0) {
1482     /* no body (or only '\0'), keep-alive request */
1483     send_generic_response (client, GST_RTSP_STS_OK, ctx);
1484   } else {
1485     /* there is a body, handle the params */
1486     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_set (client, ctx);
1487     if (res != GST_RTSP_OK)
1488       goto bad_request;
1489
1490     send_message (client, ctx, ctx->response, FALSE);
1491   }
1492
1493   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
1494       0, ctx);
1495
1496   return TRUE;
1497
1498   /* ERRORS */
1499 sig_failed:
1500   {
1501     GST_ERROR ("client %p: pre signal returned error: %s", client,
1502         gst_rtsp_status_as_text (sig_result));
1503     send_generic_response (client, sig_result, ctx);
1504     return FALSE;
1505   }
1506 bad_request:
1507   {
1508     GST_ERROR ("client %p: bad request", client);
1509     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1510     return FALSE;
1511   }
1512 }
1513
1514 static gboolean
1515 handle_pause_request (GstRTSPClient * client, GstRTSPContext * ctx)
1516 {
1517   GstRTSPSession *session;
1518   GstRTSPClientClass *klass;
1519   GstRTSPSessionMedia *sessmedia;
1520   GstRTSPMedia *media;
1521   GstRTSPStatusCode code;
1522   GstRTSPState rtspstate;
1523   gchar *path;
1524   gint matched;
1525   GstRTSPStatusCode sig_result;
1526   guint i, n;
1527
1528   if (!(session = ctx->session))
1529     goto no_session;
1530
1531   if (!ctx->uri)
1532     goto no_uri;
1533
1534   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1535   path = klass->make_path_from_uri (client, ctx->uri);
1536
1537   /* get a handle to the configuration of the media in the session */
1538   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1539   if (!sessmedia)
1540     goto not_found;
1541
1542   if (path[matched] != '\0')
1543     goto no_aggregate;
1544
1545   g_free (path);
1546
1547   media = gst_rtsp_session_media_get_media (sessmedia);
1548   n = gst_rtsp_media_n_streams (media);
1549   for (i = 0; i < n; i++) {
1550     GstRTSPStream *stream = gst_rtsp_media_get_stream (media, i);
1551
1552     if (gst_rtsp_stream_get_publish_clock_mode (stream) ==
1553         GST_RTSP_PUBLISH_CLOCK_MODE_CLOCK_AND_OFFSET)
1554       goto not_supported;
1555   }
1556
1557   ctx->sessmedia = sessmedia;
1558
1559   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_PAUSE_REQUEST], 0,
1560       ctx, &sig_result);
1561   if (sig_result != GST_RTSP_STS_OK) {
1562     goto sig_failed;
1563   }
1564
1565   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1566   /* the session state must be playing or recording */
1567   if (rtspstate != GST_RTSP_STATE_PLAYING &&
1568       rtspstate != GST_RTSP_STATE_RECORDING)
1569     goto invalid_state;
1570
1571   /* then pause sending */
1572   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PAUSED);
1573
1574   /* construct the response now */
1575   code = GST_RTSP_STS_OK;
1576   gst_rtsp_message_init_response (ctx->response, code,
1577       gst_rtsp_status_as_text (code), ctx->request);
1578
1579   send_message (client, ctx, ctx->response, FALSE);
1580
1581   /* the state is now READY */
1582   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1583
1584   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST], 0, ctx);
1585
1586   return TRUE;
1587
1588   /* ERRORS */
1589 no_session:
1590   {
1591     GST_ERROR ("client %p: no session", client);
1592     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1593     return FALSE;
1594   }
1595 no_uri:
1596   {
1597     GST_ERROR ("client %p: no uri supplied", client);
1598     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1599     return FALSE;
1600   }
1601 not_found:
1602   {
1603     GST_ERROR ("client %p: no media for uri", client);
1604     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1605     g_free (path);
1606     return FALSE;
1607   }
1608 no_aggregate:
1609   {
1610     GST_ERROR ("client %p: no aggregate path %s", client, path);
1611     send_generic_response (client,
1612         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1613     g_free (path);
1614     return FALSE;
1615   }
1616 sig_failed:
1617   {
1618     GST_ERROR ("client %p: pre signal returned error: %s", client,
1619         gst_rtsp_status_as_text (sig_result));
1620     send_generic_response (client, sig_result, ctx);
1621     return FALSE;
1622   }
1623 invalid_state:
1624   {
1625     GST_ERROR ("client %p: not PLAYING or RECORDING", client);
1626     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1627         ctx);
1628     return FALSE;
1629   }
1630 not_supported:
1631   {
1632     GST_ERROR ("client %p: pausing not supported", client);
1633     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1634     return FALSE;
1635   }
1636 }
1637
1638 /* convert @url and @path to a URL used as a content base for the factory
1639  * located at @path */
1640 static gchar *
1641 make_base_url (GstRTSPClient * client, GstRTSPUrl * url, const gchar * path)
1642 {
1643   GstRTSPUrl tmp;
1644   gchar *result;
1645   const gchar *trail;
1646
1647   /* check for trailing '/' and append one */
1648   trail = (path[strlen (path) - 1] != '/' ? "/" : "");
1649
1650   tmp = *url;
1651   tmp.user = NULL;
1652   tmp.passwd = NULL;
1653   tmp.abspath = g_strdup_printf ("%s%s", path, trail);
1654   tmp.query = NULL;
1655   result = gst_rtsp_url_get_request_uri (&tmp);
1656   g_free (tmp.abspath);
1657
1658   return result;
1659 }
1660
1661 static gboolean
1662 handle_play_request (GstRTSPClient * client, GstRTSPContext * ctx)
1663 {
1664   GstRTSPSession *session;
1665   GstRTSPClientClass *klass;
1666   GstRTSPSessionMedia *sessmedia;
1667   GstRTSPMedia *media;
1668   GstRTSPStatusCode code;
1669   GstRTSPUrl *uri;
1670   gchar *str;
1671   GstRTSPTimeRange *range;
1672   GstRTSPResult res;
1673   GstRTSPState rtspstate;
1674   GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
1675   gchar *path, *rtpinfo;
1676   gint matched;
1677   gchar *seek_style = NULL;
1678   GstRTSPStatusCode sig_result;
1679   GPtrArray *transports;
1680
1681   if (!(session = ctx->session))
1682     goto no_session;
1683
1684   if (!(uri = ctx->uri))
1685     goto no_uri;
1686
1687   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1688   path = klass->make_path_from_uri (client, uri);
1689
1690   /* get a handle to the configuration of the media in the session */
1691   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1692   if (!sessmedia)
1693     goto not_found;
1694
1695   if (path[matched] != '\0')
1696     goto no_aggregate;
1697
1698   g_free (path);
1699
1700   ctx->sessmedia = sessmedia;
1701   ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
1702
1703   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_PLAY_REQUEST], 0,
1704       ctx, &sig_result);
1705   if (sig_result != GST_RTSP_STS_OK) {
1706     goto sig_failed;
1707   }
1708
1709   if (!(gst_rtsp_media_get_transport_mode (media) &
1710           GST_RTSP_TRANSPORT_MODE_PLAY))
1711     goto unsupported_mode;
1712
1713   /* the session state must be playing or ready */
1714   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1715   if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
1716     goto invalid_state;
1717
1718   /* update the pipeline */
1719   transports = gst_rtsp_session_media_get_transports (sessmedia);
1720   if (!gst_rtsp_media_complete_pipeline (media, transports)) {
1721     g_ptr_array_unref (transports);
1722     goto pipeline_error;
1723   }
1724   g_ptr_array_unref (transports);
1725
1726   /* in play we first unsuspend, media could be suspended from SDP or PAUSED */
1727   if (!gst_rtsp_media_unsuspend (media))
1728     goto unsuspend_failed;
1729
1730   /* parse the range header if we have one */
1731   res = gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_RANGE, &str, 0);
1732   if (res == GST_RTSP_OK) {
1733     if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
1734       GstRTSPMediaStatus media_status;
1735       GstSeekFlags flags = 0;
1736
1737       if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_SEEK_STYLE,
1738               &seek_style, 0)) {
1739         if (g_strcmp0 (seek_style, "RAP") == 0)
1740           flags = GST_SEEK_FLAG_ACCURATE;
1741         else if (g_strcmp0 (seek_style, "CoRAP") == 0)
1742           flags = GST_SEEK_FLAG_KEY_UNIT;
1743         else if (g_strcmp0 (seek_style, "First-Prior") == 0)
1744           flags = GST_SEEK_FLAG_KEY_UNIT & GST_SEEK_FLAG_SNAP_BEFORE;
1745         else if (g_strcmp0 (seek_style, "Next") == 0)
1746           flags = GST_SEEK_FLAG_KEY_UNIT & GST_SEEK_FLAG_SNAP_AFTER;
1747         else
1748           GST_FIXME_OBJECT (client, "Add support for seek style %s",
1749               seek_style);
1750       }
1751
1752       /* we have a range, seek to the position */
1753       unit = range->unit;
1754       gst_rtsp_media_seek_full (media, range, flags);
1755       gst_rtsp_range_free (range);
1756
1757       media_status = gst_rtsp_media_get_status (media);
1758       if (media_status == GST_RTSP_MEDIA_STATUS_ERROR)
1759         goto seek_failed;
1760     }
1761   }
1762
1763   /* grab RTPInfo from the media now */
1764   rtpinfo = gst_rtsp_session_media_get_rtpinfo (sessmedia);
1765
1766   /* construct the response now */
1767   code = GST_RTSP_STS_OK;
1768   gst_rtsp_message_init_response (ctx->response, code,
1769       gst_rtsp_status_as_text (code), ctx->request);
1770
1771   /* add the RTP-Info header */
1772   if (rtpinfo)
1773     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RTP_INFO,
1774         rtpinfo);
1775   if (seek_style)
1776     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_SEEK_STYLE,
1777         seek_style);
1778
1779   /* add the range */
1780   str = gst_rtsp_media_get_range_string (media, TRUE, unit);
1781   if (str)
1782     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RANGE, str);
1783
1784   send_message (client, ctx, ctx->response, FALSE);
1785
1786   /* start playing after sending the response */
1787   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
1788
1789   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
1790
1791   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST], 0, ctx);
1792
1793   return TRUE;
1794
1795   /* ERRORS */
1796 no_session:
1797   {
1798     GST_ERROR ("client %p: no session", client);
1799     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1800     return FALSE;
1801   }
1802 no_uri:
1803   {
1804     GST_ERROR ("client %p: no uri supplied", client);
1805     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1806     return FALSE;
1807   }
1808 not_found:
1809   {
1810     GST_ERROR ("client %p: media not found", client);
1811     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1812     return FALSE;
1813   }
1814 no_aggregate:
1815   {
1816     GST_ERROR ("client %p: no aggregate path %s", client, path);
1817     send_generic_response (client,
1818         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1819     g_free (path);
1820     return FALSE;
1821   }
1822 sig_failed:
1823   {
1824     GST_ERROR ("client %p: pre signal returned error: %s", client,
1825         gst_rtsp_status_as_text (sig_result));
1826     send_generic_response (client, sig_result, ctx);
1827     return FALSE;
1828   }
1829 invalid_state:
1830   {
1831     GST_ERROR ("client %p: not PLAYING or READY", client);
1832     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1833         ctx);
1834     return FALSE;
1835   }
1836 pipeline_error:
1837   {
1838     GST_ERROR ("client %p: failed to configure the pipeline", client);
1839     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1840         ctx);
1841     return FALSE;
1842   }
1843 unsuspend_failed:
1844   {
1845     GST_ERROR ("client %p: unsuspend failed", client);
1846     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1847     return FALSE;
1848   }
1849 seek_failed:
1850   {
1851     GST_ERROR ("client %p: seek failed", client);
1852     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1853     return FALSE;
1854   }
1855 unsupported_mode:
1856   {
1857     GST_ERROR ("client %p: media does not support PLAY", client);
1858     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
1859     return FALSE;
1860   }
1861 }
1862
1863 static void
1864 do_keepalive (GstRTSPSession * session)
1865 {
1866   GST_INFO ("keep session %p alive", session);
1867   gst_rtsp_session_touch (session);
1868 }
1869
1870 /* parse @transport and return a valid transport in @tr. only transports
1871  * supported by @stream are returned. Returns FALSE if no valid transport
1872  * was found. */
1873 static gboolean
1874 parse_transport (const char *transport, GstRTSPStream * stream,
1875     GstRTSPTransport * tr)
1876 {
1877   gint i;
1878   gboolean res;
1879   gchar **transports;
1880
1881   res = FALSE;
1882   gst_rtsp_transport_init (tr);
1883
1884   GST_DEBUG ("parsing transports %s", transport);
1885
1886   transports = g_strsplit (transport, ",", 0);
1887
1888   /* loop through the transports, try to parse */
1889   for (i = 0; transports[i]; i++) {
1890     g_strstrip (transports[i]);
1891     res = gst_rtsp_transport_parse (transports[i], tr);
1892     if (res != GST_RTSP_OK) {
1893       /* no valid transport, search some more */
1894       GST_WARNING ("could not parse transport %s", transports[i]);
1895       goto next;
1896     }
1897
1898     /* we have a transport, see if it's supported */
1899     if (!gst_rtsp_stream_is_transport_supported (stream, tr)) {
1900       GST_WARNING ("unsupported transport %s", transports[i]);
1901       goto next;
1902     }
1903
1904     /* we have a valid transport */
1905     GST_INFO ("found valid transport %s", transports[i]);
1906     res = TRUE;
1907     break;
1908
1909   next:
1910     gst_rtsp_transport_init (tr);
1911   }
1912   g_strfreev (transports);
1913
1914   return res;
1915 }
1916
1917 static gboolean
1918 default_configure_client_media (GstRTSPClient * client, GstRTSPMedia * media,
1919     GstRTSPStream * stream, GstRTSPContext * ctx)
1920 {
1921   GstRTSPMessage *request = ctx->request;
1922   gchar *blocksize_str;
1923
1924   if (!gst_rtsp_stream_is_sender (stream))
1925     return TRUE;
1926
1927   if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1928           &blocksize_str, 0) == GST_RTSP_OK) {
1929     guint64 blocksize;
1930     gchar *end;
1931
1932     blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1933     if (end == blocksize_str)
1934       goto parse_failed;
1935
1936     /* we don't want to change the mtu when this media
1937      * can be shared because it impacts other clients */
1938     if (gst_rtsp_media_is_shared (media))
1939       goto done;
1940
1941     if (blocksize > G_MAXUINT)
1942       blocksize = G_MAXUINT;
1943
1944     gst_rtsp_stream_set_mtu (stream, blocksize);
1945   }
1946 done:
1947   return TRUE;
1948
1949   /* ERRORS */
1950 parse_failed:
1951   {
1952     GST_ERROR_OBJECT (client, "failed to parse blocksize");
1953     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1954     return FALSE;
1955   }
1956 }
1957
1958 static gboolean
1959 default_configure_client_transport (GstRTSPClient * client,
1960     GstRTSPContext * ctx, GstRTSPTransport * ct)
1961 {
1962   GstRTSPClientPrivate *priv = client->priv;
1963
1964   /* we have a valid transport now, set the destination of the client. */
1965   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST ||
1966       ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP) {
1967     /* allocate UDP ports */
1968     GSocketFamily family;
1969     gboolean use_client_settings = FALSE;
1970
1971     family = priv->is_ipv6 ? G_SOCKET_FAMILY_IPV6 : G_SOCKET_FAMILY_IPV4;
1972
1973     if ((ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) &&
1974         gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS) &&
1975         (ct->destination != NULL)) {
1976
1977       if (!gst_rtsp_stream_verify_mcast_ttl (ctx->stream, ct->ttl))
1978         goto error_ttl;
1979
1980       use_client_settings = TRUE;
1981     }
1982
1983     /* We need to allocate the sockets for both families before starting
1984      * multiudpsink, otherwise multiudpsink won't accept new clients with
1985      * a different family.
1986      */
1987     /* FIXME: could be more adequately solved by making it possible
1988      * to set a socket on multiudpsink after it has already been started */
1989     if (!gst_rtsp_stream_allocate_udp_sockets (ctx->stream, G_SOCKET_FAMILY_IPV4, ct,
1990             use_client_settings) && family == G_SOCKET_FAMILY_IPV4)
1991       goto error_allocating_ports;
1992
1993     if (!gst_rtsp_stream_allocate_udp_sockets (ctx->stream, G_SOCKET_FAMILY_IPV6, ct,
1994             use_client_settings) && family == G_SOCKET_FAMILY_IPV6)
1995       goto error_allocating_ports;
1996
1997     if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1998       if (use_client_settings) {
1999         /* FIXME: the address has been successfully allocated, however, in
2000          * the use_client_settings case we need to verify that the allocated
2001          * address is the one requested by the client and if this address is
2002          * an allowed destination. Verifying this via the address pool in not
2003          * the proper way as the address pool should only be used for choosing
2004          * the server-selected address/port pairs. */
2005         GSocket *rtp_socket;
2006         guint ttl;
2007
2008         rtp_socket =
2009             gst_rtsp_stream_get_rtp_multicast_socket (ctx->stream, family);
2010         if (rtp_socket == NULL)
2011           goto no_socket;
2012         ttl = g_socket_get_multicast_ttl (rtp_socket);
2013         g_object_unref (rtp_socket);
2014         if (ct->ttl < ttl) {
2015           /* use the maximum ttl that is requested by multicast clients */
2016           GST_DEBUG ("requested ttl %u, but keeping ttl %u", ct->ttl, ttl);
2017           ct->ttl = ttl;
2018         }
2019
2020       } else {
2021         GstRTSPAddress *addr = NULL;
2022
2023         g_free (ct->destination);
2024         addr = gst_rtsp_stream_get_multicast_address (ctx->stream, family);
2025         if (addr == NULL)
2026           goto no_address;
2027         ct->destination = g_strdup (addr->address);
2028         ct->port.min = addr->port;
2029         ct->port.max = addr->port + addr->n_ports - 1;
2030         ct->ttl = addr->ttl;
2031         gst_rtsp_address_free (addr);
2032       }
2033     } else {
2034       GstRTSPUrl *url;
2035
2036       url = gst_rtsp_connection_get_url (priv->connection);
2037       g_free (ct->destination);
2038       ct->destination = g_strdup (url->host);
2039     }
2040   } else {
2041     GstRTSPUrl *url;
2042
2043     url = gst_rtsp_connection_get_url (priv->connection);
2044     g_free (ct->destination);
2045     ct->destination = g_strdup (url->host);
2046
2047     if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
2048       GSocket *sock;
2049       GSocketAddress *addr;
2050
2051       sock = gst_rtsp_connection_get_read_socket (priv->connection);
2052       if ((addr = g_socket_get_remote_address (sock, NULL))) {
2053         /* our read port is the sender port of client */
2054         ct->client_port.min =
2055             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2056         g_object_unref (addr);
2057       }
2058       if ((addr = g_socket_get_local_address (sock, NULL))) {
2059         ct->server_port.max =
2060             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2061         g_object_unref (addr);
2062       }
2063       sock = gst_rtsp_connection_get_write_socket (priv->connection);
2064       if ((addr = g_socket_get_remote_address (sock, NULL))) {
2065         /* our write port is the receiver port of client */
2066         ct->client_port.max =
2067             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2068         g_object_unref (addr);
2069       }
2070       if ((addr = g_socket_get_local_address (sock, NULL))) {
2071         ct->server_port.min =
2072             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2073         g_object_unref (addr);
2074       }
2075       /* check if the client selected channels for TCP */
2076       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
2077         gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
2078             &ct->interleaved);
2079       }
2080     }
2081   }
2082   return TRUE;
2083
2084   /* ERRORS */
2085 error_ttl:
2086   {
2087     GST_ERROR_OBJECT (client,
2088         "Failed to allocate UDP ports: invalid ttl value");
2089     return FALSE;
2090   }
2091 error_allocating_ports:
2092   {
2093     GST_ERROR_OBJECT (client, "Failed to allocate UDP ports");
2094     return FALSE;
2095   }
2096 no_address:
2097   {
2098     GST_ERROR_OBJECT (client, "Failed to acquire address for stream");
2099     return FALSE;
2100   }
2101 no_socket:
2102   {
2103     GST_ERROR_OBJECT (client, "Failed to get UDP socket");
2104     return FALSE;
2105   }
2106 }
2107
2108 static GstRTSPTransport *
2109 make_server_transport (GstRTSPClient * client, GstRTSPMedia * media,
2110     GstRTSPContext * ctx, GstRTSPTransport * ct)
2111 {
2112   GstRTSPTransport *st;
2113   GInetAddress *addr;
2114   GSocketFamily family;
2115
2116   /* prepare the server transport */
2117   gst_rtsp_transport_new (&st);
2118
2119   st->trans = ct->trans;
2120   st->profile = ct->profile;
2121   st->lower_transport = ct->lower_transport;
2122   st->mode_play = ct->mode_play;
2123   st->mode_record = ct->mode_record;
2124
2125   addr = g_inet_address_new_from_string (ct->destination);
2126
2127   if (!addr) {
2128     GST_ERROR ("failed to get inet addr from client destination");
2129     family = G_SOCKET_FAMILY_IPV4;
2130   } else {
2131     family = g_inet_address_get_family (addr);
2132     g_object_unref (addr);
2133     addr = NULL;
2134   }
2135
2136   switch (st->lower_transport) {
2137     case GST_RTSP_LOWER_TRANS_UDP:
2138       st->client_port = ct->client_port;
2139       gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
2140       break;
2141     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
2142       st->port = ct->port;
2143       st->destination = g_strdup (ct->destination);
2144       st->ttl = ct->ttl;
2145       break;
2146     case GST_RTSP_LOWER_TRANS_TCP:
2147       st->interleaved = ct->interleaved;
2148       st->client_port = ct->client_port;
2149       st->server_port = ct->server_port;
2150     default:
2151       break;
2152   }
2153
2154   if ((gst_rtsp_media_get_transport_mode (media) &
2155           GST_RTSP_TRANSPORT_MODE_PLAY))
2156     gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
2157
2158   return st;
2159 }
2160
2161 static gboolean
2162 rtsp_ctrl_timeout_cb (gpointer user_data)
2163 {
2164   gboolean res = G_SOURCE_CONTINUE;
2165   GstRTSPClient *client = (GstRTSPClient *) user_data;
2166   GstRTSPClientPrivate *priv = client->priv;
2167
2168   priv->rtsp_ctrl_timeout_cnt += RTSP_CTRL_CB_INTERVAL;
2169
2170   if (priv->rtsp_ctrl_timeout_cnt > RTSP_CTRL_TIMEOUT_VALUE) {
2171     GST_DEBUG ("rtsp control session timeout id=%u expired, closing client.",
2172         priv->rtsp_ctrl_timeout_id);
2173     g_mutex_lock (&priv->lock);
2174     priv->rtsp_ctrl_timeout_id = 0;
2175     priv->rtsp_ctrl_timeout_cnt = 0;
2176     g_mutex_unlock (&priv->lock);
2177     gst_rtsp_client_close (client);
2178
2179     res = G_SOURCE_REMOVE;
2180   }
2181
2182   return res;
2183 }
2184
2185 static void
2186 rtsp_ctrl_timeout_remove (GstRTSPClientPrivate * priv)
2187 {
2188   g_mutex_lock (&priv->lock);
2189
2190   if (priv->rtsp_ctrl_timeout_id != 0) {
2191     g_source_destroy (g_main_context_find_source_by_id (priv->watch_context,
2192             priv->rtsp_ctrl_timeout_id));
2193     GST_DEBUG ("rtsp control session removed timeout id=%u.",
2194         priv->rtsp_ctrl_timeout_id);
2195     priv->rtsp_ctrl_timeout_id = 0;
2196     priv->rtsp_ctrl_timeout_cnt = 0;
2197   }
2198
2199   g_mutex_unlock (&priv->lock);
2200 }
2201
2202 static gchar *
2203 stream_make_keymgmt (GstRTSPClient * client, const gchar * location,
2204     GstRTSPStream * stream)
2205 {
2206   gchar *base64, *result = NULL;
2207   GstMIKEYMessage *mikey_msg;
2208   GstCaps *srtcpparams;
2209   GstElement *rtcp_encoder;
2210   gint srtcp_cipher, srtp_cipher;
2211   gint srtcp_auth, srtp_auth;
2212   GstBuffer *key;
2213   GType ciphertype, authtype;
2214   GEnumClass *cipher_enum, *auth_enum;
2215   GEnumValue *srtcp_cipher_value, *srtp_cipher_value, *srtcp_auth_value,
2216       *srtp_auth_value;
2217
2218   rtcp_encoder = gst_rtsp_stream_get_srtp_encoder (stream);
2219
2220   if (!rtcp_encoder)
2221     goto done;
2222
2223   ciphertype = g_type_from_name ("GstSrtpCipherType");
2224   authtype = g_type_from_name ("GstSrtpAuthType");
2225
2226   cipher_enum = g_type_class_ref (ciphertype);
2227   auth_enum = g_type_class_ref (authtype);
2228
2229   /* We need to bring the encoder to READY so that it generates its key */
2230   gst_element_set_state (rtcp_encoder, GST_STATE_READY);
2231
2232   g_object_get (rtcp_encoder, "rtcp-cipher", &srtcp_cipher, "rtcp-auth",
2233       &srtcp_auth, "rtp-cipher", &srtp_cipher, "rtp-auth", &srtp_auth, "key",
2234       &key, NULL);
2235   g_object_unref (rtcp_encoder);
2236
2237   srtcp_cipher_value = g_enum_get_value (cipher_enum, srtcp_cipher);
2238   srtp_cipher_value = g_enum_get_value (cipher_enum, srtp_cipher);
2239   srtcp_auth_value = g_enum_get_value (auth_enum, srtcp_auth);
2240   srtp_auth_value = g_enum_get_value (auth_enum, srtp_auth);
2241
2242   g_type_class_unref (cipher_enum);
2243   g_type_class_unref (auth_enum);
2244
2245   srtcpparams = gst_caps_new_simple ("application/x-srtcp",
2246       "srtcp-cipher", G_TYPE_STRING, srtcp_cipher_value->value_nick,
2247       "srtcp-auth", G_TYPE_STRING, srtcp_auth_value->value_nick,
2248       "srtp-cipher", G_TYPE_STRING, srtp_cipher_value->value_nick,
2249       "srtp-auth", G_TYPE_STRING, srtp_auth_value->value_nick,
2250       "srtp-key", GST_TYPE_BUFFER, key, NULL);
2251
2252   mikey_msg = gst_mikey_message_new_from_caps (srtcpparams);
2253   if (mikey_msg) {
2254     guint send_ssrc;
2255
2256     gst_rtsp_stream_get_ssrc (stream, &send_ssrc);
2257     gst_mikey_message_add_cs_srtp (mikey_msg, 0, send_ssrc, 0);
2258
2259     base64 = gst_mikey_message_base64_encode (mikey_msg);
2260     gst_mikey_message_unref (mikey_msg);
2261
2262     if (base64) {
2263       result = gst_sdp_make_keymgmt (location, base64);
2264       g_free (base64);
2265     }
2266   }
2267
2268 done:
2269   return result;
2270 }
2271
2272 static gboolean
2273 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
2274 {
2275   GstRTSPClientPrivate *priv = client->priv;
2276   GstRTSPResult res;
2277   GstRTSPUrl *uri;
2278   gchar *transport, *keymgmt;
2279   GstRTSPTransport *ct, *st;
2280   GstRTSPStatusCode code;
2281   GstRTSPSession *session;
2282   GstRTSPStreamTransport *trans;
2283   gchar *trans_str;
2284   GstRTSPSessionMedia *sessmedia;
2285   GstRTSPMedia *media;
2286   GstRTSPStream *stream;
2287   GstRTSPState rtspstate;
2288   GstRTSPClientClass *klass;
2289   gchar *path, *control = NULL;
2290   gint matched;
2291   gboolean new_session = FALSE;
2292   GstRTSPStatusCode sig_result;
2293   gchar *pipelined_request_id = NULL, *accept_range = NULL;
2294
2295   if (!ctx->uri)
2296     goto no_uri;
2297
2298   uri = ctx->uri;
2299   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2300   path = klass->make_path_from_uri (client, uri);
2301
2302   /* parse the transport */
2303   res =
2304       gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
2305       &transport, 0);
2306   if (res != GST_RTSP_OK)
2307     goto no_transport;
2308
2309   /* Handle Pipelined-requests if using >= 2.0 */
2310   if (ctx->request->type_data.request.version >= GST_RTSP_VERSION_2_0)
2311     gst_rtsp_message_get_header (ctx->request,
2312         GST_RTSP_HDR_PIPELINED_REQUESTS, &pipelined_request_id, 0);
2313
2314   /* we create the session after parsing stuff so that we don't make
2315    * a session for malformed requests */
2316   if (priv->session_pool == NULL)
2317     goto no_pool;
2318
2319   session = ctx->session;
2320
2321   if (session) {
2322     g_object_ref (session);
2323     /* get a handle to the configuration of the media in the session, this can
2324      * return NULL if this is a new url to manage in this session. */
2325     sessmedia = gst_rtsp_session_get_media (session, path, &matched);
2326   } else {
2327     /* we need a new media configuration in this session */
2328     sessmedia = NULL;
2329   }
2330
2331   /* we have no session media, find one and manage it */
2332   if (sessmedia == NULL) {
2333     /* get a handle to the configuration of the media in the session */
2334     media = find_media (client, ctx, path, &matched);
2335     /* need to suspend the media, if the protocol has changed */
2336     if (media != NULL)
2337       gst_rtsp_media_suspend (media);
2338   } else {
2339     if ((media = gst_rtsp_session_media_get_media (sessmedia)))
2340       g_object_ref (media);
2341     else
2342       goto media_not_found;
2343   }
2344   /* no media, not found then */
2345   if (media == NULL)
2346     goto media_not_found_no_reply;
2347
2348   if (path[matched] == '\0') {
2349     if (gst_rtsp_media_n_streams (media) == 1) {
2350       stream = gst_rtsp_media_get_stream (media, 0);
2351     } else {
2352       goto control_not_found;
2353     }
2354   } else {
2355     /* path is what matched. */
2356     path[matched] = '\0';
2357     /* control is remainder */
2358     control = &path[matched + 1];
2359
2360     /* find the stream now using the control part */
2361     stream = gst_rtsp_media_find_stream (media, control);
2362   }
2363
2364   if (stream == NULL)
2365     goto stream_not_found;
2366
2367   /* now we have a uri identifying a valid media and stream */
2368   ctx->stream = stream;
2369   ctx->media = media;
2370
2371   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_SETUP_REQUEST], 0,
2372       ctx, &sig_result);
2373   if (sig_result != GST_RTSP_STS_OK) {
2374     goto sig_failed;
2375   }
2376
2377   if (session == NULL) {
2378     /* create a session if this fails we probably reached our session limit or
2379      * something. */
2380     if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
2381       goto service_unavailable;
2382
2383     /* Pipelined requests should be cleared between sessions */
2384     g_hash_table_remove_all (priv->pipelined_requests);
2385
2386     /* make sure this client is closed when the session is closed */
2387     client_watch_session (client, session);
2388
2389     new_session = TRUE;
2390     /* signal new session */
2391     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
2392         session);
2393
2394     ctx->session = session;
2395   }
2396
2397   if (pipelined_request_id) {
2398     g_hash_table_insert (client->priv->pipelined_requests,
2399         g_strdup (pipelined_request_id),
2400         g_strdup (gst_rtsp_session_get_sessionid (session)));
2401   }
2402   rtsp_ctrl_timeout_remove (priv);
2403
2404   if (!klass->configure_client_media (client, media, stream, ctx))
2405     goto configure_media_failed_no_reply;
2406
2407   gst_rtsp_transport_new (&ct);
2408
2409   /* parse and find a usable supported transport */
2410   if (!parse_transport (transport, stream, ct))
2411     goto unsupported_transports;
2412
2413   if ((ct->mode_play
2414           && !(gst_rtsp_media_get_transport_mode (media) &
2415               GST_RTSP_TRANSPORT_MODE_PLAY)) || (ct->mode_record
2416           && !(gst_rtsp_media_get_transport_mode (media) &
2417               GST_RTSP_TRANSPORT_MODE_RECORD)))
2418     goto unsupported_mode;
2419
2420   /* parse the keymgmt */
2421   if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_KEYMGMT,
2422           &keymgmt, 0) == GST_RTSP_OK) {
2423     if (!gst_rtsp_stream_handle_keymgmt (ctx->stream, keymgmt))
2424       goto keymgmt_error;
2425   }
2426
2427   if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT_RANGES,
2428           &accept_range, 0) == GST_RTSP_OK) {
2429     GEnumValue *runit = NULL;
2430     gint i;
2431     gchar **valid_ranges;
2432     GEnumClass *runit_class = g_type_class_ref (GST_TYPE_RTSP_RANGE_UNIT);
2433
2434     gst_rtsp_message_dump (ctx->request);
2435     valid_ranges = g_strsplit (accept_range, ",", -1);
2436
2437     for (i = 0; valid_ranges[i]; i++) {
2438       gchar *range = valid_ranges[i];
2439
2440       while (*range == ' ')
2441         range++;
2442
2443       runit = g_enum_get_value_by_nick (runit_class, range);
2444       if (runit)
2445         break;
2446     }
2447     g_strfreev (valid_ranges);
2448     g_type_class_unref (runit_class);
2449
2450     if (!runit)
2451       goto unsupported_range_unit;
2452   }
2453
2454   if (sessmedia == NULL) {
2455     /* manage the media in our session now, if not done already  */
2456     sessmedia =
2457         gst_rtsp_session_manage_media (session, path, g_object_ref (media));
2458     /* if we stil have no media, error */
2459     if (sessmedia == NULL)
2460       goto sessmedia_unavailable;
2461
2462     /* don't cache media anymore */
2463     clean_cached_media (client, FALSE);
2464   }
2465
2466   ctx->sessmedia = sessmedia;
2467
2468   /* update the client transport */
2469   if (!klass->configure_client_transport (client, ctx, ct))
2470     goto unsupported_client_transport;
2471
2472   /* set in the session media transport */
2473   trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
2474
2475   ctx->trans = trans;
2476
2477   /* configure the url used to set this transport, this we will use when
2478    * generating the response for the PLAY request */
2479   gst_rtsp_stream_transport_set_url (trans, uri);
2480   /* configure keepalive for this transport */
2481   gst_rtsp_stream_transport_set_keepalive (trans,
2482       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
2483
2484   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
2485     /* our callbacks to send data on this TCP connection */
2486     gst_rtsp_stream_transport_set_callbacks (trans,
2487         (GstRTSPSendFunc) do_send_data,
2488         (GstRTSPSendFunc) do_send_data, client, NULL);
2489
2490     g_hash_table_insert (priv->transports,
2491         GINT_TO_POINTER (ct->interleaved.min), trans);
2492     g_object_ref (trans);
2493     g_hash_table_insert (priv->transports,
2494         GINT_TO_POINTER (ct->interleaved.max), trans);
2495     g_object_ref (trans);
2496     add_data_seq (client, ct->interleaved.min);
2497     add_data_seq (client, ct->interleaved.max);
2498   }
2499
2500   /* create and serialize the server transport */
2501   st = make_server_transport (client, media, ctx, ct);
2502   trans_str = gst_rtsp_transport_as_text (st);
2503   gst_rtsp_transport_free (st);
2504
2505   /* construct the response now */
2506   code = GST_RTSP_STS_OK;
2507   gst_rtsp_message_init_response (ctx->response, code,
2508       gst_rtsp_status_as_text (code), ctx->request);
2509
2510   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
2511       trans_str);
2512   g_free (trans_str);
2513
2514   if (pipelined_request_id)
2515     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PIPELINED_REQUESTS,
2516         pipelined_request_id);
2517
2518   if (ctx->request->type_data.request.version >= GST_RTSP_VERSION_2_0) {
2519     GstClockTimeDiff seekable = gst_rtsp_media_seekable (media);
2520     GString *media_properties = g_string_new (NULL);
2521
2522     if (seekable == -1)
2523       g_string_append (media_properties,
2524           "No-Seeking,Time-Progressing,Time-Duration=0.0");
2525     else if (seekable == 0)
2526       g_string_append (media_properties, "Beginning-Only");
2527     else if (seekable == G_MAXINT64)
2528       g_string_append (media_properties, "Random-Access");
2529     else
2530       g_string_append_printf (media_properties,
2531           "Random-Access=%f, Unlimited, Immutable",
2532           (gdouble) seekable / GST_SECOND);
2533
2534     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_MEDIA_PROPERTIES,
2535         g_string_free (media_properties, FALSE));
2536     /* TODO Check how Accept-Ranges should be filled */
2537     gst_rtsp_message_add_header (ctx->request, GST_RTSP_HDR_ACCEPT_RANGES,
2538         "npt, clock, smpte, clock");
2539   }
2540
2541   send_message (client, ctx, ctx->response, FALSE);
2542
2543   /* update the state */
2544   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
2545   switch (rtspstate) {
2546     case GST_RTSP_STATE_PLAYING:
2547     case GST_RTSP_STATE_RECORDING:
2548     case GST_RTSP_STATE_READY:
2549       /* no state change */
2550       break;
2551     default:
2552       gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
2553       break;
2554   }
2555   g_object_unref (media);
2556   g_object_unref (session);
2557   g_free (path);
2558
2559   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
2560
2561   return TRUE;
2562
2563   /* ERRORS */
2564 no_uri:
2565   {
2566     GST_ERROR ("client %p: no uri", client);
2567     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2568     return FALSE;
2569   }
2570 no_transport:
2571   {
2572     GST_ERROR ("client %p: no transport", client);
2573     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2574     goto cleanup_path;
2575   }
2576 no_pool:
2577   {
2578     GST_ERROR ("client %p: no session pool configured", client);
2579     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2580     goto cleanup_path;
2581   }
2582 media_not_found_no_reply:
2583   {
2584     GST_ERROR ("client %p: media '%s' not found", client, path);
2585     /* error reply is already sent */
2586     goto cleanup_session;
2587   }
2588 media_not_found:
2589   {
2590     GST_ERROR ("client %p: media '%s' not found", client, path);
2591     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2592     goto cleanup_session;
2593   }
2594 control_not_found:
2595   {
2596     GST_ERROR ("client %p: no control in path '%s'", client, path);
2597     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2598     g_object_unref (media);
2599     goto cleanup_session;
2600   }
2601 stream_not_found:
2602   {
2603     GST_ERROR ("client %p: stream '%s' not found", client,
2604         GST_STR_NULL (control));
2605     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2606     g_object_unref (media);
2607     goto cleanup_session;
2608   }
2609 sig_failed:
2610   {
2611     GST_ERROR ("client %p: pre signal returned error: %s", client,
2612         gst_rtsp_status_as_text (sig_result));
2613     send_generic_response (client, sig_result, ctx);
2614     g_object_unref (media);
2615     goto cleanup_path;
2616   }
2617 service_unavailable:
2618   {
2619     GST_ERROR ("client %p: can't create session", client);
2620     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2621     g_object_unref (media);
2622     goto cleanup_session;
2623   }
2624 sessmedia_unavailable:
2625   {
2626     GST_ERROR ("client %p: can't create session media", client);
2627     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2628     goto cleanup_transport;
2629   }
2630 configure_media_failed_no_reply:
2631   {
2632     GST_ERROR ("client %p: configure_media failed", client);
2633     g_object_unref (media);
2634     /* error reply is already sent */
2635     goto cleanup_session;
2636   }
2637 unsupported_transports:
2638   {
2639     GST_ERROR ("client %p: unsupported transports", client);
2640     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2641     goto cleanup_transport;
2642   }
2643 unsupported_client_transport:
2644   {
2645     GST_ERROR ("client %p: unsupported client transport", client);
2646     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2647     goto cleanup_transport;
2648   }
2649 unsupported_mode:
2650   {
2651     GST_ERROR ("client %p: unsupported mode (media play: %d, media record: %d, "
2652         "mode play: %d, mode record: %d)", client,
2653         ! !(gst_rtsp_media_get_transport_mode (media) &
2654             GST_RTSP_TRANSPORT_MODE_PLAY),
2655         ! !(gst_rtsp_media_get_transport_mode (media) &
2656             GST_RTSP_TRANSPORT_MODE_RECORD), ct->mode_play, ct->mode_record);
2657     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2658     goto cleanup_transport;
2659   }
2660 unsupported_range_unit:
2661   {
2662     GST_ERROR ("Client %p: does not support any range format we support",
2663         client);
2664     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2665     goto cleanup_transport;
2666   }
2667 keymgmt_error:
2668   {
2669     GST_ERROR ("client %p: keymgmt error", client);
2670     send_generic_response (client, GST_RTSP_STS_KEY_MANAGEMENT_FAILURE, ctx);
2671     goto cleanup_transport;
2672   }
2673   {
2674   cleanup_transport:
2675     gst_rtsp_transport_free (ct);
2676     if (media)
2677       g_object_unref (media);
2678   cleanup_session:
2679     if (new_session)
2680       gst_rtsp_session_pool_remove (priv->session_pool, session);
2681     if (session)
2682       g_object_unref (session);
2683   cleanup_path:
2684     g_free (path);
2685     return FALSE;
2686   }
2687 }
2688
2689 static GstSDPMessage *
2690 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
2691 {
2692   GstRTSPClientPrivate *priv = client->priv;
2693   GstSDPMessage *sdp;
2694   GstSDPInfo info;
2695   const gchar *proto;
2696   guint64 session_id_tmp;
2697   gchar session_id[21];
2698
2699   gst_sdp_message_new (&sdp);
2700
2701   /* some standard things first */
2702   gst_sdp_message_set_version (sdp, "0");
2703
2704   if (priv->is_ipv6)
2705     proto = "IP6";
2706   else
2707     proto = "IP4";
2708
2709   session_id_tmp = (((guint64) g_random_int ()) << 32) | g_random_int ();
2710   g_snprintf (session_id, sizeof (session_id), "%" G_GUINT64_FORMAT,
2711       session_id_tmp);
2712
2713   gst_sdp_message_set_origin (sdp, "-", session_id, "1", "IN", proto,
2714       priv->server_ip);
2715
2716   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
2717   gst_sdp_message_set_information (sdp, "rtsp-server");
2718   gst_sdp_message_add_time (sdp, "0", "0", NULL);
2719   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
2720   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
2721   gst_sdp_message_add_attribute (sdp, "control", "*");
2722
2723   info.is_ipv6 = priv->is_ipv6;
2724   info.server_ip = priv->server_ip;
2725
2726   /* create an SDP for the media object */
2727   if (!gst_rtsp_media_setup_sdp (media, sdp, &info))
2728     goto no_sdp;
2729
2730   return sdp;
2731
2732   /* ERRORS */
2733 no_sdp:
2734   {
2735     GST_ERROR ("client %p: could not create SDP", client);
2736     gst_sdp_message_free (sdp);
2737     return NULL;
2738   }
2739 }
2740
2741 /* for the describe we must generate an SDP */
2742 static gboolean
2743 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
2744 {
2745   GstRTSPClientPrivate *priv = client->priv;
2746   GstRTSPResult res;
2747   GstSDPMessage *sdp;
2748   guint i;
2749   gchar *path, *str;
2750   GstRTSPMedia *media;
2751   GstRTSPClientClass *klass;
2752   GstRTSPStatusCode sig_result;
2753
2754   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2755
2756   if (!ctx->uri)
2757     goto no_uri;
2758
2759   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_DESCRIBE_REQUEST],
2760       0, ctx, &sig_result);
2761   if (sig_result != GST_RTSP_STS_OK) {
2762     goto sig_failed;
2763   }
2764
2765   /* check what kind of format is accepted, we don't really do anything with it
2766    * and always return SDP for now. */
2767   for (i = 0;; i++) {
2768     gchar *accept;
2769
2770     res =
2771         gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
2772         &accept, i);
2773     if (res == GST_RTSP_ENOTIMPL)
2774       break;
2775
2776     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
2777       break;
2778   }
2779
2780   if (!priv->mount_points)
2781     goto no_mount_points;
2782
2783   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2784     goto no_path;
2785
2786   /* find the media object for the uri */
2787   if (!(media = find_media (client, ctx, path, NULL)))
2788     goto no_media;
2789
2790   if (!(gst_rtsp_media_get_transport_mode (media) &
2791           GST_RTSP_TRANSPORT_MODE_PLAY))
2792     goto unsupported_mode;
2793
2794   /* create an SDP for the media object on this client */
2795   if (!(sdp = klass->create_sdp (client, media)))
2796     goto no_sdp;
2797
2798   /* we suspend after the describe */
2799   gst_rtsp_media_suspend (media);
2800   g_object_unref (media);
2801
2802   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2803       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2804
2805   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
2806       "application/sdp");
2807
2808   /* content base for some clients that might screw up creating the setup uri */
2809   str = make_base_url (client, ctx->uri, path);
2810   g_free (path);
2811
2812   GST_INFO ("adding content-base: %s", str);
2813   gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE, str);
2814
2815   /* add SDP to the response body */
2816   str = gst_sdp_message_as_text (sdp);
2817   gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
2818   gst_sdp_message_free (sdp);
2819
2820   send_message (client, ctx, ctx->response, FALSE);
2821
2822   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
2823       0, ctx);
2824
2825   return TRUE;
2826
2827   /* ERRORS */
2828 sig_failed:
2829   {
2830     GST_ERROR ("client %p: pre signal returned error: %s", client,
2831         gst_rtsp_status_as_text (sig_result));
2832     send_generic_response (client, sig_result, ctx);
2833     return FALSE;
2834   }
2835 no_uri:
2836   {
2837     GST_ERROR ("client %p: no uri", client);
2838     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2839     return FALSE;
2840   }
2841 no_mount_points:
2842   {
2843     GST_ERROR ("client %p: no mount points configured", client);
2844     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2845     return FALSE;
2846   }
2847 no_path:
2848   {
2849     GST_ERROR ("client %p: can't find path for url", client);
2850     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2851     return FALSE;
2852   }
2853 no_media:
2854   {
2855     GST_ERROR ("client %p: no media", client);
2856     g_free (path);
2857     /* error reply is already sent */
2858     return FALSE;
2859   }
2860 unsupported_mode:
2861   {
2862     GST_ERROR ("client %p: media does not support DESCRIBE", client);
2863     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
2864     g_free (path);
2865     g_object_unref (media);
2866     return FALSE;
2867   }
2868 no_sdp:
2869   {
2870     GST_ERROR ("client %p: can't create SDP", client);
2871     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2872     g_free (path);
2873     g_object_unref (media);
2874     return FALSE;
2875   }
2876 }
2877
2878 static gboolean
2879 handle_sdp (GstRTSPClient * client, GstRTSPContext * ctx, GstRTSPMedia * media,
2880     GstSDPMessage * sdp)
2881 {
2882   GstRTSPClientPrivate *priv = client->priv;
2883   GstRTSPThread *thread;
2884
2885   /* create an SDP for the media object */
2886   if (!gst_rtsp_media_handle_sdp (media, sdp))
2887     goto unhandled_sdp;
2888
2889   thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
2890       GST_RTSP_THREAD_TYPE_MEDIA, ctx);
2891   if (thread == NULL)
2892     goto no_thread;
2893
2894   /* prepare the media */
2895   if (!gst_rtsp_media_prepare (media, thread))
2896     goto no_prepare;
2897
2898   return TRUE;
2899
2900   /* ERRORS */
2901 unhandled_sdp:
2902   {
2903     GST_ERROR ("client %p: could not handle SDP", client);
2904     return FALSE;
2905   }
2906 no_thread:
2907   {
2908     GST_ERROR ("client %p: can't create thread", client);
2909     return FALSE;
2910   }
2911 no_prepare:
2912   {
2913     GST_ERROR ("client %p: can't prepare media", client);
2914     return FALSE;
2915   }
2916 }
2917
2918 static gboolean
2919 handle_announce_request (GstRTSPClient * client, GstRTSPContext * ctx)
2920 {
2921   GstRTSPClientPrivate *priv = client->priv;
2922   GstRTSPClientClass *klass;
2923   GstSDPResult sres;
2924   GstSDPMessage *sdp;
2925   GstRTSPMedia *media;
2926   gchar *path, *cont = NULL;
2927   guint8 *data;
2928   guint size;
2929   GstRTSPStatusCode sig_result;
2930   guint i, n_streams;
2931
2932   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2933
2934   if (!ctx->uri)
2935     goto no_uri;
2936
2937   if (!priv->mount_points)
2938     goto no_mount_points;
2939
2940   /* check if reply is SDP */
2941   gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_CONTENT_TYPE, &cont,
2942       0);
2943   /* could not be set but since the request returned OK, we assume it
2944    * was SDP, else check it. */
2945   if (cont) {
2946     if (g_ascii_strcasecmp (cont, "application/sdp") != 0)
2947       goto wrong_content_type;
2948   }
2949
2950   /* get message body and parse as SDP */
2951   gst_rtsp_message_get_body (ctx->request, &data, &size);
2952   if (data == NULL || size == 0)
2953     goto no_message;
2954
2955   GST_DEBUG ("client %p: parse SDP...", client);
2956   gst_sdp_message_new (&sdp);
2957   sres = gst_sdp_message_parse_buffer (data, size, sdp);
2958   if (sres != GST_SDP_OK)
2959     goto sdp_parse_failed;
2960
2961   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2962     goto no_path;
2963
2964   /* find the media object for the uri */
2965   if (!(media = find_media (client, ctx, path, NULL)))
2966     goto no_media;
2967
2968   ctx->media = media;
2969
2970   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_ANNOUNCE_REQUEST],
2971       0, ctx, &sig_result);
2972   if (sig_result != GST_RTSP_STS_OK) {
2973     goto sig_failed;
2974   }
2975
2976   if (!(gst_rtsp_media_get_transport_mode (media) &
2977           GST_RTSP_TRANSPORT_MODE_RECORD))
2978     goto unsupported_mode;
2979
2980   /* Tell client subclass about the media */
2981   if (!klass->handle_sdp (client, ctx, media, sdp))
2982     goto unhandled_sdp;
2983
2984   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2985       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2986
2987   n_streams = gst_rtsp_media_n_streams (media);
2988   for (i = 0; i < n_streams; i++) {
2989     GstRTSPStream *stream = gst_rtsp_media_get_stream (media, i);
2990     gchar *location =
2991         g_strdup_printf ("rtsp://%s%s:8554/stream=%d", priv->server_ip, path,
2992         i);
2993     gchar *keymgmt = stream_make_keymgmt (client, location, stream);
2994
2995     if (keymgmt)
2996       gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_KEYMGMT,
2997           keymgmt);
2998
2999     g_free (location);
3000   }
3001
3002   /* we suspend after the announce */
3003   gst_rtsp_media_suspend (media);
3004   g_object_unref (media);
3005
3006   send_message (client, ctx, ctx->response, FALSE);
3007
3008   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_ANNOUNCE_REQUEST],
3009       0, ctx);
3010
3011   gst_sdp_message_free (sdp);
3012   g_free (path);
3013   return TRUE;
3014
3015 no_uri:
3016   {
3017     GST_ERROR ("client %p: no uri", client);
3018     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3019     return FALSE;
3020   }
3021 no_mount_points:
3022   {
3023     GST_ERROR ("client %p: no mount points configured", client);
3024     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
3025     return FALSE;
3026   }
3027 no_path:
3028   {
3029     GST_ERROR ("client %p: can't find path for url", client);
3030     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
3031     gst_sdp_message_free (sdp);
3032     return FALSE;
3033   }
3034 wrong_content_type:
3035   {
3036     GST_ERROR ("client %p: unknown content type", client);
3037     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3038     return FALSE;
3039   }
3040 no_message:
3041   {
3042     GST_ERROR ("client %p: can't find SDP message", client);
3043     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3044     return FALSE;
3045   }
3046 sdp_parse_failed:
3047   {
3048     GST_ERROR ("client %p: failed to parse SDP message", client);
3049     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3050     gst_sdp_message_free (sdp);
3051     return FALSE;
3052   }
3053 no_media:
3054   {
3055     GST_ERROR ("client %p: no media", client);
3056     g_free (path);
3057     /* error reply is already sent */
3058     gst_sdp_message_free (sdp);
3059     return FALSE;
3060   }
3061 sig_failed:
3062   {
3063     GST_ERROR ("client %p: pre signal returned error: %s", client,
3064         gst_rtsp_status_as_text (sig_result));
3065     send_generic_response (client, sig_result, ctx);
3066     gst_sdp_message_free (sdp);
3067     return FALSE;
3068   }
3069 unsupported_mode:
3070   {
3071     GST_ERROR ("client %p: media does not support ANNOUNCE", client);
3072     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
3073     g_free (path);
3074     g_object_unref (media);
3075     gst_sdp_message_free (sdp);
3076     return FALSE;
3077   }
3078 unhandled_sdp:
3079   {
3080     GST_ERROR ("client %p: can't handle SDP", client);
3081     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_MEDIA_TYPE, ctx);
3082     g_free (path);
3083     g_object_unref (media);
3084     gst_sdp_message_free (sdp);
3085     return FALSE;
3086   }
3087 }
3088
3089 static gboolean
3090 handle_record_request (GstRTSPClient * client, GstRTSPContext * ctx)
3091 {
3092   GstRTSPSession *session;
3093   GstRTSPClientClass *klass;
3094   GstRTSPSessionMedia *sessmedia;
3095   GstRTSPMedia *media;
3096   GstRTSPUrl *uri;
3097   GstRTSPState rtspstate;
3098   gchar *path;
3099   gint matched;
3100   GstRTSPStatusCode sig_result;
3101   GPtrArray *transports;
3102
3103   if (!(session = ctx->session))
3104     goto no_session;
3105
3106   if (!(uri = ctx->uri))
3107     goto no_uri;
3108
3109   klass = GST_RTSP_CLIENT_GET_CLASS (client);
3110   path = klass->make_path_from_uri (client, uri);
3111
3112   /* get a handle to the configuration of the media in the session */
3113   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
3114   if (!sessmedia)
3115     goto not_found;
3116
3117   if (path[matched] != '\0')
3118     goto no_aggregate;
3119
3120   g_free (path);
3121
3122   ctx->sessmedia = sessmedia;
3123   ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
3124
3125   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_RECORD_REQUEST], 0,
3126       ctx, &sig_result);
3127   if (sig_result != GST_RTSP_STS_OK) {
3128     goto sig_failed;
3129   }
3130
3131   if (!(gst_rtsp_media_get_transport_mode (media) &
3132           GST_RTSP_TRANSPORT_MODE_RECORD))
3133     goto unsupported_mode;
3134
3135   /* the session state must be playing or ready */
3136   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
3137   if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
3138     goto invalid_state;
3139
3140   /* update the pipeline */
3141   transports = gst_rtsp_session_media_get_transports (sessmedia);
3142   if (!gst_rtsp_media_complete_pipeline (media, transports)) {
3143     g_ptr_array_unref (transports);
3144     goto pipeline_error;
3145   }
3146   g_ptr_array_unref (transports);
3147
3148   /* in record we first unsuspend, media could be suspended from SDP or PAUSED */
3149   if (!gst_rtsp_media_unsuspend (media))
3150     goto unsuspend_failed;
3151
3152   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
3153       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
3154
3155   send_message (client, ctx, ctx->response, FALSE);
3156
3157   /* start playing after sending the response */
3158   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
3159
3160   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
3161
3162   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_RECORD_REQUEST], 0,
3163       ctx);
3164
3165   return TRUE;
3166
3167   /* ERRORS */
3168 no_session:
3169   {
3170     GST_ERROR ("client %p: no session", client);
3171     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3172     return FALSE;
3173   }
3174 no_uri:
3175   {
3176     GST_ERROR ("client %p: no uri supplied", client);
3177     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3178     return FALSE;
3179   }
3180 not_found:
3181   {
3182     GST_ERROR ("client %p: media not found", client);
3183     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
3184     return FALSE;
3185   }
3186 no_aggregate:
3187   {
3188     GST_ERROR ("client %p: no aggregate path %s", client, path);
3189     send_generic_response (client,
3190         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
3191     g_free (path);
3192     return FALSE;
3193   }
3194 sig_failed:
3195   {
3196     GST_ERROR ("client %p: pre signal returned error: %s", client,
3197         gst_rtsp_status_as_text (sig_result));
3198     send_generic_response (client, sig_result, ctx);
3199     return FALSE;
3200   }
3201 unsupported_mode:
3202   {
3203     GST_ERROR ("client %p: media does not support RECORD", client);
3204     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
3205     return FALSE;
3206   }
3207 invalid_state:
3208   {
3209     GST_ERROR ("client %p: not PLAYING or READY", client);
3210     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
3211         ctx);
3212     return FALSE;
3213   }
3214 pipeline_error:
3215   {
3216     GST_ERROR ("client %p: failed to configure the pipeline", client);
3217     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
3218         ctx);
3219     return FALSE;
3220   }
3221 unsuspend_failed:
3222   {
3223     GST_ERROR ("client %p: unsuspend failed", client);
3224     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
3225     return FALSE;
3226   }
3227 }
3228
3229 static gboolean
3230 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx,
3231     GstRTSPVersion version)
3232 {
3233   GstRTSPMethod options;
3234   gchar *str;
3235   GstRTSPStatusCode sig_result;
3236
3237   options = GST_RTSP_DESCRIBE |
3238       GST_RTSP_OPTIONS |
3239       GST_RTSP_PAUSE |
3240       GST_RTSP_PLAY |
3241       GST_RTSP_SETUP |
3242       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
3243
3244   if (version < GST_RTSP_VERSION_2_0) {
3245     options |= GST_RTSP_RECORD;
3246     options |= GST_RTSP_ANNOUNCE;
3247   }
3248
3249   str = gst_rtsp_options_as_text (options);
3250
3251   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
3252       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
3253
3254   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
3255   g_free (str);
3256
3257   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_OPTIONS_REQUEST], 0,
3258       ctx, &sig_result);
3259   if (sig_result != GST_RTSP_STS_OK) {
3260     goto sig_failed;
3261   }
3262
3263   send_message (client, ctx, ctx->response, FALSE);
3264
3265   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
3266       0, ctx);
3267
3268   return TRUE;
3269
3270 /* ERRORS */
3271 sig_failed:
3272   {
3273     GST_ERROR ("client %p: pre signal returned error: %s", client,
3274         gst_rtsp_status_as_text (sig_result));
3275     send_generic_response (client, sig_result, ctx);
3276     gst_rtsp_message_free (ctx->response);
3277     return FALSE;
3278   }
3279 }
3280
3281 /* remove duplicate and trailing '/' */
3282 static void
3283 sanitize_uri (GstRTSPUrl * uri)
3284 {
3285   gint i, len;
3286   gchar *s, *d;
3287   gboolean have_slash, prev_slash;
3288
3289   s = d = uri->abspath;
3290   len = strlen (uri->abspath);
3291
3292   prev_slash = FALSE;
3293
3294   for (i = 0; i < len; i++) {
3295     have_slash = s[i] == '/';
3296     *d = s[i];
3297     if (!have_slash || !prev_slash)
3298       d++;
3299     prev_slash = have_slash;
3300   }
3301   len = d - uri->abspath;
3302   /* don't remove the first slash if that's the only thing left */
3303   if (len > 1 && *(d - 1) == '/')
3304     d--;
3305   *d = '\0';
3306 }
3307
3308 /* is called when the session is removed from its session pool. */
3309 static void
3310 client_session_removed (GstRTSPSessionPool * pool, GstRTSPSession * session,
3311     GstRTSPClient * client)
3312 {
3313   GstRTSPClientPrivate *priv = client->priv;
3314
3315   GST_INFO ("client %p: session %p removed", client, session);
3316
3317   g_mutex_lock (&priv->lock);
3318   client_unwatch_session (client, session, NULL);
3319   g_mutex_unlock (&priv->lock);
3320 }
3321
3322 /* Check for Require headers. Returns TRUE if there are no Require headers,
3323  * otherwise lets the application decide which headers are supported.
3324  * By default all headers are unsupported.
3325  * If there are unsupported options, FALSE will be returned together with
3326  * a newly-allocated string of (comma-separated) unsupported options in
3327  * the unsupported_reqs variable.
3328  *
3329  * There may be multiple Require headers, but we must send one single
3330  * Unsupported header with all the unsupported options as response. If
3331  * an incoming Require header contained a comma-separated list of options
3332  * GstRtspConnection will already have split that list up into multiple
3333  * headers.
3334  */
3335 static gboolean
3336 check_request_requirements (GstRTSPContext * ctx, gchar ** unsupported_reqs)
3337 {
3338   GstRTSPResult res;
3339   GPtrArray *arr = NULL;
3340   GstRTSPMessage *msg = ctx->request;
3341   gchar *reqs = NULL;
3342   gint i;
3343   gchar *sig_result = NULL;
3344   gboolean result = TRUE;
3345
3346   i = 0;
3347   do {
3348     res = gst_rtsp_message_get_header (msg, GST_RTSP_HDR_REQUIRE, &reqs, i++);
3349
3350     if (res == GST_RTSP_ENOTIMPL)
3351       break;
3352
3353     if (arr == NULL)
3354       arr = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free);
3355
3356     g_ptr_array_add (arr, g_strdup (reqs));
3357   }
3358   while (TRUE);
3359
3360   /* if we don't have any Require headers at all, all is fine */
3361   if (i == 1)
3362     return TRUE;
3363
3364   /* otherwise we've now processed at all the Require headers */
3365   g_ptr_array_add (arr, NULL);
3366
3367   g_signal_emit (ctx->client,
3368       gst_rtsp_client_signals[SIGNAL_CHECK_REQUIREMENTS], 0, ctx,
3369       (gchar **) arr->pdata, &sig_result);
3370
3371   if (sig_result == NULL) {
3372     /* no supported options, just report all of the required ones as
3373      * unsupported */
3374     *unsupported_reqs = g_strjoinv (", ", (gchar **) arr->pdata);
3375     result = FALSE;
3376     goto done;
3377   }
3378
3379   if (strlen (sig_result) == 0)
3380     g_free (sig_result);
3381   else {
3382     *unsupported_reqs = sig_result;
3383     result = FALSE;
3384   }
3385
3386 done:
3387   g_ptr_array_unref (arr);
3388   return result;
3389 }
3390
3391 static void
3392 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
3393 {
3394   GstRTSPClientPrivate *priv = client->priv;
3395   GstRTSPMethod method;
3396   const gchar *uristr;
3397   GstRTSPUrl *uri = NULL;
3398   GstRTSPVersion version;
3399   GstRTSPResult res;
3400   GstRTSPSession *session = NULL;
3401   GstRTSPContext sctx = { NULL }, *ctx;
3402   GstRTSPMessage response = { 0 };
3403   gchar *unsupported_reqs = NULL;
3404   gchar *sessid = NULL, *pipelined_request_id = NULL;
3405
3406   if (!(ctx = gst_rtsp_context_get_current ())) {
3407     ctx = &sctx;
3408     ctx->auth = priv->auth;
3409     gst_rtsp_context_push_current (ctx);
3410   }
3411
3412   ctx->conn = priv->connection;
3413   ctx->client = client;
3414   ctx->request = request;
3415   ctx->response = &response;
3416
3417   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
3418     gst_rtsp_message_dump (request);
3419   }
3420
3421   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
3422
3423   GST_INFO ("client %p: received a request %s %s %s", client,
3424       gst_rtsp_method_as_text (method), uristr,
3425       gst_rtsp_version_as_text (version));
3426
3427   /* we can only handle 1.0 requests */
3428   if (version != GST_RTSP_VERSION_1_0 && version != GST_RTSP_VERSION_2_0)
3429     goto not_supported;
3430
3431   ctx->method = method;
3432
3433   /* we always try to parse the url first */
3434   if (strcmp (uristr, "*") == 0) {
3435     /* special case where we have * as uri, keep uri = NULL */
3436   } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
3437     /* check if the uristr is an absolute path <=> scheme and host information
3438      * is missing */
3439     gchar *scheme;
3440
3441     scheme = g_uri_parse_scheme (uristr);
3442     if (scheme == NULL && g_str_has_prefix (uristr, "/")) {
3443       gchar *absolute_uristr = NULL;
3444
3445       GST_WARNING_OBJECT (client, "request doesn't contain absolute url");
3446       if (priv->server_ip == NULL) {
3447         GST_WARNING_OBJECT (client, "host information missing");
3448         goto bad_request;
3449       }
3450
3451       absolute_uristr =
3452           g_strdup_printf ("rtsp://%s%s", priv->server_ip, uristr);
3453
3454       GST_DEBUG_OBJECT (client, "absolute url: %s", absolute_uristr);
3455       if (gst_rtsp_url_parse (absolute_uristr, &uri) != GST_RTSP_OK) {
3456         g_free (absolute_uristr);
3457         goto bad_request;
3458       }
3459       g_free (absolute_uristr);
3460     } else {
3461       g_free (scheme);
3462       goto bad_request;
3463     }
3464   }
3465
3466   /* get the session if there is any */
3467   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_PIPELINED_REQUESTS,
3468       &pipelined_request_id, 0);
3469   if (res == GST_RTSP_OK) {
3470     sessid = g_hash_table_lookup (client->priv->pipelined_requests,
3471         pipelined_request_id);
3472
3473     if (!sessid)
3474       res = GST_RTSP_ERROR;
3475   }
3476
3477   if (res != GST_RTSP_OK)
3478     res =
3479         gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
3480
3481   if (res == GST_RTSP_OK) {
3482     if (priv->session_pool == NULL)
3483       goto no_pool;
3484
3485     /* we had a session in the request, find it again */
3486     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
3487       goto session_not_found;
3488
3489     /* we add the session to the client list of watched sessions. When a session
3490      * disappears because it times out, we will be notified. If all sessions are
3491      * gone, we will close the connection */
3492     client_watch_session (client, session);
3493   }
3494
3495   /* sanitize the uri */
3496   if (uri)
3497     sanitize_uri (uri);
3498   ctx->uri = uri;
3499   ctx->session = session;
3500
3501   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
3502     goto not_authorized;
3503
3504   /* handle any 'Require' headers */
3505   if (!check_request_requirements (ctx, &unsupported_reqs))
3506     goto unsupported_requirement;
3507
3508   /* now see what is asked and dispatch to a dedicated handler */
3509   switch (method) {
3510     case GST_RTSP_OPTIONS:
3511       priv->version = version;
3512       handle_options_request (client, ctx, version);
3513       break;
3514     case GST_RTSP_DESCRIBE:
3515       handle_describe_request (client, ctx);
3516       break;
3517     case GST_RTSP_SETUP:
3518       handle_setup_request (client, ctx);
3519       break;
3520     case GST_RTSP_PLAY:
3521       handle_play_request (client, ctx);
3522       break;
3523     case GST_RTSP_PAUSE:
3524       handle_pause_request (client, ctx);
3525       break;
3526     case GST_RTSP_TEARDOWN:
3527       handle_teardown_request (client, ctx);
3528       break;
3529     case GST_RTSP_SET_PARAMETER:
3530       handle_set_param_request (client, ctx);
3531       break;
3532     case GST_RTSP_GET_PARAMETER:
3533       handle_get_param_request (client, ctx);
3534       break;
3535     case GST_RTSP_ANNOUNCE:
3536       if (version >= GST_RTSP_VERSION_2_0)
3537         goto invalid_command_for_version;
3538       handle_announce_request (client, ctx);
3539       break;
3540     case GST_RTSP_RECORD:
3541       if (version >= GST_RTSP_VERSION_2_0)
3542         goto invalid_command_for_version;
3543       handle_record_request (client, ctx);
3544       break;
3545     case GST_RTSP_REDIRECT:
3546       goto not_implemented;
3547     case GST_RTSP_INVALID:
3548     default:
3549       goto bad_request;
3550   }
3551
3552 done:
3553   if (ctx == &sctx)
3554     gst_rtsp_context_pop_current (ctx);
3555   if (session)
3556     g_object_unref (session);
3557   if (uri)
3558     gst_rtsp_url_free (uri);
3559   return;
3560
3561   /* ERRORS */
3562 not_supported:
3563   {
3564     GST_ERROR ("client %p: version %d not supported", client, version);
3565     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
3566         ctx);
3567     goto done;
3568   }
3569 invalid_command_for_version:
3570   {
3571     GST_ERROR ("client %p: invalid command for version", client);
3572     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3573     goto done;
3574   }
3575 bad_request:
3576   {
3577     GST_ERROR ("client %p: bad request", client);
3578     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3579     goto done;
3580   }
3581 no_pool:
3582   {
3583     GST_ERROR ("client %p: no pool configured", client);
3584     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3585     goto done;
3586   }
3587 session_not_found:
3588   {
3589     GST_ERROR ("client %p: session not found", client);
3590     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3591     goto done;
3592   }
3593 not_authorized:
3594   {
3595     GST_ERROR ("client %p: not allowed", client);
3596     /* error reply is already sent */
3597     goto done;
3598   }
3599 unsupported_requirement:
3600   {
3601     GST_ERROR ("client %p: Required option is not supported (%s)", client,
3602         unsupported_reqs);
3603     send_option_not_supported_response (client, ctx, unsupported_reqs);
3604     g_free (unsupported_reqs);
3605     goto done;
3606   }
3607 not_implemented:
3608   {
3609     GST_ERROR ("client %p: method %d not implemented", client, method);
3610     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
3611     goto done;
3612   }
3613 }
3614
3615
3616 static void
3617 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
3618 {
3619   GstRTSPClientPrivate *priv = client->priv;
3620   GstRTSPResult res;
3621   GstRTSPSession *session = NULL;
3622   GstRTSPContext sctx = { NULL }, *ctx;
3623   gchar *sessid;
3624
3625   if (!(ctx = gst_rtsp_context_get_current ())) {
3626     ctx = &sctx;
3627     ctx->auth = priv->auth;
3628     gst_rtsp_context_push_current (ctx);
3629   }
3630
3631   ctx->conn = priv->connection;
3632   ctx->client = client;
3633   ctx->request = NULL;
3634   ctx->uri = NULL;
3635   ctx->method = GST_RTSP_INVALID;
3636   ctx->response = response;
3637
3638   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
3639     gst_rtsp_message_dump (response);
3640   }
3641
3642   GST_INFO ("client %p: received a response", client);
3643
3644   /* get the session if there is any */
3645   res =
3646       gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
3647   if (res == GST_RTSP_OK) {
3648     if (priv->session_pool == NULL)
3649       goto no_pool;
3650
3651     /* we had a session in the request, find it again */
3652     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
3653       goto session_not_found;
3654
3655     /* we add the session to the client list of watched sessions. When a session
3656      * disappears because it times out, we will be notified. If all sessions are
3657      * gone, we will close the connection */
3658     client_watch_session (client, session);
3659   }
3660
3661   ctx->session = session;
3662
3663   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
3664       0, ctx);
3665
3666 done:
3667   if (ctx == &sctx)
3668     gst_rtsp_context_pop_current (ctx);
3669   if (session)
3670     g_object_unref (session);
3671   return;
3672
3673 no_pool:
3674   {
3675     GST_ERROR ("client %p: no pool configured", client);
3676     goto done;
3677   }
3678 session_not_found:
3679   {
3680     GST_ERROR ("client %p: session not found", client);
3681     goto done;
3682   }
3683 }
3684
3685 static void
3686 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
3687 {
3688   GstRTSPClientPrivate *priv = client->priv;
3689   GstRTSPResult res;
3690   guint8 channel;
3691   guint8 *data;
3692   guint size;
3693   GstBuffer *buffer;
3694   GstRTSPStreamTransport *trans;
3695
3696   /* find the stream for this message */
3697   res = gst_rtsp_message_parse_data (message, &channel);
3698   if (res != GST_RTSP_OK)
3699     return;
3700
3701   gst_rtsp_message_get_body (message, &data, &size);
3702   if (size < 2)
3703     goto invalid_length;
3704
3705   gst_rtsp_message_steal_body (message, &data, &size);
3706
3707   /* Strip trailing \0 (which GstRTSPConnection adds) */
3708   --size;
3709
3710   buffer = gst_buffer_new_wrapped (data, size);
3711
3712   trans =
3713       g_hash_table_lookup (priv->transports, GINT_TO_POINTER ((gint) channel));
3714   if (trans) {
3715     GSocketAddress *addr;
3716
3717     /* Only create the socket address once for the transport, we don't really
3718      * want to do that for every single packet.
3719      *
3720      * The netaddress meta is later used by the RTP stack to know where
3721      * packets came from and allows us to match it again to a stream transport
3722      *
3723      * In theory we could use the remote socket address of the RTSP connection
3724      * here, but this would fail with a custom configure_client_transport()
3725      * implementation.
3726      */
3727     if (!(addr =
3728             g_object_get_data (G_OBJECT (trans), "rtsp-client.remote-addr"))) {
3729       const GstRTSPTransport *tr;
3730       GInetAddress *iaddr;
3731
3732       tr = gst_rtsp_stream_transport_get_transport (trans);
3733       iaddr = g_inet_address_new_from_string (tr->destination);
3734       if (iaddr) {
3735         addr = g_inet_socket_address_new (iaddr, tr->client_port.min);
3736         g_object_unref (iaddr);
3737         g_object_set_data_full (G_OBJECT (trans), "rtsp-client.remote-addr",
3738             addr, (GDestroyNotify) g_object_unref);
3739       }
3740     }
3741
3742     if (addr) {
3743       gst_buffer_add_net_address_meta (buffer, addr);
3744     }
3745
3746     /* dispatch to the stream based on the channel number */
3747     GST_LOG_OBJECT (client, "%u bytes of data on channel %u", size, channel);
3748     gst_rtsp_stream_transport_recv_data (trans, channel, buffer);
3749   } else {
3750     GST_DEBUG_OBJECT (client, "received %u bytes of data for "
3751         "unknown channel %u", size, channel);
3752     gst_buffer_unref (buffer);
3753   }
3754
3755   return;
3756
3757 /* ERRORS */
3758 invalid_length:
3759   {
3760     GST_DEBUG ("client %p: Short message received, ignoring", client);
3761     return;
3762   }
3763 }
3764
3765 /**
3766  * gst_rtsp_client_set_session_pool:
3767  * @client: a #GstRTSPClient
3768  * @pool: (transfer none) (nullable): a #GstRTSPSessionPool
3769  *
3770  * Set @pool as the sessionpool for @client which it will use to find
3771  * or allocate sessions. the sessionpool is usually inherited from the server
3772  * that created the client but can be overridden later.
3773  */
3774 void
3775 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
3776     GstRTSPSessionPool * pool)
3777 {
3778   GstRTSPSessionPool *old;
3779   GstRTSPClientPrivate *priv;
3780
3781   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3782
3783   priv = client->priv;
3784
3785   if (pool)
3786     g_object_ref (pool);
3787
3788   g_mutex_lock (&priv->lock);
3789   old = priv->session_pool;
3790   priv->session_pool = pool;
3791
3792   if (priv->session_removed_id) {
3793     g_signal_handler_disconnect (old, priv->session_removed_id);
3794     priv->session_removed_id = 0;
3795   }
3796   g_mutex_unlock (&priv->lock);
3797
3798   /* FIXME, should remove all sessions from the old pool for this client */
3799   if (old)
3800     g_object_unref (old);
3801 }
3802
3803 /**
3804  * gst_rtsp_client_get_session_pool:
3805  * @client: a #GstRTSPClient
3806  *
3807  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
3808  *
3809  * Returns: (transfer full) (nullable): a #GstRTSPSessionPool, unref after usage.
3810  */
3811 GstRTSPSessionPool *
3812 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
3813 {
3814   GstRTSPClientPrivate *priv;
3815   GstRTSPSessionPool *result;
3816
3817   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3818
3819   priv = client->priv;
3820
3821   g_mutex_lock (&priv->lock);
3822   if ((result = priv->session_pool))
3823     g_object_ref (result);
3824   g_mutex_unlock (&priv->lock);
3825
3826   return result;
3827 }
3828
3829 /**
3830  * gst_rtsp_client_set_mount_points:
3831  * @client: a #GstRTSPClient
3832  * @mounts: (transfer none) (nullable): a #GstRTSPMountPoints
3833  *
3834  * Set @mounts as the mount points for @client which it will use to map urls
3835  * to media streams. These mount points are usually inherited from the server that
3836  * created the client but can be overriden later.
3837  */
3838 void
3839 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
3840     GstRTSPMountPoints * mounts)
3841 {
3842   GstRTSPClientPrivate *priv;
3843   GstRTSPMountPoints *old;
3844
3845   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3846
3847   priv = client->priv;
3848
3849   if (mounts)
3850     g_object_ref (mounts);
3851
3852   g_mutex_lock (&priv->lock);
3853   old = priv->mount_points;
3854   priv->mount_points = mounts;
3855   g_mutex_unlock (&priv->lock);
3856
3857   if (old)
3858     g_object_unref (old);
3859 }
3860
3861 /**
3862  * gst_rtsp_client_get_mount_points:
3863  * @client: a #GstRTSPClient
3864  *
3865  * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
3866  *
3867  * Returns: (transfer full) (nullable): a #GstRTSPMountPoints, unref after usage.
3868  */
3869 GstRTSPMountPoints *
3870 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
3871 {
3872   GstRTSPClientPrivate *priv;
3873   GstRTSPMountPoints *result;
3874
3875   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3876
3877   priv = client->priv;
3878
3879   g_mutex_lock (&priv->lock);
3880   if ((result = priv->mount_points))
3881     g_object_ref (result);
3882   g_mutex_unlock (&priv->lock);
3883
3884   return result;
3885 }
3886
3887 /**
3888  * gst_rtsp_client_set_auth:
3889  * @client: a #GstRTSPClient
3890  * @auth: (transfer none) (nullable): a #GstRTSPAuth
3891  *
3892  * configure @auth to be used as the authentication manager of @client.
3893  */
3894 void
3895 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
3896 {
3897   GstRTSPClientPrivate *priv;
3898   GstRTSPAuth *old;
3899
3900   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3901
3902   priv = client->priv;
3903
3904   if (auth)
3905     g_object_ref (auth);
3906
3907   g_mutex_lock (&priv->lock);
3908   old = priv->auth;
3909   priv->auth = auth;
3910   g_mutex_unlock (&priv->lock);
3911
3912   if (old)
3913     g_object_unref (old);
3914 }
3915
3916
3917 /**
3918  * gst_rtsp_client_get_auth:
3919  * @client: a #GstRTSPClient
3920  *
3921  * Get the #GstRTSPAuth used as the authentication manager of @client.
3922  *
3923  * Returns: (transfer full) (nullable): the #GstRTSPAuth of @client.
3924  * g_object_unref() after usage.
3925  */
3926 GstRTSPAuth *
3927 gst_rtsp_client_get_auth (GstRTSPClient * client)
3928 {
3929   GstRTSPClientPrivate *priv;
3930   GstRTSPAuth *result;
3931
3932   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3933
3934   priv = client->priv;
3935
3936   g_mutex_lock (&priv->lock);
3937   if ((result = priv->auth))
3938     g_object_ref (result);
3939   g_mutex_unlock (&priv->lock);
3940
3941   return result;
3942 }
3943
3944 /**
3945  * gst_rtsp_client_set_thread_pool:
3946  * @client: a #GstRTSPClient
3947  * @pool: (transfer none) (nullable): a #GstRTSPThreadPool
3948  *
3949  * configure @pool to be used as the thread pool of @client.
3950  */
3951 void
3952 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
3953     GstRTSPThreadPool * pool)
3954 {
3955   GstRTSPClientPrivate *priv;
3956   GstRTSPThreadPool *old;
3957
3958   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3959
3960   priv = client->priv;
3961
3962   if (pool)
3963     g_object_ref (pool);
3964
3965   g_mutex_lock (&priv->lock);
3966   old = priv->thread_pool;
3967   priv->thread_pool = pool;
3968   g_mutex_unlock (&priv->lock);
3969
3970   if (old)
3971     g_object_unref (old);
3972 }
3973
3974 /**
3975  * gst_rtsp_client_get_thread_pool:
3976  * @client: a #GstRTSPClient
3977  *
3978  * Get the #GstRTSPThreadPool used as the thread pool of @client.
3979  *
3980  * Returns: (transfer full) (nullable): the #GstRTSPThreadPool of @client. g_object_unref() after
3981  * usage.
3982  */
3983 GstRTSPThreadPool *
3984 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
3985 {
3986   GstRTSPClientPrivate *priv;
3987   GstRTSPThreadPool *result;
3988
3989   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3990
3991   priv = client->priv;
3992
3993   g_mutex_lock (&priv->lock);
3994   if ((result = priv->thread_pool))
3995     g_object_ref (result);
3996   g_mutex_unlock (&priv->lock);
3997
3998   return result;
3999 }
4000
4001 /**
4002  * gst_rtsp_client_set_connection:
4003  * @client: a #GstRTSPClient
4004  * @conn: (transfer full): a #GstRTSPConnection
4005  *
4006  * Set the #GstRTSPConnection of @client. This function takes ownership of
4007  * @conn.
4008  *
4009  * Returns: %TRUE on success.
4010  */
4011 gboolean
4012 gst_rtsp_client_set_connection (GstRTSPClient * client,
4013     GstRTSPConnection * conn)
4014 {
4015   GstRTSPClientPrivate *priv;
4016   GSocket *read_socket;
4017   GSocketAddress *address;
4018   GstRTSPUrl *url;
4019   GError *error = NULL;
4020
4021   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
4022   g_return_val_if_fail (conn != NULL, FALSE);
4023
4024   priv = client->priv;
4025
4026   read_socket = gst_rtsp_connection_get_read_socket (conn);
4027
4028   if (!(address = g_socket_get_local_address (read_socket, &error)))
4029     goto no_address;
4030
4031   g_free (priv->server_ip);
4032   /* keep the original ip that the client connected to */
4033   if (G_IS_INET_SOCKET_ADDRESS (address)) {
4034     GInetAddress *iaddr;
4035
4036     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
4037
4038     /* socket might be ipv6 but adress still ipv4 */
4039     priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
4040     priv->server_ip = g_inet_address_to_string (iaddr);
4041     g_object_unref (address);
4042   } else {
4043     priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
4044     priv->server_ip = g_strdup ("unknown");
4045   }
4046
4047   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
4048       priv->server_ip, priv->is_ipv6);
4049
4050   url = gst_rtsp_connection_get_url (conn);
4051   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
4052
4053   priv->connection = conn;
4054
4055   return TRUE;
4056
4057   /* ERRORS */
4058 no_address:
4059   {
4060     GST_ERROR ("could not get local address %s", error->message);
4061     g_error_free (error);
4062     return FALSE;
4063   }
4064 }
4065
4066 /**
4067  * gst_rtsp_client_get_connection:
4068  * @client: a #GstRTSPClient
4069  *
4070  * Get the #GstRTSPConnection of @client.
4071  *
4072  * Returns: (transfer none) (nullable): the #GstRTSPConnection of @client.
4073  * The connection object returned remains valid until the client is freed.
4074  */
4075 GstRTSPConnection *
4076 gst_rtsp_client_get_connection (GstRTSPClient * client)
4077 {
4078   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
4079
4080   return client->priv->connection;
4081 }
4082
4083 /**
4084  * gst_rtsp_client_set_send_func:
4085  * @client: a #GstRTSPClient
4086  * @func: (scope notified): a #GstRTSPClientSendFunc
4087  * @user_data: (closure): user data passed to @func
4088  * @notify: (allow-none): called when @user_data is no longer in use
4089  *
4090  * Set @func as the callback that will be called when a new message needs to be
4091  * sent to the client. @user_data is passed to @func and @notify is called when
4092  * @user_data is no longer in use.
4093  *
4094  * By default, the client will send the messages on the #GstRTSPConnection that
4095  * was configured with gst_rtsp_client_attach() was called.
4096  */
4097 void
4098 gst_rtsp_client_set_send_func (GstRTSPClient * client,
4099     GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
4100 {
4101   GstRTSPClientPrivate *priv;
4102   GDestroyNotify old_notify;
4103   gpointer old_data;
4104
4105   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
4106
4107   priv = client->priv;
4108
4109   g_mutex_lock (&priv->send_lock);
4110   priv->send_func = func;
4111   old_notify = priv->send_notify;
4112   old_data = priv->send_data;
4113   priv->send_notify = notify;
4114   priv->send_data = user_data;
4115   g_mutex_unlock (&priv->send_lock);
4116
4117   if (old_notify)
4118     old_notify (old_data);
4119 }
4120
4121 /**
4122  * gst_rtsp_client_handle_message:
4123  * @client: a #GstRTSPClient
4124  * @message: (transfer none): an #GstRTSPMessage
4125  *
4126  * Let the client handle @message.
4127  *
4128  * Returns: a #GstRTSPResult.
4129  */
4130 GstRTSPResult
4131 gst_rtsp_client_handle_message (GstRTSPClient * client,
4132     GstRTSPMessage * message)
4133 {
4134   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
4135   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
4136
4137   switch (message->type) {
4138     case GST_RTSP_MESSAGE_REQUEST:
4139       handle_request (client, message);
4140       break;
4141     case GST_RTSP_MESSAGE_RESPONSE:
4142       handle_response (client, message);
4143       break;
4144     case GST_RTSP_MESSAGE_DATA:
4145       handle_data (client, message);
4146       break;
4147     default:
4148       break;
4149   }
4150   return GST_RTSP_OK;
4151 }
4152
4153 /**
4154  * gst_rtsp_client_send_message:
4155  * @client: a #GstRTSPClient
4156  * @session: (allow-none) (transfer none): a #GstRTSPSession to send
4157  *   the message to or %NULL
4158  * @message: (transfer none): The #GstRTSPMessage to send
4159  *
4160  * Send a message message to the remote end. @message must be a
4161  * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
4162  */
4163 GstRTSPResult
4164 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
4165     GstRTSPMessage * message)
4166 {
4167   GstRTSPContext sctx = { NULL }
4168   , *ctx;
4169   GstRTSPClientPrivate *priv;
4170
4171   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
4172   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
4173   g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
4174       message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
4175
4176   priv = client->priv;
4177
4178   if (!(ctx = gst_rtsp_context_get_current ())) {
4179     ctx = &sctx;
4180     ctx->auth = priv->auth;
4181     gst_rtsp_context_push_current (ctx);
4182   }
4183
4184   ctx->conn = priv->connection;
4185   ctx->client = client;
4186   ctx->session = session;
4187
4188   send_message (client, ctx, message, FALSE);
4189
4190   if (ctx == &sctx)
4191     gst_rtsp_context_pop_current (ctx);
4192
4193   return GST_RTSP_OK;
4194 }
4195
4196 static gboolean
4197 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
4198     gboolean close, gpointer user_data)
4199 {
4200   GstRTSPClientPrivate *priv = client->priv;
4201   guint id = 0;
4202   GstRTSPResult ret;
4203
4204   /* send the message */
4205   ret = gst_rtsp_watch_send_message (priv->watch, message, &id);
4206   if (ret != GST_RTSP_OK)
4207     goto error;
4208
4209   /* if close flag is set, store the seq number so we can wait until it's
4210    * written to the client to close the connection */
4211   if (close)
4212     priv->close_seq = id;
4213
4214   if (gst_rtsp_message_get_type (message) == GST_RTSP_MESSAGE_DATA) {
4215     guint8 channel = 0;
4216     GstRTSPResult r;
4217
4218     r = gst_rtsp_message_parse_data (message, &channel);
4219     if (r != GST_RTSP_OK) {
4220       ret = r;
4221       goto error;
4222     }
4223
4224     /* check if the message has been queued for transmission in watch */
4225     if (id) {
4226       /* store the seq number so we can wait until it has been sent */
4227       GST_DEBUG_OBJECT (client, "wait for message %d, channel %d", id, channel);
4228       set_data_seq (client, channel, id);
4229     } else {
4230       GstRTSPStreamTransport *trans;
4231
4232       trans =
4233           g_hash_table_lookup (priv->transports,
4234           GINT_TO_POINTER ((gint) channel));
4235       if (trans) {
4236         GST_DEBUG_OBJECT (client, "emit 'message-sent' signal");
4237         g_mutex_unlock (&priv->send_lock);
4238         gst_rtsp_stream_transport_message_sent (trans);
4239         g_mutex_lock (&priv->send_lock);
4240       }
4241     }
4242   }
4243
4244   return ret == GST_RTSP_OK;
4245
4246   /* ERRORS */
4247 error:
4248   {
4249     GST_DEBUG_OBJECT (client, "got error %d", ret);
4250     return FALSE;
4251   }
4252 }
4253
4254 static GstRTSPResult
4255 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
4256     gpointer user_data)
4257 {
4258   return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
4259 }
4260
4261 static GstRTSPResult
4262 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
4263 {
4264   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4265   GstRTSPClientPrivate *priv = client->priv;
4266   GstRTSPStreamTransport *trans = NULL;
4267   guint8 channel = 0;
4268   gboolean close = FALSE;
4269
4270   g_mutex_lock (&priv->send_lock);
4271
4272   if (get_data_channel (client, cseq, &channel)) {
4273     trans = g_hash_table_lookup (priv->transports, GINT_TO_POINTER (channel));
4274     set_data_seq (client, channel, 0);
4275   }
4276
4277   if (priv->close_seq && priv->close_seq == cseq) {
4278     GST_INFO ("client %p: send close message", client);
4279     close = TRUE;
4280     priv->close_seq = 0;
4281   }
4282
4283   g_mutex_unlock (&priv->send_lock);
4284
4285   if (trans) {
4286     GST_DEBUG_OBJECT (client, "emit 'message-sent' signal");
4287     gst_rtsp_stream_transport_message_sent (trans);
4288   }
4289
4290   if (close)
4291     gst_rtsp_client_close (client);
4292
4293   return GST_RTSP_OK;
4294 }
4295
4296 static GstRTSPResult
4297 closed (GstRTSPWatch * watch, gpointer user_data)
4298 {
4299   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4300   GstRTSPClientPrivate *priv = client->priv;
4301   const gchar *tunnelid;
4302
4303   GST_INFO ("client %p: connection closed", client);
4304
4305   if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
4306     g_mutex_lock (&tunnels_lock);
4307     /* remove from tunnelids */
4308     g_hash_table_remove (tunnels, tunnelid);
4309     g_mutex_unlock (&tunnels_lock);
4310   }
4311
4312   gst_rtsp_watch_set_flushing (watch, TRUE);
4313   g_mutex_lock (&priv->watch_lock);
4314   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
4315   g_mutex_unlock (&priv->watch_lock);
4316
4317   return GST_RTSP_OK;
4318 }
4319
4320 static GstRTSPResult
4321 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
4322 {
4323   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4324   gchar *str;
4325
4326   str = gst_rtsp_strresult (result);
4327   GST_INFO ("client %p: received an error %s", client, str);
4328   g_free (str);
4329
4330   return GST_RTSP_OK;
4331 }
4332
4333 static GstRTSPResult
4334 error_full (GstRTSPWatch * watch, GstRTSPResult result,
4335     GstRTSPMessage * message, guint id, gpointer user_data)
4336 {
4337   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4338   gchar *str;
4339
4340   str = gst_rtsp_strresult (result);
4341   GST_INFO
4342       ("client %p: error when handling message %p with id %d: %s",
4343       client, message, id, str);
4344   g_free (str);
4345
4346   return GST_RTSP_OK;
4347 }
4348
4349 static gboolean
4350 remember_tunnel (GstRTSPClient * client)
4351 {
4352   GstRTSPClientPrivate *priv = client->priv;
4353   const gchar *tunnelid;
4354
4355   /* store client in the pending tunnels */
4356   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
4357   if (tunnelid == NULL)
4358     goto no_tunnelid;
4359
4360   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
4361
4362   /* we can't have two clients connecting with the same tunnelid */
4363   g_mutex_lock (&tunnels_lock);
4364   if (g_hash_table_lookup (tunnels, tunnelid))
4365     goto tunnel_existed;
4366
4367   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
4368   g_mutex_unlock (&tunnels_lock);
4369
4370   return TRUE;
4371
4372   /* ERRORS */
4373 no_tunnelid:
4374   {
4375     GST_ERROR ("client %p: no tunnelid provided", client);
4376     return FALSE;
4377   }
4378 tunnel_existed:
4379   {
4380     g_mutex_unlock (&tunnels_lock);
4381     GST_ERROR ("client %p: tunnel session %s already existed", client,
4382         tunnelid);
4383     return FALSE;
4384   }
4385 }
4386
4387 static GstRTSPResult
4388 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
4389 {
4390   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4391   GstRTSPClientPrivate *priv = client->priv;
4392
4393   GST_WARNING ("client %p: tunnel lost (connection %p)", client,
4394       priv->connection);
4395
4396   /* ignore error, it'll only be a problem when the client does a POST again */
4397   remember_tunnel (client);
4398
4399   return GST_RTSP_OK;
4400 }
4401
4402 static GstRTSPStatusCode
4403 handle_tunnel (GstRTSPClient * client)
4404 {
4405   GstRTSPClientPrivate *priv = client->priv;
4406   GstRTSPClient *oclient;
4407   GstRTSPClientPrivate *opriv;
4408   const gchar *tunnelid;
4409
4410   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
4411   if (tunnelid == NULL)
4412     goto no_tunnelid;
4413
4414   /* check for previous tunnel */
4415   g_mutex_lock (&tunnels_lock);
4416   oclient = g_hash_table_lookup (tunnels, tunnelid);
4417
4418   if (oclient == NULL) {
4419     /* no previous tunnel, remember tunnel */
4420     g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
4421     g_mutex_unlock (&tunnels_lock);
4422
4423     GST_INFO ("client %p: no previous tunnel found, remembering tunnel (%p)",
4424         client, priv->connection);
4425   } else {
4426     /* merge both tunnels into the first client */
4427     /* remove the old client from the table. ref before because removing it will
4428      * remove the ref to it. */
4429     g_object_ref (oclient);
4430     g_hash_table_remove (tunnels, tunnelid);
4431     g_mutex_unlock (&tunnels_lock);
4432
4433     opriv = oclient->priv;
4434
4435     g_mutex_lock (&opriv->watch_lock);
4436     if (opriv->watch == NULL)
4437       goto tunnel_closed;
4438     if (opriv->tstate == priv->tstate)
4439       goto tunnel_duplicate_id;
4440
4441     GST_INFO ("client %p: found previous tunnel %p (old %p, new %p)", client,
4442         oclient, opriv->connection, priv->connection);
4443
4444     gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
4445     gst_rtsp_watch_reset (priv->watch);
4446     gst_rtsp_watch_reset (opriv->watch);
4447     g_mutex_unlock (&opriv->watch_lock);
4448     g_object_unref (oclient);
4449
4450     /* the old client owns the tunnel now, the new one will be freed */
4451     g_source_destroy ((GSource *) priv->watch);
4452     priv->watch = NULL;
4453     gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
4454   }
4455
4456   return GST_RTSP_STS_OK;
4457
4458   /* ERRORS */
4459 no_tunnelid:
4460   {
4461     GST_ERROR ("client %p: no tunnelid provided", client);
4462     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
4463   }
4464 tunnel_closed:
4465   {
4466     GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
4467     g_mutex_unlock (&opriv->watch_lock);
4468     g_object_unref (oclient);
4469     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
4470   }
4471 tunnel_duplicate_id:
4472   {
4473     GST_ERROR ("client %p: tunnel session %s was duplicate", client, tunnelid);
4474     g_mutex_unlock (&opriv->watch_lock);
4475     g_object_unref (oclient);
4476     return GST_RTSP_STS_BAD_REQUEST;
4477   }
4478 }
4479
4480 static GstRTSPStatusCode
4481 tunnel_get (GstRTSPWatch * watch, gpointer user_data)
4482 {
4483   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4484
4485   GST_INFO ("client %p: tunnel get (connection %p)", client,
4486       client->priv->connection);
4487
4488   g_mutex_lock (&client->priv->lock);
4489   client->priv->tstate = TUNNEL_STATE_GET;
4490   g_mutex_unlock (&client->priv->lock);
4491
4492   return handle_tunnel (client);
4493 }
4494
4495 static GstRTSPResult
4496 tunnel_post (GstRTSPWatch * watch, gpointer user_data)
4497 {
4498   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4499
4500   GST_INFO ("client %p: tunnel post (connection %p)", client,
4501       client->priv->connection);
4502
4503   g_mutex_lock (&client->priv->lock);
4504   client->priv->tstate = TUNNEL_STATE_POST;
4505   g_mutex_unlock (&client->priv->lock);
4506
4507   if (handle_tunnel (client) != GST_RTSP_STS_OK)
4508     return GST_RTSP_ERROR;
4509
4510   return GST_RTSP_OK;
4511 }
4512
4513 static GstRTSPResult
4514 tunnel_http_response (GstRTSPWatch * watch, GstRTSPMessage * request,
4515     GstRTSPMessage * response, gpointer user_data)
4516 {
4517   GstRTSPClientClass *klass;
4518
4519   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4520   klass = GST_RTSP_CLIENT_GET_CLASS (client);
4521
4522   if (klass->tunnel_http_response) {
4523     klass->tunnel_http_response (client, request, response);
4524   }
4525
4526   return GST_RTSP_OK;
4527 }
4528
4529 static GstRTSPWatchFuncs watch_funcs = {
4530   message_received,
4531   message_sent,
4532   closed,
4533   error,
4534   tunnel_get,
4535   tunnel_post,
4536   error_full,
4537   tunnel_lost,
4538   tunnel_http_response
4539 };
4540
4541 static void
4542 client_watch_notify (GstRTSPClient * client)
4543 {
4544   GstRTSPClientPrivate *priv = client->priv;
4545   gboolean closed = TRUE;
4546
4547   GST_INFO ("client %p: watch destroyed", client);
4548   priv->watch = NULL;
4549   /* remove all sessions if the media says so and so drop the extra client ref */
4550   rtsp_ctrl_timeout_remove (priv);
4551   gst_rtsp_client_session_filter (client, cleanup_session, &closed);
4552   if (closed)
4553     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
4554   g_object_unref (client);
4555 }
4556
4557 /**
4558  * gst_rtsp_client_attach:
4559  * @client: a #GstRTSPClient
4560  * @context: (allow-none): a #GMainContext
4561  *
4562  * Attaches @client to @context. When the mainloop for @context is run, the
4563  * client will be dispatched. When @context is %NULL, the default context will be
4564  * used).
4565  *
4566  * This function should be called when the client properties and urls are fully
4567  * configured and the client is ready to start.
4568  *
4569  * Returns: the ID (greater than 0) for the source within the GMainContext.
4570  */
4571 guint
4572 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
4573 {
4574   GstRTSPClientPrivate *priv;
4575   GSource *timer_src;
4576   guint res;
4577
4578   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
4579   priv = client->priv;
4580   g_return_val_if_fail (priv->connection != NULL, 0);
4581   g_return_val_if_fail (priv->watch == NULL, 0);
4582
4583   /* make sure noone will free the context before the watch is destroyed */
4584   priv->watch_context = g_main_context_ref (context);
4585
4586   /* create watch for the connection and attach */
4587   priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
4588       g_object_ref (client), (GDestroyNotify) client_watch_notify);
4589   gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
4590       (GDestroyNotify) gst_rtsp_watch_unref);
4591
4592   gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
4593
4594   GST_INFO ("client %p: attaching to context %p", client, context);
4595   res = gst_rtsp_watch_attach (priv->watch, context);
4596
4597   /* Setting up a timeout for the RTSP control channel until a session
4598    * is up where it is handling timeouts. */
4599   rtsp_ctrl_timeout_remove (priv);      /* removing old if any */
4600   g_mutex_lock (&priv->lock);
4601
4602   timer_src = g_timeout_source_new_seconds (RTSP_CTRL_CB_INTERVAL);
4603   g_source_set_callback (timer_src, rtsp_ctrl_timeout_cb, client, NULL);
4604   priv->rtsp_ctrl_timeout_id = g_source_attach (timer_src, priv->watch_context);
4605   g_source_unref (timer_src);
4606   GST_DEBUG ("rtsp control setting up session timeout id=%u.",
4607       priv->rtsp_ctrl_timeout_id);
4608
4609   g_mutex_unlock (&priv->lock);
4610
4611   return res;
4612 }
4613
4614 /**
4615  * gst_rtsp_client_session_filter:
4616  * @client: a #GstRTSPClient
4617  * @func: (scope call) (allow-none): a callback
4618  * @user_data: user data passed to @func
4619  *
4620  * Call @func for each session managed by @client. The result value of @func
4621  * determines what happens to the session. @func will be called with @client
4622  * locked so no further actions on @client can be performed from @func.
4623  *
4624  * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
4625  * @client.
4626  *
4627  * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
4628  *
4629  * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
4630  * will also be added with an additional ref to the result #GList of this
4631  * function..
4632  *
4633  * When @func is %NULL, #GST_RTSP_FILTER_REF will be assumed for each session.
4634  *
4635  * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
4636  * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
4637  * element in the #GList should be unreffed before the list is freed.
4638  */
4639 GList *
4640 gst_rtsp_client_session_filter (GstRTSPClient * client,
4641     GstRTSPClientSessionFilterFunc func, gpointer user_data)
4642 {
4643   GstRTSPClientPrivate *priv;
4644   GList *result, *walk, *next;
4645   GHashTable *visited;
4646   guint cookie;
4647
4648   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
4649
4650   priv = client->priv;
4651
4652   result = NULL;
4653   if (func)
4654     visited = g_hash_table_new_full (NULL, NULL, g_object_unref, NULL);
4655
4656   g_mutex_lock (&priv->lock);
4657 restart:
4658   cookie = priv->sessions_cookie;
4659   for (walk = priv->sessions; walk; walk = next) {
4660     GstRTSPSession *sess = walk->data;
4661     GstRTSPFilterResult res;
4662     gboolean changed;
4663
4664     next = g_list_next (walk);
4665
4666     if (func) {
4667       /* only visit each session once */
4668       if (g_hash_table_contains (visited, sess))
4669         continue;
4670
4671       g_hash_table_add (visited, g_object_ref (sess));
4672       g_mutex_unlock (&priv->lock);
4673
4674       res = func (client, sess, user_data);
4675
4676       g_mutex_lock (&priv->lock);
4677     } else
4678       res = GST_RTSP_FILTER_REF;
4679
4680     changed = (cookie != priv->sessions_cookie);
4681
4682     switch (res) {
4683       case GST_RTSP_FILTER_REMOVE:
4684         /* stop watching the session and pretend it went away, if the list was
4685          * changed, we can't use the current list position, try to see if we
4686          * still have the session */
4687         client_unwatch_session (client, sess, changed ? NULL : walk);
4688         cookie = priv->sessions_cookie;
4689         break;
4690       case GST_RTSP_FILTER_REF:
4691         result = g_list_prepend (result, g_object_ref (sess));
4692         break;
4693       case GST_RTSP_FILTER_KEEP:
4694       default:
4695         break;
4696     }
4697     if (changed)
4698       goto restart;
4699   }
4700   g_mutex_unlock (&priv->lock);
4701
4702   if (func)
4703     g_hash_table_unref (visited);
4704
4705   return result;
4706 }