/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* * Dan Williams * Tambet Ingo * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2008 Red Hat, Inc. * (C) Copyright 2007 - 2008 Novell, Inc. */ #include #include #include "nm-setting-vpn.h" #include "nm-param-spec-specialized.h" #include "nm-utils.h" #include "nm-dbus-glib-types.h" GQuark nm_setting_vpn_error_quark (void) { static GQuark quark; if (G_UNLIKELY (!quark)) quark = g_quark_from_static_string ("nm-setting-vpn-error-quark"); return quark; } /* This should really be standard. */ #define ENUM_ENTRY(NAME, DESC) { NAME, "" #NAME "", DESC } GType nm_setting_vpn_error_get_type (void) { static GType etype = 0; if (etype == 0) { static const GEnumValue values[] = { /* Unknown error. */ ENUM_ENTRY (NM_SETTING_VPN_ERROR_UNKNOWN, "UnknownError"), /* The specified property was invalid. */ ENUM_ENTRY (NM_SETTING_VPN_ERROR_INVALID_PROPERTY, "InvalidProperty"), /* The specified property was missing and is required. */ ENUM_ENTRY (NM_SETTING_VPN_ERROR_MISSING_PROPERTY, "MissingProperty"), { 0, 0, 0 } }; etype = g_enum_register_static ("NMSettingVpnError", values); } return etype; } G_DEFINE_TYPE (NMSettingVPN, nm_setting_vpn, NM_TYPE_SETTING) enum { PROP_0, PROP_SERVICE_TYPE, PROP_USER_NAME, PROP_DATA, LAST_PROP }; NMSetting * nm_setting_vpn_new (void) { return (NMSetting *) g_object_new (NM_TYPE_SETTING_VPN, NULL); } static gboolean verify (NMSetting *setting, GSList *all_settings, GError **error) { NMSettingVPN *self = NM_SETTING_VPN (setting); if (!self->service_type) { g_set_error (error, NM_SETTING_VPN_ERROR, NM_SETTING_VPN_ERROR_MISSING_PROPERTY, NM_SETTING_VPN_SERVICE_TYPE); return FALSE; } if (!strlen (self->service_type)) { g_set_error (error, NM_SETTING_VPN_ERROR, NM_SETTING_VPN_ERROR_INVALID_PROPERTY, NM_SETTING_VPN_SERVICE_TYPE); return FALSE; } /* default username can be NULL, but can't be zero-length */ if (self->user_name && !strlen (self->user_name)) { g_set_error (error, NM_SETTING_VPN_ERROR, NM_SETTING_VPN_ERROR_INVALID_PROPERTY, NM_SETTING_VPN_USER_NAME); return FALSE; } return TRUE; } static void update_one_secret (NMSetting *setting, const char *key, GValue *value) { NMSettingVPN *self = NM_SETTING_VPN (setting); g_return_if_fail (key != NULL); g_return_if_fail (value != NULL); g_return_if_fail (G_VALUE_HOLDS_STRING (value)); /* Secrets are really only known to the VPNs themselves. */ g_hash_table_insert (self->data, g_strdup (key), g_value_dup_string (value)); } static void nm_setting_vpn_init (NMSettingVPN *setting) { NM_SETTING (setting)->name = g_strdup (NM_SETTING_VPN_SETTING_NAME); setting->data = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); } static void finalize (GObject *object) { NMSettingVPN *self = NM_SETTING_VPN (object); g_free (self->service_type); g_free (self->user_name); g_hash_table_destroy (self->data); G_OBJECT_CLASS (nm_setting_vpn_parent_class)->finalize (object); } static void copy_hash (gpointer key, gpointer value, gpointer user_data) { g_hash_table_insert ((GHashTable *) user_data, g_strdup (key), g_strdup (value)); } static void set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { NMSettingVPN *setting = NM_SETTING_VPN (object); switch (prop_id) { case PROP_SERVICE_TYPE: g_free (setting->service_type); setting->service_type = g_value_dup_string (value); break; case PROP_USER_NAME: g_free (setting->user_name); setting->user_name = g_value_dup_string (value); break; case PROP_DATA: /* Must make a deep copy of the hash table here... */ g_hash_table_remove_all (setting->data); g_hash_table_foreach (g_value_get_boxed (value), copy_hash, setting->data); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { NMSettingVPN *setting = NM_SETTING_VPN (object); switch (prop_id) { case PROP_SERVICE_TYPE: g_value_set_string (value, setting->service_type); break; case PROP_USER_NAME: g_value_set_string (value, setting->user_name); break; case PROP_DATA: g_value_set_boxed (value, setting->data); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void nm_setting_vpn_class_init (NMSettingVPNClass *setting_class) { GObjectClass *object_class = G_OBJECT_CLASS (setting_class); NMSettingClass *parent_class = NM_SETTING_CLASS (setting_class); /* virtual methods */ object_class->set_property = set_property; object_class->get_property = get_property; object_class->finalize = finalize; parent_class->verify = verify; parent_class->update_one_secret = update_one_secret; /* Properties */ g_object_class_install_property (object_class, PROP_SERVICE_TYPE, g_param_spec_string (NM_SETTING_VPN_SERVICE_TYPE, "Service type", "Service type", NULL, G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE)); g_object_class_install_property (object_class, PROP_USER_NAME, g_param_spec_string (NM_SETTING_VPN_USER_NAME, "User name", "User name", NULL, G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE)); g_object_class_install_property (object_class, PROP_DATA, nm_param_spec_specialized (NM_SETTING_VPN_DATA, "Data", "VPN Service specific data", DBUS_TYPE_G_MAP_OF_STRING, G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE)); }