client: map URL to path in requests
[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 "rtsp-client.h"
46 #include "rtsp-sdp.h"
47 #include "rtsp-params.h"
48
49 #define GST_RTSP_CLIENT_GET_PRIVATE(obj)  \
50    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientPrivate))
51
52 /* locking order:
53  * send_lock, lock, tunnels_lock
54  */
55
56 struct _GstRTSPClientPrivate
57 {
58   GMutex lock;                  /* protects everything else */
59   GMutex send_lock;
60   GstRTSPConnection *connection;
61   GstRTSPWatch *watch;
62   guint close_seq;
63   gchar *server_ip;
64   gboolean is_ipv6;
65
66   GstRTSPClientSendFunc send_func;      /* protected by send_lock */
67   gpointer send_data;           /* protected by send_lock */
68   GDestroyNotify send_notify;   /* protected by send_lock */
69
70   GstRTSPSessionPool *session_pool;
71   GstRTSPMountPoints *mount_points;
72   GstRTSPAuth *auth;
73   GstRTSPThreadPool *thread_pool;
74
75   /* used to cache the media in the last requested DESCRIBE so that
76    * we can pick it up in the next SETUP immediately */
77   gchar *path;
78   GstRTSPMedia *media;
79
80   GList *transports;
81   GList *sessions;
82 };
83
84 static GMutex tunnels_lock;
85 static GHashTable *tunnels;     /* protected by tunnels_lock */
86
87 #define DEFAULT_SESSION_POOL            NULL
88 #define DEFAULT_MOUNT_POINTS            NULL
89
90 enum
91 {
92   PROP_0,
93   PROP_SESSION_POOL,
94   PROP_MOUNT_POINTS,
95   PROP_LAST
96 };
97
98 enum
99 {
100   SIGNAL_CLOSED,
101   SIGNAL_NEW_SESSION,
102   SIGNAL_OPTIONS_REQUEST,
103   SIGNAL_DESCRIBE_REQUEST,
104   SIGNAL_SETUP_REQUEST,
105   SIGNAL_PLAY_REQUEST,
106   SIGNAL_PAUSE_REQUEST,
107   SIGNAL_TEARDOWN_REQUEST,
108   SIGNAL_SET_PARAMETER_REQUEST,
109   SIGNAL_GET_PARAMETER_REQUEST,
110   SIGNAL_HANDLE_RESPONSE,
111   SIGNAL_LAST
112 };
113
114 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
115 #define GST_CAT_DEFAULT rtsp_client_debug
116
117 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
118
119 static void gst_rtsp_client_get_property (GObject * object, guint propid,
120     GValue * value, GParamSpec * pspec);
121 static void gst_rtsp_client_set_property (GObject * object, guint propid,
122     const GValue * value, GParamSpec * pspec);
123 static void gst_rtsp_client_finalize (GObject * obj);
124
125 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
126 static void client_session_finalized (GstRTSPClient * client,
127     GstRTSPSession * session);
128 static void unlink_session_transports (GstRTSPClient * client,
129     GstRTSPSession * session, GstRTSPSessionMedia * sessmedia);
130 static gboolean default_configure_client_transport (GstRTSPClient * client,
131     GstRTSPContext * ctx, GstRTSPTransport * ct);
132 static GstRTSPResult default_params_set (GstRTSPClient * client,
133     GstRTSPContext * ctx);
134 static GstRTSPResult default_params_get (GstRTSPClient * client,
135     GstRTSPContext * ctx);
136
137 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
138
139 static void
140 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
141 {
142   GObjectClass *gobject_class;
143
144   g_type_class_add_private (klass, sizeof (GstRTSPClientPrivate));
145
146   gobject_class = G_OBJECT_CLASS (klass);
147
148   gobject_class->get_property = gst_rtsp_client_get_property;
149   gobject_class->set_property = gst_rtsp_client_set_property;
150   gobject_class->finalize = gst_rtsp_client_finalize;
151
152   klass->create_sdp = create_sdp;
153   klass->configure_client_transport = default_configure_client_transport;
154   klass->params_set = default_params_set;
155   klass->params_get = default_params_get;
156
157   g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
158       g_param_spec_object ("session-pool", "Session Pool",
159           "The session pool to use for client session",
160           GST_TYPE_RTSP_SESSION_POOL,
161           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
162
163   g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
164       g_param_spec_object ("mount-points", "Mount Points",
165           "The mount points to use for client session",
166           GST_TYPE_RTSP_MOUNT_POINTS,
167           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
168
169   gst_rtsp_client_signals[SIGNAL_CLOSED] =
170       g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
171       G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
172       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
173
174   gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
175       g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
176       G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
177       g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
178
179   gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
180       g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
181       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
182       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
183       G_TYPE_POINTER);
184
185   gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
186       g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
187       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
188       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
189       G_TYPE_POINTER);
190
191   gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
192       g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
193       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
194       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
195       G_TYPE_POINTER);
196
197   gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
198       g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
199       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
200       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
201       G_TYPE_POINTER);
202
203   gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
204       g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
205       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
206       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
207       G_TYPE_POINTER);
208
209   gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
210       g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
211       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
212       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
213       G_TYPE_POINTER);
214
215   gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
216       g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
217       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
218           set_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
219       G_TYPE_NONE, 1, G_TYPE_POINTER);
220
221   gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
222       g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
223       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
224           get_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
225       G_TYPE_NONE, 1, G_TYPE_POINTER);
226
227   gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
228       g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
229       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
230           handle_response), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
231       G_TYPE_NONE, 1, G_TYPE_POINTER);
232
233   tunnels =
234       g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
235   g_mutex_init (&tunnels_lock);
236
237   GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
238 }
239
240 static void
241 gst_rtsp_client_init (GstRTSPClient * client)
242 {
243   GstRTSPClientPrivate *priv = GST_RTSP_CLIENT_GET_PRIVATE (client);
244
245   client->priv = priv;
246
247   g_mutex_init (&priv->lock);
248   g_mutex_init (&priv->send_lock);
249   priv->close_seq = 0;
250 }
251
252 static GstRTSPFilterResult
253 filter_session (GstRTSPSession * sess, GstRTSPSessionMedia * sessmedia,
254     gpointer user_data)
255 {
256   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
257
258   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
259   unlink_session_transports (client, sess, sessmedia);
260
261   /* unmanage the media in the session */
262   return GST_RTSP_FILTER_REMOVE;
263 }
264
265 static void
266 client_unlink_session (GstRTSPClient * client, GstRTSPSession * session)
267 {
268   /* unlink all media managed in this session */
269   gst_rtsp_session_filter (session, filter_session, client);
270 }
271
272 static void
273 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
274 {
275   GstRTSPClientPrivate *priv = client->priv;
276   GList *walk;
277
278   for (walk = priv->sessions; walk; walk = g_list_next (walk)) {
279     GstRTSPSession *msession = (GstRTSPSession *) walk->data;
280
281     /* we already know about this session */
282     if (msession == session)
283       return;
284   }
285
286   GST_INFO ("watching session %p", session);
287
288   g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
289       client);
290   priv->sessions = g_list_prepend (priv->sessions, session);
291 }
292
293 static void
294 client_unwatch_session (GstRTSPClient * client, GstRTSPSession * session)
295 {
296   GstRTSPClientPrivate *priv = client->priv;
297
298   GST_INFO ("unwatching session %p", session);
299
300   g_object_weak_unref (G_OBJECT (session),
301       (GWeakNotify) client_session_finalized, client);
302   priv->sessions = g_list_remove (priv->sessions, session);
303 }
304
305 static void
306 client_cleanup_session (GstRTSPClient * client, GstRTSPSession * session)
307 {
308   g_object_weak_unref (G_OBJECT (session),
309       (GWeakNotify) client_session_finalized, client);
310   client_unlink_session (client, session);
311 }
312
313 static void
314 client_cleanup_sessions (GstRTSPClient * client)
315 {
316   GstRTSPClientPrivate *priv = client->priv;
317   GList *sessions;
318
319   /* remove weak-ref from sessions */
320   for (sessions = priv->sessions; sessions; sessions = g_list_next (sessions)) {
321     client_cleanup_session (client, (GstRTSPSession *) sessions->data);
322   }
323   g_list_free (priv->sessions);
324   priv->sessions = NULL;
325 }
326
327 /* A client is finalized when the connection is broken */
328 static void
329 gst_rtsp_client_finalize (GObject * obj)
330 {
331   GstRTSPClient *client = GST_RTSP_CLIENT (obj);
332   GstRTSPClientPrivate *priv = client->priv;
333
334   GST_INFO ("finalize client %p", client);
335
336   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
337
338   if (priv->watch)
339     g_source_destroy ((GSource *) priv->watch);
340
341   client_cleanup_sessions (client);
342
343   if (priv->connection)
344     gst_rtsp_connection_free (priv->connection);
345   if (priv->session_pool)
346     g_object_unref (priv->session_pool);
347   if (priv->mount_points)
348     g_object_unref (priv->mount_points);
349   if (priv->auth)
350     g_object_unref (priv->auth);
351   if (priv->thread_pool)
352     g_object_unref (priv->thread_pool);
353
354   if (priv->path)
355     g_free (priv->path);
356   if (priv->media) {
357     gst_rtsp_media_unprepare (priv->media);
358     g_object_unref (priv->media);
359   }
360
361   g_free (priv->server_ip);
362   g_mutex_clear (&priv->lock);
363   g_mutex_clear (&priv->send_lock);
364
365   G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
366 }
367
368 static void
369 gst_rtsp_client_get_property (GObject * object, guint propid,
370     GValue * value, GParamSpec * pspec)
371 {
372   GstRTSPClient *client = GST_RTSP_CLIENT (object);
373
374   switch (propid) {
375     case PROP_SESSION_POOL:
376       g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
377       break;
378     case PROP_MOUNT_POINTS:
379       g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
380       break;
381     default:
382       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
383   }
384 }
385
386 static void
387 gst_rtsp_client_set_property (GObject * object, guint propid,
388     const GValue * value, GParamSpec * pspec)
389 {
390   GstRTSPClient *client = GST_RTSP_CLIENT (object);
391
392   switch (propid) {
393     case PROP_SESSION_POOL:
394       gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
395       break;
396     case PROP_MOUNT_POINTS:
397       gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
398       break;
399     default:
400       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
401   }
402 }
403
404 /**
405  * gst_rtsp_client_new:
406  *
407  * Create a new #GstRTSPClient instance.
408  *
409  * Returns: a new #GstRTSPClient
410  */
411 GstRTSPClient *
412 gst_rtsp_client_new (void)
413 {
414   GstRTSPClient *result;
415
416   result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
417
418   return result;
419 }
420
421 static void
422 send_message (GstRTSPClient * client, GstRTSPSession * session,
423     GstRTSPMessage * message, gboolean close)
424 {
425   GstRTSPClientPrivate *priv = client->priv;
426
427   gst_rtsp_message_add_header (message, GST_RTSP_HDR_SERVER,
428       "GStreamer RTSP server");
429
430   /* remove any previous header */
431   gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
432
433   /* add the new session header for new session ids */
434   if (session) {
435     gst_rtsp_message_take_header (message, GST_RTSP_HDR_SESSION,
436         gst_rtsp_session_get_header (session));
437   }
438
439   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
440     gst_rtsp_message_dump (message);
441   }
442
443   if (close)
444     gst_rtsp_message_add_header (message, GST_RTSP_HDR_CONNECTION, "close");
445
446   g_mutex_lock (&priv->send_lock);
447   if (priv->send_func)
448     priv->send_func (client, message, close, priv->send_data);
449   g_mutex_unlock (&priv->send_lock);
450
451   gst_rtsp_message_unset (message);
452 }
453
454 static void
455 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
456     GstRTSPContext * ctx)
457 {
458   gst_rtsp_message_init_response (ctx->response, code,
459       gst_rtsp_status_as_text (code), ctx->request);
460
461   send_message (client, NULL, ctx->response, FALSE);
462 }
463
464 static gboolean
465 paths_are_equal (const gchar * path1, const gchar * path2, gint len2)
466 {
467   if (path1 == NULL || path2 == NULL)
468     return FALSE;
469
470   if (strlen (path1) != len2)
471     return FALSE;
472
473   if (strncmp (path1, path2, len2))
474     return FALSE;
475
476   return TRUE;
477 }
478
479 /* this function is called to initially find the media for the DESCRIBE request
480  * but is cached for when the same client (without breaking the connection) is
481  * doing a setup for the exact same url. */
482 static GstRTSPMedia *
483 find_media (GstRTSPClient * client, GstRTSPContext * ctx, gint * matched)
484 {
485   GstRTSPClientPrivate *priv = client->priv;
486   GstRTSPMediaFactory *factory;
487   GstRTSPMedia *media;
488   gchar *path;
489   gint path_len;
490
491   if (!priv->mount_points)
492     goto no_mount_points;
493
494   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
495     goto no_path;
496
497   /* find the longest matching factory for the uri first */
498   if (!(factory = gst_rtsp_mount_points_match (priv->mount_points,
499               path, matched)))
500     goto no_factory;
501
502   ctx->factory = factory;
503
504   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS))
505     goto no_factory_access;
506
507   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT))
508     goto not_authorized;
509
510   if (matched)
511     path_len = *matched;
512   else
513     path_len = strlen (path);
514
515   if (!paths_are_equal (priv->path, path, path_len)) {
516     GstRTSPThread *thread;
517
518     /* remove any previously cached values before we try to construct a new
519      * media for uri */
520     if (priv->path)
521       g_free (priv->path);
522     priv->path = NULL;
523     if (priv->media) {
524       gst_rtsp_media_unprepare (priv->media);
525       g_object_unref (priv->media);
526     }
527     priv->media = NULL;
528
529     /* prepare the media and add it to the pipeline */
530     if (!(media = gst_rtsp_media_factory_construct (factory, ctx->uri)))
531       goto no_media;
532
533     ctx->media = media;
534
535     thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
536         GST_RTSP_THREAD_TYPE_MEDIA, ctx);
537     if (thread == NULL)
538       goto no_thread;
539
540     /* prepare the media */
541     if (!(gst_rtsp_media_prepare (media, thread)))
542       goto no_prepare;
543
544     /* now keep track of the uri and the media */
545     priv->path = g_strndup (path, path_len);
546     priv->media = media;
547   } else {
548     /* we have seen this path before, used cached media */
549     media = priv->media;
550     ctx->media = media;
551     GST_INFO ("reusing cached media %p for path %s", media, priv->path);
552   }
553
554   g_object_unref (factory);
555   ctx->factory = NULL;
556   g_free (path);
557
558   if (media)
559     g_object_ref (media);
560
561   return media;
562
563   /* ERRORS */
564 no_mount_points:
565   {
566     GST_ERROR ("client %p: no mount points configured", client);
567     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
568     return NULL;
569   }
570 no_path:
571   {
572     GST_ERROR ("client %p: can't find path for url", client);
573     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
574     return NULL;
575   }
576 no_factory:
577   {
578     GST_ERROR ("client %p: no factory for uri %s", client, path);
579     g_free (path);
580     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
581     return NULL;
582   }
583 no_factory_access:
584   {
585     GST_ERROR ("client %p: not authorized to see factory uri %s", client, path);
586     g_free (path);
587     return NULL;
588   }
589 not_authorized:
590   {
591     GST_ERROR ("client %p: not authorized for factory uri %s", client, path);
592     g_free (path);
593     return NULL;
594   }
595 no_media:
596   {
597     GST_ERROR ("client %p: can't create media", client);
598     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
599     g_object_unref (factory);
600     ctx->factory = NULL;
601     g_free (path);
602     return NULL;
603   }
604 no_thread:
605   {
606     GST_ERROR ("client %p: can't create thread", client);
607     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
608     g_object_unref (media);
609     ctx->media = NULL;
610     g_object_unref (factory);
611     ctx->factory = NULL;
612     g_free (path);
613     return NULL;
614   }
615 no_prepare:
616   {
617     GST_ERROR ("client %p: can't prepare media", client);
618     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
619     g_object_unref (media);
620     ctx->media = NULL;
621     g_object_unref (factory);
622     ctx->factory = NULL;
623     g_free (path);
624     return NULL;
625   }
626 }
627
628 static gboolean
629 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
630 {
631   GstRTSPClientPrivate *priv = client->priv;
632   GstRTSPMessage message = { 0 };
633   GstMapInfo map_info;
634   guint8 *data;
635   guint usize;
636
637   gst_rtsp_message_init_data (&message, channel);
638
639   /* FIXME, need some sort of iovec RTSPMessage here */
640   if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
641     return FALSE;
642
643   gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
644
645   g_mutex_lock (&priv->send_lock);
646   if (priv->send_func)
647     priv->send_func (client, &message, FALSE, priv->send_data);
648   g_mutex_unlock (&priv->send_lock);
649
650   gst_rtsp_message_steal_body (&message, &data, &usize);
651   gst_buffer_unmap (buffer, &map_info);
652
653   gst_rtsp_message_unset (&message);
654
655   return TRUE;
656 }
657
658 static void
659 link_transport (GstRTSPClient * client, GstRTSPSession * session,
660     GstRTSPStreamTransport * trans)
661 {
662   GstRTSPClientPrivate *priv = client->priv;
663
664   GST_DEBUG ("client %p: linking transport %p", client, trans);
665
666   gst_rtsp_stream_transport_set_callbacks (trans,
667       (GstRTSPSendFunc) do_send_data,
668       (GstRTSPSendFunc) do_send_data, client, NULL);
669
670   priv->transports = g_list_prepend (priv->transports, trans);
671
672   /* make sure our session can't expire */
673   gst_rtsp_session_prevent_expire (session);
674 }
675
676 static void
677 unlink_transport (GstRTSPClient * client, GstRTSPSession * session,
678     GstRTSPStreamTransport * trans)
679 {
680   GstRTSPClientPrivate *priv = client->priv;
681
682   GST_DEBUG ("client %p: unlinking transport %p", client, trans);
683
684   gst_rtsp_stream_transport_set_callbacks (trans, NULL, NULL, NULL, NULL);
685
686   priv->transports = g_list_remove (priv->transports, trans);
687
688   /* our session can now expire */
689   gst_rtsp_session_allow_expire (session);
690 }
691
692 static void
693 unlink_session_transports (GstRTSPClient * client, GstRTSPSession * session,
694     GstRTSPSessionMedia * sessmedia)
695 {
696   guint n_streams, i;
697
698   n_streams =
699       gst_rtsp_media_n_streams (gst_rtsp_session_media_get_media (sessmedia));
700   for (i = 0; i < n_streams; i++) {
701     GstRTSPStreamTransport *trans;
702     const GstRTSPTransport *tr;
703
704     /* get the transport, if there is no transport configured, skip this stream */
705     trans = gst_rtsp_session_media_get_transport (sessmedia, i);
706     if (trans == NULL)
707       continue;
708
709     tr = gst_rtsp_stream_transport_get_transport (trans);
710
711     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
712       /* for TCP, unlink the stream from the TCP connection of the client */
713       unlink_transport (client, session, trans);
714     }
715   }
716 }
717
718 static void
719 close_connection (GstRTSPClient * client)
720 {
721   GstRTSPClientPrivate *priv = client->priv;
722   const gchar *tunnelid;
723
724   GST_DEBUG ("client %p: closing connection", client);
725
726   if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
727     g_mutex_lock (&tunnels_lock);
728     /* remove from tunnelids */
729     g_hash_table_remove (tunnels, tunnelid);
730     g_mutex_unlock (&tunnels_lock);
731   }
732
733   gst_rtsp_connection_close (priv->connection);
734 }
735
736 static gboolean
737 handle_teardown_request (GstRTSPClient * client, GstRTSPContext * ctx)
738 {
739   GstRTSPClientPrivate *priv = client->priv;
740   GstRTSPSession *session;
741   GstRTSPSessionMedia *sessmedia;
742   GstRTSPStatusCode code;
743   gchar *path;
744   gint matched;
745
746   if (!(session = ctx->session))
747     goto no_session;
748
749   if (!ctx->uri)
750     goto no_uri;
751
752   if (!priv->mount_points)
753     goto no_mount_points;
754
755   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
756     goto no_path;
757
758   /* get a handle to the configuration of the media in the session */
759   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
760   if (!sessmedia)
761     goto not_found;
762
763   /* only aggregate control for now.. */
764   if (path[matched] != '\0')
765     goto no_aggregate;
766
767   g_free (path);
768
769   ctx->sessmedia = sessmedia;
770
771   /* we emit the signal before closing the connection */
772   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
773       0, ctx);
774
775   /* unlink the all TCP callbacks */
776   unlink_session_transports (client, session, sessmedia);
777
778   /* remove the session from the watched sessions */
779   client_unwatch_session (client, session);
780
781   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
782
783   /* unmanage the media in the session, returns false if all media session
784    * are torn down. */
785   if (!gst_rtsp_session_release_media (session, sessmedia)) {
786     /* remove the session */
787     gst_rtsp_session_pool_remove (priv->session_pool, session);
788   }
789   /* construct the response now */
790   code = GST_RTSP_STS_OK;
791   gst_rtsp_message_init_response (ctx->response, code,
792       gst_rtsp_status_as_text (code), ctx->request);
793
794   send_message (client, session, ctx->response, TRUE);
795
796   return TRUE;
797
798   /* ERRORS */
799 no_session:
800   {
801     GST_ERROR ("client %p: no session", client);
802     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
803     return FALSE;
804   }
805 no_uri:
806   {
807     GST_ERROR ("client %p: no uri supplied", client);
808     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
809     return FALSE;
810   }
811 no_mount_points:
812   {
813     GST_ERROR ("client %p: no mount points configured", client);
814     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
815     return FALSE;
816   }
817 no_path:
818   {
819     GST_ERROR ("client %p: can't find path for url", client);
820     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
821     return FALSE;
822   }
823 not_found:
824   {
825     GST_ERROR ("client %p: no media for uri", client);
826     g_free (path);
827     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
828     return FALSE;
829   }
830 no_aggregate:
831   {
832     GST_ERROR ("client %p: no aggregate path %s", client, path);
833     g_free (path);
834     send_generic_response (client,
835         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
836     return FALSE;
837   }
838 }
839
840 static GstRTSPResult
841 default_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
842 {
843   GstRTSPResult res;
844
845   res = gst_rtsp_params_set (client, ctx);
846
847   return res;
848 }
849
850 static GstRTSPResult
851 default_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
852 {
853   GstRTSPResult res;
854
855   res = gst_rtsp_params_get (client, ctx);
856
857   return res;
858 }
859
860 static gboolean
861 handle_get_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
862 {
863   GstRTSPResult res;
864   guint8 *data;
865   guint size;
866
867   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
868   if (res != GST_RTSP_OK)
869     goto bad_request;
870
871   if (size == 0) {
872     /* no body, keep-alive request */
873     send_generic_response (client, GST_RTSP_STS_OK, ctx);
874   } else {
875     /* there is a body, handle the params */
876     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_get (client, ctx);
877     if (res != GST_RTSP_OK)
878       goto bad_request;
879
880     send_message (client, ctx->session, ctx->response, FALSE);
881   }
882
883   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
884       0, ctx);
885
886   return TRUE;
887
888   /* ERRORS */
889 bad_request:
890   {
891     GST_ERROR ("client %p: bad request", client);
892     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
893     return FALSE;
894   }
895 }
896
897 static gboolean
898 handle_set_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
899 {
900   GstRTSPResult res;
901   guint8 *data;
902   guint size;
903
904   res = gst_rtsp_message_get_body (ctx->request, &data, &size);
905   if (res != GST_RTSP_OK)
906     goto bad_request;
907
908   if (size == 0) {
909     /* no body, keep-alive request */
910     send_generic_response (client, GST_RTSP_STS_OK, ctx);
911   } else {
912     /* there is a body, handle the params */
913     res = GST_RTSP_CLIENT_GET_CLASS (client)->params_set (client, ctx);
914     if (res != GST_RTSP_OK)
915       goto bad_request;
916
917     send_message (client, ctx->session, ctx->response, FALSE);
918   }
919
920   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
921       0, ctx);
922
923   return TRUE;
924
925   /* ERRORS */
926 bad_request:
927   {
928     GST_ERROR ("client %p: bad request", client);
929     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
930     return FALSE;
931   }
932 }
933
934 static gboolean
935 handle_pause_request (GstRTSPClient * client, GstRTSPContext * ctx)
936 {
937   GstRTSPClientPrivate *priv = client->priv;
938   GstRTSPSession *session;
939   GstRTSPSessionMedia *sessmedia;
940   GstRTSPStatusCode code;
941   GstRTSPState rtspstate;
942   gchar *path;
943   gint matched;
944
945   if (!(session = ctx->session))
946     goto no_session;
947
948   if (!ctx->uri)
949     goto no_uri;
950
951   if (!priv->mount_points)
952     goto no_mount_points;
953
954   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
955     goto no_path;
956
957   /* get a handle to the configuration of the media in the session */
958   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
959   if (!sessmedia)
960     goto not_found;
961
962   if (path[matched] != '\0')
963     goto no_aggregate;
964
965   g_free (path);
966
967   ctx->sessmedia = sessmedia;
968
969   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
970   /* the session state must be playing or recording */
971   if (rtspstate != GST_RTSP_STATE_PLAYING &&
972       rtspstate != GST_RTSP_STATE_RECORDING)
973     goto invalid_state;
974
975   /* unlink the all TCP callbacks */
976   unlink_session_transports (client, session, sessmedia);
977
978   /* then pause sending */
979   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PAUSED);
980
981   /* construct the response now */
982   code = GST_RTSP_STS_OK;
983   gst_rtsp_message_init_response (ctx->response, code,
984       gst_rtsp_status_as_text (code), ctx->request);
985
986   send_message (client, session, ctx->response, FALSE);
987
988   /* the state is now READY */
989   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
990
991   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST], 0, ctx);
992
993   return TRUE;
994
995   /* ERRORS */
996 no_session:
997   {
998     GST_ERROR ("client %p: no seesion", client);
999     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1000     return FALSE;
1001   }
1002 no_uri:
1003   {
1004     GST_ERROR ("client %p: no uri supplied", client);
1005     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1006     return FALSE;
1007   }
1008 no_mount_points:
1009   {
1010     GST_ERROR ("client %p: no mount points configured", client);
1011     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1012     return FALSE;
1013   }
1014 no_path:
1015   {
1016     GST_ERROR ("client %p: can't find path for url", client);
1017     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1018     return FALSE;
1019   }
1020 not_found:
1021   {
1022     GST_ERROR ("client %p: no media for uri", client);
1023     g_free (path);
1024     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1025     return FALSE;
1026   }
1027 no_aggregate:
1028   {
1029     GST_ERROR ("client %p: no aggregate path %s", client, path);
1030     g_free (path);
1031     send_generic_response (client,
1032         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1033     return FALSE;
1034   }
1035 invalid_state:
1036   {
1037     GST_ERROR ("client %p: not PLAYING or RECORDING", client);
1038     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1039         ctx);
1040     return FALSE;
1041   }
1042 }
1043
1044 static gboolean
1045 handle_play_request (GstRTSPClient * client, GstRTSPContext * ctx)
1046 {
1047   GstRTSPClientPrivate *priv = client->priv;
1048   GstRTSPSession *session;
1049   GstRTSPSessionMedia *sessmedia;
1050   GstRTSPMedia *media;
1051   GstRTSPStatusCode code;
1052   GString *rtpinfo;
1053   guint n_streams, i, infocount;
1054   gchar *str;
1055   GstRTSPTimeRange *range;
1056   GstRTSPResult res;
1057   GstRTSPState rtspstate;
1058   GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
1059   gchar *path;
1060   gint matched;
1061
1062   if (!(session = ctx->session))
1063     goto no_session;
1064
1065   if (!ctx->uri)
1066     goto no_uri;
1067
1068   if (!priv->mount_points)
1069     goto no_mount_points;
1070
1071   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
1072     goto no_path;
1073
1074   /* get a handle to the configuration of the media in the session */
1075   sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1076   if (!sessmedia)
1077     goto not_found;
1078
1079   if (path[matched] != '\0')
1080     goto no_aggregate;
1081
1082   g_free (path);
1083
1084   ctx->sessmedia = sessmedia;
1085   ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
1086
1087   /* the session state must be playing or ready */
1088   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1089   if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
1090     goto invalid_state;
1091
1092   /* parse the range header if we have one */
1093   res = gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_RANGE, &str, 0);
1094   if (res == GST_RTSP_OK) {
1095     if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
1096       /* we have a range, seek to the position */
1097       unit = range->unit;
1098       gst_rtsp_media_seek (media, range);
1099       gst_rtsp_range_free (range);
1100     }
1101   }
1102
1103   /* grab RTPInfo from the payloaders now */
1104   rtpinfo = g_string_new ("");
1105
1106   n_streams = gst_rtsp_media_n_streams (media);
1107   for (i = 0, infocount = 0; i < n_streams; i++) {
1108     GstRTSPStreamTransport *trans;
1109     GstRTSPStream *stream;
1110     const GstRTSPTransport *tr;
1111     gchar *uristr;
1112     guint rtptime, seq;
1113
1114     /* get the transport, if there is no transport configured, skip this stream */
1115     trans = gst_rtsp_session_media_get_transport (sessmedia, i);
1116     if (trans == NULL) {
1117       GST_INFO ("stream %d is not configured", i);
1118       continue;
1119     }
1120     tr = gst_rtsp_stream_transport_get_transport (trans);
1121
1122     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1123       /* for TCP, link the stream to the TCP connection of the client */
1124       link_transport (client, session, trans);
1125     }
1126
1127     stream = gst_rtsp_stream_transport_get_stream (trans);
1128     if (gst_rtsp_stream_get_rtpinfo (stream, &rtptime, &seq)) {
1129       if (infocount > 0)
1130         g_string_append (rtpinfo, ", ");
1131
1132       uristr = gst_rtsp_url_get_request_uri (ctx->uri);
1133       g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u",
1134           uristr, i, seq, rtptime);
1135       g_free (uristr);
1136
1137       infocount++;
1138     } else {
1139       GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
1140     }
1141   }
1142
1143   /* construct the response now */
1144   code = GST_RTSP_STS_OK;
1145   gst_rtsp_message_init_response (ctx->response, code,
1146       gst_rtsp_status_as_text (code), ctx->request);
1147
1148   /* add the RTP-Info header */
1149   if (infocount > 0) {
1150     str = g_string_free (rtpinfo, FALSE);
1151     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RTP_INFO, str);
1152   } else {
1153     g_string_free (rtpinfo, TRUE);
1154   }
1155
1156   /* add the range */
1157   str = gst_rtsp_media_get_range_string (media, TRUE, unit);
1158   if (str)
1159     gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RANGE, str);
1160
1161   send_message (client, session, ctx->response, FALSE);
1162
1163   /* start playing after sending the request */
1164   gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
1165
1166   gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
1167
1168   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST], 0, ctx);
1169
1170   return TRUE;
1171
1172   /* ERRORS */
1173 no_session:
1174   {
1175     GST_ERROR ("client %p: no session", client);
1176     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1177     return FALSE;
1178   }
1179 no_uri:
1180   {
1181     GST_ERROR ("client %p: no uri supplied", client);
1182     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1183     return FALSE;
1184   }
1185 no_mount_points:
1186   {
1187     GST_ERROR ("client %p: no mount points configured", client);
1188     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1189     return FALSE;
1190   }
1191 no_path:
1192   {
1193     GST_ERROR ("client %p: can't find path for url", client);
1194     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1195     return FALSE;
1196   }
1197 not_found:
1198   {
1199     GST_ERROR ("client %p: media not found", client);
1200     g_free (path);
1201     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1202     return FALSE;
1203   }
1204 no_aggregate:
1205   {
1206     GST_ERROR ("client %p: no aggregate path %s", client, path);
1207     g_free (path);
1208     send_generic_response (client,
1209         GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1210     return FALSE;
1211   }
1212 invalid_state:
1213   {
1214     GST_ERROR ("client %p: not PLAYING or READY", client);
1215     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1216         ctx);
1217     return FALSE;
1218   }
1219 }
1220
1221 static void
1222 do_keepalive (GstRTSPSession * session)
1223 {
1224   GST_INFO ("keep session %p alive", session);
1225   gst_rtsp_session_touch (session);
1226 }
1227
1228 /* parse @transport and return a valid transport in @tr. only transports
1229  * from @supported are returned. Returns FALSE if no valid transport
1230  * was found. */
1231 static gboolean
1232 parse_transport (const char *transport, GstRTSPLowerTrans supported,
1233     GstRTSPTransport * tr)
1234 {
1235   gint i;
1236   gboolean res;
1237   gchar **transports;
1238
1239   res = FALSE;
1240   gst_rtsp_transport_init (tr);
1241
1242   GST_DEBUG ("parsing transports %s", transport);
1243
1244   transports = g_strsplit (transport, ",", 0);
1245
1246   /* loop through the transports, try to parse */
1247   for (i = 0; transports[i]; i++) {
1248     res = gst_rtsp_transport_parse (transports[i], tr);
1249     if (res != GST_RTSP_OK) {
1250       /* no valid transport, search some more */
1251       GST_WARNING ("could not parse transport %s", transports[i]);
1252       goto next;
1253     }
1254
1255     /* we have a transport, see if it's RTP/AVP */
1256     if (tr->trans != GST_RTSP_TRANS_RTP || tr->profile != GST_RTSP_PROFILE_AVP) {
1257       GST_WARNING ("invalid transport %s", transports[i]);
1258       goto next;
1259     }
1260
1261     if (!(tr->lower_transport & supported)) {
1262       GST_WARNING ("unsupported transport %s", transports[i]);
1263       goto next;
1264     }
1265
1266     /* we have a valid transport */
1267     GST_INFO ("found valid transport %s", transports[i]);
1268     res = TRUE;
1269     break;
1270
1271   next:
1272     gst_rtsp_transport_init (tr);
1273   }
1274   g_strfreev (transports);
1275
1276   return res;
1277 }
1278
1279 static gboolean
1280 handle_blocksize (GstRTSPMedia * media, GstRTSPStream * stream,
1281     GstRTSPMessage * request)
1282 {
1283   gchar *blocksize_str;
1284   gboolean ret = TRUE;
1285
1286   if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1287           &blocksize_str, 0) == GST_RTSP_OK) {
1288     guint64 blocksize;
1289     gchar *end;
1290
1291     blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1292     if (end == blocksize_str) {
1293       GST_ERROR ("failed to parse blocksize");
1294       ret = FALSE;
1295     } else {
1296       /* we don't want to change the mtu when this media
1297        * can be shared because it impacts other clients */
1298       if (gst_rtsp_media_is_shared (media))
1299         return TRUE;
1300
1301       if (blocksize > G_MAXUINT)
1302         blocksize = G_MAXUINT;
1303       gst_rtsp_stream_set_mtu (stream, blocksize);
1304     }
1305   }
1306   return ret;
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       /* check if the client selected channels for TCP */
1359       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1360         gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
1361             &ct->interleaved);
1362       }
1363     }
1364   }
1365   return TRUE;
1366
1367   /* ERRORS */
1368 no_address:
1369   {
1370     GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1371     return FALSE;
1372   }
1373 }
1374
1375 static GstRTSPTransport *
1376 make_server_transport (GstRTSPClient * client, GstRTSPContext * ctx,
1377     GstRTSPTransport * ct)
1378 {
1379   GstRTSPTransport *st;
1380   GInetAddress *addr;
1381   GSocketFamily family;
1382
1383   /* prepare the server transport */
1384   gst_rtsp_transport_new (&st);
1385
1386   st->trans = ct->trans;
1387   st->profile = ct->profile;
1388   st->lower_transport = ct->lower_transport;
1389
1390   addr = g_inet_address_new_from_string (ct->destination);
1391
1392   if (!addr) {
1393     GST_ERROR ("failed to get inet addr from client destination");
1394     family = G_SOCKET_FAMILY_IPV4;
1395   } else {
1396     family = g_inet_address_get_family (addr);
1397     g_object_unref (addr);
1398     addr = NULL;
1399   }
1400
1401   switch (st->lower_transport) {
1402     case GST_RTSP_LOWER_TRANS_UDP:
1403       st->client_port = ct->client_port;
1404       gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
1405       break;
1406     case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1407       st->port = ct->port;
1408       st->destination = g_strdup (ct->destination);
1409       st->ttl = ct->ttl;
1410       break;
1411     case GST_RTSP_LOWER_TRANS_TCP:
1412       st->interleaved = ct->interleaved;
1413     default:
1414       break;
1415   }
1416
1417   gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
1418
1419   return st;
1420 }
1421
1422 static gboolean
1423 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
1424 {
1425   GstRTSPClientPrivate *priv = client->priv;
1426   GstRTSPResult res;
1427   GstRTSPUrl *uri;
1428   gchar *transport;
1429   GstRTSPTransport *ct, *st;
1430   GstRTSPLowerTrans supported;
1431   GstRTSPStatusCode code;
1432   GstRTSPSession *session;
1433   GstRTSPStreamTransport *trans;
1434   gchar *trans_str;
1435   GstRTSPSessionMedia *sessmedia;
1436   GstRTSPMedia *media;
1437   GstRTSPStream *stream;
1438   GstRTSPState rtspstate;
1439   GstRTSPClientClass *klass;
1440   gchar *path, *control;
1441   gint matched;
1442
1443   if (!(uri = ctx->uri))
1444     goto no_uri;
1445
1446   if (!priv->mount_points)
1447     goto no_mount_points;
1448
1449   if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, uri)))
1450     goto no_path;
1451
1452   /* parse the transport */
1453   res =
1454       gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
1455       &transport, 0);
1456   if (res != GST_RTSP_OK)
1457     goto no_transport;
1458
1459   /* we create the session after parsing stuff so that we don't make
1460    * a session for malformed requests */
1461   if (priv->session_pool == NULL)
1462     goto no_pool;
1463
1464   session = ctx->session;
1465
1466   if (session) {
1467     g_object_ref (session);
1468     /* get a handle to the configuration of the media in the session, this can
1469      * return NULL if this is a new url to manage in this session. */
1470     sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1471   } else {
1472     /* we need a new media configuration in this session */
1473     sessmedia = NULL;
1474   }
1475
1476   /* we have no session media, find one and manage it */
1477   if (sessmedia == NULL) {
1478     /* get a handle to the configuration of the media in the session */
1479     media = find_media (client, ctx, &matched);
1480   } else {
1481     if ((media = gst_rtsp_session_media_get_media (sessmedia)))
1482       g_object_ref (media);
1483   }
1484   /* no media, not found then */
1485   if (media == NULL)
1486     goto media_not_found;
1487
1488   /* path is what matched */
1489   path[matched] = '\0';
1490   /* control is remainder */
1491   control = &path[matched + 1];
1492
1493   /* find the stream now using the control part */
1494   stream = gst_rtsp_media_find_stream (media, control);
1495   if (stream == NULL)
1496     goto stream_not_found;
1497
1498   /* now we have a uri identifying a valid media and stream */
1499   ctx->stream = stream;
1500   ctx->media = media;
1501
1502   if (session == NULL) {
1503     /* create a session if this fails we probably reached our session limit or
1504      * something. */
1505     if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
1506       goto service_unavailable;
1507
1508     /* make sure this client is closed when the session is closed */
1509     client_watch_session (client, session);
1510
1511     /* signal new session */
1512     g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1513         session);
1514
1515     ctx->session = session;
1516   }
1517
1518   if (sessmedia == NULL) {
1519     /* manage the media in our session now, if not done already  */
1520     sessmedia = gst_rtsp_session_manage_media (session, path, media);
1521     /* if we stil have no media, error */
1522     if (sessmedia == NULL)
1523       goto sessmedia_unavailable;
1524   } else {
1525     g_object_unref (media);
1526   }
1527   g_free (path);
1528
1529   ctx->sessmedia = sessmedia;
1530
1531   /* set blocksize on this stream */
1532   if (!handle_blocksize (media, stream, ctx->request))
1533     goto invalid_blocksize;
1534
1535   gst_rtsp_transport_new (&ct);
1536
1537   /* our supported transports */
1538   supported = gst_rtsp_stream_get_protocols (stream);
1539
1540   /* parse and find a usable supported transport */
1541   if (!parse_transport (transport, supported, ct))
1542     goto unsupported_transports;
1543
1544   /* update the client transport */
1545   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1546   if (!klass->configure_client_transport (client, ctx, ct))
1547     goto unsupported_client_transport;
1548
1549   /* set in the session media transport */
1550   trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1551
1552   /* configure keepalive for this transport */
1553   gst_rtsp_stream_transport_set_keepalive (trans,
1554       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1555
1556   /* create and serialize the server transport */
1557   st = make_server_transport (client, ctx, ct);
1558   trans_str = gst_rtsp_transport_as_text (st);
1559   gst_rtsp_transport_free (st);
1560
1561   /* construct the response now */
1562   code = GST_RTSP_STS_OK;
1563   gst_rtsp_message_init_response (ctx->response, code,
1564       gst_rtsp_status_as_text (code), ctx->request);
1565
1566   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
1567       trans_str);
1568   g_free (trans_str);
1569
1570   send_message (client, session, ctx->response, FALSE);
1571
1572   /* update the state */
1573   rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1574   switch (rtspstate) {
1575     case GST_RTSP_STATE_PLAYING:
1576     case GST_RTSP_STATE_RECORDING:
1577     case GST_RTSP_STATE_READY:
1578       /* no state change */
1579       break;
1580     default:
1581       gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1582       break;
1583   }
1584   g_object_unref (session);
1585
1586   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
1587
1588   return TRUE;
1589
1590   /* ERRORS */
1591 no_uri:
1592   {
1593     GST_ERROR ("client %p: no uri", client);
1594     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1595     return FALSE;
1596   }
1597 no_mount_points:
1598   {
1599     GST_ERROR ("client %p: no mount points configured", client);
1600     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1601     return FALSE;
1602   }
1603 no_path:
1604   {
1605     GST_ERROR ("client %p: can't find path for url", client);
1606     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1607     return FALSE;
1608   }
1609 no_transport:
1610   {
1611     GST_ERROR ("client %p: no transport", client);
1612     g_free (path);
1613     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1614     return FALSE;
1615   }
1616 no_pool:
1617   {
1618     GST_ERROR ("client %p: no session pool configured", client);
1619     g_free (path);
1620     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1621     return FALSE;
1622   }
1623 media_not_found:
1624   {
1625     GST_ERROR ("client %p: media '%s' not found", client, path);
1626     g_free (path);
1627     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1628     return FALSE;
1629   }
1630 stream_not_found:
1631   {
1632     GST_ERROR ("client %p: stream '%s' not found", client, control);
1633     g_free (path);
1634     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1635     g_object_unref (media);
1636     return FALSE;
1637   }
1638 service_unavailable:
1639   {
1640     GST_ERROR ("client %p: can't create session", client);
1641     g_free (path);
1642     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1643     g_object_unref (media);
1644     return FALSE;
1645   }
1646 sessmedia_unavailable:
1647   {
1648     GST_ERROR ("client %p: can't create session media", client);
1649     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1650     g_free (path);
1651     g_object_unref (media);
1652     g_object_unref (session);
1653     return FALSE;
1654   }
1655 invalid_blocksize:
1656   {
1657     GST_ERROR ("client %p: invalid blocksize", client);
1658     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1659     g_object_unref (session);
1660     return FALSE;
1661   }
1662 unsupported_transports:
1663   {
1664     GST_ERROR ("client %p: unsupported transports", client);
1665     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1666     gst_rtsp_transport_free (ct);
1667     g_object_unref (session);
1668     return FALSE;
1669   }
1670 unsupported_client_transport:
1671   {
1672     GST_ERROR ("client %p: unsupported client transport", client);
1673     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1674     gst_rtsp_transport_free (ct);
1675     g_object_unref (session);
1676     return FALSE;
1677   }
1678 }
1679
1680 static GstSDPMessage *
1681 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1682 {
1683   GstRTSPClientPrivate *priv = client->priv;
1684   GstSDPMessage *sdp;
1685   GstSDPInfo info;
1686   const gchar *proto;
1687
1688   gst_sdp_message_new (&sdp);
1689
1690   /* some standard things first */
1691   gst_sdp_message_set_version (sdp, "0");
1692
1693   if (priv->is_ipv6)
1694     proto = "IP6";
1695   else
1696     proto = "IP4";
1697
1698   gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1699       priv->server_ip);
1700
1701   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1702   gst_sdp_message_set_information (sdp, "rtsp-server");
1703   gst_sdp_message_add_time (sdp, "0", "0", NULL);
1704   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1705   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1706   gst_sdp_message_add_attribute (sdp, "control", "*");
1707
1708   info.is_ipv6 = priv->is_ipv6;
1709   info.server_ip = priv->server_ip;
1710
1711   /* create an SDP for the media object */
1712   if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1713     goto no_sdp;
1714
1715   return sdp;
1716
1717   /* ERRORS */
1718 no_sdp:
1719   {
1720     GST_ERROR ("client %p: could not create SDP", client);
1721     gst_sdp_message_free (sdp);
1722     return NULL;
1723   }
1724 }
1725
1726 /* for the describe we must generate an SDP */
1727 static gboolean
1728 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
1729 {
1730   GstRTSPResult res;
1731   GstSDPMessage *sdp;
1732   guint i, str_len;
1733   gchar *str, *str_query, *content_base;
1734   GstRTSPMedia *media;
1735   GstRTSPClientClass *klass;
1736
1737   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1738
1739   if (!ctx->uri)
1740     goto no_uri;
1741
1742   /* check what kind of format is accepted, we don't really do anything with it
1743    * and always return SDP for now. */
1744   for (i = 0; i++;) {
1745     gchar *accept;
1746
1747     res =
1748         gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
1749         &accept, i);
1750     if (res == GST_RTSP_ENOTIMPL)
1751       break;
1752
1753     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1754       break;
1755   }
1756
1757   /* find the media object for the uri */
1758   if (!(media = find_media (client, ctx, NULL)))
1759     goto no_media;
1760
1761   /* create an SDP for the media object on this client */
1762   if (!(sdp = klass->create_sdp (client, media)))
1763     goto no_sdp;
1764
1765   g_object_unref (media);
1766
1767   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
1768       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
1769
1770   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
1771       "application/sdp");
1772
1773   /* content base for some clients that might screw up creating the setup uri */
1774   str = gst_rtsp_url_get_request_uri (ctx->uri);
1775   str_len = strlen (str);
1776
1777   /* check for query part */
1778   if (ctx->uri->query != NULL) {
1779     str_query = g_strrstr (str, "?");
1780     *str_query = '\0';
1781     str_len = strlen (str);
1782   }
1783
1784   /* check for trailing '/' and append one */
1785   if (str[str_len - 1] != '/') {
1786     content_base = g_malloc (str_len + 2);
1787     memcpy (content_base, str, str_len);
1788     content_base[str_len] = '/';
1789     content_base[str_len + 1] = '\0';
1790     g_free (str);
1791   } else {
1792     content_base = str;
1793   }
1794
1795   GST_INFO ("adding content-base: %s", content_base);
1796
1797   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE,
1798       content_base);
1799   g_free (content_base);
1800
1801   /* add SDP to the response body */
1802   str = gst_sdp_message_as_text (sdp);
1803   gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
1804   gst_sdp_message_free (sdp);
1805
1806   send_message (client, ctx->session, ctx->response, FALSE);
1807
1808   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1809       0, ctx);
1810
1811   return TRUE;
1812
1813   /* ERRORS */
1814 no_uri:
1815   {
1816     GST_ERROR ("client %p: no uri", client);
1817     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1818     return FALSE;
1819   }
1820 no_media:
1821   {
1822     GST_ERROR ("client %p: no media", client);
1823     /* error reply is already sent */
1824     return FALSE;
1825   }
1826 no_sdp:
1827   {
1828     GST_ERROR ("client %p: can't create SDP", client);
1829     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1830     g_object_unref (media);
1831     return FALSE;
1832   }
1833 }
1834
1835 static gboolean
1836 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx)
1837 {
1838   GstRTSPMethod options;
1839   gchar *str;
1840
1841   options = GST_RTSP_DESCRIBE |
1842       GST_RTSP_OPTIONS |
1843       GST_RTSP_PAUSE |
1844       GST_RTSP_PLAY |
1845       GST_RTSP_SETUP |
1846       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1847
1848   str = gst_rtsp_options_as_text (options);
1849
1850   gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
1851       gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
1852
1853   gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
1854   g_free (str);
1855
1856   send_message (client, ctx->session, ctx->response, FALSE);
1857
1858   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1859       0, ctx);
1860
1861   return TRUE;
1862 }
1863
1864 /* remove duplicate and trailing '/' */
1865 static void
1866 sanitize_uri (GstRTSPUrl * uri)
1867 {
1868   gint i, len;
1869   gchar *s, *d;
1870   gboolean have_slash, prev_slash;
1871
1872   s = d = uri->abspath;
1873   len = strlen (uri->abspath);
1874
1875   prev_slash = FALSE;
1876
1877   for (i = 0; i < len; i++) {
1878     have_slash = s[i] == '/';
1879     *d = s[i];
1880     if (!have_slash || !prev_slash)
1881       d++;
1882     prev_slash = have_slash;
1883   }
1884   len = d - uri->abspath;
1885   /* don't remove the first slash if that's the only thing left */
1886   if (len > 1 && *(d - 1) == '/')
1887     d--;
1888   *d = '\0';
1889 }
1890
1891 static void
1892 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1893 {
1894   GstRTSPClientPrivate *priv = client->priv;
1895
1896   GST_INFO ("client %p: session %p finished", client, session);
1897
1898   /* unlink all media managed in this session */
1899   client_unlink_session (client, session);
1900
1901   /* remove the session */
1902   if (!(priv->sessions = g_list_remove (priv->sessions, session))) {
1903     GST_INFO ("client %p: all sessions finalized, close the connection",
1904         client);
1905     close_connection (client);
1906   }
1907 }
1908
1909 static void
1910 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1911 {
1912   GstRTSPClientPrivate *priv = client->priv;
1913   GstRTSPMethod method;
1914   const gchar *uristr;
1915   GstRTSPUrl *uri = NULL;
1916   GstRTSPVersion version;
1917   GstRTSPResult res;
1918   GstRTSPSession *session = NULL;
1919   GstRTSPContext sctx = { NULL }, *ctx;
1920   GstRTSPMessage response = { 0 };
1921   gchar *sessid;
1922
1923   if (!(ctx = gst_rtsp_context_get_current ())) {
1924     ctx = &sctx;
1925     ctx->auth = priv->auth;
1926     gst_rtsp_context_push_current (ctx);
1927   }
1928
1929   ctx->conn = priv->connection;
1930   ctx->client = client;
1931   ctx->request = request;
1932   ctx->response = &response;
1933
1934   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1935     gst_rtsp_message_dump (request);
1936   }
1937
1938   GST_INFO ("client %p: received a request", client);
1939
1940   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1941
1942   /* we can only handle 1.0 requests */
1943   if (version != GST_RTSP_VERSION_1_0)
1944     goto not_supported;
1945
1946   ctx->method = method;
1947
1948   /* we always try to parse the url first */
1949   if (strcmp (uristr, "*") == 0) {
1950     /* special case where we have * as uri, keep uri = NULL */
1951   } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK)
1952     goto bad_request;
1953
1954   /* get the session if there is any */
1955   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1956   if (res == GST_RTSP_OK) {
1957     if (priv->session_pool == NULL)
1958       goto no_pool;
1959
1960     /* we had a session in the request, find it again */
1961     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
1962       goto session_not_found;
1963
1964     /* we add the session to the client list of watched sessions. When a session
1965      * disappears because it times out, we will be notified. If all sessions are
1966      * gone, we will close the connection */
1967     client_watch_session (client, session);
1968   }
1969
1970   /* sanitize the uri */
1971   if (uri)
1972     sanitize_uri (uri);
1973   ctx->uri = uri;
1974   ctx->session = session;
1975
1976   if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
1977     goto not_authorized;
1978
1979   /* now see what is asked and dispatch to a dedicated handler */
1980   switch (method) {
1981     case GST_RTSP_OPTIONS:
1982       handle_options_request (client, ctx);
1983       break;
1984     case GST_RTSP_DESCRIBE:
1985       handle_describe_request (client, ctx);
1986       break;
1987     case GST_RTSP_SETUP:
1988       handle_setup_request (client, ctx);
1989       break;
1990     case GST_RTSP_PLAY:
1991       handle_play_request (client, ctx);
1992       break;
1993     case GST_RTSP_PAUSE:
1994       handle_pause_request (client, ctx);
1995       break;
1996     case GST_RTSP_TEARDOWN:
1997       handle_teardown_request (client, ctx);
1998       break;
1999     case GST_RTSP_SET_PARAMETER:
2000       handle_set_param_request (client, ctx);
2001       break;
2002     case GST_RTSP_GET_PARAMETER:
2003       handle_get_param_request (client, ctx);
2004       break;
2005     case GST_RTSP_ANNOUNCE:
2006     case GST_RTSP_RECORD:
2007     case GST_RTSP_REDIRECT:
2008       goto not_implemented;
2009     case GST_RTSP_INVALID:
2010     default:
2011       goto bad_request;
2012   }
2013
2014 done:
2015   if (ctx == &sctx)
2016     gst_rtsp_context_pop_current (ctx);
2017   if (session)
2018     g_object_unref (session);
2019   if (uri)
2020     gst_rtsp_url_free (uri);
2021   return;
2022
2023   /* ERRORS */
2024 not_supported:
2025   {
2026     GST_ERROR ("client %p: version %d not supported", client, version);
2027     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
2028         ctx);
2029     goto done;
2030   }
2031 bad_request:
2032   {
2033     GST_ERROR ("client %p: bad request", client);
2034     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2035     goto done;
2036   }
2037 no_pool:
2038   {
2039     GST_ERROR ("client %p: no pool configured", client);
2040     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2041     goto done;
2042   }
2043 session_not_found:
2044   {
2045     GST_ERROR ("client %p: session not found", client);
2046     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2047     goto done;
2048   }
2049 not_authorized:
2050   {
2051     GST_ERROR ("client %p: not allowed", client);
2052     goto done;
2053   }
2054 not_implemented:
2055   {
2056     GST_ERROR ("client %p: method %d not implemented", client, method);
2057     send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2058     goto done;
2059   }
2060 }
2061
2062
2063 static void
2064 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
2065 {
2066   GstRTSPClientPrivate *priv = client->priv;
2067   GstRTSPResult res;
2068   GstRTSPSession *session = NULL;
2069   GstRTSPContext sctx = { NULL }, *ctx;
2070   gchar *sessid;
2071
2072   if (!(ctx = gst_rtsp_context_get_current ())) {
2073     ctx = &sctx;
2074     ctx->auth = priv->auth;
2075     gst_rtsp_context_push_current (ctx);
2076   }
2077
2078   ctx->conn = priv->connection;
2079   ctx->client = client;
2080   ctx->request = NULL;
2081   ctx->uri = NULL;
2082   ctx->method = GST_RTSP_INVALID;
2083   ctx->response = response;
2084
2085   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2086     gst_rtsp_message_dump (response);
2087   }
2088
2089   GST_INFO ("client %p: received a response", client);
2090
2091   /* get the session if there is any */
2092   res =
2093       gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
2094   if (res == GST_RTSP_OK) {
2095     if (priv->session_pool == NULL)
2096       goto no_pool;
2097
2098     /* we had a session in the request, find it again */
2099     if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2100       goto session_not_found;
2101
2102     /* we add the session to the client list of watched sessions. When a session
2103      * disappears because it times out, we will be notified. If all sessions are
2104      * gone, we will close the connection */
2105     client_watch_session (client, session);
2106   }
2107
2108   ctx->session = session;
2109
2110   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
2111       0, ctx);
2112
2113 done:
2114   if (ctx == &sctx)
2115     gst_rtsp_context_pop_current (ctx);
2116   if (session)
2117     g_object_unref (session);
2118   return;
2119
2120 no_pool:
2121   {
2122     GST_ERROR ("client %p: no pool configured", client);
2123     goto done;
2124   }
2125 session_not_found:
2126   {
2127     GST_ERROR ("client %p: session not found", client);
2128     goto done;
2129   }
2130 }
2131
2132 static void
2133 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
2134 {
2135   GstRTSPClientPrivate *priv = client->priv;
2136   GstRTSPResult res;
2137   guint8 channel;
2138   GList *walk;
2139   guint8 *data;
2140   guint size;
2141   GstBuffer *buffer;
2142   gboolean handled;
2143
2144   /* find the stream for this message */
2145   res = gst_rtsp_message_parse_data (message, &channel);
2146   if (res != GST_RTSP_OK)
2147     return;
2148
2149   gst_rtsp_message_steal_body (message, &data, &size);
2150
2151   buffer = gst_buffer_new_wrapped (data, size);
2152
2153   handled = FALSE;
2154   for (walk = priv->transports; walk; walk = g_list_next (walk)) {
2155     GstRTSPStreamTransport *trans;
2156     GstRTSPStream *stream;
2157     const GstRTSPTransport *tr;
2158
2159     trans = walk->data;
2160
2161     tr = gst_rtsp_stream_transport_get_transport (trans);
2162     stream = gst_rtsp_stream_transport_get_stream (trans);
2163
2164     /* check for TCP transport */
2165     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
2166       /* dispatch to the stream based on the channel number */
2167       if (tr->interleaved.min == channel) {
2168         gst_rtsp_stream_recv_rtp (stream, buffer);
2169         handled = TRUE;
2170         break;
2171       } else if (tr->interleaved.max == channel) {
2172         gst_rtsp_stream_recv_rtcp (stream, buffer);
2173         handled = TRUE;
2174         break;
2175       }
2176     }
2177   }
2178   if (!handled)
2179     gst_buffer_unref (buffer);
2180 }
2181
2182 /**
2183  * gst_rtsp_client_set_session_pool:
2184  * @client: a #GstRTSPClient
2185  * @pool: a #GstRTSPSessionPool
2186  *
2187  * Set @pool as the sessionpool for @client which it will use to find
2188  * or allocate sessions. the sessionpool is usually inherited from the server
2189  * that created the client but can be overridden later.
2190  */
2191 void
2192 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
2193     GstRTSPSessionPool * pool)
2194 {
2195   GstRTSPSessionPool *old;
2196   GstRTSPClientPrivate *priv;
2197
2198   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2199
2200   priv = client->priv;
2201
2202   if (pool)
2203     g_object_ref (pool);
2204
2205   g_mutex_lock (&priv->lock);
2206   old = priv->session_pool;
2207   priv->session_pool = pool;
2208   g_mutex_unlock (&priv->lock);
2209
2210   if (old)
2211     g_object_unref (old);
2212 }
2213
2214 /**
2215  * gst_rtsp_client_get_session_pool:
2216  * @client: a #GstRTSPClient
2217  *
2218  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
2219  *
2220  * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
2221  */
2222 GstRTSPSessionPool *
2223 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
2224 {
2225   GstRTSPClientPrivate *priv;
2226   GstRTSPSessionPool *result;
2227
2228   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2229
2230   priv = client->priv;
2231
2232   g_mutex_lock (&priv->lock);
2233   if ((result = priv->session_pool))
2234     g_object_ref (result);
2235   g_mutex_unlock (&priv->lock);
2236
2237   return result;
2238 }
2239
2240 /**
2241  * gst_rtsp_client_set_mount_points:
2242  * @client: a #GstRTSPClient
2243  * @mounts: a #GstRTSPMountPoints
2244  *
2245  * Set @mounts as the mount points for @client which it will use to map urls
2246  * to media streams. These mount points are usually inherited from the server that
2247  * created the client but can be overriden later.
2248  */
2249 void
2250 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
2251     GstRTSPMountPoints * mounts)
2252 {
2253   GstRTSPClientPrivate *priv;
2254   GstRTSPMountPoints *old;
2255
2256   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2257
2258   priv = client->priv;
2259
2260   if (mounts)
2261     g_object_ref (mounts);
2262
2263   g_mutex_lock (&priv->lock);
2264   old = priv->mount_points;
2265   priv->mount_points = mounts;
2266   g_mutex_unlock (&priv->lock);
2267
2268   if (old)
2269     g_object_unref (old);
2270 }
2271
2272 /**
2273  * gst_rtsp_client_get_mount_points:
2274  * @client: a #GstRTSPClient
2275  *
2276  * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
2277  *
2278  * Returns: (transfer full): a #GstRTSPMountPoints, unref after usage.
2279  */
2280 GstRTSPMountPoints *
2281 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
2282 {
2283   GstRTSPClientPrivate *priv;
2284   GstRTSPMountPoints *result;
2285
2286   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2287
2288   priv = client->priv;
2289
2290   g_mutex_lock (&priv->lock);
2291   if ((result = priv->mount_points))
2292     g_object_ref (result);
2293   g_mutex_unlock (&priv->lock);
2294
2295   return result;
2296 }
2297
2298 /**
2299  * gst_rtsp_client_set_auth:
2300  * @client: a #GstRTSPClient
2301  * @auth: a #GstRTSPAuth
2302  *
2303  * configure @auth to be used as the authentication manager of @client.
2304  */
2305 void
2306 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
2307 {
2308   GstRTSPClientPrivate *priv;
2309   GstRTSPAuth *old;
2310
2311   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2312
2313   priv = client->priv;
2314
2315   if (auth)
2316     g_object_ref (auth);
2317
2318   g_mutex_lock (&priv->lock);
2319   old = priv->auth;
2320   priv->auth = auth;
2321   g_mutex_unlock (&priv->lock);
2322
2323   if (old)
2324     g_object_unref (old);
2325 }
2326
2327
2328 /**
2329  * gst_rtsp_client_get_auth:
2330  * @client: a #GstRTSPClient
2331  *
2332  * Get the #GstRTSPAuth used as the authentication manager of @client.
2333  *
2334  * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
2335  * usage.
2336  */
2337 GstRTSPAuth *
2338 gst_rtsp_client_get_auth (GstRTSPClient * client)
2339 {
2340   GstRTSPClientPrivate *priv;
2341   GstRTSPAuth *result;
2342
2343   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2344
2345   priv = client->priv;
2346
2347   g_mutex_lock (&priv->lock);
2348   if ((result = priv->auth))
2349     g_object_ref (result);
2350   g_mutex_unlock (&priv->lock);
2351
2352   return result;
2353 }
2354
2355 /**
2356  * gst_rtsp_client_set_thread_pool:
2357  * @client: a #GstRTSPClient
2358  * @pool: a #GstRTSPThreadPool
2359  *
2360  * configure @pool to be used as the thread pool of @client.
2361  */
2362 void
2363 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
2364     GstRTSPThreadPool * pool)
2365 {
2366   GstRTSPClientPrivate *priv;
2367   GstRTSPThreadPool *old;
2368
2369   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2370
2371   priv = client->priv;
2372
2373   if (pool)
2374     g_object_ref (pool);
2375
2376   g_mutex_lock (&priv->lock);
2377   old = priv->thread_pool;
2378   priv->thread_pool = pool;
2379   g_mutex_unlock (&priv->lock);
2380
2381   if (old)
2382     g_object_unref (old);
2383 }
2384
2385 /**
2386  * gst_rtsp_client_get_thread_pool:
2387  * @client: a #GstRTSPClient
2388  *
2389  * Get the #GstRTSPThreadPool used as the thread pool of @client.
2390  *
2391  * Returns: (transfer full): the #GstRTSPThreadPool of @client. g_object_unref() after
2392  * usage.
2393  */
2394 GstRTSPThreadPool *
2395 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
2396 {
2397   GstRTSPClientPrivate *priv;
2398   GstRTSPThreadPool *result;
2399
2400   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2401
2402   priv = client->priv;
2403
2404   g_mutex_lock (&priv->lock);
2405   if ((result = priv->thread_pool))
2406     g_object_ref (result);
2407   g_mutex_unlock (&priv->lock);
2408
2409   return result;
2410 }
2411
2412 /**
2413  * gst_rtsp_client_set_connection:
2414  * @client: a #GstRTSPClient
2415  * @conn: (transfer full): a #GstRTSPConnection
2416  *
2417  * Set the #GstRTSPConnection of @client. This function takes ownership of
2418  * @conn.
2419  *
2420  * Returns: %TRUE on success.
2421  */
2422 gboolean
2423 gst_rtsp_client_set_connection (GstRTSPClient * client,
2424     GstRTSPConnection * conn)
2425 {
2426   GstRTSPClientPrivate *priv;
2427   GSocket *read_socket;
2428   GSocketAddress *address;
2429   GstRTSPUrl *url;
2430   GError *error = NULL;
2431
2432   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2433   g_return_val_if_fail (conn != NULL, FALSE);
2434
2435   priv = client->priv;
2436
2437   read_socket = gst_rtsp_connection_get_read_socket (conn);
2438
2439   if (!(address = g_socket_get_local_address (read_socket, &error)))
2440     goto no_address;
2441
2442   g_free (priv->server_ip);
2443   /* keep the original ip that the client connected to */
2444   if (G_IS_INET_SOCKET_ADDRESS (address)) {
2445     GInetAddress *iaddr;
2446
2447     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2448
2449     /* socket might be ipv6 but adress still ipv4 */
2450     priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
2451     priv->server_ip = g_inet_address_to_string (iaddr);
2452     g_object_unref (address);
2453   } else {
2454     priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
2455     priv->server_ip = g_strdup ("unknown");
2456   }
2457
2458   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2459       priv->server_ip, priv->is_ipv6);
2460
2461   url = gst_rtsp_connection_get_url (conn);
2462   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2463
2464   priv->connection = conn;
2465
2466   return TRUE;
2467
2468   /* ERRORS */
2469 no_address:
2470   {
2471     GST_ERROR ("could not get local address %s", error->message);
2472     g_error_free (error);
2473     return FALSE;
2474   }
2475 }
2476
2477 /**
2478  * gst_rtsp_client_get_connection:
2479  * @client: a #GstRTSPClient
2480  *
2481  * Get the #GstRTSPConnection of @client.
2482  *
2483  * Returns: (transfer none): the #GstRTSPConnection of @client.
2484  * The connection object returned remains valid until the client is freed.
2485  */
2486 GstRTSPConnection *
2487 gst_rtsp_client_get_connection (GstRTSPClient * client)
2488 {
2489   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2490
2491   return client->priv->connection;
2492 }
2493
2494 /**
2495  * gst_rtsp_client_set_send_func:
2496  * @client: a #GstRTSPClient
2497  * @func: a #GstRTSPClientSendFunc
2498  * @user_data: user data passed to @func
2499  * @notify: called when @user_data is no longer in use
2500  *
2501  * Set @func as the callback that will be called when a new message needs to be
2502  * sent to the client. @user_data is passed to @func and @notify is called when
2503  * @user_data is no longer in use.
2504  *
2505  * By default, the client will send the messages on the #GstRTSPConnection that
2506  * was configured with gst_rtsp_client_attach() was called.
2507  */
2508 void
2509 gst_rtsp_client_set_send_func (GstRTSPClient * client,
2510     GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
2511 {
2512   GstRTSPClientPrivate *priv;
2513   GDestroyNotify old_notify;
2514   gpointer old_data;
2515
2516   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2517
2518   priv = client->priv;
2519
2520   g_mutex_lock (&priv->send_lock);
2521   priv->send_func = func;
2522   old_notify = priv->send_notify;
2523   old_data = priv->send_data;
2524   priv->send_notify = notify;
2525   priv->send_data = user_data;
2526   g_mutex_unlock (&priv->send_lock);
2527
2528   if (old_notify)
2529     old_notify (old_data);
2530 }
2531
2532 /**
2533  * gst_rtsp_client_handle_message:
2534  * @client: a #GstRTSPClient
2535  * @message: an #GstRTSPMessage
2536  *
2537  * Let the client handle @message.
2538  *
2539  * Returns: a #GstRTSPResult.
2540  */
2541 GstRTSPResult
2542 gst_rtsp_client_handle_message (GstRTSPClient * client,
2543     GstRTSPMessage * message)
2544 {
2545   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
2546   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2547
2548   switch (message->type) {
2549     case GST_RTSP_MESSAGE_REQUEST:
2550       handle_request (client, message);
2551       break;
2552     case GST_RTSP_MESSAGE_RESPONSE:
2553       handle_response (client, message);
2554       break;
2555     case GST_RTSP_MESSAGE_DATA:
2556       handle_data (client, message);
2557       break;
2558     default:
2559       break;
2560   }
2561   return GST_RTSP_OK;
2562 }
2563
2564 /**
2565  * gst_rtsp_client_send_message:
2566  * @client: a #GstRTSPClient
2567  * @session: a #GstRTSPSession to send the message to or %NULL
2568  * @message: The #GstRTSPMessage to send
2569  *
2570  * Send a message message to the remote end. @message must be a
2571  * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
2572  */
2573 GstRTSPResult
2574 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
2575     GstRTSPMessage * message)
2576 {
2577   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
2578   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2579   g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
2580       message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
2581
2582   send_message (client, session, message, FALSE);
2583
2584   return GST_RTSP_OK;
2585 }
2586
2587 static GstRTSPResult
2588 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
2589     gboolean close, gpointer user_data)
2590 {
2591   GstRTSPClientPrivate *priv = client->priv;
2592
2593   /* send the response and store the seq number so we can wait until it's
2594    * written to the client to close the connection */
2595   return gst_rtsp_watch_send_message (priv->watch, message, close ?
2596       &priv->close_seq : NULL);
2597 }
2598
2599 static GstRTSPResult
2600 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
2601     gpointer user_data)
2602 {
2603   return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
2604 }
2605
2606 static GstRTSPResult
2607 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
2608 {
2609   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2610   GstRTSPClientPrivate *priv = client->priv;
2611
2612   if (priv->close_seq && priv->close_seq == cseq) {
2613     priv->close_seq = 0;
2614     close_connection (client);
2615   }
2616
2617   return GST_RTSP_OK;
2618 }
2619
2620 static GstRTSPResult
2621 closed (GstRTSPWatch * watch, gpointer user_data)
2622 {
2623   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2624   GstRTSPClientPrivate *priv = client->priv;
2625   const gchar *tunnelid;
2626
2627   GST_INFO ("client %p: connection closed", client);
2628
2629   if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
2630     g_mutex_lock (&tunnels_lock);
2631     /* remove from tunnelids */
2632     g_hash_table_remove (tunnels, tunnelid);
2633     g_mutex_unlock (&tunnels_lock);
2634   }
2635
2636   gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
2637
2638   return GST_RTSP_OK;
2639 }
2640
2641 static GstRTSPResult
2642 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
2643 {
2644   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2645   gchar *str;
2646
2647   str = gst_rtsp_strresult (result);
2648   GST_INFO ("client %p: received an error %s", client, str);
2649   g_free (str);
2650
2651   return GST_RTSP_OK;
2652 }
2653
2654 static GstRTSPResult
2655 error_full (GstRTSPWatch * watch, GstRTSPResult result,
2656     GstRTSPMessage * message, guint id, gpointer user_data)
2657 {
2658   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2659   gchar *str;
2660
2661   str = gst_rtsp_strresult (result);
2662   GST_INFO
2663       ("client %p: error when handling message %p with id %d: %s",
2664       client, message, id, str);
2665   g_free (str);
2666
2667   return GST_RTSP_OK;
2668 }
2669
2670 static gboolean
2671 remember_tunnel (GstRTSPClient * client)
2672 {
2673   GstRTSPClientPrivate *priv = client->priv;
2674   const gchar *tunnelid;
2675
2676   /* store client in the pending tunnels */
2677   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2678   if (tunnelid == NULL)
2679     goto no_tunnelid;
2680
2681   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
2682
2683   /* we can't have two clients connecting with the same tunnelid */
2684   g_mutex_lock (&tunnels_lock);
2685   if (g_hash_table_lookup (tunnels, tunnelid))
2686     goto tunnel_existed;
2687
2688   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
2689   g_mutex_unlock (&tunnels_lock);
2690
2691   return TRUE;
2692
2693   /* ERRORS */
2694 no_tunnelid:
2695   {
2696     GST_ERROR ("client %p: no tunnelid provided", client);
2697     return FALSE;
2698   }
2699 tunnel_existed:
2700   {
2701     g_mutex_unlock (&tunnels_lock);
2702     GST_ERROR ("client %p: tunnel session %s already existed", client,
2703         tunnelid);
2704     return FALSE;
2705   }
2706 }
2707
2708 static GstRTSPStatusCode
2709 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
2710 {
2711   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2712   GstRTSPClientPrivate *priv = client->priv;
2713
2714   GST_INFO ("client %p: tunnel start (connection %p)", client,
2715       priv->connection);
2716
2717   if (!remember_tunnel (client))
2718     goto tunnel_error;
2719
2720   return GST_RTSP_STS_OK;
2721
2722   /* ERRORS */
2723 tunnel_error:
2724   {
2725     GST_ERROR ("client %p: error starting tunnel", client);
2726     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
2727   }
2728 }
2729
2730 static GstRTSPResult
2731 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
2732 {
2733   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2734   GstRTSPClientPrivate *priv = client->priv;
2735
2736   GST_WARNING ("client %p: tunnel lost (connection %p)", client,
2737       priv->connection);
2738
2739   /* ignore error, it'll only be a problem when the client does a POST again */
2740   remember_tunnel (client);
2741
2742   return GST_RTSP_OK;
2743 }
2744
2745 static GstRTSPResult
2746 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
2747 {
2748   const gchar *tunnelid;
2749   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2750   GstRTSPClientPrivate *priv = client->priv;
2751   GstRTSPClient *oclient;
2752   GstRTSPClientPrivate *opriv;
2753
2754   GST_INFO ("client %p: tunnel complete", client);
2755
2756   /* find previous tunnel */
2757   tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2758   if (tunnelid == NULL)
2759     goto no_tunnelid;
2760
2761   g_mutex_lock (&tunnels_lock);
2762   if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
2763     goto no_tunnel;
2764
2765   /* remove the old client from the table. ref before because removing it will
2766    * remove the ref to it. */
2767   g_object_ref (oclient);
2768   g_hash_table_remove (tunnels, tunnelid);
2769
2770   opriv = oclient->priv;
2771
2772   if (opriv->watch == NULL)
2773     goto tunnel_closed;
2774   g_mutex_unlock (&tunnels_lock);
2775
2776   GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
2777       opriv->connection, priv->connection);
2778
2779   /* merge the tunnels into the first client */
2780   gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
2781   gst_rtsp_watch_reset (opriv->watch);
2782   g_object_unref (oclient);
2783
2784   return GST_RTSP_OK;
2785
2786   /* ERRORS */
2787 no_tunnelid:
2788   {
2789     GST_ERROR ("client %p: no tunnelid provided", client);
2790     return GST_RTSP_ERROR;
2791   }
2792 no_tunnel:
2793   {
2794     g_mutex_unlock (&tunnels_lock);
2795     GST_ERROR ("client %p: tunnel session %s not found", client, tunnelid);
2796     return GST_RTSP_ERROR;
2797   }
2798 tunnel_closed:
2799   {
2800     g_mutex_unlock (&tunnels_lock);
2801     GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
2802     g_object_unref (oclient);
2803     return GST_RTSP_ERROR;
2804   }
2805 }
2806
2807 static GstRTSPWatchFuncs watch_funcs = {
2808   message_received,
2809   message_sent,
2810   closed,
2811   error,
2812   tunnel_start,
2813   tunnel_complete,
2814   error_full,
2815   tunnel_lost
2816 };
2817
2818 static void
2819 client_watch_notify (GstRTSPClient * client)
2820 {
2821   GstRTSPClientPrivate *priv = client->priv;
2822
2823   GST_INFO ("client %p: watch destroyed", client);
2824   priv->watch = NULL;
2825   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2826   g_object_unref (client);
2827 }
2828
2829 /**
2830  * gst_rtsp_client_attach:
2831  * @client: a #GstRTSPClient
2832  * @context: (allow-none): a #GMainContext
2833  *
2834  * Attaches @client to @context. When the mainloop for @context is run, the
2835  * client will be dispatched. When @context is NULL, the default context will be
2836  * used).
2837  *
2838  * This function should be called when the client properties and urls are fully
2839  * configured and the client is ready to start.
2840  *
2841  * Returns: the ID (greater than 0) for the source within the GMainContext.
2842  */
2843 guint
2844 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
2845 {
2846   GstRTSPClientPrivate *priv;
2847   guint res;
2848
2849   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
2850   priv = client->priv;
2851   g_return_val_if_fail (priv->connection != NULL, 0);
2852   g_return_val_if_fail (priv->watch == NULL, 0);
2853
2854   /* create watch for the connection and attach */
2855   priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
2856       g_object_ref (client), (GDestroyNotify) client_watch_notify);
2857   gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
2858       (GDestroyNotify) gst_rtsp_watch_unref);
2859
2860   /* FIXME make this configurable. We don't want to do this yet because it will
2861    * be superceeded by a cache object later */
2862   gst_rtsp_watch_set_send_backlog (priv->watch, 0, 100);
2863
2864   GST_INFO ("attaching to context %p", context);
2865   res = gst_rtsp_watch_attach (priv->watch, context);
2866
2867   return res;
2868 }
2869
2870 /**
2871  * gst_rtsp_client_session_filter:
2872  * @client: a #GstRTSPClient
2873  * @func: (scope call): a callback
2874  * @user_data: user data passed to @func
2875  *
2876  * Call @func for each session managed by @client. The result value of @func
2877  * determines what happens to the session. @func will be called with @client
2878  * locked so no further actions on @client can be performed from @func.
2879  *
2880  * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
2881  * @client.
2882  *
2883  * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
2884  *
2885  * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
2886  * will also be added with an additional ref to the result #GList of this
2887  * function..
2888  *
2889  * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
2890  * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
2891  * element in the #GList should be unreffed before the list is freed.
2892  */
2893 GList *
2894 gst_rtsp_client_session_filter (GstRTSPClient * client,
2895     GstRTSPClientSessionFilterFunc func, gpointer user_data)
2896 {
2897   GstRTSPClientPrivate *priv;
2898   GList *result, *walk, *next;
2899
2900   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2901   g_return_val_if_fail (func != NULL, NULL);
2902
2903   priv = client->priv;
2904
2905   result = NULL;
2906
2907   g_mutex_lock (&priv->lock);
2908   for (walk = priv->sessions; walk; walk = next) {
2909     GstRTSPSession *sess = walk->data;
2910
2911     next = g_list_next (walk);
2912
2913     switch (func (client, sess, user_data)) {
2914       case GST_RTSP_FILTER_REMOVE:
2915         /* stop watching the session and pretent it went away */
2916         client_cleanup_session (client, sess);
2917         break;
2918       case GST_RTSP_FILTER_REF:
2919         result = g_list_prepend (result, g_object_ref (sess));
2920         break;
2921       case GST_RTSP_FILTER_KEEP:
2922       default:
2923         break;
2924     }
2925   }
2926   g_mutex_unlock (&priv->lock);
2927
2928   return result;
2929 }