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.
21 * @short_description: A client connection state
22 * @see_also: #GstRTSPServer, #GstRTSPThreadPool
24 * The client object handles the connection with a client for as long as a TCP
27 * A #GstRTSPClient is created by #GstRTSPServer when a new connection is
28 * accepted and it inherits the #GstRTSPMountPoints, #GstRTSPSessionPool,
29 * #GstRTSPAuth and #GstRTSPThreadPool from the server.
31 * The client connection should be configured with the #GstRTSPConnection using
32 * gst_rtsp_client_set_connection() before it can be attached to a #GMainContext
33 * using gst_rtsp_client_attach(). From then on the client will handle requests
36 * Use gst_rtsp_client_session_filter() to iterate or modify all the
37 * #GstRTSPSession objects managed by the client object.
39 * Last reviewed on 2013-07-11 (1.0.0)
45 #include <gst/sdp/gstmikey.h>
47 #include "rtsp-client.h"
49 #include "rtsp-params.h"
51 #define GST_RTSP_CLIENT_GET_PRIVATE(obj) \
52 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientPrivate))
55 * send_lock, lock, tunnels_lock
58 struct _GstRTSPClientPrivate
60 GMutex lock; /* protects everything else */
63 GstRTSPConnection *connection;
65 GMainContext *watch_context;
70 GstRTSPClientSendFunc send_func; /* protected by send_lock */
71 gpointer send_data; /* protected by send_lock */
72 GDestroyNotify send_notify; /* protected by send_lock */
74 GstRTSPSessionPool *session_pool;
75 gulong session_removed_id;
76 GstRTSPMountPoints *mount_points;
78 GstRTSPThreadPool *thread_pool;
80 /* used to cache the media in the last requested DESCRIBE so that
81 * we can pick it up in the next SETUP immediately */
85 GHashTable *transports;
87 guint sessions_cookie;
89 gboolean drop_backlog;
92 static GMutex tunnels_lock;
93 static GHashTable *tunnels; /* protected by tunnels_lock */
95 /* FIXME make this configurable. We don't want to do this yet because it will
96 * be superceeded by a cache object later */
97 #define WATCH_BACKLOG_SIZE 100
99 #define DEFAULT_SESSION_POOL NULL
100 #define DEFAULT_MOUNT_POINTS NULL
101 #define DEFAULT_DROP_BACKLOG TRUE
116 SIGNAL_OPTIONS_REQUEST,
117 SIGNAL_DESCRIBE_REQUEST,
118 SIGNAL_SETUP_REQUEST,
120 SIGNAL_PAUSE_REQUEST,
121 SIGNAL_TEARDOWN_REQUEST,
122 SIGNAL_SET_PARAMETER_REQUEST,
123 SIGNAL_GET_PARAMETER_REQUEST,
124 SIGNAL_HANDLE_RESPONSE,
129 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
130 #define GST_CAT_DEFAULT rtsp_client_debug
132 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
134 static void gst_rtsp_client_get_property (GObject * object, guint propid,
135 GValue * value, GParamSpec * pspec);
136 static void gst_rtsp_client_set_property (GObject * object, guint propid,
137 const GValue * value, GParamSpec * pspec);
138 static void gst_rtsp_client_finalize (GObject * obj);
140 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
141 static gboolean default_configure_client_media (GstRTSPClient * client,
142 GstRTSPMedia * media, GstRTSPStream * stream, GstRTSPContext * ctx);
143 static gboolean default_configure_client_transport (GstRTSPClient * client,
144 GstRTSPContext * ctx, GstRTSPTransport * ct);
145 static GstRTSPResult default_params_set (GstRTSPClient * client,
146 GstRTSPContext * ctx);
147 static GstRTSPResult default_params_get (GstRTSPClient * client,
148 GstRTSPContext * ctx);
149 static gchar *default_make_path_from_uri (GstRTSPClient * client,
150 const GstRTSPUrl * uri);
151 static void client_session_removed (GstRTSPSessionPool * pool,
152 GstRTSPSession * session, GstRTSPClient * client);
154 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
157 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
159 GObjectClass *gobject_class;
161 g_type_class_add_private (klass, sizeof (GstRTSPClientPrivate));
163 gobject_class = G_OBJECT_CLASS (klass);
165 gobject_class->get_property = gst_rtsp_client_get_property;
166 gobject_class->set_property = gst_rtsp_client_set_property;
167 gobject_class->finalize = gst_rtsp_client_finalize;
169 klass->create_sdp = create_sdp;
170 klass->configure_client_media = default_configure_client_media;
171 klass->configure_client_transport = default_configure_client_transport;
172 klass->params_set = default_params_set;
173 klass->params_get = default_params_get;
174 klass->make_path_from_uri = default_make_path_from_uri;
176 g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
177 g_param_spec_object ("session-pool", "Session Pool",
178 "The session pool to use for client session",
179 GST_TYPE_RTSP_SESSION_POOL,
180 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
182 g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
183 g_param_spec_object ("mount-points", "Mount Points",
184 "The mount points to use for client session",
185 GST_TYPE_RTSP_MOUNT_POINTS,
186 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
188 g_object_class_install_property (gobject_class, PROP_DROP_BACKLOG,
189 g_param_spec_boolean ("drop-backlog", "Drop Backlog",
190 "Drop data when the backlog queue is full",
191 DEFAULT_DROP_BACKLOG, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
193 gst_rtsp_client_signals[SIGNAL_CLOSED] =
194 g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
195 G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
196 g_cclosure_marshal_generic, G_TYPE_NONE, 0, G_TYPE_NONE);
198 gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
199 g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
200 G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
201 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
203 gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
204 g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
205 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
206 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
207 GST_TYPE_RTSP_CONTEXT);
209 gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
210 g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
211 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
212 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
213 GST_TYPE_RTSP_CONTEXT);
215 gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
216 g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
217 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
218 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
219 GST_TYPE_RTSP_CONTEXT);
221 gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
222 g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
223 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
224 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
225 GST_TYPE_RTSP_CONTEXT);
227 gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
228 g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
229 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
230 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
231 GST_TYPE_RTSP_CONTEXT);
233 gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
234 g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
235 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
236 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
237 GST_TYPE_RTSP_CONTEXT);
239 gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
240 g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
241 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
242 set_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
243 G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
245 gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
246 g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
247 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
248 get_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
249 G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
251 gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
252 g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
253 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
254 handle_response), NULL, NULL, g_cclosure_marshal_generic,
255 G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
258 * GstRTSPClient::send-message:
259 * @client: The RTSP client
260 * @session: (type GstRtspServer.RTSPSession): The session
261 * @message: (type GstRtsp.RTSPMessage): The message
263 gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE] =
264 g_signal_new ("send-message", G_TYPE_FROM_CLASS (klass),
265 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
266 send_message), NULL, NULL, g_cclosure_marshal_generic,
267 G_TYPE_NONE, 2, GST_TYPE_RTSP_CONTEXT, G_TYPE_POINTER);
270 g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
271 g_mutex_init (&tunnels_lock);
273 GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
277 gst_rtsp_client_init (GstRTSPClient * client)
279 GstRTSPClientPrivate *priv = GST_RTSP_CLIENT_GET_PRIVATE (client);
283 g_mutex_init (&priv->lock);
284 g_mutex_init (&priv->send_lock);
285 g_mutex_init (&priv->watch_lock);
287 priv->drop_backlog = DEFAULT_DROP_BACKLOG;
289 g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL,
293 static GstRTSPFilterResult
294 filter_session_media (GstRTSPSession * sess, GstRTSPSessionMedia * sessmedia,
297 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
299 return GST_RTSP_FILTER_REMOVE;
303 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
305 GstRTSPClientPrivate *priv = client->priv;
307 g_mutex_lock (&priv->lock);
308 /* check if we already know about this session */
309 if (g_list_find (priv->sessions, session) == NULL) {
310 GST_INFO ("watching session %p", session);
312 priv->sessions = g_list_prepend (priv->sessions, g_object_ref (session));
313 priv->sessions_cookie++;
315 /* connect removed session handler, it will be disconnected when the last
316 * session gets removed */
317 if (priv->session_removed_id == 0)
318 priv->session_removed_id = g_signal_connect_data (priv->session_pool,
319 "session-removed", G_CALLBACK (client_session_removed),
320 g_object_ref (client), (GClosureNotify) g_object_unref, 0);
322 g_mutex_unlock (&priv->lock);
327 /* should be called with lock */
329 client_unwatch_session (GstRTSPClient * client, GstRTSPSession * session,
332 GstRTSPClientPrivate *priv = client->priv;
334 GST_INFO ("client %p: unwatch session %p", client, session);
337 link = g_list_find (priv->sessions, session);
342 priv->sessions = g_list_delete_link (priv->sessions, link);
343 priv->sessions_cookie++;
345 /* if this was the last session, disconnect the handler.
346 * This will also drop the extra client ref */
347 if (!priv->sessions) {
348 g_signal_handler_disconnect (priv->session_pool, priv->session_removed_id);
349 priv->session_removed_id = 0;
352 /* remove the session */
353 g_object_unref (session);
356 static GstRTSPFilterResult
357 cleanup_session (GstRTSPClient * client, GstRTSPSession * sess,
360 /* unlink all media managed in this session. This needs to happen
361 * without the client lock, so we really want to do it here. */
362 gst_rtsp_session_filter (sess, filter_session_media, client);
364 return GST_RTSP_FILTER_REMOVE;
368 clean_cached_media (GstRTSPClient * client, gboolean unprepare)
370 GstRTSPClientPrivate *priv = client->priv;
378 gst_rtsp_media_unprepare (priv->media);
379 g_object_unref (priv->media);
384 /* A client is finalized when the connection is broken */
386 gst_rtsp_client_finalize (GObject * obj)
388 GstRTSPClient *client = GST_RTSP_CLIENT (obj);
389 GstRTSPClientPrivate *priv = client->priv;
391 GST_INFO ("finalize client %p", client);
394 gst_rtsp_watch_set_flushing (priv->watch, TRUE);
395 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
398 g_source_destroy ((GSource *) priv->watch);
400 if (priv->watch_context)
401 g_main_context_unref (priv->watch_context);
403 /* all sessions should have been removed by now. We keep a ref to
404 * the client object for the session removed handler. The ref is
405 * dropped when the last session is removed from the list. */
406 g_assert (priv->sessions == NULL);
407 g_assert (priv->session_removed_id == 0);
409 g_hash_table_unref (priv->transports);
411 if (priv->connection)
412 gst_rtsp_connection_free (priv->connection);
413 if (priv->session_pool) {
414 g_object_unref (priv->session_pool);
416 if (priv->mount_points)
417 g_object_unref (priv->mount_points);
419 g_object_unref (priv->auth);
420 if (priv->thread_pool)
421 g_object_unref (priv->thread_pool);
423 clean_cached_media (client, TRUE);
425 g_free (priv->server_ip);
426 g_mutex_clear (&priv->lock);
427 g_mutex_clear (&priv->send_lock);
428 g_mutex_clear (&priv->watch_lock);
430 G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
434 gst_rtsp_client_get_property (GObject * object, guint propid,
435 GValue * value, GParamSpec * pspec)
437 GstRTSPClient *client = GST_RTSP_CLIENT (object);
438 GstRTSPClientPrivate *priv = client->priv;
441 case PROP_SESSION_POOL:
442 g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
444 case PROP_MOUNT_POINTS:
445 g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
447 case PROP_DROP_BACKLOG:
448 g_value_set_boolean (value, priv->drop_backlog);
451 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
456 gst_rtsp_client_set_property (GObject * object, guint propid,
457 const GValue * value, GParamSpec * pspec)
459 GstRTSPClient *client = GST_RTSP_CLIENT (object);
460 GstRTSPClientPrivate *priv = client->priv;
463 case PROP_SESSION_POOL:
464 gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
466 case PROP_MOUNT_POINTS:
467 gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
469 case PROP_DROP_BACKLOG:
470 g_mutex_lock (&priv->lock);
471 priv->drop_backlog = g_value_get_boolean (value);
472 g_mutex_unlock (&priv->lock);
475 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
480 * gst_rtsp_client_new:
482 * Create a new #GstRTSPClient instance.
484 * Returns: (transfer full): a new #GstRTSPClient
487 gst_rtsp_client_new (void)
489 GstRTSPClient *result;
491 result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
497 send_message (GstRTSPClient * client, GstRTSPContext * ctx,
498 GstRTSPMessage * message, gboolean close)
500 GstRTSPClientPrivate *priv = client->priv;
502 gst_rtsp_message_add_header (message, GST_RTSP_HDR_SERVER,
503 "GStreamer RTSP server");
505 /* remove any previous header */
506 gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
508 /* add the new session header for new session ids */
510 gst_rtsp_message_take_header (message, GST_RTSP_HDR_SESSION,
511 gst_rtsp_session_get_header (ctx->session));
514 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
515 gst_rtsp_message_dump (message);
519 gst_rtsp_message_add_header (message, GST_RTSP_HDR_CONNECTION, "close");
521 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE],
524 g_mutex_lock (&priv->send_lock);
526 priv->send_func (client, message, close, priv->send_data);
527 g_mutex_unlock (&priv->send_lock);
529 gst_rtsp_message_unset (message);
533 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
534 GstRTSPContext * ctx)
536 gst_rtsp_message_init_response (ctx->response, code,
537 gst_rtsp_status_as_text (code), ctx->request);
541 send_message (client, ctx, ctx->response, FALSE);
545 send_option_not_supported_response (GstRTSPClient * client,
546 GstRTSPContext * ctx, const gchar * unsupported_options)
548 GstRTSPStatusCode code = GST_RTSP_STS_OPTION_NOT_SUPPORTED;
550 gst_rtsp_message_init_response (ctx->response, code,
551 gst_rtsp_status_as_text (code), ctx->request);
553 if (unsupported_options != NULL) {
554 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_UNSUPPORTED,
555 unsupported_options);
560 send_message (client, ctx, ctx->response, FALSE);
564 paths_are_equal (const gchar * path1, const gchar * path2, gint len2)
566 if (path1 == NULL || path2 == NULL)
569 if (strlen (path1) != len2)
572 if (strncmp (path1, path2, len2))
578 /* this function is called to initially find the media for the DESCRIBE request
579 * but is cached for when the same client (without breaking the connection) is
580 * doing a setup for the exact same url. */
581 static GstRTSPMedia *
582 find_media (GstRTSPClient * client, GstRTSPContext * ctx, gchar * path,
585 GstRTSPClientPrivate *priv = client->priv;
586 GstRTSPMediaFactory *factory;
590 /* find the longest matching factory for the uri first */
591 if (!(factory = gst_rtsp_mount_points_match (priv->mount_points,
595 ctx->factory = factory;
597 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS))
598 goto no_factory_access;
600 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT))
606 path_len = strlen (path);
608 if (!paths_are_equal (priv->path, path, path_len)) {
609 GstRTSPThread *thread;
611 /* remove any previously cached values before we try to construct a new
613 clean_cached_media (client, TRUE);
615 /* prepare the media and add it to the pipeline */
616 if (!(media = gst_rtsp_media_factory_construct (factory, ctx->uri)))
621 thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
622 GST_RTSP_THREAD_TYPE_MEDIA, ctx);
626 /* prepare the media */
627 if (!(gst_rtsp_media_prepare (media, thread)))
630 /* now keep track of the uri and the media */
631 priv->path = g_strndup (path, path_len);
634 /* we have seen this path before, used cached media */
637 GST_INFO ("reusing cached media %p for path %s", media, priv->path);
640 g_object_unref (factory);
644 g_object_ref (media);
651 GST_ERROR ("client %p: no factory for path %s", client, path);
652 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
657 GST_ERROR ("client %p: not authorized to see factory path %s", client,
659 /* error reply is already sent */
664 GST_ERROR ("client %p: not authorized for factory path %s", client, path);
665 /* error reply is already sent */
670 GST_ERROR ("client %p: can't create media", client);
671 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
672 g_object_unref (factory);
678 GST_ERROR ("client %p: can't create thread", client);
679 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
680 g_object_unref (media);
682 g_object_unref (factory);
688 GST_ERROR ("client %p: can't prepare media", client);
689 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
690 g_object_unref (media);
692 g_object_unref (factory);
699 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
701 GstRTSPClientPrivate *priv = client->priv;
702 GstRTSPMessage message = { 0 };
703 GstRTSPResult res = GST_RTSP_OK;
708 gst_rtsp_message_init_data (&message, channel);
710 /* FIXME, need some sort of iovec RTSPMessage here */
711 if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
714 gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
716 g_mutex_lock (&priv->send_lock);
718 res = priv->send_func (client, &message, FALSE, priv->send_data);
719 g_mutex_unlock (&priv->send_lock);
721 gst_rtsp_message_steal_body (&message, &data, &usize);
722 gst_buffer_unmap (buffer, &map_info);
724 gst_rtsp_message_unset (&message);
726 return res == GST_RTSP_OK;
730 * gst_rtsp_client_close:
731 * @client: a #GstRTSPClient
733 * Close the connection of @client and remove all media it was managing.
738 gst_rtsp_client_close (GstRTSPClient * client)
740 GstRTSPClientPrivate *priv = client->priv;
741 const gchar *tunnelid;
743 GST_DEBUG ("client %p: closing connection", client);
745 if (priv->connection) {
746 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
747 g_mutex_lock (&tunnels_lock);
748 /* remove from tunnelids */
749 g_hash_table_remove (tunnels, tunnelid);
750 g_mutex_unlock (&tunnels_lock);
752 gst_rtsp_connection_close (priv->connection);
755 /* connection is now closed, destroy the watch which will also cause the
756 * closed signal to be emitted */
758 GST_DEBUG ("client %p: destroying watch", client);
759 g_source_destroy ((GSource *) priv->watch);
761 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
762 g_main_context_unref (priv->watch_context);
763 priv->watch_context = NULL;
768 default_make_path_from_uri (GstRTSPClient * client, const GstRTSPUrl * uri)
773 path = g_strconcat (uri->abspath, "?", uri->query, NULL);
775 path = g_strdup (uri->abspath);
781 handle_teardown_request (GstRTSPClient * client, GstRTSPContext * ctx)
783 GstRTSPClientPrivate *priv = client->priv;
784 GstRTSPClientClass *klass;
785 GstRTSPSession *session;
786 GstRTSPSessionMedia *sessmedia;
787 GstRTSPStatusCode code;
790 gboolean keep_session;
795 session = ctx->session;
800 klass = GST_RTSP_CLIENT_GET_CLASS (client);
801 path = klass->make_path_from_uri (client, ctx->uri);
803 /* get a handle to the configuration of the media in the session */
804 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
808 /* only aggregate control for now.. */
809 if (path[matched] != '\0')
814 ctx->sessmedia = sessmedia;
816 /* we emit the signal before closing the connection */
817 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
820 /* make sure we unblock the backlog and don't accept new messages
822 if (priv->watch != NULL)
823 gst_rtsp_watch_set_flushing (priv->watch, TRUE);
825 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
827 /* allow messages again so that we can send the reply */
828 if (priv->watch != NULL)
829 gst_rtsp_watch_set_flushing (priv->watch, FALSE);
831 /* unmanage the media in the session, returns false if all media session
833 keep_session = gst_rtsp_session_release_media (session, sessmedia);
835 /* construct the response now */
836 code = GST_RTSP_STS_OK;
837 gst_rtsp_message_init_response (ctx->response, code,
838 gst_rtsp_status_as_text (code), ctx->request);
840 send_message (client, ctx, ctx->response, TRUE);
843 /* remove the session */
844 gst_rtsp_session_pool_remove (priv->session_pool, session);
852 GST_ERROR ("client %p: no session", client);
853 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
858 GST_ERROR ("client %p: no uri supplied", client);
859 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
864 GST_ERROR ("client %p: no media for uri", client);
865 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
871 GST_ERROR ("client %p: no aggregate path %s", client, path);
872 send_generic_response (client,
873 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
880 default_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
884 res = gst_rtsp_params_set (client, ctx);
890 default_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
894 res = gst_rtsp_params_get (client, ctx);
900 handle_get_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
906 res = gst_rtsp_message_get_body (ctx->request, &data, &size);
907 if (res != GST_RTSP_OK)
911 /* no body, keep-alive request */
912 send_generic_response (client, GST_RTSP_STS_OK, ctx);
914 /* there is a body, handle the params */
915 res = GST_RTSP_CLIENT_GET_CLASS (client)->params_get (client, ctx);
916 if (res != GST_RTSP_OK)
919 send_message (client, ctx, ctx->response, FALSE);
922 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
930 GST_ERROR ("client %p: bad request", client);
931 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
937 handle_set_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
943 res = gst_rtsp_message_get_body (ctx->request, &data, &size);
944 if (res != GST_RTSP_OK)
948 /* no body, keep-alive request */
949 send_generic_response (client, GST_RTSP_STS_OK, ctx);
951 /* there is a body, handle the params */
952 res = GST_RTSP_CLIENT_GET_CLASS (client)->params_set (client, ctx);
953 if (res != GST_RTSP_OK)
956 send_message (client, ctx, ctx->response, FALSE);
959 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
967 GST_ERROR ("client %p: bad request", client);
968 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
974 handle_pause_request (GstRTSPClient * client, GstRTSPContext * ctx)
976 GstRTSPSession *session;
977 GstRTSPClientClass *klass;
978 GstRTSPSessionMedia *sessmedia;
979 GstRTSPStatusCode code;
980 GstRTSPState rtspstate;
984 if (!(session = ctx->session))
990 klass = GST_RTSP_CLIENT_GET_CLASS (client);
991 path = klass->make_path_from_uri (client, ctx->uri);
993 /* get a handle to the configuration of the media in the session */
994 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
998 if (path[matched] != '\0')
1003 ctx->sessmedia = sessmedia;
1005 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1006 /* the session state must be playing or recording */
1007 if (rtspstate != GST_RTSP_STATE_PLAYING &&
1008 rtspstate != GST_RTSP_STATE_RECORDING)
1011 /* then pause sending */
1012 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PAUSED);
1014 /* construct the response now */
1015 code = GST_RTSP_STS_OK;
1016 gst_rtsp_message_init_response (ctx->response, code,
1017 gst_rtsp_status_as_text (code), ctx->request);
1019 send_message (client, ctx, ctx->response, FALSE);
1021 /* the state is now READY */
1022 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1024 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST], 0, ctx);
1031 GST_ERROR ("client %p: no seesion", client);
1032 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1037 GST_ERROR ("client %p: no uri supplied", client);
1038 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1043 GST_ERROR ("client %p: no media for uri", client);
1044 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1050 GST_ERROR ("client %p: no aggregate path %s", client, path);
1051 send_generic_response (client,
1052 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1058 GST_ERROR ("client %p: not PLAYING or RECORDING", client);
1059 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1065 /* convert @url and @path to a URL used as a content base for the factory
1066 * located at @path */
1068 make_base_url (GstRTSPClient * client, GstRTSPUrl * url, const gchar * path)
1074 /* check for trailing '/' and append one */
1075 trail = (path[strlen (path) - 1] != '/' ? "/" : "");
1080 tmp.abspath = g_strdup_printf ("%s%s", path, trail);
1082 result = gst_rtsp_url_get_request_uri (&tmp);
1083 g_free (tmp.abspath);
1089 handle_play_request (GstRTSPClient * client, GstRTSPContext * ctx)
1091 GstRTSPSession *session;
1092 GstRTSPClientClass *klass;
1093 GstRTSPSessionMedia *sessmedia;
1094 GstRTSPMedia *media;
1095 GstRTSPStatusCode code;
1098 GstRTSPTimeRange *range;
1100 GstRTSPState rtspstate;
1101 GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
1102 gchar *path, *rtpinfo;
1105 if (!(session = ctx->session))
1108 if (!(uri = ctx->uri))
1111 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1112 path = klass->make_path_from_uri (client, uri);
1114 /* get a handle to the configuration of the media in the session */
1115 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1119 if (path[matched] != '\0')
1124 ctx->sessmedia = sessmedia;
1125 ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
1127 /* the session state must be playing or ready */
1128 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1129 if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
1132 /* in play we first unsuspend, media could be suspended from SDP or PAUSED */
1133 if (!gst_rtsp_media_unsuspend (media))
1134 goto unsuspend_failed;
1136 /* parse the range header if we have one */
1137 res = gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_RANGE, &str, 0);
1138 if (res == GST_RTSP_OK) {
1139 if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
1140 /* we have a range, seek to the position */
1142 gst_rtsp_media_seek (media, range);
1143 gst_rtsp_range_free (range);
1147 /* grab RTPInfo from the media now */
1148 rtpinfo = gst_rtsp_session_media_get_rtpinfo (sessmedia);
1150 /* construct the response now */
1151 code = GST_RTSP_STS_OK;
1152 gst_rtsp_message_init_response (ctx->response, code,
1153 gst_rtsp_status_as_text (code), ctx->request);
1155 /* add the RTP-Info header */
1157 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RTP_INFO,
1161 str = gst_rtsp_media_get_range_string (media, TRUE, unit);
1163 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RANGE, str);
1165 send_message (client, ctx, ctx->response, FALSE);
1167 /* start playing after sending the response */
1168 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
1170 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
1172 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST], 0, ctx);
1179 GST_ERROR ("client %p: no session", client);
1180 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1185 GST_ERROR ("client %p: no uri supplied", client);
1186 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1191 GST_ERROR ("client %p: media not found", client);
1192 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1197 GST_ERROR ("client %p: no aggregate path %s", client, path);
1198 send_generic_response (client,
1199 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1205 GST_ERROR ("client %p: not PLAYING or READY", client);
1206 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1212 GST_ERROR ("client %p: unsuspend failed", client);
1213 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1219 do_keepalive (GstRTSPSession * session)
1221 GST_INFO ("keep session %p alive", session);
1222 gst_rtsp_session_touch (session);
1225 /* parse @transport and return a valid transport in @tr. only transports
1226 * supported by @stream are returned. Returns FALSE if no valid transport
1229 parse_transport (const char *transport, GstRTSPStream * stream,
1230 GstRTSPTransport * tr)
1237 gst_rtsp_transport_init (tr);
1239 GST_DEBUG ("parsing transports %s", transport);
1241 transports = g_strsplit (transport, ",", 0);
1243 /* loop through the transports, try to parse */
1244 for (i = 0; transports[i]; i++) {
1245 res = gst_rtsp_transport_parse (transports[i], tr);
1246 if (res != GST_RTSP_OK) {
1247 /* no valid transport, search some more */
1248 GST_WARNING ("could not parse transport %s", transports[i]);
1252 /* we have a transport, see if it's supported */
1253 if (!gst_rtsp_stream_is_transport_supported (stream, tr)) {
1254 GST_WARNING ("unsupported transport %s", transports[i]);
1258 /* we have a valid transport */
1259 GST_INFO ("found valid transport %s", transports[i]);
1264 gst_rtsp_transport_init (tr);
1266 g_strfreev (transports);
1272 default_configure_client_media (GstRTSPClient * client, GstRTSPMedia * media,
1273 GstRTSPStream * stream, GstRTSPContext * ctx)
1275 GstRTSPMessage *request = ctx->request;
1276 gchar *blocksize_str;
1278 if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1279 &blocksize_str, 0) == GST_RTSP_OK) {
1283 blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1284 if (end == blocksize_str)
1287 /* we don't want to change the mtu when this media
1288 * can be shared because it impacts other clients */
1289 if (gst_rtsp_media_is_shared (media))
1292 if (blocksize > G_MAXUINT)
1293 blocksize = G_MAXUINT;
1295 gst_rtsp_stream_set_mtu (stream, blocksize);
1303 GST_ERROR_OBJECT (client, "failed to parse blocksize");
1304 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1310 default_configure_client_transport (GstRTSPClient * client,
1311 GstRTSPContext * ctx, GstRTSPTransport * ct)
1313 GstRTSPClientPrivate *priv = client->priv;
1315 /* we have a valid transport now, set the destination of the client. */
1316 if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1317 gboolean use_client_settings;
1319 use_client_settings =
1320 gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS);
1322 if (ct->destination && use_client_settings) {
1323 GstRTSPAddress *addr;
1325 addr = gst_rtsp_stream_reserve_address (ctx->stream, ct->destination,
1326 ct->port.min, ct->port.max - ct->port.min + 1, ct->ttl);
1331 gst_rtsp_address_free (addr);
1333 GstRTSPAddress *addr;
1334 GSocketFamily family;
1336 family = priv->is_ipv6 ? G_SOCKET_FAMILY_IPV6 : G_SOCKET_FAMILY_IPV4;
1338 addr = gst_rtsp_stream_get_multicast_address (ctx->stream, family);
1342 g_free (ct->destination);
1343 ct->destination = g_strdup (addr->address);
1344 ct->port.min = addr->port;
1345 ct->port.max = addr->port + addr->n_ports - 1;
1346 ct->ttl = addr->ttl;
1348 gst_rtsp_address_free (addr);
1353 url = gst_rtsp_connection_get_url (priv->connection);
1354 g_free (ct->destination);
1355 ct->destination = g_strdup (url->host);
1357 if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1359 GSocketAddress *addr;
1361 sock = gst_rtsp_connection_get_read_socket (priv->connection);
1362 if ((addr = g_socket_get_remote_address (sock, NULL))) {
1363 /* our read port is the sender port of client */
1364 ct->client_port.min =
1365 g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1366 g_object_unref (addr);
1368 if ((addr = g_socket_get_local_address (sock, NULL))) {
1369 ct->server_port.max =
1370 g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1371 g_object_unref (addr);
1373 sock = gst_rtsp_connection_get_write_socket (priv->connection);
1374 if ((addr = g_socket_get_remote_address (sock, NULL))) {
1375 /* our write port is the receiver port of client */
1376 ct->client_port.max =
1377 g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1378 g_object_unref (addr);
1380 if ((addr = g_socket_get_local_address (sock, NULL))) {
1381 ct->server_port.min =
1382 g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr));
1383 g_object_unref (addr);
1385 /* check if the client selected channels for TCP */
1386 if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1387 gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
1397 GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1402 static GstRTSPTransport *
1403 make_server_transport (GstRTSPClient * client, GstRTSPContext * ctx,
1404 GstRTSPTransport * ct)
1406 GstRTSPTransport *st;
1408 GSocketFamily family;
1410 /* prepare the server transport */
1411 gst_rtsp_transport_new (&st);
1413 st->trans = ct->trans;
1414 st->profile = ct->profile;
1415 st->lower_transport = ct->lower_transport;
1417 addr = g_inet_address_new_from_string (ct->destination);
1420 GST_ERROR ("failed to get inet addr from client destination");
1421 family = G_SOCKET_FAMILY_IPV4;
1423 family = g_inet_address_get_family (addr);
1424 g_object_unref (addr);
1428 switch (st->lower_transport) {
1429 case GST_RTSP_LOWER_TRANS_UDP:
1430 st->client_port = ct->client_port;
1431 gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
1433 case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1434 st->port = ct->port;
1435 st->destination = g_strdup (ct->destination);
1438 case GST_RTSP_LOWER_TRANS_TCP:
1439 st->interleaved = ct->interleaved;
1440 st->client_port = ct->client_port;
1441 st->server_port = ct->server_port;
1446 gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
1451 #define AES_128_KEY_LEN 16
1452 #define AES_256_KEY_LEN 32
1454 #define HMAC_32_KEY_LEN 4
1455 #define HMAC_80_KEY_LEN 10
1458 mikey_apply_policy (GstCaps * caps, GstMIKEYMessage * msg, guint8 policy)
1460 const gchar *srtp_cipher;
1461 const gchar *srtp_auth;
1462 const GstMIKEYPayload *sp;
1465 /* loop over Security policy until we find one containing policy */
1467 if ((sp = gst_mikey_message_find_payload (msg, GST_MIKEY_PT_SP, i)) == NULL)
1470 if (((GstMIKEYPayloadSP *) sp)->policy == policy)
1474 /* the default ciphers */
1475 srtp_cipher = "aes-128-icm";
1476 srtp_auth = "hmac-sha1-80";
1478 /* now override the defaults with what is in the Security Policy */
1482 /* collect all the params and go over them */
1483 len = gst_mikey_payload_sp_get_n_params (sp);
1484 for (i = 0; i < len; i++) {
1485 const GstMIKEYPayloadSPParam *param =
1486 gst_mikey_payload_sp_get_param (sp, i);
1488 switch (param->type) {
1489 case GST_MIKEY_SP_SRTP_ENC_ALG:
1490 switch (param->val[0]) {
1492 srtp_cipher = "null";
1496 srtp_cipher = "aes-128-icm";
1502 case GST_MIKEY_SP_SRTP_ENC_KEY_LEN:
1503 switch (param->val[0]) {
1504 case AES_128_KEY_LEN:
1505 srtp_cipher = "aes-128-icm";
1507 case AES_256_KEY_LEN:
1508 srtp_cipher = "aes-256-icm";
1514 case GST_MIKEY_SP_SRTP_AUTH_ALG:
1515 switch (param->val[0]) {
1521 srtp_auth = "hmac-sha1-80";
1527 case GST_MIKEY_SP_SRTP_AUTH_KEY_LEN:
1528 switch (param->val[0]) {
1529 case HMAC_32_KEY_LEN:
1530 srtp_auth = "hmac-sha1-32";
1532 case HMAC_80_KEY_LEN:
1533 srtp_auth = "hmac-sha1-80";
1539 case GST_MIKEY_SP_SRTP_SRTP_ENC:
1541 case GST_MIKEY_SP_SRTP_SRTCP_ENC:
1548 /* now configure the SRTP parameters */
1549 gst_caps_set_simple (caps,
1550 "srtp-cipher", G_TYPE_STRING, srtp_cipher,
1551 "srtp-auth", G_TYPE_STRING, srtp_auth,
1552 "srtcp-cipher", G_TYPE_STRING, srtp_cipher,
1553 "srtcp-auth", G_TYPE_STRING, srtp_auth, NULL);
1559 handle_mikey_data (GstRTSPClient * client, GstRTSPContext * ctx,
1560 guint8 * data, gsize size)
1562 GstMIKEYMessage *msg;
1564 GstCaps *caps = NULL;
1565 GstMIKEYPayloadKEMAC *kemac;
1566 const GstMIKEYPayloadKeyData *pkd;
1569 /* the MIKEY message contains a CSB or crypto session bundle. It is a
1570 * set of Crypto Sessions protected with the same master key.
1571 * In the context of SRTP, an RTP and its RTCP stream is part of a
1573 if ((msg = gst_mikey_message_new_from_data (data, size, NULL, NULL)) == NULL)
1576 /* we can only handle SRTP crypto sessions for now */
1577 if (msg->map_type != GST_MIKEY_MAP_TYPE_SRTP)
1578 goto invalid_map_type;
1580 /* get the number of crypto sessions. This maps SSRC to its
1581 * security parameters */
1582 n_cs = gst_mikey_message_get_n_cs (msg);
1584 goto no_crypto_sessions;
1586 /* we also need keys */
1587 if (!(kemac = (GstMIKEYPayloadKEMAC *) gst_mikey_message_find_payload
1588 (msg, GST_MIKEY_PT_KEMAC, 0)))
1591 /* we don't support encrypted keys */
1592 if (kemac->enc_alg != GST_MIKEY_ENC_NULL
1593 || kemac->mac_alg != GST_MIKEY_MAC_NULL)
1594 goto unsupported_encryption;
1596 /* get Key data sub-payload */
1597 pkd = (const GstMIKEYPayloadKeyData *)
1598 gst_mikey_payload_kemac_get_sub (&kemac->pt, 0);
1601 gst_buffer_new_wrapped (g_memdup (pkd->key_data, pkd->key_len),
1604 /* go over all crypto sessions and create the security policy for each
1606 for (i = 0; i < n_cs; i++) {
1607 const GstMIKEYMapSRTP *map = gst_mikey_message_get_cs_srtp (msg, i);
1609 caps = gst_caps_new_simple ("application/x-srtp",
1610 "ssrc", G_TYPE_UINT, map->ssrc,
1611 "roc", G_TYPE_UINT, map->roc, "srtp-key", GST_TYPE_BUFFER, key, NULL);
1612 mikey_apply_policy (caps, msg, map->policy);
1614 gst_rtsp_stream_update_crypto (ctx->stream, map->ssrc, caps);
1615 gst_caps_unref (caps);
1617 gst_mikey_message_unref (msg);
1618 gst_buffer_unref (key);
1625 GST_DEBUG_OBJECT (client, "failed to parse MIKEY message");
1630 GST_DEBUG_OBJECT (client, "invalid map type %d", msg->map_type);
1631 goto cleanup_message;
1635 GST_DEBUG_OBJECT (client, "no crypto sessions");
1636 goto cleanup_message;
1640 GST_DEBUG_OBJECT (client, "no keys found");
1641 goto cleanup_message;
1643 unsupported_encryption:
1645 GST_DEBUG_OBJECT (client, "unsupported key encryption");
1646 goto cleanup_message;
1650 gst_mikey_message_unref (msg);
1655 #define IS_STRIP_CHAR(c) (g_ascii_isspace ((guchar)(c)) || ((c) == '\"'))
1658 strip_chars (gchar * str)
1665 if (!IS_STRIP_CHAR (str[len]))
1669 for (s = str; *s && IS_STRIP_CHAR (*s); s++);
1670 memmove (str, s, len + 1);
1673 /* KeyMgmt = "KeyMgmt" ":" key-mgmt-spec 0*("," key-mgmt-spec)
1674 * key-mgmt-spec = "prot" "=" KMPID ";" ["uri" "=" %x22 URI %x22 ";"]
1677 handle_keymgmt (GstRTSPClient * client, GstRTSPContext * ctx, gchar * keymgmt)
1682 specs = g_strsplit (keymgmt, ",", 0);
1683 for (i = 0; specs[i]; i++) {
1686 split = g_strsplit (specs[i], ";", 0);
1687 for (j = 0; split[j]; j++) {
1688 g_strstrip (split[j]);
1689 if (g_str_has_prefix (split[j], "prot=")) {
1690 g_strstrip (split[j] + 5);
1691 if (!g_str_equal (split[j] + 5, "mikey"))
1693 GST_DEBUG ("found mikey");
1694 } else if (g_str_has_prefix (split[j], "uri=")) {
1695 strip_chars (split[j] + 4);
1696 GST_DEBUG ("found uri '%s'", split[j] + 4);
1697 } else if (g_str_has_prefix (split[j], "data=")) {
1700 strip_chars (split[j] + 5);
1701 GST_DEBUG ("found data '%s'", split[j] + 5);
1702 data = g_base64_decode_inplace (split[j] + 5, &size);
1703 handle_mikey_data (client, ctx, data, size);
1713 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
1715 GstRTSPClientPrivate *priv = client->priv;
1718 gchar *transport, *keymgmt;
1719 GstRTSPTransport *ct, *st;
1720 GstRTSPStatusCode code;
1721 GstRTSPSession *session;
1722 GstRTSPStreamTransport *trans;
1724 GstRTSPSessionMedia *sessmedia;
1725 GstRTSPMedia *media;
1726 GstRTSPStream *stream;
1727 GstRTSPState rtspstate;
1728 GstRTSPClientClass *klass;
1729 gchar *path, *control = NULL;
1731 gboolean new_session = FALSE;
1737 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1738 path = klass->make_path_from_uri (client, uri);
1740 /* parse the transport */
1742 gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
1744 if (res != GST_RTSP_OK)
1747 /* we create the session after parsing stuff so that we don't make
1748 * a session for malformed requests */
1749 if (priv->session_pool == NULL)
1752 session = ctx->session;
1755 g_object_ref (session);
1756 /* get a handle to the configuration of the media in the session, this can
1757 * return NULL if this is a new url to manage in this session. */
1758 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1760 /* we need a new media configuration in this session */
1764 /* we have no session media, find one and manage it */
1765 if (sessmedia == NULL) {
1766 /* get a handle to the configuration of the media in the session */
1767 media = find_media (client, ctx, path, &matched);
1769 if ((media = gst_rtsp_session_media_get_media (sessmedia)))
1770 g_object_ref (media);
1772 goto media_not_found;
1774 /* no media, not found then */
1776 goto media_not_found_no_reply;
1778 if (path[matched] == '\0') {
1779 if (gst_rtsp_media_n_streams (media) == 1) {
1780 stream = gst_rtsp_media_get_stream (media, 0);
1782 goto control_not_found;
1785 /* path is what matched. */
1786 path[matched] = '\0';
1787 /* control is remainder */
1788 control = &path[matched + 1];
1790 /* find the stream now using the control part */
1791 stream = gst_rtsp_media_find_stream (media, control);
1795 goto stream_not_found;
1797 /* now we have a uri identifying a valid media and stream */
1798 ctx->stream = stream;
1801 if (session == NULL) {
1802 /* create a session if this fails we probably reached our session limit or
1804 if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
1805 goto service_unavailable;
1807 /* make sure this client is closed when the session is closed */
1808 client_watch_session (client, session);
1811 /* signal new session */
1812 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1815 ctx->session = session;
1818 if (!klass->configure_client_media (client, media, stream, ctx))
1819 goto configure_media_failed_no_reply;
1821 gst_rtsp_transport_new (&ct);
1823 /* parse and find a usable supported transport */
1824 if (!parse_transport (transport, stream, ct))
1825 goto unsupported_transports;
1827 /* parse the keymgmt */
1828 if (gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_KEYMGMT,
1829 &keymgmt, 0) == GST_RTSP_OK) {
1830 if (!handle_keymgmt (client, ctx, keymgmt))
1834 if (sessmedia == NULL) {
1835 /* manage the media in our session now, if not done already */
1836 sessmedia = gst_rtsp_session_manage_media (session, path, media);
1837 /* if we stil have no media, error */
1838 if (sessmedia == NULL)
1839 goto sessmedia_unavailable;
1841 /* don't cache media anymore */
1842 clean_cached_media (client, FALSE);
1844 g_object_unref (media);
1847 ctx->sessmedia = sessmedia;
1849 /* update the client transport */
1850 if (!klass->configure_client_transport (client, ctx, ct))
1851 goto unsupported_client_transport;
1853 /* set in the session media transport */
1854 trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1858 /* configure the url used to set this transport, this we will use when
1859 * generating the response for the PLAY request */
1860 gst_rtsp_stream_transport_set_url (trans, uri);
1861 /* configure keepalive for this transport */
1862 gst_rtsp_stream_transport_set_keepalive (trans,
1863 (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1865 if (ct->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1866 /* our callbacks to send data on this TCP connection */
1867 gst_rtsp_stream_transport_set_callbacks (trans,
1868 (GstRTSPSendFunc) do_send_data,
1869 (GstRTSPSendFunc) do_send_data, client, NULL);
1871 g_hash_table_insert (priv->transports,
1872 GINT_TO_POINTER (ct->interleaved.min), trans);
1873 g_object_ref (trans);
1874 g_hash_table_insert (priv->transports,
1875 GINT_TO_POINTER (ct->interleaved.max), trans);
1876 g_object_ref (trans);
1879 /* create and serialize the server transport */
1880 st = make_server_transport (client, ctx, ct);
1881 trans_str = gst_rtsp_transport_as_text (st);
1882 gst_rtsp_transport_free (st);
1884 /* construct the response now */
1885 code = GST_RTSP_STS_OK;
1886 gst_rtsp_message_init_response (ctx->response, code,
1887 gst_rtsp_status_as_text (code), ctx->request);
1889 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
1893 send_message (client, ctx, ctx->response, FALSE);
1895 /* update the state */
1896 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1897 switch (rtspstate) {
1898 case GST_RTSP_STATE_PLAYING:
1899 case GST_RTSP_STATE_RECORDING:
1900 case GST_RTSP_STATE_READY:
1901 /* no state change */
1904 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1907 g_object_unref (session);
1910 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
1917 GST_ERROR ("client %p: no uri", client);
1918 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1923 GST_ERROR ("client %p: no transport", client);
1924 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1929 GST_ERROR ("client %p: no session pool configured", client);
1930 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1933 media_not_found_no_reply:
1935 GST_ERROR ("client %p: media '%s' not found", client, path);
1936 /* error reply is already sent */
1941 GST_ERROR ("client %p: media '%s' not found", client, path);
1942 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1947 GST_ERROR ("client %p: no control in path '%s'", client, path);
1948 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1949 g_object_unref (media);
1954 GST_ERROR ("client %p: stream '%s' not found", client,
1955 GST_STR_NULL (control));
1956 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1957 g_object_unref (media);
1960 service_unavailable:
1962 GST_ERROR ("client %p: can't create session", client);
1963 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1964 g_object_unref (media);
1967 sessmedia_unavailable:
1969 GST_ERROR ("client %p: can't create session media", client);
1970 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1971 g_object_unref (media);
1972 goto cleanup_session;
1974 configure_media_failed_no_reply:
1976 GST_ERROR ("client %p: configure_media failed", client);
1977 /* error reply is already sent */
1978 goto cleanup_session;
1980 unsupported_transports:
1982 GST_ERROR ("client %p: unsupported transports", client);
1983 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1984 goto cleanup_transport;
1986 unsupported_client_transport:
1988 GST_ERROR ("client %p: unsupported client transport", client);
1989 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1990 goto cleanup_transport;
1994 GST_ERROR ("client %p: keymgmt error", client);
1995 send_generic_response (client, GST_RTSP_STS_KEY_MANAGEMENT_FAILURE, ctx);
1996 goto cleanup_transport;
2000 gst_rtsp_transport_free (ct);
2003 gst_rtsp_session_pool_remove (priv->session_pool, session);
2004 g_object_unref (session);
2011 static GstSDPMessage *
2012 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
2014 GstRTSPClientPrivate *priv = client->priv;
2018 guint64 session_id_tmp;
2019 gchar session_id[21];
2021 gst_sdp_message_new (&sdp);
2023 /* some standard things first */
2024 gst_sdp_message_set_version (sdp, "0");
2031 session_id_tmp = (((guint64) g_random_int ()) << 32) | g_random_int ();
2032 g_snprintf (session_id, sizeof (session_id), "%" G_GUINT64_FORMAT,
2035 gst_sdp_message_set_origin (sdp, "-", session_id, "1", "IN", proto,
2038 gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
2039 gst_sdp_message_set_information (sdp, "rtsp-server");
2040 gst_sdp_message_add_time (sdp, "0", "0", NULL);
2041 gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
2042 gst_sdp_message_add_attribute (sdp, "type", "broadcast");
2043 gst_sdp_message_add_attribute (sdp, "control", "*");
2045 info.is_ipv6 = priv->is_ipv6;
2046 info.server_ip = priv->server_ip;
2048 /* create an SDP for the media object */
2049 if (!gst_rtsp_media_setup_sdp (media, sdp, &info))
2057 GST_ERROR ("client %p: could not create SDP", client);
2058 gst_sdp_message_free (sdp);
2063 /* for the describe we must generate an SDP */
2065 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
2067 GstRTSPClientPrivate *priv = client->priv;
2072 GstRTSPMedia *media;
2073 GstRTSPClientClass *klass;
2075 klass = GST_RTSP_CLIENT_GET_CLASS (client);
2080 /* check what kind of format is accepted, we don't really do anything with it
2081 * and always return SDP for now. */
2086 gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
2088 if (res == GST_RTSP_ENOTIMPL)
2091 if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
2095 if (!priv->mount_points)
2096 goto no_mount_points;
2098 if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
2101 /* find the media object for the uri */
2102 if (!(media = find_media (client, ctx, path, NULL)))
2105 /* create an SDP for the media object on this client */
2106 if (!(sdp = klass->create_sdp (client, media)))
2109 /* we suspend after the describe */
2110 gst_rtsp_media_suspend (media);
2111 g_object_unref (media);
2113 gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2114 gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2116 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
2119 /* content base for some clients that might screw up creating the setup uri */
2120 str = make_base_url (client, ctx->uri, path);
2123 GST_INFO ("adding content-base: %s", str);
2124 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE, str);
2126 /* add SDP to the response body */
2127 str = gst_sdp_message_as_text (sdp);
2128 gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
2129 gst_sdp_message_free (sdp);
2131 send_message (client, ctx, ctx->response, FALSE);
2133 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
2141 GST_ERROR ("client %p: no uri", client);
2142 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2147 GST_ERROR ("client %p: no mount points configured", client);
2148 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2153 GST_ERROR ("client %p: can't find path for url", client);
2154 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
2159 GST_ERROR ("client %p: no media", client);
2161 /* error reply is already sent */
2166 GST_ERROR ("client %p: can't create SDP", client);
2167 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
2169 g_object_unref (media);
2175 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx)
2177 GstRTSPMethod options;
2180 options = GST_RTSP_DESCRIBE |
2185 GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
2187 str = gst_rtsp_options_as_text (options);
2189 gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
2190 gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
2192 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
2195 send_message (client, ctx, ctx->response, FALSE);
2197 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
2203 /* remove duplicate and trailing '/' */
2205 sanitize_uri (GstRTSPUrl * uri)
2209 gboolean have_slash, prev_slash;
2211 s = d = uri->abspath;
2212 len = strlen (uri->abspath);
2216 for (i = 0; i < len; i++) {
2217 have_slash = s[i] == '/';
2219 if (!have_slash || !prev_slash)
2221 prev_slash = have_slash;
2223 len = d - uri->abspath;
2224 /* don't remove the first slash if that's the only thing left */
2225 if (len > 1 && *(d - 1) == '/')
2230 /* is called when the session is removed from its session pool. */
2232 client_session_removed (GstRTSPSessionPool * pool, GstRTSPSession * session,
2233 GstRTSPClient * client)
2235 GstRTSPClientPrivate *priv = client->priv;
2237 GST_INFO ("client %p: session %p removed", client, session);
2239 g_mutex_lock (&priv->lock);
2240 if (priv->watch != NULL)
2241 gst_rtsp_watch_set_send_backlog (priv->watch, 0, 0);
2242 client_unwatch_session (client, session, NULL);
2243 if (priv->watch != NULL)
2244 gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2245 g_mutex_unlock (&priv->lock);
2248 /* Returns TRUE if there are no Require headers, otherwise returns FALSE
2249 * and also returns a newly-allocated string of (comma-separated) unsupported
2250 * options in the unsupported_reqs variable .
2252 * There may be multiple Require headers, but we must send one single
2253 * Unsupported header with all the unsupported options as response. If
2254 * an incoming Require header contained a comma-separated list of options
2255 * GstRtspConnection will already have split that list up into multiple
2258 * TODO: allow the application to decide what features are supported
2261 check_request_requirements (GstRTSPMessage * msg, gchar ** unsupported_reqs)
2264 GPtrArray *arr = NULL;
2270 res = gst_rtsp_message_get_header (msg, GST_RTSP_HDR_REQUIRE, &reqs, i++);
2272 if (res == GST_RTSP_ENOTIMPL)
2276 arr = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free);
2278 g_ptr_array_add (arr, g_strdup (reqs));
2282 /* if we don't have any Require headers at all, all is fine */
2286 /* otherwise we've now processed at all the Require headers */
2287 g_ptr_array_add (arr, NULL);
2289 /* for now we don't commit to supporting anything, so will just report
2290 * all of the required options as unsupported */
2291 *unsupported_reqs = g_strjoinv (", ", (gchar **) arr->pdata);
2293 g_ptr_array_unref (arr);
2298 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
2300 GstRTSPClientPrivate *priv = client->priv;
2301 GstRTSPMethod method;
2302 const gchar *uristr;
2303 GstRTSPUrl *uri = NULL;
2304 GstRTSPVersion version;
2306 GstRTSPSession *session = NULL;
2307 GstRTSPContext sctx = { NULL }, *ctx;
2308 GstRTSPMessage response = { 0 };
2309 gchar *unsupported_reqs = NULL;
2312 if (!(ctx = gst_rtsp_context_get_current ())) {
2314 ctx->auth = priv->auth;
2315 gst_rtsp_context_push_current (ctx);
2318 ctx->conn = priv->connection;
2319 ctx->client = client;
2320 ctx->request = request;
2321 ctx->response = &response;
2323 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2324 gst_rtsp_message_dump (request);
2327 gst_rtsp_message_parse_request (request, &method, &uristr, &version);
2329 GST_INFO ("client %p: received a request %s %s %s", client,
2330 gst_rtsp_method_as_text (method), uristr,
2331 gst_rtsp_version_as_text (version));
2333 /* we can only handle 1.0 requests */
2334 if (version != GST_RTSP_VERSION_1_0)
2337 ctx->method = method;
2339 /* we always try to parse the url first */
2340 if (strcmp (uristr, "*") == 0) {
2341 /* special case where we have * as uri, keep uri = NULL */
2342 } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
2343 /* check if the uristr is an absolute path <=> scheme and host information
2347 scheme = g_uri_parse_scheme (uristr);
2348 if (scheme == NULL && g_str_has_prefix (uristr, "/")) {
2349 gchar *absolute_uristr = NULL;
2351 GST_WARNING_OBJECT (client, "request doesn't contain absolute url");
2352 if (priv->server_ip == NULL) {
2353 GST_WARNING_OBJECT (client, "host information missing");
2358 g_strdup_printf ("rtsp://%s%s", priv->server_ip, uristr);
2360 GST_DEBUG_OBJECT (client, "absolute url: %s", absolute_uristr);
2361 if (gst_rtsp_url_parse (absolute_uristr, &uri) != GST_RTSP_OK) {
2362 g_free (absolute_uristr);
2365 g_free (absolute_uristr);
2372 /* get the session if there is any */
2373 res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
2374 if (res == GST_RTSP_OK) {
2375 if (priv->session_pool == NULL)
2378 /* we had a session in the request, find it again */
2379 if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2380 goto session_not_found;
2382 /* we add the session to the client list of watched sessions. When a session
2383 * disappears because it times out, we will be notified. If all sessions are
2384 * gone, we will close the connection */
2385 client_watch_session (client, session);
2388 /* sanitize the uri */
2392 ctx->session = session;
2394 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
2395 goto not_authorized;
2397 /* handle any 'Require' headers */
2398 if (!check_request_requirements (ctx->request, &unsupported_reqs))
2399 goto unsupported_requirement;
2401 /* the backlog must be unlimited while processing requests.
2402 * the causes of this are two cases of deadlocks while streaming over TCP:
2404 * 1. consider the scenario where the media pipeline's streaming thread
2405 * is blocking in the appsink (taking the appsink's preroll lock) because
2406 * the backlog is full. when a PAUSE request is received by the RTSP
2407 * client thread then the the state of the session media ought to change
2408 * to PAUSED. while most elements in the pipeline can change state this
2409 * can never happen for the appsink since its preroll lock is taken by
2412 * 2. consider the scenario where the media pipeline's streaming thread
2413 * is blocking in the appsink new_sample callback (taking the send lock
2414 * in RTSP client) because the backlog is full. when e.g. a GET request
2415 * is received by the RTSP client thread then a response ought to be sent
2416 * but this can never happen since it requires taking the send lock
2417 * already taken by another thread.
2419 * the reason that the backlog is never emptied is that the source used
2420 * for dequeing messages from the backlog is never dispatched because it
2421 * is attached to the same mainloop as the source receving RTSP requests and
2422 * therefore run by the RTSP client thread which is alreayd blocking.
2424 * without significant changes the easiest way to cope with this is to
2425 * not block indefinitely when the backlog is full, but rather let the
2426 * backlog grow in size. this in effect means that there can not be any
2427 * upper boundary on its size.
2429 if (priv->watch != NULL)
2430 gst_rtsp_watch_set_send_backlog (priv->watch, 0, 0);
2432 /* now see what is asked and dispatch to a dedicated handler */
2434 case GST_RTSP_OPTIONS:
2435 handle_options_request (client, ctx);
2437 case GST_RTSP_DESCRIBE:
2438 handle_describe_request (client, ctx);
2440 case GST_RTSP_SETUP:
2441 handle_setup_request (client, ctx);
2444 handle_play_request (client, ctx);
2446 case GST_RTSP_PAUSE:
2447 handle_pause_request (client, ctx);
2449 case GST_RTSP_TEARDOWN:
2450 handle_teardown_request (client, ctx);
2452 case GST_RTSP_SET_PARAMETER:
2453 handle_set_param_request (client, ctx);
2455 case GST_RTSP_GET_PARAMETER:
2456 handle_get_param_request (client, ctx);
2458 case GST_RTSP_ANNOUNCE:
2459 case GST_RTSP_RECORD:
2460 case GST_RTSP_REDIRECT:
2461 if (priv->watch != NULL)
2462 gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2463 goto not_implemented;
2464 case GST_RTSP_INVALID:
2466 if (priv->watch != NULL)
2467 gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2471 if (priv->watch != NULL)
2472 gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
2476 gst_rtsp_context_pop_current (ctx);
2478 g_object_unref (session);
2480 gst_rtsp_url_free (uri);
2486 GST_ERROR ("client %p: version %d not supported", client, version);
2487 send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
2493 GST_ERROR ("client %p: bad request", client);
2494 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2499 GST_ERROR ("client %p: no pool configured", client);
2500 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2505 GST_ERROR ("client %p: session not found", client);
2506 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2511 GST_ERROR ("client %p: not allowed", client);
2512 /* error reply is already sent */
2515 unsupported_requirement:
2517 GST_ERROR ("client %p: Required option is not supported (%s)", client,
2519 send_option_not_supported_response (client, ctx, unsupported_reqs);
2520 g_free (unsupported_reqs);
2525 GST_ERROR ("client %p: method %d not implemented", client, method);
2526 send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2533 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
2535 GstRTSPClientPrivate *priv = client->priv;
2537 GstRTSPSession *session = NULL;
2538 GstRTSPContext sctx = { NULL }, *ctx;
2541 if (!(ctx = gst_rtsp_context_get_current ())) {
2543 ctx->auth = priv->auth;
2544 gst_rtsp_context_push_current (ctx);
2547 ctx->conn = priv->connection;
2548 ctx->client = client;
2549 ctx->request = NULL;
2551 ctx->method = GST_RTSP_INVALID;
2552 ctx->response = response;
2554 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2555 gst_rtsp_message_dump (response);
2558 GST_INFO ("client %p: received a response", client);
2560 /* get the session if there is any */
2562 gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
2563 if (res == GST_RTSP_OK) {
2564 if (priv->session_pool == NULL)
2567 /* we had a session in the request, find it again */
2568 if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2569 goto session_not_found;
2571 /* we add the session to the client list of watched sessions. When a session
2572 * disappears because it times out, we will be notified. If all sessions are
2573 * gone, we will close the connection */
2574 client_watch_session (client, session);
2577 ctx->session = session;
2579 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
2584 gst_rtsp_context_pop_current (ctx);
2586 g_object_unref (session);
2591 GST_ERROR ("client %p: no pool configured", client);
2596 GST_ERROR ("client %p: session not found", client);
2602 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
2604 GstRTSPClientPrivate *priv = client->priv;
2610 GstRTSPStreamTransport *trans;
2612 /* find the stream for this message */
2613 res = gst_rtsp_message_parse_data (message, &channel);
2614 if (res != GST_RTSP_OK)
2617 gst_rtsp_message_get_body (message, &data, &size);
2619 goto invalid_length;
2621 gst_rtsp_message_steal_body (message, &data, &size);
2623 /* Strip trailing \0 */
2624 buffer = gst_buffer_new_wrapped (data, size - 1);
2627 g_hash_table_lookup (priv->transports, GINT_TO_POINTER ((gint) channel));
2629 /* dispatch to the stream based on the channel number */
2630 gst_rtsp_stream_transport_recv_data (trans, channel, buffer);
2632 gst_buffer_unref (buffer);
2640 GST_DEBUG ("client %p: Short message received, ignoring", client);
2646 * gst_rtsp_client_set_session_pool:
2647 * @client: a #GstRTSPClient
2648 * @pool: (transfer none): a #GstRTSPSessionPool
2650 * Set @pool as the sessionpool for @client which it will use to find
2651 * or allocate sessions. the sessionpool is usually inherited from the server
2652 * that created the client but can be overridden later.
2655 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
2656 GstRTSPSessionPool * pool)
2658 GstRTSPSessionPool *old;
2659 GstRTSPClientPrivate *priv;
2661 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2663 priv = client->priv;
2666 g_object_ref (pool);
2668 g_mutex_lock (&priv->lock);
2669 old = priv->session_pool;
2670 priv->session_pool = pool;
2672 if (priv->session_removed_id) {
2673 g_signal_handler_disconnect (old, priv->session_removed_id);
2674 priv->session_removed_id = 0;
2676 g_mutex_unlock (&priv->lock);
2678 /* FIXME, should remove all sessions from the old pool for this client */
2680 g_object_unref (old);
2684 * gst_rtsp_client_get_session_pool:
2685 * @client: a #GstRTSPClient
2687 * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
2689 * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
2691 GstRTSPSessionPool *
2692 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
2694 GstRTSPClientPrivate *priv;
2695 GstRTSPSessionPool *result;
2697 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2699 priv = client->priv;
2701 g_mutex_lock (&priv->lock);
2702 if ((result = priv->session_pool))
2703 g_object_ref (result);
2704 g_mutex_unlock (&priv->lock);
2710 * gst_rtsp_client_set_mount_points:
2711 * @client: a #GstRTSPClient
2712 * @mounts: (transfer none): a #GstRTSPMountPoints
2714 * Set @mounts as the mount points for @client which it will use to map urls
2715 * to media streams. These mount points are usually inherited from the server that
2716 * created the client but can be overriden later.
2719 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
2720 GstRTSPMountPoints * mounts)
2722 GstRTSPClientPrivate *priv;
2723 GstRTSPMountPoints *old;
2725 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2727 priv = client->priv;
2730 g_object_ref (mounts);
2732 g_mutex_lock (&priv->lock);
2733 old = priv->mount_points;
2734 priv->mount_points = mounts;
2735 g_mutex_unlock (&priv->lock);
2738 g_object_unref (old);
2742 * gst_rtsp_client_get_mount_points:
2743 * @client: a #GstRTSPClient
2745 * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
2747 * Returns: (transfer full): a #GstRTSPMountPoints, unref after usage.
2749 GstRTSPMountPoints *
2750 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
2752 GstRTSPClientPrivate *priv;
2753 GstRTSPMountPoints *result;
2755 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2757 priv = client->priv;
2759 g_mutex_lock (&priv->lock);
2760 if ((result = priv->mount_points))
2761 g_object_ref (result);
2762 g_mutex_unlock (&priv->lock);
2768 * gst_rtsp_client_set_auth:
2769 * @client: a #GstRTSPClient
2770 * @auth: (transfer none): a #GstRTSPAuth
2772 * configure @auth to be used as the authentication manager of @client.
2775 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
2777 GstRTSPClientPrivate *priv;
2780 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2782 priv = client->priv;
2785 g_object_ref (auth);
2787 g_mutex_lock (&priv->lock);
2790 g_mutex_unlock (&priv->lock);
2793 g_object_unref (old);
2798 * gst_rtsp_client_get_auth:
2799 * @client: a #GstRTSPClient
2801 * Get the #GstRTSPAuth used as the authentication manager of @client.
2803 * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
2807 gst_rtsp_client_get_auth (GstRTSPClient * client)
2809 GstRTSPClientPrivate *priv;
2810 GstRTSPAuth *result;
2812 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2814 priv = client->priv;
2816 g_mutex_lock (&priv->lock);
2817 if ((result = priv->auth))
2818 g_object_ref (result);
2819 g_mutex_unlock (&priv->lock);
2825 * gst_rtsp_client_set_thread_pool:
2826 * @client: a #GstRTSPClient
2827 * @pool: (transfer none): a #GstRTSPThreadPool
2829 * configure @pool to be used as the thread pool of @client.
2832 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
2833 GstRTSPThreadPool * pool)
2835 GstRTSPClientPrivate *priv;
2836 GstRTSPThreadPool *old;
2838 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2840 priv = client->priv;
2843 g_object_ref (pool);
2845 g_mutex_lock (&priv->lock);
2846 old = priv->thread_pool;
2847 priv->thread_pool = pool;
2848 g_mutex_unlock (&priv->lock);
2851 g_object_unref (old);
2855 * gst_rtsp_client_get_thread_pool:
2856 * @client: a #GstRTSPClient
2858 * Get the #GstRTSPThreadPool used as the thread pool of @client.
2860 * Returns: (transfer full): the #GstRTSPThreadPool of @client. g_object_unref() after
2864 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
2866 GstRTSPClientPrivate *priv;
2867 GstRTSPThreadPool *result;
2869 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2871 priv = client->priv;
2873 g_mutex_lock (&priv->lock);
2874 if ((result = priv->thread_pool))
2875 g_object_ref (result);
2876 g_mutex_unlock (&priv->lock);
2882 * gst_rtsp_client_set_connection:
2883 * @client: a #GstRTSPClient
2884 * @conn: (transfer full): a #GstRTSPConnection
2886 * Set the #GstRTSPConnection of @client. This function takes ownership of
2889 * Returns: %TRUE on success.
2892 gst_rtsp_client_set_connection (GstRTSPClient * client,
2893 GstRTSPConnection * conn)
2895 GstRTSPClientPrivate *priv;
2896 GSocket *read_socket;
2897 GSocketAddress *address;
2899 GError *error = NULL;
2901 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2902 g_return_val_if_fail (conn != NULL, FALSE);
2904 priv = client->priv;
2906 read_socket = gst_rtsp_connection_get_read_socket (conn);
2908 if (!(address = g_socket_get_local_address (read_socket, &error)))
2911 g_free (priv->server_ip);
2912 /* keep the original ip that the client connected to */
2913 if (G_IS_INET_SOCKET_ADDRESS (address)) {
2914 GInetAddress *iaddr;
2916 iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2918 /* socket might be ipv6 but adress still ipv4 */
2919 priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
2920 priv->server_ip = g_inet_address_to_string (iaddr);
2921 g_object_unref (address);
2923 priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
2924 priv->server_ip = g_strdup ("unknown");
2927 GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2928 priv->server_ip, priv->is_ipv6);
2930 url = gst_rtsp_connection_get_url (conn);
2931 GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2933 priv->connection = conn;
2940 GST_ERROR ("could not get local address %s", error->message);
2941 g_error_free (error);
2947 * gst_rtsp_client_get_connection:
2948 * @client: a #GstRTSPClient
2950 * Get the #GstRTSPConnection of @client.
2952 * Returns: (transfer none): the #GstRTSPConnection of @client.
2953 * The connection object returned remains valid until the client is freed.
2956 gst_rtsp_client_get_connection (GstRTSPClient * client)
2958 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2960 return client->priv->connection;
2964 * gst_rtsp_client_set_send_func:
2965 * @client: a #GstRTSPClient
2966 * @func: (scope notified): a #GstRTSPClientSendFunc
2967 * @user_data: (closure): user data passed to @func
2968 * @notify: (allow-none): called when @user_data is no longer in use
2970 * Set @func as the callback that will be called when a new message needs to be
2971 * sent to the client. @user_data is passed to @func and @notify is called when
2972 * @user_data is no longer in use.
2974 * By default, the client will send the messages on the #GstRTSPConnection that
2975 * was configured with gst_rtsp_client_attach() was called.
2978 gst_rtsp_client_set_send_func (GstRTSPClient * client,
2979 GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
2981 GstRTSPClientPrivate *priv;
2982 GDestroyNotify old_notify;
2985 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2987 priv = client->priv;
2989 g_mutex_lock (&priv->send_lock);
2990 priv->send_func = func;
2991 old_notify = priv->send_notify;
2992 old_data = priv->send_data;
2993 priv->send_notify = notify;
2994 priv->send_data = user_data;
2995 g_mutex_unlock (&priv->send_lock);
2998 old_notify (old_data);
3002 * gst_rtsp_client_handle_message:
3003 * @client: a #GstRTSPClient
3004 * @message: (transfer none): an #GstRTSPMessage
3006 * Let the client handle @message.
3008 * Returns: a #GstRTSPResult.
3011 gst_rtsp_client_handle_message (GstRTSPClient * client,
3012 GstRTSPMessage * message)
3014 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
3015 g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
3017 switch (message->type) {
3018 case GST_RTSP_MESSAGE_REQUEST:
3019 handle_request (client, message);
3021 case GST_RTSP_MESSAGE_RESPONSE:
3022 handle_response (client, message);
3024 case GST_RTSP_MESSAGE_DATA:
3025 handle_data (client, message);
3034 * gst_rtsp_client_send_message:
3035 * @client: a #GstRTSPClient
3036 * @session: (allow-none) (transfer none): a #GstRTSPSession to send
3037 * the message to or %NULL
3038 * @message: (transfer none): The #GstRTSPMessage to send
3040 * Send a message message to the remote end. @message must be a
3041 * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
3044 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
3045 GstRTSPMessage * message)
3047 GstRTSPContext sctx = { NULL }
3049 GstRTSPClientPrivate *priv;
3051 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
3052 g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
3053 g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
3054 message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
3056 priv = client->priv;
3058 if (!(ctx = gst_rtsp_context_get_current ())) {
3060 ctx->auth = priv->auth;
3061 gst_rtsp_context_push_current (ctx);
3064 ctx->conn = priv->connection;
3065 ctx->client = client;
3066 ctx->session = session;
3068 send_message (client, ctx, message, FALSE);
3071 gst_rtsp_context_pop_current (ctx);
3076 static GstRTSPResult
3077 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
3078 gboolean close, gpointer user_data)
3080 GstRTSPClientPrivate *priv = client->priv;
3088 /* send the response and store the seq number so we can wait until it's
3089 * written to the client to close the connection */
3091 gst_rtsp_watch_send_message (priv->watch, message,
3092 close ? &priv->close_seq : NULL);
3093 if (ret == GST_RTSP_OK)
3096 if (ret != GST_RTSP_ENOMEM)
3100 if (priv->drop_backlog)
3103 /* queue was full, wait for more space */
3104 GST_DEBUG_OBJECT (client, "waiting for backlog");
3105 ret = gst_rtsp_watch_wait_backlog (priv->watch, &time);
3106 GST_DEBUG_OBJECT (client, "Resend due to backlog full");
3107 } while (ret != GST_RTSP_EINTR);
3114 GST_DEBUG_OBJECT (client, "got error %d", ret);
3119 static GstRTSPResult
3120 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
3123 return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
3126 static GstRTSPResult
3127 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
3129 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3130 GstRTSPClientPrivate *priv = client->priv;
3132 if (priv->close_seq && priv->close_seq == cseq) {
3133 GST_INFO ("client %p: send close message", client);
3134 priv->close_seq = 0;
3135 gst_rtsp_client_close (client);
3141 static GstRTSPResult
3142 closed (GstRTSPWatch * watch, gpointer user_data)
3144 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3145 GstRTSPClientPrivate *priv = client->priv;
3146 const gchar *tunnelid;
3148 GST_INFO ("client %p: connection closed", client);
3150 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
3151 g_mutex_lock (&tunnels_lock);
3152 /* remove from tunnelids */
3153 g_hash_table_remove (tunnels, tunnelid);
3154 g_mutex_unlock (&tunnels_lock);
3157 gst_rtsp_watch_set_flushing (watch, TRUE);
3158 g_mutex_lock (&priv->watch_lock);
3159 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
3160 g_mutex_unlock (&priv->watch_lock);
3165 static GstRTSPResult
3166 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
3168 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3171 str = gst_rtsp_strresult (result);
3172 GST_INFO ("client %p: received an error %s", client, str);
3178 static GstRTSPResult
3179 error_full (GstRTSPWatch * watch, GstRTSPResult result,
3180 GstRTSPMessage * message, guint id, gpointer user_data)
3182 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3185 str = gst_rtsp_strresult (result);
3187 ("client %p: error when handling message %p with id %d: %s",
3188 client, message, id, str);
3195 remember_tunnel (GstRTSPClient * client)
3197 GstRTSPClientPrivate *priv = client->priv;
3198 const gchar *tunnelid;
3200 /* store client in the pending tunnels */
3201 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
3202 if (tunnelid == NULL)
3205 GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
3207 /* we can't have two clients connecting with the same tunnelid */
3208 g_mutex_lock (&tunnels_lock);
3209 if (g_hash_table_lookup (tunnels, tunnelid))
3210 goto tunnel_existed;
3212 g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
3213 g_mutex_unlock (&tunnels_lock);
3220 GST_ERROR ("client %p: no tunnelid provided", client);
3225 g_mutex_unlock (&tunnels_lock);
3226 GST_ERROR ("client %p: tunnel session %s already existed", client,
3232 static GstRTSPResult
3233 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
3235 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3236 GstRTSPClientPrivate *priv = client->priv;
3238 GST_WARNING ("client %p: tunnel lost (connection %p)", client,
3241 /* ignore error, it'll only be a problem when the client does a POST again */
3242 remember_tunnel (client);
3248 handle_tunnel (GstRTSPClient * client)
3250 GstRTSPClientPrivate *priv = client->priv;
3251 GstRTSPClient *oclient;
3252 GstRTSPClientPrivate *opriv;
3253 const gchar *tunnelid;
3255 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
3256 if (tunnelid == NULL)
3259 /* check for previous tunnel */
3260 g_mutex_lock (&tunnels_lock);
3261 oclient = g_hash_table_lookup (tunnels, tunnelid);
3263 if (oclient == NULL) {
3264 /* no previous tunnel, remember tunnel */
3265 g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
3266 g_mutex_unlock (&tunnels_lock);
3268 GST_INFO ("client %p: no previous tunnel found, remembering tunnel (%p)",
3269 client, priv->connection);
3271 /* merge both tunnels into the first client */
3272 /* remove the old client from the table. ref before because removing it will
3273 * remove the ref to it. */
3274 g_object_ref (oclient);
3275 g_hash_table_remove (tunnels, tunnelid);
3276 g_mutex_unlock (&tunnels_lock);
3278 opriv = oclient->priv;
3280 g_mutex_lock (&opriv->watch_lock);
3281 if (opriv->watch == NULL)
3284 GST_INFO ("client %p: found previous tunnel %p (old %p, new %p)", client,
3285 oclient, opriv->connection, priv->connection);
3287 gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
3288 gst_rtsp_watch_reset (priv->watch);
3289 gst_rtsp_watch_reset (opriv->watch);
3290 g_mutex_unlock (&opriv->watch_lock);
3291 g_object_unref (oclient);
3293 /* the old client owns the tunnel now, the new one will be freed */
3294 g_source_destroy ((GSource *) priv->watch);
3296 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
3304 GST_ERROR ("client %p: no tunnelid provided", client);
3309 GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
3310 g_mutex_unlock (&opriv->watch_lock);
3311 g_object_unref (oclient);
3316 static GstRTSPStatusCode
3317 tunnel_get (GstRTSPWatch * watch, gpointer user_data)
3319 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3321 GST_INFO ("client %p: tunnel get (connection %p)", client,
3322 client->priv->connection);
3324 if (!handle_tunnel (client)) {
3325 return GST_RTSP_STS_SERVICE_UNAVAILABLE;
3328 return GST_RTSP_STS_OK;
3331 static GstRTSPResult
3332 tunnel_post (GstRTSPWatch * watch, gpointer user_data)
3334 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3336 GST_INFO ("client %p: tunnel post (connection %p)", client,
3337 client->priv->connection);
3339 if (!handle_tunnel (client)) {
3340 return GST_RTSP_ERROR;
3346 static GstRTSPResult
3347 tunnel_http_response (GstRTSPWatch * watch, GstRTSPMessage * request,
3348 GstRTSPMessage * response, gpointer user_data)
3350 GstRTSPClientClass *klass;
3352 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
3353 klass = GST_RTSP_CLIENT_GET_CLASS (client);
3355 if (klass->tunnel_http_response) {
3356 klass->tunnel_http_response (client, request, response);
3362 static GstRTSPWatchFuncs watch_funcs = {
3371 tunnel_http_response
3375 client_watch_notify (GstRTSPClient * client)
3377 GstRTSPClientPrivate *priv = client->priv;
3379 GST_INFO ("client %p: watch destroyed", client);
3381 /* remove all sessions and so drop the extra client ref */
3382 gst_rtsp_client_session_filter (client, cleanup_session, NULL);
3383 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
3384 g_object_unref (client);
3388 * gst_rtsp_client_attach:
3389 * @client: a #GstRTSPClient
3390 * @context: (allow-none): a #GMainContext
3392 * Attaches @client to @context. When the mainloop for @context is run, the
3393 * client will be dispatched. When @context is %NULL, the default context will be
3396 * This function should be called when the client properties and urls are fully
3397 * configured and the client is ready to start.
3399 * Returns: the ID (greater than 0) for the source within the GMainContext.
3402 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
3404 GstRTSPClientPrivate *priv;
3407 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
3408 priv = client->priv;
3409 g_return_val_if_fail (priv->connection != NULL, 0);
3410 g_return_val_if_fail (priv->watch == NULL, 0);
3412 /* make sure noone will free the context before the watch is destroyed */
3413 priv->watch_context = g_main_context_ref (context);
3415 /* create watch for the connection and attach */
3416 priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
3417 g_object_ref (client), (GDestroyNotify) client_watch_notify);
3418 gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
3419 (GDestroyNotify) gst_rtsp_watch_unref);
3421 gst_rtsp_watch_set_send_backlog (priv->watch, 0, WATCH_BACKLOG_SIZE);
3423 GST_INFO ("client %p: attaching to context %p", client, context);
3424 res = gst_rtsp_watch_attach (priv->watch, context);
3430 * gst_rtsp_client_session_filter:
3431 * @client: a #GstRTSPClient
3432 * @func: (scope call) (allow-none): a callback
3433 * @user_data: user data passed to @func
3435 * Call @func for each session managed by @client. The result value of @func
3436 * determines what happens to the session. @func will be called with @client
3437 * locked so no further actions on @client can be performed from @func.
3439 * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
3442 * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
3444 * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
3445 * will also be added with an additional ref to the result #GList of this
3448 * When @func is %NULL, #GST_RTSP_FILTER_REF will be assumed for each session.
3450 * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
3451 * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
3452 * element in the #GList should be unreffed before the list is freed.
3455 gst_rtsp_client_session_filter (GstRTSPClient * client,
3456 GstRTSPClientSessionFilterFunc func, gpointer user_data)
3458 GstRTSPClientPrivate *priv;
3459 GList *result, *walk, *next;
3460 GHashTable *visited;
3463 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
3465 priv = client->priv;
3469 visited = g_hash_table_new_full (NULL, NULL, g_object_unref, NULL);
3471 g_mutex_lock (&priv->lock);
3473 cookie = priv->sessions_cookie;
3474 for (walk = priv->sessions; walk; walk = next) {
3475 GstRTSPSession *sess = walk->data;
3476 GstRTSPFilterResult res;
3479 next = g_list_next (walk);
3482 /* only visit each session once */
3483 if (g_hash_table_contains (visited, sess))
3486 g_hash_table_add (visited, g_object_ref (sess));
3487 g_mutex_unlock (&priv->lock);
3489 res = func (client, sess, user_data);
3491 g_mutex_lock (&priv->lock);
3493 res = GST_RTSP_FILTER_REF;
3495 changed = (cookie != priv->sessions_cookie);
3498 case GST_RTSP_FILTER_REMOVE:
3499 /* stop watching the session and pretend it went away, if the list was
3500 * changed, we can't use the current list position, try to see if we
3501 * still have the session */
3502 client_unwatch_session (client, sess, changed ? NULL : walk);
3503 cookie = priv->sessions_cookie;
3505 case GST_RTSP_FILTER_REF:
3506 result = g_list_prepend (result, g_object_ref (sess));
3508 case GST_RTSP_FILTER_KEEP:
3515 g_mutex_unlock (&priv->lock);
3518 g_hash_table_unref (visited);