summaryrefslogtreecommitdiff
path: root/auth-dialog/main.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-09-14 12:18:29 +0200
committerGuido Günther <agx@sigxcpu.org>2014-09-14 12:30:27 +0200
commit25b418355f07ed01965aed68c25c3ce65168d5d4 (patch)
tree26c10c20be3b5574d9f28962ef3e535b53c5b177 /auth-dialog/main.c
parentb9060cd1f36d3e1378220e40c70e62d0a84fc38c (diff)
Port to libsecret
Diffstat (limited to 'auth-dialog/main.c')
-rw-r--r--auth-dialog/main.c68
1 files changed, 43 insertions, 25 deletions
diff --git a/auth-dialog/main.c b/auth-dialog/main.c
index 03586e4..4321c64 100644
--- a/auth-dialog/main.c
+++ b/auth-dialog/main.c
@@ -16,7 +16,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
- * Copyright © 2012 Guido Günther <agx@sigxcpu.org>
+ * Copyright © 2012,2014 Guido Günther <agx@sigxcpu.org>
*
* Heavily based on network-manager-pptp by Dan Williams <dcbw@redhat.com>
*/
@@ -31,8 +31,8 @@
#include <glib/gi18n.h>
#include <gtk/gtk.h>
-#include <gnome-keyring.h>
-#include <gnome-keyring-memory.h>
+#define SECRET_API_SUBJECT_TO_CHANGE
+#include <libsecret/secret.h>
#include <nm-setting-vpn.h>
#include <nm-vpn-plugin-utils.h>
@@ -47,6 +47,19 @@
#define UI_KEYFILE_GROUP "VPN Plugin UI"
+
+static const SecretSchema network_manager_secret_schema = {
+ "org.freedesktop.NetworkManager.Connection",
+ SECRET_SCHEMA_DONT_MATCH_NAME,
+ {
+ { KEYRING_UUID_TAG, SECRET_SCHEMA_ATTRIBUTE_STRING },
+ { KEYRING_SN_TAG, SECRET_SCHEMA_ATTRIBUTE_STRING },
+ { KEYRING_SK_TAG, SECRET_SCHEMA_ATTRIBUTE_STRING },
+ { NULL, 0 },
+ }
+};
+
+
static void
keyfile_add_entry_info (GKeyFile *keyfile,
const gchar *key,
@@ -78,29 +91,34 @@ keyfile_print_stdout (GKeyFile *keyfile)
static char *
keyring_lookup_secret (const char *uuid, const char *secret_name)
{
- GList *found_list = NULL;
- GnomeKeyringResult ret;
- GnomeKeyringFound *found;
+ GHashTable *attrs;
+ GList *list;
char *secret = NULL;
- ret = gnome_keyring_find_itemsv_sync (GNOME_KEYRING_ITEM_GENERIC_SECRET,
- &found_list,
- KEYRING_UUID_TAG,
- GNOME_KEYRING_ATTRIBUTE_TYPE_STRING,
- uuid,
- KEYRING_SN_TAG,
- GNOME_KEYRING_ATTRIBUTE_TYPE_STRING,
- NM_SETTING_VPN_SETTING_NAME,
- KEYRING_SK_TAG,
- GNOME_KEYRING_ATTRIBUTE_TYPE_STRING,
- secret_name,
- NULL);
- if (ret == GNOME_KEYRING_RESULT_OK && found_list) {
- found = g_list_nth_data (found_list, 0);
- secret = gnome_keyring_memory_strdup (found->secret);
+ attrs = secret_attributes_build (&network_manager_secret_schema,
+ KEYRING_UUID_TAG, uuid,
+ KEYRING_SN_TAG, NM_SETTING_VPN_SETTING_NAME,
+ KEYRING_SK_TAG, secret_name,
+ NULL);
+
+ list = secret_service_search_sync (NULL, &network_manager_secret_schema, attrs,
+ SECRET_SEARCH_ALL |
+ SECRET_SEARCH_UNLOCK |
+ SECRET_SEARCH_LOAD_SECRETS,
+ NULL, NULL);
+
+ if (list && list->data) {
+ SecretItem *item = list->data;
+ SecretValue *value = secret_item_get_secret (item);
+
+ if (value) {
+ secret = g_strdup (secret_value_get (value, NULL));
+ secret_value_unref (value);
+ }
}
- gnome_keyring_found_list_free (found_list);
+ g_list_free_full (list, g_object_unref);
+ g_hash_table_unref (attrs);
return secret;
}
@@ -128,14 +146,14 @@ get_secrets (const char *vpn_uuid,
if (!(pw_flags & NM_SETTING_SECRET_FLAG_NOT_SAVED)
&& !(pw_flags & NM_SETTING_SECRET_FLAG_NOT_REQUIRED)) {
if (in_pw)
- pw = gnome_keyring_memory_strdup (in_pw);
+ pw = g_strdup (in_pw);
else
pw = keyring_lookup_secret (vpn_uuid, NM_IODINE_KEY_PASSWORD);
}
/* Don't ask if the passwords is unused */
if (pw_flags & NM_SETTING_SECRET_FLAG_NOT_REQUIRED) {
- gnome_keyring_memory_free (pw);
+ g_free (pw);
return TRUE;
}
@@ -197,7 +215,7 @@ get_secrets (const char *vpn_uuid,
new_password = vpn_password_dialog_get_password (dialog);
if (new_password) {
- *out_pw = gnome_keyring_memory_strdup (new_password);
+ *out_pw = g_strdup (new_password);
success = TRUE;
}
}