summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-08-29 12:27:47 -0400
committerDan Winship <danw@gnome.org>2014-09-05 13:47:29 -0400
commite627785a1d6344c542cf29572be2b8772841092f (patch)
tree485a2e37b0d2fc7f244607944b1a26a22ec5ebc4
parent4b5e9f18759ae7092248a97d1f36eb5db4c5ee85 (diff)
downloadNetworkManager-e627785a1d6344c542cf29572be2b8772841092f.tar.gz
libnm: add test-secret-agent
Implement some basic secret agent functionality in test-networkmanager-service.py, and add test-secret-agent to test that NMSecretAgent works as expected.
-rw-r--r--.gitignore1
-rw-r--r--libnm/tests/Makefile.am7
-rw-r--r--libnm/tests/test-secret-agent.c644
-rwxr-xr-xtools/test-networkmanager-service.py92
4 files changed, 741 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index fb475a2b72..41c0d90796 100644
--- a/.gitignore
+++ b/.gitignore
@@ -165,6 +165,7 @@ valgrind-*.log
/libnm/tests/test-nm-client
/libnm/tests/test-remote-settings-client
+/libnm/tests/test-secret-agent
/m4/codeset.m4
/m4/gettext.m4
diff --git a/libnm/tests/Makefile.am b/libnm/tests/Makefile.am
index 40763d0109..cbf2da9629 100644
--- a/libnm/tests/Makefile.am
+++ b/libnm/tests/Makefile.am
@@ -19,7 +19,7 @@ LDADD = \
noinst_PROGRAMS = $(TESTS)
-TESTS = test-nm-client test-remote-settings-client
+TESTS = test-nm-client test-remote-settings-client test-secret-agent
test_nm_client_SOURCES = \
common.c \
@@ -31,6 +31,11 @@ test_remote_settings_client_SOURCES = \
common.h \
test-remote-settings-client.c
+test_secret_agent_SOURCES = \
+ common.c \
+ common.h \
+ test-secret-agent.c
+
TESTS_ENVIRONMENT = $(srcdir)/libnm-test-launch.sh
endif
diff --git a/libnm/tests/test-secret-agent.c b/libnm/tests/test-secret-agent.c
new file mode 100644
index 0000000000..92ecd1a520
--- /dev/null
+++ b/libnm/tests/test-secret-agent.c
@@ -0,0 +1,644 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Copyright 2010 - 2014 Red Hat, Inc.
+ *
+ */
+
+#include <glib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <signal.h>
+
+#include <NetworkManager.h>
+#include "nm-glib-compat.h"
+#include "nm-test-utils.h"
+
+#include "common.h"
+
+/*******************************************************************/
+
+enum {
+ SECRET_REQUESTED,
+
+ LAST_SIGNAL
+};
+
+static guint signals[LAST_SIGNAL] = { 0 };
+
+typedef NMSecretAgent TestSecretAgent;
+typedef NMSecretAgentClass TestSecretAgentClass;
+
+GType test_secret_agent_get_type (void);
+G_DEFINE_TYPE (TestSecretAgent, test_secret_agent, NM_TYPE_SECRET_AGENT)
+
+static void
+test_secret_agent_init (TestSecretAgent *agent)
+{
+}
+
+static void
+test_secret_agent_get_secrets (NMSecretAgent *agent,
+ NMConnection *connection,
+ const char *connection_path,
+ const char *setting_name,
+ const char **hints,
+ NMSecretAgentGetSecretsFlags flags,
+ NMSecretAgentGetSecretsFunc callback,
+ gpointer callback_data)
+{
+ NMSettingWirelessSecurity *s_wsec;
+ GHashTable *hash = NULL, *setting_hash;
+ GValue value = G_VALUE_INIT;
+ char *secret = NULL;
+ GError *error = NULL;
+
+ g_assert_cmpstr (setting_name, ==, NM_SETTING_WIRELESS_SECURITY_SETTING_NAME);
+
+ s_wsec = nm_connection_get_setting_wireless_security (connection);
+ g_assert (s_wsec);
+ g_assert_cmpstr (nm_setting_wireless_security_get_key_mgmt (s_wsec), ==, "wpa-psk");
+ g_assert_cmpstr (nm_setting_wireless_security_get_psk (s_wsec), ==, NULL);
+
+ g_signal_emit (agent, signals[SECRET_REQUESTED], 0,
+ connection,
+ connection_path,
+ NM_SETTING_WIRELESS_SECURITY_SETTING_NAME,
+ NM_SETTING_WIRELESS_SECURITY_PSK,
+ &secret);
+
+ if (!secret) {
+ error = g_error_new (NM_SECRET_AGENT_ERROR, NM_SECRET_AGENT_ERROR_NO_SECRETS,
+ "No secrets");
+ goto done;
+ }
+
+ if (!strcmp (secret, "CANCEL")) {
+ error = g_error_new (NM_SECRET_AGENT_ERROR, NM_SECRET_AGENT_ERROR_USER_CANCELED,
+ "User canceled");
+ goto done;
+ }
+
+ hash = g_hash_table_new_full (g_str_hash, g_str_equal,
+ NULL, (GDestroyNotify) g_hash_table_unref);
+ setting_hash = g_hash_table_new (g_str_hash, g_str_equal);
+ g_hash_table_insert (hash, (char *) setting_name, setting_hash);
+
+ g_value_init (&value, G_TYPE_STRING);
+ g_value_set_string (&value, secret);
+
+ g_hash_table_insert (setting_hash, NM_SETTING_WIRELESS_SECURITY_PSK, &value);
+
+done:
+ callback (agent, connection, hash, error, callback_data);
+ g_clear_error (&error);
+ g_clear_pointer (&hash, g_hash_table_unref);
+ g_free (secret);
+}
+
+static void
+test_secret_agent_cancel_get_secrets (NMSecretAgent *agent,
+ const gchar *connection_path,
+ const gchar *setting_name)
+{
+ g_assert_not_reached ();
+}
+
+static void
+test_secret_agent_save_secrets (NMSecretAgent *agent,
+ NMConnection *connection,
+ const gchar *connection_path,
+ NMSecretAgentSaveSecretsFunc callback,
+ gpointer callback_data)
+{
+ g_assert_not_reached ();
+}
+
+static void
+test_secret_agent_delete_secrets (NMSecretAgent *agent,
+ NMConnection *connection,
+ const gchar *connection_path,
+ NMSecretAgentDeleteSecretsFunc callback,
+ gpointer callback_data)
+{
+ g_assert_not_reached ();
+}
+
+static void
+test_secret_agent_class_init (TestSecretAgentClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ NMSecretAgentClass *agent_class = NM_SECRET_AGENT_CLASS (klass);
+
+ agent_class->get_secrets = test_secret_agent_get_secrets;
+ agent_class->cancel_get_secrets = test_secret_agent_cancel_get_secrets;
+ agent_class->save_secrets = test_secret_agent_save_secrets;
+ agent_class->delete_secrets = test_secret_agent_delete_secrets;
+
+ signals[SECRET_REQUESTED] =
+ g_signal_new ("secret-requested",
+ G_OBJECT_CLASS_TYPE (object_class),
+ G_SIGNAL_RUN_LAST,
+ 0, NULL, NULL, NULL,
+ G_TYPE_STRING, 4,
+ NM_TYPE_CONNECTION,
+ G_TYPE_STRING,
+ G_TYPE_STRING,
+ G_TYPE_STRING);
+
+}
+
+static NMSecretAgent *
+test_secret_agent_new (void)
+{
+ DBusGConnection *bus;
+ NMSecretAgent *agent;
+ GError *error = NULL;
+
+ bus = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
+ g_assert_no_error (error);
+
+ agent = g_object_new (test_secret_agent_get_type (),
+ NM_SECRET_AGENT_DBUS_CONNECTION, bus,
+ NM_SECRET_AGENT_IDENTIFIER, "test-secret-agent",
+ NM_SECRET_AGENT_AUTO_REGISTER, FALSE,
+ NULL);
+ dbus_g_connection_unref (bus);
+ return agent;
+}
+
+/*******************************************************************/
+
+typedef struct {
+ NMTestServiceInfo *sinfo;
+ NMClient *client;
+ NMRemoteSettings *settings;
+
+ NMSecretAgent *agent;
+ NMDevice *device;
+ NMConnection *connection;
+
+ GMainLoop *loop;
+ guint timeout_id;
+
+ char *ifname;
+ char *con_id;
+ char *devpath;
+
+ int secrets_requested;
+} TestSecretAgentData;
+
+static gboolean
+timeout_assert (gpointer user_data)
+{
+ g_assert_not_reached ();
+}
+
+static void
+device_added_cb (NMClient *c,
+ NMDevice *device,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert (device);
+ g_assert_cmpstr (nm_device_get_iface (device), ==, sadata->ifname);
+
+ sadata->device = device;
+ g_main_loop_quit (sadata->loop);
+}
+
+static void
+connection_added_cb (NMRemoteSettings *s,
+ NMRemoteConnection *connection,
+ GError *error,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert_no_error (error);
+ g_assert_cmpstr (nm_connection_get_id (NM_CONNECTION (connection)), ==, sadata->con_id);
+
+ sadata->connection = NM_CONNECTION (connection);
+ g_main_loop_quit (sadata->loop);
+}
+
+static void
+registration_result (NMSecretAgent *agent, GError *error, gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert_no_error (error);
+ g_main_loop_quit (sadata->loop);
+}
+
+#define TEST_CON_ID_PREFIX "test-secret-agent"
+
+static void
+test_setup (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ static int counter = 0;
+ gboolean create_agent = GPOINTER_TO_UINT (test_data);
+ NMConnection *connection;
+ NMSettingConnection *s_con;
+ NMSettingWireless *s_wireless;
+ GBytes *ssid;
+ NMSetting *s_wsec;
+ gboolean success;
+ GError *error = NULL;
+ GVariant *ret;
+ gulong handler;
+
+ sadata->sinfo = nm_test_service_init ();
+ sadata->client = nm_test_new_client ();
+ sadata->settings = nm_test_new_settings ();
+
+ sadata->loop = g_main_loop_new (NULL, FALSE);
+ sadata->timeout_id = g_timeout_add_seconds (5, timeout_assert, NULL);
+
+ sadata->ifname = g_strdup_printf ("wlan%d", counter);
+ sadata->con_id = g_strdup_printf ("%s-%d", TEST_CON_ID_PREFIX, counter);
+ counter++;
+
+ /* Create the device */
+ ret = g_dbus_proxy_call_sync (sadata->sinfo->proxy,
+ "AddWifiDevice",
+ g_variant_new ("(s)", sadata->ifname),
+ G_DBUS_CALL_FLAGS_NO_AUTO_START,
+ 3000,
+ NULL,
+ &error);
+ g_assert_no_error (error);
+ g_assert (ret);
+ g_assert_cmpstr (g_variant_get_type_string (ret), ==, "(o)");
+ g_variant_get (ret, "(o)", &sadata->devpath);
+ g_variant_unref (ret);
+
+ handler = g_signal_connect (sadata->client, "device-added",
+ G_CALLBACK (device_added_cb), sadata);
+ g_main_loop_run (sadata->loop);
+ g_signal_handler_disconnect (sadata->client, handler);
+ g_assert (sadata->device);
+
+ /* Create the connection */
+ connection = nmtst_create_minimal_connection (sadata->con_id, NULL, NM_SETTING_WIRELESS_SETTING_NAME, &s_con);
+ g_object_set (s_con,
+ NM_SETTING_CONNECTION_INTERFACE_NAME, sadata->ifname,
+ NULL);
+
+ s_wireless = nm_connection_get_setting_wireless (connection);
+ ssid = g_bytes_new ("foo", 3);
+ g_object_set (s_wireless,
+ NM_SETTING_WIRELESS_SSID, ssid,
+ NULL);
+ g_bytes_unref (ssid);
+
+ s_wsec = g_object_new (NM_TYPE_SETTING_WIRELESS_SECURITY,
+ NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-psk",
+ NULL);
+ nm_connection_add_setting (connection, s_wsec);
+
+ success = nm_remote_settings_add_connection (sadata->settings,
+ connection,
+ connection_added_cb,
+ sadata);
+ g_assert (success == TRUE);
+ g_object_unref (connection);
+
+ g_main_loop_run (sadata->loop);
+ g_assert (sadata->connection);
+
+ if (create_agent) {
+ sadata->agent = test_secret_agent_new ();
+ nm_secret_agent_register (sadata->agent);
+ handler = g_signal_connect (sadata->agent, NM_SECRET_AGENT_REGISTRATION_RESULT,
+ G_CALLBACK (registration_result), sadata);
+ g_main_loop_run (sadata->loop);
+ g_signal_handler_disconnect (sadata->agent, handler);
+ }
+}
+
+static void
+test_cleanup (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ GVariant *ret;
+ GError *error = NULL;
+
+ if (sadata->agent) {
+ if (nm_secret_agent_get_registered (sadata->agent))
+ nm_secret_agent_unregister (sadata->agent);
+ g_object_unref (sadata->agent);
+ }
+
+ g_object_unref (sadata->client);
+ g_object_unref (sadata->settings);
+
+ ret = g_dbus_proxy_call_sync (sadata->sinfo->proxy,
+ "RemoveDevice",
+ g_variant_new ("(s)", sadata->devpath),
+ G_DBUS_CALL_FLAGS_NO_AUTO_START,
+ 3000,
+ NULL,
+ &error);
+ g_assert_no_error (error);
+ g_variant_unref (ret);
+
+ nm_test_service_cleanup (sadata->sinfo);
+
+ g_source_remove (sadata->timeout_id);
+ g_main_loop_unref (sadata->loop);
+
+ g_free (sadata->ifname);
+ g_free (sadata->con_id);
+ g_free (sadata->devpath);
+}
+
+/*******************************************************************/
+
+static void
+connection_activated_none_cb (NMClient *c,
+ NMActiveConnection *ac,
+ GError *error,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert (error != NULL);
+ g_assert_cmpstr (error->message, ==, "No secret agent available");
+
+ g_main_loop_quit (sadata->loop);
+}
+
+static void
+test_secret_agent_none (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ nm_client_activate_connection (sadata->client,
+ sadata->connection,
+ sadata->device,
+ NULL,
+ connection_activated_none_cb,
+ sadata);
+ g_main_loop_run (sadata->loop);
+}
+
+/*******************************************************************/
+
+static char *
+secrets_requested_no_secrets_cb (TestSecretAgent *agent,
+ NMConnection *connection,
+ const char *connection_path,
+ const char *setting_name,
+ const char *secret_name,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert_cmpstr (connection_path, ==, nm_connection_get_path (sadata->connection));
+ sadata->secrets_requested++;
+
+ return NULL;
+}
+
+static void
+connection_activated_no_secrets_cb (NMClient *c,
+ NMActiveConnection *ac,
+ GError *error,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert (error != NULL);
+ g_assert_cmpstr (error->message, ==, "No secrets provided");
+
+ g_main_loop_quit (sadata->loop);
+}
+
+static void
+test_secret_agent_no_secrets (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ g_signal_connect (sadata->agent, "secret-requested",
+ G_CALLBACK (secrets_requested_no_secrets_cb),
+ sadata);
+
+ nm_client_activate_connection (sadata->client,
+ sadata->connection,
+ sadata->device,
+ NULL,
+ connection_activated_no_secrets_cb,
+ sadata);
+ g_main_loop_run (sadata->loop);
+
+ g_assert_cmpint (sadata->secrets_requested, ==, 1);
+}
+
+/*******************************************************************/
+
+static void
+connection_activated_cancel_cb (NMClient *c,
+ NMActiveConnection *ac,
+ GError *error,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert (error != NULL);
+ g_assert_cmpstr (error->message, ==, "User canceled");
+
+ g_main_loop_quit (sadata->loop);
+}
+
+static char *
+secrets_requested_cancel_cb (TestSecretAgent *agent,
+ NMConnection *connection,
+ const char *connection_path,
+ const char *setting_name,
+ const char *secret_name,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert_cmpstr (connection_path, ==, nm_connection_get_path (sadata->connection));
+ sadata->secrets_requested++;
+
+ return g_strdup ("CANCEL");
+}
+
+static void
+test_secret_agent_cancel (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ g_signal_connect (sadata->agent, "secret-requested",
+ G_CALLBACK (secrets_requested_cancel_cb),
+ sadata);
+
+ nm_client_activate_connection (sadata->client,
+ sadata->connection,
+ sadata->device,
+ NULL,
+ connection_activated_cancel_cb,
+ sadata);
+ g_main_loop_run (sadata->loop);
+
+ g_assert_cmpint (sadata->secrets_requested, ==, 1);
+}
+
+/*******************************************************************/
+
+static void
+connection_activated_good_cb (NMClient *c,
+ NMActiveConnection *ac,
+ GError *error,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ /* test-networkmanager-service.py doesn't implement activation, but
+ * we should at least get as far as the error telling us that (which the
+ * other tests won't get to).
+ */
+ g_assert (error != NULL);
+ g_assert_cmpstr (error->message, ==, "Not yet implemented");
+
+ g_main_loop_quit (sadata->loop);
+}
+
+static char *
+secrets_requested_good_cb (TestSecretAgent *agent,
+ NMConnection *connection,
+ const char *connection_path,
+ const char *setting_name,
+ const char *secret_name,
+ gpointer user_data)
+{
+ TestSecretAgentData *sadata = user_data;
+
+ g_assert_cmpstr (connection_path, ==, nm_connection_get_path (sadata->connection));
+ sadata->secrets_requested++;
+
+ return g_strdup ("password");
+}
+
+static void
+test_secret_agent_good (TestSecretAgentData *sadata, gconstpointer test_data)
+{
+ g_signal_connect (sadata->agent, "secret-requested",
+ G_CALLBACK (secrets_requested_good_cb),
+ sadata);
+
+ nm_client_activate_connection (sadata->client,
+ sadata->connection,
+ sadata->device,
+ NULL,
+ connection_activated_good_cb,
+ sadata);
+ g_main_loop_run (sadata->loop);
+
+ g_assert_cmpint (sadata->secrets_requested, ==, 1);
+}
+
+
+static void
+test_secret_agent_nm_not_running (void)
+{
+ NMSecretAgent *agent;
+ gboolean success;
+
+ agent = test_secret_agent_new ();
+ success = nm_secret_agent_register (agent);
+ g_assert (!success);
+
+ g_object_unref (agent);
+}
+
+
+static void
+registered_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
+{
+ GMainLoop *loop = user_data;
+
+ g_main_loop_quit (loop);
+}
+
+static void
+test_secret_agent_auto_register (void)
+{
+ NMTestServiceInfo *sinfo;
+ NMSecretAgent *agent;
+ GMainLoop *loop;
+
+ sinfo = nm_test_service_init ();
+ loop = g_main_loop_new (NULL, FALSE);
+
+ agent = test_secret_agent_new ();
+ g_object_set (agent,
+ NM_SECRET_AGENT_AUTO_REGISTER, TRUE,
+ NULL);
+ g_signal_connect (agent, "notify::" NM_SECRET_AGENT_REGISTERED,
+ G_CALLBACK (registered_changed), loop);
+
+ g_assert (!nm_secret_agent_get_registered (agent));
+
+ /* Wait for initial registration */
+ g_main_loop_run (loop);
+ g_assert (nm_secret_agent_get_registered (agent));
+
+ /* Shut down test service */
+ nm_test_service_cleanup (sinfo);
+ g_main_loop_run (loop);
+ g_assert (!nm_secret_agent_get_registered (agent));
+
+ /* Restart test service */
+ sinfo = nm_test_service_init ();
+ g_main_loop_run (loop);
+ g_assert (nm_secret_agent_get_registered (agent));
+
+ /* Shut down test service again */
+ nm_test_service_cleanup (sinfo);
+ g_main_loop_run (loop);
+ g_assert (!nm_secret_agent_get_registered (agent));
+
+ g_object_unref (agent);
+ g_main_loop_unref (loop);
+}
+
+/*******************************************************************/
+
+int
+main (int argc, char **argv)
+{
+ int ret;
+
+#if !GLIB_CHECK_VERSION (2, 35, 0)
+ g_type_init ();
+#endif
+
+ g_test_init (&argc, &argv, NULL);
+
+ g_test_add ("/libnm/secret-agent/none", TestSecretAgentData, GUINT_TO_POINTER (FALSE),
+ test_setup, test_secret_agent_none, test_cleanup);
+ g_test_add ("/libnm/secret-agent/no-secrets", TestSecretAgentData, GUINT_TO_POINTER (TRUE),
+ test_setup, test_secret_agent_no_secrets, test_cleanup);
+ g_test_add ("/libnm/secret-agent/cancel", TestSecretAgentData, GUINT_TO_POINTER (TRUE),
+ test_setup, test_secret_agent_cancel, test_cleanup);
+ g_test_add ("/libnm/secret-agent/good", TestSecretAgentData, GUINT_TO_POINTER (TRUE),
+ test_setup, test_secret_agent_good, test_cleanup);
+ g_test_add_func ("/libnm/secret-agent/nm-not-running", test_secret_agent_nm_not_running);
+ g_test_add_func ("/libnm/secret-agent/auto-register", test_secret_agent_auto_register);
+
+ ret = g_test_run ();
+
+ return ret;
+}
+
diff --git a/tools/test-networkmanager-service.py b/tools/test-networkmanager-service.py
index 2f80ca516c..7716dca9ac 100755
--- a/tools/test-networkmanager-service.py
+++ b/tools/test-networkmanager-service.py
@@ -517,6 +517,9 @@ class PermissionDeniedException(dbus.DBusException):
class UnknownDeviceException(dbus.DBusException):
_dbus_error_name = IFACE_NM + '.UnknownDevice'
+class UnknownConnectionException(dbus.DBusException):
+ _dbus_error_name = IFACE_NM + '.UnknownConnection'
+
PM_DEVICES = 'Devices'
PM_NETWORKING_ENABLED = 'NetworkingEnabled'
PM_WWAN_ENABLED = 'WwanEnabled'
@@ -575,6 +578,26 @@ class NetworkManager(ExportedObj):
break
if not device:
raise UnknownDeviceException("No device found for the requested iface.")
+
+ try:
+ connection = settings.get_connection(conpath)
+ except Exception as e:
+ raise UnknownConnectionException("Connection not found")
+
+ # See if we need secrets. For the moment, we only support WPA
+ hash = connection.GetSettings()
+ if hash.has_key('802-11-wireless-security'):
+ s_wsec = hash['802-11-wireless-security']
+ if (s_wsec['key-mgmt'] == 'wpa-psk' and not s_wsec.has_key('psk')):
+ secrets = agent_manager.get_secrets(hash, conpath, '802-11-wireless-security')
+ if secrets is None:
+ raise NoSecretsException("No secret agent available")
+ if not secrets.has_key('802-11-wireless-security'):
+ raise NoSecretsException("No secrets provided")
+ s_wsec = secrets['802-11-wireless-security']
+ if not s_wsec.has_key('psk'):
+ raise NoSecretsException("No secrets provided")
+
raise PermissionDeniedException("Not yet implemented")
@dbus.service.method(dbus_interface=IFACE_NM, in_signature='a{sa{sv}}oo', out_signature='oo')
@@ -586,7 +609,9 @@ class NetworkManager(ExportedObj):
break
if not device:
raise UnknownDeviceException("No device found for the requested iface.")
- raise PermissionDeniedException("Not yet implemented")
+
+ conpath = manager.AddConnection(connection)
+ return self.ActivateConnection(conpath, devpath, specific_object)
@dbus.service.method(dbus_interface=IFACE_NM, in_signature='o', out_signature='')
def DeactivateConnection(self, active_connection):
@@ -822,6 +847,9 @@ class Settings(dbus.service.Object):
def auto_remove_next_connection(self):
self.remove_next_connection = True;
+ def get_connection(self, path):
+ return self.connections[path]
+
@dbus.service.method(dbus_interface=IFACE_SETTINGS, in_signature='', out_signature='ao')
def ListConnections(self):
return self.connections.keys()
@@ -871,6 +899,65 @@ class Settings(dbus.service.Object):
mainloop.quit()
###################################################################
+IFACE_AGENT_MANAGER = 'org.freedesktop.NetworkManager.AgentManager'
+IFACE_AGENT = 'org.freedesktop.NetworkManager.SecretAgent'
+
+PATH_SECRET_AGENT = '/org/freedesktop/NetworkManager/SecretAgent'
+
+FLAG_ALLOW_INTERACTION = 0x1
+FLAG_REQUEST_NEW = 0x2
+FLAG_USER_REQUESTED = 0x4
+
+class NoSecretsException(dbus.DBusException):
+ _dbus_error_name = IFACE_AGENT_MANAGER + '.NoSecrets'
+
+class UserCanceledException(dbus.DBusException):
+ _dbus_error_name = IFACE_AGENT_MANAGER + '.UserCanceled'
+
+class AgentManager(dbus.service.Object):
+ def __init__(self, bus, object_path):
+ dbus.service.Object.__init__(self, bus, object_path)
+ self.agents = {}
+ self.bus = bus
+
+ @dbus.service.method(dbus_interface=IFACE_AGENT_MANAGER,
+ in_signature='s', out_signature='',
+ sender_keyword='sender')
+ def Register(self, name, sender=None):
+ self.RegisterWithCapabilities(name, 0, sender)
+
+ @dbus.service.method(dbus_interface=IFACE_AGENT_MANAGER,
+ in_signature='su', out_signature='',
+ sender_keyword='sender')
+ def RegisterWithCapabilities(self, name, caps, sender=None):
+ self.agents[sender] = self.bus.get_object(sender, PATH_SECRET_AGENT)
+
+ @dbus.service.method(dbus_interface=IFACE_AGENT_MANAGER,
+ in_signature='', out_signature='',
+ sender_keyword='sender')
+ def Unregister(self, sender=None):
+ del self.agents[sender]
+
+ def get_secrets(self, connection, path, setting_name):
+ if len(self.agents) == 0:
+ return None
+
+ secrets = {}
+ for sender in self.agents:
+ agent = self.agents[sender]
+ try:
+ secrets = agent.GetSecrets(connection, path, setting_name,
+ dbus.Array([], 's'),
+ FLAG_ALLOW_INTERACTION | FLAG_USER_REQUESTED,
+ dbus_interface=IFACE_AGENT)
+ break
+ except dbus.DBusException as e:
+ if e.get_dbus_name() == IFACE_AGENT + '.UserCanceled':
+ raise UserCanceledException('User canceled')
+ continue
+ return secrets
+
+###################################################################
def stdin_cb(io, condition):
mainloop.quit()
@@ -885,9 +972,10 @@ def main():
bus = dbus.SessionBus()
- global manager, settings
+ global manager, settings, agent_manager
manager = NetworkManager(bus, "/org/freedesktop/NetworkManager")
settings = Settings(bus, "/org/freedesktop/NetworkManager/Settings")
+ agent_manager = AgentManager(bus, "/org/freedesktop/NetworkManager/AgentManager")
if not bus.request_name("org.freedesktop.NetworkManager"):
sys.exit(1)