technology: Notify the regulatory domain setting by device
[framework/connectivity/connman.git] / plugins / polkit.c
index 76e6452..ae38364 100644 (file)
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
 #include <config.h>
 #endif
 
+#include <gdbus.h>
+
+#define CONNMAN_API_SUBJECT_TO_CHANGE
 #include <connman/plugin.h>
-#include <connman/log.h>
+#include <connman/dbus.h>
+
+static const GDBusSecurityTable polkit_security[] = {
+       { CONNMAN_PRIVILEGE_MODIFY, "net.connman.modify",
+                               G_DBUS_SECURITY_FLAG_BUILTIN |
+                               G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
+       { CONNMAN_PRIVILEGE_SECRET, "net.connman.secret",
+                               G_DBUS_SECURITY_FLAG_BUILTIN |
+                               G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
+       { }
+};
 
 static int polkit_init(void)
 {
+       g_dbus_register_security(polkit_security);
+
        return 0;
 }
 
 static void polkit_exit(void)
 {
+       g_dbus_unregister_security(polkit_security);
 }
 
-CONNMAN_PLUGIN_DEFINE("polkit", "PolicyKit authorization plugin", VERSION,
-                                               polkit_init, polkit_exit)
+CONNMAN_PLUGIN_DEFINE(polkit, "PolicyKit authorization plugin", VERSION,
+               CONNMAN_PLUGIN_PRIORITY_DEFAULT, polkit_init, polkit_exit)