dnsproxy: Only one copy of the relevant buffers will be made to a TCP request
[framework/connectivity/connman.git] / plugins / polkit.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <gdbus.h>
27
28 #define CONNMAN_API_SUBJECT_TO_CHANGE
29 #include <connman/plugin.h>
30 #include <connman/dbus.h>
31
32 static const GDBusSecurityTable polkit_security[] = {
33         { CONNMAN_PRIVILEGE_MODIFY, "net.connman.modify",
34                                 G_DBUS_SECURITY_FLAG_BUILTIN |
35                                 G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
36         { CONNMAN_PRIVILEGE_SECRET, "net.connman.secret",
37                                 G_DBUS_SECURITY_FLAG_BUILTIN |
38                                 G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
39         { }
40 };
41
42 static int polkit_init(void)
43 {
44         g_dbus_register_security(polkit_security);
45
46         return 0;
47 }
48
49 static void polkit_exit(void)
50 {
51         g_dbus_unregister_security(polkit_security);
52 }
53
54 CONNMAN_PLUGIN_DEFINE(polkit, "PolicyKit authorization plugin", VERSION,
55                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, polkit_init, polkit_exit)