rtsp-auth: Add support for Digest authentication
[platform/upstream/gstreamer.git] / examples / test-auth-digest.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/rtsp-server/rtsp-server.h>
23
24 static gboolean
25 remove_func (GstRTSPSessionPool * pool, GstRTSPSession * session,
26     GstRTSPServer * server)
27 {
28   return GST_RTSP_FILTER_REMOVE;
29 }
30
31 static gboolean
32 remove_sessions (GstRTSPServer * server)
33 {
34   GstRTSPSessionPool *pool;
35
36   g_print ("removing all sessions\n");
37   pool = gst_rtsp_server_get_session_pool (server);
38   gst_rtsp_session_pool_filter (pool,
39       (GstRTSPSessionPoolFilterFunc) remove_func, server);
40   g_object_unref (pool);
41
42   return FALSE;
43 }
44
45 static gboolean
46 timeout (GstRTSPServer * server)
47 {
48   GstRTSPSessionPool *pool;
49
50   pool = gst_rtsp_server_get_session_pool (server);
51   gst_rtsp_session_pool_cleanup (pool);
52   g_object_unref (pool);
53
54   return TRUE;
55 }
56
57 int
58 main (int argc, char *argv[])
59 {
60   GMainLoop *loop;
61   GstRTSPServer *server;
62   GstRTSPMountPoints *mounts;
63   GstRTSPMediaFactory *factory;
64   GstRTSPAuth *auth;
65   GstRTSPToken *token;
66
67   gst_init (&argc, &argv);
68
69   loop = g_main_loop_new (NULL, FALSE);
70
71   /* create a server instance */
72   server = gst_rtsp_server_new ();
73
74   /* get the mounts for this server, every server has a default mapper object
75    * that be used to map uri mount points to media factories */
76   mounts = gst_rtsp_server_get_mount_points (server);
77
78
79   /* make a media factory for a test stream. The default media factory can use
80    * gst-launch syntax to create pipelines. 
81    * any launch line works as long as it contains elements named pay%d. Each
82    * element with pay%d names will be a stream */
83   factory = gst_rtsp_media_factory_new ();
84   gst_rtsp_media_factory_set_launch (factory, "( "
85       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
86       "x264enc ! rtph264pay name=pay0 pt=96 "
87       "audiotestsrc ! audio/x-raw,rate=8000 ! "
88       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
89   /* attach the test factory to the /test url */
90   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
91
92   /* allow user and admin to access this resource */
93   gst_rtsp_media_factory_add_role (factory, "user",
94       GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE,
95       GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, TRUE, NULL);
96   gst_rtsp_media_factory_add_role (factory, "admin",
97       GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE,
98       GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, TRUE, NULL);
99   /* admin2 can look at the media but not construct so he gets a
100    * 401 Unauthorized */
101   gst_rtsp_media_factory_add_role (factory, "admin2",
102       GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE,
103       GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, FALSE, NULL);
104   /* Anonymous user can do the same things as admin2 on this resource */
105   gst_rtsp_media_factory_add_role (factory, "anonymous",
106       GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE,
107       GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, FALSE, NULL);
108
109   /* make another factory */
110   factory = gst_rtsp_media_factory_new ();
111   gst_rtsp_media_factory_set_launch (factory, "( "
112       "videotestsrc ! video/x-raw,width=352,height=288,framerate=30/1 ! "
113       "x264enc ! rtph264pay name=pay0 pt=96 )");
114   /* attach the test factory to the /test url */
115   gst_rtsp_mount_points_add_factory (mounts, "/test2", factory);
116
117   /* allow admin2 to access this resource */
118   /* user and admin have no permissions so they can't even see the
119    * media and get a 404 Not Found */
120   gst_rtsp_media_factory_add_role (factory, "admin2",
121       GST_RTSP_PERM_MEDIA_FACTORY_ACCESS, G_TYPE_BOOLEAN, TRUE,
122       GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT, G_TYPE_BOOLEAN, TRUE, NULL);
123
124   /* don't need the ref to the mapper anymore */
125   g_object_unref (mounts);
126
127   /* make a new authentication manager */
128   auth = gst_rtsp_auth_new ();
129   gst_rtsp_auth_set_supported_methods (auth, GST_RTSP_AUTH_DIGEST);
130
131   /* make default token, it has no permissions */
132   token =
133       gst_rtsp_token_new (GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE, G_TYPE_STRING,
134       "anonymous", NULL);
135   gst_rtsp_auth_set_default_token (auth, token);
136   gst_rtsp_token_unref (token);
137
138   /* make user token */
139   token =
140       gst_rtsp_token_new (GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE, G_TYPE_STRING,
141       "user", NULL);
142   gst_rtsp_auth_add_digest (auth, "user", "password", token);
143   gst_rtsp_token_unref (token);
144
145   /* make admin token */
146   token =
147       gst_rtsp_token_new (GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE, G_TYPE_STRING,
148       "admin", NULL);
149   gst_rtsp_auth_add_digest (auth, "admin", "power", token);
150   gst_rtsp_token_unref (token);
151
152   /* make admin2 token */
153   token =
154       gst_rtsp_token_new (GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE, G_TYPE_STRING,
155       "admin2", NULL);
156   gst_rtsp_auth_add_digest (auth, "admin2", "power2", token);
157   gst_rtsp_token_unref (token);
158
159   /* set as the server authentication manager */
160   gst_rtsp_server_set_auth (server, auth);
161   g_object_unref (auth);
162
163   /* attach the server to the default maincontext */
164   if (gst_rtsp_server_attach (server, NULL) == 0)
165     goto failed;
166
167   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
168   g_timeout_add_seconds (10, (GSourceFunc) remove_sessions, server);
169
170   /* start serving */
171   g_print ("stream with user:password ready at rtsp://127.0.0.1:8554/test\n");
172   g_print ("stream with admin:power ready at rtsp://127.0.0.1:8554/test\n");
173   g_print ("stream with admin2:power2 ready at rtsp://127.0.0.1:8554/test2\n");
174   g_main_loop_run (loop);
175
176   return 0;
177
178   /* ERRORS */
179 failed:
180   {
181     g_print ("failed to attach the server\n");
182     return -1;
183   }
184 }