rtsp-client: Unref server address clients connected to
[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_streams (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_streams (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   if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
484     return FALSE;
485
486   gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
487
488   /* FIXME, client->watch could have been finalized here, we need to keep an
489    * extra refcount to the watch.  */
490   gst_rtsp_watch_send_message (client->watch, &message, NULL);
491
492   gst_rtsp_message_steal_body (&message, &data, &usize);
493   gst_buffer_unmap (buffer, &map_info);
494
495   gst_rtsp_message_unset (&message);
496
497   return TRUE;
498 }
499
500 static void
501 link_stream (GstRTSPClient * client, GstRTSPSession * session,
502     GstRTSPSessionStream * stream)
503 {
504   GST_DEBUG ("client %p: linking stream %p", client, stream);
505   gst_rtsp_session_stream_set_callbacks (stream, (GstRTSPSendFunc) do_send_data,
506       (GstRTSPSendFunc) do_send_data, client, NULL);
507   client->streams = g_list_prepend (client->streams, stream);
508   /* make sure our session can't expire */
509   gst_rtsp_session_prevent_expire (session);
510 }
511
512 static void
513 unlink_stream (GstRTSPClient * client, GstRTSPSession * session,
514     GstRTSPSessionStream * stream)
515 {
516   GST_DEBUG ("client %p: unlinking stream %p", client, stream);
517   gst_rtsp_session_stream_set_callbacks (stream, NULL, NULL, NULL, NULL);
518   client->streams = g_list_remove (client->streams, stream);
519   /* our session can now expire */
520   gst_rtsp_session_allow_expire (session);
521 }
522
523 static void
524 unlink_session_streams (GstRTSPClient * client, GstRTSPSession * session,
525     GstRTSPSessionMedia * media)
526 {
527   guint n_streams, i;
528
529   n_streams = gst_rtsp_media_n_streams (media->media);
530   for (i = 0; i < n_streams; i++) {
531     GstRTSPSessionStream *sstream;
532     GstRTSPTransport *tr;
533
534     /* get the stream as configured in the session */
535     sstream = gst_rtsp_session_media_get_stream (media, i);
536     /* get the transport, if there is no transport configured, skip this stream */
537     if (!(tr = sstream->trans.transport))
538       continue;
539
540     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
541       /* for TCP, unlink the stream from the TCP connection of the client */
542       unlink_stream (client, session, sstream);
543     }
544   }
545 }
546
547 static void
548 close_connection (GstRTSPClient * client)
549 {
550   const gchar *tunnelid;
551
552   GST_DEBUG ("client %p: closing connection", client);
553
554   if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
555     g_mutex_lock (&tunnels_lock);
556     /* remove from tunnelids */
557     g_hash_table_remove (tunnels, tunnelid);
558     g_mutex_unlock (&tunnels_lock);
559   }
560
561   gst_rtsp_connection_close (client->connection);
562 }
563
564 static gboolean
565 handle_teardown_request (GstRTSPClient * client, GstRTSPClientState * state)
566 {
567   GstRTSPSession *session;
568   GstRTSPSessionMedia *media;
569   GstRTSPStatusCode code;
570
571   if (!state->session)
572     goto no_session;
573
574   session = state->session;
575
576   /* get a handle to the configuration of the media in the session */
577   media = gst_rtsp_session_get_media (session, state->uri);
578   if (!media)
579     goto not_found;
580
581   state->sessmedia = media;
582
583   /* unlink the all TCP callbacks */
584   unlink_session_streams (client, session, media);
585
586   /* remove the session from the watched sessions */
587   g_object_weak_unref (G_OBJECT (session),
588       (GWeakNotify) client_session_finalized, client);
589   client->sessions = g_list_remove (client->sessions, session);
590
591   gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
592
593   /* unmanage the media in the session, returns false if all media session
594    * are torn down. */
595   if (!gst_rtsp_session_release_media (session, media)) {
596     /* remove the session */
597     gst_rtsp_session_pool_remove (client->session_pool, session);
598   }
599   /* construct the response now */
600   code = GST_RTSP_STS_OK;
601   gst_rtsp_message_init_response (state->response, code,
602       gst_rtsp_status_as_text (code), state->request);
603
604   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONNECTION,
605       "close");
606
607   send_response (client, session, state->response);
608
609   /* we emit the signal before closing the connection */
610   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
611       0, state);
612
613   close_connection (client);
614
615   return TRUE;
616
617   /* ERRORS */
618 no_session:
619   {
620     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
621     return FALSE;
622   }
623 not_found:
624   {
625     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
626     return FALSE;
627   }
628 }
629
630 static gboolean
631 handle_get_param_request (GstRTSPClient * client, GstRTSPClientState * state)
632 {
633   GstRTSPResult res;
634   guint8 *data;
635   guint size;
636
637   res = gst_rtsp_message_get_body (state->request, &data, &size);
638   if (res != GST_RTSP_OK)
639     goto bad_request;
640
641   if (size == 0) {
642     /* no body, keep-alive request */
643     send_generic_response (client, GST_RTSP_STS_OK, state);
644   } else {
645     /* there is a body, handle the params */
646     res = gst_rtsp_params_get (client, state);
647     if (res != GST_RTSP_OK)
648       goto bad_request;
649
650     send_response (client, state->session, state->response);
651   }
652
653   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
654       0, state);
655
656   return TRUE;
657
658   /* ERRORS */
659 bad_request:
660   {
661     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
662     return FALSE;
663   }
664 }
665
666 static gboolean
667 handle_set_param_request (GstRTSPClient * client, GstRTSPClientState * state)
668 {
669   GstRTSPResult res;
670   guint8 *data;
671   guint size;
672
673   res = gst_rtsp_message_get_body (state->request, &data, &size);
674   if (res != GST_RTSP_OK)
675     goto bad_request;
676
677   if (size == 0) {
678     /* no body, keep-alive request */
679     send_generic_response (client, GST_RTSP_STS_OK, state);
680   } else {
681     /* there is a body, handle the params */
682     res = gst_rtsp_params_set (client, state);
683     if (res != GST_RTSP_OK)
684       goto bad_request;
685
686     send_response (client, state->session, state->response);
687   }
688
689   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
690       0, state);
691
692   return TRUE;
693
694   /* ERRORS */
695 bad_request:
696   {
697     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
698     return FALSE;
699   }
700 }
701
702 static gboolean
703 handle_pause_request (GstRTSPClient * client, GstRTSPClientState * state)
704 {
705   GstRTSPSession *session;
706   GstRTSPSessionMedia *media;
707   GstRTSPStatusCode code;
708
709   if (!(session = state->session))
710     goto no_session;
711
712   /* get a handle to the configuration of the media in the session */
713   media = gst_rtsp_session_get_media (session, state->uri);
714   if (!media)
715     goto not_found;
716
717   state->sessmedia = media;
718
719   /* the session state must be playing or recording */
720   if (media->state != GST_RTSP_STATE_PLAYING &&
721       media->state != GST_RTSP_STATE_RECORDING)
722     goto invalid_state;
723
724   /* unlink the all TCP callbacks */
725   unlink_session_streams (client, session, media);
726
727   /* then pause sending */
728   gst_rtsp_session_media_set_state (media, GST_STATE_PAUSED);
729
730   /* construct the response now */
731   code = GST_RTSP_STS_OK;
732   gst_rtsp_message_init_response (state->response, code,
733       gst_rtsp_status_as_text (code), state->request);
734
735   send_response (client, session, state->response);
736
737   /* the state is now READY */
738   media->state = GST_RTSP_STATE_READY;
739
740   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST],
741       0, state);
742
743   return TRUE;
744
745   /* ERRORS */
746 no_session:
747   {
748     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
749     return FALSE;
750   }
751 not_found:
752   {
753     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
754     return FALSE;
755   }
756 invalid_state:
757   {
758     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
759         state);
760     return FALSE;
761   }
762 }
763
764 static gboolean
765 handle_play_request (GstRTSPClient * client, GstRTSPClientState * state)
766 {
767   GstRTSPSession *session;
768   GstRTSPSessionMedia *media;
769   GstRTSPStatusCode code;
770   GString *rtpinfo;
771   guint n_streams, i, infocount;
772   guint timestamp, seqnum;
773   gchar *str;
774   GstRTSPTimeRange *range;
775   GstRTSPResult res;
776
777   if (!(session = state->session))
778     goto no_session;
779
780   /* get a handle to the configuration of the media in the session */
781   media = gst_rtsp_session_get_media (session, state->uri);
782   if (!media)
783     goto not_found;
784
785   state->sessmedia = media;
786
787   /* the session state must be playing or ready */
788   if (media->state != GST_RTSP_STATE_PLAYING &&
789       media->state != GST_RTSP_STATE_READY)
790     goto invalid_state;
791
792   /* parse the range header if we have one */
793   res =
794       gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_RANGE, &str, 0);
795   if (res == GST_RTSP_OK) {
796     if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
797       /* we have a range, seek to the position */
798       gst_rtsp_media_seek (media->media, range);
799       gst_rtsp_range_free (range);
800     }
801   }
802
803   /* grab RTPInfo from the payloaders now */
804   rtpinfo = g_string_new ("");
805
806   n_streams = gst_rtsp_media_n_streams (media->media);
807   for (i = 0, infocount = 0; i < n_streams; i++) {
808     GstRTSPSessionStream *sstream;
809     GstRTSPMediaStream *stream;
810     GstRTSPTransport *tr;
811     GObjectClass *payobjclass;
812     gchar *uristr;
813
814     /* get the stream as configured in the session */
815     sstream = gst_rtsp_session_media_get_stream (media, i);
816     /* get the transport, if there is no transport configured, skip this stream */
817     if (!(tr = sstream->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_stream (client, session, sstream);
825     }
826
827     stream = sstream->media_stream;
828
829     payobjclass = G_OBJECT_GET_CLASS (stream->payloader);
830
831     if (g_object_class_find_property (payobjclass, "seqnum") &&
832         g_object_class_find_property (payobjclass, "timestamp")) {
833       GObject *payobj;
834
835       payobj = G_OBJECT (stream->payloader);
836
837       /* only add RTP-Info for streams with seqnum and timestamp */
838       g_object_get (payobj, "seqnum", &seqnum, "timestamp", &timestamp, NULL);
839
840       if (infocount > 0)
841         g_string_append (rtpinfo, ", ");
842
843       uristr = gst_rtsp_url_get_request_uri (state->uri);
844       g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u",
845           uristr, i, seqnum, timestamp);
846       g_free (uristr);
847
848       infocount++;
849     } else {
850       GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
851     }
852   }
853
854   /* construct the response now */
855   code = GST_RTSP_STS_OK;
856   gst_rtsp_message_init_response (state->response, code,
857       gst_rtsp_status_as_text (code), state->request);
858
859   /* add the RTP-Info header */
860   if (infocount > 0) {
861     str = g_string_free (rtpinfo, FALSE);
862     gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RTP_INFO, str);
863   } else {
864     g_string_free (rtpinfo, TRUE);
865   }
866
867   /* add the range */
868   str = gst_rtsp_media_get_range_string (media->media, TRUE);
869   gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RANGE, str);
870
871   send_response (client, session, state->response);
872
873   /* start playing after sending the request */
874   gst_rtsp_session_media_set_state (media, GST_STATE_PLAYING);
875
876   media->state = GST_RTSP_STATE_PLAYING;
877
878   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST],
879       0, state);
880
881   return TRUE;
882
883   /* ERRORS */
884 no_session:
885   {
886     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
887     return FALSE;
888   }
889 not_found:
890   {
891     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
892     return FALSE;
893   }
894 invalid_state:
895   {
896     send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
897         state);
898     return FALSE;
899   }
900 }
901
902 static void
903 do_keepalive (GstRTSPSession * session)
904 {
905   GST_INFO ("keep session %p alive", session);
906   gst_rtsp_session_touch (session);
907 }
908
909 static gboolean
910 handle_blocksize (GstRTSPMedia * media, GstRTSPMessage * request)
911 {
912   gchar *blocksize_str;
913   gboolean ret = TRUE;
914
915   if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
916           &blocksize_str, 0) == GST_RTSP_OK) {
917     guint64 blocksize;
918     gchar *end;
919
920     blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
921     if (end == blocksize_str) {
922       GST_ERROR ("failed to parse blocksize");
923       ret = FALSE;
924     } else {
925       if (blocksize > G_MAXUINT)
926         blocksize = G_MAXUINT;
927       gst_rtsp_media_handle_mtu (media, (guint) blocksize);
928     }
929   }
930
931   return ret;
932 }
933
934 static gboolean
935 handle_setup_request (GstRTSPClient * client, GstRTSPClientState * state)
936 {
937   GstRTSPResult res;
938   GstRTSPUrl *uri;
939   gchar *transport;
940   gchar **transports;
941   gboolean have_transport;
942   GstRTSPTransport *ct, *st;
943   gint i;
944   GstRTSPLowerTrans supported;
945   GstRTSPStatusCode code;
946   GstRTSPSession *session;
947   GstRTSPSessionStream *stream;
948   gchar *trans_str, *pos;
949   guint streamid;
950   GstRTSPSessionMedia *media;
951
952   uri = state->uri;
953
954   /* the uri contains the stream number we added in the SDP config, which is
955    * always /stream=%d so we need to strip that off 
956    * parse the stream we need to configure, look for the stream in the abspath
957    * first and then in the query. */
958   if (uri->abspath == NULL || !(pos = strstr (uri->abspath, "/stream="))) {
959     if (uri->query == NULL || !(pos = strstr (uri->query, "/stream=")))
960       goto bad_request;
961   }
962
963   /* we can mofify the parse uri in place */
964   *pos = '\0';
965
966   pos += strlen ("/stream=");
967   if (sscanf (pos, "%u", &streamid) != 1)
968     goto bad_request;
969
970   /* parse the transport */
971   res =
972       gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_TRANSPORT,
973       &transport, 0);
974   if (res != GST_RTSP_OK)
975     goto no_transport;
976
977   transports = g_strsplit (transport, ",", 0);
978   gst_rtsp_transport_new (&ct);
979
980   /* init transports */
981   have_transport = FALSE;
982   gst_rtsp_transport_init (ct);
983
984   /* our supported transports */
985   supported = GST_RTSP_LOWER_TRANS_UDP |
986       GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP;
987
988   /* loop through the transports, try to parse */
989   for (i = 0; transports[i]; i++) {
990     res = gst_rtsp_transport_parse (transports[i], ct);
991     if (res != GST_RTSP_OK) {
992       /* no valid transport, search some more */
993       GST_WARNING ("could not parse transport %s", transports[i]);
994       goto next;
995     }
996
997     /* we have a transport, see if it's RTP/AVP */
998     if (ct->trans != GST_RTSP_TRANS_RTP || ct->profile != GST_RTSP_PROFILE_AVP) {
999       GST_WARNING ("invalid transport %s", transports[i]);
1000       goto next;
1001     }
1002
1003     if (!(ct->lower_transport & supported)) {
1004       GST_WARNING ("unsupported transport %s", transports[i]);
1005       goto next;
1006     }
1007
1008     /* we have a valid transport */
1009     GST_INFO ("found valid transport %s", transports[i]);
1010     have_transport = TRUE;
1011     break;
1012
1013   next:
1014     gst_rtsp_transport_init (ct);
1015   }
1016   g_strfreev (transports);
1017
1018   /* we have not found anything usable, error out */
1019   if (!have_transport)
1020     goto unsupported_transports;
1021
1022   if (client->session_pool == NULL)
1023     goto no_pool;
1024
1025   session = state->session;
1026
1027   if (session) {
1028     g_object_ref (session);
1029     /* get a handle to the configuration of the media in the session, this can
1030      * return NULL if this is a new url to manage in this session. */
1031     media = gst_rtsp_session_get_media (session, uri);
1032   } else {
1033     /* create a session if this fails we probably reached our session limit or
1034      * something. */
1035     if (!(session = gst_rtsp_session_pool_create (client->session_pool)))
1036       goto service_unavailable;
1037
1038     state->session = session;
1039
1040     /* we need a new media configuration in this session */
1041     media = NULL;
1042   }
1043
1044   /* we have no media, find one and manage it */
1045   if (media == NULL) {
1046     GstRTSPMedia *m;
1047
1048     /* get a handle to the configuration of the media in the session */
1049     if ((m = find_media (client, state))) {
1050       /* manage the media in our session now */
1051       media = gst_rtsp_session_manage_media (session, uri, m);
1052     }
1053   }
1054
1055   /* if we stil have no media, error */
1056   if (media == NULL)
1057     goto not_found;
1058
1059   state->sessmedia = media;
1060
1061   if (!handle_blocksize (media->media, state->request))
1062     goto invalid_blocksize;
1063
1064   /* we have a valid transport now, set the destination of the client. */
1065   if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1066     if (ct->destination == NULL || !client->use_client_settings) {
1067       g_free (ct->destination);
1068       ct->destination = gst_rtsp_media_get_multicast_group (media->media);
1069     }
1070     /* reset ttl if client settings are not allowed */
1071     if (!client->use_client_settings) {
1072       ct->ttl = 0;
1073     }
1074   } else {
1075     GstRTSPUrl *url;
1076
1077     url = gst_rtsp_connection_get_url (client->connection);
1078     g_free (ct->destination);
1079     ct->destination = g_strdup (url->host);
1080
1081     if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1082       /* check if the client selected channels for TCP */
1083       if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1084         gst_rtsp_session_media_alloc_channels (media, &ct->interleaved);
1085       }
1086     }
1087   }
1088
1089   /* get a handle to the stream in the media */
1090   if (!(stream = gst_rtsp_session_media_get_stream (media, streamid)))
1091     goto no_stream;
1092
1093   st = gst_rtsp_session_stream_set_transport (stream, ct);
1094
1095   /* configure keepalive for this transport */
1096   gst_rtsp_session_stream_set_keepalive (stream,
1097       (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1098
1099   /* serialize the server transport */
1100   trans_str = gst_rtsp_transport_as_text (st);
1101   gst_rtsp_transport_free (st);
1102
1103   /* construct the response now */
1104   code = GST_RTSP_STS_OK;
1105   gst_rtsp_message_init_response (state->response, code,
1106       gst_rtsp_status_as_text (code), state->request);
1107
1108   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_TRANSPORT,
1109       trans_str);
1110   g_free (trans_str);
1111
1112   send_response (client, session, state->response);
1113
1114   /* update the state */
1115   switch (media->state) {
1116     case GST_RTSP_STATE_PLAYING:
1117     case GST_RTSP_STATE_RECORDING:
1118     case GST_RTSP_STATE_READY:
1119       /* no state change */
1120       break;
1121     default:
1122       media->state = GST_RTSP_STATE_READY;
1123       break;
1124   }
1125   g_object_unref (session);
1126
1127   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST],
1128       0, state);
1129
1130   return TRUE;
1131
1132   /* ERRORS */
1133 bad_request:
1134   {
1135     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1136     return FALSE;
1137   }
1138 not_found:
1139   {
1140     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1141     g_object_unref (session);
1142     gst_rtsp_transport_free (ct);
1143     return FALSE;
1144   }
1145 invalid_blocksize:
1146   {
1147     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1148     g_object_unref (session);
1149     gst_rtsp_transport_free (ct);
1150     return FALSE;
1151   }
1152 no_stream:
1153   {
1154     send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1155     g_object_unref (session);
1156     gst_rtsp_transport_free (ct);
1157     return FALSE;
1158   }
1159 no_transport:
1160   {
1161     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1162     return FALSE;
1163   }
1164 unsupported_transports:
1165   {
1166     send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1167     gst_rtsp_transport_free (ct);
1168     return FALSE;
1169   }
1170 no_pool:
1171   {
1172     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1173     gst_rtsp_transport_free (ct);
1174     return FALSE;
1175   }
1176 service_unavailable:
1177   {
1178     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1179     gst_rtsp_transport_free (ct);
1180     return FALSE;
1181   }
1182 }
1183
1184 static GstSDPMessage *
1185 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1186 {
1187   GstSDPMessage *sdp;
1188   GstSDPInfo info;
1189   const gchar *proto;
1190   GstRTSPLowerTrans protocols;
1191
1192   gst_sdp_message_new (&sdp);
1193
1194   /* some standard things first */
1195   gst_sdp_message_set_version (sdp, "0");
1196
1197   if (client->is_ipv6)
1198     proto = "IP6";
1199   else
1200     proto = "IP4";
1201
1202   gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1203       client->server_ip);
1204
1205   gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1206   gst_sdp_message_set_information (sdp, "rtsp-server");
1207   gst_sdp_message_add_time (sdp, "0", "0", NULL);
1208   gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1209   gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1210   gst_sdp_message_add_attribute (sdp, "control", "*");
1211
1212   info.server_proto = proto;
1213   protocols = gst_rtsp_media_get_protocols (media);
1214   if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST)
1215     info.server_ip = gst_rtsp_media_get_multicast_group (media);
1216   else
1217     info.server_ip = g_strdup (client->server_ip);
1218
1219   /* create an SDP for the media object */
1220   if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1221     goto no_sdp;
1222
1223   g_free (info.server_ip);
1224
1225   return sdp;
1226
1227   /* ERRORS */
1228 no_sdp:
1229   {
1230     g_free (info.server_ip);
1231     gst_sdp_message_free (sdp);
1232     return NULL;
1233   }
1234 }
1235
1236 /* for the describe we must generate an SDP */
1237 static gboolean
1238 handle_describe_request (GstRTSPClient * client, GstRTSPClientState * state)
1239 {
1240   GstRTSPResult res;
1241   GstSDPMessage *sdp;
1242   guint i, str_len;
1243   gchar *str, *content_base;
1244   GstRTSPMedia *media;
1245   GstRTSPClientClass *klass;
1246
1247   klass = GST_RTSP_CLIENT_GET_CLASS (client);
1248
1249   /* check what kind of format is accepted, we don't really do anything with it
1250    * and always return SDP for now. */
1251   for (i = 0; i++;) {
1252     gchar *accept;
1253
1254     res =
1255         gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_ACCEPT,
1256         &accept, i);
1257     if (res == GST_RTSP_ENOTIMPL)
1258       break;
1259
1260     if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1261       break;
1262   }
1263
1264   /* find the media object for the uri */
1265   if (!(media = find_media (client, state)))
1266     goto no_media;
1267
1268
1269   /* create an SDP for the media object on this client */
1270   if (!(sdp = klass->create_sdp (client, media)))
1271     goto no_sdp;
1272
1273   g_object_unref (media);
1274
1275   gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1276       gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1277
1278   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_TYPE,
1279       "application/sdp");
1280
1281   /* content base for some clients that might screw up creating the setup uri */
1282   str = gst_rtsp_url_get_request_uri (state->uri);
1283   str_len = strlen (str);
1284
1285   /* check for trailing '/' and append one */
1286   if (str[str_len - 1] != '/') {
1287     content_base = g_malloc (str_len + 2);
1288     memcpy (content_base, str, str_len);
1289     content_base[str_len] = '/';
1290     content_base[str_len + 1] = '\0';
1291     g_free (str);
1292   } else {
1293     content_base = str;
1294   }
1295
1296   GST_INFO ("adding content-base: %s", content_base);
1297
1298   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_BASE,
1299       content_base);
1300   g_free (content_base);
1301
1302   /* add SDP to the response body */
1303   str = gst_sdp_message_as_text (sdp);
1304   gst_rtsp_message_take_body (state->response, (guint8 *) str, strlen (str));
1305   gst_sdp_message_free (sdp);
1306
1307   send_response (client, state->session, state->response);
1308
1309   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1310       0, state);
1311
1312   return TRUE;
1313
1314   /* ERRORS */
1315 no_media:
1316   {
1317     /* error reply is already sent */
1318     return FALSE;
1319   }
1320 no_sdp:
1321   {
1322     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1323     g_object_unref (media);
1324     return FALSE;
1325   }
1326 }
1327
1328 static gboolean
1329 handle_options_request (GstRTSPClient * client, GstRTSPClientState * state)
1330 {
1331   GstRTSPMethod options;
1332   gchar *str;
1333
1334   options = GST_RTSP_DESCRIBE |
1335       GST_RTSP_OPTIONS |
1336       GST_RTSP_PAUSE |
1337       GST_RTSP_PLAY |
1338       GST_RTSP_SETUP |
1339       GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1340
1341   str = gst_rtsp_options_as_text (options);
1342
1343   gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1344       gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1345
1346   gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_PUBLIC, str);
1347   g_free (str);
1348
1349   send_response (client, state->session, state->response);
1350
1351   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1352       0, state);
1353
1354   return TRUE;
1355 }
1356
1357 /* remove duplicate and trailing '/' */
1358 static void
1359 sanitize_uri (GstRTSPUrl * uri)
1360 {
1361   gint i, len;
1362   gchar *s, *d;
1363   gboolean have_slash, prev_slash;
1364
1365   s = d = uri->abspath;
1366   len = strlen (uri->abspath);
1367
1368   prev_slash = FALSE;
1369
1370   for (i = 0; i < len; i++) {
1371     have_slash = s[i] == '/';
1372     *d = s[i];
1373     if (!have_slash || !prev_slash)
1374       d++;
1375     prev_slash = have_slash;
1376   }
1377   len = d - uri->abspath;
1378   /* don't remove the first slash if that's the only thing left */
1379   if (len > 1 && *(d - 1) == '/')
1380     d--;
1381   *d = '\0';
1382 }
1383
1384 static void
1385 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1386 {
1387   GST_INFO ("client %p: session %p finished", client, session);
1388
1389   /* unlink all media managed in this session */
1390   client_unlink_session (client, session);
1391
1392   /* remove the session */
1393   if (!(client->sessions = g_list_remove (client->sessions, session))) {
1394     GST_INFO ("client %p: all sessions finalized, close the connection",
1395         client);
1396     close_connection (client);
1397   }
1398 }
1399
1400 static void
1401 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
1402 {
1403   GList *walk;
1404
1405   for (walk = client->sessions; walk; walk = g_list_next (walk)) {
1406     GstRTSPSession *msession = (GstRTSPSession *) walk->data;
1407
1408     /* we already know about this session */
1409     if (msession == session)
1410       return;
1411   }
1412
1413   GST_INFO ("watching session %p", session);
1414
1415   g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
1416       client);
1417   client->sessions = g_list_prepend (client->sessions, session);
1418
1419   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1420       session);
1421 }
1422
1423 static void
1424 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1425 {
1426   GstRTSPMethod method;
1427   const gchar *uristr;
1428   GstRTSPUrl *uri;
1429   GstRTSPVersion version;
1430   GstRTSPResult res;
1431   GstRTSPSession *session;
1432   GstRTSPClientState state = { NULL };
1433   GstRTSPMessage response = { 0 };
1434   gchar *sessid;
1435
1436   state.request = request;
1437   state.response = &response;
1438
1439   if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1440     gst_rtsp_message_dump (request);
1441   }
1442
1443   GST_INFO ("client %p: received a request", client);
1444
1445   gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1446
1447   if (version != GST_RTSP_VERSION_1_0) {
1448     /* we can only handle 1.0 requests */
1449     send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
1450         &state);
1451     return;
1452   }
1453   state.method = method;
1454
1455   /* we always try to parse the url first */
1456   if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
1457     send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1458     return;
1459   }
1460
1461   /* sanitize the uri */
1462   sanitize_uri (uri);
1463   state.uri = uri;
1464
1465   /* get the session if there is any */
1466   res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1467   if (res == GST_RTSP_OK) {
1468     if (client->session_pool == NULL)
1469       goto no_pool;
1470
1471     /* we had a session in the request, find it again */
1472     if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
1473       goto session_not_found;
1474
1475     /* we add the session to the client list of watched sessions. When a session
1476      * disappears because it times out, we will be notified. If all sessions are
1477      * gone, we will close the connection */
1478     client_watch_session (client, session);
1479   } else
1480     session = NULL;
1481
1482   state.session = session;
1483
1484   if (client->auth) {
1485     if (!gst_rtsp_auth_check (client->auth, client, 0, &state))
1486       goto not_authorized;
1487   }
1488
1489   /* now see what is asked and dispatch to a dedicated handler */
1490   switch (method) {
1491     case GST_RTSP_OPTIONS:
1492       handle_options_request (client, &state);
1493       break;
1494     case GST_RTSP_DESCRIBE:
1495       handle_describe_request (client, &state);
1496       break;
1497     case GST_RTSP_SETUP:
1498       handle_setup_request (client, &state);
1499       break;
1500     case GST_RTSP_PLAY:
1501       handle_play_request (client, &state);
1502       break;
1503     case GST_RTSP_PAUSE:
1504       handle_pause_request (client, &state);
1505       break;
1506     case GST_RTSP_TEARDOWN:
1507       handle_teardown_request (client, &state);
1508       break;
1509     case GST_RTSP_SET_PARAMETER:
1510       handle_set_param_request (client, &state);
1511       break;
1512     case GST_RTSP_GET_PARAMETER:
1513       handle_get_param_request (client, &state);
1514       break;
1515     case GST_RTSP_ANNOUNCE:
1516     case GST_RTSP_RECORD:
1517     case GST_RTSP_REDIRECT:
1518       send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, &state);
1519       break;
1520     case GST_RTSP_INVALID:
1521     default:
1522       send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1523       break;
1524   }
1525   if (session)
1526     g_object_unref (session);
1527
1528   gst_rtsp_url_free (uri);
1529   return;
1530
1531   /* ERRORS */
1532 no_pool:
1533   {
1534     send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, &state);
1535     return;
1536   }
1537 session_not_found:
1538   {
1539     send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, &state);
1540     return;
1541   }
1542 not_authorized:
1543   {
1544     handle_unauthorized_request (client, client->auth, &state);
1545     return;
1546   }
1547 }
1548
1549 static void
1550 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
1551 {
1552   GstRTSPResult res;
1553   guint8 channel;
1554   GList *walk;
1555   guint8 *data;
1556   guint size;
1557   GstBuffer *buffer;
1558   gboolean handled;
1559
1560   /* find the stream for this message */
1561   res = gst_rtsp_message_parse_data (message, &channel);
1562   if (res != GST_RTSP_OK)
1563     return;
1564
1565   gst_rtsp_message_steal_body (message, &data, &size);
1566
1567   buffer = gst_buffer_new_wrapped (data, size);
1568
1569   handled = FALSE;
1570   for (walk = client->streams; walk; walk = g_list_next (walk)) {
1571     GstRTSPSessionStream *stream = (GstRTSPSessionStream *) walk->data;
1572     GstRTSPMediaStream *mstream;
1573     GstRTSPTransport *tr;
1574
1575     /* get the transport, if there is no transport configured, skip this stream */
1576     if (!(tr = stream->trans.transport))
1577       continue;
1578
1579     /* we also need a media stream */
1580     if (!(mstream = stream->media_stream))
1581       continue;
1582
1583     /* check for TCP transport */
1584     if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1585       /* dispatch to the stream based on the channel number */
1586       if (tr->interleaved.min == channel) {
1587         gst_rtsp_media_stream_rtp (mstream, buffer);
1588         handled = TRUE;
1589         break;
1590       } else if (tr->interleaved.max == channel) {
1591         gst_rtsp_media_stream_rtcp (mstream, buffer);
1592         handled = TRUE;
1593         break;
1594       }
1595     }
1596   }
1597   if (!handled)
1598     gst_buffer_unref (buffer);
1599 }
1600
1601 /**
1602  * gst_rtsp_client_set_session_pool:
1603  * @client: a #GstRTSPClient
1604  * @pool: a #GstRTSPSessionPool
1605  *
1606  * Set @pool as the sessionpool for @client which it will use to find
1607  * or allocate sessions. the sessionpool is usually inherited from the server
1608  * that created the client but can be overridden later.
1609  */
1610 void
1611 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
1612     GstRTSPSessionPool * pool)
1613 {
1614   GstRTSPSessionPool *old;
1615
1616   old = client->session_pool;
1617   if (old != pool) {
1618     if (pool)
1619       g_object_ref (pool);
1620     client->session_pool = pool;
1621     if (old)
1622       g_object_unref (old);
1623   }
1624 }
1625
1626 /**
1627  * gst_rtsp_client_get_session_pool:
1628  * @client: a #GstRTSPClient
1629  *
1630  * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
1631  *
1632  * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
1633  */
1634 GstRTSPSessionPool *
1635 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
1636 {
1637   GstRTSPSessionPool *result;
1638
1639   if ((result = client->session_pool))
1640     g_object_ref (result);
1641
1642   return result;
1643 }
1644
1645 /**
1646  * gst_rtsp_client_set_server:
1647  * @client: a #GstRTSPClient
1648  * @server: a #GstRTSPServer
1649  *
1650  * Set @server as the server that created @client.
1651  */
1652 void
1653 gst_rtsp_client_set_server (GstRTSPClient * client, GstRTSPServer * server)
1654 {
1655   GstRTSPServer *old;
1656
1657   old = client->server;
1658   if (old != server) {
1659     if (server)
1660       g_object_ref (server);
1661     client->server = server;
1662     if (old)
1663       g_object_unref (old);
1664   }
1665 }
1666
1667 /**
1668  * gst_rtsp_client_get_server:
1669  * @client: a #GstRTSPClient
1670  *
1671  * Get the #GstRTSPServer object that @client was created from.
1672  *
1673  * Returns: (transfer full): a #GstRTSPServer, unref after usage.
1674  */
1675 GstRTSPServer *
1676 gst_rtsp_client_get_server (GstRTSPClient * client)
1677 {
1678   GstRTSPServer *result;
1679
1680   if ((result = client->server))
1681     g_object_ref (result);
1682
1683   return result;
1684 }
1685
1686 /**
1687  * gst_rtsp_client_set_media_mapping:
1688  * @client: a #GstRTSPClient
1689  * @mapping: a #GstRTSPMediaMapping
1690  *
1691  * Set @mapping as the media mapping for @client which it will use to map urls
1692  * to media streams. These mapping is usually inherited from the server that
1693  * created the client but can be overriden later.
1694  */
1695 void
1696 gst_rtsp_client_set_media_mapping (GstRTSPClient * client,
1697     GstRTSPMediaMapping * mapping)
1698 {
1699   GstRTSPMediaMapping *old;
1700
1701   old = client->media_mapping;
1702
1703   if (old != mapping) {
1704     if (mapping)
1705       g_object_ref (mapping);
1706     client->media_mapping = mapping;
1707     if (old)
1708       g_object_unref (old);
1709   }
1710 }
1711
1712 /**
1713  * gst_rtsp_client_get_media_mapping:
1714  * @client: a #GstRTSPClient
1715  *
1716  * Get the #GstRTSPMediaMapping object that @client uses to manage its sessions.
1717  *
1718  * Returns: (transfer full): a #GstRTSPMediaMapping, unref after usage.
1719  */
1720 GstRTSPMediaMapping *
1721 gst_rtsp_client_get_media_mapping (GstRTSPClient * client)
1722 {
1723   GstRTSPMediaMapping *result;
1724
1725   if ((result = client->media_mapping))
1726     g_object_ref (result);
1727
1728   return result;
1729 }
1730
1731 /**
1732  * gst_rtsp_client_set_use_client_settings:
1733  * @client: a #GstRTSPClient
1734  * @use_client_settings: whether to use client settings for multicast
1735  *
1736  * Use client transport settings (destination and ttl) for multicast.
1737  * When @use_client_settings is %FALSE, the server settings will be
1738  * used.
1739  */
1740 void
1741 gst_rtsp_client_set_use_client_settings (GstRTSPClient * client,
1742     gboolean use_client_settings)
1743 {
1744   client->use_client_settings = use_client_settings;
1745 }
1746
1747 /**
1748  * gst_rtsp_client_get_use_client_settings:
1749  * @client: a #GstRTSPClient
1750  *
1751  * Check if client transport settings (destination and ttl) for multicast
1752  * will be used.
1753  */
1754 gboolean
1755 gst_rtsp_client_get_use_client_settings (GstRTSPClient * client)
1756 {
1757   return client->use_client_settings;
1758 }
1759
1760 /**
1761  * gst_rtsp_client_set_auth:
1762  * @client: a #GstRTSPClient
1763  * @auth: a #GstRTSPAuth
1764  *
1765  * configure @auth to be used as the authentication manager of @client.
1766  */
1767 void
1768 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
1769 {
1770   GstRTSPAuth *old;
1771
1772   g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1773
1774   old = client->auth;
1775
1776   if (old != auth) {
1777     if (auth)
1778       g_object_ref (auth);
1779     client->auth = auth;
1780     if (old)
1781       g_object_unref (old);
1782   }
1783 }
1784
1785
1786 /**
1787  * gst_rtsp_client_get_auth:
1788  * @client: a #GstRTSPClient
1789  *
1790  * Get the #GstRTSPAuth used as the authentication manager of @client.
1791  *
1792  * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
1793  * usage.
1794  */
1795 GstRTSPAuth *
1796 gst_rtsp_client_get_auth (GstRTSPClient * client)
1797 {
1798   GstRTSPAuth *result;
1799
1800   g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
1801
1802   if ((result = client->auth))
1803     g_object_ref (result);
1804
1805   return result;
1806 }
1807
1808 static GstRTSPResult
1809 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
1810     gpointer user_data)
1811 {
1812   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1813
1814   switch (message->type) {
1815     case GST_RTSP_MESSAGE_REQUEST:
1816       handle_request (client, message);
1817       break;
1818     case GST_RTSP_MESSAGE_RESPONSE:
1819       break;
1820     case GST_RTSP_MESSAGE_DATA:
1821       handle_data (client, message);
1822       break;
1823     default:
1824       break;
1825   }
1826   return GST_RTSP_OK;
1827 }
1828
1829 static GstRTSPResult
1830 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
1831 {
1832   /* GstRTSPClient *client; */
1833
1834   /* client = GST_RTSP_CLIENT (user_data); */
1835
1836   /* GST_INFO ("client %p: sent a message with cseq %d", client, cseq); */
1837
1838   return GST_RTSP_OK;
1839 }
1840
1841 static GstRTSPResult
1842 closed (GstRTSPWatch * watch, gpointer user_data)
1843 {
1844   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1845   const gchar *tunnelid;
1846
1847   GST_INFO ("client %p: connection closed", client);
1848
1849   if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
1850     g_mutex_lock (&tunnels_lock);
1851     /* remove from tunnelids */
1852     g_hash_table_remove (tunnels, tunnelid);
1853     g_mutex_unlock (&tunnels_lock);
1854   }
1855
1856   return GST_RTSP_OK;
1857 }
1858
1859 static GstRTSPResult
1860 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
1861 {
1862   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1863   gchar *str;
1864
1865   str = gst_rtsp_strresult (result);
1866   GST_INFO ("client %p: received an error %s", client, str);
1867   g_free (str);
1868
1869   return GST_RTSP_OK;
1870 }
1871
1872 static GstRTSPResult
1873 error_full (GstRTSPWatch * watch, GstRTSPResult result,
1874     GstRTSPMessage * message, guint id, gpointer user_data)
1875 {
1876   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1877   gchar *str;
1878
1879   str = gst_rtsp_strresult (result);
1880   GST_INFO
1881       ("client %p: received an error %s when handling message %p with id %d",
1882       client, str, message, id);
1883   g_free (str);
1884
1885   return GST_RTSP_OK;
1886 }
1887
1888 static gboolean
1889 remember_tunnel (GstRTSPClient * client)
1890 {
1891   const gchar *tunnelid;
1892
1893   /* store client in the pending tunnels */
1894   tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
1895   if (tunnelid == NULL)
1896     goto no_tunnelid;
1897
1898   GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
1899
1900   /* we can't have two clients connecting with the same tunnelid */
1901   g_mutex_lock (&tunnels_lock);
1902   if (g_hash_table_lookup (tunnels, tunnelid))
1903     goto tunnel_existed;
1904
1905   g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
1906   g_mutex_unlock (&tunnels_lock);
1907
1908   return TRUE;
1909
1910   /* ERRORS */
1911 no_tunnelid:
1912   {
1913     GST_ERROR ("client %p: no tunnelid provided", client);
1914     return FALSE;
1915   }
1916 tunnel_existed:
1917   {
1918     g_mutex_unlock (&tunnels_lock);
1919     GST_ERROR ("client %p: tunnel session %s already existed", client,
1920         tunnelid);
1921     return FALSE;
1922   }
1923 }
1924
1925 static GstRTSPStatusCode
1926 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
1927 {
1928   GstRTSPClient *client;
1929
1930   client = GST_RTSP_CLIENT (user_data);
1931
1932   GST_INFO ("client %p: tunnel start (connection %p)", client,
1933       client->connection);
1934
1935   if (!remember_tunnel (client))
1936     goto tunnel_error;
1937
1938   return GST_RTSP_STS_OK;
1939
1940   /* ERRORS */
1941 tunnel_error:
1942   {
1943     GST_ERROR ("client %p: error starting tunnel", client);
1944     return GST_RTSP_STS_SERVICE_UNAVAILABLE;
1945   }
1946 }
1947
1948 static GstRTSPResult
1949 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
1950 {
1951   GstRTSPClient *client;
1952
1953   client = GST_RTSP_CLIENT (user_data);
1954
1955   GST_INFO ("client %p: tunnel lost (connection %p)", client,
1956       client->connection);
1957
1958   /* ignore error, it'll only be a problem when the client does a POST again */
1959   remember_tunnel (client);
1960
1961   return GST_RTSP_OK;
1962 }
1963
1964 static GstRTSPResult
1965 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
1966 {
1967   const gchar *tunnelid;
1968   GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1969   GstRTSPClient *oclient;
1970
1971   GST_INFO ("client %p: tunnel complete", client);
1972
1973   /* find previous tunnel */
1974   tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
1975   if (tunnelid == NULL)
1976     goto no_tunnelid;
1977
1978   g_mutex_lock (&tunnels_lock);
1979   if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
1980     goto no_tunnel;
1981
1982   /* remove the old client from the table. ref before because removing it will
1983    * remove the ref to it. */
1984   g_object_ref (oclient);
1985   g_hash_table_remove (tunnels, tunnelid);
1986
1987   if (oclient->watch == NULL)
1988     goto tunnel_closed;
1989   g_mutex_unlock (&tunnels_lock);
1990
1991   GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
1992       oclient->connection, client->connection);
1993
1994   /* merge the tunnels into the first client */
1995   gst_rtsp_connection_do_tunnel (oclient->connection, client->connection);
1996   gst_rtsp_watch_reset (oclient->watch);
1997   g_object_unref (oclient);
1998
1999   return GST_RTSP_OK;
2000
2001   /* ERRORS */
2002 no_tunnelid:
2003   {
2004     GST_INFO ("client %p: no tunnelid provided", client);
2005     return GST_RTSP_ERROR;
2006   }
2007 no_tunnel:
2008   {
2009     g_mutex_unlock (&tunnels_lock);
2010     GST_INFO ("client %p: tunnel session %s not found", client, tunnelid);
2011     return GST_RTSP_ERROR;
2012   }
2013 tunnel_closed:
2014   {
2015     g_mutex_unlock (&tunnels_lock);
2016     GST_INFO ("client %p: tunnel session %s was closed", client, tunnelid);
2017     g_object_unref (oclient);
2018     return GST_RTSP_ERROR;
2019   }
2020 }
2021
2022 static GstRTSPWatchFuncs watch_funcs = {
2023   message_received,
2024   message_sent,
2025   closed,
2026   error,
2027   tunnel_start,
2028   tunnel_complete,
2029   error_full,
2030   tunnel_lost
2031 };
2032
2033 static void
2034 client_watch_notify (GstRTSPClient * client)
2035 {
2036   GST_INFO ("client %p: watch destroyed", client);
2037   client->watchid = 0;
2038   client->watch = NULL;
2039   g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2040   g_object_unref (client);
2041 }
2042
2043 static gboolean
2044 attach_client (GstRTSPClient * client, GSocket * socket,
2045     GstRTSPConnection * conn, GError ** error)
2046 {
2047   GSocket *read_socket;
2048   GSocketAddress *address;
2049   GSource *source;
2050   GMainContext *context;
2051   GstRTSPUrl *url;
2052
2053   read_socket = gst_rtsp_connection_get_read_socket (conn);
2054   client->is_ipv6 = g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV6;
2055
2056   if (!(address = g_socket_get_remote_address (read_socket, error)))
2057     goto no_address;
2058
2059   g_free (client->server_ip);
2060   /* keep the original ip that the client connected to */
2061   if (G_IS_INET_SOCKET_ADDRESS (address)) {
2062     GInetAddress *iaddr;
2063
2064     iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2065
2066     client->server_ip = g_inet_address_to_string (iaddr);
2067     g_object_unref (address);
2068   } else {
2069     client->server_ip = g_strdup ("unknown");
2070   }
2071
2072   GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2073       client->server_ip, client->is_ipv6);
2074
2075   url = gst_rtsp_connection_get_url (conn);
2076   GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2077
2078   client->connection = conn;
2079
2080   /* create watch for the connection and attach */
2081   client->watch = gst_rtsp_watch_new (client->connection, &watch_funcs,
2082       g_object_ref (client), (GDestroyNotify) client_watch_notify);
2083
2084   /* find the context to add the watch */
2085   if ((source = g_main_current_source ()))
2086     context = g_source_get_context (source);
2087   else
2088     context = NULL;
2089
2090   GST_INFO ("attaching to context %p", context);
2091
2092   client->watchid = gst_rtsp_watch_attach (client->watch, context);
2093   gst_rtsp_watch_unref (client->watch);
2094
2095   return TRUE;
2096
2097   /* ERRORS */
2098 no_address:
2099   {
2100     GST_ERROR ("could not get remote address %s", (*error)->message);
2101     return FALSE;
2102   }
2103 }
2104
2105 /**
2106  * gst_rtsp_client_create_from_socket:
2107  * @client: a #GstRTSPClient
2108  * @socket: a #GSocket
2109  * @ip: the IP address of the remote client
2110  * @port: the port used by the other end
2111  * @initial_buffer: any initial data that was already read from the socket
2112  * @error: a #GError
2113  *
2114  * Take an existing network socket and use it for an RTSP connection.
2115  *
2116  * Returns: %TRUE on success.
2117  */
2118 gboolean
2119 gst_rtsp_client_create_from_socket (GstRTSPClient * client, GSocket * socket,
2120     const gchar * ip, gint port, const gchar * initial_buffer, GError ** error)
2121 {
2122   GstRTSPConnection *conn;
2123   GstRTSPResult res;
2124
2125   GST_RTSP_CHECK (gst_rtsp_connection_create_from_socket (socket, ip, port,
2126           initial_buffer, &conn), no_connection);
2127
2128   return attach_client (client, socket, conn, error);
2129
2130   /* ERRORS */
2131 no_connection:
2132   {
2133     gchar *str = gst_rtsp_strresult (res);
2134
2135     GST_ERROR ("could not create connection from socket %p: %s", socket, str);
2136     g_free (str);
2137     return FALSE;
2138   }
2139 }
2140
2141 /**
2142  * gst_rtsp_client_accept:
2143  * @client: a #GstRTSPClient
2144  * @socket: a #GSocket
2145  * @cancellable: a #GCancellable
2146  * @error: a #GError
2147  *
2148  * Accept a new connection for @client on @socket.
2149  *
2150  * This function should be called when the client properties and urls are fully
2151  * configured and the client is ready to start.
2152  *
2153  * Returns: %TRUE if the client could be accepted.
2154  */
2155 gboolean
2156 gst_rtsp_client_accept (GstRTSPClient * client, GSocket * socket,
2157     GCancellable * cancellable, GError ** error)
2158 {
2159   GstRTSPConnection *conn;
2160   GstRTSPResult res;
2161
2162   /* a new client connected. */
2163   GST_RTSP_CHECK (gst_rtsp_connection_accept (socket, &conn, cancellable),
2164       accept_failed);
2165
2166   return attach_client (client, socket, conn, error);
2167
2168   /* ERRORS */
2169 accept_failed:
2170   {
2171     gchar *str = gst_rtsp_strresult (res);
2172
2173     GST_ERROR ("Could not accept client on server socket %p: %s", socket, str);
2174     g_free (str);
2175     return FALSE;
2176   }
2177 }