client: refuse to change the MTU on shared media
[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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <stdio.h>
21 #include <string.h>
22
23 #include "rtsp-client.h"
24 #include "rtsp-sdp.h"
25 #include "rtsp-params.h"
26
27 static GMutex tunnels_lock;
28 static GHashTable *tunnels;
29
30 #define DEFAULT_SESSION_POOL            NULL
31 #define DEFAULT_MEDIA_MAPPING           NULL
32 #define DEFAULT_USE_CLIENT_SETTINGS     FALSE
33
34 enum
35 {
36   PROP_0,
37   PROP_SESSION_POOL,
38   PROP_MEDIA_MAPPING,
39   PROP_USE_CLIENT_SETTINGS,
40   PROP_LAST
41 };
42
43 enum
44 {
45   SIGNAL_CLOSED,
46   SIGNAL_NEW_SESSION,
47   SIGNAL_OPTIONS_REQUEST,
48   SIGNAL_DESCRIBE_REQUEST,
49   SIGNAL_SETUP_REQUEST,
50   SIGNAL_PLAY_REQUEST,
51   SIGNAL_PAUSE_REQUEST,
52   SIGNAL_TEARDOWN_REQUEST,
53   SIGNAL_SET_PARAMETER_REQUEST,
54   SIGNAL_GET_PARAMETER_REQUEST,
55   SIGNAL_LAST
56 };
57
58 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
59 #define GST_CAT_DEFAULT rtsp_client_debug
60
61 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
62
63 static void gst_rtsp_client_get_property (GObject * object, guint propid,
64     GValue * value, GParamSpec * pspec);
65 static void gst_rtsp_client_set_property (GObject * object, guint propid,
66     const GValue * value, GParamSpec * pspec);
67 static void gst_rtsp_client_finalize (GObject * obj);
68
69 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
70 static void client_session_finalized (GstRTSPClient * client,
71     GstRTSPSession * session);
72 static void unlink_session_transports (GstRTSPClient * client,
73     GstRTSPSession * session, GstRTSPSessionMedia * media);
74
75 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
76
77 static void
78 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
79 {
80   GObjectClass *gobject_class;
81
82   gobject_class = G_OBJECT_CLASS (klass);
83
84   gobject_class->get_property = gst_rtsp_client_get_property;
85   gobject_class->set_property = gst_rtsp_client_set_property;
86   gobject_class->finalize = gst_rtsp_client_finalize;
87
88   klass->create_sdp = create_sdp;
89
90   g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
91       g_param_spec_object ("session-pool", "Session Pool",
92           "The session pool to use for client session",
93           GST_TYPE_RTSP_SESSION_POOL,
94           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
95
96   g_object_class_install_property (gobject_class, PROP_MEDIA_MAPPING,
97       g_param_spec_object ("media-mapping", "Media Mapping",
98           "The media mapping to use for client session",
99           GST_TYPE_RTSP_MEDIA_MAPPING,
100           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
101
102   g_object_class_install_property (gobject_class, PROP_USE_CLIENT_SETTINGS,
103       g_param_spec_boolean ("use-client-settings", "Use Client Settings",
104           "Use client settings for ttl and destination in multicast",
105           DEFAULT_USE_CLIENT_SETTINGS,
106           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
107
108   gst_rtsp_client_signals[SIGNAL_CLOSED] =
109       g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
110       G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
111       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
112
113   gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
114       g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
115       G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
116       g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
117
118   gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
119       g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
120       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
121       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
122       G_TYPE_POINTER);
123
124   gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
125       g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
126       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
127       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
128       G_TYPE_POINTER);
129
130   gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
131       g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
132       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
133       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
134       G_TYPE_POINTER);
135
136   gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
137       g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
138       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
139       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
140       G_TYPE_POINTER);
141
142   gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
143       g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
144       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
145       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
146       G_TYPE_POINTER);
147
148   gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
149       g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
150       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
151       NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
152       G_TYPE_POINTER);
153
154   gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
155       g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
156       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
157           set_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
158       G_TYPE_NONE, 1, G_TYPE_POINTER);
159
160   gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
161       g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
162       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
163           get_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
164       G_TYPE_NONE, 1, G_TYPE_POINTER);
165
166   tunnels =
167       g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
168   g_mutex_init (&tunnels_lock);
169
170   GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
171 }
172
173 static void
174 gst_rtsp_client_init (GstRTSPClient * client)
175 {
176   client->use_client_settings = DEFAULT_USE_CLIENT_SETTINGS;
177 }
178
179 static void
180 client_unlink_session (GstRTSPClient * client, GstRTSPSession * session)
181 {
182   /* unlink all media managed in this session */
183   while (g_list_length (session->medias) > 0) {
184     GstRTSPSessionMedia *media = g_list_first (session->medias)->data;
185
186     gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
187     unlink_session_transports (client, session, media);
188     /* unmanage the media in the session. this will modify session->medias */
189     gst_rtsp_session_release_media (session, media);
190   }
191 }
192
193 static void
194 client_cleanup_sessions (GstRTSPClient * client)
195 {
196   GList *sessions;
197
198   /* remove weak-ref from sessions */
199   for (sessions = client->sessions; sessions; sessions = g_list_next (sessions)) {
200     GstRTSPSession *session = (GstRTSPSession *) sessions->data;
201     g_object_weak_unref (G_OBJECT (session),
202         (GWeakNotify) client_session_finalized, client);
203     client_unlink_session (client, session);
204   }
205   g_list_free (client->sessions);
206   client->sessions = NULL;
207 }
208
209 /* A client is finalized when the connection is broken */
210 static void
211 gst_rtsp_client_finalize (GObject * obj)
212 {
213   GstRTSPClient *client = GST_RTSP_CLIENT (obj);
214
215   GST_INFO ("finalize client %p", client);
216
217   if (client->watchid)
218     g_source_destroy ((GSource *) client->watch);
219
220   client_cleanup_sessions (client);
221
222   gst_rtsp_connection_free (client->connection);
223   if (client->session_pool)
224     g_object_unref (client->session_pool);
225   if (client->media_mapping)
226     g_object_unref (client->media_mapping);
227   if (client->auth)
228     g_object_unref (client->auth);
229
230   if (client->uri)
231     gst_rtsp_url_free (client->uri);
232   if (client->media)
233     g_object_unref (client->media);
234
235   g_free (client->server_ip);
236
237   G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
238 }
239
240 static void
241 gst_rtsp_client_get_property (GObject * object, guint propid,
242     GValue * value, GParamSpec * pspec)
243 {
244   GstRTSPClient *client = GST_RTSP_CLIENT (object);
245
246   switch (propid) {
247     case PROP_SESSION_POOL:
248       g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
249       break;
250     case PROP_MEDIA_MAPPING:
251       g_value_take_object (value, gst_rtsp_client_get_media_mapping (client));
252       break;
253     case PROP_USE_CLIENT_SETTINGS:
254       g_value_set_boolean (value,
255           gst_rtsp_client_get_use_client_settings (client));
256       break;
257     default:
258       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
259   }
260 }
261
262 static void
263 gst_rtsp_client_set_property (GObject * object, guint propid,
264     const GValue * value, GParamSpec * pspec)
265 {
266   GstRTSPClient *client = GST_RTSP_CLIENT (object);
267
268   switch (propid) {
269     case PROP_SESSION_POOL:
270       gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
271       break;
272     case PROP_MEDIA_MAPPING:
273       gst_rtsp_client_set_media_mapping (client, g_value_get_object (value));
274       break;
275     case PROP_USE_CLIENT_SETTINGS:
276       gst_rtsp_client_set_use_client_settings (client,
277           g_value_get_boolean (value));
278       break;
279     default:
280       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
281   }
282 }
283
284 /**
285  * gst_rtsp_client_new:
286  *
287  * Create a new #GstRTSPClient instance.
288  *
289  * Returns: a new #GstRTSPClient
290  */
291 GstRTSPClient *
292 gst_rtsp_client_new (void)
293 {
294   GstRTSPClient *result;
295
296   result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
297
298   return result;
299 }
300
301 static void
302 send_response (GstRTSPClient * client, GstRTSPSession * session,
303     GstRTSPMessage * response)
304 {
305   gst_rtsp_message_add_header (response, GST_RTSP_HDR_SERVER,
306       "GStreamer RTSP server");
307
308   /* remove any previous header */
309   gst_rtsp_message_remove_header (response, GST_RTSP_HDR_SESSION, -1);
310
311   /* add the new session header for new session ids */
312   if (session) {
313     gchar *str;
314
315     if (session->timeout != 60)
316       str =
317           g_strdup_printf ("%s; timeout=%d", session->sessionid,
318           session->timeout);
319     else
320       str = g_strdup (session->sessionid);
321
322     gst_rtsp_message_take_header (response, GST_RTSP_HDR_SESSION, str);
323   }
324
325   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
326     gst_rtsp_message_dump (response);
327   }
328
329   gst_rtsp_watch_send_message (client->watch, response, NULL);
330   gst_rtsp_message_unset (response);
331 }
332
333 static void
334 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
335     GstRTSPClientState * state)
336 {
337   gst_rtsp_message_init_response (state->response, code,
338       gst_rtsp_status_as_text (code), state->request);
339
340   send_response (client, NULL, state->response);
341 }
342
343 static void
344 handle_unauthorized_request (GstRTSPClient * client, GstRTSPAuth * auth,
345     GstRTSPClientState * state)
346 {
347   gst_rtsp_message_init_response (state->response, GST_RTSP_STS_UNAUTHORIZED,
348       gst_rtsp_status_as_text (GST_RTSP_STS_UNAUTHORIZED), state->request);
349
350   if (auth) {
351     /* and let the authentication manager setup the auth tokens */
352     gst_rtsp_auth_setup_auth (auth, client, 0, state);
353   }
354
355   send_response (client, state->session, state->response);
356 }
357
358
359 static gboolean
360 compare_uri (const GstRTSPUrl * uri1, const GstRTSPUrl * uri2)
361 {
362   if (uri1 == NULL || uri2 == NULL)
363     return FALSE;
364
365   if (strcmp (uri1->abspath, uri2->abspath))
366     return FALSE;
367
368   return TRUE;
369 }
370
371 /* this function is called to initially find the media for the DESCRIBE request
372  * but is cached for when the same client (without breaking the connection) is
373  * doing a setup for the exact same url. */
374 static GstRTSPMedia *
375 find_media (GstRTSPClient * client, GstRTSPClientState * state)
376 {
377   GstRTSPMediaFactory *factory;
378   GstRTSPMedia *media;
379   GstRTSPAuth *auth;
380
381   if (!compare_uri (client->uri, state->uri)) {
382     /* remove any previously cached values before we try to construct a new
383      * media for uri */
384     if (client->uri)
385       gst_rtsp_url_free (client->uri);
386     client->uri = NULL;
387     if (client->media)
388       g_object_unref (client->media);
389     client->media = NULL;
390
391     if (!client->media_mapping)
392       goto no_mapping;
393
394     /* find the factory for the uri first */
395     if (!(factory =
396             gst_rtsp_media_mapping_find_factory (client->media_mapping,
397                 state->uri)))
398       goto no_factory;
399
400     state->factory = factory;
401
402     /* check if we have access to the factory */
403     if ((auth = gst_rtsp_media_factory_get_auth (factory))) {
404       if (!gst_rtsp_auth_check (auth, client, 0, state))
405         goto not_allowed;
406
407       g_object_unref (auth);
408     }
409
410     /* prepare the media and add it to the pipeline */
411     if (!(media = gst_rtsp_media_factory_construct (factory, state->uri)))
412       goto no_media;
413
414     g_object_unref (factory);
415     factory = NULL;
416     state->factory = NULL;
417
418     /* set ipv6 on the media before preparing */
419     media->is_ipv6 = client->is_ipv6;
420     state->media = media;
421
422     /* prepare the media */
423     if (!(gst_rtsp_media_prepare (media)))
424       goto no_prepare;
425
426     /* now keep track of the uri and the media */
427     client->uri = gst_rtsp_url_copy (state->uri);
428     client->media = media;
429   } else {
430     /* we have seen this uri before, used cached media */
431     media = client->media;
432     state->media = media;
433     GST_INFO ("reusing cached media %p", media);
434   }
435
436   if (media)
437     g_object_ref (media);
438
439   return media;
440
441   /* ERRORS */
442 no_mapping:
443   {
444     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
445     return NULL;
446   }
447 no_factory:
448   {
449     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
450     return NULL;
451   }
452 not_allowed:
453   {
454     handle_unauthorized_request (client, auth, state);
455     g_object_unref (factory);
456     g_object_unref (auth);
457     return NULL;
458   }
459 no_media:
460   {
461     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
462     g_object_unref (factory);
463     return NULL;
464   }
465 no_prepare:
466   {
467     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
468     g_object_unref (media);
469     return NULL;
470   }
471 }
472
473 static gboolean
474 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
475 {
476   GstRTSPMessage message = { 0 };
477   GstMapInfo map_info;
478   guint8 *data;
479   guint usize;
480
481   gst_rtsp_message_init_data (&message, channel);
482
483   /* FIXME, need some sort of iovec RTSPMessage here */
484   if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
485     return FALSE;
486
487   gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
488
489   /* FIXME, client->watch could have been finalized here, we need to keep an
490    * extra refcount to the watch.  */
491   gst_rtsp_watch_send_message (client->watch, &message, NULL);
492
493   gst_rtsp_message_steal_body (&message, &data, &usize);
494   gst_buffer_unmap (buffer, &map_info);
495
496   gst_rtsp_message_unset (&message);
497
498   return TRUE;
499 }
500
501 static void
502 link_transport (GstRTSPClient * client, GstRTSPSession * session,
503     GstRTSPStreamTransport * trans)
504 {
505   GST_DEBUG ("client %p: linking transport %p", client, trans);
506   gst_rtsp_stream_transport_set_callbacks (trans,
507       (GstRTSPSendFunc) do_send_data,
508       (GstRTSPSendFunc) do_send_data, client, NULL);
509   client->transports = g_list_prepend (client->transports, trans);
510   /* make sure our session can't expire */
511   gst_rtsp_session_prevent_expire (session);
512 }
513
514 static void
515 unlink_transport (GstRTSPClient * client, GstRTSPSession * session,
516     GstRTSPStreamTransport * trans)
517 {
518   GST_DEBUG ("client %p: unlinking transport %p", client, trans);
519   gst_rtsp_stream_transport_set_callbacks (trans, NULL, NULL, NULL, NULL);
520   client->transports = g_list_remove (client->transports, trans);
521   /* our session can now expire */
522   gst_rtsp_session_allow_expire (session);
523 }
524
525 static void
526 unlink_session_transports (GstRTSPClient * client, GstRTSPSession * session,
527     GstRTSPSessionMedia * media)
528 {
529   guint n_streams, i;
530
531   n_streams = gst_rtsp_media_n_streams (media->media);
532   for (i = 0; i < n_streams; i++) {
533     GstRTSPStreamTransport *trans;
534     GstRTSPTransport *tr;
535
536     /* get the stream as configured in the session */
537     trans = gst_rtsp_session_media_get_transport (media, i);
538     /* get the transport, if there is no transport configured, skip this stream */
539     if (!(tr = trans->transport))
540       continue;
541
542     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
543       /* for TCP, unlink the stream from the TCP connection of the client */
544       unlink_transport (client, session, trans);
545     }
546   }
547 }
548
549 static void
550 close_connection (GstRTSPClient * client)
551 {
552   const gchar *tunnelid;
553
554   GST_DEBUG ("client %p: closing connection", client);
555
556   if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
557     g_mutex_lock (&tunnels_lock);
558     /* remove from tunnelids */
559     g_hash_table_remove (tunnels, tunnelid);
560     g_mutex_unlock (&tunnels_lock);
561   }
562
563   gst_rtsp_connection_close (client->connection);
564 }
565
566 static gboolean
567 handle_teardown_request (GstRTSPClient * client, GstRTSPClientState * state)
568 {
569   GstRTSPSession *session;
570   GstRTSPSessionMedia *media;
571   GstRTSPStatusCode code;
572
573   if (!state->session)
574     goto no_session;
575
576   session = state->session;
577
578   /* get a handle to the configuration of the media in the session */
579   media = gst_rtsp_session_get_media (session, state->uri);
580   if (!media)
581     goto not_found;
582
583   state->sessmedia = media;
584
585   /* unlink the all TCP callbacks */
586   unlink_session_transports (client, session, media);
587
588   /* remove the session from the watched sessions */
589   g_object_weak_unref (G_OBJECT (session),
590       (GWeakNotify) client_session_finalized, client);
591   client->sessions = g_list_remove (client->sessions, session);
592
593   gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
594
595   /* unmanage the media in the session, returns false if all media session
596    * are torn down. */
597   if (!gst_rtsp_session_release_media (session, media)) {
598     /* remove the session */
599     gst_rtsp_session_pool_remove (client->session_pool, session);
600   }
601   /* construct the response now */
602   code = GST_RTSP_STS_OK;
603   gst_rtsp_message_init_response (state->response, code,
604       gst_rtsp_status_as_text (code), state->request);
605
606   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONNECTION,
607       "close");
608
609   send_response (client, session, state->response);
610
611   /* we emit the signal before closing the connection */
612   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
613       0, state);
614
615   close_connection (client);
616
617   return TRUE;
618
619   /* ERRORS */
620 no_session:
621   {
622     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
623     return FALSE;
624   }
625 not_found:
626   {
627     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
628     return FALSE;
629   }
630 }
631
632 static gboolean
633 handle_get_param_request (GstRTSPClient * client, GstRTSPClientState * state)
634 {
635   GstRTSPResult res;
636   guint8 *data;
637   guint size;
638
639   res = gst_rtsp_message_get_body (state->request, &data, &size);
640   if (res != GST_RTSP_OK)
641     goto bad_request;
642
643   if (size == 0) {
644     /* no body, keep-alive request */
645     send_generic_response (client, GST_RTSP_STS_OK, state);
646   } else {
647     /* there is a body, handle the params */
648     res = gst_rtsp_params_get (client, state);
649     if (res != GST_RTSP_OK)
650       goto bad_request;
651
652     send_response (client, state->session, state->response);
653   }
654
655   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
656       0, state);
657
658   return TRUE;
659
660   /* ERRORS */
661 bad_request:
662   {
663     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
664     return FALSE;
665   }
666 }
667
668 static gboolean
669 handle_set_param_request (GstRTSPClient * client, GstRTSPClientState * state)
670 {
671   GstRTSPResult res;
672   guint8 *data;
673   guint size;
674
675   res = gst_rtsp_message_get_body (state->request, &data, &size);
676   if (res != GST_RTSP_OK)
677     goto bad_request;
678
679   if (size == 0) {
680     /* no body, keep-alive request */
681     send_generic_response (client, GST_RTSP_STS_OK, state);
682   } else {
683     /* there is a body, handle the params */
684     res = gst_rtsp_params_set (client, state);
685     if (res != GST_RTSP_OK)
686       goto bad_request;
687
688     send_response (client, state->session, state->response);
689   }
690
691   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
692       0, state);
693
694   return TRUE;
695
696   /* ERRORS */
697 bad_request:
698   {
699     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
700     return FALSE;
701   }
702 }
703
704 static gboolean
705 handle_pause_request (GstRTSPClient * client, GstRTSPClientState * state)
706 {
707   GstRTSPSession *session;
708   GstRTSPSessionMedia *media;
709   GstRTSPStatusCode code;
710
711   if (!(session = state->session))
712     goto no_session;
713
714   /* get a handle to the configuration of the media in the session */
715   media = gst_rtsp_session_get_media (session, state->uri);
716   if (!media)
717     goto not_found;
718
719   state->sessmedia = media;
720
721   /* the session state must be playing or recording */
722   if (media->state != GST_RTSP_STATE_PLAYING &&
723       media->state != GST_RTSP_STATE_RECORDING)
724     goto invalid_state;
725
726   /* unlink the all TCP callbacks */
727   unlink_session_transports (client, session, media);
728
729   /* then pause sending */
730   gst_rtsp_session_media_set_state (media, GST_STATE_PAUSED);
731
732   /* construct the response now */
733   code = GST_RTSP_STS_OK;
734   gst_rtsp_message_init_response (state->response, code,
735       gst_rtsp_status_as_text (code), state->request);
736
737   send_response (client, session, state->response);
738
739   /* the state is now READY */
740   media->state = GST_RTSP_STATE_READY;
741
742   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST],
743       0, state);
744
745   return TRUE;
746
747   /* ERRORS */
748 no_session:
749   {
750     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
751     return FALSE;
752   }
753 not_found:
754   {
755     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
756     return FALSE;
757   }
758 invalid_state:
759   {
760     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
761         state);
762     return FALSE;
763   }
764 }
765
766 static gboolean
767 handle_play_request (GstRTSPClient * client, GstRTSPClientState * state)
768 {
769   GstRTSPSession *session;
770   GstRTSPSessionMedia *media;
771   GstRTSPStatusCode code;
772   GString *rtpinfo;
773   guint n_streams, i, infocount;
774   gchar *str;
775   GstRTSPTimeRange *range;
776   GstRTSPResult res;
777
778   if (!(session = state->session))
779     goto no_session;
780
781   /* get a handle to the configuration of the media in the session */
782   media = gst_rtsp_session_get_media (session, state->uri);
783   if (!media)
784     goto not_found;
785
786   state->sessmedia = media;
787
788   /* the session state must be playing or ready */
789   if (media->state != GST_RTSP_STATE_PLAYING &&
790       media->state != GST_RTSP_STATE_READY)
791     goto invalid_state;
792
793   /* parse the range header if we have one */
794   res =
795       gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_RANGE, &str, 0);
796   if (res == GST_RTSP_OK) {
797     if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
798       /* we have a range, seek to the position */
799       gst_rtsp_media_seek (media->media, range);
800       gst_rtsp_range_free (range);
801     }
802   }
803
804   /* grab RTPInfo from the payloaders now */
805   rtpinfo = g_string_new ("");
806
807   n_streams = gst_rtsp_media_n_streams (media->media);
808   for (i = 0, infocount = 0; i < n_streams; i++) {
809     GstRTSPStreamTransport *trans;
810     GstRTSPTransport *tr;
811     gchar *uristr;
812     guint rtptime, seq;
813
814     /* get the stream as configured in the session */
815     trans = gst_rtsp_session_media_get_transport (media, i);
816     /* get the transport, if there is no transport configured, skip this stream */
817     if (!(tr = trans->transport)) {
818       GST_INFO ("stream %d is not configured", i);
819       continue;
820     }
821
822     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
823       /* for TCP, link the stream to the TCP connection of the client */
824       link_transport (client, session, trans);
825     }
826
827     if (gst_rtsp_stream_get_rtpinfo (trans->stream, &rtptime, &seq)) {
828       if (infocount > 0)
829         g_string_append (rtpinfo, ", ");
830
831       uristr = gst_rtsp_url_get_request_uri (state->uri);
832       g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u",
833           uristr, i, seq, rtptime);
834       g_free (uristr);
835
836       infocount++;
837     } else {
838       GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
839     }
840   }
841
842   /* construct the response now */
843   code = GST_RTSP_STS_OK;
844   gst_rtsp_message_init_response (state->response, code,
845       gst_rtsp_status_as_text (code), state->request);
846
847   /* add the RTP-Info header */
848   if (infocount > 0) {
849     str = g_string_free (rtpinfo, FALSE);
850     gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RTP_INFO, str);
851   } else {
852     g_string_free (rtpinfo, TRUE);
853   }
854
855   /* add the range */
856   str = gst_rtsp_media_get_range_string (media->media, TRUE);
857   gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RANGE, str);
858
859   send_response (client, session, state->response);
860
861   /* start playing after sending the request */
862   gst_rtsp_session_media_set_state (media, GST_STATE_PLAYING);
863
864   media->state = GST_RTSP_STATE_PLAYING;
865
866   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST],
867       0, state);
868
869   return TRUE;
870
871   /* ERRORS */
872 no_session:
873   {
874     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
875     return FALSE;
876   }
877 not_found:
878   {
879     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
880     return FALSE;
881   }
882 invalid_state:
883   {
884     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
885         state);
886     return FALSE;
887   }
888 }
889
890 static void
891 do_keepalive (GstRTSPSession * session)
892 {
893   GST_INFO ("keep session %p alive", session);
894   gst_rtsp_session_touch (session);
895 }
896
897 static gboolean
898 handle_blocksize (GstRTSPMedia * media, GstRTSPMessage * request)
899 {
900   gchar *blocksize_str;
901   gboolean ret = TRUE;
902
903   if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
904           &blocksize_str, 0) == GST_RTSP_OK) {
905     guint64 blocksize;
906     gchar *end;
907
908     blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
909     if (end == blocksize_str) {
910       GST_ERROR ("failed to parse blocksize");
911       ret = FALSE;
912     } else {
913       /* we don't want to change the mtu when this media
914        * can be shared because it impacts other clients */
915       if (gst_rtsp_media_is_shared (media))
916         return TRUE;
917
918       if (blocksize > G_MAXUINT)
919         blocksize = G_MAXUINT;
920       gst_rtsp_media_set_mtu (media, blocksize);
921     }
922   }
923
924   return ret;
925 }
926
927 static gboolean
928 handle_setup_request (GstRTSPClient * client, GstRTSPClientState * state)
929 {
930   GstRTSPResult res;
931   GstRTSPUrl *uri;
932   gchar *transport;
933   gchar **transports;
934   gboolean have_transport;
935   GstRTSPTransport *ct, *st;
936   gint i;
937   GstRTSPLowerTrans supported;
938   GstRTSPStatusCode code;
939   GstRTSPSession *session;
940   GstRTSPStreamTransport *trans;
941   gchar *trans_str, *pos;
942   guint streamid;
943   GstRTSPSessionMedia *media;
944
945   uri = state->uri;
946
947   /* the uri contains the stream number we added in the SDP config, which is
948    * always /stream=%d so we need to strip that off 
949    * parse the stream we need to configure, look for the stream in the abspath
950    * first and then in the query. */
951   if (uri->abspath == NULL || !(pos = strstr (uri->abspath, "/stream="))) {
952     if (uri->query == NULL || !(pos = strstr (uri->query, "/stream=")))
953       goto bad_request;
954   }
955
956   /* we can mofify the parse uri in place */
957   *pos = '\0';
958
959   pos += strlen ("/stream=");
960   if (sscanf (pos, "%u", &streamid) != 1)
961     goto bad_request;
962
963   /* parse the transport */
964   res =
965       gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_TRANSPORT,
966       &transport, 0);
967   if (res != GST_RTSP_OK)
968     goto no_transport;
969
970   transports = g_strsplit (transport, ",", 0);
971   gst_rtsp_transport_new (&ct);
972
973   /* init transports */
974   have_transport = FALSE;
975   gst_rtsp_transport_init (ct);
976
977   /* our supported transports */
978   supported = GST_RTSP_LOWER_TRANS_UDP |
979       GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP;
980
981   /* loop through the transports, try to parse */
982   for (i = 0; transports[i]; i++) {
983     res = gst_rtsp_transport_parse (transports[i], ct);
984     if (res != GST_RTSP_OK) {
985       /* no valid transport, search some more */
986       GST_WARNING ("could not parse transport %s", transports[i]);
987       goto next;
988     }
989
990     /* we have a transport, see if it's RTP/AVP */
991     if (ct->trans != GST_RTSP_TRANS_RTP || ct->profile != GST_RTSP_PROFILE_AVP) {
992       GST_WARNING ("invalid transport %s", transports[i]);
993       goto next;
994     }
995
996     if (!(ct->lower_transport & supported)) {
997       GST_WARNING ("unsupported transport %s", transports[i]);
998       goto next;
999     }
1000
1001     /* we have a valid transport */
1002     GST_INFO ("found valid transport %s", transports[i]);
1003     have_transport = TRUE;
1004     break;
1005
1006   next:
1007     gst_rtsp_transport_init (ct);
1008   }
1009   g_strfreev (transports);
1010
1011   /* we have not found anything usable, error out */
1012   if (!have_transport)
1013     goto unsupported_transports;
1014
1015   if (client->session_pool == NULL)
1016     goto no_pool;
1017
1018   session = state->session;
1019
1020   if (session) {
1021     g_object_ref (session);
1022     /* get a handle to the configuration of the media in the session, this can
1023      * return NULL if this is a new url to manage in this session. */
1024     media = gst_rtsp_session_get_media (session, uri);
1025   } else {
1026     /* create a session if this fails we probably reached our session limit or
1027      * something. */
1028     if (!(session = gst_rtsp_session_pool_create (client->session_pool)))
1029       goto service_unavailable;
1030
1031     state->session = session;
1032
1033     /* we need a new media configuration in this session */
1034     media = NULL;
1035   }
1036
1037   /* we have no media, find one and manage it */
1038   if (media == NULL) {
1039     GstRTSPMedia *m;
1040
1041     /* get a handle to the configuration of the media in the session */
1042     if ((m = find_media (client, state))) {
1043       /* manage the media in our session now */
1044       media = gst_rtsp_session_manage_media (session, uri, m);
1045     }
1046   }
1047
1048   /* if we stil have no media, error */
1049   if (media == NULL)
1050     goto not_found;
1051
1052   state->sessmedia = media;
1053
1054   if (!handle_blocksize (media->media, state->request))
1055     goto invalid_blocksize;
1056
1057   /* we have a valid transport now, set the destination of the client. */
1058   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1059     if (ct->destination == NULL || !client->use_client_settings) {
1060       g_free (ct->destination);
1061       ct->destination = gst_rtsp_media_get_multicast_group (media->media);
1062     }
1063     /* reset ttl if client settings are not allowed */
1064     if (!client->use_client_settings) {
1065       ct->ttl = 0;
1066     }
1067   } else {
1068     GstRTSPUrl *url;
1069
1070     url = gst_rtsp_connection_get_url (client->connection);
1071     g_free (ct->destination);
1072     ct->destination = g_strdup (url->host);
1073
1074     if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1075       /* check if the client selected channels for TCP */
1076       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1077         gst_rtsp_session_media_alloc_channels (media, &ct->interleaved);
1078       }
1079     }
1080   }
1081
1082   /* get a handle to the transport of the media in this session */
1083   if (!(trans = gst_rtsp_session_media_get_transport (media, streamid)))
1084     goto no_stream_transport;
1085
1086   st = gst_rtsp_stream_transport_set_transport (trans, ct);
1087
1088   /* configure keepalive for this transport */
1089   gst_rtsp_stream_transport_set_keepalive (trans,
1090       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1091
1092   /* serialize the server transport */
1093   trans_str = gst_rtsp_transport_as_text (st);
1094   gst_rtsp_transport_free (st);
1095
1096   /* construct the response now */
1097   code = GST_RTSP_STS_OK;
1098   gst_rtsp_message_init_response (state->response, code,
1099       gst_rtsp_status_as_text (code), state->request);
1100
1101   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_TRANSPORT,
1102       trans_str);
1103   g_free (trans_str);
1104
1105   send_response (client, session, state->response);
1106
1107   /* update the state */
1108   switch (media->state) {
1109     case GST_RTSP_STATE_PLAYING:
1110     case GST_RTSP_STATE_RECORDING:
1111     case GST_RTSP_STATE_READY:
1112       /* no state change */
1113       break;
1114     default:
1115       media->state = GST_RTSP_STATE_READY;
1116       break;
1117   }
1118   g_object_unref (session);
1119
1120   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST],
1121       0, state);
1122
1123   return TRUE;
1124
1125   /* ERRORS */
1126 bad_request:
1127   {
1128     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1129     return FALSE;
1130   }
1131 not_found:
1132   {
1133     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1134     g_object_unref (session);
1135     gst_rtsp_transport_free (ct);
1136     return FALSE;
1137   }
1138 invalid_blocksize:
1139   {
1140     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1141     g_object_unref (session);
1142     gst_rtsp_transport_free (ct);
1143     return FALSE;
1144   }
1145 no_stream_transport:
1146   {
1147     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1148     g_object_unref (session);
1149     gst_rtsp_transport_free (ct);
1150     return FALSE;
1151   }
1152 no_transport:
1153   {
1154     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1155     return FALSE;
1156   }
1157 unsupported_transports:
1158   {
1159     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1160     gst_rtsp_transport_free (ct);
1161     return FALSE;
1162   }
1163 no_pool:
1164   {
1165     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1166     gst_rtsp_transport_free (ct);
1167     return FALSE;
1168   }
1169 service_unavailable:
1170   {
1171     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1172     gst_rtsp_transport_free (ct);
1173     return FALSE;
1174   }
1175 }
1176
1177 static GstSDPMessage *
1178 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1179 {
1180   GstSDPMessage *sdp;
1181   GstSDPInfo info;
1182   const gchar *proto;
1183   GstRTSPLowerTrans protocols;
1184
1185   gst_sdp_message_new (&sdp);
1186
1187   /* some standard things first */
1188   gst_sdp_message_set_version (sdp, "0");
1189
1190   if (client->is_ipv6)
1191     proto = "IP6";
1192   else
1193     proto = "IP4";
1194
1195   gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1196       client->server_ip);
1197
1198   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1199   gst_sdp_message_set_information (sdp, "rtsp-server");
1200   gst_sdp_message_add_time (sdp, "0", "0", NULL);
1201   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1202   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1203   gst_sdp_message_add_attribute (sdp, "control", "*");
1204
1205   info.server_proto = proto;
1206   protocols = gst_rtsp_media_get_protocols (media);
1207   if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST)
1208     info.server_ip = gst_rtsp_media_get_multicast_group (media);
1209   else
1210     info.server_ip = g_strdup (client->server_ip);
1211
1212   /* create an SDP for the media object */
1213   if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1214     goto no_sdp;
1215
1216   g_free (info.server_ip);
1217
1218   return sdp;
1219
1220   /* ERRORS */
1221 no_sdp:
1222   {
1223     g_free (info.server_ip);
1224     gst_sdp_message_free (sdp);
1225     return NULL;
1226   }
1227 }
1228
1229 /* for the describe we must generate an SDP */
1230 static gboolean
1231 handle_describe_request (GstRTSPClient * client, GstRTSPClientState * state)
1232 {
1233   GstRTSPResult res;
1234   GstSDPMessage *sdp;
1235   guint i, str_len;
1236   gchar *str, *content_base;
1237   GstRTSPMedia *media;
1238   GstRTSPClientClass *klass;
1239
1240   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1241
1242   /* check what kind of format is accepted, we don't really do anything with it
1243    * and always return SDP for now. */
1244   for (i = 0; i++;) {
1245     gchar *accept;
1246
1247     res =
1248         gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_ACCEPT,
1249         &accept, i);
1250     if (res == GST_RTSP_ENOTIMPL)
1251       break;
1252
1253     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1254       break;
1255   }
1256
1257   /* find the media object for the uri */
1258   if (!(media = find_media (client, state)))
1259     goto no_media;
1260
1261   /* create an SDP for the media object on this client */
1262   if (!(sdp = klass->create_sdp (client, media)))
1263     goto no_sdp;
1264
1265   g_object_unref (media);
1266
1267   gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1268       gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1269
1270   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_TYPE,
1271       "application/sdp");
1272
1273   /* content base for some clients that might screw up creating the setup uri */
1274   str = gst_rtsp_url_get_request_uri (state->uri);
1275   str_len = strlen (str);
1276
1277   /* check for trailing '/' and append one */
1278   if (str[str_len - 1] != '/') {
1279     content_base = g_malloc (str_len + 2);
1280     memcpy (content_base, str, str_len);
1281     content_base[str_len] = '/';
1282     content_base[str_len + 1] = '\0';
1283     g_free (str);
1284   } else {
1285     content_base = str;
1286   }
1287
1288   GST_INFO ("adding content-base: %s", content_base);
1289
1290   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_BASE,
1291       content_base);
1292   g_free (content_base);
1293
1294   /* add SDP to the response body */
1295   str = gst_sdp_message_as_text (sdp);
1296   gst_rtsp_message_take_body (state->response, (guint8 *) str, strlen (str));
1297   gst_sdp_message_free (sdp);
1298
1299   send_response (client, state->session, state->response);
1300
1301   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1302       0, state);
1303
1304   return TRUE;
1305
1306   /* ERRORS */
1307 no_media:
1308   {
1309     /* error reply is already sent */
1310     return FALSE;
1311   }
1312 no_sdp:
1313   {
1314     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1315     g_object_unref (media);
1316     return FALSE;
1317   }
1318 }
1319
1320 static gboolean
1321 handle_options_request (GstRTSPClient * client, GstRTSPClientState * state)
1322 {
1323   GstRTSPMethod options;
1324   gchar *str;
1325
1326   options = GST_RTSP_DESCRIBE |
1327       GST_RTSP_OPTIONS |
1328       GST_RTSP_PAUSE |
1329       GST_RTSP_PLAY |
1330       GST_RTSP_SETUP |
1331       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1332
1333   str = gst_rtsp_options_as_text (options);
1334
1335   gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1336       gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1337
1338   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_PUBLIC, str);
1339   g_free (str);
1340
1341   send_response (client, state->session, state->response);
1342
1343   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1344       0, state);
1345
1346   return TRUE;
1347 }
1348
1349 /* remove duplicate and trailing '/' */
1350 static void
1351 sanitize_uri (GstRTSPUrl * uri)
1352 {
1353   gint i, len;
1354   gchar *s, *d;
1355   gboolean have_slash, prev_slash;
1356
1357   s = d = uri->abspath;
1358   len = strlen (uri->abspath);
1359
1360   prev_slash = FALSE;
1361
1362   for (i = 0; i < len; i++) {
1363     have_slash = s[i] == '/';
1364     *d = s[i];
1365     if (!have_slash || !prev_slash)
1366       d++;
1367     prev_slash = have_slash;
1368   }
1369   len = d - uri->abspath;
1370   /* don't remove the first slash if that's the only thing left */
1371   if (len > 1 && *(d - 1) == '/')
1372     d--;
1373   *d = '\0';
1374 }
1375
1376 static void
1377 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1378 {
1379   GST_INFO ("client %p: session %p finished", client, session);
1380
1381   /* unlink all media managed in this session */
1382   client_unlink_session (client, session);
1383
1384   /* remove the session */
1385   if (!(client->sessions = g_list_remove (client->sessions, session))) {
1386     GST_INFO ("client %p: all sessions finalized, close the connection",
1387         client);
1388     close_connection (client);
1389   }
1390 }
1391
1392 static void
1393 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
1394 {
1395   GList *walk;
1396
1397   for (walk = client->sessions; walk; walk = g_list_next (walk)) {
1398     GstRTSPSession *msession = (GstRTSPSession *) walk->data;
1399
1400     /* we already know about this session */
1401     if (msession == session)
1402       return;
1403   }
1404
1405   GST_INFO ("watching session %p", session);
1406
1407   g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
1408       client);
1409   client->sessions = g_list_prepend (client->sessions, session);
1410
1411   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1412       session);
1413 }
1414
1415 static void
1416 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1417 {
1418   GstRTSPMethod method;
1419   const gchar *uristr;
1420   GstRTSPUrl *uri;
1421   GstRTSPVersion version;
1422   GstRTSPResult res;
1423   GstRTSPSession *session;
1424   GstRTSPClientState state = { NULL };
1425   GstRTSPMessage response = { 0 };
1426   gchar *sessid;
1427
1428   state.request = request;
1429   state.response = &response;
1430
1431   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1432     gst_rtsp_message_dump (request);
1433   }
1434
1435   GST_INFO ("client %p: received a request", client);
1436
1437   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1438
1439   if (version != GST_RTSP_VERSION_1_0) {
1440     /* we can only handle 1.0 requests */
1441     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
1442         &state);
1443     return;
1444   }
1445   state.method = method;
1446
1447   /* we always try to parse the url first */
1448   if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
1449     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1450     return;
1451   }
1452
1453   /* sanitize the uri */
1454   sanitize_uri (uri);
1455   state.uri = uri;
1456
1457   /* get the session if there is any */
1458   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1459   if (res == GST_RTSP_OK) {
1460     if (client->session_pool == NULL)
1461       goto no_pool;
1462
1463     /* we had a session in the request, find it again */
1464     if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
1465       goto session_not_found;
1466
1467     /* we add the session to the client list of watched sessions. When a session
1468      * disappears because it times out, we will be notified. If all sessions are
1469      * gone, we will close the connection */
1470     client_watch_session (client, session);
1471   } else
1472     session = NULL;
1473
1474   state.session = session;
1475
1476   if (client->auth) {
1477     if (!gst_rtsp_auth_check (client->auth, client, 0, &state))
1478       goto not_authorized;
1479   }
1480
1481   /* now see what is asked and dispatch to a dedicated handler */
1482   switch (method) {
1483     case GST_RTSP_OPTIONS:
1484       handle_options_request (client, &state);
1485       break;
1486     case GST_RTSP_DESCRIBE:
1487       handle_describe_request (client, &state);
1488       break;
1489     case GST_RTSP_SETUP:
1490       handle_setup_request (client, &state);
1491       break;
1492     case GST_RTSP_PLAY:
1493       handle_play_request (client, &state);
1494       break;
1495     case GST_RTSP_PAUSE:
1496       handle_pause_request (client, &state);
1497       break;
1498     case GST_RTSP_TEARDOWN:
1499       handle_teardown_request (client, &state);
1500       break;
1501     case GST_RTSP_SET_PARAMETER:
1502       handle_set_param_request (client, &state);
1503       break;
1504     case GST_RTSP_GET_PARAMETER:
1505       handle_get_param_request (client, &state);
1506       break;
1507     case GST_RTSP_ANNOUNCE:
1508     case GST_RTSP_RECORD:
1509     case GST_RTSP_REDIRECT:
1510       send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, &state);
1511       break;
1512     case GST_RTSP_INVALID:
1513     default:
1514       send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1515       break;
1516   }
1517   if (session)
1518     g_object_unref (session);
1519
1520   gst_rtsp_url_free (uri);
1521   return;
1522
1523   /* ERRORS */
1524 no_pool:
1525   {
1526     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, &state);
1527     return;
1528   }
1529 session_not_found:
1530   {
1531     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, &state);
1532     return;
1533   }
1534 not_authorized:
1535   {
1536     handle_unauthorized_request (client, client->auth, &state);
1537     return;
1538   }
1539 }
1540
1541 static void
1542 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
1543 {
1544   GstRTSPResult res;
1545   guint8 channel;
1546   GList *walk;
1547   guint8 *data;
1548   guint size;
1549   GstBuffer *buffer;
1550   gboolean handled;
1551
1552   /* find the stream for this message */
1553   res = gst_rtsp_message_parse_data (message, &channel);
1554   if (res != GST_RTSP_OK)
1555     return;
1556
1557   gst_rtsp_message_steal_body (message, &data, &size);
1558
1559   buffer = gst_buffer_new_wrapped (data, size);
1560
1561   handled = FALSE;
1562   for (walk = client->transports; walk; walk = g_list_next (walk)) {
1563     GstRTSPStreamTransport *trans = (GstRTSPStreamTransport *) walk->data;
1564     GstRTSPStream *stream;
1565     GstRTSPTransport *tr;
1566
1567     /* get the transport, if there is no transport configured, skip this stream */
1568     if (!(tr = trans->transport))
1569       continue;
1570
1571     /* we also need a media stream */
1572     if (!(stream = trans->stream))
1573       continue;
1574
1575     /* check for TCP transport */
1576     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1577       /* dispatch to the stream based on the channel number */
1578       if (tr->interleaved.min == channel) {
1579         gst_rtsp_stream_recv_rtp (stream, buffer);
1580         handled = TRUE;
1581         break;
1582       } else if (tr->interleaved.max == channel) {
1583         gst_rtsp_stream_recv_rtcp (stream, buffer);
1584         handled = TRUE;
1585         break;
1586       }
1587     }
1588   }
1589   if (!handled)
1590     gst_buffer_unref (buffer);
1591 }
1592
1593 /**
1594  * gst_rtsp_client_set_session_pool:
1595  * @client: a #GstRTSPClient
1596  * @pool: a #GstRTSPSessionPool
1597  *
1598  * Set @pool as the sessionpool for @client which it will use to find
1599  * or allocate sessions. the sessionpool is usually inherited from the server
1600  * that created the client but can be overridden later.
1601  */
1602 void
1603 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
1604     GstRTSPSessionPool * pool)
1605 {
1606   GstRTSPSessionPool *old;
1607
1608   old = client->session_pool;
1609   if (old != pool) {
1610     if (pool)
1611       g_object_ref (pool);
1612     client->session_pool = pool;
1613     if (old)
1614       g_object_unref (old);
1615   }
1616 }
1617
1618 /**
1619  * gst_rtsp_client_get_session_pool:
1620  * @client: a #GstRTSPClient
1621  *
1622  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
1623  *
1624  * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
1625  */
1626 GstRTSPSessionPool *
1627 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
1628 {
1629   GstRTSPSessionPool *result;
1630
1631   if ((result = client->session_pool))
1632     g_object_ref (result);
1633
1634   return result;
1635 }
1636
1637 /**
1638  * gst_rtsp_client_set_server:
1639  * @client: a #GstRTSPClient
1640  * @server: a #GstRTSPServer
1641  *
1642  * Set @server as the server that created @client.
1643  */
1644 void
1645 gst_rtsp_client_set_server (GstRTSPClient * client, GstRTSPServer * server)
1646 {
1647   GstRTSPServer *old;
1648
1649   old = client->server;
1650   if (old != server) {
1651     if (server)
1652       g_object_ref (server);
1653     client->server = server;
1654     if (old)
1655       g_object_unref (old);
1656   }
1657 }
1658
1659 /**
1660  * gst_rtsp_client_get_server:
1661  * @client: a #GstRTSPClient
1662  *
1663  * Get the #GstRTSPServer object that @client was created from.
1664  *
1665  * Returns: (transfer full): a #GstRTSPServer, unref after usage.
1666  */
1667 GstRTSPServer *
1668 gst_rtsp_client_get_server (GstRTSPClient * client)
1669 {
1670   GstRTSPServer *result;
1671
1672   if ((result = client->server))
1673     g_object_ref (result);
1674
1675   return result;
1676 }
1677
1678 /**
1679  * gst_rtsp_client_set_media_mapping:
1680  * @client: a #GstRTSPClient
1681  * @mapping: a #GstRTSPMediaMapping
1682  *
1683  * Set @mapping as the media mapping for @client which it will use to map urls
1684  * to media streams. These mapping is usually inherited from the server that
1685  * created the client but can be overriden later.
1686  */
1687 void
1688 gst_rtsp_client_set_media_mapping (GstRTSPClient * client,
1689     GstRTSPMediaMapping * mapping)
1690 {
1691   GstRTSPMediaMapping *old;
1692
1693   old = client->media_mapping;
1694
1695   if (old != mapping) {
1696     if (mapping)
1697       g_object_ref (mapping);
1698     client->media_mapping = mapping;
1699     if (old)
1700       g_object_unref (old);
1701   }
1702 }
1703
1704 /**
1705  * gst_rtsp_client_get_media_mapping:
1706  * @client: a #GstRTSPClient
1707  *
1708  * Get the #GstRTSPMediaMapping object that @client uses to manage its sessions.
1709  *
1710  * Returns: (transfer full): a #GstRTSPMediaMapping, unref after usage.
1711  */
1712 GstRTSPMediaMapping *
1713 gst_rtsp_client_get_media_mapping (GstRTSPClient * client)
1714 {
1715   GstRTSPMediaMapping *result;
1716
1717   if ((result = client->media_mapping))
1718     g_object_ref (result);
1719
1720   return result;
1721 }
1722
1723 /**
1724  * gst_rtsp_client_set_use_client_settings:
1725  * @client: a #GstRTSPClient
1726  * @use_client_settings: whether to use client settings for multicast
1727  *
1728  * Use client transport settings (destination and ttl) for multicast.
1729  * When @use_client_settings is %FALSE, the server settings will be
1730  * used.
1731  */
1732 void
1733 gst_rtsp_client_set_use_client_settings (GstRTSPClient * client,
1734     gboolean use_client_settings)
1735 {
1736   client->use_client_settings = use_client_settings;
1737 }
1738
1739 /**
1740  * gst_rtsp_client_get_use_client_settings:
1741  * @client: a #GstRTSPClient
1742  *
1743  * Check if client transport settings (destination and ttl) for multicast
1744  * will be used.
1745  */
1746 gboolean
1747 gst_rtsp_client_get_use_client_settings (GstRTSPClient * client)
1748 {
1749   return client->use_client_settings;
1750 }
1751
1752 /**
1753  * gst_rtsp_client_set_auth:
1754  * @client: a #GstRTSPClient
1755  * @auth: a #GstRTSPAuth
1756  *
1757  * configure @auth to be used as the authentication manager of @client.
1758  */
1759 void
1760 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
1761 {
1762   GstRTSPAuth *old;
1763
1764   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1765
1766   old = client->auth;
1767
1768   if (old != auth) {
1769     if (auth)
1770       g_object_ref (auth);
1771     client->auth = auth;
1772     if (old)
1773       g_object_unref (old);
1774   }
1775 }
1776
1777
1778 /**
1779  * gst_rtsp_client_get_auth:
1780  * @client: a #GstRTSPClient
1781  *
1782  * Get the #GstRTSPAuth used as the authentication manager of @client.
1783  *
1784  * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
1785  * usage.
1786  */
1787 GstRTSPAuth *
1788 gst_rtsp_client_get_auth (GstRTSPClient * client)
1789 {
1790   GstRTSPAuth *result;
1791
1792   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
1793
1794   if ((result = client->auth))
1795     g_object_ref (result);
1796
1797   return result;
1798 }
1799
1800 static GstRTSPResult
1801 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
1802     gpointer user_data)
1803 {
1804   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1805
1806   switch (message->type) {
1807     case GST_RTSP_MESSAGE_REQUEST:
1808       handle_request (client, message);
1809       break;
1810     case GST_RTSP_MESSAGE_RESPONSE:
1811       break;
1812     case GST_RTSP_MESSAGE_DATA:
1813       handle_data (client, message);
1814       break;
1815     default:
1816       break;
1817   }
1818   return GST_RTSP_OK;
1819 }
1820
1821 static GstRTSPResult
1822 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
1823 {
1824   /* GstRTSPClient *client; */
1825
1826   /* client = GST_RTSP_CLIENT (user_data); */
1827
1828   /* GST_INFO ("client %p: sent a message with cseq %d", client, cseq); */
1829
1830   return GST_RTSP_OK;
1831 }
1832
1833 static GstRTSPResult
1834 closed (GstRTSPWatch * watch, gpointer user_data)
1835 {
1836   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1837   const gchar *tunnelid;
1838
1839   GST_INFO ("client %p: connection closed", client);
1840
1841   if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
1842     g_mutex_lock (&tunnels_lock);
1843     /* remove from tunnelids */
1844     g_hash_table_remove (tunnels, tunnelid);
1845     g_mutex_unlock (&tunnels_lock);
1846   }
1847
1848   return GST_RTSP_OK;
1849 }
1850
1851 static GstRTSPResult
1852 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
1853 {
1854   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1855   gchar *str;
1856
1857   str = gst_rtsp_strresult (result);
1858   GST_INFO ("client %p: received an error %s", client, str);
1859   g_free (str);
1860
1861   return GST_RTSP_OK;
1862 }
1863
1864 static GstRTSPResult
1865 error_full (GstRTSPWatch * watch, GstRTSPResult result,
1866     GstRTSPMessage * message, guint id, gpointer user_data)
1867 {
1868   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1869   gchar *str;
1870
1871   str = gst_rtsp_strresult (result);
1872   GST_INFO
1873       ("client %p: received an error %s when handling message %p with id %d",
1874       client, str, message, id);
1875   g_free (str);
1876
1877   return GST_RTSP_OK;
1878 }
1879
1880 static gboolean
1881 remember_tunnel (GstRTSPClient * client)
1882 {
1883   const gchar *tunnelid;
1884
1885   /* store client in the pending tunnels */
1886   tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
1887   if (tunnelid == NULL)
1888     goto no_tunnelid;
1889
1890   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
1891
1892   /* we can't have two clients connecting with the same tunnelid */
1893   g_mutex_lock (&tunnels_lock);
1894   if (g_hash_table_lookup (tunnels, tunnelid))
1895     goto tunnel_existed;
1896
1897   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
1898   g_mutex_unlock (&tunnels_lock);
1899
1900   return TRUE;
1901
1902   /* ERRORS */
1903 no_tunnelid:
1904   {
1905     GST_ERROR ("client %p: no tunnelid provided", client);
1906     return FALSE;
1907   }
1908 tunnel_existed:
1909   {
1910     g_mutex_unlock (&tunnels_lock);
1911     GST_ERROR ("client %p: tunnel session %s already existed", client,
1912         tunnelid);
1913     return FALSE;
1914   }
1915 }
1916
1917 static GstRTSPStatusCode
1918 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
1919 {
1920   GstRTSPClient *client;
1921
1922   client = GST_RTSP_CLIENT (user_data);
1923
1924   GST_INFO ("client %p: tunnel start (connection %p)", client,
1925       client->connection);
1926
1927   if (!remember_tunnel (client))
1928     goto tunnel_error;
1929
1930   return GST_RTSP_STS_OK;
1931
1932   /* ERRORS */
1933 tunnel_error:
1934   {
1935     GST_ERROR ("client %p: error starting tunnel", client);
1936     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
1937   }
1938 }
1939
1940 static GstRTSPResult
1941 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
1942 {
1943   GstRTSPClient *client;
1944
1945   client = GST_RTSP_CLIENT (user_data);
1946
1947   GST_INFO ("client %p: tunnel lost (connection %p)", client,
1948       client->connection);
1949
1950   /* ignore error, it'll only be a problem when the client does a POST again */
1951   remember_tunnel (client);
1952
1953   return GST_RTSP_OK;
1954 }
1955
1956 static GstRTSPResult
1957 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
1958 {
1959   const gchar *tunnelid;
1960   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1961   GstRTSPClient *oclient;
1962
1963   GST_INFO ("client %p: tunnel complete", client);
1964
1965   /* find previous tunnel */
1966   tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
1967   if (tunnelid == NULL)
1968     goto no_tunnelid;
1969
1970   g_mutex_lock (&tunnels_lock);
1971   if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
1972     goto no_tunnel;
1973
1974   /* remove the old client from the table. ref before because removing it will
1975    * remove the ref to it. */
1976   g_object_ref (oclient);
1977   g_hash_table_remove (tunnels, tunnelid);
1978
1979   if (oclient->watch == NULL)
1980     goto tunnel_closed;
1981   g_mutex_unlock (&tunnels_lock);
1982
1983   GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
1984       oclient->connection, client->connection);
1985
1986   /* merge the tunnels into the first client */
1987   gst_rtsp_connection_do_tunnel (oclient->connection, client->connection);
1988   gst_rtsp_watch_reset (oclient->watch);
1989   g_object_unref (oclient);
1990
1991   return GST_RTSP_OK;
1992
1993   /* ERRORS */
1994 no_tunnelid:
1995   {
1996     GST_INFO ("client %p: no tunnelid provided", client);
1997     return GST_RTSP_ERROR;
1998   }
1999 no_tunnel:
2000   {
2001     g_mutex_unlock (&tunnels_lock);
2002     GST_INFO ("client %p: tunnel session %s not found", client, tunnelid);
2003     return GST_RTSP_ERROR;
2004   }
2005 tunnel_closed:
2006   {
2007     g_mutex_unlock (&tunnels_lock);
2008     GST_INFO ("client %p: tunnel session %s was closed", client, tunnelid);
2009     g_object_unref (oclient);
2010     return GST_RTSP_ERROR;
2011   }
2012 }
2013
2014 static GstRTSPWatchFuncs watch_funcs = {
2015   message_received,
2016   message_sent,
2017   closed,
2018   error,
2019   tunnel_start,
2020   tunnel_complete,
2021   error_full,
2022   tunnel_lost
2023 };
2024
2025 static void
2026 client_watch_notify (GstRTSPClient * client)
2027 {
2028   GST_INFO ("client %p: watch destroyed", client);
2029   client->watchid = 0;
2030   client->watch = NULL;
2031   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2032   g_object_unref (client);
2033 }
2034
2035 static gboolean
2036 attach_client (GstRTSPClient * client, GSocket * socket,
2037     GstRTSPConnection * conn, GError ** error)
2038 {
2039   GSocket *read_socket;
2040   GSocketAddress *address;
2041   GSource *source;
2042   GMainContext *context;
2043   GstRTSPUrl *url;
2044
2045   read_socket = gst_rtsp_connection_get_read_socket (conn);
2046   client->is_ipv6 = g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV6;
2047
2048   if (!(address = g_socket_get_remote_address (read_socket, error)))
2049     goto no_address;
2050
2051   g_free (client->server_ip);
2052   /* keep the original ip that the client connected to */
2053   if (G_IS_INET_SOCKET_ADDRESS (address)) {
2054     GInetAddress *iaddr;
2055
2056     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2057
2058     client->server_ip = g_inet_address_to_string (iaddr);
2059     g_object_unref (address);
2060   } else {
2061     client->server_ip = g_strdup ("unknown");
2062   }
2063
2064   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2065       client->server_ip, client->is_ipv6);
2066
2067   url = gst_rtsp_connection_get_url (conn);
2068   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2069
2070   client->connection = conn;
2071
2072   /* create watch for the connection and attach */
2073   client->watch = gst_rtsp_watch_new (client->connection, &watch_funcs,
2074       g_object_ref (client), (GDestroyNotify) client_watch_notify);
2075
2076   /* find the context to add the watch */
2077   if ((source = g_main_current_source ()))
2078     context = g_source_get_context (source);
2079   else
2080     context = NULL;
2081
2082   GST_INFO ("attaching to context %p", context);
2083
2084   client->watchid = gst_rtsp_watch_attach (client->watch, context);
2085   gst_rtsp_watch_unref (client->watch);
2086
2087   return TRUE;
2088
2089   /* ERRORS */
2090 no_address:
2091   {
2092     GST_ERROR ("could not get remote address %s", (*error)->message);
2093     return FALSE;
2094   }
2095 }
2096
2097 /**
2098  * gst_rtsp_client_create_from_socket:
2099  * @client: a #GstRTSPClient
2100  * @socket: a #GSocket
2101  * @ip: the IP address of the remote client
2102  * @port: the port used by the other end
2103  * @initial_buffer: any initial data that was already read from the socket
2104  * @error: a #GError
2105  *
2106  * Take an existing network socket and use it for an RTSP connection.
2107  *
2108  * Returns: %TRUE on success.
2109  */
2110 gboolean
2111 gst_rtsp_client_create_from_socket (GstRTSPClient * client, GSocket * socket,
2112     const gchar * ip, gint port, const gchar * initial_buffer, GError ** error)
2113 {
2114   GstRTSPConnection *conn;
2115   GstRTSPResult res;
2116
2117   GST_RTSP_CHECK (gst_rtsp_connection_create_from_socket (socket, ip, port,
2118           initial_buffer, &conn), no_connection);
2119
2120   return attach_client (client, socket, conn, error);
2121
2122   /* ERRORS */
2123 no_connection:
2124   {
2125     gchar *str = gst_rtsp_strresult (res);
2126
2127     GST_ERROR ("could not create connection from socket %p: %s", socket, str);
2128     g_free (str);
2129     return FALSE;
2130   }
2131 }
2132
2133 /**
2134  * gst_rtsp_client_accept:
2135  * @client: a #GstRTSPClient
2136  * @socket: a #GSocket
2137  * @cancellable: a #GCancellable
2138  * @error: a #GError
2139  *
2140  * Accept a new connection for @client on @socket.
2141  *
2142  * This function should be called when the client properties and urls are fully
2143  * configured and the client is ready to start.
2144  *
2145  * Returns: %TRUE if the client could be accepted.
2146  */
2147 gboolean
2148 gst_rtsp_client_accept (GstRTSPClient * client, GSocket * socket,
2149     GCancellable * cancellable, GError ** error)
2150 {
2151   GstRTSPConnection *conn;
2152   GstRTSPResult res;
2153
2154   /* a new client connected. */
2155   GST_RTSP_CHECK (gst_rtsp_connection_accept (socket, &conn, cancellable),
2156       accept_failed);
2157
2158   return attach_client (client, socket, conn, error);
2159
2160   /* ERRORS */
2161 accept_failed:
2162   {
2163     gchar *str = gst_rtsp_strresult (res);
2164
2165     GST_ERROR ("Could not accept client on server socket %p: %s", socket, str);
2166     g_free (str);
2167     return FALSE;
2168   }
2169 }