2 * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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.
23 #include "rtsp-client.h"
25 #include "rtsp-params.h"
27 #define GST_RTSP_CLIENT_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientPrivate))
31 * send_lock, lock, tunnels_lock
34 struct _GstRTSPClientPrivate
36 GMutex lock; /* protects everything else */
38 GstRTSPConnection *connection;
43 gboolean use_client_settings;
45 GstRTSPClientSendFunc send_func; /* protected by send_lock */
46 gpointer send_data; /* protected by send_lock */
47 GDestroyNotify send_notify; /* protected by send_lock */
49 GstRTSPSessionPool *session_pool;
50 GstRTSPMountPoints *mount_points;
60 static GMutex tunnels_lock;
61 static GHashTable *tunnels; /* protected by tunnels_lock */
63 #define DEFAULT_SESSION_POOL NULL
64 #define DEFAULT_MOUNT_POINTS NULL
65 #define DEFAULT_USE_CLIENT_SETTINGS FALSE
72 PROP_USE_CLIENT_SETTINGS,
80 SIGNAL_OPTIONS_REQUEST,
81 SIGNAL_DESCRIBE_REQUEST,
85 SIGNAL_TEARDOWN_REQUEST,
86 SIGNAL_SET_PARAMETER_REQUEST,
87 SIGNAL_GET_PARAMETER_REQUEST,
91 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
92 #define GST_CAT_DEFAULT rtsp_client_debug
94 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
96 static void gst_rtsp_client_get_property (GObject * object, guint propid,
97 GValue * value, GParamSpec * pspec);
98 static void gst_rtsp_client_set_property (GObject * object, guint propid,
99 const GValue * value, GParamSpec * pspec);
100 static void gst_rtsp_client_finalize (GObject * obj);
102 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
103 static void client_session_finalized (GstRTSPClient * client,
104 GstRTSPSession * session);
105 static void unlink_session_transports (GstRTSPClient * client,
106 GstRTSPSession * session, GstRTSPSessionMedia * media);
108 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
111 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
113 GObjectClass *gobject_class;
115 g_type_class_add_private (klass, sizeof (GstRTSPClientPrivate));
117 gobject_class = G_OBJECT_CLASS (klass);
119 gobject_class->get_property = gst_rtsp_client_get_property;
120 gobject_class->set_property = gst_rtsp_client_set_property;
121 gobject_class->finalize = gst_rtsp_client_finalize;
123 klass->create_sdp = create_sdp;
125 g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
126 g_param_spec_object ("session-pool", "Session Pool",
127 "The session pool to use for client session",
128 GST_TYPE_RTSP_SESSION_POOL,
129 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
131 g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
132 g_param_spec_object ("mount-points", "Mount Points",
133 "The mount points to use for client session",
134 GST_TYPE_RTSP_MOUNT_POINTS,
135 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
137 g_object_class_install_property (gobject_class, PROP_USE_CLIENT_SETTINGS,
138 g_param_spec_boolean ("use-client-settings", "Use Client Settings",
139 "Use client settings for ttl and destination in multicast",
140 DEFAULT_USE_CLIENT_SETTINGS,
141 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
143 gst_rtsp_client_signals[SIGNAL_CLOSED] =
144 g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
145 G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
146 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
148 gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
149 g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
150 G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
151 g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
153 gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
154 g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
155 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
156 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
159 gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
160 g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
161 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
162 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
165 gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
166 g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
167 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
168 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
171 gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
172 g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
173 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
174 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
177 gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
178 g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
179 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
180 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
183 gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
184 g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
185 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
186 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
189 gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
190 g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
191 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
192 set_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
193 G_TYPE_NONE, 1, G_TYPE_POINTER);
195 gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
196 g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
197 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
198 get_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
199 G_TYPE_NONE, 1, G_TYPE_POINTER);
202 g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
203 g_mutex_init (&tunnels_lock);
205 GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
209 gst_rtsp_client_init (GstRTSPClient * client)
211 GstRTSPClientPrivate *priv = GST_RTSP_CLIENT_GET_PRIVATE (client);
215 g_mutex_init (&priv->lock);
216 g_mutex_init (&priv->send_lock);
217 priv->use_client_settings = DEFAULT_USE_CLIENT_SETTINGS;
221 static GstRTSPFilterResult
222 filter_session (GstRTSPSession * sess, GstRTSPSessionMedia * media,
225 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
227 gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
228 unlink_session_transports (client, sess, media);
230 /* unmanage the media in the session */
231 return GST_RTSP_FILTER_REMOVE;
235 client_unlink_session (GstRTSPClient * client, GstRTSPSession * session)
237 /* unlink all media managed in this session */
238 gst_rtsp_session_filter (session, filter_session, client);
242 client_cleanup_sessions (GstRTSPClient * client)
244 GstRTSPClientPrivate *priv = client->priv;
247 /* remove weak-ref from sessions */
248 for (sessions = priv->sessions; sessions; sessions = g_list_next (sessions)) {
249 GstRTSPSession *session = (GstRTSPSession *) sessions->data;
250 g_object_weak_unref (G_OBJECT (session),
251 (GWeakNotify) client_session_finalized, client);
252 client_unlink_session (client, session);
254 g_list_free (priv->sessions);
255 priv->sessions = NULL;
258 /* A client is finalized when the connection is broken */
260 gst_rtsp_client_finalize (GObject * obj)
262 GstRTSPClient *client = GST_RTSP_CLIENT (obj);
263 GstRTSPClientPrivate *priv = client->priv;
265 GST_INFO ("finalize client %p", client);
267 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
270 g_source_destroy ((GSource *) priv->watch);
272 client_cleanup_sessions (client);
274 if (priv->connection)
275 gst_rtsp_connection_free (priv->connection);
276 if (priv->session_pool)
277 g_object_unref (priv->session_pool);
278 if (priv->mount_points)
279 g_object_unref (priv->mount_points);
281 g_object_unref (priv->auth);
284 gst_rtsp_url_free (priv->uri);
286 gst_rtsp_media_unprepare (priv->media);
287 g_object_unref (priv->media);
290 g_free (priv->server_ip);
291 g_mutex_clear (&priv->lock);
292 g_mutex_clear (&priv->send_lock);
294 G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
298 gst_rtsp_client_get_property (GObject * object, guint propid,
299 GValue * value, GParamSpec * pspec)
301 GstRTSPClient *client = GST_RTSP_CLIENT (object);
304 case PROP_SESSION_POOL:
305 g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
307 case PROP_MOUNT_POINTS:
308 g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
310 case PROP_USE_CLIENT_SETTINGS:
311 g_value_set_boolean (value,
312 gst_rtsp_client_get_use_client_settings (client));
315 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
320 gst_rtsp_client_set_property (GObject * object, guint propid,
321 const GValue * value, GParamSpec * pspec)
323 GstRTSPClient *client = GST_RTSP_CLIENT (object);
326 case PROP_SESSION_POOL:
327 gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
329 case PROP_MOUNT_POINTS:
330 gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
332 case PROP_USE_CLIENT_SETTINGS:
333 gst_rtsp_client_set_use_client_settings (client,
334 g_value_get_boolean (value));
337 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
342 * gst_rtsp_client_new:
344 * Create a new #GstRTSPClient instance.
346 * Returns: a new #GstRTSPClient
349 gst_rtsp_client_new (void)
351 GstRTSPClient *result;
353 result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
359 send_response (GstRTSPClient * client, GstRTSPSession * session,
360 GstRTSPMessage * response, gboolean close)
362 GstRTSPClientPrivate *priv = client->priv;
364 gst_rtsp_message_add_header (response, GST_RTSP_HDR_SERVER,
365 "GStreamer RTSP server");
367 /* remove any previous header */
368 gst_rtsp_message_remove_header (response, GST_RTSP_HDR_SESSION, -1);
370 /* add the new session header for new session ids */
372 gst_rtsp_message_take_header (response, GST_RTSP_HDR_SESSION,
373 gst_rtsp_session_get_header (session));
376 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
377 gst_rtsp_message_dump (response);
381 gst_rtsp_message_add_header (response, GST_RTSP_HDR_CONNECTION, "close");
383 g_mutex_lock (&priv->send_lock);
385 priv->send_func (client, response, close, priv->send_data);
386 g_mutex_unlock (&priv->send_lock);
388 gst_rtsp_message_unset (response);
392 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
393 GstRTSPClientState * state)
395 gst_rtsp_message_init_response (state->response, code,
396 gst_rtsp_status_as_text (code), state->request);
398 send_response (client, NULL, state->response, FALSE);
402 handle_unauthorized_request (GstRTSPClient * client, GstRTSPAuth * auth,
403 GstRTSPClientState * state)
405 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_UNAUTHORIZED,
406 gst_rtsp_status_as_text (GST_RTSP_STS_UNAUTHORIZED), state->request);
409 /* and let the authentication manager setup the auth tokens */
410 gst_rtsp_auth_setup_auth (auth, client, 0, state);
413 send_response (client, state->session, state->response, FALSE);
418 compare_uri (const GstRTSPUrl * uri1, const GstRTSPUrl * uri2)
420 if (uri1 == NULL || uri2 == NULL)
423 if (strcmp (uri1->abspath, uri2->abspath))
429 /* this function is called to initially find the media for the DESCRIBE request
430 * but is cached for when the same client (without breaking the connection) is
431 * doing a setup for the exact same url. */
432 static GstRTSPMedia *
433 find_media (GstRTSPClient * client, GstRTSPClientState * state)
435 GstRTSPClientPrivate *priv = client->priv;
436 GstRTSPMediaFactory *factory;
440 if (!compare_uri (priv->uri, state->uri)) {
441 /* remove any previously cached values before we try to construct a new
444 gst_rtsp_url_free (priv->uri);
447 gst_rtsp_media_unprepare (priv->media);
448 g_object_unref (priv->media);
452 if (!priv->mount_points)
453 goto no_mount_points;
455 /* find the factory for the uri first */
457 gst_rtsp_mount_points_find_factory (priv->mount_points,
461 /* check if we have access to the factory */
462 if ((auth = gst_rtsp_media_factory_get_auth (factory))) {
463 state->factory = factory;
465 if (!gst_rtsp_auth_check (auth, client, 0, state))
468 state->factory = NULL;
469 g_object_unref (auth);
472 /* prepare the media and add it to the pipeline */
473 if (!(media = gst_rtsp_media_factory_construct (factory, state->uri)))
476 g_object_unref (factory);
479 /* prepare the media */
480 if (!(gst_rtsp_media_prepare (media)))
483 /* now keep track of the uri and the media */
484 priv->uri = gst_rtsp_url_copy (state->uri);
486 state->media = media;
488 /* we have seen this uri before, used cached media */
490 state->media = media;
491 GST_INFO ("reusing cached media %p", media);
495 g_object_ref (media);
502 GST_ERROR ("client %p: no mount points configured", client);
503 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
508 GST_ERROR ("client %p: no factory for uri", client);
509 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
514 GST_ERROR ("client %p: unauthorized request", client);
515 handle_unauthorized_request (client, auth, state);
516 g_object_unref (factory);
517 state->factory = NULL;
518 g_object_unref (auth);
523 GST_ERROR ("client %p: can't create media", client);
524 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
525 g_object_unref (factory);
530 GST_ERROR ("client %p: can't prepare media", client);
531 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
532 g_object_unref (media);
538 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
540 GstRTSPClientPrivate *priv = client->priv;
541 GstRTSPMessage message = { 0 };
546 gst_rtsp_message_init_data (&message, channel);
548 /* FIXME, need some sort of iovec RTSPMessage here */
549 if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
552 gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
554 g_mutex_lock (&priv->send_lock);
556 priv->send_func (client, &message, FALSE, priv->send_data);
557 g_mutex_unlock (&priv->send_lock);
559 gst_rtsp_message_steal_body (&message, &data, &usize);
560 gst_buffer_unmap (buffer, &map_info);
562 gst_rtsp_message_unset (&message);
568 link_transport (GstRTSPClient * client, GstRTSPSession * session,
569 GstRTSPStreamTransport * trans)
571 GstRTSPClientPrivate *priv = client->priv;
573 GST_DEBUG ("client %p: linking transport %p", client, trans);
575 gst_rtsp_stream_transport_set_callbacks (trans,
576 (GstRTSPSendFunc) do_send_data,
577 (GstRTSPSendFunc) do_send_data, client, NULL);
579 priv->transports = g_list_prepend (priv->transports, trans);
581 /* make sure our session can't expire */
582 gst_rtsp_session_prevent_expire (session);
586 unlink_transport (GstRTSPClient * client, GstRTSPSession * session,
587 GstRTSPStreamTransport * trans)
589 GstRTSPClientPrivate *priv = client->priv;
591 GST_DEBUG ("client %p: unlinking transport %p", client, trans);
593 gst_rtsp_stream_transport_set_callbacks (trans, NULL, NULL, NULL, NULL);
595 priv->transports = g_list_remove (priv->transports, trans);
597 /* our session can now expire */
598 gst_rtsp_session_allow_expire (session);
602 unlink_session_transports (GstRTSPClient * client, GstRTSPSession * session,
603 GstRTSPSessionMedia * media)
608 gst_rtsp_media_n_streams (gst_rtsp_session_media_get_media (media));
609 for (i = 0; i < n_streams; i++) {
610 GstRTSPStreamTransport *trans;
611 const GstRTSPTransport *tr;
613 /* get the transport, if there is no transport configured, skip this stream */
614 trans = gst_rtsp_session_media_get_transport (media, i);
618 tr = gst_rtsp_stream_transport_get_transport (trans);
620 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
621 /* for TCP, unlink the stream from the TCP connection of the client */
622 unlink_transport (client, session, trans);
628 close_connection (GstRTSPClient * client)
630 GstRTSPClientPrivate *priv = client->priv;
631 const gchar *tunnelid;
633 GST_DEBUG ("client %p: closing connection", client);
635 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
636 g_mutex_lock (&tunnels_lock);
637 /* remove from tunnelids */
638 g_hash_table_remove (tunnels, tunnelid);
639 g_mutex_unlock (&tunnels_lock);
642 gst_rtsp_connection_close (priv->connection);
646 handle_teardown_request (GstRTSPClient * client, GstRTSPClientState * state)
648 GstRTSPClientPrivate *priv = client->priv;
649 GstRTSPSession *session;
650 GstRTSPSessionMedia *media;
651 GstRTSPStatusCode code;
656 session = state->session;
658 /* get a handle to the configuration of the media in the session */
659 media = gst_rtsp_session_get_media (session, state->uri);
663 state->sessmedia = media;
665 /* unlink the all TCP callbacks */
666 unlink_session_transports (client, session, media);
668 /* remove the session from the watched sessions */
669 g_object_weak_unref (G_OBJECT (session),
670 (GWeakNotify) client_session_finalized, client);
671 priv->sessions = g_list_remove (priv->sessions, session);
673 gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
675 /* unmanage the media in the session, returns false if all media session
677 if (!gst_rtsp_session_release_media (session, media)) {
678 /* remove the session */
679 gst_rtsp_session_pool_remove (priv->session_pool, session);
681 /* construct the response now */
682 code = GST_RTSP_STS_OK;
683 gst_rtsp_message_init_response (state->response, code,
684 gst_rtsp_status_as_text (code), state->request);
686 send_response (client, session, state->response, TRUE);
688 /* we emit the signal before closing the connection */
689 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
697 GST_ERROR ("client %p: no session", client);
698 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
703 GST_ERROR ("client %p: no media for uri", client);
704 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
710 handle_get_param_request (GstRTSPClient * client, GstRTSPClientState * state)
716 res = gst_rtsp_message_get_body (state->request, &data, &size);
717 if (res != GST_RTSP_OK)
721 /* no body, keep-alive request */
722 send_generic_response (client, GST_RTSP_STS_OK, state);
724 /* there is a body, handle the params */
725 res = gst_rtsp_params_get (client, state);
726 if (res != GST_RTSP_OK)
729 send_response (client, state->session, state->response, FALSE);
732 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
740 GST_ERROR ("client %p: bad request", client);
741 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
747 handle_set_param_request (GstRTSPClient * client, GstRTSPClientState * state)
753 res = gst_rtsp_message_get_body (state->request, &data, &size);
754 if (res != GST_RTSP_OK)
758 /* no body, keep-alive request */
759 send_generic_response (client, GST_RTSP_STS_OK, state);
761 /* there is a body, handle the params */
762 res = gst_rtsp_params_set (client, state);
763 if (res != GST_RTSP_OK)
766 send_response (client, state->session, state->response, FALSE);
769 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
777 GST_ERROR ("client %p: bad request", client);
778 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
784 handle_pause_request (GstRTSPClient * client, GstRTSPClientState * state)
786 GstRTSPSession *session;
787 GstRTSPSessionMedia *media;
788 GstRTSPStatusCode code;
789 GstRTSPState rtspstate;
791 if (!(session = state->session))
794 /* get a handle to the configuration of the media in the session */
795 media = gst_rtsp_session_get_media (session, state->uri);
799 state->sessmedia = media;
801 rtspstate = gst_rtsp_session_media_get_rtsp_state (media);
802 /* the session state must be playing or recording */
803 if (rtspstate != GST_RTSP_STATE_PLAYING &&
804 rtspstate != GST_RTSP_STATE_RECORDING)
807 /* unlink the all TCP callbacks */
808 unlink_session_transports (client, session, media);
810 /* then pause sending */
811 gst_rtsp_session_media_set_state (media, GST_STATE_PAUSED);
813 /* construct the response now */
814 code = GST_RTSP_STS_OK;
815 gst_rtsp_message_init_response (state->response, code,
816 gst_rtsp_status_as_text (code), state->request);
818 send_response (client, session, state->response, FALSE);
820 /* the state is now READY */
821 gst_rtsp_session_media_set_rtsp_state (media, GST_RTSP_STATE_READY);
823 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST],
831 GST_ERROR ("client %p: no seesion", client);
832 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
837 GST_ERROR ("client %p: no media for uri", client);
838 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
843 GST_ERROR ("client %p: not PLAYING or RECORDING", client);
844 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
851 handle_play_request (GstRTSPClient * client, GstRTSPClientState * state)
853 GstRTSPSession *session;
854 GstRTSPSessionMedia *media;
855 GstRTSPStatusCode code;
857 guint n_streams, i, infocount;
859 GstRTSPTimeRange *range;
861 GstRTSPState rtspstate;
862 GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
864 if (!(session = state->session))
867 /* get a handle to the configuration of the media in the session */
868 media = gst_rtsp_session_get_media (session, state->uri);
872 state->sessmedia = media;
874 /* the session state must be playing or ready */
875 rtspstate = gst_rtsp_session_media_get_rtsp_state (media);
876 if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
879 /* parse the range header if we have one */
881 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_RANGE, &str, 0);
882 if (res == GST_RTSP_OK) {
883 if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
884 /* we have a range, seek to the position */
885 gst_rtsp_media_seek (gst_rtsp_session_media_get_media (media), range);
887 gst_rtsp_range_free (range);
891 /* grab RTPInfo from the payloaders now */
892 rtpinfo = g_string_new ("");
895 gst_rtsp_media_n_streams (gst_rtsp_session_media_get_media (media));
896 for (i = 0, infocount = 0; i < n_streams; i++) {
897 GstRTSPStreamTransport *trans;
898 GstRTSPStream *stream;
899 const GstRTSPTransport *tr;
903 /* get the transport, if there is no transport configured, skip this stream */
904 trans = gst_rtsp_session_media_get_transport (media, i);
906 GST_INFO ("stream %d is not configured", i);
909 tr = gst_rtsp_stream_transport_get_transport (trans);
911 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
912 /* for TCP, link the stream to the TCP connection of the client */
913 link_transport (client, session, trans);
916 stream = gst_rtsp_stream_transport_get_stream (trans);
917 if (gst_rtsp_stream_get_rtpinfo (stream, &rtptime, &seq)) {
919 g_string_append (rtpinfo, ", ");
921 uristr = gst_rtsp_url_get_request_uri (state->uri);
922 g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u",
923 uristr, i, seq, rtptime);
928 GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
932 /* construct the response now */
933 code = GST_RTSP_STS_OK;
934 gst_rtsp_message_init_response (state->response, code,
935 gst_rtsp_status_as_text (code), state->request);
937 /* add the RTP-Info header */
939 str = g_string_free (rtpinfo, FALSE);
940 gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RTP_INFO, str);
942 g_string_free (rtpinfo, TRUE);
947 gst_rtsp_media_get_range_string (gst_rtsp_session_media_get_media (media),
949 gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RANGE, str);
951 send_response (client, session, state->response, FALSE);
953 /* start playing after sending the request */
954 gst_rtsp_session_media_set_state (media, GST_STATE_PLAYING);
956 gst_rtsp_session_media_set_rtsp_state (media, GST_RTSP_STATE_PLAYING);
958 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST],
966 GST_ERROR ("client %p: no session", client);
967 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
972 GST_ERROR ("client %p: media not found", client);
973 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
978 GST_ERROR ("client %p: not PLAYING or READY", client);
979 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
986 do_keepalive (GstRTSPSession * session)
988 GST_INFO ("keep session %p alive", session);
989 gst_rtsp_session_touch (session);
992 /* parse @transport and return a valid transport in @tr. only transports
993 * from @supported are returned. Returns FALSE if no valid transport
996 parse_transport (const char *transport, GstRTSPLowerTrans supported,
997 GstRTSPTransport * tr)
1004 gst_rtsp_transport_init (tr);
1006 GST_DEBUG ("parsing transports %s", transport);
1008 transports = g_strsplit (transport, ",", 0);
1010 /* loop through the transports, try to parse */
1011 for (i = 0; transports[i]; i++) {
1012 res = gst_rtsp_transport_parse (transports[i], tr);
1013 if (res != GST_RTSP_OK) {
1014 /* no valid transport, search some more */
1015 GST_WARNING ("could not parse transport %s", transports[i]);
1019 /* we have a transport, see if it's RTP/AVP */
1020 if (tr->trans != GST_RTSP_TRANS_RTP || tr->profile != GST_RTSP_PROFILE_AVP) {
1021 GST_WARNING ("invalid transport %s", transports[i]);
1025 if (!(tr->lower_transport & supported)) {
1026 GST_WARNING ("unsupported transport %s", transports[i]);
1030 /* we have a valid transport */
1031 GST_INFO ("found valid transport %s", transports[i]);
1036 gst_rtsp_transport_init (tr);
1038 g_strfreev (transports);
1044 handle_blocksize (GstRTSPMedia * media, GstRTSPStream * stream,
1045 GstRTSPMessage * request)
1047 gchar *blocksize_str;
1048 gboolean ret = TRUE;
1050 if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1051 &blocksize_str, 0) == GST_RTSP_OK) {
1055 blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1056 if (end == blocksize_str) {
1057 GST_ERROR ("failed to parse blocksize");
1060 /* we don't want to change the mtu when this media
1061 * can be shared because it impacts other clients */
1062 if (gst_rtsp_media_is_shared (media))
1065 if (blocksize > G_MAXUINT)
1066 blocksize = G_MAXUINT;
1067 gst_rtsp_stream_set_mtu (stream, blocksize);
1074 configure_client_transport (GstRTSPClient * client, GstRTSPClientState * state,
1075 GstRTSPTransport * ct)
1077 GstRTSPClientPrivate *priv = client->priv;
1079 /* we have a valid transport now, set the destination of the client. */
1080 if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1081 if (ct->destination && priv->use_client_settings) {
1082 GstRTSPAddress *addr;
1084 addr = gst_rtsp_stream_reserve_address (state->stream, ct->destination,
1085 ct->port.min, ct->port.max - ct->port.min + 1, ct->ttl);
1090 gst_rtsp_address_free (addr);
1092 GstRTSPAddress *addr;
1094 addr = gst_rtsp_stream_get_address (state->stream);
1098 g_free (ct->destination);
1099 ct->destination = g_strdup (addr->address);
1100 ct->port.min = addr->port;
1101 ct->port.max = addr->port + addr->n_ports - 1;
1102 ct->ttl = addr->ttl;
1104 gst_rtsp_address_free (addr);
1109 url = gst_rtsp_connection_get_url (priv->connection);
1110 g_free (ct->destination);
1111 ct->destination = g_strdup (url->host);
1113 if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1114 /* check if the client selected channels for TCP */
1115 if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1116 gst_rtsp_session_media_alloc_channels (state->sessmedia,
1126 GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1131 static GstRTSPTransport *
1132 make_server_transport (GstRTSPClient * client, GstRTSPClientState * state,
1133 GstRTSPTransport * ct)
1135 GstRTSPTransport *st;
1137 /* prepare the server transport */
1138 gst_rtsp_transport_new (&st);
1140 st->trans = ct->trans;
1141 st->profile = ct->profile;
1142 st->lower_transport = ct->lower_transport;
1144 switch (st->lower_transport) {
1145 case GST_RTSP_LOWER_TRANS_UDP:
1146 st->client_port = ct->client_port;
1147 gst_rtsp_stream_get_server_port (state->stream, &st->server_port);
1149 case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1150 st->port = ct->port;
1151 st->destination = g_strdup (ct->destination);
1154 case GST_RTSP_LOWER_TRANS_TCP:
1155 st->interleaved = ct->interleaved;
1160 gst_rtsp_stream_get_ssrc (state->stream, &st->ssrc);
1166 handle_setup_request (GstRTSPClient * client, GstRTSPClientState * state)
1168 GstRTSPClientPrivate *priv = client->priv;
1172 GstRTSPTransport *ct, *st;
1173 GstRTSPLowerTrans supported;
1174 GstRTSPStatusCode code;
1175 GstRTSPSession *session;
1176 GstRTSPStreamTransport *trans;
1177 gchar *trans_str, *pos;
1179 GstRTSPSessionMedia *sessmedia;
1180 GstRTSPMedia *media;
1181 GstRTSPStream *stream;
1182 GstRTSPState rtspstate;
1186 /* the uri contains the stream number we added in the SDP config, which is
1187 * always /stream=%d so we need to strip that off
1188 * parse the stream we need to configure, look for the stream in the abspath
1189 * first and then in the query. */
1190 if (uri->abspath == NULL || !(pos = strstr (uri->abspath, "/stream="))) {
1191 if (uri->query == NULL || !(pos = strstr (uri->query, "/stream=")))
1195 /* we can mofify the parsed uri in place */
1198 pos += strlen ("/stream=");
1199 if (sscanf (pos, "%u", &streamid) != 1)
1202 /* parse the transport */
1204 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_TRANSPORT,
1206 if (res != GST_RTSP_OK)
1209 gst_rtsp_transport_new (&ct);
1211 /* our supported transports */
1212 supported = GST_RTSP_LOWER_TRANS_UDP |
1213 GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP;
1215 /* parse and find a usable supported transport */
1216 if (!parse_transport (transport, supported, ct))
1217 goto unsupported_transports;
1219 /* we create the session after parsing stuff so that we don't make
1220 * a session for malformed requests */
1221 if (priv->session_pool == NULL)
1224 session = state->session;
1227 g_object_ref (session);
1228 /* get a handle to the configuration of the media in the session, this can
1229 * return NULL if this is a new url to manage in this session. */
1230 sessmedia = gst_rtsp_session_get_media (session, uri);
1232 /* create a session if this fails we probably reached our session limit or
1234 if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
1235 goto service_unavailable;
1237 state->session = session;
1239 /* we need a new media configuration in this session */
1243 /* we have no media, find one and manage it */
1244 if (sessmedia == NULL) {
1245 /* get a handle to the configuration of the media in the session */
1246 if ((media = find_media (client, state))) {
1247 /* manage the media in our session now */
1248 sessmedia = gst_rtsp_session_manage_media (session, uri, media);
1252 /* if we stil have no media, error */
1253 if (sessmedia == NULL)
1256 state->sessmedia = sessmedia;
1257 state->media = media = gst_rtsp_session_media_get_media (sessmedia);
1259 /* now get the stream */
1260 stream = gst_rtsp_media_get_stream (media, streamid);
1264 state->stream = stream;
1266 /* set blocksize on this stream */
1267 if (!handle_blocksize (media, stream, state->request))
1268 goto invalid_blocksize;
1270 /* update the client transport */
1271 if (!configure_client_transport (client, state, ct))
1272 goto unsupported_client_transport;
1274 /* set in the session media transport */
1275 trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1277 /* configure keepalive for this transport */
1278 gst_rtsp_stream_transport_set_keepalive (trans,
1279 (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1281 /* create and serialize the server transport */
1282 st = make_server_transport (client, state, ct);
1283 trans_str = gst_rtsp_transport_as_text (st);
1284 gst_rtsp_transport_free (st);
1286 /* construct the response now */
1287 code = GST_RTSP_STS_OK;
1288 gst_rtsp_message_init_response (state->response, code,
1289 gst_rtsp_status_as_text (code), state->request);
1291 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_TRANSPORT,
1295 send_response (client, session, state->response, FALSE);
1297 /* update the state */
1298 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1299 switch (rtspstate) {
1300 case GST_RTSP_STATE_PLAYING:
1301 case GST_RTSP_STATE_RECORDING:
1302 case GST_RTSP_STATE_READY:
1303 /* no state change */
1306 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1309 g_object_unref (session);
1311 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST],
1319 GST_ERROR ("client %p: bad request", client);
1320 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1325 GST_ERROR ("client %p: media not found", client);
1326 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1327 g_object_unref (session);
1328 gst_rtsp_transport_free (ct);
1333 GST_ERROR ("client %p: invalid blocksize", client);
1334 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1335 g_object_unref (session);
1336 gst_rtsp_transport_free (ct);
1339 unsupported_client_transport:
1341 GST_ERROR ("client %p: unsupported client transport", client);
1342 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1343 g_object_unref (session);
1344 gst_rtsp_transport_free (ct);
1349 GST_ERROR ("client %p: no transport", client);
1350 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1353 unsupported_transports:
1355 GST_ERROR ("client %p: unsupported transports", client);
1356 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1357 gst_rtsp_transport_free (ct);
1362 GST_ERROR ("client %p: no session pool configured", client);
1363 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
1364 gst_rtsp_transport_free (ct);
1367 service_unavailable:
1369 GST_ERROR ("client %p: can't create session", client);
1370 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1371 gst_rtsp_transport_free (ct);
1376 static GstSDPMessage *
1377 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1379 GstRTSPClientPrivate *priv = client->priv;
1384 gst_sdp_message_new (&sdp);
1386 /* some standard things first */
1387 gst_sdp_message_set_version (sdp, "0");
1394 gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1397 gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1398 gst_sdp_message_set_information (sdp, "rtsp-server");
1399 gst_sdp_message_add_time (sdp, "0", "0", NULL);
1400 gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1401 gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1402 gst_sdp_message_add_attribute (sdp, "control", "*");
1404 info.server_proto = proto;
1405 info.server_ip = g_strdup (priv->server_ip);
1407 /* create an SDP for the media object */
1408 if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1411 g_free (info.server_ip);
1418 GST_ERROR ("client %p: could not create SDP", client);
1419 g_free (info.server_ip);
1420 gst_sdp_message_free (sdp);
1425 /* for the describe we must generate an SDP */
1427 handle_describe_request (GstRTSPClient * client, GstRTSPClientState * state)
1432 gchar *str, *content_base;
1433 GstRTSPMedia *media;
1434 GstRTSPClientClass *klass;
1436 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1438 /* check what kind of format is accepted, we don't really do anything with it
1439 * and always return SDP for now. */
1444 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_ACCEPT,
1446 if (res == GST_RTSP_ENOTIMPL)
1449 if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1453 /* find the media object for the uri */
1454 if (!(media = find_media (client, state)))
1457 /* create an SDP for the media object on this client */
1458 if (!(sdp = klass->create_sdp (client, media)))
1461 g_object_unref (media);
1463 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1464 gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1466 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_TYPE,
1469 /* content base for some clients that might screw up creating the setup uri */
1470 str = gst_rtsp_url_get_request_uri (state->uri);
1471 str_len = strlen (str);
1473 /* check for trailing '/' and append one */
1474 if (str[str_len - 1] != '/') {
1475 content_base = g_malloc (str_len + 2);
1476 memcpy (content_base, str, str_len);
1477 content_base[str_len] = '/';
1478 content_base[str_len + 1] = '\0';
1484 GST_INFO ("adding content-base: %s", content_base);
1486 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_BASE,
1488 g_free (content_base);
1490 /* add SDP to the response body */
1491 str = gst_sdp_message_as_text (sdp);
1492 gst_rtsp_message_take_body (state->response, (guint8 *) str, strlen (str));
1493 gst_sdp_message_free (sdp);
1495 send_response (client, state->session, state->response, FALSE);
1497 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1505 GST_ERROR ("client %p: no media", client);
1506 /* error reply is already sent */
1511 GST_ERROR ("client %p: can't create SDP", client);
1512 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1513 g_object_unref (media);
1519 handle_options_request (GstRTSPClient * client, GstRTSPClientState * state)
1521 GstRTSPMethod options;
1524 options = GST_RTSP_DESCRIBE |
1529 GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1531 str = gst_rtsp_options_as_text (options);
1533 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1534 gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1536 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_PUBLIC, str);
1539 send_response (client, state->session, state->response, FALSE);
1541 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1547 /* remove duplicate and trailing '/' */
1549 sanitize_uri (GstRTSPUrl * uri)
1553 gboolean have_slash, prev_slash;
1555 s = d = uri->abspath;
1556 len = strlen (uri->abspath);
1560 for (i = 0; i < len; i++) {
1561 have_slash = s[i] == '/';
1563 if (!have_slash || !prev_slash)
1565 prev_slash = have_slash;
1567 len = d - uri->abspath;
1568 /* don't remove the first slash if that's the only thing left */
1569 if (len > 1 && *(d - 1) == '/')
1575 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1577 GstRTSPClientPrivate *priv = client->priv;
1579 GST_INFO ("client %p: session %p finished", client, session);
1581 /* unlink all media managed in this session */
1582 client_unlink_session (client, session);
1584 /* remove the session */
1585 if (!(priv->sessions = g_list_remove (priv->sessions, session))) {
1586 GST_INFO ("client %p: all sessions finalized, close the connection",
1588 close_connection (client);
1593 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
1595 GstRTSPClientPrivate *priv = client->priv;
1598 for (walk = priv->sessions; walk; walk = g_list_next (walk)) {
1599 GstRTSPSession *msession = (GstRTSPSession *) walk->data;
1601 /* we already know about this session */
1602 if (msession == session)
1606 GST_INFO ("watching session %p", session);
1608 g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
1610 priv->sessions = g_list_prepend (priv->sessions, session);
1612 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1617 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1619 GstRTSPClientPrivate *priv = client->priv;
1620 GstRTSPMethod method;
1621 const gchar *uristr;
1622 GstRTSPUrl *uri = NULL;
1623 GstRTSPVersion version;
1625 GstRTSPSession *session = NULL;
1626 GstRTSPClientState state = { NULL };
1627 GstRTSPMessage response = { 0 };
1630 state.request = request;
1631 state.response = &response;
1633 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1634 gst_rtsp_message_dump (request);
1637 GST_INFO ("client %p: received a request", client);
1639 gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1641 /* we can only handle 1.0 requests */
1642 if (version != GST_RTSP_VERSION_1_0)
1645 state.method = method;
1647 /* we always try to parse the url first */
1648 if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK)
1651 /* get the session if there is any */
1652 res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1653 if (res == GST_RTSP_OK) {
1654 if (priv->session_pool == NULL)
1657 /* we had a session in the request, find it again */
1658 if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
1659 goto session_not_found;
1661 /* we add the session to the client list of watched sessions. When a session
1662 * disappears because it times out, we will be notified. If all sessions are
1663 * gone, we will close the connection */
1664 client_watch_session (client, session);
1667 /* sanitize the uri */
1670 state.session = session;
1673 if (!gst_rtsp_auth_check (priv->auth, client, 0, &state))
1674 goto not_authorized;
1677 /* now see what is asked and dispatch to a dedicated handler */
1679 case GST_RTSP_OPTIONS:
1680 handle_options_request (client, &state);
1682 case GST_RTSP_DESCRIBE:
1683 handle_describe_request (client, &state);
1685 case GST_RTSP_SETUP:
1686 handle_setup_request (client, &state);
1689 handle_play_request (client, &state);
1691 case GST_RTSP_PAUSE:
1692 handle_pause_request (client, &state);
1694 case GST_RTSP_TEARDOWN:
1695 handle_teardown_request (client, &state);
1697 case GST_RTSP_SET_PARAMETER:
1698 handle_set_param_request (client, &state);
1700 case GST_RTSP_GET_PARAMETER:
1701 handle_get_param_request (client, &state);
1703 case GST_RTSP_ANNOUNCE:
1704 case GST_RTSP_RECORD:
1705 case GST_RTSP_REDIRECT:
1706 goto not_implemented;
1707 case GST_RTSP_INVALID:
1714 g_object_unref (session);
1716 gst_rtsp_url_free (uri);
1722 GST_ERROR ("client %p: version %d not supported", client, version);
1723 send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
1729 GST_ERROR ("client %p: bad request", client);
1730 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1735 GST_ERROR ("client %p: no pool configured", client);
1736 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, &state);
1741 GST_ERROR ("client %p: session not found", client);
1742 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, &state);
1747 GST_ERROR ("client %p: not allowed", client);
1748 handle_unauthorized_request (client, priv->auth, &state);
1753 GST_ERROR ("client %p: method %d not implemented", client, method);
1754 send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, &state);
1760 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
1762 GstRTSPClientPrivate *priv = client->priv;
1771 /* find the stream for this message */
1772 res = gst_rtsp_message_parse_data (message, &channel);
1773 if (res != GST_RTSP_OK)
1776 gst_rtsp_message_steal_body (message, &data, &size);
1778 buffer = gst_buffer_new_wrapped (data, size);
1781 for (walk = priv->transports; walk; walk = g_list_next (walk)) {
1782 GstRTSPStreamTransport *trans;
1783 GstRTSPStream *stream;
1784 const GstRTSPTransport *tr;
1788 tr = gst_rtsp_stream_transport_get_transport (trans);
1789 stream = gst_rtsp_stream_transport_get_stream (trans);
1791 /* check for TCP transport */
1792 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1793 /* dispatch to the stream based on the channel number */
1794 if (tr->interleaved.min == channel) {
1795 gst_rtsp_stream_recv_rtp (stream, buffer);
1798 } else if (tr->interleaved.max == channel) {
1799 gst_rtsp_stream_recv_rtcp (stream, buffer);
1806 gst_buffer_unref (buffer);
1810 * gst_rtsp_client_set_session_pool:
1811 * @client: a #GstRTSPClient
1812 * @pool: a #GstRTSPSessionPool
1814 * Set @pool as the sessionpool for @client which it will use to find
1815 * or allocate sessions. the sessionpool is usually inherited from the server
1816 * that created the client but can be overridden later.
1819 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
1820 GstRTSPSessionPool * pool)
1822 GstRTSPSessionPool *old;
1823 GstRTSPClientPrivate *priv;
1825 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1827 priv = client->priv;
1830 g_object_ref (pool);
1832 g_mutex_lock (&priv->lock);
1833 old = priv->session_pool;
1834 priv->session_pool = pool;
1835 g_mutex_unlock (&priv->lock);
1838 g_object_unref (old);
1842 * gst_rtsp_client_get_session_pool:
1843 * @client: a #GstRTSPClient
1845 * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
1847 * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
1849 GstRTSPSessionPool *
1850 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
1852 GstRTSPClientPrivate *priv;
1853 GstRTSPSessionPool *result;
1855 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
1857 priv = client->priv;
1859 g_mutex_lock (&priv->lock);
1860 if ((result = priv->session_pool))
1861 g_object_ref (result);
1862 g_mutex_unlock (&priv->lock);
1868 * gst_rtsp_client_set_mount_points:
1869 * @client: a #GstRTSPClient
1870 * @mounts: a #GstRTSPMountPoints
1872 * Set @mounts as the mount points for @client which it will use to map urls
1873 * to media streams. These mount points are usually inherited from the server that
1874 * created the client but can be overriden later.
1877 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
1878 GstRTSPMountPoints * mounts)
1880 GstRTSPClientPrivate *priv;
1881 GstRTSPMountPoints *old;
1883 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1885 priv = client->priv;
1888 g_object_ref (mounts);
1890 g_mutex_lock (&priv->lock);
1891 old = priv->mount_points;
1892 priv->mount_points = mounts;
1893 g_mutex_unlock (&priv->lock);
1896 g_object_unref (old);
1900 * gst_rtsp_client_get_mount_points:
1901 * @client: a #GstRTSPClient
1903 * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
1905 * Returns: (transfer full): a #GstRTSPMountPoints, unref after usage.
1907 GstRTSPMountPoints *
1908 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
1910 GstRTSPClientPrivate *priv;
1911 GstRTSPMountPoints *result;
1913 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
1915 priv = client->priv;
1917 g_mutex_lock (&priv->lock);
1918 if ((result = priv->mount_points))
1919 g_object_ref (result);
1920 g_mutex_unlock (&priv->lock);
1926 * gst_rtsp_client_set_use_client_settings:
1927 * @client: a #GstRTSPClient
1928 * @use_client_settings: whether to use client settings for multicast
1930 * Use client transport settings (destination and ttl) for multicast.
1931 * When @use_client_settings is %FALSE, the server settings will be
1935 gst_rtsp_client_set_use_client_settings (GstRTSPClient * client,
1936 gboolean use_client_settings)
1938 GstRTSPClientPrivate *priv;
1940 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1942 priv = client->priv;
1944 g_mutex_lock (&priv->lock);
1945 priv->use_client_settings = use_client_settings;
1946 g_mutex_unlock (&priv->lock);
1950 * gst_rtsp_client_get_use_client_settings:
1951 * @client: a #GstRTSPClient
1953 * Check if client transport settings (destination and ttl) for multicast
1957 gst_rtsp_client_get_use_client_settings (GstRTSPClient * client)
1959 GstRTSPClientPrivate *priv;
1962 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
1964 priv = client->priv;
1966 g_mutex_lock (&priv->lock);
1967 res = priv->use_client_settings;
1968 g_mutex_unlock (&priv->lock);
1974 * gst_rtsp_client_set_auth:
1975 * @client: a #GstRTSPClient
1976 * @auth: a #GstRTSPAuth
1978 * configure @auth to be used as the authentication manager of @client.
1981 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
1983 GstRTSPClientPrivate *priv;
1986 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1988 priv = client->priv;
1991 g_object_ref (auth);
1993 g_mutex_lock (&priv->lock);
1996 g_mutex_unlock (&priv->lock);
1999 g_object_unref (old);
2004 * gst_rtsp_client_get_auth:
2005 * @client: a #GstRTSPClient
2007 * Get the #GstRTSPAuth used as the authentication manager of @client.
2009 * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
2013 gst_rtsp_client_get_auth (GstRTSPClient * client)
2015 GstRTSPClientPrivate *priv;
2016 GstRTSPAuth *result;
2018 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2020 priv = client->priv;
2022 g_mutex_lock (&priv->lock);
2023 if ((result = priv->auth))
2024 g_object_ref (result);
2025 g_mutex_unlock (&priv->lock);
2031 * gst_rtsp_client_get_uri:
2032 * @client: a #GstRTSPClient
2034 * Get the #GstRTSPUrl of @client.
2036 * Returns: (transfer full): the #GstRTSPUrl of @client. Free with
2037 * gst_rtsp_url_free () after usage.
2040 gst_rtsp_client_get_uri (GstRTSPClient * client)
2042 GstRTSPClientPrivate *priv;
2043 GstRTSPUrl *result = NULL;
2045 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2047 priv = client->priv;
2049 g_mutex_lock (&priv->lock);
2050 if (priv->uri != NULL)
2051 result = gst_rtsp_url_copy (priv->uri);
2052 g_mutex_unlock (&priv->lock);
2058 * gst_rtsp_client_get_connection:
2059 * @client: a #GstRTSPClient
2061 * Get the #GstRTSPConnection of @client.
2063 * Returns: (transfer none): the #GstRTSPConnection of @client.
2064 * The connection object returned remains valid until the client is freed.
2067 gst_rtsp_client_get_connection (GstRTSPClient * client)
2069 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2071 return client->priv->connection;
2075 * gst_rtsp_client_set_send_func:
2076 * @client: a #GstRTSPClient
2077 * @func: a #GstRTSPClientSendFunc
2078 * @user_data: user data passed to @func
2079 * @notify: called when @user_data is no longer in use
2081 * Set @func as the callback that will be called when a new message needs to be
2082 * sent to the client. @user_data is passed to @func and @notify is called when
2083 * @user_data is no longer in use.
2086 gst_rtsp_client_set_send_func (GstRTSPClient * client,
2087 GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
2089 GstRTSPClientPrivate *priv;
2090 GDestroyNotify old_notify;
2093 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2095 priv = client->priv;
2097 g_mutex_lock (&priv->send_lock);
2098 priv->send_func = func;
2099 old_notify = priv->send_notify;
2100 old_data = priv->send_data;
2101 priv->send_notify = notify;
2102 priv->send_data = user_data;
2103 g_mutex_unlock (&priv->send_lock);
2106 old_notify (old_data);
2110 * gst_rtsp_client_handle_message:
2111 * @client: a #GstRTSPClient
2112 * @message: an #GstRTSPMessage
2114 * Let the client handle @message.
2116 * Returns: a #GstRTSPResult.
2119 gst_rtsp_client_handle_message (GstRTSPClient * client,
2120 GstRTSPMessage * message)
2122 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
2123 g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2125 switch (message->type) {
2126 case GST_RTSP_MESSAGE_REQUEST:
2127 handle_request (client, message);
2129 case GST_RTSP_MESSAGE_RESPONSE:
2131 case GST_RTSP_MESSAGE_DATA:
2132 handle_data (client, message);
2140 static GstRTSPResult
2141 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
2142 gboolean close, gpointer user_data)
2144 GstRTSPClientPrivate *priv = client->priv;
2146 /* send the response and store the seq number so we can wait until it's
2147 * written to the client to close the connection */
2148 return gst_rtsp_watch_send_message (priv->watch, message, close ?
2149 &priv->close_seq : NULL);
2152 static GstRTSPResult
2153 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
2156 return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
2159 static GstRTSPResult
2160 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
2162 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2163 GstRTSPClientPrivate *priv = client->priv;
2165 if (priv->close_seq && priv->close_seq == cseq) {
2166 priv->close_seq = 0;
2167 close_connection (client);
2173 static GstRTSPResult
2174 closed (GstRTSPWatch * watch, gpointer user_data)
2176 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2177 GstRTSPClientPrivate *priv = client->priv;
2178 const gchar *tunnelid;
2180 GST_INFO ("client %p: connection closed", client);
2182 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
2183 g_mutex_lock (&tunnels_lock);
2184 /* remove from tunnelids */
2185 g_hash_table_remove (tunnels, tunnelid);
2186 g_mutex_unlock (&tunnels_lock);
2189 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
2194 static GstRTSPResult
2195 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
2197 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2200 str = gst_rtsp_strresult (result);
2201 GST_INFO ("client %p: received an error %s", client, str);
2207 static GstRTSPResult
2208 error_full (GstRTSPWatch * watch, GstRTSPResult result,
2209 GstRTSPMessage * message, guint id, gpointer user_data)
2211 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2214 str = gst_rtsp_strresult (result);
2216 ("client %p: received an error %s when handling message %p with id %d",
2217 client, str, message, id);
2224 remember_tunnel (GstRTSPClient * client)
2226 GstRTSPClientPrivate *priv = client->priv;
2227 const gchar *tunnelid;
2229 /* store client in the pending tunnels */
2230 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2231 if (tunnelid == NULL)
2234 GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
2236 /* we can't have two clients connecting with the same tunnelid */
2237 g_mutex_lock (&tunnels_lock);
2238 if (g_hash_table_lookup (tunnels, tunnelid))
2239 goto tunnel_existed;
2241 g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
2242 g_mutex_unlock (&tunnels_lock);
2249 GST_ERROR ("client %p: no tunnelid provided", client);
2254 g_mutex_unlock (&tunnels_lock);
2255 GST_ERROR ("client %p: tunnel session %s already existed", client,
2261 static GstRTSPStatusCode
2262 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
2264 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2265 GstRTSPClientPrivate *priv = client->priv;
2267 GST_INFO ("client %p: tunnel start (connection %p)", client,
2270 if (!remember_tunnel (client))
2273 return GST_RTSP_STS_OK;
2278 GST_ERROR ("client %p: error starting tunnel", client);
2279 return GST_RTSP_STS_SERVICE_UNAVAILABLE;
2283 static GstRTSPResult
2284 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
2286 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2287 GstRTSPClientPrivate *priv = client->priv;
2289 GST_WARNING ("client %p: tunnel lost (connection %p)", client,
2292 /* ignore error, it'll only be a problem when the client does a POST again */
2293 remember_tunnel (client);
2298 static GstRTSPResult
2299 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
2301 const gchar *tunnelid;
2302 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2303 GstRTSPClientPrivate *priv = client->priv;
2304 GstRTSPClient *oclient;
2305 GstRTSPClientPrivate *opriv;
2307 GST_INFO ("client %p: tunnel complete", client);
2309 /* find previous tunnel */
2310 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2311 if (tunnelid == NULL)
2314 g_mutex_lock (&tunnels_lock);
2315 if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
2318 /* remove the old client from the table. ref before because removing it will
2319 * remove the ref to it. */
2320 g_object_ref (oclient);
2321 g_hash_table_remove (tunnels, tunnelid);
2323 opriv = oclient->priv;
2325 if (opriv->watch == NULL)
2327 g_mutex_unlock (&tunnels_lock);
2329 GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
2330 opriv->connection, priv->connection);
2332 /* merge the tunnels into the first client */
2333 gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
2334 gst_rtsp_watch_reset (opriv->watch);
2335 g_object_unref (oclient);
2342 GST_ERROR ("client %p: no tunnelid provided", client);
2343 return GST_RTSP_ERROR;
2347 g_mutex_unlock (&tunnels_lock);
2348 GST_ERROR ("client %p: tunnel session %s not found", client, tunnelid);
2349 return GST_RTSP_ERROR;
2353 g_mutex_unlock (&tunnels_lock);
2354 GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
2355 g_object_unref (oclient);
2356 return GST_RTSP_ERROR;
2360 static GstRTSPWatchFuncs watch_funcs = {
2372 client_watch_notify (GstRTSPClient * client)
2374 GstRTSPClientPrivate *priv = client->priv;
2376 GST_INFO ("client %p: watch destroyed", client);
2378 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2379 g_object_unref (client);
2383 setup_client (GstRTSPClient * client, GSocket * socket,
2384 GstRTSPConnection * conn, GError ** error)
2386 GstRTSPClientPrivate *priv = client->priv;
2387 GSocket *read_socket;
2388 GSocketAddress *address;
2391 read_socket = gst_rtsp_connection_get_read_socket (conn);
2392 priv->is_ipv6 = g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV6;
2394 if (!(address = g_socket_get_remote_address (read_socket, error)))
2397 g_free (priv->server_ip);
2398 /* keep the original ip that the client connected to */
2399 if (G_IS_INET_SOCKET_ADDRESS (address)) {
2400 GInetAddress *iaddr;
2402 iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2404 priv->server_ip = g_inet_address_to_string (iaddr);
2405 g_object_unref (address);
2407 priv->server_ip = g_strdup ("unknown");
2410 GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2411 priv->server_ip, priv->is_ipv6);
2413 url = gst_rtsp_connection_get_url (conn);
2414 GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2416 priv->connection = conn;
2423 GST_ERROR ("could not get remote address %s", (*error)->message);
2429 * gst_rtsp_client_use_socket:
2430 * @client: a #GstRTSPClient
2431 * @socket: a #GSocket
2432 * @ip: the IP address of the remote client
2433 * @port: the port used by the other end
2434 * @initial_buffer: any zero terminated initial data that was already read from
2438 * Take an existing network socket and use it for an RTSP connection.
2440 * Returns: %TRUE on success.
2443 gst_rtsp_client_use_socket (GstRTSPClient * client, GSocket * socket,
2444 const gchar * ip, gint port, const gchar * initial_buffer, GError ** error)
2446 GstRTSPConnection *conn;
2449 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2450 g_return_val_if_fail (G_IS_SOCKET (socket), FALSE);
2452 GST_RTSP_CHECK (gst_rtsp_connection_create_from_socket (socket, ip, port,
2453 initial_buffer, &conn), no_connection);
2455 return setup_client (client, socket, conn, error);
2460 gchar *str = gst_rtsp_strresult (res);
2462 GST_ERROR ("could not create connection from socket %p: %s", socket, str);
2469 * gst_rtsp_client_accept:
2470 * @client: a #GstRTSPClient
2471 * @socket: a #GSocket
2472 * @context: the context to run in
2473 * @cancellable: a #GCancellable
2476 * Accept a new connection for @client on @socket.
2478 * Returns: %TRUE if the client could be accepted.
2481 gst_rtsp_client_accept (GstRTSPClient * client, GSocket * socket,
2482 GCancellable * cancellable, GError ** error)
2484 GstRTSPConnection *conn;
2487 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2488 g_return_val_if_fail (G_IS_SOCKET (socket), FALSE);
2490 /* a new client connected. */
2491 GST_RTSP_CHECK (gst_rtsp_connection_accept (socket, &conn, cancellable),
2494 return setup_client (client, socket, conn, error);
2499 gchar *str = gst_rtsp_strresult (res);
2501 GST_ERROR ("Could not accept client on server socket %p: %s", socket, str);
2508 * gst_rtsp_client_attach:
2509 * @client: a #GstRTSPClient
2510 * @context: (allow-none): a #GMainContext
2512 * Attaches @client to @context. When the mainloop for @context is run, the
2513 * client will be dispatched. When @context is NULL, the default context will be
2516 * This function should be called when the client properties and urls are fully
2517 * configured and the client is ready to start.
2519 * Returns: the ID (greater than 0) for the source within the GMainContext.
2522 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
2524 GstRTSPClientPrivate *priv;
2527 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
2528 priv = client->priv;
2529 g_return_val_if_fail (priv->watch == NULL, 0);
2531 /* create watch for the connection and attach */
2532 priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
2533 g_object_ref (client), (GDestroyNotify) client_watch_notify);
2534 gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
2535 (GDestroyNotify) gst_rtsp_watch_unref);
2537 /* FIXME make this configurable. We don't want to do this yet because it will
2538 * be superceeded by a cache object later */
2539 gst_rtsp_watch_set_send_backlog (priv->watch, 0, 100);
2541 GST_INFO ("attaching to context %p", context);
2542 res = gst_rtsp_watch_attach (priv->watch, context);