Revert "stream: Choose the maximum ttl value provided by multicast clients"
[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       use_client_settings = TRUE;
1977
1978     /* We need to allocate the sockets for both families before starting
1979      * multiudpsink, otherwise multiudpsink won't accept new clients with
1980      * a different family.
1981      */
1982     /* FIXME: could be more adequately solved by making it possible
1983      * to set a socket on multiudpsink after it has already been started */
1984     if (!gst_rtsp_stream_allocate_udp_sockets (ctx->stream,
1985             G_SOCKET_FAMILY_IPV4, ct, use_client_settings)
1986         && family == G_SOCKET_FAMILY_IPV4)
1987       goto error_allocating_ports;
1988
1989     if (!gst_rtsp_stream_allocate_udp_sockets (ctx->stream,
1990             G_SOCKET_FAMILY_IPV6, ct, use_client_settings)
1991         && family == G_SOCKET_FAMILY_IPV6)
1992       goto error_allocating_ports;
1993
1994     if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1995       /* FIXME: the address has been successfully allocated, however, in
1996        * the use_client_settings case we need to verify that the allocated
1997        * address is the one requested by the client and if this address is
1998        * an allowed destination. Verifying this via the address pool in not
1999        * the proper way as the address pool should only be used for choosing
2000        * the server-selected address/port pairs. */
2001
2002       if (!use_client_settings) {
2003         GstRTSPAddress *addr = NULL;
2004
2005         g_free (ct->destination);
2006         addr = gst_rtsp_stream_get_multicast_address (ctx->stream, family);
2007         if (addr == NULL)
2008           goto no_address;
2009         ct->destination = g_strdup (addr->address);
2010         ct->port.min = addr->port;
2011         ct->port.max = addr->port + addr->n_ports - 1;
2012         ct->ttl = addr->ttl;
2013         gst_rtsp_address_free (addr);
2014       }
2015     } else {
2016       GstRTSPUrl *url;
2017
2018       url = gst_rtsp_connection_get_url (priv->connection);
2019       g_free (ct->destination);
2020       ct->destination = g_strdup (url->host);
2021     }
2022   } else {
2023     GstRTSPUrl *url;
2024
2025     url = gst_rtsp_connection_get_url (priv->connection);
2026     g_free (ct->destination);
2027     ct->destination = g_strdup (url->host);
2028
2029     if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
2030       GSocket *sock;
2031       GSocketAddress *addr;
2032
2033       sock = gst_rtsp_connection_get_read_socket (priv->connection);
2034       if ((addr = g_socket_get_remote_address (sock, NULL))) {
2035         /* our read port is the sender port of client */
2036         ct->client_port.min =
2037             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2038         g_object_unref (addr);
2039       }
2040       if ((addr = g_socket_get_local_address (sock, NULL))) {
2041         ct->server_port.max =
2042             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2043         g_object_unref (addr);
2044       }
2045       sock = gst_rtsp_connection_get_write_socket (priv->connection);
2046       if ((addr = g_socket_get_remote_address (sock, NULL))) {
2047         /* our write port is the receiver port of client */
2048         ct->client_port.max =
2049             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2050         g_object_unref (addr);
2051       }
2052       if ((addr = g_socket_get_local_address (sock, NULL))) {
2053         ct->server_port.min =
2054             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
2055         g_object_unref (addr);
2056       }
2057       /* check if the client selected channels for TCP */
2058       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
2059         gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
2060             &ct->interleaved);
2061       }
2062     }
2063   }
2064   return TRUE;
2065
2066   /* ERRORS */
2067 error_allocating_ports:
2068   {
2069     GST_ERROR_OBJECT (client, "Failed to allocate UDP ports");
2070     return FALSE;
2071   }
2072 no_address:
2073   {
2074     GST_ERROR_OBJECT (client, "Failed to acquire address for stream");
2075     return FALSE;
2076   }
2077 }
2078
2079 static GstRTSPTransport *
2080 make_server_transport (GstRTSPClient * client, GstRTSPMedia * media,
2081     GstRTSPContext * ctx, GstRTSPTransport * ct)
2082 {
2083   GstRTSPTransport *st;
2084   GInetAddress *addr;
2085   GSocketFamily family;
2086
2087   /* prepare the server transport */
2088   gst_rtsp_transport_new (&st);
2089
2090   st->trans = ct->trans;
2091   st->profile = ct->profile;
2092   st->lower_transport = ct->lower_transport;
2093   st->mode_play = ct->mode_play;
2094   st->mode_record = ct->mode_record;
2095
2096   addr = g_inet_address_new_from_string (ct->destination);
2097
2098   if (!addr) {
2099     GST_ERROR ("failed to get inet addr from client destination");
2100     family = G_SOCKET_FAMILY_IPV4;
2101   } else {
2102     family = g_inet_address_get_family (addr);
2103     g_object_unref (addr);
2104     addr = NULL;
2105   }
2106
2107   switch (st->lower_transport) {
2108     case GST_RTSP_LOWER_TRANS_UDP:
2109       st->client_port = ct->client_port;
2110       gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
2111       break;
2112     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
2113       st->port = ct->port;
2114       st->destination = g_strdup (ct->destination);
2115       st->ttl = ct->ttl;
2116       break;
2117     case GST_RTSP_LOWER_TRANS_TCP:
2118       st->interleaved = ct->interleaved;
2119       st->client_port = ct->client_port;
2120       st->server_port = ct->server_port;
2121     default:
2122       break;
2123   }
2124
2125   if ((gst_rtsp_media_get_transport_mode (media) &
2126           GST_RTSP_TRANSPORT_MODE_PLAY))
2127     gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
2128
2129   return st;
2130 }
2131
2132 static gboolean
2133 rtsp_ctrl_timeout_cb (gpointer user_data)
2134 {
2135   gboolean res = G_SOURCE_CONTINUE;
2136   GstRTSPClient *client = (GstRTSPClient *) user_data;
2137   GstRTSPClientPrivate *priv = client->priv;
2138
2139   priv->rtsp_ctrl_timeout_cnt += RTSP_CTRL_CB_INTERVAL;
2140
2141   if (priv->rtsp_ctrl_timeout_cnt > RTSP_CTRL_TIMEOUT_VALUE) {
2142     GST_DEBUG ("rtsp control session timeout id=%u expired, closing client.",
2143         priv->rtsp_ctrl_timeout_id);
2144     g_mutex_lock (&priv->lock);
2145     priv->rtsp_ctrl_timeout_id = 0;
2146     priv->rtsp_ctrl_timeout_cnt = 0;
2147     g_mutex_unlock (&priv->lock);
2148     gst_rtsp_client_close (client);
2149
2150     res = G_SOURCE_REMOVE;
2151   }
2152
2153   return res;
2154 }
2155
2156 static void
2157 rtsp_ctrl_timeout_remove (GstRTSPClientPrivate * priv)
2158 {
2159   g_mutex_lock (&priv->lock);
2160
2161   if (priv->rtsp_ctrl_timeout_id != 0) {
2162     g_source_destroy (g_main_context_find_source_by_id (priv->watch_context,
2163             priv->rtsp_ctrl_timeout_id));
2164     GST_DEBUG ("rtsp control session removed timeout id=%u.",
2165         priv->rtsp_ctrl_timeout_id);
2166     priv->rtsp_ctrl_timeout_id = 0;
2167     priv->rtsp_ctrl_timeout_cnt = 0;
2168   }
2169
2170   g_mutex_unlock (&priv->lock);
2171 }
2172
2173 static gchar *
2174 stream_make_keymgmt (GstRTSPClient * client, const gchar * location,
2175     GstRTSPStream * stream)
2176 {
2177   gchar *base64, *result = NULL;
2178   GstMIKEYMessage *mikey_msg;
2179   GstCaps *srtcpparams;
2180   GstElement *rtcp_encoder;
2181   gint srtcp_cipher, srtp_cipher;
2182   gint srtcp_auth, srtp_auth;
2183   GstBuffer *key;
2184   GType ciphertype, authtype;
2185   GEnumClass *cipher_enum, *auth_enum;
2186   GEnumValue *srtcp_cipher_value, *srtp_cipher_value, *srtcp_auth_value,
2187       *srtp_auth_value;
2188
2189   rtcp_encoder = gst_rtsp_stream_get_srtp_encoder (stream);
2190
2191   if (!rtcp_encoder)
2192     goto done;
2193
2194   ciphertype = g_type_from_name ("GstSrtpCipherType");
2195   authtype = g_type_from_name ("GstSrtpAuthType");
2196
2197   cipher_enum = g_type_class_ref (ciphertype);
2198   auth_enum = g_type_class_ref (authtype);
2199
2200   /* We need to bring the encoder to READY so that it generates its key */
2201   gst_element_set_state (rtcp_encoder, GST_STATE_READY);
2202
2203   g_object_get (rtcp_encoder, "rtcp-cipher", &srtcp_cipher, "rtcp-auth",
2204       &srtcp_auth, "rtp-cipher", &srtp_cipher, "rtp-auth", &srtp_auth, "key",
2205       &key, NULL);
2206   g_object_unref (rtcp_encoder);
2207
2208   srtcp_cipher_value = g_enum_get_value (cipher_enum, srtcp_cipher);
2209   srtp_cipher_value = g_enum_get_value (cipher_enum, srtp_cipher);
2210   srtcp_auth_value = g_enum_get_value (auth_enum, srtcp_auth);
2211   srtp_auth_value = g_enum_get_value (auth_enum, srtp_auth);
2212
2213   g_type_class_unref (cipher_enum);
2214   g_type_class_unref (auth_enum);
2215
2216   srtcpparams = gst_caps_new_simple ("application/x-srtcp",
2217       "srtcp-cipher", G_TYPE_STRING, srtcp_cipher_value->value_nick,
2218       "srtcp-auth", G_TYPE_STRING, srtcp_auth_value->value_nick,
2219       "srtp-cipher", G_TYPE_STRING, srtp_cipher_value->value_nick,
2220       "srtp-auth", G_TYPE_STRING, srtp_auth_value->value_nick,
2221       "srtp-key", GST_TYPE_BUFFER, key, NULL);
2222
2223   mikey_msg = gst_mikey_message_new_from_caps (srtcpparams);
2224   if (mikey_msg) {
2225     guint send_ssrc;
2226
2227     gst_rtsp_stream_get_ssrc (stream, &send_ssrc);
2228     gst_mikey_message_add_cs_srtp (mikey_msg, 0, send_ssrc, 0);
2229
2230     base64 = gst_mikey_message_base64_encode (mikey_msg);
2231     gst_mikey_message_unref (mikey_msg);
2232
2233     if (base64) {
2234       result = gst_sdp_make_keymgmt (location, base64);
2235       g_free (base64);
2236     }
2237   }
2238
2239 done:
2240   return result;
2241 }
2242
2243 static gboolean
2244 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
2245 {
2246   GstRTSPClientPrivate *priv = client->priv;
2247   GstRTSPResult res;
2248   GstRTSPUrl *uri;
2249   gchar *transport, *keymgmt;
2250   GstRTSPTransport *ct, *st;
2251   GstRTSPStatusCode code;
2252   GstRTSPSession *session;
2253   GstRTSPStreamTransport *trans;
2254   gchar *trans_str;
2255   GstRTSPSessionMedia *sessmedia;
2256   GstRTSPMedia *media;
2257   GstRTSPStream *stream;
2258   GstRTSPState rtspstate;
2259   GstRTSPClientClass *klass;
2260   gchar *path, *control = NULL;
2261   gint matched;
2262   gboolean new_session = FALSE;
2263   GstRTSPStatusCode sig_result;
2264   gchar *pipelined_request_id = NULL, *accept_range = NULL;
2265
2266   if (!ctx->uri)
2267     goto no_uri;
2268
2269   uri = ctx->uri;
2270   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2271   path = klass->make_path_from_uri (client, uri);
2272
2273   /* parse the transport */
2274   res =
2275       gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
2276       &transport, 0);
2277   if (res != GST_RTSP_OK)
2278     goto no_transport;
2279
2280   /* Handle Pipelined-requests if using >= 2.0 */
2281   if (ctx->request->type_data.request.version >= GST_RTSP_VERSION_2_0)
2282     gst_rtsp_message_get_header (ctx->request,
2283         GST_RTSP_HDR_PIPELINED_REQUESTS, &pipelined_request_id, 0);
2284
2285   /* we create the session after parsing stuff so that we don't make
2286    * a session for malformed requests */
2287   if (priv->session_pool == NULL)
2288     goto no_pool;
2289
2290   session = ctx->session;
2291
2292   if (session) {
2293     g_object_ref (session);
2294     /* get a handle to the configuration of the media in the session, this can
2295      * return NULL if this is a new url to manage in this session. */
2296     sessmedia = gst_rtsp_session_get_media (session, path, &matched);
2297   } else {
2298     /* we need a new media configuration in this session */
2299     sessmedia = NULL;
2300   }
2301
2302   /* we have no session media, find one and manage it */
2303   if (sessmedia == NULL) {
2304     /* get a handle to the configuration of the media in the session */
2305     media = find_media (client, ctx, path, &matched);
2306     /* need to suspend the media, if the protocol has changed */
2307     if (media != NULL)
2308       gst_rtsp_media_suspend (media);
2309   } else {
2310     if ((media = gst_rtsp_session_media_get_media (sessmedia)))
2311       g_object_ref (media);
2312     else
2313       goto media_not_found;
2314   }
2315   /* no media, not found then */
2316   if (media == NULL)
2317     goto media_not_found_no_reply;
2318
2319   if (path[matched] == '\0') {
2320     if (gst_rtsp_media_n_streams (media) == 1) {
2321       stream = gst_rtsp_media_get_stream (media, 0);
2322     } else {
2323       goto control_not_found;
2324     }
2325   } else {
2326     /* path is what matched. */
2327     path[matched] = '\0';
2328     /* control is remainder */
2329     control = &path[matched + 1];
2330
2331     /* find the stream now using the control part */
2332     stream = gst_rtsp_media_find_stream (media, control);
2333   }
2334
2335   if (stream == NULL)
2336     goto stream_not_found;
2337
2338   /* now we have a uri identifying a valid media and stream */
2339   ctx->stream = stream;
2340   ctx->media = media;
2341
2342   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_SETUP_REQUEST], 0,
2343       ctx, &sig_result);
2344   if (sig_result != GST_RTSP_STS_OK) {
2345     goto sig_failed;
2346   }
2347
2348   if (session == NULL) {
2349     /* create a session if this fails we probably reached our session limit or
2350      * something. */
2351     if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
2352       goto service_unavailable;
2353
2354     /* Pipelined requests should be cleared between sessions */
2355     g_hash_table_remove_all (priv->pipelined_requests);
2356
2357     /* make sure this client is closed when the session is closed */
2358     client_watch_session (client, session);
2359
2360     new_session = TRUE;
2361     /* signal new session */
2362     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
2363         session);
2364
2365     ctx->session = session;
2366   }
2367
2368   if (pipelined_request_id) {
2369     g_hash_table_insert (client->priv->pipelined_requests,
2370         g_strdup (pipelined_request_id),
2371         g_strdup (gst_rtsp_session_get_sessionid (session)));
2372   }
2373   rtsp_ctrl_timeout_remove (priv);
2374
2375   if (!klass->configure_client_media (client, media, stream, ctx))
2376     goto configure_media_failed_no_reply;
2377
2378   gst_rtsp_transport_new (&ct);
2379
2380   /* parse and find a usable supported transport */
2381   if (!parse_transport (transport, stream, ct))
2382     goto unsupported_transports;
2383
2384   if ((ct->mode_play
2385           && !(gst_rtsp_media_get_transport_mode (media) &
2386               GST_RTSP_TRANSPORT_MODE_PLAY)) || (ct->mode_record
2387           && !(gst_rtsp_media_get_transport_mode (media) &
2388               GST_RTSP_TRANSPORT_MODE_RECORD)))
2389     goto unsupported_mode;
2390
2391   /* parse the keymgmt */
2392   if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_KEYMGMT,
2393           &keymgmt, 0) == GST_RTSP_OK) {
2394     if (!gst_rtsp_stream_handle_keymgmt (ctx->stream, keymgmt))
2395       goto keymgmt_error;
2396   }
2397
2398   if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT_RANGES,
2399           &accept_range, 0) == GST_RTSP_OK) {
2400     GEnumValue *runit = NULL;
2401     gint i;
2402     gchar **valid_ranges;
2403     GEnumClass *runit_class = g_type_class_ref (GST_TYPE_RTSP_RANGE_UNIT);
2404
2405     gst_rtsp_message_dump (ctx->request);
2406     valid_ranges = g_strsplit (accept_range, ",", -1);
2407
2408     for (i = 0; valid_ranges[i]; i++) {
2409       gchar *range = valid_ranges[i];
2410
2411       while (*range == ' ')
2412         range++;
2413
2414       runit = g_enum_get_value_by_nick (runit_class, range);
2415       if (runit)
2416         break;
2417     }
2418     g_strfreev (valid_ranges);
2419     g_type_class_unref (runit_class);
2420
2421     if (!runit)
2422       goto unsupported_range_unit;
2423   }
2424
2425   if (sessmedia == NULL) {
2426     /* manage the media in our session now, if not done already  */
2427     sessmedia =
2428         gst_rtsp_session_manage_media (session, path, g_object_ref (media));
2429     /* if we stil have no media, error */
2430     if (sessmedia == NULL)
2431       goto sessmedia_unavailable;
2432
2433     /* don't cache media anymore */
2434     clean_cached_media (client, FALSE);
2435   }
2436
2437   ctx->sessmedia = sessmedia;
2438
2439   /* update the client transport */
2440   if (!klass->configure_client_transport (client, ctx, ct))
2441     goto unsupported_client_transport;
2442
2443   /* set in the session media transport */
2444   trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
2445
2446   ctx->trans = trans;
2447
2448   /* configure the url used to set this transport, this we will use when
2449    * generating the response for the PLAY request */
2450   gst_rtsp_stream_transport_set_url (trans, uri);
2451   /* configure keepalive for this transport */
2452   gst_rtsp_stream_transport_set_keepalive (trans,
2453       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
2454
2455   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
2456     /* our callbacks to send data on this TCP connection */
2457     gst_rtsp_stream_transport_set_callbacks (trans,
2458         (GstRTSPSendFunc) do_send_data,
2459         (GstRTSPSendFunc) do_send_data, client, NULL);
2460
2461     g_hash_table_insert (priv->transports,
2462         GINT_TO_POINTER (ct->interleaved.min), trans);
2463     g_object_ref (trans);
2464     g_hash_table_insert (priv->transports,
2465         GINT_TO_POINTER (ct->interleaved.max), trans);
2466     g_object_ref (trans);
2467     add_data_seq (client, ct->interleaved.min);
2468     add_data_seq (client, ct->interleaved.max);
2469   }
2470
2471   /* create and serialize the server transport */
2472   st = make_server_transport (client, media, ctx, ct);
2473   trans_str = gst_rtsp_transport_as_text (st);
2474   gst_rtsp_transport_free (st);
2475
2476   /* construct the response now */
2477   code = GST_RTSP_STS_OK;
2478   gst_rtsp_message_init_response (ctx->response, code,
2479       gst_rtsp_status_as_text (code), ctx->request);
2480
2481   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
2482       trans_str);
2483   g_free (trans_str);
2484
2485   if (pipelined_request_id)
2486     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PIPELINED_REQUESTS,
2487         pipelined_request_id);
2488
2489   if (ctx->request->type_data.request.version >= GST_RTSP_VERSION_2_0) {
2490     GstClockTimeDiff seekable = gst_rtsp_media_seekable (media);
2491     GString *media_properties = g_string_new (NULL);
2492
2493     if (seekable == -1)
2494       g_string_append (media_properties,
2495           "No-Seeking,Time-Progressing,Time-Duration=0.0");
2496     else if (seekable == 0)
2497       g_string_append (media_properties, "Beginning-Only");
2498     else if (seekable == G_MAXINT64)
2499       g_string_append (media_properties, "Random-Access");
2500     else
2501       g_string_append_printf (media_properties,
2502           "Random-Access=%f, Unlimited, Immutable",
2503           (gdouble) seekable / GST_SECOND);
2504
2505     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_MEDIA_PROPERTIES,
2506         g_string_free (media_properties, FALSE));
2507     /* TODO Check how Accept-Ranges should be filled */
2508     gst_rtsp_message_add_header (ctx->request, GST_RTSP_HDR_ACCEPT_RANGES,
2509         "npt, clock, smpte, clock");
2510   }
2511
2512   send_message (client, ctx, ctx->response, FALSE);
2513
2514   /* update the state */
2515   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
2516   switch (rtspstate) {
2517     case GST_RTSP_STATE_PLAYING:
2518     case GST_RTSP_STATE_RECORDING:
2519     case GST_RTSP_STATE_READY:
2520       /* no state change */
2521       break;
2522     default:
2523       gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
2524       break;
2525   }
2526   g_object_unref (media);
2527   g_object_unref (session);
2528   g_free (path);
2529
2530   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
2531
2532   return TRUE;
2533
2534   /* ERRORS */
2535 no_uri:
2536   {
2537     GST_ERROR ("client %p: no uri", client);
2538     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2539     return FALSE;
2540   }
2541 no_transport:
2542   {
2543     GST_ERROR ("client %p: no transport", client);
2544     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2545     goto cleanup_path;
2546   }
2547 no_pool:
2548   {
2549     GST_ERROR ("client %p: no session pool configured", client);
2550     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2551     goto cleanup_path;
2552   }
2553 media_not_found_no_reply:
2554   {
2555     GST_ERROR ("client %p: media '%s' not found", client, path);
2556     /* error reply is already sent */
2557     goto cleanup_session;
2558   }
2559 media_not_found:
2560   {
2561     GST_ERROR ("client %p: media '%s' not found", client, path);
2562     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2563     goto cleanup_session;
2564   }
2565 control_not_found:
2566   {
2567     GST_ERROR ("client %p: no control in path '%s'", client, path);
2568     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2569     g_object_unref (media);
2570     goto cleanup_session;
2571   }
2572 stream_not_found:
2573   {
2574     GST_ERROR ("client %p: stream '%s' not found", client,
2575         GST_STR_NULL (control));
2576     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2577     g_object_unref (media);
2578     goto cleanup_session;
2579   }
2580 sig_failed:
2581   {
2582     GST_ERROR ("client %p: pre signal returned error: %s", client,
2583         gst_rtsp_status_as_text (sig_result));
2584     send_generic_response (client, sig_result, ctx);
2585     g_object_unref (media);
2586     goto cleanup_path;
2587   }
2588 service_unavailable:
2589   {
2590     GST_ERROR ("client %p: can't create session", client);
2591     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2592     g_object_unref (media);
2593     goto cleanup_session;
2594   }
2595 sessmedia_unavailable:
2596   {
2597     GST_ERROR ("client %p: can't create session media", client);
2598     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2599     goto cleanup_transport;
2600   }
2601 configure_media_failed_no_reply:
2602   {
2603     GST_ERROR ("client %p: configure_media failed", client);
2604     g_object_unref (media);
2605     /* error reply is already sent */
2606     goto cleanup_session;
2607   }
2608 unsupported_transports:
2609   {
2610     GST_ERROR ("client %p: unsupported transports", client);
2611     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2612     goto cleanup_transport;
2613   }
2614 unsupported_client_transport:
2615   {
2616     GST_ERROR ("client %p: unsupported client transport", client);
2617     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2618     goto cleanup_transport;
2619   }
2620 unsupported_mode:
2621   {
2622     GST_ERROR ("client %p: unsupported mode (media play: %d, media record: %d, "
2623         "mode play: %d, mode record: %d)", client,
2624         ! !(gst_rtsp_media_get_transport_mode (media) &
2625             GST_RTSP_TRANSPORT_MODE_PLAY),
2626         ! !(gst_rtsp_media_get_transport_mode (media) &
2627             GST_RTSP_TRANSPORT_MODE_RECORD), ct->mode_play, ct->mode_record);
2628     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
2629     goto cleanup_transport;
2630   }
2631 unsupported_range_unit:
2632   {
2633     GST_ERROR ("Client %p: does not support any range format we support",
2634         client);
2635     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2636     goto cleanup_transport;
2637   }
2638 keymgmt_error:
2639   {
2640     GST_ERROR ("client %p: keymgmt error", client);
2641     send_generic_response (client, GST_RTSP_STS_KEY_MANAGEMENT_FAILURE, ctx);
2642     goto cleanup_transport;
2643   }
2644   {
2645   cleanup_transport:
2646     gst_rtsp_transport_free (ct);
2647     if (media)
2648       g_object_unref (media);
2649   cleanup_session:
2650     if (new_session)
2651       gst_rtsp_session_pool_remove (priv->session_pool, session);
2652     if (session)
2653       g_object_unref (session);
2654   cleanup_path:
2655     g_free (path);
2656     return FALSE;
2657   }
2658 }
2659
2660 static GstSDPMessage *
2661 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
2662 {
2663   GstRTSPClientPrivate *priv = client->priv;
2664   GstSDPMessage *sdp;
2665   GstSDPInfo info;
2666   const gchar *proto;
2667   guint64 session_id_tmp;
2668   gchar session_id[21];
2669
2670   gst_sdp_message_new (&sdp);
2671
2672   /* some standard things first */
2673   gst_sdp_message_set_version (sdp, "0");
2674
2675   if (priv->is_ipv6)
2676     proto = "IP6";
2677   else
2678     proto = "IP4";
2679
2680   session_id_tmp = (((guint64) g_random_int ()) << 32) | g_random_int ();
2681   g_snprintf (session_id, sizeof (session_id), "%" G_GUINT64_FORMAT,
2682       session_id_tmp);
2683
2684   gst_sdp_message_set_origin (sdp, "-", session_id, "1", "IN", proto,
2685       priv->server_ip);
2686
2687   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
2688   gst_sdp_message_set_information (sdp, "rtsp-server");
2689   gst_sdp_message_add_time (sdp, "0", "0", NULL);
2690   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
2691   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
2692   gst_sdp_message_add_attribute (sdp, "control", "*");
2693
2694   info.is_ipv6 = priv->is_ipv6;
2695   info.server_ip = priv->server_ip;
2696
2697   /* create an SDP for the media object */
2698   if (!gst_rtsp_media_setup_sdp (media, sdp, &info))
2699     goto no_sdp;
2700
2701   return sdp;
2702
2703   /* ERRORS */
2704 no_sdp:
2705   {
2706     GST_ERROR ("client %p: could not create SDP", client);
2707     gst_sdp_message_free (sdp);
2708     return NULL;
2709   }
2710 }
2711
2712 /* for the describe we must generate an SDP */
2713 static gboolean
2714 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
2715 {
2716   GstRTSPClientPrivate *priv = client->priv;
2717   GstRTSPResult res;
2718   GstSDPMessage *sdp;
2719   guint i;
2720   gchar *path, *str;
2721   GstRTSPMedia *media;
2722   GstRTSPClientClass *klass;
2723   GstRTSPStatusCode sig_result;
2724
2725   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2726
2727   if (!ctx->uri)
2728     goto no_uri;
2729
2730   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_DESCRIBE_REQUEST],
2731       0, ctx, &sig_result);
2732   if (sig_result != GST_RTSP_STS_OK) {
2733     goto sig_failed;
2734   }
2735
2736   /* check what kind of format is accepted, we don't really do anything with it
2737    * and always return SDP for now. */
2738   for (i = 0;; i++) {
2739     gchar *accept;
2740
2741     res =
2742         gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
2743         &accept, i);
2744     if (res == GST_RTSP_ENOTIMPL)
2745       break;
2746
2747     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
2748       break;
2749   }
2750
2751   if (!priv->mount_points)
2752     goto no_mount_points;
2753
2754   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2755     goto no_path;
2756
2757   /* find the media object for the uri */
2758   if (!(media = find_media (client, ctx, path, NULL)))
2759     goto no_media;
2760
2761   if (!(gst_rtsp_media_get_transport_mode (media) &
2762           GST_RTSP_TRANSPORT_MODE_PLAY))
2763     goto unsupported_mode;
2764
2765   /* create an SDP for the media object on this client */
2766   if (!(sdp = klass->create_sdp (client, media)))
2767     goto no_sdp;
2768
2769   /* we suspend after the describe */
2770   gst_rtsp_media_suspend (media);
2771   g_object_unref (media);
2772
2773   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2774       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2775
2776   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
2777       "application/sdp");
2778
2779   /* content base for some clients that might screw up creating the setup uri */
2780   str = make_base_url (client, ctx->uri, path);
2781   g_free (path);
2782
2783   GST_INFO ("adding content-base: %s", str);
2784   gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE, str);
2785
2786   /* add SDP to the response body */
2787   str = gst_sdp_message_as_text (sdp);
2788   gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
2789   gst_sdp_message_free (sdp);
2790
2791   send_message (client, ctx, ctx->response, FALSE);
2792
2793   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
2794       0, ctx);
2795
2796   return TRUE;
2797
2798   /* ERRORS */
2799 sig_failed:
2800   {
2801     GST_ERROR ("client %p: pre signal returned error: %s", client,
2802         gst_rtsp_status_as_text (sig_result));
2803     send_generic_response (client, sig_result, ctx);
2804     return FALSE;
2805   }
2806 no_uri:
2807   {
2808     GST_ERROR ("client %p: no uri", client);
2809     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2810     return FALSE;
2811   }
2812 no_mount_points:
2813   {
2814     GST_ERROR ("client %p: no mount points configured", client);
2815     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2816     return FALSE;
2817   }
2818 no_path:
2819   {
2820     GST_ERROR ("client %p: can't find path for url", client);
2821     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2822     return FALSE;
2823   }
2824 no_media:
2825   {
2826     GST_ERROR ("client %p: no media", client);
2827     g_free (path);
2828     /* error reply is already sent */
2829     return FALSE;
2830   }
2831 unsupported_mode:
2832   {
2833     GST_ERROR ("client %p: media does not support DESCRIBE", client);
2834     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
2835     g_free (path);
2836     g_object_unref (media);
2837     return FALSE;
2838   }
2839 no_sdp:
2840   {
2841     GST_ERROR ("client %p: can't create SDP", client);
2842     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2843     g_free (path);
2844     g_object_unref (media);
2845     return FALSE;
2846   }
2847 }
2848
2849 static gboolean
2850 handle_sdp (GstRTSPClient * client, GstRTSPContext * ctx, GstRTSPMedia * media,
2851     GstSDPMessage * sdp)
2852 {
2853   GstRTSPClientPrivate *priv = client->priv;
2854   GstRTSPThread *thread;
2855
2856   /* create an SDP for the media object */
2857   if (!gst_rtsp_media_handle_sdp (media, sdp))
2858     goto unhandled_sdp;
2859
2860   thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
2861       GST_RTSP_THREAD_TYPE_MEDIA, ctx);
2862   if (thread == NULL)
2863     goto no_thread;
2864
2865   /* prepare the media */
2866   if (!gst_rtsp_media_prepare (media, thread))
2867     goto no_prepare;
2868
2869   return TRUE;
2870
2871   /* ERRORS */
2872 unhandled_sdp:
2873   {
2874     GST_ERROR ("client %p: could not handle SDP", client);
2875     return FALSE;
2876   }
2877 no_thread:
2878   {
2879     GST_ERROR ("client %p: can't create thread", client);
2880     return FALSE;
2881   }
2882 no_prepare:
2883   {
2884     GST_ERROR ("client %p: can't prepare media", client);
2885     return FALSE;
2886   }
2887 }
2888
2889 static gboolean
2890 handle_announce_request (GstRTSPClient * client, GstRTSPContext * ctx)
2891 {
2892   GstRTSPClientPrivate *priv = client->priv;
2893   GstRTSPClientClass *klass;
2894   GstSDPResult sres;
2895   GstSDPMessage *sdp;
2896   GstRTSPMedia *media;
2897   gchar *path, *cont = NULL;
2898   guint8 *data;
2899   guint size;
2900   GstRTSPStatusCode sig_result;
2901   guint i, n_streams;
2902
2903   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2904
2905   if (!ctx->uri)
2906     goto no_uri;
2907
2908   if (!priv->mount_points)
2909     goto no_mount_points;
2910
2911   /* check if reply is SDP */
2912   gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_CONTENT_TYPE, &cont,
2913       0);
2914   /* could not be set but since the request returned OK, we assume it
2915    * was SDP, else check it. */
2916   if (cont) {
2917     if (g_ascii_strcasecmp (cont, "application/sdp") != 0)
2918       goto wrong_content_type;
2919   }
2920
2921   /* get message body and parse as SDP */
2922   gst_rtsp_message_get_body (ctx->request, &data, &size);
2923   if (data == NULL || size == 0)
2924     goto no_message;
2925
2926   GST_DEBUG ("client %p: parse SDP...", client);
2927   gst_sdp_message_new (&sdp);
2928   sres = gst_sdp_message_parse_buffer (data, size, sdp);
2929   if (sres != GST_SDP_OK)
2930     goto sdp_parse_failed;
2931
2932   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2933     goto no_path;
2934
2935   /* find the media object for the uri */
2936   if (!(media = find_media (client, ctx, path, NULL)))
2937     goto no_media;
2938
2939   ctx->media = media;
2940
2941   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_ANNOUNCE_REQUEST],
2942       0, ctx, &sig_result);
2943   if (sig_result != GST_RTSP_STS_OK) {
2944     goto sig_failed;
2945   }
2946
2947   if (!(gst_rtsp_media_get_transport_mode (media) &
2948           GST_RTSP_TRANSPORT_MODE_RECORD))
2949     goto unsupported_mode;
2950
2951   /* Tell client subclass about the media */
2952   if (!klass->handle_sdp (client, ctx, media, sdp))
2953     goto unhandled_sdp;
2954
2955   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2956       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2957
2958   n_streams = gst_rtsp_media_n_streams (media);
2959   for (i = 0; i < n_streams; i++) {
2960     GstRTSPStream *stream = gst_rtsp_media_get_stream (media, i);
2961     gchar *location =
2962         g_strdup_printf ("rtsp://%s%s:8554/stream=%d", priv->server_ip, path,
2963         i);
2964     gchar *keymgmt = stream_make_keymgmt (client, location, stream);
2965
2966     if (keymgmt)
2967       gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_KEYMGMT,
2968           keymgmt);
2969
2970     g_free (location);
2971   }
2972
2973   /* we suspend after the announce */
2974   gst_rtsp_media_suspend (media);
2975   g_object_unref (media);
2976
2977   send_message (client, ctx, ctx->response, FALSE);
2978
2979   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_ANNOUNCE_REQUEST],
2980       0, ctx);
2981
2982   gst_sdp_message_free (sdp);
2983   g_free (path);
2984   return TRUE;
2985
2986 no_uri:
2987   {
2988     GST_ERROR ("client %p: no uri", client);
2989     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2990     return FALSE;
2991   }
2992 no_mount_points:
2993   {
2994     GST_ERROR ("client %p: no mount points configured", client);
2995     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2996     return FALSE;
2997   }
2998 no_path:
2999   {
3000     GST_ERROR ("client %p: can't find path for url", client);
3001     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
3002     gst_sdp_message_free (sdp);
3003     return FALSE;
3004   }
3005 wrong_content_type:
3006   {
3007     GST_ERROR ("client %p: unknown content type", client);
3008     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3009     return FALSE;
3010   }
3011 no_message:
3012   {
3013     GST_ERROR ("client %p: can't find SDP message", client);
3014     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3015     return FALSE;
3016   }
3017 sdp_parse_failed:
3018   {
3019     GST_ERROR ("client %p: failed to parse SDP message", client);
3020     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3021     gst_sdp_message_free (sdp);
3022     return FALSE;
3023   }
3024 no_media:
3025   {
3026     GST_ERROR ("client %p: no media", client);
3027     g_free (path);
3028     /* error reply is already sent */
3029     gst_sdp_message_free (sdp);
3030     return FALSE;
3031   }
3032 sig_failed:
3033   {
3034     GST_ERROR ("client %p: pre signal returned error: %s", client,
3035         gst_rtsp_status_as_text (sig_result));
3036     send_generic_response (client, sig_result, ctx);
3037     gst_sdp_message_free (sdp);
3038     return FALSE;
3039   }
3040 unsupported_mode:
3041   {
3042     GST_ERROR ("client %p: media does not support ANNOUNCE", client);
3043     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
3044     g_free (path);
3045     g_object_unref (media);
3046     gst_sdp_message_free (sdp);
3047     return FALSE;
3048   }
3049 unhandled_sdp:
3050   {
3051     GST_ERROR ("client %p: can't handle SDP", client);
3052     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_MEDIA_TYPE, ctx);
3053     g_free (path);
3054     g_object_unref (media);
3055     gst_sdp_message_free (sdp);
3056     return FALSE;
3057   }
3058 }
3059
3060 static gboolean
3061 handle_record_request (GstRTSPClient * client, GstRTSPContext * ctx)
3062 {
3063   GstRTSPSession *session;
3064   GstRTSPClientClass *klass;
3065   GstRTSPSessionMedia *sessmedia;
3066   GstRTSPMedia *media;
3067   GstRTSPUrl *uri;
3068   GstRTSPState rtspstate;
3069   gchar *path;
3070   gint matched;
3071   GstRTSPStatusCode sig_result;
3072   GPtrArray *transports;
3073
3074   if (!(session = ctx->session))
3075     goto no_session;
3076
3077   if (!(uri = ctx->uri))
3078     goto no_uri;
3079
3080   klass = GST_RTSP_CLIENT_GET_CLASS (client);
3081   path = klass->make_path_from_uri (client, uri);
3082
3083   /* get a handle to the configuration of the media in the session */
3084   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
3085   if (!sessmedia)
3086     goto not_found;
3087
3088   if (path[matched] != '\0')
3089     goto no_aggregate;
3090
3091   g_free (path);
3092
3093   ctx->sessmedia = sessmedia;
3094   ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
3095
3096   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_RECORD_REQUEST], 0,
3097       ctx, &sig_result);
3098   if (sig_result != GST_RTSP_STS_OK) {
3099     goto sig_failed;
3100   }
3101
3102   if (!(gst_rtsp_media_get_transport_mode (media) &
3103           GST_RTSP_TRANSPORT_MODE_RECORD))
3104     goto unsupported_mode;
3105
3106   /* the session state must be playing or ready */
3107   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
3108   if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
3109     goto invalid_state;
3110
3111   /* update the pipeline */
3112   transports = gst_rtsp_session_media_get_transports (sessmedia);
3113   if (!gst_rtsp_media_complete_pipeline (media, transports)) {
3114     g_ptr_array_unref (transports);
3115     goto pipeline_error;
3116   }
3117   g_ptr_array_unref (transports);
3118
3119   /* in record we first unsuspend, media could be suspended from SDP or PAUSED */
3120   if (!gst_rtsp_media_unsuspend (media))
3121     goto unsuspend_failed;
3122
3123   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
3124       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
3125
3126   send_message (client, ctx, ctx->response, FALSE);
3127
3128   /* start playing after sending the response */
3129   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
3130
3131   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
3132
3133   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_RECORD_REQUEST], 0,
3134       ctx);
3135
3136   return TRUE;
3137
3138   /* ERRORS */
3139 no_session:
3140   {
3141     GST_ERROR ("client %p: no session", client);
3142     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3143     return FALSE;
3144   }
3145 no_uri:
3146   {
3147     GST_ERROR ("client %p: no uri supplied", client);
3148     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3149     return FALSE;
3150   }
3151 not_found:
3152   {
3153     GST_ERROR ("client %p: media not found", client);
3154     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
3155     return FALSE;
3156   }
3157 no_aggregate:
3158   {
3159     GST_ERROR ("client %p: no aggregate path %s", client, path);
3160     send_generic_response (client,
3161         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
3162     g_free (path);
3163     return FALSE;
3164   }
3165 sig_failed:
3166   {
3167     GST_ERROR ("client %p: pre signal returned error: %s", client,
3168         gst_rtsp_status_as_text (sig_result));
3169     send_generic_response (client, sig_result, ctx);
3170     return FALSE;
3171   }
3172 unsupported_mode:
3173   {
3174     GST_ERROR ("client %p: media does not support RECORD", client);
3175     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_ALLOWED, ctx);
3176     return FALSE;
3177   }
3178 invalid_state:
3179   {
3180     GST_ERROR ("client %p: not PLAYING or READY", client);
3181     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
3182         ctx);
3183     return FALSE;
3184   }
3185 pipeline_error:
3186   {
3187     GST_ERROR ("client %p: failed to configure the pipeline", client);
3188     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
3189         ctx);
3190     return FALSE;
3191   }
3192 unsuspend_failed:
3193   {
3194     GST_ERROR ("client %p: unsuspend failed", client);
3195     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
3196     return FALSE;
3197   }
3198 }
3199
3200 static gboolean
3201 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx,
3202     GstRTSPVersion version)
3203 {
3204   GstRTSPMethod options;
3205   gchar *str;
3206   GstRTSPStatusCode sig_result;
3207
3208   options = GST_RTSP_DESCRIBE |
3209       GST_RTSP_OPTIONS |
3210       GST_RTSP_PAUSE |
3211       GST_RTSP_PLAY |
3212       GST_RTSP_SETUP |
3213       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
3214
3215   if (version < GST_RTSP_VERSION_2_0) {
3216     options |= GST_RTSP_RECORD;
3217     options |= GST_RTSP_ANNOUNCE;
3218   }
3219
3220   str = gst_rtsp_options_as_text (options);
3221
3222   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
3223       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
3224
3225   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
3226   g_free (str);
3227
3228   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PRE_OPTIONS_REQUEST], 0,
3229       ctx, &sig_result);
3230   if (sig_result != GST_RTSP_STS_OK) {
3231     goto sig_failed;
3232   }
3233
3234   send_message (client, ctx, ctx->response, FALSE);
3235
3236   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
3237       0, ctx);
3238
3239   return TRUE;
3240
3241 /* ERRORS */
3242 sig_failed:
3243   {
3244     GST_ERROR ("client %p: pre signal returned error: %s", client,
3245         gst_rtsp_status_as_text (sig_result));
3246     send_generic_response (client, sig_result, ctx);
3247     gst_rtsp_message_free (ctx->response);
3248     return FALSE;
3249   }
3250 }
3251
3252 /* remove duplicate and trailing '/' */
3253 static void
3254 sanitize_uri (GstRTSPUrl * uri)
3255 {
3256   gint i, len;
3257   gchar *s, *d;
3258   gboolean have_slash, prev_slash;
3259
3260   s = d = uri->abspath;
3261   len = strlen (uri->abspath);
3262
3263   prev_slash = FALSE;
3264
3265   for (i = 0; i < len; i++) {
3266     have_slash = s[i] == '/';
3267     *d = s[i];
3268     if (!have_slash || !prev_slash)
3269       d++;
3270     prev_slash = have_slash;
3271   }
3272   len = d - uri->abspath;
3273   /* don't remove the first slash if that's the only thing left */
3274   if (len > 1 && *(d - 1) == '/')
3275     d--;
3276   *d = '\0';
3277 }
3278
3279 /* is called when the session is removed from its session pool. */
3280 static void
3281 client_session_removed (GstRTSPSessionPool * pool, GstRTSPSession * session,
3282     GstRTSPClient * client)
3283 {
3284   GstRTSPClientPrivate *priv = client->priv;
3285
3286   GST_INFO ("client %p: session %p removed", client, session);
3287
3288   g_mutex_lock (&priv->lock);
3289   client_unwatch_session (client, session, NULL);
3290   g_mutex_unlock (&priv->lock);
3291 }
3292
3293 /* Check for Require headers. Returns TRUE if there are no Require headers,
3294  * otherwise lets the application decide which headers are supported.
3295  * By default all headers are unsupported.
3296  * If there are unsupported options, FALSE will be returned together with
3297  * a newly-allocated string of (comma-separated) unsupported options in
3298  * the unsupported_reqs variable.
3299  *
3300  * There may be multiple Require headers, but we must send one single
3301  * Unsupported header with all the unsupported options as response. If
3302  * an incoming Require header contained a comma-separated list of options
3303  * GstRtspConnection will already have split that list up into multiple
3304  * headers.
3305  */
3306 static gboolean
3307 check_request_requirements (GstRTSPContext * ctx, gchar ** unsupported_reqs)
3308 {
3309   GstRTSPResult res;
3310   GPtrArray *arr = NULL;
3311   GstRTSPMessage *msg = ctx->request;
3312   gchar *reqs = NULL;
3313   gint i;
3314   gchar *sig_result = NULL;
3315   gboolean result = TRUE;
3316
3317   i = 0;
3318   do {
3319     res = gst_rtsp_message_get_header (msg, GST_RTSP_HDR_REQUIRE, &reqs, i++);
3320
3321     if (res == GST_RTSP_ENOTIMPL)
3322       break;
3323
3324     if (arr == NULL)
3325       arr = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free);
3326
3327     g_ptr_array_add (arr, g_strdup (reqs));
3328   }
3329   while (TRUE);
3330
3331   /* if we don't have any Require headers at all, all is fine */
3332   if (i == 1)
3333     return TRUE;
3334
3335   /* otherwise we've now processed at all the Require headers */
3336   g_ptr_array_add (arr, NULL);
3337
3338   g_signal_emit (ctx->client,
3339       gst_rtsp_client_signals[SIGNAL_CHECK_REQUIREMENTS], 0, ctx,
3340       (gchar **) arr->pdata, &sig_result);
3341
3342   if (sig_result == NULL) {
3343     /* no supported options, just report all of the required ones as
3344      * unsupported */
3345     *unsupported_reqs = g_strjoinv (", ", (gchar **) arr->pdata);
3346     result = FALSE;
3347     goto done;
3348   }
3349
3350   if (strlen (sig_result) == 0)
3351     g_free (sig_result);
3352   else {
3353     *unsupported_reqs = sig_result;
3354     result = FALSE;
3355   }
3356
3357 done:
3358   g_ptr_array_unref (arr);
3359   return result;
3360 }
3361
3362 static void
3363 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
3364 {
3365   GstRTSPClientPrivate *priv = client->priv;
3366   GstRTSPMethod method;
3367   const gchar *uristr;
3368   GstRTSPUrl *uri = NULL;
3369   GstRTSPVersion version;
3370   GstRTSPResult res;
3371   GstRTSPSession *session = NULL;
3372   GstRTSPContext sctx = { NULL }, *ctx;
3373   GstRTSPMessage response = { 0 };
3374   gchar *unsupported_reqs = NULL;
3375   gchar *sessid = NULL, *pipelined_request_id = NULL;
3376
3377   if (!(ctx = gst_rtsp_context_get_current ())) {
3378     ctx = &sctx;
3379     ctx->auth = priv->auth;
3380     gst_rtsp_context_push_current (ctx);
3381   }
3382
3383   ctx->conn = priv->connection;
3384   ctx->client = client;
3385   ctx->request = request;
3386   ctx->response = &response;
3387
3388   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
3389     gst_rtsp_message_dump (request);
3390   }
3391
3392   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
3393
3394   GST_INFO ("client %p: received a request %s %s %s", client,
3395       gst_rtsp_method_as_text (method), uristr,
3396       gst_rtsp_version_as_text (version));
3397
3398   /* we can only handle 1.0 requests */
3399   if (version != GST_RTSP_VERSION_1_0 && version != GST_RTSP_VERSION_2_0)
3400     goto not_supported;
3401
3402   ctx->method = method;
3403
3404   /* we always try to parse the url first */
3405   if (strcmp (uristr, "*") == 0) {
3406     /* special case where we have * as uri, keep uri = NULL */
3407   } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
3408     /* check if the uristr is an absolute path <=> scheme and host information
3409      * is missing */
3410     gchar *scheme;
3411
3412     scheme = g_uri_parse_scheme (uristr);
3413     if (scheme == NULL && g_str_has_prefix (uristr, "/")) {
3414       gchar *absolute_uristr = NULL;
3415
3416       GST_WARNING_OBJECT (client, "request doesn't contain absolute url");
3417       if (priv->server_ip == NULL) {
3418         GST_WARNING_OBJECT (client, "host information missing");
3419         goto bad_request;
3420       }
3421
3422       absolute_uristr =
3423           g_strdup_printf ("rtsp://%s%s", priv->server_ip, uristr);
3424
3425       GST_DEBUG_OBJECT (client, "absolute url: %s", absolute_uristr);
3426       if (gst_rtsp_url_parse (absolute_uristr, &uri) != GST_RTSP_OK) {
3427         g_free (absolute_uristr);
3428         goto bad_request;
3429       }
3430       g_free (absolute_uristr);
3431     } else {
3432       g_free (scheme);
3433       goto bad_request;
3434     }
3435   }
3436
3437   /* get the session if there is any */
3438   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_PIPELINED_REQUESTS,
3439       &pipelined_request_id, 0);
3440   if (res == GST_RTSP_OK) {
3441     sessid = g_hash_table_lookup (client->priv->pipelined_requests,
3442         pipelined_request_id);
3443
3444     if (!sessid)
3445       res = GST_RTSP_ERROR;
3446   }
3447
3448   if (res != GST_RTSP_OK)
3449     res =
3450         gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
3451
3452   if (res == GST_RTSP_OK) {
3453     if (priv->session_pool == NULL)
3454       goto no_pool;
3455
3456     /* we had a session in the request, find it again */
3457     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
3458       goto session_not_found;
3459
3460     /* we add the session to the client list of watched sessions. When a session
3461      * disappears because it times out, we will be notified. If all sessions are
3462      * gone, we will close the connection */
3463     client_watch_session (client, session);
3464   }
3465
3466   /* sanitize the uri */
3467   if (uri)
3468     sanitize_uri (uri);
3469   ctx->uri = uri;
3470   ctx->session = session;
3471
3472   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
3473     goto not_authorized;
3474
3475   /* handle any 'Require' headers */
3476   if (!check_request_requirements (ctx, &unsupported_reqs))
3477     goto unsupported_requirement;
3478
3479   /* now see what is asked and dispatch to a dedicated handler */
3480   switch (method) {
3481     case GST_RTSP_OPTIONS:
3482       priv->version = version;
3483       handle_options_request (client, ctx, version);
3484       break;
3485     case GST_RTSP_DESCRIBE:
3486       handle_describe_request (client, ctx);
3487       break;
3488     case GST_RTSP_SETUP:
3489       handle_setup_request (client, ctx);
3490       break;
3491     case GST_RTSP_PLAY:
3492       handle_play_request (client, ctx);
3493       break;
3494     case GST_RTSP_PAUSE:
3495       handle_pause_request (client, ctx);
3496       break;
3497     case GST_RTSP_TEARDOWN:
3498       handle_teardown_request (client, ctx);
3499       break;
3500     case GST_RTSP_SET_PARAMETER:
3501       handle_set_param_request (client, ctx);
3502       break;
3503     case GST_RTSP_GET_PARAMETER:
3504       handle_get_param_request (client, ctx);
3505       break;
3506     case GST_RTSP_ANNOUNCE:
3507       if (version >= GST_RTSP_VERSION_2_0)
3508         goto invalid_command_for_version;
3509       handle_announce_request (client, ctx);
3510       break;
3511     case GST_RTSP_RECORD:
3512       if (version >= GST_RTSP_VERSION_2_0)
3513         goto invalid_command_for_version;
3514       handle_record_request (client, ctx);
3515       break;
3516     case GST_RTSP_REDIRECT:
3517       goto not_implemented;
3518     case GST_RTSP_INVALID:
3519     default:
3520       goto bad_request;
3521   }
3522
3523 done:
3524   if (ctx == &sctx)
3525     gst_rtsp_context_pop_current (ctx);
3526   if (session)
3527     g_object_unref (session);
3528   if (uri)
3529     gst_rtsp_url_free (uri);
3530   return;
3531
3532   /* ERRORS */
3533 not_supported:
3534   {
3535     GST_ERROR ("client %p: version %d not supported", client, version);
3536     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
3537         ctx);
3538     goto done;
3539   }
3540 invalid_command_for_version:
3541   {
3542     GST_ERROR ("client %p: invalid command for version", client);
3543     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3544     goto done;
3545   }
3546 bad_request:
3547   {
3548     GST_ERROR ("client %p: bad request", client);
3549     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
3550     goto done;
3551   }
3552 no_pool:
3553   {
3554     GST_ERROR ("client %p: no pool configured", client);
3555     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3556     goto done;
3557   }
3558 session_not_found:
3559   {
3560     GST_ERROR ("client %p: session not found", client);
3561     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
3562     goto done;
3563   }
3564 not_authorized:
3565   {
3566     GST_ERROR ("client %p: not allowed", client);
3567     /* error reply is already sent */
3568     goto done;
3569   }
3570 unsupported_requirement:
3571   {
3572     GST_ERROR ("client %p: Required option is not supported (%s)", client,
3573         unsupported_reqs);
3574     send_option_not_supported_response (client, ctx, unsupported_reqs);
3575     g_free (unsupported_reqs);
3576     goto done;
3577   }
3578 not_implemented:
3579   {
3580     GST_ERROR ("client %p: method %d not implemented", client, method);
3581     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
3582     goto done;
3583   }
3584 }
3585
3586
3587 static void
3588 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
3589 {
3590   GstRTSPClientPrivate *priv = client->priv;
3591   GstRTSPResult res;
3592   GstRTSPSession *session = NULL;
3593   GstRTSPContext sctx = { NULL }, *ctx;
3594   gchar *sessid;
3595
3596   if (!(ctx = gst_rtsp_context_get_current ())) {
3597     ctx = &sctx;
3598     ctx->auth = priv->auth;
3599     gst_rtsp_context_push_current (ctx);
3600   }
3601
3602   ctx->conn = priv->connection;
3603   ctx->client = client;
3604   ctx->request = NULL;
3605   ctx->uri = NULL;
3606   ctx->method = GST_RTSP_INVALID;
3607   ctx->response = response;
3608
3609   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
3610     gst_rtsp_message_dump (response);
3611   }
3612
3613   GST_INFO ("client %p: received a response", client);
3614
3615   /* get the session if there is any */
3616   res =
3617       gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
3618   if (res == GST_RTSP_OK) {
3619     if (priv->session_pool == NULL)
3620       goto no_pool;
3621
3622     /* we had a session in the request, find it again */
3623     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
3624       goto session_not_found;
3625
3626     /* we add the session to the client list of watched sessions. When a session
3627      * disappears because it times out, we will be notified. If all sessions are
3628      * gone, we will close the connection */
3629     client_watch_session (client, session);
3630   }
3631
3632   ctx->session = session;
3633
3634   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
3635       0, ctx);
3636
3637 done:
3638   if (ctx == &sctx)
3639     gst_rtsp_context_pop_current (ctx);
3640   if (session)
3641     g_object_unref (session);
3642   return;
3643
3644 no_pool:
3645   {
3646     GST_ERROR ("client %p: no pool configured", client);
3647     goto done;
3648   }
3649 session_not_found:
3650   {
3651     GST_ERROR ("client %p: session not found", client);
3652     goto done;
3653   }
3654 }
3655
3656 static void
3657 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
3658 {
3659   GstRTSPClientPrivate *priv = client->priv;
3660   GstRTSPResult res;
3661   guint8 channel;
3662   guint8 *data;
3663   guint size;
3664   GstBuffer *buffer;
3665   GstRTSPStreamTransport *trans;
3666
3667   /* find the stream for this message */
3668   res = gst_rtsp_message_parse_data (message, &channel);
3669   if (res != GST_RTSP_OK)
3670     return;
3671
3672   gst_rtsp_message_get_body (message, &data, &size);
3673   if (size < 2)
3674     goto invalid_length;
3675
3676   gst_rtsp_message_steal_body (message, &data, &size);
3677
3678   /* Strip trailing \0 (which GstRTSPConnection adds) */
3679   --size;
3680
3681   buffer = gst_buffer_new_wrapped (data, size);
3682
3683   trans =
3684       g_hash_table_lookup (priv->transports, GINT_TO_POINTER ((gint) channel));
3685   if (trans) {
3686     GSocketAddress *addr;
3687
3688     /* Only create the socket address once for the transport, we don't really
3689      * want to do that for every single packet.
3690      *
3691      * The netaddress meta is later used by the RTP stack to know where
3692      * packets came from and allows us to match it again to a stream transport
3693      *
3694      * In theory we could use the remote socket address of the RTSP connection
3695      * here, but this would fail with a custom configure_client_transport()
3696      * implementation.
3697      */
3698     if (!(addr =
3699             g_object_get_data (G_OBJECT (trans), "rtsp-client.remote-addr"))) {
3700       const GstRTSPTransport *tr;
3701       GInetAddress *iaddr;
3702
3703       tr = gst_rtsp_stream_transport_get_transport (trans);
3704       iaddr = g_inet_address_new_from_string (tr->destination);
3705       if (iaddr) {
3706         addr = g_inet_socket_address_new (iaddr, tr->client_port.min);
3707         g_object_unref (iaddr);
3708         g_object_set_data_full (G_OBJECT (trans), "rtsp-client.remote-addr",
3709             addr, (GDestroyNotify) g_object_unref);
3710       }
3711     }
3712
3713     if (addr) {
3714       gst_buffer_add_net_address_meta (buffer, addr);
3715     }
3716
3717     /* dispatch to the stream based on the channel number */
3718     GST_LOG_OBJECT (client, "%u bytes of data on channel %u", size, channel);
3719     gst_rtsp_stream_transport_recv_data (trans, channel, buffer);
3720   } else {
3721     GST_DEBUG_OBJECT (client, "received %u bytes of data for "
3722         "unknown channel %u", size, channel);
3723     gst_buffer_unref (buffer);
3724   }
3725
3726   return;
3727
3728 /* ERRORS */
3729 invalid_length:
3730   {
3731     GST_DEBUG ("client %p: Short message received, ignoring", client);
3732     return;
3733   }
3734 }
3735
3736 /**
3737  * gst_rtsp_client_set_session_pool:
3738  * @client: a #GstRTSPClient
3739  * @pool: (transfer none) (nullable): a #GstRTSPSessionPool
3740  *
3741  * Set @pool as the sessionpool for @client which it will use to find
3742  * or allocate sessions. the sessionpool is usually inherited from the server
3743  * that created the client but can be overridden later.
3744  */
3745 void
3746 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
3747     GstRTSPSessionPool * pool)
3748 {
3749   GstRTSPSessionPool *old;
3750   GstRTSPClientPrivate *priv;
3751
3752   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3753
3754   priv = client->priv;
3755
3756   if (pool)
3757     g_object_ref (pool);
3758
3759   g_mutex_lock (&priv->lock);
3760   old = priv->session_pool;
3761   priv->session_pool = pool;
3762
3763   if (priv->session_removed_id) {
3764     g_signal_handler_disconnect (old, priv->session_removed_id);
3765     priv->session_removed_id = 0;
3766   }
3767   g_mutex_unlock (&priv->lock);
3768
3769   /* FIXME, should remove all sessions from the old pool for this client */
3770   if (old)
3771     g_object_unref (old);
3772 }
3773
3774 /**
3775  * gst_rtsp_client_get_session_pool:
3776  * @client: a #GstRTSPClient
3777  *
3778  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
3779  *
3780  * Returns: (transfer full) (nullable): a #GstRTSPSessionPool, unref after usage.
3781  */
3782 GstRTSPSessionPool *
3783 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
3784 {
3785   GstRTSPClientPrivate *priv;
3786   GstRTSPSessionPool *result;
3787
3788   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3789
3790   priv = client->priv;
3791
3792   g_mutex_lock (&priv->lock);
3793   if ((result = priv->session_pool))
3794     g_object_ref (result);
3795   g_mutex_unlock (&priv->lock);
3796
3797   return result;
3798 }
3799
3800 /**
3801  * gst_rtsp_client_set_mount_points:
3802  * @client: a #GstRTSPClient
3803  * @mounts: (transfer none) (nullable): a #GstRTSPMountPoints
3804  *
3805  * Set @mounts as the mount points for @client which it will use to map urls
3806  * to media streams. These mount points are usually inherited from the server that
3807  * created the client but can be overriden later.
3808  */
3809 void
3810 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
3811     GstRTSPMountPoints * mounts)
3812 {
3813   GstRTSPClientPrivate *priv;
3814   GstRTSPMountPoints *old;
3815
3816   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3817
3818   priv = client->priv;
3819
3820   if (mounts)
3821     g_object_ref (mounts);
3822
3823   g_mutex_lock (&priv->lock);
3824   old = priv->mount_points;
3825   priv->mount_points = mounts;
3826   g_mutex_unlock (&priv->lock);
3827
3828   if (old)
3829     g_object_unref (old);
3830 }
3831
3832 /**
3833  * gst_rtsp_client_get_mount_points:
3834  * @client: a #GstRTSPClient
3835  *
3836  * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
3837  *
3838  * Returns: (transfer full) (nullable): a #GstRTSPMountPoints, unref after usage.
3839  */
3840 GstRTSPMountPoints *
3841 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
3842 {
3843   GstRTSPClientPrivate *priv;
3844   GstRTSPMountPoints *result;
3845
3846   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3847
3848   priv = client->priv;
3849
3850   g_mutex_lock (&priv->lock);
3851   if ((result = priv->mount_points))
3852     g_object_ref (result);
3853   g_mutex_unlock (&priv->lock);
3854
3855   return result;
3856 }
3857
3858 /**
3859  * gst_rtsp_client_set_auth:
3860  * @client: a #GstRTSPClient
3861  * @auth: (transfer none) (nullable): a #GstRTSPAuth
3862  *
3863  * configure @auth to be used as the authentication manager of @client.
3864  */
3865 void
3866 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
3867 {
3868   GstRTSPClientPrivate *priv;
3869   GstRTSPAuth *old;
3870
3871   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3872
3873   priv = client->priv;
3874
3875   if (auth)
3876     g_object_ref (auth);
3877
3878   g_mutex_lock (&priv->lock);
3879   old = priv->auth;
3880   priv->auth = auth;
3881   g_mutex_unlock (&priv->lock);
3882
3883   if (old)
3884     g_object_unref (old);
3885 }
3886
3887
3888 /**
3889  * gst_rtsp_client_get_auth:
3890  * @client: a #GstRTSPClient
3891  *
3892  * Get the #GstRTSPAuth used as the authentication manager of @client.
3893  *
3894  * Returns: (transfer full) (nullable): the #GstRTSPAuth of @client.
3895  * g_object_unref() after usage.
3896  */
3897 GstRTSPAuth *
3898 gst_rtsp_client_get_auth (GstRTSPClient * client)
3899 {
3900   GstRTSPClientPrivate *priv;
3901   GstRTSPAuth *result;
3902
3903   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3904
3905   priv = client->priv;
3906
3907   g_mutex_lock (&priv->lock);
3908   if ((result = priv->auth))
3909     g_object_ref (result);
3910   g_mutex_unlock (&priv->lock);
3911
3912   return result;
3913 }
3914
3915 /**
3916  * gst_rtsp_client_set_thread_pool:
3917  * @client: a #GstRTSPClient
3918  * @pool: (transfer none) (nullable): a #GstRTSPThreadPool
3919  *
3920  * configure @pool to be used as the thread pool of @client.
3921  */
3922 void
3923 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
3924     GstRTSPThreadPool * pool)
3925 {
3926   GstRTSPClientPrivate *priv;
3927   GstRTSPThreadPool *old;
3928
3929   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
3930
3931   priv = client->priv;
3932
3933   if (pool)
3934     g_object_ref (pool);
3935
3936   g_mutex_lock (&priv->lock);
3937   old = priv->thread_pool;
3938   priv->thread_pool = pool;
3939   g_mutex_unlock (&priv->lock);
3940
3941   if (old)
3942     g_object_unref (old);
3943 }
3944
3945 /**
3946  * gst_rtsp_client_get_thread_pool:
3947  * @client: a #GstRTSPClient
3948  *
3949  * Get the #GstRTSPThreadPool used as the thread pool of @client.
3950  *
3951  * Returns: (transfer full) (nullable): the #GstRTSPThreadPool of @client. g_object_unref() after
3952  * usage.
3953  */
3954 GstRTSPThreadPool *
3955 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
3956 {
3957   GstRTSPClientPrivate *priv;
3958   GstRTSPThreadPool *result;
3959
3960   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3961
3962   priv = client->priv;
3963
3964   g_mutex_lock (&priv->lock);
3965   if ((result = priv->thread_pool))
3966     g_object_ref (result);
3967   g_mutex_unlock (&priv->lock);
3968
3969   return result;
3970 }
3971
3972 /**
3973  * gst_rtsp_client_set_connection:
3974  * @client: a #GstRTSPClient
3975  * @conn: (transfer full): a #GstRTSPConnection
3976  *
3977  * Set the #GstRTSPConnection of @client. This function takes ownership of
3978  * @conn.
3979  *
3980  * Returns: %TRUE on success.
3981  */
3982 gboolean
3983 gst_rtsp_client_set_connection (GstRTSPClient * client,
3984     GstRTSPConnection * conn)
3985 {
3986   GstRTSPClientPrivate *priv;
3987   GSocket *read_socket;
3988   GSocketAddress *address;
3989   GstRTSPUrl *url;
3990   GError *error = NULL;
3991
3992   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
3993   g_return_val_if_fail (conn != NULL, FALSE);
3994
3995   priv = client->priv;
3996
3997   read_socket = gst_rtsp_connection_get_read_socket (conn);
3998
3999   if (!(address = g_socket_get_local_address (read_socket, &error)))
4000     goto no_address;
4001
4002   g_free (priv->server_ip);
4003   /* keep the original ip that the client connected to */
4004   if (G_IS_INET_SOCKET_ADDRESS (address)) {
4005     GInetAddress *iaddr;
4006
4007     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
4008
4009     /* socket might be ipv6 but adress still ipv4 */
4010     priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
4011     priv->server_ip = g_inet_address_to_string (iaddr);
4012     g_object_unref (address);
4013   } else {
4014     priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
4015     priv->server_ip = g_strdup ("unknown");
4016   }
4017
4018   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
4019       priv->server_ip, priv->is_ipv6);
4020
4021   url = gst_rtsp_connection_get_url (conn);
4022   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
4023
4024   priv->connection = conn;
4025
4026   return TRUE;
4027
4028   /* ERRORS */
4029 no_address:
4030   {
4031     GST_ERROR ("could not get local address %s", error->message);
4032     g_error_free (error);
4033     return FALSE;
4034   }
4035 }
4036
4037 /**
4038  * gst_rtsp_client_get_connection:
4039  * @client: a #GstRTSPClient
4040  *
4041  * Get the #GstRTSPConnection of @client.
4042  *
4043  * Returns: (transfer none) (nullable): the #GstRTSPConnection of @client.
4044  * The connection object returned remains valid until the client is freed.
4045  */
4046 GstRTSPConnection *
4047 gst_rtsp_client_get_connection (GstRTSPClient * client)
4048 {
4049   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
4050
4051   return client->priv->connection;
4052 }
4053
4054 /**
4055  * gst_rtsp_client_set_send_func:
4056  * @client: a #GstRTSPClient
4057  * @func: (scope notified): a #GstRTSPClientSendFunc
4058  * @user_data: (closure): user data passed to @func
4059  * @notify: (allow-none): called when @user_data is no longer in use
4060  *
4061  * Set @func as the callback that will be called when a new message needs to be
4062  * sent to the client. @user_data is passed to @func and @notify is called when
4063  * @user_data is no longer in use.
4064  *
4065  * By default, the client will send the messages on the #GstRTSPConnection that
4066  * was configured with gst_rtsp_client_attach() was called.
4067  */
4068 void
4069 gst_rtsp_client_set_send_func (GstRTSPClient * client,
4070     GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
4071 {
4072   GstRTSPClientPrivate *priv;
4073   GDestroyNotify old_notify;
4074   gpointer old_data;
4075
4076   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
4077
4078   priv = client->priv;
4079
4080   g_mutex_lock (&priv->send_lock);
4081   priv->send_func = func;
4082   old_notify = priv->send_notify;
4083   old_data = priv->send_data;
4084   priv->send_notify = notify;
4085   priv->send_data = user_data;
4086   g_mutex_unlock (&priv->send_lock);
4087
4088   if (old_notify)
4089     old_notify (old_data);
4090 }
4091
4092 /**
4093  * gst_rtsp_client_handle_message:
4094  * @client: a #GstRTSPClient
4095  * @message: (transfer none): an #GstRTSPMessage
4096  *
4097  * Let the client handle @message.
4098  *
4099  * Returns: a #GstRTSPResult.
4100  */
4101 GstRTSPResult
4102 gst_rtsp_client_handle_message (GstRTSPClient * client,
4103     GstRTSPMessage * message)
4104 {
4105   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
4106   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
4107
4108   switch (message->type) {
4109     case GST_RTSP_MESSAGE_REQUEST:
4110       handle_request (client, message);
4111       break;
4112     case GST_RTSP_MESSAGE_RESPONSE:
4113       handle_response (client, message);
4114       break;
4115     case GST_RTSP_MESSAGE_DATA:
4116       handle_data (client, message);
4117       break;
4118     default:
4119       break;
4120   }
4121   return GST_RTSP_OK;
4122 }
4123
4124 /**
4125  * gst_rtsp_client_send_message:
4126  * @client: a #GstRTSPClient
4127  * @session: (allow-none) (transfer none): a #GstRTSPSession to send
4128  *   the message to or %NULL
4129  * @message: (transfer none): The #GstRTSPMessage to send
4130  *
4131  * Send a message message to the remote end. @message must be a
4132  * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
4133  */
4134 GstRTSPResult
4135 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
4136     GstRTSPMessage * message)
4137 {
4138   GstRTSPContext sctx = { NULL }
4139   , *ctx;
4140   GstRTSPClientPrivate *priv;
4141
4142   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
4143   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
4144   g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
4145       message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
4146
4147   priv = client->priv;
4148
4149   if (!(ctx = gst_rtsp_context_get_current ())) {
4150     ctx = &sctx;
4151     ctx->auth = priv->auth;
4152     gst_rtsp_context_push_current (ctx);
4153   }
4154
4155   ctx->conn = priv->connection;
4156   ctx->client = client;
4157   ctx->session = session;
4158
4159   send_message (client, ctx, message, FALSE);
4160
4161   if (ctx == &sctx)
4162     gst_rtsp_context_pop_current (ctx);
4163
4164   return GST_RTSP_OK;
4165 }
4166
4167 static gboolean
4168 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
4169     gboolean close, gpointer user_data)
4170 {
4171   GstRTSPClientPrivate *priv = client->priv;
4172   guint id = 0;
4173   GstRTSPResult ret;
4174
4175   /* send the message */
4176   ret = gst_rtsp_watch_send_message (priv->watch, message, &id);
4177   if (ret != GST_RTSP_OK)
4178     goto error;
4179
4180   /* if close flag is set, store the seq number so we can wait until it's
4181    * written to the client to close the connection */
4182   if (close)
4183     priv->close_seq = id;
4184
4185   if (gst_rtsp_message_get_type (message) == GST_RTSP_MESSAGE_DATA) {
4186     guint8 channel = 0;
4187     GstRTSPResult r;
4188
4189     r = gst_rtsp_message_parse_data (message, &channel);
4190     if (r != GST_RTSP_OK) {
4191       ret = r;
4192       goto error;
4193     }
4194
4195     /* check if the message has been queued for transmission in watch */
4196     if (id) {
4197       /* store the seq number so we can wait until it has been sent */
4198       GST_DEBUG_OBJECT (client, "wait for message %d, channel %d", id, channel);
4199       set_data_seq (client, channel, id);
4200     } else {
4201       GstRTSPStreamTransport *trans;
4202
4203       trans =
4204           g_hash_table_lookup (priv->transports,
4205           GINT_TO_POINTER ((gint) channel));
4206       if (trans) {
4207         GST_DEBUG_OBJECT (client, "emit 'message-sent' signal");
4208         g_mutex_unlock (&priv->send_lock);
4209         gst_rtsp_stream_transport_message_sent (trans);
4210         g_mutex_lock (&priv->send_lock);
4211       }
4212     }
4213   }
4214
4215   return ret == GST_RTSP_OK;
4216
4217   /* ERRORS */
4218 error:
4219   {
4220     GST_DEBUG_OBJECT (client, "got error %d", ret);
4221     return FALSE;
4222   }
4223 }
4224
4225 static GstRTSPResult
4226 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
4227     gpointer user_data)
4228 {
4229   return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
4230 }
4231
4232 static GstRTSPResult
4233 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
4234 {
4235   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4236   GstRTSPClientPrivate *priv = client->priv;
4237   GstRTSPStreamTransport *trans = NULL;
4238   guint8 channel = 0;
4239   gboolean close = FALSE;
4240
4241   g_mutex_lock (&priv->send_lock);
4242
4243   if (get_data_channel (client, cseq, &channel)) {
4244     trans = g_hash_table_lookup (priv->transports, GINT_TO_POINTER (channel));
4245     set_data_seq (client, channel, 0);
4246   }
4247
4248   if (priv->close_seq && priv->close_seq == cseq) {
4249     GST_INFO ("client %p: send close message", client);
4250     close = TRUE;
4251     priv->close_seq = 0;
4252   }
4253
4254   g_mutex_unlock (&priv->send_lock);
4255
4256   if (trans) {
4257     GST_DEBUG_OBJECT (client, "emit 'message-sent' signal");
4258     gst_rtsp_stream_transport_message_sent (trans);
4259   }
4260
4261   if (close)
4262     gst_rtsp_client_close (client);
4263
4264   return GST_RTSP_OK;
4265 }
4266
4267 static GstRTSPResult
4268 closed (GstRTSPWatch * watch, gpointer user_data)
4269 {
4270   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4271   GstRTSPClientPrivate *priv = client->priv;
4272   const gchar *tunnelid;
4273
4274   GST_INFO ("client %p: connection closed", client);
4275
4276   if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
4277     g_mutex_lock (&tunnels_lock);
4278     /* remove from tunnelids */
4279     g_hash_table_remove (tunnels, tunnelid);
4280     g_mutex_unlock (&tunnels_lock);
4281   }
4282
4283   gst_rtsp_watch_set_flushing (watch, TRUE);
4284   g_mutex_lock (&priv->watch_lock);
4285   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
4286   g_mutex_unlock (&priv->watch_lock);
4287
4288   return GST_RTSP_OK;
4289 }
4290
4291 static GstRTSPResult
4292 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
4293 {
4294   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4295   gchar *str;
4296
4297   str = gst_rtsp_strresult (result);
4298   GST_INFO ("client %p: received an error %s", client, str);
4299   g_free (str);
4300
4301   return GST_RTSP_OK;
4302 }
4303
4304 static GstRTSPResult
4305 error_full (GstRTSPWatch * watch, GstRTSPResult result,
4306     GstRTSPMessage * message, guint id, gpointer user_data)
4307 {
4308   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4309   gchar *str;
4310
4311   str = gst_rtsp_strresult (result);
4312   GST_INFO
4313       ("client %p: error when handling message %p with id %d: %s",
4314       client, message, id, str);
4315   g_free (str);
4316
4317   return GST_RTSP_OK;
4318 }
4319
4320 static gboolean
4321 remember_tunnel (GstRTSPClient * client)
4322 {
4323   GstRTSPClientPrivate *priv = client->priv;
4324   const gchar *tunnelid;
4325
4326   /* store client in the pending tunnels */
4327   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
4328   if (tunnelid == NULL)
4329     goto no_tunnelid;
4330
4331   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
4332
4333   /* we can't have two clients connecting with the same tunnelid */
4334   g_mutex_lock (&tunnels_lock);
4335   if (g_hash_table_lookup (tunnels, tunnelid))
4336     goto tunnel_existed;
4337
4338   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
4339   g_mutex_unlock (&tunnels_lock);
4340
4341   return TRUE;
4342
4343   /* ERRORS */
4344 no_tunnelid:
4345   {
4346     GST_ERROR ("client %p: no tunnelid provided", client);
4347     return FALSE;
4348   }
4349 tunnel_existed:
4350   {
4351     g_mutex_unlock (&tunnels_lock);
4352     GST_ERROR ("client %p: tunnel session %s already existed", client,
4353         tunnelid);
4354     return FALSE;
4355   }
4356 }
4357
4358 static GstRTSPResult
4359 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
4360 {
4361   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4362   GstRTSPClientPrivate *priv = client->priv;
4363
4364   GST_WARNING ("client %p: tunnel lost (connection %p)", client,
4365       priv->connection);
4366
4367   /* ignore error, it'll only be a problem when the client does a POST again */
4368   remember_tunnel (client);
4369
4370   return GST_RTSP_OK;
4371 }
4372
4373 static GstRTSPStatusCode
4374 handle_tunnel (GstRTSPClient * client)
4375 {
4376   GstRTSPClientPrivate *priv = client->priv;
4377   GstRTSPClient *oclient;
4378   GstRTSPClientPrivate *opriv;
4379   const gchar *tunnelid;
4380
4381   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
4382   if (tunnelid == NULL)
4383     goto no_tunnelid;
4384
4385   /* check for previous tunnel */
4386   g_mutex_lock (&tunnels_lock);
4387   oclient = g_hash_table_lookup (tunnels, tunnelid);
4388
4389   if (oclient == NULL) {
4390     /* no previous tunnel, remember tunnel */
4391     g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
4392     g_mutex_unlock (&tunnels_lock);
4393
4394     GST_INFO ("client %p: no previous tunnel found, remembering tunnel (%p)",
4395         client, priv->connection);
4396   } else {
4397     /* merge both tunnels into the first client */
4398     /* remove the old client from the table. ref before because removing it will
4399      * remove the ref to it. */
4400     g_object_ref (oclient);
4401     g_hash_table_remove (tunnels, tunnelid);
4402     g_mutex_unlock (&tunnels_lock);
4403
4404     opriv = oclient->priv;
4405
4406     g_mutex_lock (&opriv->watch_lock);
4407     if (opriv->watch == NULL)
4408       goto tunnel_closed;
4409     if (opriv->tstate == priv->tstate)
4410       goto tunnel_duplicate_id;
4411
4412     GST_INFO ("client %p: found previous tunnel %p (old %p, new %p)", client,
4413         oclient, opriv->connection, priv->connection);
4414
4415     gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
4416     gst_rtsp_watch_reset (priv->watch);
4417     gst_rtsp_watch_reset (opriv->watch);
4418     g_mutex_unlock (&opriv->watch_lock);
4419     g_object_unref (oclient);
4420
4421     /* the old client owns the tunnel now, the new one will be freed */
4422     g_source_destroy ((GSource *) priv->watch);
4423     priv->watch = NULL;
4424     gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
4425   }
4426
4427   return GST_RTSP_STS_OK;
4428
4429   /* ERRORS */
4430 no_tunnelid:
4431   {
4432     GST_ERROR ("client %p: no tunnelid provided", client);
4433     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
4434   }
4435 tunnel_closed:
4436   {
4437     GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
4438     g_mutex_unlock (&opriv->watch_lock);
4439     g_object_unref (oclient);
4440     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
4441   }
4442 tunnel_duplicate_id:
4443   {
4444     GST_ERROR ("client %p: tunnel session %s was duplicate", client, tunnelid);
4445     g_mutex_unlock (&opriv->watch_lock);
4446     g_object_unref (oclient);
4447     return GST_RTSP_STS_BAD_REQUEST;
4448   }
4449 }
4450
4451 static GstRTSPStatusCode
4452 tunnel_get (GstRTSPWatch * watch, gpointer user_data)
4453 {
4454   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4455
4456   GST_INFO ("client %p: tunnel get (connection %p)", client,
4457       client->priv->connection);
4458
4459   g_mutex_lock (&client->priv->lock);
4460   client->priv->tstate = TUNNEL_STATE_GET;
4461   g_mutex_unlock (&client->priv->lock);
4462
4463   return handle_tunnel (client);
4464 }
4465
4466 static GstRTSPResult
4467 tunnel_post (GstRTSPWatch * watch, gpointer user_data)
4468 {
4469   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4470
4471   GST_INFO ("client %p: tunnel post (connection %p)", client,
4472       client->priv->connection);
4473
4474   g_mutex_lock (&client->priv->lock);
4475   client->priv->tstate = TUNNEL_STATE_POST;
4476   g_mutex_unlock (&client->priv->lock);
4477
4478   if (handle_tunnel (client) != GST_RTSP_STS_OK)
4479     return GST_RTSP_ERROR;
4480
4481   return GST_RTSP_OK;
4482 }
4483
4484 static GstRTSPResult
4485 tunnel_http_response (GstRTSPWatch * watch, GstRTSPMessage * request,
4486     GstRTSPMessage * response, gpointer user_data)
4487 {
4488   GstRTSPClientClass *klass;
4489
4490   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
4491   klass = GST_RTSP_CLIENT_GET_CLASS (client);
4492
4493   if (klass->tunnel_http_response) {
4494     klass->tunnel_http_response (client, request, response);
4495   }
4496
4497   return GST_RTSP_OK;
4498 }
4499
4500 static GstRTSPWatchFuncs watch_funcs = {
4501   message_received,
4502   message_sent,
4503   closed,
4504   error,
4505   tunnel_get,
4506   tunnel_post,
4507   error_full,
4508   tunnel_lost,
4509   tunnel_http_response
4510 };
4511
4512 static void
4513 client_watch_notify (GstRTSPClient * client)
4514 {
4515   GstRTSPClientPrivate *priv = client->priv;
4516   gboolean closed = TRUE;
4517
4518   GST_INFO ("client %p: watch destroyed", client);
4519   priv->watch = NULL;
4520   /* remove all sessions if the media says so and so drop the extra client ref */
4521   rtsp_ctrl_timeout_remove (priv);
4522   gst_rtsp_client_session_filter (client, cleanup_session, &closed);
4523   if (closed)
4524     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
4525   g_object_unref (client);
4526 }
4527
4528 /**
4529  * gst_rtsp_client_attach:
4530  * @client: a #GstRTSPClient
4531  * @context: (allow-none): a #GMainContext
4532  *
4533  * Attaches @client to @context. When the mainloop for @context is run, the
4534  * client will be dispatched. When @context is %NULL, the default context will be
4535  * used).
4536  *
4537  * This function should be called when the client properties and urls are fully
4538  * configured and the client is ready to start.
4539  *
4540  * Returns: the ID (greater than 0) for the source within the GMainContext.
4541  */
4542 guint
4543 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
4544 {
4545   GstRTSPClientPrivate *priv;
4546   GSource *timer_src;
4547   guint res;
4548
4549   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
4550   priv = client->priv;
4551   g_return_val_if_fail (priv->connection != NULL, 0);
4552   g_return_val_if_fail (priv->watch == NULL, 0);
4553
4554   /* make sure noone will free the context before the watch is destroyed */
4555   priv->watch_context = g_main_context_ref (context);
4556
4557   /* create watch for the connection and attach */
4558   priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
4559       g_object_ref (client), (GDestroyNotify) client_watch_notify);
4560   gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
4561       (GDestroyNotify) gst_rtsp_watch_unref);
4562
4563   gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
4564
4565   GST_INFO ("client %p: attaching to context %p", client, context);
4566   res = gst_rtsp_watch_attach (priv->watch, context);
4567
4568   /* Setting up a timeout for the RTSP control channel until a session
4569    * is up where it is handling timeouts. */
4570   rtsp_ctrl_timeout_remove (priv);      /* removing old if any */
4571   g_mutex_lock (&priv->lock);
4572
4573   timer_src = g_timeout_source_new_seconds (RTSP_CTRL_CB_INTERVAL);
4574   g_source_set_callback (timer_src, rtsp_ctrl_timeout_cb, client, NULL);
4575   priv->rtsp_ctrl_timeout_id = g_source_attach (timer_src, priv->watch_context);
4576   g_source_unref (timer_src);
4577   GST_DEBUG ("rtsp control setting up session timeout id=%u.",
4578       priv->rtsp_ctrl_timeout_id);
4579
4580   g_mutex_unlock (&priv->lock);
4581
4582   return res;
4583 }
4584
4585 /**
4586  * gst_rtsp_client_session_filter:
4587  * @client: a #GstRTSPClient
4588  * @func: (scope call) (allow-none): a callback
4589  * @user_data: user data passed to @func
4590  *
4591  * Call @func for each session managed by @client. The result value of @func
4592  * determines what happens to the session. @func will be called with @client
4593  * locked so no further actions on @client can be performed from @func.
4594  *
4595  * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
4596  * @client.
4597  *
4598  * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
4599  *
4600  * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
4601  * will also be added with an additional ref to the result #GList of this
4602  * function..
4603  *
4604  * When @func is %NULL, #GST_RTSP_FILTER_REF will be assumed for each session.
4605  *
4606  * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
4607  * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
4608  * element in the #GList should be unreffed before the list is freed.
4609  */
4610 GList *
4611 gst_rtsp_client_session_filter (GstRTSPClient * client,
4612     GstRTSPClientSessionFilterFunc func, gpointer user_data)
4613 {
4614   GstRTSPClientPrivate *priv;
4615   GList *result, *walk, *next;
4616   GHashTable *visited;
4617   guint cookie;
4618
4619   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
4620
4621   priv = client->priv;
4622
4623   result = NULL;
4624   if (func)
4625     visited = g_hash_table_new_full (NULL, NULL, g_object_unref, NULL);
4626
4627   g_mutex_lock (&priv->lock);
4628 restart:
4629   cookie = priv->sessions_cookie;
4630   for (walk = priv->sessions; walk; walk = next) {
4631     GstRTSPSession *sess = walk->data;
4632     GstRTSPFilterResult res;
4633     gboolean changed;
4634
4635     next = g_list_next (walk);
4636
4637     if (func) {
4638       /* only visit each session once */
4639       if (g_hash_table_contains (visited, sess))
4640         continue;
4641
4642       g_hash_table_add (visited, g_object_ref (sess));
4643       g_mutex_unlock (&priv->lock);
4644
4645       res = func (client, sess, user_data);
4646
4647       g_mutex_lock (&priv->lock);
4648     } else
4649       res = GST_RTSP_FILTER_REF;
4650
4651     changed = (cookie != priv->sessions_cookie);
4652
4653     switch (res) {
4654       case GST_RTSP_FILTER_REMOVE:
4655         /* stop watching the session and pretend it went away, if the list was
4656          * changed, we can't use the current list position, try to see if we
4657          * still have the session */
4658         client_unwatch_session (client, sess, changed ? NULL : walk);
4659         cookie = priv->sessions_cookie;
4660         break;
4661       case GST_RTSP_FILTER_REF:
4662         result = g_list_prepend (result, g_object_ref (sess));
4663         break;
4664       case GST_RTSP_FILTER_KEEP:
4665       default:
4666         break;
4667     }
4668     if (changed)
4669       goto restart;
4670   }
4671   g_mutex_unlock (&priv->lock);
4672
4673   if (func)
4674     g_hash_table_unref (visited);
4675
4676   return result;
4677 }