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