rtsp-client: Use a random session ID in the SDP
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-client.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 /**
20  * SECTION:rtsp-client
21  * @short_description: A client connection state
22  * @see_also: #GstRTSPServer, #GstRTSPThreadPool
23  *
24  * The client object handles the connection with a client for as long as a TCP
25  * connection is open.
26  *
27  * A #GstRTSPClient is created by #GstRTSPServer when a new connection is
28  * accepted and it inherits the #GstRTSPMountPoints, #GstRTSPSessionPool,
29  * #GstRTSPAuth and #GstRTSPThreadPool from the server.
30  *
31  * The client connection should be configured with the #GstRTSPConnection using
32  * gst_rtsp_client_set_connection() before it can be attached to a #GMainContext
33  * using gst_rtsp_client_attach(). From then on the client will handle requests
34  * on the connection.
35  *
36  * Use gst_rtsp_client_session_filter() to iterate or modify all the
37  * #GstRTSPSession objects managed by the client object.
38  *
39  * Last reviewed on 2013-07-11 (1.0.0)
40  */
41
42 #include <stdio.h>
43 #include <string.h>
44
45 #include <gst/sdp/gstmikey.h>
46
47 #include "rtsp-client.h"
48 #include "rtsp-sdp.h"
49 #include "rtsp-params.h"
50
51 #define GST_RTSP_CLIENT_GET_PRIVATE(obj)  \
52    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientPrivate))
53
54 /* locking order:
55  * send_lock, lock, tunnels_lock
56  */
57
58 struct _GstRTSPClientPrivate
59 {
60   GMutex lock;                  /* protects everything else */
61   GMutex send_lock;
62   GMutex watch_lock;
63   GstRTSPConnection *connection;
64   GstRTSPWatch *watch;
65   GMainContext *watch_context;
66   guint close_seq;
67   gchar *server_ip;
68   gboolean is_ipv6;
69
70   GstRTSPClientSendFunc send_func;      /* protected by send_lock */
71   gpointer send_data;           /* protected by send_lock */
72   GDestroyNotify send_notify;   /* protected by send_lock */
73
74   GstRTSPSessionPool *session_pool;
75   gulong session_removed_id;
76   GstRTSPMountPoints *mount_points;
77   GstRTSPAuth *auth;
78   GstRTSPThreadPool *thread_pool;
79
80   /* used to cache the media in the last requested DESCRIBE so that
81    * we can pick it up in the next SETUP immediately */
82   gchar *path;
83   GstRTSPMedia *media;
84
85   GHashTable *transports;
86   GList *sessions;
87   guint sessions_cookie;
88
89   gboolean drop_backlog;
90 };
91
92 static GMutex tunnels_lock;
93 static GHashTable *tunnels;     /* protected by tunnels_lock */
94
95 /* FIXME make this configurable. We don't want to do this yet because it will
96  * be superceeded by a cache object later */
97 #define WATCH_BACKLOG_SIZE              100
98
99 #define DEFAULT_SESSION_POOL            NULL
100 #define DEFAULT_MOUNT_POINTS            NULL
101 #define DEFAULT_DROP_BACKLOG            TRUE
102
103 enum
104 {
105   PROP_0,
106   PROP_SESSION_POOL,
107   PROP_MOUNT_POINTS,
108   PROP_DROP_BACKLOG,
109   PROP_LAST
110 };
111
112 enum
113 {
114   SIGNAL_CLOSED,
115   SIGNAL_NEW_SESSION,
116   SIGNAL_OPTIONS_REQUEST,
117   SIGNAL_DESCRIBE_REQUEST,
118   SIGNAL_SETUP_REQUEST,
119   SIGNAL_PLAY_REQUEST,
120   SIGNAL_PAUSE_REQUEST,
121   SIGNAL_TEARDOWN_REQUEST,
122   SIGNAL_SET_PARAMETER_REQUEST,
123   SIGNAL_GET_PARAMETER_REQUEST,
124   SIGNAL_HANDLE_RESPONSE,
125   SIGNAL_SEND_MESSAGE,
126   SIGNAL_LAST
127 };
128
129 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
130 #define GST_CAT_DEFAULT rtsp_client_debug
131
132 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
133
134 static void gst_rtsp_client_get_property (GObject * object, guint propid,
135     GValue * value, GParamSpec * pspec);
136 static void gst_rtsp_client_set_property (GObject * object, guint propid,
137     const GValue * value, GParamSpec * pspec);
138 static void gst_rtsp_client_finalize (GObject * obj);
139
140 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
141 static gboolean default_configure_client_media (GstRTSPClient * client,
142     GstRTSPMedia * media, GstRTSPStream * stream, GstRTSPContext * ctx);
143 static gboolean default_configure_client_transport (GstRTSPClient * client,
144     GstRTSPContext * ctx, GstRTSPTransport * ct);
145 static GstRTSPResult default_params_set (GstRTSPClient * client,
146     GstRTSPContext * ctx);
147 static GstRTSPResult default_params_get (GstRTSPClient * client,
148     GstRTSPContext * ctx);
149 static gchar *default_make_path_from_uri (GstRTSPClient * client,
150     const GstRTSPUrl * uri);
151 static void client_session_removed (GstRTSPSessionPool * pool,
152     GstRTSPSession * session, GstRTSPClient * client);
153
154 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
155
156 static void
157 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
158 {
159   GObjectClass *gobject_class;
160
161   g_type_class_add_private (klass, sizeof (GstRTSPClientPrivate));
162
163   gobject_class = G_OBJECT_CLASS (klass);
164
165   gobject_class->get_property = gst_rtsp_client_get_property;
166   gobject_class->set_property = gst_rtsp_client_set_property;
167   gobject_class->finalize = gst_rtsp_client_finalize;
168
169   klass->create_sdp = create_sdp;
170   klass->configure_client_media = default_configure_client_media;
171   klass->configure_client_transport = default_configure_client_transport;
172   klass->params_set = default_params_set;
173   klass->params_get = default_params_get;
174   klass->make_path_from_uri = default_make_path_from_uri;
175
176   g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
177       g_param_spec_object ("session-pool", "Session Pool",
178           "The session pool to use for client session",
179           GST_TYPE_RTSP_SESSION_POOL,
180           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
181
182   g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
183       g_param_spec_object ("mount-points", "Mount Points",
184           "The mount points to use for client session",
185           GST_TYPE_RTSP_MOUNT_POINTS,
186           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
187
188   g_object_class_install_property (gobject_class, PROP_DROP_BACKLOG,
189       g_param_spec_boolean ("drop-backlog", "Drop Backlog",
190           "Drop data when the backlog queue is full",
191           DEFAULT_DROP_BACKLOG, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
192
193   gst_rtsp_client_signals[SIGNAL_CLOSED] =
194       g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
195       G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
196       g_cclosure_marshal_generic, G_TYPE_NONE, 0, G_TYPE_NONE);
197
198   gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
199       g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
200       G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
201       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
202
203   gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
204       g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
205       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
206       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
207       GST_TYPE_RTSP_CONTEXT);
208
209   gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
210       g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
211       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
212       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
213       GST_TYPE_RTSP_CONTEXT);
214
215   gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
216       g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
217       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
218       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
219       GST_TYPE_RTSP_CONTEXT);
220
221   gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
222       g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
223       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
224       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
225       GST_TYPE_RTSP_CONTEXT);
226
227   gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
228       g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
229       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
230       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
231       GST_TYPE_RTSP_CONTEXT);
232
233   gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
234       g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
235       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
236       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
237       GST_TYPE_RTSP_CONTEXT);
238
239   gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
240       g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
241       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
242           set_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
243       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
244
245   gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
246       g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
247       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
248           get_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
249       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
250
251   gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
252       g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
253       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
254           handle_response), NULL, NULL, g_cclosure_marshal_generic,
255       G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
256
257   /**
258    * GstRTSPClient::send-message:
259    * @client: The RTSP client
260    * @session: (type GstRtspServer.RTSPSession): The session
261    * @message: (type GstRtsp.RTSPMessage): The message
262    */
263   gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE] =
264       g_signal_new ("send-message", G_TYPE_FROM_CLASS (klass),
265       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
266           send_message), NULL, NULL, g_cclosure_marshal_generic,
267       G_TYPE_NONE, 2, GST_TYPE_RTSP_CONTEXT, G_TYPE_POINTER);
268
269   tunnels =
270       g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
271   g_mutex_init (&tunnels_lock);
272
273   GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
274 }
275
276 static void
277 gst_rtsp_client_init (GstRTSPClient * client)
278 {
279   GstRTSPClientPrivate *priv = GST_RTSP_CLIENT_GET_PRIVATE (client);
280
281   client->priv = priv;
282
283   g_mutex_init (&priv->lock);
284   g_mutex_init (&priv->send_lock);
285   g_mutex_init (&priv->watch_lock);
286   priv->close_seq = 0;
287   priv->drop_backlog = DEFAULT_DROP_BACKLOG;
288   priv->transports =
289       g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL,
290       g_object_unref);
291 }
292
293 static GstRTSPFilterResult
294 filter_session_media (GstRTSPSession * sess, GstRTSPSessionMedia * sessmedia,
295     gpointer user_data)
296 {
297   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
298
299   return GST_RTSP_FILTER_REMOVE;
300 }
301
302 static void
303 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
304 {
305   GstRTSPClientPrivate *priv = client->priv;
306
307   g_mutex_lock (&priv->lock);
308   /* check if we already know about this session */
309   if (g_list_find (priv->sessions, session) == NULL) {
310     GST_INFO ("watching session %p", session);
311
312     priv->sessions = g_list_prepend (priv->sessions, g_object_ref (session));
313     priv->sessions_cookie++;
314
315     /* connect removed session handler, it will be disconnected when the last
316      * session gets removed  */
317     if (priv->session_removed_id == 0)
318       priv->session_removed_id = g_signal_connect_data (priv->session_pool,
319           "session-removed", G_CALLBACK (client_session_removed),
320           g_object_ref (client), (GClosureNotify) g_object_unref, 0);
321   }
322   g_mutex_unlock (&priv->lock);
323
324   return;
325 }
326
327 /* should be called with lock */
328 static void
329 client_unwatch_session (GstRTSPClient * client, GstRTSPSession * session,
330     GList * link)
331 {
332   GstRTSPClientPrivate *priv = client->priv;
333
334   GST_INFO ("client %p: unwatch session %p", client, session);
335
336   if (link == NULL) {
337     link = g_list_find (priv->sessions, session);
338     if (link == NULL)
339       return;
340   }
341
342   priv->sessions = g_list_delete_link (priv->sessions, link);
343   priv->sessions_cookie++;
344
345   /* if this was the last session, disconnect the handler.
346    * This will also drop the extra client ref */
347   if (!priv->sessions) {
348     g_signal_handler_disconnect (priv->session_pool, priv->session_removed_id);
349     priv->session_removed_id = 0;
350   }
351
352   /* remove the session */
353   g_object_unref (session);
354 }
355
356 static GstRTSPFilterResult
357 cleanup_session (GstRTSPClient * client, GstRTSPSession * sess,
358     gpointer user_data)
359 {
360   /* unlink all media managed in this session. This needs to happen
361    * without the client lock, so we really want to do it here. */
362   gst_rtsp_session_filter (sess, filter_session_media, client);
363
364   return GST_RTSP_FILTER_REMOVE;
365 }
366
367 static void
368 clean_cached_media (GstRTSPClient * client, gboolean unprepare)
369 {
370   GstRTSPClientPrivate *priv = client->priv;
371
372   if (priv->path) {
373     g_free (priv->path);
374     priv->path = NULL;
375   }
376   if (priv->media) {
377     if (unprepare)
378       gst_rtsp_media_unprepare (priv->media);
379     g_object_unref (priv->media);
380     priv->media = NULL;
381   }
382 }
383
384 /* A client is finalized when the connection is broken */
385 static void
386 gst_rtsp_client_finalize (GObject * obj)
387 {
388   GstRTSPClient *client = GST_RTSP_CLIENT (obj);
389   GstRTSPClientPrivate *priv = client->priv;
390
391   GST_INFO ("finalize client %p", client);
392
393   if (priv->watch)
394     gst_rtsp_watch_set_flushing (priv->watch, TRUE);
395   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
396
397   if (priv->watch)
398     g_source_destroy ((GSource *) priv->watch);
399
400   if (priv->watch_context)
401     g_main_context_unref (priv->watch_context);
402
403   /* all sessions should have been removed by now. We keep a ref to
404    * the client object for the session removed handler. The ref is
405    * dropped when the last session is removed from the list. */
406   g_assert (priv->sessions == NULL);
407   g_assert (priv->session_removed_id == 0);
408
409   g_hash_table_unref (priv->transports);
410
411   if (priv->connection)
412     gst_rtsp_connection_free (priv->connection);
413   if (priv->session_pool) {
414     g_object_unref (priv->session_pool);
415   }
416   if (priv->mount_points)
417     g_object_unref (priv->mount_points);
418   if (priv->auth)
419     g_object_unref (priv->auth);
420   if (priv->thread_pool)
421     g_object_unref (priv->thread_pool);
422
423   clean_cached_media (client, TRUE);
424
425   g_free (priv->server_ip);
426   g_mutex_clear (&priv->lock);
427   g_mutex_clear (&priv->send_lock);
428   g_mutex_clear (&priv->watch_lock);
429
430   G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
431 }
432
433 static void
434 gst_rtsp_client_get_property (GObject * object, guint propid,
435     GValue * value, GParamSpec * pspec)
436 {
437   GstRTSPClient *client = GST_RTSP_CLIENT (object);
438   GstRTSPClientPrivate *priv = client->priv;
439
440   switch (propid) {
441     case PROP_SESSION_POOL:
442       g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
443       break;
444     case PROP_MOUNT_POINTS:
445       g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
446       break;
447     case PROP_DROP_BACKLOG:
448       g_value_set_boolean (value, priv->drop_backlog);
449       break;
450     default:
451       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
452   }
453 }
454
455 static void
456 gst_rtsp_client_set_property (GObject * object, guint propid,
457     const GValue * value, GParamSpec * pspec)
458 {
459   GstRTSPClient *client = GST_RTSP_CLIENT (object);
460   GstRTSPClientPrivate *priv = client->priv;
461
462   switch (propid) {
463     case PROP_SESSION_POOL:
464       gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
465       break;
466     case PROP_MOUNT_POINTS:
467       gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
468       break;
469     case PROP_DROP_BACKLOG:
470       g_mutex_lock (&priv->lock);
471       priv->drop_backlog = g_value_get_boolean (value);
472       g_mutex_unlock (&priv->lock);
473       break;
474     default:
475       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
476   }
477 }
478
479 /**
480  * gst_rtsp_client_new:
481  *
482  * Create a new #GstRTSPClient instance.
483  *
484  * Returns: (transfer full): a new #GstRTSPClient
485  */
486 GstRTSPClient *
487 gst_rtsp_client_new (void)
488 {
489   GstRTSPClient *result;
490
491   result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
492
493   return result;
494 }
495
496 static void
497 send_message (GstRTSPClient * client, GstRTSPContext * ctx,
498     GstRTSPMessage * message, gboolean close)
499 {
500   GstRTSPClientPrivate *priv = client->priv;
501
502   gst_rtsp_message_add_header (message, GST_RTSP_HDR_SERVER,
503       "GStreamer RTSP server");
504
505   /* remove any previous header */
506   gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
507
508   /* add the new session header for new session ids */
509   if (ctx->session) {
510     gst_rtsp_message_take_header (message, GST_RTSP_HDR_SESSION,
511         gst_rtsp_session_get_header (ctx->session));
512   }
513
514   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
515     gst_rtsp_message_dump (message);
516   }
517
518   if (close)
519     gst_rtsp_message_add_header (message, GST_RTSP_HDR_CONNECTION, "close");
520
521   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE],
522       0, ctx, message);
523
524   g_mutex_lock (&priv->send_lock);
525   if (priv->send_func)
526     priv->send_func (client, message, close, priv->send_data);
527   g_mutex_unlock (&priv->send_lock);
528
529   gst_rtsp_message_unset (message);
530 }
531
532 static void
533 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
534     GstRTSPContext * ctx)
535 {
536   gst_rtsp_message_init_response (ctx->response, code,
537       gst_rtsp_status_as_text (code), ctx->request);
538
539   ctx->session = NULL;
540
541   send_message (client, ctx, ctx->response, FALSE);
542 }
543
544 static void
545 send_option_not_supported_response (GstRTSPClient * client,
546     GstRTSPContext * ctx, const gchar * unsupported_options)
547 {
548   GstRTSPStatusCode code = GST_RTSP_STS_OPTION_NOT_SUPPORTED;
549
550   gst_rtsp_message_init_response (ctx->response, code,
551       gst_rtsp_status_as_text (code), ctx->request);
552
553   if (unsupported_options != NULL) {
554     gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_UNSUPPORTED,
555         unsupported_options);
556   }
557
558   ctx->session = NULL;
559
560   send_message (client, ctx, ctx->response, FALSE);
561 }
562
563 static gboolean
564 paths_are_equal (const gchar * path1, const gchar * path2, gint len2)
565 {
566   if (path1 == NULL || path2 == NULL)
567     return FALSE;
568
569   if (strlen (path1) != len2)
570     return FALSE;
571
572   if (strncmp (path1, path2, len2))
573     return FALSE;
574
575   return TRUE;
576 }
577
578 /* this function is called to initially find the media for the DESCRIBE request
579  * but is cached for when the same client (without breaking the connection) is
580  * doing a setup for the exact same url. */
581 static GstRTSPMedia *
582 find_media (GstRTSPClient * client, GstRTSPContext * ctx, gchar * path,
583     gint * matched)
584 {
585   GstRTSPClientPrivate *priv = client->priv;
586   GstRTSPMediaFactory *factory;
587   GstRTSPMedia *media;
588   gint path_len;
589
590   /* find the longest matching factory for the uri first */
591   if (!(factory = gst_rtsp_mount_points_match (priv->mount_points,
592               path, matched)))
593     goto no_factory;
594
595   ctx->factory = factory;
596
597   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS))
598     goto no_factory_access;
599
600   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT))
601     goto not_authorized;
602
603   if (matched)
604     path_len = *matched;
605   else
606     path_len = strlen (path);
607
608   if (!paths_are_equal (priv->path, path, path_len)) {
609     GstRTSPThread *thread;
610
611     /* remove any previously cached values before we try to construct a new
612      * media for uri */
613     clean_cached_media (client, TRUE);
614
615     /* prepare the media and add it to the pipeline */
616     if (!(media = gst_rtsp_media_factory_construct (factory, ctx->uri)))
617       goto no_media;
618
619     ctx->media = media;
620
621     thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
622         GST_RTSP_THREAD_TYPE_MEDIA, ctx);
623     if (thread == NULL)
624       goto no_thread;
625
626     /* prepare the media */
627     if (!(gst_rtsp_media_prepare (media, thread)))
628       goto no_prepare;
629
630     /* now keep track of the uri and the media */
631     priv->path = g_strndup (path, path_len);
632     priv->media = media;
633   } else {
634     /* we have seen this path before, used cached media */
635     media = priv->media;
636     ctx->media = media;
637     GST_INFO ("reusing cached media %p for path %s", media, priv->path);
638   }
639
640   g_object_unref (factory);
641   ctx->factory = NULL;
642
643   if (media)
644     g_object_ref (media);
645
646   return media;
647
648   /* ERRORS */
649 no_factory:
650   {
651     GST_ERROR ("client %p: no factory for path %s", client, path);
652     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
653     return NULL;
654   }
655 no_factory_access:
656   {
657     GST_ERROR ("client %p: not authorized to see factory path %s", client,
658         path);
659     /* error reply is already sent */
660     return NULL;
661   }
662 not_authorized:
663   {
664     GST_ERROR ("client %p: not authorized for factory path %s", client, path);
665     /* error reply is already sent */
666     return NULL;
667   }
668 no_media:
669   {
670     GST_ERROR ("client %p: can't create media", client);
671     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
672     g_object_unref (factory);
673     ctx->factory = NULL;
674     return NULL;
675   }
676 no_thread:
677   {
678     GST_ERROR ("client %p: can't create thread", client);
679     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
680     g_object_unref (media);
681     ctx->media = NULL;
682     g_object_unref (factory);
683     ctx->factory = NULL;
684     return NULL;
685   }
686 no_prepare:
687   {
688     GST_ERROR ("client %p: can't prepare media", client);
689     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
690     g_object_unref (media);
691     ctx->media = NULL;
692     g_object_unref (factory);
693     ctx->factory = NULL;
694     return NULL;
695   }
696 }
697
698 static gboolean
699 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
700 {
701   GstRTSPClientPrivate *priv = client->priv;
702   GstRTSPMessage message = { 0 };
703   GstRTSPResult res = GST_RTSP_OK;
704   GstMapInfo map_info;
705   guint8 *data;
706   guint usize;
707
708   gst_rtsp_message_init_data (&message, channel);
709
710   /* FIXME, need some sort of iovec RTSPMessage here */
711   if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
712     return FALSE;
713
714   gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
715
716   g_mutex_lock (&priv->send_lock);
717   if (priv->send_func)
718     res = priv->send_func (client, &message, FALSE, priv->send_data);
719   g_mutex_unlock (&priv->send_lock);
720
721   gst_rtsp_message_steal_body (&message, &data, &usize);
722   gst_buffer_unmap (buffer, &map_info);
723
724   gst_rtsp_message_unset (&message);
725
726   return res == GST_RTSP_OK;
727 }
728
729 /**
730  * gst_rtsp_client_close:
731  * @client: a #GstRTSPClient
732  *
733  * Close the connection of @client and remove all media it was managing.
734  *
735  * Since: 1.4
736  */
737 void
738 gst_rtsp_client_close (GstRTSPClient * client)
739 {
740   GstRTSPClientPrivate *priv = client->priv;
741   const gchar *tunnelid;
742
743   GST_DEBUG ("client %p: closing connection", client);
744
745   if (priv->connection) {
746     if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
747       g_mutex_lock (&tunnels_lock);
748       /* remove from tunnelids */
749       g_hash_table_remove (tunnels, tunnelid);
750       g_mutex_unlock (&tunnels_lock);
751     }
752     gst_rtsp_connection_close (priv->connection);
753   }
754
755   /* connection is now closed, destroy the watch which will also cause the
756    * closed signal to be emitted */
757   if (priv->watch) {
758     GST_DEBUG ("client %p: destroying watch", client);
759     g_source_destroy ((GSource *) priv->watch);
760     priv->watch = NULL;
761     gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
762     g_main_context_unref (priv->watch_context);
763     priv->watch_context = NULL;
764   }
765 }
766
767 static gchar *
768 default_make_path_from_uri (GstRTSPClient * client, const GstRTSPUrl * uri)
769 {
770   gchar *path;
771
772   if (uri->query)
773     path = g_strconcat (uri->abspath, "?", uri->query, NULL);
774   else
775     path = g_strdup (uri->abspath);
776
777   return path;
778 }
779
780 static gboolean
781 handle_teardown_request (GstRTSPClient * client, GstRTSPContext * ctx)
782 {
783   GstRTSPClientPrivate *priv = client->priv;
784   GstRTSPClientClass *klass;
785   GstRTSPSession *session;
786   GstRTSPSessionMedia *sessmedia;
787   GstRTSPStatusCode code;
788   gchar *path;
789   gint matched;
790   gboolean keep_session;
791
792   if (!ctx->session)
793     goto no_session;
794
795   session = ctx->session;
796
797   if (!ctx->uri)
798     goto no_uri;
799
800   klass = GST_RTSP_CLIENT_GET_CLASS (client);
801   path = klass->make_path_from_uri (client, ctx->uri);
802
803   /* get a handle to the configuration of the media in the session */
804   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
805   if (!sessmedia)
806     goto not_found;
807
808   /* only aggregate control for now.. */
809   if (path[matched] != '\0')
810     goto no_aggregate;
811
812   g_free (path);
813
814   ctx->sessmedia = sessmedia;
815
816   /* we emit the signal before closing the connection */
817   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
818       0, ctx);
819
820   /* make sure we unblock the backlog and don't accept new messages
821    * on the watch */
822   if (priv->watch != NULL)
823     gst_rtsp_watch_set_flushing (priv->watch, TRUE);
824
825   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
826
827   /* allow messages again so that we can send the reply */
828   if (priv->watch != NULL)
829     gst_rtsp_watch_set_flushing (priv->watch, FALSE);
830
831   /* unmanage the media in the session, returns false if all media session
832    * are torn down. */
833   keep_session = gst_rtsp_session_release_media (session, sessmedia);
834
835   /* construct the response now */
836   code = GST_RTSP_STS_OK;
837   gst_rtsp_message_init_response (ctx->response, code,
838       gst_rtsp_status_as_text (code), ctx->request);
839
840   send_message (client, ctx, ctx->response, TRUE);
841
842   if (!keep_session) {
843     /* remove the session */
844     gst_rtsp_session_pool_remove (priv->session_pool, session);
845   }
846
847   return TRUE;
848
849   /* ERRORS */
850 no_session:
851   {
852     GST_ERROR ("client %p: no session", client);
853     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
854     return FALSE;
855   }
856 no_uri:
857   {
858     GST_ERROR ("client %p: no uri supplied", client);
859     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
860     return FALSE;
861   }
862 not_found:
863   {
864     GST_ERROR ("client %p: no media for uri", client);
865     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
866     g_free (path);
867     return FALSE;
868   }
869 no_aggregate:
870   {
871     GST_ERROR ("client %p: no aggregate path %s", client, path);
872     send_generic_response (client,
873         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
874     g_free (path);
875     return FALSE;
876   }
877 }
878
879 static GstRTSPResult
880 default_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
881 {
882   GstRTSPResult res;
883
884   res = gst_rtsp_params_set (client, ctx);
885
886   return res;
887 }
888
889 static GstRTSPResult
890 default_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
891 {
892   GstRTSPResult res;
893
894   res = gst_rtsp_params_get (client, ctx);
895
896   return res;
897 }
898
899 static gboolean
900 handle_get_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
901 {
902   GstRTSPResult res;
903   guint8 *data;
904   guint size;
905
906   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
907   if (res != GST_RTSP_OK)
908     goto bad_request;
909
910   if (size == 0) {
911     /* no body, keep-alive request */
912     send_generic_response (client, GST_RTSP_STS_OK, ctx);
913   } else {
914     /* there is a body, handle the params */
915     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_get (client, ctx);
916     if (res != GST_RTSP_OK)
917       goto bad_request;
918
919     send_message (client, ctx, ctx->response, FALSE);
920   }
921
922   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
923       0, ctx);
924
925   return TRUE;
926
927   /* ERRORS */
928 bad_request:
929   {
930     GST_ERROR ("client %p: bad request", client);
931     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
932     return FALSE;
933   }
934 }
935
936 static gboolean
937 handle_set_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
938 {
939   GstRTSPResult res;
940   guint8 *data;
941   guint size;
942
943   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
944   if (res != GST_RTSP_OK)
945     goto bad_request;
946
947   if (size == 0) {
948     /* no body, keep-alive request */
949     send_generic_response (client, GST_RTSP_STS_OK, ctx);
950   } else {
951     /* there is a body, handle the params */
952     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_set (client, ctx);
953     if (res != GST_RTSP_OK)
954       goto bad_request;
955
956     send_message (client, ctx, ctx->response, FALSE);
957   }
958
959   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
960       0, ctx);
961
962   return TRUE;
963
964   /* ERRORS */
965 bad_request:
966   {
967     GST_ERROR ("client %p: bad request", client);
968     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
969     return FALSE;
970   }
971 }
972
973 static gboolean
974 handle_pause_request (GstRTSPClient * client, GstRTSPContext * ctx)
975 {
976   GstRTSPSession *session;
977   GstRTSPClientClass *klass;
978   GstRTSPSessionMedia *sessmedia;
979   GstRTSPStatusCode code;
980   GstRTSPState rtspstate;
981   gchar *path;
982   gint matched;
983
984   if (!(session = ctx->session))
985     goto no_session;
986
987   if (!ctx->uri)
988     goto no_uri;
989
990   klass = GST_RTSP_CLIENT_GET_CLASS (client);
991   path = klass->make_path_from_uri (client, ctx->uri);
992
993   /* get a handle to the configuration of the media in the session */
994   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
995   if (!sessmedia)
996     goto not_found;
997
998   if (path[matched] != '\0')
999     goto no_aggregate;
1000
1001   g_free (path);
1002
1003   ctx->sessmedia = sessmedia;
1004
1005   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1006   /* the session state must be playing or recording */
1007   if (rtspstate != GST_RTSP_STATE_PLAYING &&
1008       rtspstate != GST_RTSP_STATE_RECORDING)
1009     goto invalid_state;
1010
1011   /* then pause sending */
1012   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PAUSED);
1013
1014   /* construct the response now */
1015   code = GST_RTSP_STS_OK;
1016   gst_rtsp_message_init_response (ctx->response, code,
1017       gst_rtsp_status_as_text (code), ctx->request);
1018
1019   send_message (client, ctx, ctx->response, FALSE);
1020
1021   /* the state is now READY */
1022   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1023
1024   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST], 0, ctx);
1025
1026   return TRUE;
1027
1028   /* ERRORS */
1029 no_session:
1030   {
1031     GST_ERROR ("client %p: no seesion", client);
1032     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1033     return FALSE;
1034   }
1035 no_uri:
1036   {
1037     GST_ERROR ("client %p: no uri supplied", client);
1038     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1039     return FALSE;
1040   }
1041 not_found:
1042   {
1043     GST_ERROR ("client %p: no media for uri", client);
1044     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1045     g_free (path);
1046     return FALSE;
1047   }
1048 no_aggregate:
1049   {
1050     GST_ERROR ("client %p: no aggregate path %s", client, path);
1051     send_generic_response (client,
1052         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1053     g_free (path);
1054     return FALSE;
1055   }
1056 invalid_state:
1057   {
1058     GST_ERROR ("client %p: not PLAYING or RECORDING", client);
1059     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1060         ctx);
1061     return FALSE;
1062   }
1063 }
1064
1065 /* convert @url and @path to a URL used as a content base for the factory
1066  * located at @path */
1067 static gchar *
1068 make_base_url (GstRTSPClient * client, GstRTSPUrl * url, const gchar * path)
1069 {
1070   GstRTSPUrl tmp;
1071   gchar *result;
1072   const gchar *trail;
1073
1074   /* check for trailing '/' and append one */
1075   trail = (path[strlen (path) - 1] != '/' ? "/" : "");
1076
1077   tmp = *url;
1078   tmp.user = NULL;
1079   tmp.passwd = NULL;
1080   tmp.abspath = g_strdup_printf ("%s%s", path, trail);
1081   tmp.query = NULL;
1082   result = gst_rtsp_url_get_request_uri (&tmp);
1083   g_free (tmp.abspath);
1084
1085   return result;
1086 }
1087
1088 static gboolean
1089 handle_play_request (GstRTSPClient * client, GstRTSPContext * ctx)
1090 {
1091   GstRTSPSession *session;
1092   GstRTSPClientClass *klass;
1093   GstRTSPSessionMedia *sessmedia;
1094   GstRTSPMedia *media;
1095   GstRTSPStatusCode code;
1096   GstRTSPUrl *uri;
1097   gchar *str;
1098   GstRTSPTimeRange *range;
1099   GstRTSPResult res;
1100   GstRTSPState rtspstate;
1101   GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
1102   gchar *path, *rtpinfo;
1103   gint matched;
1104
1105   if (!(session = ctx->session))
1106     goto no_session;
1107
1108   if (!(uri = ctx->uri))
1109     goto no_uri;
1110
1111   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1112   path = klass->make_path_from_uri (client, uri);
1113
1114   /* get a handle to the configuration of the media in the session */
1115   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1116   if (!sessmedia)
1117     goto not_found;
1118
1119   if (path[matched] != '\0')
1120     goto no_aggregate;
1121
1122   g_free (path);
1123
1124   ctx->sessmedia = sessmedia;
1125   ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
1126
1127   /* the session state must be playing or ready */
1128   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1129   if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
1130     goto invalid_state;
1131
1132   /* in play we first unsuspend, media could be suspended from SDP or PAUSED */
1133   if (!gst_rtsp_media_unsuspend (media))
1134     goto unsuspend_failed;
1135
1136   /* parse the range header if we have one */
1137   res = gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_RANGE, &str, 0);
1138   if (res == GST_RTSP_OK) {
1139     if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
1140       /* we have a range, seek to the position */
1141       unit = range->unit;
1142       gst_rtsp_media_seek (media, range);
1143       gst_rtsp_range_free (range);
1144     }
1145   }
1146
1147   /* grab RTPInfo from the media now */
1148   rtpinfo = gst_rtsp_session_media_get_rtpinfo (sessmedia);
1149
1150   /* construct the response now */
1151   code = GST_RTSP_STS_OK;
1152   gst_rtsp_message_init_response (ctx->response, code,
1153       gst_rtsp_status_as_text (code), ctx->request);
1154
1155   /* add the RTP-Info header */
1156   if (rtpinfo)
1157     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RTP_INFO,
1158         rtpinfo);
1159
1160   /* add the range */
1161   str = gst_rtsp_media_get_range_string (media, TRUE, unit);
1162   if (str)
1163     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RANGE, str);
1164
1165   send_message (client, ctx, ctx->response, FALSE);
1166
1167   /* start playing after sending the response */
1168   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
1169
1170   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
1171
1172   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST], 0, ctx);
1173
1174   return TRUE;
1175
1176   /* ERRORS */
1177 no_session:
1178   {
1179     GST_ERROR ("client %p: no session", client);
1180     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1181     return FALSE;
1182   }
1183 no_uri:
1184   {
1185     GST_ERROR ("client %p: no uri supplied", client);
1186     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1187     return FALSE;
1188   }
1189 not_found:
1190   {
1191     GST_ERROR ("client %p: media not found", client);
1192     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1193     return FALSE;
1194   }
1195 no_aggregate:
1196   {
1197     GST_ERROR ("client %p: no aggregate path %s", client, path);
1198     send_generic_response (client,
1199         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1200     g_free (path);
1201     return FALSE;
1202   }
1203 invalid_state:
1204   {
1205     GST_ERROR ("client %p: not PLAYING or READY", client);
1206     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1207         ctx);
1208     return FALSE;
1209   }
1210 unsuspend_failed:
1211   {
1212     GST_ERROR ("client %p: unsuspend failed", client);
1213     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1214     return FALSE;
1215   }
1216 }
1217
1218 static void
1219 do_keepalive (GstRTSPSession * session)
1220 {
1221   GST_INFO ("keep session %p alive", session);
1222   gst_rtsp_session_touch (session);
1223 }
1224
1225 /* parse @transport and return a valid transport in @tr. only transports
1226  * supported by @stream are returned. Returns FALSE if no valid transport
1227  * was found. */
1228 static gboolean
1229 parse_transport (const char *transport, GstRTSPStream * stream,
1230     GstRTSPTransport * tr)
1231 {
1232   gint i;
1233   gboolean res;
1234   gchar **transports;
1235
1236   res = FALSE;
1237   gst_rtsp_transport_init (tr);
1238
1239   GST_DEBUG ("parsing transports %s", transport);
1240
1241   transports = g_strsplit (transport, ",", 0);
1242
1243   /* loop through the transports, try to parse */
1244   for (i = 0; transports[i]; i++) {
1245     res = gst_rtsp_transport_parse (transports[i], tr);
1246     if (res != GST_RTSP_OK) {
1247       /* no valid transport, search some more */
1248       GST_WARNING ("could not parse transport %s", transports[i]);
1249       goto next;
1250     }
1251
1252     /* we have a transport, see if it's supported */
1253     if (!gst_rtsp_stream_is_transport_supported (stream, tr)) {
1254       GST_WARNING ("unsupported transport %s", transports[i]);
1255       goto next;
1256     }
1257
1258     /* we have a valid transport */
1259     GST_INFO ("found valid transport %s", transports[i]);
1260     res = TRUE;
1261     break;
1262
1263   next:
1264     gst_rtsp_transport_init (tr);
1265   }
1266   g_strfreev (transports);
1267
1268   return res;
1269 }
1270
1271 static gboolean
1272 default_configure_client_media (GstRTSPClient * client, GstRTSPMedia * media,
1273     GstRTSPStream * stream, GstRTSPContext * ctx)
1274 {
1275   GstRTSPMessage *request = ctx->request;
1276   gchar *blocksize_str;
1277
1278   if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1279           &blocksize_str, 0) == GST_RTSP_OK) {
1280     guint64 blocksize;
1281     gchar *end;
1282
1283     blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1284     if (end == blocksize_str)
1285       goto parse_failed;
1286
1287     /* we don't want to change the mtu when this media
1288      * can be shared because it impacts other clients */
1289     if (gst_rtsp_media_is_shared (media))
1290       goto done;
1291
1292     if (blocksize > G_MAXUINT)
1293       blocksize = G_MAXUINT;
1294
1295     gst_rtsp_stream_set_mtu (stream, blocksize);
1296   }
1297 done:
1298   return TRUE;
1299
1300   /* ERRORS */
1301 parse_failed:
1302   {
1303     GST_ERROR_OBJECT (client, "failed to parse blocksize");
1304     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1305     return FALSE;
1306   }
1307 }
1308
1309 static gboolean
1310 default_configure_client_transport (GstRTSPClient * client,
1311     GstRTSPContext * ctx, GstRTSPTransport * ct)
1312 {
1313   GstRTSPClientPrivate *priv = client->priv;
1314
1315   /* we have a valid transport now, set the destination of the client. */
1316   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1317     gboolean use_client_settings;
1318
1319     use_client_settings =
1320         gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS);
1321
1322     if (ct->destination && use_client_settings) {
1323       GstRTSPAddress *addr;
1324
1325       addr = gst_rtsp_stream_reserve_address (ctx->stream, ct->destination,
1326           ct->port.min, ct->port.max - ct->port.min + 1, ct->ttl);
1327
1328       if (addr == NULL)
1329         goto no_address;
1330
1331       gst_rtsp_address_free (addr);
1332     } else {
1333       GstRTSPAddress *addr;
1334       GSocketFamily family;
1335
1336       family = priv->is_ipv6 ? G_SOCKET_FAMILY_IPV6 : G_SOCKET_FAMILY_IPV4;
1337
1338       addr = gst_rtsp_stream_get_multicast_address (ctx->stream, family);
1339       if (addr == NULL)
1340         goto no_address;
1341
1342       g_free (ct->destination);
1343       ct->destination = g_strdup (addr->address);
1344       ct->port.min = addr->port;
1345       ct->port.max = addr->port + addr->n_ports - 1;
1346       ct->ttl = addr->ttl;
1347
1348       gst_rtsp_address_free (addr);
1349     }
1350   } else {
1351     GstRTSPUrl *url;
1352
1353     url = gst_rtsp_connection_get_url (priv->connection);
1354     g_free (ct->destination);
1355     ct->destination = g_strdup (url->host);
1356
1357     if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1358       GSocket *sock;
1359       GSocketAddress *addr;
1360
1361       sock = gst_rtsp_connection_get_read_socket (priv->connection);
1362       if ((addr = g_socket_get_remote_address (sock, NULL))) {
1363         /* our read port is the sender port of client */
1364         ct->client_port.min =
1365             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1366         g_object_unref (addr);
1367       }
1368       if ((addr = g_socket_get_local_address (sock, NULL))) {
1369         ct->server_port.max =
1370             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1371         g_object_unref (addr);
1372       }
1373       sock = gst_rtsp_connection_get_write_socket (priv->connection);
1374       if ((addr = g_socket_get_remote_address (sock, NULL))) {
1375         /* our write port is the receiver port of client */
1376         ct->client_port.max =
1377             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1378         g_object_unref (addr);
1379       }
1380       if ((addr = g_socket_get_local_address (sock, NULL))) {
1381         ct->server_port.min =
1382             g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1383         g_object_unref (addr);
1384       }
1385       /* check if the client selected channels for TCP */
1386       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1387         gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
1388             &ct->interleaved);
1389       }
1390     }
1391   }
1392   return TRUE;
1393
1394   /* ERRORS */
1395 no_address:
1396   {
1397     GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1398     return FALSE;
1399   }
1400 }
1401
1402 static GstRTSPTransport *
1403 make_server_transport (GstRTSPClient * client, GstRTSPContext * ctx,
1404     GstRTSPTransport * ct)
1405 {
1406   GstRTSPTransport *st;
1407   GInetAddress *addr;
1408   GSocketFamily family;
1409
1410   /* prepare the server transport */
1411   gst_rtsp_transport_new (&st);
1412
1413   st->trans = ct->trans;
1414   st->profile = ct->profile;
1415   st->lower_transport = ct->lower_transport;
1416
1417   addr = g_inet_address_new_from_string (ct->destination);
1418
1419   if (!addr) {
1420     GST_ERROR ("failed to get inet addr from client destination");
1421     family = G_SOCKET_FAMILY_IPV4;
1422   } else {
1423     family = g_inet_address_get_family (addr);
1424     g_object_unref (addr);
1425     addr = NULL;
1426   }
1427
1428   switch (st->lower_transport) {
1429     case GST_RTSP_LOWER_TRANS_UDP:
1430       st->client_port = ct->client_port;
1431       gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
1432       break;
1433     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1434       st->port = ct->port;
1435       st->destination = g_strdup (ct->destination);
1436       st->ttl = ct->ttl;
1437       break;
1438     case GST_RTSP_LOWER_TRANS_TCP:
1439       st->interleaved = ct->interleaved;
1440       st->client_port = ct->client_port;
1441       st->server_port = ct->server_port;
1442     default:
1443       break;
1444   }
1445
1446   gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
1447
1448   return st;
1449 }
1450
1451 #define AES_128_KEY_LEN 16
1452 #define AES_256_KEY_LEN 32
1453
1454 #define HMAC_32_KEY_LEN 4
1455 #define HMAC_80_KEY_LEN 10
1456
1457 static gboolean
1458 mikey_apply_policy (GstCaps * caps, GstMIKEYMessage * msg, guint8 policy)
1459 {
1460   const gchar *srtp_cipher;
1461   const gchar *srtp_auth;
1462   const GstMIKEYPayload *sp;
1463   guint i;
1464
1465   /* loop over Security policy until we find one containing policy */
1466   for (i = 0;; i++) {
1467     if ((sp = gst_mikey_message_find_payload (msg, GST_MIKEY_PT_SP, i)) == NULL)
1468       break;
1469
1470     if (((GstMIKEYPayloadSP *) sp)->policy == policy)
1471       break;
1472   }
1473
1474   /* the default ciphers */
1475   srtp_cipher = "aes-128-icm";
1476   srtp_auth = "hmac-sha1-80";
1477
1478   /* now override the defaults with what is in the Security Policy */
1479   if (sp != NULL) {
1480     guint len;
1481
1482     /* collect all the params and go over them */
1483     len = gst_mikey_payload_sp_get_n_params (sp);
1484     for (i = 0; i < len; i++) {
1485       const GstMIKEYPayloadSPParam *param =
1486           gst_mikey_payload_sp_get_param (sp, i);
1487
1488       switch (param->type) {
1489         case GST_MIKEY_SP_SRTP_ENC_ALG:
1490           switch (param->val[0]) {
1491             case 0:
1492               srtp_cipher = "null";
1493               break;
1494             case 2:
1495             case 1:
1496               srtp_cipher = "aes-128-icm";
1497               break;
1498             default:
1499               break;
1500           }
1501           break;
1502         case GST_MIKEY_SP_SRTP_ENC_KEY_LEN:
1503           switch (param->val[0]) {
1504             case AES_128_KEY_LEN:
1505               srtp_cipher = "aes-128-icm";
1506               break;
1507             case AES_256_KEY_LEN:
1508               srtp_cipher = "aes-256-icm";
1509               break;
1510             default:
1511               break;
1512           }
1513           break;
1514         case GST_MIKEY_SP_SRTP_AUTH_ALG:
1515           switch (param->val[0]) {
1516             case 0:
1517               srtp_auth = "null";
1518               break;
1519             case 2:
1520             case 1:
1521               srtp_auth = "hmac-sha1-80";
1522               break;
1523             default:
1524               break;
1525           }
1526           break;
1527         case GST_MIKEY_SP_SRTP_AUTH_KEY_LEN:
1528           switch (param->val[0]) {
1529             case HMAC_32_KEY_LEN:
1530               srtp_auth = "hmac-sha1-32";
1531               break;
1532             case HMAC_80_KEY_LEN:
1533               srtp_auth = "hmac-sha1-80";
1534               break;
1535             default:
1536               break;
1537           }
1538           break;
1539         case GST_MIKEY_SP_SRTP_SRTP_ENC:
1540           break;
1541         case GST_MIKEY_SP_SRTP_SRTCP_ENC:
1542           break;
1543         default:
1544           break;
1545       }
1546     }
1547   }
1548   /* now configure the SRTP parameters */
1549   gst_caps_set_simple (caps,
1550       "srtp-cipher", G_TYPE_STRING, srtp_cipher,
1551       "srtp-auth", G_TYPE_STRING, srtp_auth,
1552       "srtcp-cipher", G_TYPE_STRING, srtp_cipher,
1553       "srtcp-auth", G_TYPE_STRING, srtp_auth, NULL);
1554
1555   return TRUE;
1556 }
1557
1558 static gboolean
1559 handle_mikey_data (GstRTSPClient * client, GstRTSPContext * ctx,
1560     guint8 * data, gsize size)
1561 {
1562   GstMIKEYMessage *msg;
1563   guint i, n_cs;
1564   GstCaps *caps = NULL;
1565   GstMIKEYPayloadKEMAC *kemac;
1566   const GstMIKEYPayloadKeyData *pkd;
1567   GstBuffer *key;
1568
1569   /* the MIKEY message contains a CSB or crypto session bundle. It is a
1570    * set of Crypto Sessions protected with the same master key.
1571    * In the context of SRTP, an RTP and its RTCP stream is part of a
1572    * crypto session */
1573   if ((msg = gst_mikey_message_new_from_data (data, size, NULL, NULL)) == NULL)
1574     goto parse_failed;
1575
1576   /* we can only handle SRTP crypto sessions for now */
1577   if (msg->map_type != GST_MIKEY_MAP_TYPE_SRTP)
1578     goto invalid_map_type;
1579
1580   /* get the number of crypto sessions. This maps SSRC to its
1581    * security parameters */
1582   n_cs = gst_mikey_message_get_n_cs (msg);
1583   if (n_cs == 0)
1584     goto no_crypto_sessions;
1585
1586   /* we also need keys */
1587   if (!(kemac = (GstMIKEYPayloadKEMAC *) gst_mikey_message_find_payload
1588           (msg, GST_MIKEY_PT_KEMAC, 0)))
1589     goto no_keys;
1590
1591   /* we don't support encrypted keys */
1592   if (kemac->enc_alg != GST_MIKEY_ENC_NULL
1593       || kemac->mac_alg != GST_MIKEY_MAC_NULL)
1594     goto unsupported_encryption;
1595
1596   /* get Key data sub-payload */
1597   pkd = (const GstMIKEYPayloadKeyData *)
1598       gst_mikey_payload_kemac_get_sub (&kemac->pt, 0);
1599
1600   key =
1601       gst_buffer_new_wrapped (g_memdup (pkd->key_data, pkd->key_len),
1602       pkd->key_len);
1603
1604   /* go over all crypto sessions and create the security policy for each
1605    * SSRC */
1606   for (i = 0; i < n_cs; i++) {
1607     const GstMIKEYMapSRTP *map = gst_mikey_message_get_cs_srtp (msg, i);
1608
1609     caps = gst_caps_new_simple ("application/x-srtp",
1610         "ssrc", G_TYPE_UINT, map->ssrc,
1611         "roc", G_TYPE_UINT, map->roc, "srtp-key", GST_TYPE_BUFFER, key, NULL);
1612     mikey_apply_policy (caps, msg, map->policy);
1613
1614     gst_rtsp_stream_update_crypto (ctx->stream, map->ssrc, caps);
1615     gst_caps_unref (caps);
1616   }
1617   gst_mikey_message_unref (msg);
1618   gst_buffer_unref (key);
1619
1620   return TRUE;
1621
1622   /* ERRORS */
1623 parse_failed:
1624   {
1625     GST_DEBUG_OBJECT (client, "failed to parse MIKEY message");
1626     return FALSE;
1627   }
1628 invalid_map_type:
1629   {
1630     GST_DEBUG_OBJECT (client, "invalid map type %d", msg->map_type);
1631     goto cleanup_message;
1632   }
1633 no_crypto_sessions:
1634   {
1635     GST_DEBUG_OBJECT (client, "no crypto sessions");
1636     goto cleanup_message;
1637   }
1638 no_keys:
1639   {
1640     GST_DEBUG_OBJECT (client, "no keys found");
1641     goto cleanup_message;
1642   }
1643 unsupported_encryption:
1644   {
1645     GST_DEBUG_OBJECT (client, "unsupported key encryption");
1646     goto cleanup_message;
1647   }
1648 cleanup_message:
1649   {
1650     gst_mikey_message_unref (msg);
1651     return FALSE;
1652   }
1653 }
1654
1655 #define IS_STRIP_CHAR(c) (g_ascii_isspace ((guchar)(c)) || ((c) == '\"'))
1656
1657 static void
1658 strip_chars (gchar * str)
1659 {
1660   gchar *s;
1661   gsize len;
1662
1663   len = strlen (str);
1664   while (len--) {
1665     if (!IS_STRIP_CHAR (str[len]))
1666       break;
1667     str[len] = '\0';
1668   }
1669   for (s = str; *s && IS_STRIP_CHAR (*s); s++);
1670   memmove (str, s, len + 1);
1671 }
1672
1673 /* KeyMgmt = "KeyMgmt" ":" key-mgmt-spec 0*("," key-mgmt-spec)
1674  * key-mgmt-spec = "prot" "=" KMPID ";" ["uri" "=" %x22 URI %x22 ";"]
1675  */
1676 static gboolean
1677 handle_keymgmt (GstRTSPClient * client, GstRTSPContext * ctx, gchar * keymgmt)
1678 {
1679   gchar **specs;
1680   gint i, j;
1681
1682   specs = g_strsplit (keymgmt, ",", 0);
1683   for (i = 0; specs[i]; i++) {
1684     gchar **split;
1685
1686     split = g_strsplit (specs[i], ";", 0);
1687     for (j = 0; split[j]; j++) {
1688       g_strstrip (split[j]);
1689       if (g_str_has_prefix (split[j], "prot=")) {
1690         g_strstrip (split[j] + 5);
1691         if (!g_str_equal (split[j] + 5, "mikey"))
1692           break;
1693         GST_DEBUG ("found mikey");
1694       } else if (g_str_has_prefix (split[j], "uri=")) {
1695         strip_chars (split[j] + 4);
1696         GST_DEBUG ("found uri '%s'", split[j] + 4);
1697       } else if (g_str_has_prefix (split[j], "data=")) {
1698         guchar *data;
1699         gsize size;
1700         strip_chars (split[j] + 5);
1701         GST_DEBUG ("found data '%s'", split[j] + 5);
1702         data = g_base64_decode_inplace (split[j] + 5, &size);
1703         handle_mikey_data (client, ctx, data, size);
1704       }
1705     }
1706     g_strfreev (split);
1707   }
1708   g_strfreev (specs);
1709   return TRUE;
1710 }
1711
1712 static gboolean
1713 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
1714 {
1715   GstRTSPClientPrivate *priv = client->priv;
1716   GstRTSPResult res;
1717   GstRTSPUrl *uri;
1718   gchar *transport, *keymgmt;
1719   GstRTSPTransport *ct, *st;
1720   GstRTSPStatusCode code;
1721   GstRTSPSession *session;
1722   GstRTSPStreamTransport *trans;
1723   gchar *trans_str;
1724   GstRTSPSessionMedia *sessmedia;
1725   GstRTSPMedia *media;
1726   GstRTSPStream *stream;
1727   GstRTSPState rtspstate;
1728   GstRTSPClientClass *klass;
1729   gchar *path, *control;
1730   gint matched;
1731   gboolean new_session = FALSE;
1732
1733   if (!ctx->uri)
1734     goto no_uri;
1735
1736   uri = ctx->uri;
1737   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1738   path = klass->make_path_from_uri (client, uri);
1739
1740   /* parse the transport */
1741   res =
1742       gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
1743       &transport, 0);
1744   if (res != GST_RTSP_OK)
1745     goto no_transport;
1746
1747   /* we create the session after parsing stuff so that we don't make
1748    * a session for malformed requests */
1749   if (priv->session_pool == NULL)
1750     goto no_pool;
1751
1752   session = ctx->session;
1753
1754   if (session) {
1755     g_object_ref (session);
1756     /* get a handle to the configuration of the media in the session, this can
1757      * return NULL if this is a new url to manage in this session. */
1758     sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1759   } else {
1760     /* we need a new media configuration in this session */
1761     sessmedia = NULL;
1762   }
1763
1764   /* we have no session media, find one and manage it */
1765   if (sessmedia == NULL) {
1766     /* get a handle to the configuration of the media in the session */
1767     media = find_media (client, ctx, path, &matched);
1768   } else {
1769     if ((media = gst_rtsp_session_media_get_media (sessmedia)))
1770       g_object_ref (media);
1771     else
1772       goto media_not_found;
1773   }
1774   /* no media, not found then */
1775   if (media == NULL)
1776     goto media_not_found_no_reply;
1777
1778   if (path[matched] == '\0')
1779     goto control_not_found;
1780
1781   /* path is what matched. */
1782   path[matched] = '\0';
1783   /* control is remainder */
1784   control = &path[matched + 1];
1785
1786   /* find the stream now using the control part */
1787   stream = gst_rtsp_media_find_stream (media, control);
1788   if (stream == NULL)
1789     goto stream_not_found;
1790
1791   /* now we have a uri identifying a valid media and stream */
1792   ctx->stream = stream;
1793   ctx->media = media;
1794
1795   if (session == NULL) {
1796     /* create a session if this fails we probably reached our session limit or
1797      * something. */
1798     if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
1799       goto service_unavailable;
1800
1801     /* make sure this client is closed when the session is closed */
1802     client_watch_session (client, session);
1803
1804     new_session = TRUE;
1805     /* signal new session */
1806     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1807         session);
1808
1809     ctx->session = session;
1810   }
1811
1812   if (!klass->configure_client_media (client, media, stream, ctx))
1813     goto configure_media_failed_no_reply;
1814
1815   gst_rtsp_transport_new (&ct);
1816
1817   /* parse and find a usable supported transport */
1818   if (!parse_transport (transport, stream, ct))
1819     goto unsupported_transports;
1820
1821   /* parse the keymgmt */
1822   if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_KEYMGMT,
1823           &keymgmt, 0) == GST_RTSP_OK) {
1824     if (!handle_keymgmt (client, ctx, keymgmt))
1825       goto keymgmt_error;
1826   }
1827
1828   if (sessmedia == NULL) {
1829     /* manage the media in our session now, if not done already  */
1830     sessmedia = gst_rtsp_session_manage_media (session, path, media);
1831     /* if we stil have no media, error */
1832     if (sessmedia == NULL)
1833       goto sessmedia_unavailable;
1834
1835     /* don't cache media anymore */
1836     clean_cached_media (client, FALSE);
1837   } else {
1838     g_object_unref (media);
1839   }
1840
1841   ctx->sessmedia = sessmedia;
1842
1843   /* update the client transport */
1844   if (!klass->configure_client_transport (client, ctx, ct))
1845     goto unsupported_client_transport;
1846
1847   /* set in the session media transport */
1848   trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1849
1850   ctx->trans = trans;
1851
1852   /* configure the url used to set this transport, this we will use when
1853    * generating the response for the PLAY request */
1854   gst_rtsp_stream_transport_set_url (trans, uri);
1855   /* configure keepalive for this transport */
1856   gst_rtsp_stream_transport_set_keepalive (trans,
1857       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1858
1859   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1860     /* our callbacks to send data on this TCP connection */
1861     gst_rtsp_stream_transport_set_callbacks (trans,
1862         (GstRTSPSendFunc) do_send_data,
1863         (GstRTSPSendFunc) do_send_data, client, NULL);
1864
1865     g_hash_table_insert (priv->transports,
1866         GINT_TO_POINTER (ct->interleaved.min), trans);
1867     g_object_ref (trans);
1868     g_hash_table_insert (priv->transports,
1869         GINT_TO_POINTER (ct->interleaved.max), trans);
1870     g_object_ref (trans);
1871   }
1872
1873   /* create and serialize the server transport */
1874   st = make_server_transport (client, ctx, ct);
1875   trans_str = gst_rtsp_transport_as_text (st);
1876   gst_rtsp_transport_free (st);
1877
1878   /* construct the response now */
1879   code = GST_RTSP_STS_OK;
1880   gst_rtsp_message_init_response (ctx->response, code,
1881       gst_rtsp_status_as_text (code), ctx->request);
1882
1883   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
1884       trans_str);
1885   g_free (trans_str);
1886
1887   send_message (client, ctx, ctx->response, FALSE);
1888
1889   /* update the state */
1890   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1891   switch (rtspstate) {
1892     case GST_RTSP_STATE_PLAYING:
1893     case GST_RTSP_STATE_RECORDING:
1894     case GST_RTSP_STATE_READY:
1895       /* no state change */
1896       break;
1897     default:
1898       gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1899       break;
1900   }
1901   g_object_unref (session);
1902   g_free (path);
1903
1904   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
1905
1906   return TRUE;
1907
1908   /* ERRORS */
1909 no_uri:
1910   {
1911     GST_ERROR ("client %p: no uri", client);
1912     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1913     return FALSE;
1914   }
1915 no_transport:
1916   {
1917     GST_ERROR ("client %p: no transport", client);
1918     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1919     goto cleanup_path;
1920   }
1921 no_pool:
1922   {
1923     GST_ERROR ("client %p: no session pool configured", client);
1924     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1925     goto cleanup_path;
1926   }
1927 media_not_found_no_reply:
1928   {
1929     GST_ERROR ("client %p: media '%s' not found", client, path);
1930     /* error reply is already sent */
1931     goto cleanup_path;
1932   }
1933 media_not_found:
1934   {
1935     GST_ERROR ("client %p: media '%s' not found", client, path);
1936     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1937     goto cleanup_path;
1938   }
1939 control_not_found:
1940   {
1941     GST_ERROR ("client %p: no control in path '%s'", client, path);
1942     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1943     g_object_unref (media);
1944     goto cleanup_path;
1945   }
1946 stream_not_found:
1947   {
1948     GST_ERROR ("client %p: stream '%s' not found", client, control);
1949     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1950     g_object_unref (media);
1951     goto cleanup_path;
1952   }
1953 service_unavailable:
1954   {
1955     GST_ERROR ("client %p: can't create session", client);
1956     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1957     g_object_unref (media);
1958     goto cleanup_path;
1959   }
1960 sessmedia_unavailable:
1961   {
1962     GST_ERROR ("client %p: can't create session media", client);
1963     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1964     g_object_unref (media);
1965     goto cleanup_session;
1966   }
1967 configure_media_failed_no_reply:
1968   {
1969     GST_ERROR ("client %p: configure_media failed", client);
1970     /* error reply is already sent */
1971     goto cleanup_session;
1972   }
1973 unsupported_transports:
1974   {
1975     GST_ERROR ("client %p: unsupported transports", client);
1976     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1977     goto cleanup_transport;
1978   }
1979 unsupported_client_transport:
1980   {
1981     GST_ERROR ("client %p: unsupported client transport", client);
1982     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1983     goto cleanup_transport;
1984   }
1985 keymgmt_error:
1986   {
1987     GST_ERROR ("client %p: keymgmt error", client);
1988     send_generic_response (client, GST_RTSP_STS_KEY_MANAGEMENT_FAILURE, ctx);
1989     goto cleanup_transport;
1990   }
1991   {
1992   cleanup_transport:
1993     gst_rtsp_transport_free (ct);
1994   cleanup_session:
1995     if (new_session)
1996       gst_rtsp_session_pool_remove (priv->session_pool, session);
1997     g_object_unref (session);
1998   cleanup_path:
1999     g_free (path);
2000     return FALSE;
2001   }
2002 }
2003
2004 static GstSDPMessage *
2005 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
2006 {
2007   GstRTSPClientPrivate *priv = client->priv;
2008   GstSDPMessage *sdp;
2009   GstSDPInfo info;
2010   const gchar *proto;
2011   guint64 session_id_tmp;
2012   gchar session_id[21];
2013
2014   gst_sdp_message_new (&sdp);
2015
2016   /* some standard things first */
2017   gst_sdp_message_set_version (sdp, "0");
2018
2019   if (priv->is_ipv6)
2020     proto = "IP6";
2021   else
2022     proto = "IP4";
2023
2024   session_id_tmp = (((guint64) g_random_int ()) << 32) | g_random_int ();
2025   g_snprintf (session_id, sizeof (session_id), "%" G_GUINT64_FORMAT,
2026       session_id_tmp);
2027
2028   gst_sdp_message_set_origin (sdp, "-", session_id, "1", "IN", proto,
2029       priv->server_ip);
2030
2031   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
2032   gst_sdp_message_set_information (sdp, "rtsp-server");
2033   gst_sdp_message_add_time (sdp, "0", "0", NULL);
2034   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
2035   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
2036   gst_sdp_message_add_attribute (sdp, "control", "*");
2037
2038   info.is_ipv6 = priv->is_ipv6;
2039   info.server_ip = priv->server_ip;
2040
2041   /* create an SDP for the media object */
2042   if (!gst_rtsp_media_setup_sdp (media, sdp, &info))
2043     goto no_sdp;
2044
2045   return sdp;
2046
2047   /* ERRORS */
2048 no_sdp:
2049   {
2050     GST_ERROR ("client %p: could not create SDP", client);
2051     gst_sdp_message_free (sdp);
2052     return NULL;
2053   }
2054 }
2055
2056 /* for the describe we must generate an SDP */
2057 static gboolean
2058 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
2059 {
2060   GstRTSPClientPrivate *priv = client->priv;
2061   GstRTSPResult res;
2062   GstSDPMessage *sdp;
2063   guint i;
2064   gchar *path, *str;
2065   GstRTSPMedia *media;
2066   GstRTSPClientClass *klass;
2067
2068   klass = GST_RTSP_CLIENT_GET_CLASS (client);
2069
2070   if (!ctx->uri)
2071     goto no_uri;
2072
2073   /* check what kind of format is accepted, we don't really do anything with it
2074    * and always return SDP for now. */
2075   for (i = 0;; i++) {
2076     gchar *accept;
2077
2078     res =
2079         gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
2080         &accept, i);
2081     if (res == GST_RTSP_ENOTIMPL)
2082       break;
2083
2084     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
2085       break;
2086   }
2087
2088   if (!priv->mount_points)
2089     goto no_mount_points;
2090
2091   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2092     goto no_path;
2093
2094   /* find the media object for the uri */
2095   if (!(media = find_media (client, ctx, path, NULL)))
2096     goto no_media;
2097
2098   /* create an SDP for the media object on this client */
2099   if (!(sdp = klass->create_sdp (client, media)))
2100     goto no_sdp;
2101
2102   /* we suspend after the describe */
2103   gst_rtsp_media_suspend (media);
2104   g_object_unref (media);
2105
2106   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2107       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2108
2109   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
2110       "application/sdp");
2111
2112   /* content base for some clients that might screw up creating the setup uri */
2113   str = make_base_url (client, ctx->uri, path);
2114   g_free (path);
2115
2116   GST_INFO ("adding content-base: %s", str);
2117   gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE, str);
2118
2119   /* add SDP to the response body */
2120   str = gst_sdp_message_as_text (sdp);
2121   gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
2122   gst_sdp_message_free (sdp);
2123
2124   send_message (client, ctx, ctx->response, FALSE);
2125
2126   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
2127       0, ctx);
2128
2129   return TRUE;
2130
2131   /* ERRORS */
2132 no_uri:
2133   {
2134     GST_ERROR ("client %p: no uri", client);
2135     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2136     return FALSE;
2137   }
2138 no_mount_points:
2139   {
2140     GST_ERROR ("client %p: no mount points configured", client);
2141     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2142     return FALSE;
2143   }
2144 no_path:
2145   {
2146     GST_ERROR ("client %p: can't find path for url", client);
2147     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2148     return FALSE;
2149   }
2150 no_media:
2151   {
2152     GST_ERROR ("client %p: no media", client);
2153     g_free (path);
2154     /* error reply is already sent */
2155     return FALSE;
2156   }
2157 no_sdp:
2158   {
2159     GST_ERROR ("client %p: can't create SDP", client);
2160     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2161     g_free (path);
2162     g_object_unref (media);
2163     return FALSE;
2164   }
2165 }
2166
2167 static gboolean
2168 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx)
2169 {
2170   GstRTSPMethod options;
2171   gchar *str;
2172
2173   options = GST_RTSP_DESCRIBE |
2174       GST_RTSP_OPTIONS |
2175       GST_RTSP_PAUSE |
2176       GST_RTSP_PLAY |
2177       GST_RTSP_SETUP |
2178       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
2179
2180   str = gst_rtsp_options_as_text (options);
2181
2182   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2183       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2184
2185   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
2186   g_free (str);
2187
2188   send_message (client, ctx, ctx->response, FALSE);
2189
2190   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
2191       0, ctx);
2192
2193   return TRUE;
2194 }
2195
2196 /* remove duplicate and trailing '/' */
2197 static void
2198 sanitize_uri (GstRTSPUrl * uri)
2199 {
2200   gint i, len;
2201   gchar *s, *d;
2202   gboolean have_slash, prev_slash;
2203
2204   s = d = uri->abspath;
2205   len = strlen (uri->abspath);
2206
2207   prev_slash = FALSE;
2208
2209   for (i = 0; i < len; i++) {
2210     have_slash = s[i] == '/';
2211     *d = s[i];
2212     if (!have_slash || !prev_slash)
2213       d++;
2214     prev_slash = have_slash;
2215   }
2216   len = d - uri->abspath;
2217   /* don't remove the first slash if that's the only thing left */
2218   if (len > 1 && *(d - 1) == '/')
2219     d--;
2220   *d = '\0';
2221 }
2222
2223 /* is called when the session is removed from its session pool. */
2224 static void
2225 client_session_removed (GstRTSPSessionPool * pool, GstRTSPSession * session,
2226     GstRTSPClient * client)
2227 {
2228   GstRTSPClientPrivate *priv = client->priv;
2229
2230   GST_INFO ("client %p: session %p removed", client, session);
2231
2232   g_mutex_lock (&priv->lock);
2233   if (priv->watch != NULL)
2234     gst_rtsp_watch_set_send_backlog (priv->watch, 0, 0);
2235   client_unwatch_session (client, session, NULL);
2236   if (priv->watch != NULL)
2237     gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2238   g_mutex_unlock (&priv->lock);
2239 }
2240
2241 /* Returns TRUE if there are no Require headers, otherwise returns FALSE
2242  * and also returns a newly-allocated string of (comma-separated) unsupported
2243  * options in the unsupported_reqs variable .
2244  *
2245  * There may be multiple Require headers, but we must send one single
2246  * Unsupported header with all the unsupported options as response. If
2247  * an incoming Require header contained a comma-separated list of options
2248  * GstRtspConnection will already have split that list up into multiple
2249  * headers.
2250  *
2251  * TODO: allow the application to decide what features are supported
2252  */
2253 static gboolean
2254 check_request_requirements (GstRTSPMessage * msg, gchar ** unsupported_reqs)
2255 {
2256   GstRTSPResult res;
2257   GPtrArray *arr = NULL;
2258   gchar *reqs = NULL;
2259   gint i;
2260
2261   i = 0;
2262   do {
2263     res = gst_rtsp_message_get_header (msg, GST_RTSP_HDR_REQUIRE, &reqs, i++);
2264
2265     if (res == GST_RTSP_ENOTIMPL)
2266       break;
2267
2268     if (arr == NULL)
2269       arr = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free);
2270
2271     g_ptr_array_add (arr, g_strdup (reqs));
2272   }
2273   while (TRUE);
2274
2275   /* if we don't have any Require headers at all, all is fine */
2276   if (i == 1)
2277     return TRUE;
2278
2279   /* otherwise we've now processed at all the Require headers */
2280   g_ptr_array_add (arr, NULL);
2281
2282   /* for now we don't commit to supporting anything, so will just report
2283    * all of the required options as unsupported */
2284   *unsupported_reqs = g_strjoinv (", ", (gchar **) arr->pdata);
2285
2286   g_ptr_array_unref (arr);
2287   return FALSE;
2288 }
2289
2290 static void
2291 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
2292 {
2293   GstRTSPClientPrivate *priv = client->priv;
2294   GstRTSPMethod method;
2295   const gchar *uristr;
2296   GstRTSPUrl *uri = NULL;
2297   GstRTSPVersion version;
2298   GstRTSPResult res;
2299   GstRTSPSession *session = NULL;
2300   GstRTSPContext sctx = { NULL }, *ctx;
2301   GstRTSPMessage response = { 0 };
2302   gchar *unsupported_reqs = NULL;
2303   gchar *sessid;
2304
2305   if (!(ctx = gst_rtsp_context_get_current ())) {
2306     ctx = &sctx;
2307     ctx->auth = priv->auth;
2308     gst_rtsp_context_push_current (ctx);
2309   }
2310
2311   ctx->conn = priv->connection;
2312   ctx->client = client;
2313   ctx->request = request;
2314   ctx->response = &response;
2315
2316   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2317     gst_rtsp_message_dump (request);
2318   }
2319
2320   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
2321
2322   GST_INFO ("client %p: received a request %s %s %s", client,
2323       gst_rtsp_method_as_text (method), uristr,
2324       gst_rtsp_version_as_text (version));
2325
2326   /* we can only handle 1.0 requests */
2327   if (version != GST_RTSP_VERSION_1_0)
2328     goto not_supported;
2329
2330   ctx->method = method;
2331
2332   /* we always try to parse the url first */
2333   if (strcmp (uristr, "*") == 0) {
2334     /* special case where we have * as uri, keep uri = NULL */
2335   } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
2336     /* check if the uristr is an absolute path <=> scheme and host information
2337      * is missing */
2338     gchar *scheme;
2339
2340     scheme = g_uri_parse_scheme (uristr);
2341     if (scheme == NULL && g_str_has_prefix (uristr, "/")) {
2342       gchar *absolute_uristr = NULL;
2343
2344       GST_WARNING_OBJECT (client, "request doesn't contain absolute url");
2345       if (priv->server_ip == NULL) {
2346         GST_WARNING_OBJECT (client, "host information missing");
2347         goto bad_request;
2348       }
2349
2350       absolute_uristr =
2351           g_strdup_printf ("rtsp://%s%s", priv->server_ip, uristr);
2352
2353       GST_DEBUG_OBJECT (client, "absolute url: %s", absolute_uristr);
2354       if (gst_rtsp_url_parse (absolute_uristr, &uri) != GST_RTSP_OK) {
2355         g_free (absolute_uristr);
2356         goto bad_request;
2357       }
2358       g_free (absolute_uristr);
2359     } else {
2360       g_free (scheme);
2361       goto bad_request;
2362     }
2363   }
2364
2365   /* get the session if there is any */
2366   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
2367   if (res == GST_RTSP_OK) {
2368     if (priv->session_pool == NULL)
2369       goto no_pool;
2370
2371     /* we had a session in the request, find it again */
2372     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2373       goto session_not_found;
2374
2375     /* we add the session to the client list of watched sessions. When a session
2376      * disappears because it times out, we will be notified. If all sessions are
2377      * gone, we will close the connection */
2378     client_watch_session (client, session);
2379   }
2380
2381   /* sanitize the uri */
2382   if (uri)
2383     sanitize_uri (uri);
2384   ctx->uri = uri;
2385   ctx->session = session;
2386
2387   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
2388     goto not_authorized;
2389
2390   /* handle any 'Require' headers */
2391   if (!check_request_requirements (ctx->request, &unsupported_reqs))
2392     goto unsupported_requirement;
2393
2394   /* the backlog must be unlimited while processing requests.
2395    * the causes of this are two cases of deadlocks while streaming over TCP:
2396    *
2397    * 1. consider the scenario where the media pipeline's streaming thread
2398    * is blocking in the appsink (taking the appsink's preroll lock) because
2399    * the backlog is full. when a PAUSE request is received by the RTSP
2400    * client thread then the the state of the session media ought to change
2401    * to PAUSED. while most elements in the pipeline can change state this
2402    * can never happen for the appsink since its preroll lock is taken by
2403    * another thread.
2404    *
2405    * 2. consider the scenario where the media pipeline's streaming thread
2406    * is blocking in the appsink new_sample callback (taking the send lock
2407    * in RTSP client) because the backlog is full. when e.g. a GET request
2408    * is received by the RTSP client thread then a response ought to be sent
2409    * but this can never happen since it requires taking the send lock
2410    * already taken by another thread.
2411    *
2412    * the reason that the backlog is never emptied is that the source used
2413    * for dequeing messages from the backlog is never dispatched because it
2414    * is attached to the same mainloop as the source receving RTSP requests and
2415    * therefore run by the RTSP client thread which is alreayd blocking.
2416    *
2417    * without significant changes the easiest way to cope with this is to
2418    * not block indefinitely when the backlog is full, but rather let the
2419    * backlog grow in size. this in effect means that there can not be any
2420    * upper boundary on its size.
2421    */
2422   if (priv->watch != NULL)
2423     gst_rtsp_watch_set_send_backlog (priv->watch, 0, 0);
2424
2425   /* now see what is asked and dispatch to a dedicated handler */
2426   switch (method) {
2427     case GST_RTSP_OPTIONS:
2428       handle_options_request (client, ctx);
2429       break;
2430     case GST_RTSP_DESCRIBE:
2431       handle_describe_request (client, ctx);
2432       break;
2433     case GST_RTSP_SETUP:
2434       handle_setup_request (client, ctx);
2435       break;
2436     case GST_RTSP_PLAY:
2437       handle_play_request (client, ctx);
2438       break;
2439     case GST_RTSP_PAUSE:
2440       handle_pause_request (client, ctx);
2441       break;
2442     case GST_RTSP_TEARDOWN:
2443       handle_teardown_request (client, ctx);
2444       break;
2445     case GST_RTSP_SET_PARAMETER:
2446       handle_set_param_request (client, ctx);
2447       break;
2448     case GST_RTSP_GET_PARAMETER:
2449       handle_get_param_request (client, ctx);
2450       break;
2451     case GST_RTSP_ANNOUNCE:
2452     case GST_RTSP_RECORD:
2453     case GST_RTSP_REDIRECT:
2454       if (priv->watch != NULL)
2455         gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2456       goto not_implemented;
2457     case GST_RTSP_INVALID:
2458     default:
2459       if (priv->watch != NULL)
2460         gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2461       goto bad_request;
2462   }
2463
2464   if (priv->watch != NULL)
2465     gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2466
2467 done:
2468   if (ctx == &sctx)
2469     gst_rtsp_context_pop_current (ctx);
2470   if (session)
2471     g_object_unref (session);
2472   if (uri)
2473     gst_rtsp_url_free (uri);
2474   return;
2475
2476   /* ERRORS */
2477 not_supported:
2478   {
2479     GST_ERROR ("client %p: version %d not supported", client, version);
2480     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
2481         ctx);
2482     goto done;
2483   }
2484 bad_request:
2485   {
2486     GST_ERROR ("client %p: bad request", client);
2487     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2488     goto done;
2489   }
2490 no_pool:
2491   {
2492     GST_ERROR ("client %p: no pool configured", client);
2493     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2494     goto done;
2495   }
2496 session_not_found:
2497   {
2498     GST_ERROR ("client %p: session not found", client);
2499     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2500     goto done;
2501   }
2502 not_authorized:
2503   {
2504     GST_ERROR ("client %p: not allowed", client);
2505     /* error reply is already sent */
2506     goto done;
2507   }
2508 unsupported_requirement:
2509   {
2510     GST_ERROR ("client %p: Required option is not supported (%s)", client,
2511         unsupported_reqs);
2512     send_option_not_supported_response (client, ctx, unsupported_reqs);
2513     g_free (unsupported_reqs);
2514     goto done;
2515   }
2516 not_implemented:
2517   {
2518     GST_ERROR ("client %p: method %d not implemented", client, method);
2519     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2520     goto done;
2521   }
2522 }
2523
2524
2525 static void
2526 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
2527 {
2528   GstRTSPClientPrivate *priv = client->priv;
2529   GstRTSPResult res;
2530   GstRTSPSession *session = NULL;
2531   GstRTSPContext sctx = { NULL }, *ctx;
2532   gchar *sessid;
2533
2534   if (!(ctx = gst_rtsp_context_get_current ())) {
2535     ctx = &sctx;
2536     ctx->auth = priv->auth;
2537     gst_rtsp_context_push_current (ctx);
2538   }
2539
2540   ctx->conn = priv->connection;
2541   ctx->client = client;
2542   ctx->request = NULL;
2543   ctx->uri = NULL;
2544   ctx->method = GST_RTSP_INVALID;
2545   ctx->response = response;
2546
2547   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2548     gst_rtsp_message_dump (response);
2549   }
2550
2551   GST_INFO ("client %p: received a response", client);
2552
2553   /* get the session if there is any */
2554   res =
2555       gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
2556   if (res == GST_RTSP_OK) {
2557     if (priv->session_pool == NULL)
2558       goto no_pool;
2559
2560     /* we had a session in the request, find it again */
2561     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2562       goto session_not_found;
2563
2564     /* we add the session to the client list of watched sessions. When a session
2565      * disappears because it times out, we will be notified. If all sessions are
2566      * gone, we will close the connection */
2567     client_watch_session (client, session);
2568   }
2569
2570   ctx->session = session;
2571
2572   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
2573       0, ctx);
2574
2575 done:
2576   if (ctx == &sctx)
2577     gst_rtsp_context_pop_current (ctx);
2578   if (session)
2579     g_object_unref (session);
2580   return;
2581
2582 no_pool:
2583   {
2584     GST_ERROR ("client %p: no pool configured", client);
2585     goto done;
2586   }
2587 session_not_found:
2588   {
2589     GST_ERROR ("client %p: session not found", client);
2590     goto done;
2591   }
2592 }
2593
2594 static void
2595 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
2596 {
2597   GstRTSPClientPrivate *priv = client->priv;
2598   GstRTSPResult res;
2599   guint8 channel;
2600   guint8 *data;
2601   guint size;
2602   GstBuffer *buffer;
2603   GstRTSPStreamTransport *trans;
2604
2605   /* find the stream for this message */
2606   res = gst_rtsp_message_parse_data (message, &channel);
2607   if (res != GST_RTSP_OK)
2608     return;
2609
2610   gst_rtsp_message_get_body (message, &data, &size);
2611   if (size < 2)
2612     goto invalid_length;
2613
2614   gst_rtsp_message_steal_body (message, &data, &size);
2615
2616   /* Strip trailing \0 */
2617   buffer = gst_buffer_new_wrapped (data, size - 1);
2618
2619   trans =
2620       g_hash_table_lookup (priv->transports, GINT_TO_POINTER ((gint) channel));
2621   if (trans) {
2622     /* dispatch to the stream based on the channel number */
2623     gst_rtsp_stream_transport_recv_data (trans, channel, buffer);
2624   } else {
2625     gst_buffer_unref (buffer);
2626   }
2627 invalid_length:
2628   {
2629     GST_DEBUG ("client %p: Short message received, ignoring", client);
2630     return;
2631   }
2632 }
2633
2634 /**
2635  * gst_rtsp_client_set_session_pool:
2636  * @client: a #GstRTSPClient
2637  * @pool: (transfer none): a #GstRTSPSessionPool
2638  *
2639  * Set @pool as the sessionpool for @client which it will use to find
2640  * or allocate sessions. the sessionpool is usually inherited from the server
2641  * that created the client but can be overridden later.
2642  */
2643 void
2644 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
2645     GstRTSPSessionPool * pool)
2646 {
2647   GstRTSPSessionPool *old;
2648   GstRTSPClientPrivate *priv;
2649
2650   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2651
2652   priv = client->priv;
2653
2654   if (pool)
2655     g_object_ref (pool);
2656
2657   g_mutex_lock (&priv->lock);
2658   old = priv->session_pool;
2659   priv->session_pool = pool;
2660
2661   if (priv->session_removed_id) {
2662     g_signal_handler_disconnect (old, priv->session_removed_id);
2663     priv->session_removed_id = 0;
2664   }
2665   g_mutex_unlock (&priv->lock);
2666
2667   /* FIXME, should remove all sessions from the old pool for this client */
2668   if (old)
2669     g_object_unref (old);
2670 }
2671
2672 /**
2673  * gst_rtsp_client_get_session_pool:
2674  * @client: a #GstRTSPClient
2675  *
2676  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
2677  *
2678  * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
2679  */
2680 GstRTSPSessionPool *
2681 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
2682 {
2683   GstRTSPClientPrivate *priv;
2684   GstRTSPSessionPool *result;
2685
2686   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2687
2688   priv = client->priv;
2689
2690   g_mutex_lock (&priv->lock);
2691   if ((result = priv->session_pool))
2692     g_object_ref (result);
2693   g_mutex_unlock (&priv->lock);
2694
2695   return result;
2696 }
2697
2698 /**
2699  * gst_rtsp_client_set_mount_points:
2700  * @client: a #GstRTSPClient
2701  * @mounts: (transfer none): a #GstRTSPMountPoints
2702  *
2703  * Set @mounts as the mount points for @client which it will use to map urls
2704  * to media streams. These mount points are usually inherited from the server that
2705  * created the client but can be overriden later.
2706  */
2707 void
2708 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
2709     GstRTSPMountPoints * mounts)
2710 {
2711   GstRTSPClientPrivate *priv;
2712   GstRTSPMountPoints *old;
2713
2714   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2715
2716   priv = client->priv;
2717
2718   if (mounts)
2719     g_object_ref (mounts);
2720
2721   g_mutex_lock (&priv->lock);
2722   old = priv->mount_points;
2723   priv->mount_points = mounts;
2724   g_mutex_unlock (&priv->lock);
2725
2726   if (old)
2727     g_object_unref (old);
2728 }
2729
2730 /**
2731  * gst_rtsp_client_get_mount_points:
2732  * @client: a #GstRTSPClient
2733  *
2734  * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
2735  *
2736  * Returns: (transfer full): a #GstRTSPMountPoints, unref after usage.
2737  */
2738 GstRTSPMountPoints *
2739 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
2740 {
2741   GstRTSPClientPrivate *priv;
2742   GstRTSPMountPoints *result;
2743
2744   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2745
2746   priv = client->priv;
2747
2748   g_mutex_lock (&priv->lock);
2749   if ((result = priv->mount_points))
2750     g_object_ref (result);
2751   g_mutex_unlock (&priv->lock);
2752
2753   return result;
2754 }
2755
2756 /**
2757  * gst_rtsp_client_set_auth:
2758  * @client: a #GstRTSPClient
2759  * @auth: (transfer none): a #GstRTSPAuth
2760  *
2761  * configure @auth to be used as the authentication manager of @client.
2762  */
2763 void
2764 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
2765 {
2766   GstRTSPClientPrivate *priv;
2767   GstRTSPAuth *old;
2768
2769   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2770
2771   priv = client->priv;
2772
2773   if (auth)
2774     g_object_ref (auth);
2775
2776   g_mutex_lock (&priv->lock);
2777   old = priv->auth;
2778   priv->auth = auth;
2779   g_mutex_unlock (&priv->lock);
2780
2781   if (old)
2782     g_object_unref (old);
2783 }
2784
2785
2786 /**
2787  * gst_rtsp_client_get_auth:
2788  * @client: a #GstRTSPClient
2789  *
2790  * Get the #GstRTSPAuth used as the authentication manager of @client.
2791  *
2792  * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
2793  * usage.
2794  */
2795 GstRTSPAuth *
2796 gst_rtsp_client_get_auth (GstRTSPClient * client)
2797 {
2798   GstRTSPClientPrivate *priv;
2799   GstRTSPAuth *result;
2800
2801   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2802
2803   priv = client->priv;
2804
2805   g_mutex_lock (&priv->lock);
2806   if ((result = priv->auth))
2807     g_object_ref (result);
2808   g_mutex_unlock (&priv->lock);
2809
2810   return result;
2811 }
2812
2813 /**
2814  * gst_rtsp_client_set_thread_pool:
2815  * @client: a #GstRTSPClient
2816  * @pool: (transfer none): a #GstRTSPThreadPool
2817  *
2818  * configure @pool to be used as the thread pool of @client.
2819  */
2820 void
2821 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
2822     GstRTSPThreadPool * pool)
2823 {
2824   GstRTSPClientPrivate *priv;
2825   GstRTSPThreadPool *old;
2826
2827   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2828
2829   priv = client->priv;
2830
2831   if (pool)
2832     g_object_ref (pool);
2833
2834   g_mutex_lock (&priv->lock);
2835   old = priv->thread_pool;
2836   priv->thread_pool = pool;
2837   g_mutex_unlock (&priv->lock);
2838
2839   if (old)
2840     g_object_unref (old);
2841 }
2842
2843 /**
2844  * gst_rtsp_client_get_thread_pool:
2845  * @client: a #GstRTSPClient
2846  *
2847  * Get the #GstRTSPThreadPool used as the thread pool of @client.
2848  *
2849  * Returns: (transfer full): the #GstRTSPThreadPool of @client. g_object_unref() after
2850  * usage.
2851  */
2852 GstRTSPThreadPool *
2853 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
2854 {
2855   GstRTSPClientPrivate *priv;
2856   GstRTSPThreadPool *result;
2857
2858   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2859
2860   priv = client->priv;
2861
2862   g_mutex_lock (&priv->lock);
2863   if ((result = priv->thread_pool))
2864     g_object_ref (result);
2865   g_mutex_unlock (&priv->lock);
2866
2867   return result;
2868 }
2869
2870 /**
2871  * gst_rtsp_client_set_connection:
2872  * @client: a #GstRTSPClient
2873  * @conn: (transfer full): a #GstRTSPConnection
2874  *
2875  * Set the #GstRTSPConnection of @client. This function takes ownership of
2876  * @conn.
2877  *
2878  * Returns: %TRUE on success.
2879  */
2880 gboolean
2881 gst_rtsp_client_set_connection (GstRTSPClient * client,
2882     GstRTSPConnection * conn)
2883 {
2884   GstRTSPClientPrivate *priv;
2885   GSocket *read_socket;
2886   GSocketAddress *address;
2887   GstRTSPUrl *url;
2888   GError *error = NULL;
2889
2890   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2891   g_return_val_if_fail (conn != NULL, FALSE);
2892
2893   priv = client->priv;
2894
2895   read_socket = gst_rtsp_connection_get_read_socket (conn);
2896
2897   if (!(address = g_socket_get_local_address (read_socket, &error)))
2898     goto no_address;
2899
2900   g_free (priv->server_ip);
2901   /* keep the original ip that the client connected to */
2902   if (G_IS_INET_SOCKET_ADDRESS (address)) {
2903     GInetAddress *iaddr;
2904
2905     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2906
2907     /* socket might be ipv6 but adress still ipv4 */
2908     priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
2909     priv->server_ip = g_inet_address_to_string (iaddr);
2910     g_object_unref (address);
2911   } else {
2912     priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
2913     priv->server_ip = g_strdup ("unknown");
2914   }
2915
2916   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2917       priv->server_ip, priv->is_ipv6);
2918
2919   url = gst_rtsp_connection_get_url (conn);
2920   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2921
2922   priv->connection = conn;
2923
2924   return TRUE;
2925
2926   /* ERRORS */
2927 no_address:
2928   {
2929     GST_ERROR ("could not get local address %s", error->message);
2930     g_error_free (error);
2931     return FALSE;
2932   }
2933 }
2934
2935 /**
2936  * gst_rtsp_client_get_connection:
2937  * @client: a #GstRTSPClient
2938  *
2939  * Get the #GstRTSPConnection of @client.
2940  *
2941  * Returns: (transfer none): the #GstRTSPConnection of @client.
2942  * The connection object returned remains valid until the client is freed.
2943  */
2944 GstRTSPConnection *
2945 gst_rtsp_client_get_connection (GstRTSPClient * client)
2946 {
2947   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2948
2949   return client->priv->connection;
2950 }
2951
2952 /**
2953  * gst_rtsp_client_set_send_func:
2954  * @client: a #GstRTSPClient
2955  * @func: (scope notified): a #GstRTSPClientSendFunc
2956  * @user_data: (closure): user data passed to @func
2957  * @notify: (allow-none): called when @user_data is no longer in use
2958  *
2959  * Set @func as the callback that will be called when a new message needs to be
2960  * sent to the client. @user_data is passed to @func and @notify is called when
2961  * @user_data is no longer in use.
2962  *
2963  * By default, the client will send the messages on the #GstRTSPConnection that
2964  * was configured with gst_rtsp_client_attach() was called.
2965  */
2966 void
2967 gst_rtsp_client_set_send_func (GstRTSPClient * client,
2968     GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
2969 {
2970   GstRTSPClientPrivate *priv;
2971   GDestroyNotify old_notify;
2972   gpointer old_data;
2973
2974   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2975
2976   priv = client->priv;
2977
2978   g_mutex_lock (&priv->send_lock);
2979   priv->send_func = func;
2980   old_notify = priv->send_notify;
2981   old_data = priv->send_data;
2982   priv->send_notify = notify;
2983   priv->send_data = user_data;
2984   g_mutex_unlock (&priv->send_lock);
2985
2986   if (old_notify)
2987     old_notify (old_data);
2988 }
2989
2990 /**
2991  * gst_rtsp_client_handle_message:
2992  * @client: a #GstRTSPClient
2993  * @message: (transfer none): an #GstRTSPMessage
2994  *
2995  * Let the client handle @message.
2996  *
2997  * Returns: a #GstRTSPResult.
2998  */
2999 GstRTSPResult
3000 gst_rtsp_client_handle_message (GstRTSPClient * client,
3001     GstRTSPMessage * message)
3002 {
3003   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
3004   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
3005
3006   switch (message->type) {
3007     case GST_RTSP_MESSAGE_REQUEST:
3008       handle_request (client, message);
3009       break;
3010     case GST_RTSP_MESSAGE_RESPONSE:
3011       handle_response (client, message);
3012       break;
3013     case GST_RTSP_MESSAGE_DATA:
3014       handle_data (client, message);
3015       break;
3016     default:
3017       break;
3018   }
3019   return GST_RTSP_OK;
3020 }
3021
3022 /**
3023  * gst_rtsp_client_send_message:
3024  * @client: a #GstRTSPClient
3025  * @session: (allow-none) (transfer none): a #GstRTSPSession to send
3026  *   the message to or %NULL
3027  * @message: (transfer none): The #GstRTSPMessage to send
3028  *
3029  * Send a message message to the remote end. @message must be a
3030  * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
3031  */
3032 GstRTSPResult
3033 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
3034     GstRTSPMessage * message)
3035 {
3036   GstRTSPContext sctx = { NULL }
3037   , *ctx;
3038   GstRTSPClientPrivate *priv;
3039
3040   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
3041   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
3042   g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
3043       message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
3044
3045   priv = client->priv;
3046
3047   if (!(ctx = gst_rtsp_context_get_current ())) {
3048     ctx = &sctx;
3049     ctx->auth = priv->auth;
3050     gst_rtsp_context_push_current (ctx);
3051   }
3052
3053   ctx->conn = priv->connection;
3054   ctx->client = client;
3055   ctx->session = session;
3056
3057   send_message (client, ctx, message, FALSE);
3058
3059   if (ctx == &sctx)
3060     gst_rtsp_context_pop_current (ctx);
3061
3062   return GST_RTSP_OK;
3063 }
3064
3065 static GstRTSPResult
3066 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
3067     gboolean close, gpointer user_data)
3068 {
3069   GstRTSPClientPrivate *priv = client->priv;
3070   GstRTSPResult ret;
3071   GTimeVal time;
3072
3073   time.tv_sec = 1;
3074   time.tv_usec = 0;
3075
3076   do {
3077     /* send the response and store the seq number so we can wait until it's
3078      * written to the client to close the connection */
3079     ret =
3080         gst_rtsp_watch_send_message (priv->watch, message,
3081         close ? &priv->close_seq : NULL);
3082     if (ret == GST_RTSP_OK)
3083       break;
3084
3085     if (ret != GST_RTSP_ENOMEM)
3086       goto error;
3087
3088     /* drop backlog */
3089     if (priv->drop_backlog)
3090       break;
3091
3092     /* queue was full, wait for more space */
3093     GST_DEBUG_OBJECT (client, "waiting for backlog");
3094     ret = gst_rtsp_watch_wait_backlog (priv->watch, &time);
3095     GST_DEBUG_OBJECT (client, "Resend due to backlog full");
3096   } while (ret != GST_RTSP_EINTR);
3097
3098   return ret;
3099
3100   /* ERRORS */
3101 error:
3102   {
3103     GST_DEBUG_OBJECT (client, "got error %d", ret);
3104     return ret;
3105   }
3106 }
3107
3108 static GstRTSPResult
3109 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
3110     gpointer user_data)
3111 {
3112   return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
3113 }
3114
3115 static GstRTSPResult
3116 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
3117 {
3118   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3119   GstRTSPClientPrivate *priv = client->priv;
3120
3121   if (priv->close_seq && priv->close_seq == cseq) {
3122     GST_INFO ("client %p: send close message", client);
3123     priv->close_seq = 0;
3124     gst_rtsp_client_close (client);
3125   }
3126
3127   return GST_RTSP_OK;
3128 }
3129
3130 static GstRTSPResult
3131 closed (GstRTSPWatch * watch, gpointer user_data)
3132 {
3133   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3134   GstRTSPClientPrivate *priv = client->priv;
3135   const gchar *tunnelid;
3136
3137   GST_INFO ("client %p: connection closed", client);
3138
3139   if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
3140     g_mutex_lock (&tunnels_lock);
3141     /* remove from tunnelids */
3142     g_hash_table_remove (tunnels, tunnelid);
3143     g_mutex_unlock (&tunnels_lock);
3144   }
3145
3146   gst_rtsp_watch_set_flushing (watch, TRUE);
3147   g_mutex_lock (&priv->watch_lock);
3148   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
3149   g_mutex_unlock (&priv->watch_lock);
3150
3151   return GST_RTSP_OK;
3152 }
3153
3154 static GstRTSPResult
3155 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
3156 {
3157   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3158   gchar *str;
3159
3160   str = gst_rtsp_strresult (result);
3161   GST_INFO ("client %p: received an error %s", client, str);
3162   g_free (str);
3163
3164   return GST_RTSP_OK;
3165 }
3166
3167 static GstRTSPResult
3168 error_full (GstRTSPWatch * watch, GstRTSPResult result,
3169     GstRTSPMessage * message, guint id, gpointer user_data)
3170 {
3171   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3172   gchar *str;
3173
3174   str = gst_rtsp_strresult (result);
3175   GST_INFO
3176       ("client %p: error when handling message %p with id %d: %s",
3177       client, message, id, str);
3178   g_free (str);
3179
3180   return GST_RTSP_OK;
3181 }
3182
3183 static gboolean
3184 remember_tunnel (GstRTSPClient * client)
3185 {
3186   GstRTSPClientPrivate *priv = client->priv;
3187   const gchar *tunnelid;
3188
3189   /* store client in the pending tunnels */
3190   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
3191   if (tunnelid == NULL)
3192     goto no_tunnelid;
3193
3194   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
3195
3196   /* we can't have two clients connecting with the same tunnelid */
3197   g_mutex_lock (&tunnels_lock);
3198   if (g_hash_table_lookup (tunnels, tunnelid))
3199     goto tunnel_existed;
3200
3201   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
3202   g_mutex_unlock (&tunnels_lock);
3203
3204   return TRUE;
3205
3206   /* ERRORS */
3207 no_tunnelid:
3208   {
3209     GST_ERROR ("client %p: no tunnelid provided", client);
3210     return FALSE;
3211   }
3212 tunnel_existed:
3213   {
3214     g_mutex_unlock (&tunnels_lock);
3215     GST_ERROR ("client %p: tunnel session %s already existed", client,
3216         tunnelid);
3217     return FALSE;
3218   }
3219 }
3220
3221 static GstRTSPResult
3222 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
3223 {
3224   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3225   GstRTSPClientPrivate *priv = client->priv;
3226
3227   GST_WARNING ("client %p: tunnel lost (connection %p)", client,
3228       priv->connection);
3229
3230   /* ignore error, it'll only be a problem when the client does a POST again */
3231   remember_tunnel (client);
3232
3233   return GST_RTSP_OK;
3234 }
3235
3236 static gboolean
3237 handle_tunnel (GstRTSPClient * client)
3238 {
3239   GstRTSPClientPrivate *priv = client->priv;
3240   GstRTSPClient *oclient;
3241   GstRTSPClientPrivate *opriv;
3242   const gchar *tunnelid;
3243
3244   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
3245   if (tunnelid == NULL)
3246     goto no_tunnelid;
3247
3248   /* check for previous tunnel */
3249   g_mutex_lock (&tunnels_lock);
3250   oclient = g_hash_table_lookup (tunnels, tunnelid);
3251
3252   if (oclient == NULL) {
3253     /* no previous tunnel, remember tunnel */
3254     g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
3255     g_mutex_unlock (&tunnels_lock);
3256
3257     GST_INFO ("client %p: no previous tunnel found, remembering tunnel (%p)",
3258         client, priv->connection);
3259   } else {
3260     /* merge both tunnels into the first client */
3261     /* remove the old client from the table. ref before because removing it will
3262      * remove the ref to it. */
3263     g_object_ref (oclient);
3264     g_hash_table_remove (tunnels, tunnelid);
3265     g_mutex_unlock (&tunnels_lock);
3266
3267     opriv = oclient->priv;
3268
3269     g_mutex_lock (&opriv->watch_lock);
3270     if (opriv->watch == NULL)
3271       goto tunnel_closed;
3272
3273     GST_INFO ("client %p: found previous tunnel %p (old %p, new %p)", client,
3274         oclient, opriv->connection, priv->connection);
3275
3276     gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
3277     gst_rtsp_watch_reset (priv->watch);
3278     gst_rtsp_watch_reset (opriv->watch);
3279     g_mutex_unlock (&opriv->watch_lock);
3280     g_object_unref (oclient);
3281
3282     /* the old client owns the tunnel now, the new one will be freed */
3283     g_source_destroy ((GSource *) priv->watch);
3284     priv->watch = NULL;
3285     gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
3286   }
3287
3288   return TRUE;
3289
3290   /* ERRORS */
3291 no_tunnelid:
3292   {
3293     GST_ERROR ("client %p: no tunnelid provided", client);
3294     return FALSE;
3295   }
3296 tunnel_closed:
3297   {
3298     GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
3299     g_mutex_unlock (&opriv->watch_lock);
3300     g_object_unref (oclient);
3301     return FALSE;
3302   }
3303 }
3304
3305 static GstRTSPStatusCode
3306 tunnel_get (GstRTSPWatch * watch, gpointer user_data)
3307 {
3308   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3309
3310   GST_INFO ("client %p: tunnel get (connection %p)", client,
3311       client->priv->connection);
3312
3313   if (!handle_tunnel (client)) {
3314     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
3315   }
3316
3317   return GST_RTSP_STS_OK;
3318 }
3319
3320 static GstRTSPResult
3321 tunnel_post (GstRTSPWatch * watch, gpointer user_data)
3322 {
3323   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3324
3325   GST_INFO ("client %p: tunnel post (connection %p)", client,
3326       client->priv->connection);
3327
3328   if (!handle_tunnel (client)) {
3329     return GST_RTSP_ERROR;
3330   }
3331
3332   return GST_RTSP_OK;
3333 }
3334
3335 static GstRTSPResult
3336 tunnel_http_response (GstRTSPWatch * watch, GstRTSPMessage * request,
3337     GstRTSPMessage * response, gpointer user_data)
3338 {
3339   GstRTSPClientClass *klass;
3340
3341   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3342   klass = GST_RTSP_CLIENT_GET_CLASS (client);
3343
3344   if (klass->tunnel_http_response) {
3345     klass->tunnel_http_response (client, request, response);
3346   }
3347
3348   return GST_RTSP_OK;
3349 }
3350
3351 static GstRTSPWatchFuncs watch_funcs = {
3352   message_received,
3353   message_sent,
3354   closed,
3355   error,
3356   tunnel_get,
3357   tunnel_post,
3358   error_full,
3359   tunnel_lost,
3360   tunnel_http_response
3361 };
3362
3363 static void
3364 client_watch_notify (GstRTSPClient * client)
3365 {
3366   GstRTSPClientPrivate *priv = client->priv;
3367
3368   GST_INFO ("client %p: watch destroyed", client);
3369   priv->watch = NULL;
3370   /* remove all sessions and so drop the extra client ref */
3371   gst_rtsp_client_session_filter (client, cleanup_session, NULL);
3372   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
3373   g_object_unref (client);
3374 }
3375
3376 /**
3377  * gst_rtsp_client_attach:
3378  * @client: a #GstRTSPClient
3379  * @context: (allow-none): a #GMainContext
3380  *
3381  * Attaches @client to @context. When the mainloop for @context is run, the
3382  * client will be dispatched. When @context is %NULL, the default context will be
3383  * used).
3384  *
3385  * This function should be called when the client properties and urls are fully
3386  * configured and the client is ready to start.
3387  *
3388  * Returns: the ID (greater than 0) for the source within the GMainContext.
3389  */
3390 guint
3391 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
3392 {
3393   GstRTSPClientPrivate *priv;
3394   guint res;
3395
3396   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
3397   priv = client->priv;
3398   g_return_val_if_fail (priv->connection != NULL, 0);
3399   g_return_val_if_fail (priv->watch == NULL, 0);
3400
3401   /* make sure noone will free the context before the watch is destroyed */
3402   priv->watch_context = g_main_context_ref (context);
3403
3404   /* create watch for the connection and attach */
3405   priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
3406       g_object_ref (client), (GDestroyNotify) client_watch_notify);
3407   gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
3408       (GDestroyNotify) gst_rtsp_watch_unref);
3409
3410   gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
3411
3412   GST_INFO ("client %p: attaching to context %p", client, context);
3413   res = gst_rtsp_watch_attach (priv->watch, context);
3414
3415   return res;
3416 }
3417
3418 /**
3419  * gst_rtsp_client_session_filter:
3420  * @client: a #GstRTSPClient
3421  * @func: (scope call) (allow-none): a callback
3422  * @user_data: user data passed to @func
3423  *
3424  * Call @func for each session managed by @client. The result value of @func
3425  * determines what happens to the session. @func will be called with @client
3426  * locked so no further actions on @client can be performed from @func.
3427  *
3428  * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
3429  * @client.
3430  *
3431  * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
3432  *
3433  * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
3434  * will also be added with an additional ref to the result #GList of this
3435  * function..
3436  *
3437  * When @func is %NULL, #GST_RTSP_FILTER_REF will be assumed for each session.
3438  *
3439  * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
3440  * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
3441  * element in the #GList should be unreffed before the list is freed.
3442  */
3443 GList *
3444 gst_rtsp_client_session_filter (GstRTSPClient * client,
3445     GstRTSPClientSessionFilterFunc func, gpointer user_data)
3446 {
3447   GstRTSPClientPrivate *priv;
3448   GList *result, *walk, *next;
3449   GHashTable *visited;
3450   guint cookie;
3451
3452   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3453
3454   priv = client->priv;
3455
3456   result = NULL;
3457   if (func)
3458     visited = g_hash_table_new_full (NULL, NULL, g_object_unref, NULL);
3459
3460   g_mutex_lock (&priv->lock);
3461 restart:
3462   cookie = priv->sessions_cookie;
3463   for (walk = priv->sessions; walk; walk = next) {
3464     GstRTSPSession *sess = walk->data;
3465     GstRTSPFilterResult res;
3466     gboolean changed;
3467
3468     next = g_list_next (walk);
3469
3470     if (func) {
3471       /* only visit each session once */
3472       if (g_hash_table_contains (visited, sess))
3473         continue;
3474
3475       g_hash_table_add (visited, g_object_ref (sess));
3476       g_mutex_unlock (&priv->lock);
3477
3478       res = func (client, sess, user_data);
3479
3480       g_mutex_lock (&priv->lock);
3481     } else
3482       res = GST_RTSP_FILTER_REF;
3483
3484     changed = (cookie != priv->sessions_cookie);
3485
3486     switch (res) {
3487       case GST_RTSP_FILTER_REMOVE:
3488         /* stop watching the session and pretend it went away, if the list was
3489          * changed, we can't use the current list position, try to see if we
3490          * still have the session */
3491         client_unwatch_session (client, sess, changed ? NULL : walk);
3492         cookie = priv->sessions_cookie;
3493         break;
3494       case GST_RTSP_FILTER_REF:
3495         result = g_list_prepend (result, g_object_ref (sess));
3496         break;
3497       case GST_RTSP_FILTER_KEEP:
3498       default:
3499         break;
3500     }
3501     if (changed)
3502       goto restart;
3503   }
3504   g_mutex_unlock (&priv->lock);
3505
3506   if (func)
3507     g_hash_table_unref (visited);
3508
3509   return result;
3510 }