Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2017-10-28 00:11:28 +0300
committerGitHub <noreply@github.com>2017-10-28 00:11:28 +0300
commit39c9a03207497d86f0cfa980e940f2bb5cd9a82c (patch)
tree3236e91556f59f676899fa38fc3f8aeeb31c31cb /remmina-plugin-secret
parentd9156ca6dfeb065902cfce913636a0a61e21e809 (diff)
Refactoring - Rename remmina-plugins-gnome in remmina-plugin-secret
Rename the plugin 'remmina-plugins-gnome' in 'remmina-plugin-secret' closes #1343
Diffstat (limited to 'remmina-plugin-secret')
-rw-r--r--remmina-plugin-secret/CMakeLists.txt52
-rw-r--r--remmina-plugin-secret/src/glibsecret_plugin.c180
-rw-r--r--remmina-plugin-secret/src/glibsecret_plugin.h42
3 files changed, 274 insertions, 0 deletions
diff --git a/remmina-plugin-secret/CMakeLists.txt b/remmina-plugin-secret/CMakeLists.txt
new file mode 100644
index 000000000..c5fc0a8fd
--- /dev/null
+++ b/remmina-plugin-secret/CMakeLists.txt
@@ -0,0 +1,52 @@
+# remmina-plugin-secret - The GTK+ Remote Desktop Client
+#
+# Copyright (C) 2011 Marc-Andre Moreau
+# Copyright (C) 2014-2017 Antenore Gatta, Giovanni Panozzo
+#
+# 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 of the License, 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.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link the code of portions of this program with the
+# OpenSSL library under certain conditions as described in each
+# individual source file, and distribute linked combinations
+# including the two.
+# You must obey the GNU General Public License in all respects
+# for all of the code used other than OpenSSL. If you modify
+# file(s) with this exception, you may extend this exception to your
+# version of the file(s), but you are not obligated to do so. If you
+# do not wish to do so, delete this exception statement from your
+# version. If you delete this exception statement from all source
+# files in the program, then also delete it here.
+
+
+find_suggested_package(Libsecret)
+if(LIBSECRET_FOUND)
+ set(REMMINA_PLUGINS_GNOME_SRCS
+ src/glibsecret_plugin.c
+ )
+
+ add_library(remmina-plugin-secret MODULE ${REMMINA_PLUGINS_GNOME_SRCS})
+ set_target_properties(remmina-plugin-secret PROPERTIES PREFIX "")
+ set_target_properties(remmina-plugin-secret PROPERTIES NO_SONAME 1)
+
+ include_directories(${GTK_INCLUDE_DIRS})
+ target_link_libraries(remmina-plugin-secret ${GTK_LIBRARY_DIRS})
+
+ include_directories(SYSTEM ${LIBSECRET_INCLUDE_DIRS})
+ target_link_libraries(remmina-plugin-secret ${LIBSECRET_LIBRARIES} ${GLIB2_LIBRARY})
+
+ install(TARGETS remmina-plugin-secret DESTINATION ${REMMINA_PLUGINDIR})
+endif()
diff --git a/remmina-plugin-secret/src/glibsecret_plugin.c b/remmina-plugin-secret/src/glibsecret_plugin.c
new file mode 100644
index 000000000..919cc4dc8
--- /dev/null
+++ b/remmina-plugin-secret/src/glibsecret_plugin.c
@@ -0,0 +1,180 @@
+/*
+ * Remmina - The GTK+ Remote Desktop Client
+ * Copyright (C) 2011 Vic Lee
+ * Copyright (C) 2014-2015 Antenore Gatta, Fabio Castelli, Giovanni Panozzo
+ *
+ * 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 of the License, 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.
+ *
+ * In addition, as a special exception, the copyright holders give
+ * permission to link the code of portions of this program with the
+ * OpenSSL library under certain conditions as described in each
+ * individual source file, and distribute linked combinations
+ * including the two.
+ * You must obey the GNU General Public License in all respects
+ * for all of the code used other than OpenSSL. * If you modify
+ * file(s) with this exception, you may extend this exception to your
+ * version of the file(s), but you are not obligated to do so. * If you
+ * do not wish to do so, delete this exception statement from your
+ * version. * If you delete this exception statement from all source
+ * files in the program, then also delete it here.
+ *
+ */
+
+#include "config.h"
+#include "glibsecret_plugin.h"
+#include <gtk/gtk.h>
+#include <glib.h>
+#include <libsecret/secret.h>
+#include <remmina/plugin.h>
+
+static RemminaPluginService *remmina_plugin_service = NULL;
+
+static SecretSchema remmina_file_secret_schema =
+{ "org.remmina.Password", SECRET_SCHEMA_NONE,
+ {
+ { "filename", SECRET_SCHEMA_ATTRIBUTE_STRING },
+ { "key", SECRET_SCHEMA_ATTRIBUTE_STRING },
+ { NULL, 0 }
+ } };
+
+
+#ifdef LIBSECRET_VERSION_0_18
+static SecretService* secretservice;
+static SecretCollection* defaultcollection;
+#endif
+
+static void remmina_plugin_glibsecret_unlock_secret_service()
+{
+ TRACE_CALL("__func__");
+
+#ifdef LIBSECRET_VERSION_0_18
+
+ GError *error = NULL;
+ GList *objects, *ul;
+ gchar* lbl;
+
+ if (secretservice && defaultcollection) {
+ if (secret_collection_get_locked(defaultcollection)) {
+ lbl = secret_collection_get_label(defaultcollection);
+ remmina_plugin_service->log_printf("[glibsecret] requesting unlock of the default '%s' collection\n", lbl);
+ objects = g_list_append(NULL, defaultcollection);
+ secret_service_unlock_sync(secretservice, objects, NULL, &ul, &error);
+ g_list_free(objects);
+ g_list_free(ul);
+ }
+ }
+#endif
+ return;
+}
+
+void remmina_plugin_glibsecret_store_password(RemminaFile *remminafile, const gchar *key, const gchar *password)
+{
+ TRACE_CALL("__func__");
+ GError *r = NULL;
+ const gchar *path;
+ gchar *s;
+
+ remmina_plugin_glibsecret_unlock_secret_service();
+
+ path = remmina_plugin_service->file_get_path(remminafile);
+ s = g_strdup_printf("Remmina: %s - %s", remmina_plugin_service->file_get_string(remminafile, "name"), key);
+ secret_password_store_sync(&remmina_file_secret_schema, SECRET_COLLECTION_DEFAULT, s, password,
+ NULL, &r, "filename", path, "key", key, NULL);
+ g_free(s);
+ if (r == NULL) {
+ remmina_plugin_service->log_printf("[glibsecret] password saved for file %s\n", path);
+ }else {
+ remmina_plugin_service->log_printf("[glibsecret] password cannot be saved for file %s\n", path);
+ g_error_free(r);
+ }
+}
+
+gchar*
+remmina_plugin_glibsecret_get_password(RemminaFile *remminafile, const gchar *key)
+{
+ TRACE_CALL("__func__");
+ GError *r = NULL;
+ const gchar *path;
+ gchar *password;
+ gchar *p;
+
+ remmina_plugin_glibsecret_unlock_secret_service();
+
+ path = remmina_plugin_service->file_get_path(remminafile);
+ password = secret_password_lookup_sync(&remmina_file_secret_schema, NULL, &r, "filename", path, "key", key, NULL);
+ if (r == NULL) {
+ remmina_plugin_service->log_printf("[glibsecret] found password for file %s\n", path);
+ p = g_strdup(password);
+ secret_password_free(password);
+ return p;
+ }else {
+ remmina_plugin_service->log_printf("[glibsecret] password cannot be found for file %s\n", path);
+ return NULL;
+ }
+}
+
+void remmina_plugin_glibsecret_delete_password(RemminaFile *remminafile, const gchar *key)
+{
+ TRACE_CALL("__func__");
+ GError *r = NULL;
+ const gchar *path;
+
+ remmina_plugin_glibsecret_unlock_secret_service();
+
+ path = remmina_plugin_service->file_get_path(remminafile);
+ secret_password_clear_sync(&remmina_file_secret_schema, NULL, &r, "filename", path, "key", key, NULL);
+ if (r == NULL) {
+ remmina_plugin_service->log_printf("[glibsecret] password deleted for file %s\n", path);
+ }else {
+ remmina_plugin_service->log_printf("[glibsecret] password cannot be deleted for file %s\n", path);
+ }
+}
+
+static RemminaSecretPlugin remmina_plugin_glibsecret =
+{ REMMINA_PLUGIN_TYPE_SECRET, "glibsecret", "GNOME libsecret", NULL, VERSION,
+
+ TRUE, remmina_plugin_glibsecret_store_password, remmina_plugin_glibsecret_get_password, remmina_plugin_glibsecret_delete_password };
+
+G_MODULE_EXPORT gboolean
+remmina_plugin_entry(RemminaPluginService *service)
+{
+ TRACE_CALL("__func__");
+
+ remmina_plugin_service = service;
+
+ if (!service->register_plugin((RemminaPlugin*)&remmina_plugin_glibsecret)) {
+ return FALSE;
+ }
+
+#ifdef LIBSECRET_VERSION_0_18
+ GError *error;
+ error = NULL;
+ secretservice = secret_service_get_sync(SECRET_SERVICE_LOAD_COLLECTIONS, NULL, &error);
+ if (error) {
+ remmina_plugin_service->log_printf("[glibsecret] unable to get secret service: %s\n", error->message);
+ return FALSE;
+ }
+
+ defaultcollection = secret_collection_for_alias_sync(secretservice, SECRET_COLLECTION_DEFAULT, SECRET_COLLECTION_NONE, NULL, &error);
+ if (error) {
+ remmina_plugin_service->log_printf("[glibsecret] unable to get secret service default collection: %s\n", error->message);
+ return FALSE;
+ }
+#endif
+
+ return TRUE;
+}
+
diff --git a/remmina-plugin-secret/src/glibsecret_plugin.h b/remmina-plugin-secret/src/glibsecret_plugin.h
new file mode 100644
index 000000000..f28c97cf1
--- /dev/null
+++ b/remmina-plugin-secret/src/glibsecret_plugin.h
@@ -0,0 +1,42 @@
+/*
+ * Remmina - The GTK+ Remote Desktop Client
+ * Copyright (C) 2015-2017 Antenore Gatta, Giovanni Panozzo
+ *
+ * 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 of the License, 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.
+ *
+ * In addition, as a special exception, the copyright holders give
+ * permission to link the code of portions of this program with the
+ * OpenSSL library under certain conditions as described in each
+ * individual source file, and distribute linked combinations
+ * including the two.
+ * You must obey the GNU General Public License in all respects
+ * for all of the code used other than OpenSSL. * If you modify
+ * file(s) with this exception, you may extend this exception to your
+ * version of the file(s), but you are not obligated to do so. * If you
+ * do not wish to do so, delete this exception statement from your
+ * version. * If you delete this exception statement from all source
+ * files in the program, then also delete it here.
+ *
+ */
+
+#ifndef __BACKEND_LIBSECRET_H__
+#define __BACKEND_LIBSECRET_H__
+
+#include <libsecret/secret.h>
+#include <glib.h>
+
+
+#endif // __BACKEND_LIBSECRET_H__