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 static GMutex tunnels_lock;
28 static GHashTable *tunnels;
30 #define DEFAULT_SESSION_POOL NULL
31 #define DEFAULT_MEDIA_MAPPING NULL
32 #define DEFAULT_USE_CLIENT_SETTINGS FALSE
39 PROP_USE_CLIENT_SETTINGS,
47 SIGNAL_OPTIONS_REQUEST,
48 SIGNAL_DESCRIBE_REQUEST,
52 SIGNAL_TEARDOWN_REQUEST,
53 SIGNAL_SET_PARAMETER_REQUEST,
54 SIGNAL_GET_PARAMETER_REQUEST,
58 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
59 #define GST_CAT_DEFAULT rtsp_client_debug
61 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
63 static void gst_rtsp_client_get_property (GObject * object, guint propid,
64 GValue * value, GParamSpec * pspec);
65 static void gst_rtsp_client_set_property (GObject * object, guint propid,
66 const GValue * value, GParamSpec * pspec);
67 static void gst_rtsp_client_finalize (GObject * obj);
69 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
70 static void client_session_finalized (GstRTSPClient * client,
71 GstRTSPSession * session);
72 static void unlink_session_transports (GstRTSPClient * client,
73 GstRTSPSession * session, GstRTSPSessionMedia * media);
75 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
78 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
80 GObjectClass *gobject_class;
82 gobject_class = G_OBJECT_CLASS (klass);
84 gobject_class->get_property = gst_rtsp_client_get_property;
85 gobject_class->set_property = gst_rtsp_client_set_property;
86 gobject_class->finalize = gst_rtsp_client_finalize;
88 klass->create_sdp = create_sdp;
90 g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
91 g_param_spec_object ("session-pool", "Session Pool",
92 "The session pool to use for client session",
93 GST_TYPE_RTSP_SESSION_POOL,
94 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
96 g_object_class_install_property (gobject_class, PROP_MEDIA_MAPPING,
97 g_param_spec_object ("media-mapping", "Media Mapping",
98 "The media mapping to use for client session",
99 GST_TYPE_RTSP_MEDIA_MAPPING,
100 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
102 g_object_class_install_property (gobject_class, PROP_USE_CLIENT_SETTINGS,
103 g_param_spec_boolean ("use-client-settings", "Use Client Settings",
104 "Use client settings for ttl and destination in multicast",
105 DEFAULT_USE_CLIENT_SETTINGS,
106 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
108 gst_rtsp_client_signals[SIGNAL_CLOSED] =
109 g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
110 G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
111 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
113 gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
114 g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
115 G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
116 g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
118 gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
119 g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
120 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
121 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
124 gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
125 g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
126 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
127 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
130 gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
131 g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
132 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
133 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
136 gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
137 g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
138 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
139 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
142 gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
143 g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
144 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
145 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
148 gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
149 g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
150 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
151 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
154 gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
155 g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
156 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
157 set_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
158 G_TYPE_NONE, 1, G_TYPE_POINTER);
160 gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
161 g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
162 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
163 get_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
164 G_TYPE_NONE, 1, G_TYPE_POINTER);
167 g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
168 g_mutex_init (&tunnels_lock);
170 GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
174 gst_rtsp_client_init (GstRTSPClient * client)
176 client->use_client_settings = DEFAULT_USE_CLIENT_SETTINGS;
180 client_unlink_session (GstRTSPClient * client, GstRTSPSession * session)
182 /* unlink all media managed in this session */
183 while (session->medias) {
184 GstRTSPSessionMedia *media = session->medias->data;
186 gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
187 unlink_session_transports (client, session, media);
188 /* unmanage the media in the session. this will modify session->medias */
189 gst_rtsp_session_release_media (session, media);
194 client_cleanup_sessions (GstRTSPClient * client)
198 /* remove weak-ref from sessions */
199 for (sessions = client->sessions; sessions; sessions = g_list_next (sessions)) {
200 GstRTSPSession *session = (GstRTSPSession *) sessions->data;
201 g_object_weak_unref (G_OBJECT (session),
202 (GWeakNotify) client_session_finalized, client);
203 client_unlink_session (client, session);
205 g_list_free (client->sessions);
206 client->sessions = NULL;
209 /* A client is finalized when the connection is broken */
211 gst_rtsp_client_finalize (GObject * obj)
213 GstRTSPClient *client = GST_RTSP_CLIENT (obj);
215 GST_INFO ("finalize client %p", client);
218 g_source_destroy ((GSource *) client->watch);
220 client_cleanup_sessions (client);
222 gst_rtsp_connection_free (client->connection);
223 if (client->session_pool)
224 g_object_unref (client->session_pool);
225 if (client->media_mapping)
226 g_object_unref (client->media_mapping);
228 g_object_unref (client->auth);
231 gst_rtsp_url_free (client->uri);
233 g_object_unref (client->media);
235 g_free (client->server_ip);
237 G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
241 gst_rtsp_client_get_property (GObject * object, guint propid,
242 GValue * value, GParamSpec * pspec)
244 GstRTSPClient *client = GST_RTSP_CLIENT (object);
247 case PROP_SESSION_POOL:
248 g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
250 case PROP_MEDIA_MAPPING:
251 g_value_take_object (value, gst_rtsp_client_get_media_mapping (client));
253 case PROP_USE_CLIENT_SETTINGS:
254 g_value_set_boolean (value,
255 gst_rtsp_client_get_use_client_settings (client));
258 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
263 gst_rtsp_client_set_property (GObject * object, guint propid,
264 const GValue * value, GParamSpec * pspec)
266 GstRTSPClient *client = GST_RTSP_CLIENT (object);
269 case PROP_SESSION_POOL:
270 gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
272 case PROP_MEDIA_MAPPING:
273 gst_rtsp_client_set_media_mapping (client, g_value_get_object (value));
275 case PROP_USE_CLIENT_SETTINGS:
276 gst_rtsp_client_set_use_client_settings (client,
277 g_value_get_boolean (value));
280 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
285 * gst_rtsp_client_new:
287 * Create a new #GstRTSPClient instance.
289 * Returns: a new #GstRTSPClient
292 gst_rtsp_client_new (void)
294 GstRTSPClient *result;
296 result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
302 send_response (GstRTSPClient * client, GstRTSPSession * session,
303 GstRTSPMessage * response)
305 gst_rtsp_message_add_header (response, GST_RTSP_HDR_SERVER,
306 "GStreamer RTSP server");
308 /* remove any previous header */
309 gst_rtsp_message_remove_header (response, GST_RTSP_HDR_SESSION, -1);
311 /* add the new session header for new session ids */
313 gst_rtsp_message_take_header (response, GST_RTSP_HDR_SESSION,
314 gst_rtsp_session_get_header (session));
317 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
318 gst_rtsp_message_dump (response);
321 gst_rtsp_watch_send_message (client->watch, response, NULL);
322 gst_rtsp_message_unset (response);
326 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
327 GstRTSPClientState * state)
329 gst_rtsp_message_init_response (state->response, code,
330 gst_rtsp_status_as_text (code), state->request);
332 send_response (client, NULL, state->response);
336 handle_unauthorized_request (GstRTSPClient * client, GstRTSPAuth * auth,
337 GstRTSPClientState * state)
339 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_UNAUTHORIZED,
340 gst_rtsp_status_as_text (GST_RTSP_STS_UNAUTHORIZED), state->request);
343 /* and let the authentication manager setup the auth tokens */
344 gst_rtsp_auth_setup_auth (auth, client, 0, state);
347 send_response (client, state->session, state->response);
352 compare_uri (const GstRTSPUrl * uri1, const GstRTSPUrl * uri2)
354 if (uri1 == NULL || uri2 == NULL)
357 if (strcmp (uri1->abspath, uri2->abspath))
363 /* this function is called to initially find the media for the DESCRIBE request
364 * but is cached for when the same client (without breaking the connection) is
365 * doing a setup for the exact same url. */
366 static GstRTSPMedia *
367 find_media (GstRTSPClient * client, GstRTSPClientState * state)
369 GstRTSPMediaFactory *factory;
373 if (!compare_uri (client->uri, state->uri)) {
374 /* remove any previously cached values before we try to construct a new
377 gst_rtsp_url_free (client->uri);
380 g_object_unref (client->media);
381 client->media = NULL;
383 if (!client->media_mapping)
386 /* find the factory for the uri first */
388 gst_rtsp_media_mapping_find_factory (client->media_mapping,
392 state->factory = factory;
394 /* check if we have access to the factory */
395 if ((auth = gst_rtsp_media_factory_get_auth (factory))) {
396 if (!gst_rtsp_auth_check (auth, client, 0, state))
399 g_object_unref (auth);
402 /* prepare the media and add it to the pipeline */
403 if (!(media = gst_rtsp_media_factory_construct (factory, state->uri)))
406 g_object_unref (factory);
408 state->factory = NULL;
410 /* set ipv6 on the media before preparing */
411 media->is_ipv6 = client->is_ipv6;
412 state->media = media;
414 /* prepare the media */
415 if (!(gst_rtsp_media_prepare (media)))
418 /* now keep track of the uri and the media */
419 client->uri = gst_rtsp_url_copy (state->uri);
420 client->media = media;
422 /* we have seen this uri before, used cached media */
423 media = client->media;
424 state->media = media;
425 GST_INFO ("reusing cached media %p", media);
429 g_object_ref (media);
436 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
441 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
446 handle_unauthorized_request (client, auth, state);
447 g_object_unref (factory);
448 g_object_unref (auth);
453 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
454 g_object_unref (factory);
459 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
460 g_object_unref (media);
466 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
468 GstRTSPMessage message = { 0 };
473 gst_rtsp_message_init_data (&message, channel);
475 /* FIXME, need some sort of iovec RTSPMessage here */
476 if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
479 gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
481 /* FIXME, client->watch could have been finalized here, we need to keep an
482 * extra refcount to the watch. */
483 gst_rtsp_watch_send_message (client->watch, &message, NULL);
485 gst_rtsp_message_steal_body (&message, &data, &usize);
486 gst_buffer_unmap (buffer, &map_info);
488 gst_rtsp_message_unset (&message);
494 link_transport (GstRTSPClient * client, GstRTSPSession * session,
495 GstRTSPStreamTransport * trans)
497 GST_DEBUG ("client %p: linking transport %p", client, trans);
498 gst_rtsp_stream_transport_set_callbacks (trans,
499 (GstRTSPSendFunc) do_send_data,
500 (GstRTSPSendFunc) do_send_data, client, NULL);
502 client->transports = g_list_prepend (client->transports, trans);
504 /* make sure our session can't expire */
505 gst_rtsp_session_prevent_expire (session);
509 unlink_transport (GstRTSPClient * client, GstRTSPSession * session,
510 GstRTSPStreamTransport * trans)
512 GST_DEBUG ("client %p: unlinking transport %p", client, trans);
513 gst_rtsp_stream_transport_set_callbacks (trans, NULL, NULL, NULL, NULL);
515 client->transports = g_list_remove (client->transports, trans);
517 /* our session can now expire */
518 gst_rtsp_session_allow_expire (session);
522 unlink_session_transports (GstRTSPClient * client, GstRTSPSession * session,
523 GstRTSPSessionMedia * media)
527 n_streams = gst_rtsp_media_n_streams (media->media);
528 for (i = 0; i < n_streams; i++) {
529 GstRTSPStreamTransport *trans;
530 GstRTSPTransport *tr;
532 /* get the transport, if there is no transport configured, skip this stream */
533 trans = gst_rtsp_session_media_get_transport (media, i);
537 tr = trans->transport;
539 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
540 /* for TCP, unlink the stream from the TCP connection of the client */
541 unlink_transport (client, session, trans);
547 close_connection (GstRTSPClient * client)
549 const gchar *tunnelid;
551 GST_DEBUG ("client %p: closing connection", client);
553 if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
554 g_mutex_lock (&tunnels_lock);
555 /* remove from tunnelids */
556 g_hash_table_remove (tunnels, tunnelid);
557 g_mutex_unlock (&tunnels_lock);
560 gst_rtsp_connection_close (client->connection);
564 handle_teardown_request (GstRTSPClient * client, GstRTSPClientState * state)
566 GstRTSPSession *session;
567 GstRTSPSessionMedia *media;
568 GstRTSPStatusCode code;
573 session = state->session;
575 /* get a handle to the configuration of the media in the session */
576 media = gst_rtsp_session_get_media (session, state->uri);
580 state->sessmedia = media;
582 /* unlink the all TCP callbacks */
583 unlink_session_transports (client, session, media);
585 /* remove the session from the watched sessions */
586 g_object_weak_unref (G_OBJECT (session),
587 (GWeakNotify) client_session_finalized, client);
588 client->sessions = g_list_remove (client->sessions, session);
590 gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
592 /* unmanage the media in the session, returns false if all media session
594 if (!gst_rtsp_session_release_media (session, media)) {
595 /* remove the session */
596 gst_rtsp_session_pool_remove (client->session_pool, session);
598 /* construct the response now */
599 code = GST_RTSP_STS_OK;
600 gst_rtsp_message_init_response (state->response, code,
601 gst_rtsp_status_as_text (code), state->request);
603 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONNECTION,
606 send_response (client, session, state->response);
608 /* we emit the signal before closing the connection */
609 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
612 close_connection (client);
619 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
624 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
630 handle_get_param_request (GstRTSPClient * client, GstRTSPClientState * state)
636 res = gst_rtsp_message_get_body (state->request, &data, &size);
637 if (res != GST_RTSP_OK)
641 /* no body, keep-alive request */
642 send_generic_response (client, GST_RTSP_STS_OK, state);
644 /* there is a body, handle the params */
645 res = gst_rtsp_params_get (client, state);
646 if (res != GST_RTSP_OK)
649 send_response (client, state->session, state->response);
652 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
660 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
666 handle_set_param_request (GstRTSPClient * client, GstRTSPClientState * state)
672 res = gst_rtsp_message_get_body (state->request, &data, &size);
673 if (res != GST_RTSP_OK)
677 /* no body, keep-alive request */
678 send_generic_response (client, GST_RTSP_STS_OK, state);
680 /* there is a body, handle the params */
681 res = gst_rtsp_params_set (client, state);
682 if (res != GST_RTSP_OK)
685 send_response (client, state->session, state->response);
688 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
696 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
702 handle_pause_request (GstRTSPClient * client, GstRTSPClientState * state)
704 GstRTSPSession *session;
705 GstRTSPSessionMedia *media;
706 GstRTSPStatusCode code;
708 if (!(session = state->session))
711 /* get a handle to the configuration of the media in the session */
712 media = gst_rtsp_session_get_media (session, state->uri);
716 state->sessmedia = media;
718 /* the session state must be playing or recording */
719 if (media->state != GST_RTSP_STATE_PLAYING &&
720 media->state != GST_RTSP_STATE_RECORDING)
723 /* unlink the all TCP callbacks */
724 unlink_session_transports (client, session, media);
726 /* then pause sending */
727 gst_rtsp_session_media_set_state (media, GST_STATE_PAUSED);
729 /* construct the response now */
730 code = GST_RTSP_STS_OK;
731 gst_rtsp_message_init_response (state->response, code,
732 gst_rtsp_status_as_text (code), state->request);
734 send_response (client, session, state->response);
736 /* the state is now READY */
737 media->state = GST_RTSP_STATE_READY;
739 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST],
747 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
752 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
757 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
764 handle_play_request (GstRTSPClient * client, GstRTSPClientState * state)
766 GstRTSPSession *session;
767 GstRTSPSessionMedia *media;
768 GstRTSPStatusCode code;
770 guint n_streams, i, infocount;
772 GstRTSPTimeRange *range;
775 if (!(session = state->session))
778 /* get a handle to the configuration of the media in the session */
779 media = gst_rtsp_session_get_media (session, state->uri);
783 state->sessmedia = media;
785 /* the session state must be playing or ready */
786 if (media->state != GST_RTSP_STATE_PLAYING &&
787 media->state != GST_RTSP_STATE_READY)
790 /* parse the range header if we have one */
792 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_RANGE, &str, 0);
793 if (res == GST_RTSP_OK) {
794 if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
795 /* we have a range, seek to the position */
796 gst_rtsp_media_seek (media->media, range);
797 gst_rtsp_range_free (range);
801 /* grab RTPInfo from the payloaders now */
802 rtpinfo = g_string_new ("");
804 n_streams = gst_rtsp_media_n_streams (media->media);
805 for (i = 0, infocount = 0; i < n_streams; i++) {
806 GstRTSPStreamTransport *trans;
807 GstRTSPTransport *tr;
811 /* get the transport, if there is no transport configured, skip this stream */
812 trans = gst_rtsp_session_media_get_transport (media, i);
814 GST_INFO ("stream %d is not configured", i);
817 tr = trans->transport;
819 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
820 /* for TCP, link the stream to the TCP connection of the client */
821 link_transport (client, session, trans);
824 if (gst_rtsp_stream_get_rtpinfo (trans->stream, &rtptime, &seq)) {
826 g_string_append (rtpinfo, ", ");
828 uristr = gst_rtsp_url_get_request_uri (state->uri);
829 g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u",
830 uristr, i, seq, rtptime);
835 GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
839 /* construct the response now */
840 code = GST_RTSP_STS_OK;
841 gst_rtsp_message_init_response (state->response, code,
842 gst_rtsp_status_as_text (code), state->request);
844 /* add the RTP-Info header */
846 str = g_string_free (rtpinfo, FALSE);
847 gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RTP_INFO, str);
849 g_string_free (rtpinfo, TRUE);
853 str = gst_rtsp_media_get_range_string (media->media, TRUE);
854 gst_rtsp_message_take_header (state->response, GST_RTSP_HDR_RANGE, str);
856 send_response (client, session, state->response);
858 /* start playing after sending the request */
859 gst_rtsp_session_media_set_state (media, GST_STATE_PLAYING);
861 media->state = GST_RTSP_STATE_PLAYING;
863 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST],
871 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, state);
876 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
881 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
888 do_keepalive (GstRTSPSession * session)
890 GST_INFO ("keep session %p alive", session);
891 gst_rtsp_session_touch (session);
894 /* parse @transport and return a valid transport in @tr. only transports
895 * from @supported are returned. Returns FALSE if no valid transport
898 parse_transport (const char *transport, GstRTSPLowerTrans supported,
899 GstRTSPTransport * tr)
906 gst_rtsp_transport_init (tr);
908 GST_DEBUG ("parsing transports %s", transport);
910 transports = g_strsplit (transport, ",", 0);
912 /* loop through the transports, try to parse */
913 for (i = 0; transports[i]; i++) {
914 res = gst_rtsp_transport_parse (transports[i], tr);
915 if (res != GST_RTSP_OK) {
916 /* no valid transport, search some more */
917 GST_WARNING ("could not parse transport %s", transports[i]);
921 /* we have a transport, see if it's RTP/AVP */
922 if (tr->trans != GST_RTSP_TRANS_RTP || tr->profile != GST_RTSP_PROFILE_AVP) {
923 GST_WARNING ("invalid transport %s", transports[i]);
927 if (!(tr->lower_transport & supported)) {
928 GST_WARNING ("unsupported transport %s", transports[i]);
932 /* we have a valid transport */
933 GST_INFO ("found valid transport %s", transports[i]);
938 gst_rtsp_transport_init (tr);
940 g_strfreev (transports);
946 handle_blocksize (GstRTSPMedia * media, GstRTSPStream * stream,
947 GstRTSPMessage * request)
949 gchar *blocksize_str;
952 if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
953 &blocksize_str, 0) == GST_RTSP_OK) {
957 blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
958 if (end == blocksize_str) {
959 GST_ERROR ("failed to parse blocksize");
962 /* we don't want to change the mtu when this media
963 * can be shared because it impacts other clients */
964 if (gst_rtsp_media_is_shared (media))
967 if (blocksize > G_MAXUINT)
968 blocksize = G_MAXUINT;
969 gst_rtsp_stream_set_mtu (stream, blocksize);
976 configure_client_transport (GstRTSPClient * client, GstRTSPClientState * state,
977 GstRTSPTransport * ct)
979 /* we have a valid transport now, set the destination of the client. */
980 if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
981 if (ct->destination == NULL || !client->use_client_settings) {
982 GstRTSPAddress *addr;
984 addr = gst_rtsp_stream_get_address (state->stream);
988 g_free (ct->destination);
989 ct->destination = g_strdup (addr->address);
990 ct->port.min = addr->port;
991 ct->port.max = addr->port + addr->n_ports - 1;
997 url = gst_rtsp_connection_get_url (client->connection);
998 g_free (ct->destination);
999 ct->destination = g_strdup (url->host);
1001 if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1002 /* check if the client selected channels for TCP */
1003 if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1004 gst_rtsp_session_media_alloc_channels (state->sessmedia,
1014 GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1019 static GstRTSPTransport *
1020 make_server_transport (GstRTSPClient * client, GstRTSPClientState * state,
1021 GstRTSPTransport * ct)
1023 GstRTSPTransport *st;
1025 /* prepare the server transport */
1026 gst_rtsp_transport_new (&st);
1028 st->trans = ct->trans;
1029 st->profile = ct->profile;
1030 st->lower_transport = ct->lower_transport;
1032 switch (st->lower_transport) {
1033 case GST_RTSP_LOWER_TRANS_UDP:
1034 st->client_port = ct->client_port;
1035 st->server_port = state->stream->server_port;
1037 case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1038 st->port = ct->port;
1039 st->destination = g_strdup (ct->destination);
1042 case GST_RTSP_LOWER_TRANS_TCP:
1043 st->interleaved = ct->interleaved;
1048 if (state->stream->session)
1049 g_object_get (state->stream->session, "internal-ssrc", &st->ssrc, NULL);
1055 handle_setup_request (GstRTSPClient * client, GstRTSPClientState * state)
1060 GstRTSPTransport *ct, *st;
1061 GstRTSPLowerTrans supported;
1062 GstRTSPStatusCode code;
1063 GstRTSPSession *session;
1064 GstRTSPStreamTransport *trans;
1065 gchar *trans_str, *pos;
1067 GstRTSPSessionMedia *sessmedia;
1068 GstRTSPMedia *media;
1069 GstRTSPStream *stream;
1073 /* the uri contains the stream number we added in the SDP config, which is
1074 * always /stream=%d so we need to strip that off
1075 * parse the stream we need to configure, look for the stream in the abspath
1076 * first and then in the query. */
1077 if (uri->abspath == NULL || !(pos = strstr (uri->abspath, "/stream="))) {
1078 if (uri->query == NULL || !(pos = strstr (uri->query, "/stream=")))
1082 /* we can mofify the parsed uri in place */
1085 pos += strlen ("/stream=");
1086 if (sscanf (pos, "%u", &streamid) != 1)
1089 /* parse the transport */
1091 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_TRANSPORT,
1093 if (res != GST_RTSP_OK)
1096 gst_rtsp_transport_new (&ct);
1098 /* our supported transports */
1099 supported = GST_RTSP_LOWER_TRANS_UDP |
1100 GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP;
1102 /* parse and find a usable supported transport */
1103 if (!parse_transport (transport, supported, ct))
1104 goto unsupported_transports;
1106 /* we create the session after parsing stuff so that we don't make
1107 * a session for malformed requests */
1108 if (client->session_pool == NULL)
1111 session = state->session;
1114 g_object_ref (session);
1115 /* get a handle to the configuration of the media in the session, this can
1116 * return NULL if this is a new url to manage in this session. */
1117 sessmedia = gst_rtsp_session_get_media (session, uri);
1119 /* create a session if this fails we probably reached our session limit or
1121 if (!(session = gst_rtsp_session_pool_create (client->session_pool)))
1122 goto service_unavailable;
1124 state->session = session;
1126 /* we need a new media configuration in this session */
1130 /* we have no media, find one and manage it */
1131 if (sessmedia == NULL) {
1132 /* get a handle to the configuration of the media in the session */
1133 if ((media = find_media (client, state))) {
1134 /* manage the media in our session now */
1135 sessmedia = gst_rtsp_session_manage_media (session, uri, media);
1139 /* if we stil have no media, error */
1140 if (sessmedia == NULL)
1143 state->sessmedia = sessmedia;
1144 state->media = media = sessmedia->media;
1146 /* now get the stream */
1147 stream = gst_rtsp_media_get_stream (media, streamid);
1151 state->stream = stream;
1153 /* set blocksize on this stream */
1154 if (!handle_blocksize (media, stream, state->request))
1155 goto invalid_blocksize;
1157 /* update the client transport */
1158 if (!configure_client_transport (client, state, ct))
1159 goto unsupported_client_transport;
1161 /* set in the session media transport */
1162 trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1164 /* configure keepalive for this transport */
1165 gst_rtsp_stream_transport_set_keepalive (trans,
1166 (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1168 /* create and serialize the server transport */
1169 st = make_server_transport (client, state, ct);
1170 trans_str = gst_rtsp_transport_as_text (st);
1171 gst_rtsp_transport_free (st);
1173 /* construct the response now */
1174 code = GST_RTSP_STS_OK;
1175 gst_rtsp_message_init_response (state->response, code,
1176 gst_rtsp_status_as_text (code), state->request);
1178 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_TRANSPORT,
1182 send_response (client, session, state->response);
1184 /* update the state */
1185 switch (sessmedia->state) {
1186 case GST_RTSP_STATE_PLAYING:
1187 case GST_RTSP_STATE_RECORDING:
1188 case GST_RTSP_STATE_READY:
1189 /* no state change */
1192 sessmedia->state = GST_RTSP_STATE_READY;
1195 g_object_unref (session);
1197 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST],
1205 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1210 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, state);
1211 g_object_unref (session);
1212 gst_rtsp_transport_free (ct);
1217 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, state);
1218 g_object_unref (session);
1219 gst_rtsp_transport_free (ct);
1222 unsupported_client_transport:
1224 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1225 g_object_unref (session);
1226 gst_rtsp_transport_free (ct);
1231 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1234 unsupported_transports:
1236 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, state);
1237 gst_rtsp_transport_free (ct);
1242 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1243 gst_rtsp_transport_free (ct);
1246 service_unavailable:
1248 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1249 gst_rtsp_transport_free (ct);
1254 static GstSDPMessage *
1255 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1261 gst_sdp_message_new (&sdp);
1263 /* some standard things first */
1264 gst_sdp_message_set_version (sdp, "0");
1266 if (client->is_ipv6)
1271 gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1274 gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1275 gst_sdp_message_set_information (sdp, "rtsp-server");
1276 gst_sdp_message_add_time (sdp, "0", "0", NULL);
1277 gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1278 gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1279 gst_sdp_message_add_attribute (sdp, "control", "*");
1281 info.server_proto = proto;
1282 info.server_ip = g_strdup (client->server_ip);
1284 /* create an SDP for the media object */
1285 if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1288 g_free (info.server_ip);
1295 g_free (info.server_ip);
1296 gst_sdp_message_free (sdp);
1301 /* for the describe we must generate an SDP */
1303 handle_describe_request (GstRTSPClient * client, GstRTSPClientState * state)
1308 gchar *str, *content_base;
1309 GstRTSPMedia *media;
1310 GstRTSPClientClass *klass;
1312 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1314 /* check what kind of format is accepted, we don't really do anything with it
1315 * and always return SDP for now. */
1320 gst_rtsp_message_get_header (state->request, GST_RTSP_HDR_ACCEPT,
1322 if (res == GST_RTSP_ENOTIMPL)
1325 if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1329 /* find the media object for the uri */
1330 if (!(media = find_media (client, state)))
1333 /* create an SDP for the media object on this client */
1334 if (!(sdp = klass->create_sdp (client, media)))
1337 g_object_unref (media);
1339 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1340 gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1342 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_TYPE,
1345 /* content base for some clients that might screw up creating the setup uri */
1346 str = gst_rtsp_url_get_request_uri (state->uri);
1347 str_len = strlen (str);
1349 /* check for trailing '/' and append one */
1350 if (str[str_len - 1] != '/') {
1351 content_base = g_malloc (str_len + 2);
1352 memcpy (content_base, str, str_len);
1353 content_base[str_len] = '/';
1354 content_base[str_len + 1] = '\0';
1360 GST_INFO ("adding content-base: %s", content_base);
1362 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_CONTENT_BASE,
1364 g_free (content_base);
1366 /* add SDP to the response body */
1367 str = gst_sdp_message_as_text (sdp);
1368 gst_rtsp_message_take_body (state->response, (guint8 *) str, strlen (str));
1369 gst_sdp_message_free (sdp);
1371 send_response (client, state->session, state->response);
1373 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1381 /* error reply is already sent */
1386 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, state);
1387 g_object_unref (media);
1393 handle_options_request (GstRTSPClient * client, GstRTSPClientState * state)
1395 GstRTSPMethod options;
1398 options = GST_RTSP_DESCRIBE |
1403 GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1405 str = gst_rtsp_options_as_text (options);
1407 gst_rtsp_message_init_response (state->response, GST_RTSP_STS_OK,
1408 gst_rtsp_status_as_text (GST_RTSP_STS_OK), state->request);
1410 gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_PUBLIC, str);
1413 send_response (client, state->session, state->response);
1415 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1421 /* remove duplicate and trailing '/' */
1423 sanitize_uri (GstRTSPUrl * uri)
1427 gboolean have_slash, prev_slash;
1429 s = d = uri->abspath;
1430 len = strlen (uri->abspath);
1434 for (i = 0; i < len; i++) {
1435 have_slash = s[i] == '/';
1437 if (!have_slash || !prev_slash)
1439 prev_slash = have_slash;
1441 len = d - uri->abspath;
1442 /* don't remove the first slash if that's the only thing left */
1443 if (len > 1 && *(d - 1) == '/')
1449 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1451 GST_INFO ("client %p: session %p finished", client, session);
1453 /* unlink all media managed in this session */
1454 client_unlink_session (client, session);
1456 /* remove the session */
1457 if (!(client->sessions = g_list_remove (client->sessions, session))) {
1458 GST_INFO ("client %p: all sessions finalized, close the connection",
1460 close_connection (client);
1465 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
1469 for (walk = client->sessions; walk; walk = g_list_next (walk)) {
1470 GstRTSPSession *msession = (GstRTSPSession *) walk->data;
1472 /* we already know about this session */
1473 if (msession == session)
1477 GST_INFO ("watching session %p", session);
1479 g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
1481 client->sessions = g_list_prepend (client->sessions, session);
1483 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1488 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1490 GstRTSPMethod method;
1491 const gchar *uristr;
1493 GstRTSPVersion version;
1495 GstRTSPSession *session;
1496 GstRTSPClientState state = { NULL };
1497 GstRTSPMessage response = { 0 };
1500 state.request = request;
1501 state.response = &response;
1503 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1504 gst_rtsp_message_dump (request);
1507 GST_INFO ("client %p: received a request", client);
1509 gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1511 if (version != GST_RTSP_VERSION_1_0) {
1512 /* we can only handle 1.0 requests */
1513 send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
1517 state.method = method;
1519 /* we always try to parse the url first */
1520 if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK) {
1521 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1525 /* sanitize the uri */
1529 /* get the session if there is any */
1530 res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1531 if (res == GST_RTSP_OK) {
1532 if (client->session_pool == NULL)
1535 /* we had a session in the request, find it again */
1536 if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
1537 goto session_not_found;
1539 /* we add the session to the client list of watched sessions. When a session
1540 * disappears because it times out, we will be notified. If all sessions are
1541 * gone, we will close the connection */
1542 client_watch_session (client, session);
1546 state.session = session;
1549 if (!gst_rtsp_auth_check (client->auth, client, 0, &state))
1550 goto not_authorized;
1553 /* now see what is asked and dispatch to a dedicated handler */
1555 case GST_RTSP_OPTIONS:
1556 handle_options_request (client, &state);
1558 case GST_RTSP_DESCRIBE:
1559 handle_describe_request (client, &state);
1561 case GST_RTSP_SETUP:
1562 handle_setup_request (client, &state);
1565 handle_play_request (client, &state);
1567 case GST_RTSP_PAUSE:
1568 handle_pause_request (client, &state);
1570 case GST_RTSP_TEARDOWN:
1571 handle_teardown_request (client, &state);
1573 case GST_RTSP_SET_PARAMETER:
1574 handle_set_param_request (client, &state);
1576 case GST_RTSP_GET_PARAMETER:
1577 handle_get_param_request (client, &state);
1579 case GST_RTSP_ANNOUNCE:
1580 case GST_RTSP_RECORD:
1581 case GST_RTSP_REDIRECT:
1582 send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, &state);
1584 case GST_RTSP_INVALID:
1586 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &state);
1590 g_object_unref (session);
1592 gst_rtsp_url_free (uri);
1598 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, &state);
1603 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, &state);
1608 handle_unauthorized_request (client, client->auth, &state);
1614 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
1624 /* find the stream for this message */
1625 res = gst_rtsp_message_parse_data (message, &channel);
1626 if (res != GST_RTSP_OK)
1629 gst_rtsp_message_steal_body (message, &data, &size);
1631 buffer = gst_buffer_new_wrapped (data, size);
1634 for (walk = client->transports; walk; walk = g_list_next (walk)) {
1635 GstRTSPStreamTransport *trans;
1636 GstRTSPStream *stream;
1637 GstRTSPTransport *tr;
1641 /* we only add clients with a transport to the list */
1642 tr = trans->transport;
1643 stream = trans->stream;
1645 /* check for TCP transport */
1646 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1647 /* dispatch to the stream based on the channel number */
1648 if (tr->interleaved.min == channel) {
1649 gst_rtsp_stream_recv_rtp (stream, buffer);
1652 } else if (tr->interleaved.max == channel) {
1653 gst_rtsp_stream_recv_rtcp (stream, buffer);
1660 gst_buffer_unref (buffer);
1664 * gst_rtsp_client_set_session_pool:
1665 * @client: a #GstRTSPClient
1666 * @pool: a #GstRTSPSessionPool
1668 * Set @pool as the sessionpool for @client which it will use to find
1669 * or allocate sessions. the sessionpool is usually inherited from the server
1670 * that created the client but can be overridden later.
1673 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
1674 GstRTSPSessionPool * pool)
1676 GstRTSPSessionPool *old;
1678 old = client->session_pool;
1681 g_object_ref (pool);
1682 client->session_pool = pool;
1684 g_object_unref (old);
1689 * gst_rtsp_client_get_session_pool:
1690 * @client: a #GstRTSPClient
1692 * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
1694 * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
1696 GstRTSPSessionPool *
1697 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
1699 GstRTSPSessionPool *result;
1701 if ((result = client->session_pool))
1702 g_object_ref (result);
1708 * gst_rtsp_client_set_server:
1709 * @client: a #GstRTSPClient
1710 * @server: a #GstRTSPServer
1712 * Set @server as the server that created @client.
1715 gst_rtsp_client_set_server (GstRTSPClient * client, GstRTSPServer * server)
1719 old = client->server;
1720 if (old != server) {
1722 g_object_ref (server);
1723 client->server = server;
1725 g_object_unref (old);
1730 * gst_rtsp_client_get_server:
1731 * @client: a #GstRTSPClient
1733 * Get the #GstRTSPServer object that @client was created from.
1735 * Returns: (transfer full): a #GstRTSPServer, unref after usage.
1738 gst_rtsp_client_get_server (GstRTSPClient * client)
1740 GstRTSPServer *result;
1742 if ((result = client->server))
1743 g_object_ref (result);
1749 * gst_rtsp_client_set_media_mapping:
1750 * @client: a #GstRTSPClient
1751 * @mapping: a #GstRTSPMediaMapping
1753 * Set @mapping as the media mapping for @client which it will use to map urls
1754 * to media streams. These mapping is usually inherited from the server that
1755 * created the client but can be overriden later.
1758 gst_rtsp_client_set_media_mapping (GstRTSPClient * client,
1759 GstRTSPMediaMapping * mapping)
1761 GstRTSPMediaMapping *old;
1763 old = client->media_mapping;
1765 if (old != mapping) {
1767 g_object_ref (mapping);
1768 client->media_mapping = mapping;
1770 g_object_unref (old);
1775 * gst_rtsp_client_get_media_mapping:
1776 * @client: a #GstRTSPClient
1778 * Get the #GstRTSPMediaMapping object that @client uses to manage its sessions.
1780 * Returns: (transfer full): a #GstRTSPMediaMapping, unref after usage.
1782 GstRTSPMediaMapping *
1783 gst_rtsp_client_get_media_mapping (GstRTSPClient * client)
1785 GstRTSPMediaMapping *result;
1787 if ((result = client->media_mapping))
1788 g_object_ref (result);
1794 * gst_rtsp_client_set_use_client_settings:
1795 * @client: a #GstRTSPClient
1796 * @use_client_settings: whether to use client settings for multicast
1798 * Use client transport settings (destination and ttl) for multicast.
1799 * When @use_client_settings is %FALSE, the server settings will be
1803 gst_rtsp_client_set_use_client_settings (GstRTSPClient * client,
1804 gboolean use_client_settings)
1806 client->use_client_settings = use_client_settings;
1810 * gst_rtsp_client_get_use_client_settings:
1811 * @client: a #GstRTSPClient
1813 * Check if client transport settings (destination and ttl) for multicast
1817 gst_rtsp_client_get_use_client_settings (GstRTSPClient * client)
1819 return client->use_client_settings;
1823 * gst_rtsp_client_set_auth:
1824 * @client: a #GstRTSPClient
1825 * @auth: a #GstRTSPAuth
1827 * configure @auth to be used as the authentication manager of @client.
1830 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
1834 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
1840 g_object_ref (auth);
1841 client->auth = auth;
1843 g_object_unref (old);
1849 * gst_rtsp_client_get_auth:
1850 * @client: a #GstRTSPClient
1852 * Get the #GstRTSPAuth used as the authentication manager of @client.
1854 * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
1858 gst_rtsp_client_get_auth (GstRTSPClient * client)
1860 GstRTSPAuth *result;
1862 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
1864 if ((result = client->auth))
1865 g_object_ref (result);
1870 static GstRTSPResult
1871 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
1874 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1876 switch (message->type) {
1877 case GST_RTSP_MESSAGE_REQUEST:
1878 handle_request (client, message);
1880 case GST_RTSP_MESSAGE_RESPONSE:
1882 case GST_RTSP_MESSAGE_DATA:
1883 handle_data (client, message);
1891 static GstRTSPResult
1892 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
1894 /* GstRTSPClient *client; */
1896 /* client = GST_RTSP_CLIENT (user_data); */
1898 /* GST_INFO ("client %p: sent a message with cseq %d", client, cseq); */
1903 static GstRTSPResult
1904 closed (GstRTSPWatch * watch, gpointer user_data)
1906 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1907 const gchar *tunnelid;
1909 GST_INFO ("client %p: connection closed", client);
1911 if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
1912 g_mutex_lock (&tunnels_lock);
1913 /* remove from tunnelids */
1914 g_hash_table_remove (tunnels, tunnelid);
1915 g_mutex_unlock (&tunnels_lock);
1921 static GstRTSPResult
1922 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
1924 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1927 str = gst_rtsp_strresult (result);
1928 GST_INFO ("client %p: received an error %s", client, str);
1934 static GstRTSPResult
1935 error_full (GstRTSPWatch * watch, GstRTSPResult result,
1936 GstRTSPMessage * message, guint id, gpointer user_data)
1938 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
1941 str = gst_rtsp_strresult (result);
1943 ("client %p: received an error %s when handling message %p with id %d",
1944 client, str, message, id);
1951 remember_tunnel (GstRTSPClient * client)
1953 const gchar *tunnelid;
1955 /* store client in the pending tunnels */
1956 tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
1957 if (tunnelid == NULL)
1960 GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
1962 /* we can't have two clients connecting with the same tunnelid */
1963 g_mutex_lock (&tunnels_lock);
1964 if (g_hash_table_lookup (tunnels, tunnelid))
1965 goto tunnel_existed;
1967 g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
1968 g_mutex_unlock (&tunnels_lock);
1975 GST_ERROR ("client %p: no tunnelid provided", client);
1980 g_mutex_unlock (&tunnels_lock);
1981 GST_ERROR ("client %p: tunnel session %s already existed", client,
1987 static GstRTSPStatusCode
1988 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
1990 GstRTSPClient *client;
1992 client = GST_RTSP_CLIENT (user_data);
1994 GST_INFO ("client %p: tunnel start (connection %p)", client,
1995 client->connection);
1997 if (!remember_tunnel (client))
2000 return GST_RTSP_STS_OK;
2005 GST_ERROR ("client %p: error starting tunnel", client);
2006 return GST_RTSP_STS_SERVICE_UNAVAILABLE;
2010 static GstRTSPResult
2011 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
2013 GstRTSPClient *client;
2015 client = GST_RTSP_CLIENT (user_data);
2017 GST_INFO ("client %p: tunnel lost (connection %p)", client,
2018 client->connection);
2020 /* ignore error, it'll only be a problem when the client does a POST again */
2021 remember_tunnel (client);
2026 static GstRTSPResult
2027 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
2029 const gchar *tunnelid;
2030 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2031 GstRTSPClient *oclient;
2033 GST_INFO ("client %p: tunnel complete", client);
2035 /* find previous tunnel */
2036 tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
2037 if (tunnelid == NULL)
2040 g_mutex_lock (&tunnels_lock);
2041 if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
2044 /* remove the old client from the table. ref before because removing it will
2045 * remove the ref to it. */
2046 g_object_ref (oclient);
2047 g_hash_table_remove (tunnels, tunnelid);
2049 if (oclient->watch == NULL)
2051 g_mutex_unlock (&tunnels_lock);
2053 GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
2054 oclient->connection, client->connection);
2056 /* merge the tunnels into the first client */
2057 gst_rtsp_connection_do_tunnel (oclient->connection, client->connection);
2058 gst_rtsp_watch_reset (oclient->watch);
2059 g_object_unref (oclient);
2066 GST_INFO ("client %p: no tunnelid provided", client);
2067 return GST_RTSP_ERROR;
2071 g_mutex_unlock (&tunnels_lock);
2072 GST_INFO ("client %p: tunnel session %s not found", client, tunnelid);
2073 return GST_RTSP_ERROR;
2077 g_mutex_unlock (&tunnels_lock);
2078 GST_INFO ("client %p: tunnel session %s was closed", client, tunnelid);
2079 g_object_unref (oclient);
2080 return GST_RTSP_ERROR;
2084 static GstRTSPWatchFuncs watch_funcs = {
2096 client_watch_notify (GstRTSPClient * client)
2098 GST_INFO ("client %p: watch destroyed", client);
2099 client->watch = NULL;
2100 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2101 g_object_unref (client);
2105 setup_client (GstRTSPClient * client, GSocket * socket,
2106 GstRTSPConnection * conn, GError ** error)
2108 GSocket *read_socket;
2109 GSocketAddress *address;
2112 read_socket = gst_rtsp_connection_get_read_socket (conn);
2113 client->is_ipv6 = g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV6;
2115 if (!(address = g_socket_get_remote_address (read_socket, error)))
2118 g_free (client->server_ip);
2119 /* keep the original ip that the client connected to */
2120 if (G_IS_INET_SOCKET_ADDRESS (address)) {
2121 GInetAddress *iaddr;
2123 iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2125 client->server_ip = g_inet_address_to_string (iaddr);
2126 g_object_unref (address);
2128 client->server_ip = g_strdup ("unknown");
2131 GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2132 client->server_ip, client->is_ipv6);
2134 url = gst_rtsp_connection_get_url (conn);
2135 GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2137 client->connection = conn;
2144 GST_ERROR ("could not get remote address %s", (*error)->message);
2150 * gst_rtsp_client_use_socket:
2151 * @client: a #GstRTSPClient
2152 * @socket: a #GSocket
2153 * @ip: the IP address of the remote client
2154 * @port: the port used by the other end
2155 * @initial_buffer: any zero terminated initial data that was already read from
2159 * Take an existing network socket and use it for an RTSP connection.
2161 * Returns: %TRUE on success.
2164 gst_rtsp_client_use_socket (GstRTSPClient * client, GSocket * socket,
2165 const gchar * ip, gint port, const gchar * initial_buffer, GError ** error)
2167 GstRTSPConnection *conn;
2170 GST_RTSP_CHECK (gst_rtsp_connection_create_from_socket (socket, ip, port,
2171 initial_buffer, &conn), no_connection);
2173 return setup_client (client, socket, conn, error);
2178 gchar *str = gst_rtsp_strresult (res);
2180 GST_ERROR ("could not create connection from socket %p: %s", socket, str);
2187 * gst_rtsp_client_accept:
2188 * @client: a #GstRTSPClient
2189 * @socket: a #GSocket
2190 * @context: the context to run in
2191 * @cancellable: a #GCancellable
2194 * Accept a new connection for @client on @socket.
2196 * Returns: %TRUE if the client could be accepted.
2199 gst_rtsp_client_accept (GstRTSPClient * client, GSocket * socket,
2200 GCancellable * cancellable, GError ** error)
2202 GstRTSPConnection *conn;
2205 /* a new client connected. */
2206 GST_RTSP_CHECK (gst_rtsp_connection_accept (socket, &conn, cancellable),
2209 return setup_client (client, socket, conn, error);
2214 gchar *str = gst_rtsp_strresult (res);
2216 GST_ERROR ("Could not accept client on server socket %p: %s", socket, str);
2223 * gst_rtsp_client_attach:
2224 * @client: a #GstRTSPClient
2225 * @context: (allow-none): a #GMainContext
2227 * Attaches @client to @context. When the mainloop for @context is run, the
2228 * client will be dispatched. When @context is NULL, the default context will be
2231 * This function should be called when the client properties and urls are fully
2232 * configured and the client is ready to start.
2234 * Returns: the ID (greater than 0) for the source within the GMainContext.
2237 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
2241 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
2242 g_return_val_if_fail (client->watch == NULL, 0);
2244 /* create watch for the connection and attach */
2245 client->watch = gst_rtsp_watch_new (client->connection, &watch_funcs,
2246 g_object_ref (client), (GDestroyNotify) client_watch_notify);
2248 GST_INFO ("attaching to context %p", context);
2249 res = gst_rtsp_watch_attach (client->watch, context);
2250 gst_rtsp_watch_unref (client->watch);