
The settings plugins are created by NMSettings when the plugin gets loaded. There is no need for these instances to be singletons or to have a singleton getter. Also, while in practice we create a settings plugin instance of each type only once, there is nothing that would prevent creating multiple instances. Hence, having a singleton getter is not right. What is however useful, is to track them and block shutdown via nm_shutdown_wait_obj_register*(). While the actual waiting is not yet implemented, we should mark the plugin instances to block shutdown (in the future).
2134 lines
70 KiB
C
2134 lines
70 KiB
C
/* NetworkManager system settings service
|
|
*
|
|
* Søren Sandmann <sandmann@daimi.au.dk>
|
|
* Dan Williams <dcbw@redhat.com>
|
|
* Tambet Ingo <tambet@gmail.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* (C) Copyright 2007 - 2011 Red Hat, Inc.
|
|
* (C) Copyright 2008 Novell, Inc.
|
|
*/
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include "nm-settings.h"
|
|
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <gmodule.h>
|
|
#include <pwd.h>
|
|
|
|
#if HAVE_SELINUX
|
|
#include <selinux/selinux.h>
|
|
#endif
|
|
|
|
#include "nm-libnm-core-intern/nm-common-macros.h"
|
|
#include "nm-glib-aux/nm-keyfile-aux.h"
|
|
#include "nm-dbus-interface.h"
|
|
#include "nm-connection.h"
|
|
#include "nm-setting-8021x.h"
|
|
#include "nm-setting-bluetooth.h"
|
|
#include "nm-setting-cdma.h"
|
|
#include "nm-setting-connection.h"
|
|
#include "nm-setting-gsm.h"
|
|
#include "nm-setting-ip4-config.h"
|
|
#include "nm-setting-ip6-config.h"
|
|
#include "nm-setting-olpc-mesh.h"
|
|
#include "nm-setting-ppp.h"
|
|
#include "nm-setting-pppoe.h"
|
|
#include "nm-setting-serial.h"
|
|
#include "nm-setting-vpn.h"
|
|
#include "nm-setting-wired.h"
|
|
#include "nm-setting-adsl.h"
|
|
#include "nm-setting-wireless.h"
|
|
#include "nm-setting-wireless-security.h"
|
|
#include "nm-setting-proxy.h"
|
|
#include "nm-setting-bond.h"
|
|
#include "nm-utils.h"
|
|
#include "nm-core-internal.h"
|
|
|
|
#include "nm-glib-aux/nm-c-list.h"
|
|
#include "nm-dbus-object.h"
|
|
#include "devices/nm-device-ethernet.h"
|
|
#include "nm-settings-connection.h"
|
|
#include "nm-settings-plugin.h"
|
|
#include "nm-dbus-manager.h"
|
|
#include "nm-auth-utils.h"
|
|
#include "nm-auth-subject.h"
|
|
#include "nm-session-monitor.h"
|
|
#include "plugins/keyfile/nms-keyfile-plugin.h"
|
|
#include "nm-agent-manager.h"
|
|
#include "nm-config.h"
|
|
#include "nm-audit-manager.h"
|
|
#include "NetworkManagerUtils.h"
|
|
#include "nm-dispatcher.h"
|
|
#include "nm-hostname-manager.h"
|
|
|
|
/*****************************************************************************/
|
|
|
|
#define EXPORT(sym) void * __export_##sym = &sym;
|
|
|
|
EXPORT(nm_settings_connection_get_type)
|
|
EXPORT(nm_settings_connection_update)
|
|
|
|
/*****************************************************************************/
|
|
|
|
static NM_CACHED_QUARK_FCN ("default-wired-connection", _default_wired_connection_quark)
|
|
static NM_CACHED_QUARK_FCN ("default-wired-device", _default_wired_device_quark)
|
|
|
|
/*****************************************************************************/
|
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE (NMSettings,
|
|
PROP_UNMANAGED_SPECS,
|
|
PROP_HOSTNAME,
|
|
PROP_CAN_MODIFY,
|
|
PROP_CONNECTIONS,
|
|
PROP_STARTUP_COMPLETE,
|
|
);
|
|
|
|
enum {
|
|
CONNECTION_ADDED,
|
|
CONNECTION_UPDATED,
|
|
CONNECTION_REMOVED,
|
|
CONNECTION_FLAGS_CHANGED,
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
typedef struct {
|
|
NMAgentManager *agent_mgr;
|
|
|
|
NMConfig *config;
|
|
|
|
NMHostnameManager *hostname_manager;
|
|
|
|
CList auth_lst_head;
|
|
|
|
NMSKeyfilePlugin *keyfile_plugin;
|
|
|
|
GSList *plugins;
|
|
|
|
NMKeyFileDB *kf_db_timestamps;
|
|
NMKeyFileDB *kf_db_seen_bssids;
|
|
|
|
CList connections_lst_head;
|
|
|
|
NMSettingsConnection **connections_cached_list;
|
|
|
|
GSList *unmanaged_specs;
|
|
GSList *unrecognized_specs;
|
|
|
|
NMSettingsConnection *startup_complete_blocked_by;
|
|
|
|
guint connections_len;
|
|
|
|
guint kf_db_flush_idle_id_timestamps;
|
|
guint kf_db_flush_idle_id_seen_bssids;
|
|
|
|
bool started:1;
|
|
bool startup_complete:1;
|
|
bool connections_loaded:1;
|
|
|
|
} NMSettingsPrivate;
|
|
|
|
struct _NMSettings {
|
|
NMDBusObject parent;
|
|
NMSettingsPrivate _priv;
|
|
};
|
|
|
|
struct _NMSettingsClass {
|
|
NMDBusObjectClass parent;
|
|
};
|
|
|
|
G_DEFINE_TYPE (NMSettings, nm_settings, NM_TYPE_DBUS_OBJECT);
|
|
|
|
#define NM_SETTINGS_GET_PRIVATE(self) _NM_GET_PRIVATE (self, NMSettings, NM_IS_SETTINGS)
|
|
|
|
/*****************************************************************************/
|
|
|
|
#define _NMLOG_DOMAIN LOGD_SETTINGS
|
|
#define _NMLOG(level, ...) __NMLOG_DEFAULT (level, _NMLOG_DOMAIN, "settings", __VA_ARGS__)
|
|
|
|
/*****************************************************************************/
|
|
|
|
static const NMDBusInterfaceInfoExtended interface_info_settings;
|
|
static const GDBusSignalInfo signal_info_new_connection;
|
|
static const GDBusSignalInfo signal_info_connection_removed;
|
|
|
|
static void claim_connection (NMSettings *self,
|
|
NMSettingsConnection *connection);
|
|
|
|
static void connection_ready_changed (NMSettingsConnection *conn,
|
|
GParamSpec *pspec,
|
|
gpointer user_data);
|
|
|
|
static void default_wired_clear_tag (NMSettings *self,
|
|
NMDevice *device,
|
|
NMSettingsConnection *connection,
|
|
gboolean add_to_no_auto_default);
|
|
|
|
static void _clear_connections_cached_list (NMSettingsPrivate *priv);
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
check_startup_complete (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMSettingsConnection *sett_conn;
|
|
|
|
if (priv->startup_complete)
|
|
return;
|
|
|
|
c_list_for_each_entry (sett_conn, &priv->connections_lst_head, _connections_lst) {
|
|
if (!nm_settings_connection_get_ready (sett_conn)) {
|
|
nm_g_object_ref_set (&priv->startup_complete_blocked_by, sett_conn);
|
|
return;
|
|
}
|
|
}
|
|
|
|
g_clear_object (&priv->startup_complete_blocked_by);
|
|
|
|
/* the connection_ready_changed signal handler is no longer needed. */
|
|
c_list_for_each_entry (sett_conn, &priv->connections_lst_head, _connections_lst)
|
|
g_signal_handlers_disconnect_by_func (sett_conn, G_CALLBACK (connection_ready_changed), self);
|
|
|
|
priv->startup_complete = TRUE;
|
|
_notify (self, PROP_STARTUP_COMPLETE);
|
|
}
|
|
|
|
static void
|
|
connection_ready_changed (NMSettingsConnection *conn,
|
|
GParamSpec *pspec,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
|
|
if (nm_settings_connection_get_ready (conn))
|
|
check_startup_complete (self);
|
|
}
|
|
|
|
const char *
|
|
nm_settings_get_startup_complete_blocked_reason (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
const char *uuid = NULL;
|
|
|
|
if (priv->startup_complete)
|
|
return NULL;
|
|
if (priv->startup_complete_blocked_by)
|
|
uuid = nm_settings_connection_get_uuid (priv->startup_complete_blocked_by);
|
|
return uuid ?: "unknown";
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
const GSList *
|
|
nm_settings_get_unmanaged_specs (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
return priv->unmanaged_specs;
|
|
}
|
|
|
|
static gboolean
|
|
update_specs (NMSettings *self, GSList **specs_ptr,
|
|
GSList * (*get_specs_func) (NMSettingsPlugin *))
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSList *new = NULL;
|
|
GSList *iter;
|
|
|
|
for (iter = priv->plugins; iter; iter = g_slist_next (iter)) {
|
|
GSList *specs;
|
|
|
|
specs = get_specs_func (iter->data);
|
|
while (specs) {
|
|
GSList *s = specs;
|
|
|
|
specs = g_slist_remove_link (specs, s);
|
|
if (nm_utils_g_slist_find_str (new, s->data)) {
|
|
g_free (s->data);
|
|
g_slist_free_1 (s);
|
|
continue;
|
|
}
|
|
s->next = new;
|
|
new = s;
|
|
}
|
|
}
|
|
|
|
if (nm_utils_g_slist_strlist_cmp (new, *specs_ptr) == 0) {
|
|
g_slist_free_full (new, g_free);
|
|
return FALSE;
|
|
}
|
|
|
|
g_slist_free_full (*specs_ptr, g_free);
|
|
*specs_ptr = new;
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
static void
|
|
unmanaged_specs_changed (NMSettingsPlugin *config,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
if (update_specs (self, &priv->unmanaged_specs,
|
|
nm_settings_plugin_get_unmanaged_specs))
|
|
_notify (self, PROP_UNMANAGED_SPECS);
|
|
}
|
|
|
|
static void
|
|
unrecognized_specs_changed (NMSettingsPlugin *config,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
update_specs (self, &priv->unrecognized_specs,
|
|
nm_settings_plugin_get_unrecognized_specs);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
plugin_connection_added (NMSettingsPlugin *config,
|
|
NMSettingsConnection *connection,
|
|
NMSettings *self)
|
|
{
|
|
claim_connection (self, connection);
|
|
}
|
|
|
|
static void
|
|
load_connections (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSList *iter;
|
|
|
|
for (iter = priv->plugins; iter; iter = g_slist_next (iter)) {
|
|
NMSettingsPlugin *plugin = NM_SETTINGS_PLUGIN (iter->data);
|
|
GSList *plugin_connections;
|
|
GSList *elt;
|
|
|
|
plugin_connections = nm_settings_plugin_get_connections (plugin);
|
|
|
|
// FIXME: ensure connections from plugins loaded with a lower priority
|
|
// get rejected when they conflict with connections from a higher
|
|
// priority plugin.
|
|
|
|
for (elt = plugin_connections; elt; elt = g_slist_next (elt))
|
|
claim_connection (self, elt->data);
|
|
|
|
g_slist_free (plugin_connections);
|
|
|
|
g_signal_connect (plugin, NM_SETTINGS_PLUGIN_CONNECTION_ADDED,
|
|
G_CALLBACK (plugin_connection_added), self);
|
|
g_signal_connect (plugin, NM_SETTINGS_PLUGIN_UNMANAGED_SPECS_CHANGED,
|
|
G_CALLBACK (unmanaged_specs_changed), self);
|
|
g_signal_connect (plugin, NM_SETTINGS_PLUGIN_UNRECOGNIZED_SPECS_CHANGED,
|
|
G_CALLBACK (unrecognized_specs_changed), self);
|
|
}
|
|
|
|
priv->connections_loaded = TRUE;
|
|
_notify (self, PROP_CONNECTIONS);
|
|
|
|
unmanaged_specs_changed (NULL, self);
|
|
unrecognized_specs_changed (NULL, self);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
connection_updated (NMSettingsConnection *connection, gboolean by_user, gpointer user_data)
|
|
{
|
|
g_signal_emit (NM_SETTINGS (user_data),
|
|
signals[CONNECTION_UPDATED],
|
|
0,
|
|
connection,
|
|
by_user);
|
|
}
|
|
|
|
static void
|
|
connection_flags_changed (NMSettingsConnection *connection,
|
|
gpointer user_data)
|
|
{
|
|
g_signal_emit (NM_SETTINGS (user_data),
|
|
signals[CONNECTION_FLAGS_CHANGED],
|
|
0,
|
|
connection);
|
|
}
|
|
|
|
static void
|
|
connection_removed (NMSettingsConnection *connection, gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMDevice *device;
|
|
|
|
g_return_if_fail (NM_IS_SETTINGS_CONNECTION (connection));
|
|
g_return_if_fail (!c_list_is_empty (&connection->_connections_lst));
|
|
nm_assert (c_list_contains (&priv->connections_lst_head, &connection->_connections_lst));
|
|
|
|
/* When the default wired connection is removed (either deleted or saved to
|
|
* a new persistent connection by a plugin), write the MAC address of the
|
|
* wired device to the config file and don't create a new default wired
|
|
* connection for that device again.
|
|
*/
|
|
device = g_object_get_qdata (G_OBJECT (connection), _default_wired_device_quark ());
|
|
if (device)
|
|
default_wired_clear_tag (self, device, connection, TRUE);
|
|
|
|
/* Disconnect signal handlers, as plugins might still keep references
|
|
* to the connection (and thus the signal handlers would still be live)
|
|
* even after NMSettings has dropped all its references.
|
|
*/
|
|
|
|
g_signal_handlers_disconnect_by_func (connection, G_CALLBACK (connection_removed), self);
|
|
g_signal_handlers_disconnect_by_func (connection, G_CALLBACK (connection_updated), self);
|
|
g_signal_handlers_disconnect_by_func (connection, G_CALLBACK (connection_flags_changed), self);
|
|
if (!priv->startup_complete)
|
|
g_signal_handlers_disconnect_by_func (connection, G_CALLBACK (connection_ready_changed), self);
|
|
|
|
/* Forget about the connection internally */
|
|
_clear_connections_cached_list (priv);
|
|
priv->connections_len--;
|
|
c_list_unlink (&connection->_connections_lst);
|
|
|
|
if (priv->connections_loaded) {
|
|
_notify (self, PROP_CONNECTIONS);
|
|
|
|
nm_dbus_object_emit_signal (NM_DBUS_OBJECT (self),
|
|
&interface_info_settings,
|
|
&signal_info_connection_removed,
|
|
"(o)",
|
|
nm_dbus_object_get_path (NM_DBUS_OBJECT (connection)));
|
|
}
|
|
|
|
nm_dbus_object_unexport (NM_DBUS_OBJECT (connection));
|
|
|
|
if (priv->connections_loaded)
|
|
g_signal_emit (self, signals[CONNECTION_REMOVED], 0, connection);
|
|
|
|
check_startup_complete (self);
|
|
|
|
g_object_unref (connection);
|
|
|
|
g_object_unref (self); /* Balanced by a ref in claim_connection() */
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
claim_connection (NMSettings *self, NMSettingsConnection *sett_conn)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
GError *error = NULL;
|
|
const char *path;
|
|
NMSettingsConnection *existing;
|
|
|
|
g_return_if_fail (NM_IS_SETTINGS (self));
|
|
g_return_if_fail (NM_IS_SETTINGS_CONNECTION (sett_conn));
|
|
g_return_if_fail (!nm_dbus_object_is_exported (NM_DBUS_OBJECT (sett_conn)));
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
/* prevent duplicates */
|
|
if (!c_list_is_empty (&sett_conn->_connections_lst)) {
|
|
nm_assert (c_list_contains (&priv->connections_lst_head, &sett_conn->_connections_lst));
|
|
return;
|
|
}
|
|
|
|
/* FIXME(copy-on-write-connection): avoid modifying NMConnection instances and share them via copy-on-write. */
|
|
if (!nm_connection_normalize (nm_settings_connection_get_connection (sett_conn), NULL, NULL, &error)) {
|
|
_LOGW ("plugin provided invalid connection: %s", error->message);
|
|
g_error_free (error);
|
|
return;
|
|
}
|
|
|
|
existing = nm_settings_get_connection_by_uuid (self, nm_settings_connection_get_uuid (sett_conn));
|
|
if (existing) {
|
|
/* Cannot add duplicate connections per UUID. Just return without action and
|
|
* log a warning.
|
|
*
|
|
* This means, that plugins must not provide duplicate connections (UUID).
|
|
* In fact, none of the plugins currently would do that.
|
|
*
|
|
* But globaly, over different setting plugins, there could be duplicates
|
|
* without the individual plugins being aware. Don't handle that at all, just
|
|
* error out. That should not happen unless the admin misconfigured the system
|
|
* to create conflicting connections. */
|
|
_LOGW ("plugin provided duplicate connection with UUID %s",
|
|
nm_settings_connection_get_uuid (sett_conn));
|
|
return;
|
|
}
|
|
|
|
nm_settings_connection_register_kf_dbs (sett_conn,
|
|
priv->kf_db_timestamps,
|
|
priv->kf_db_seen_bssids);
|
|
|
|
/* Ensure its initial visibility is up-to-date */
|
|
nm_settings_connection_recheck_visibility (sett_conn);
|
|
|
|
/* This one unexports the connection, it needs to run late to give the active
|
|
* connection a chance to deal with its reference to this settings connection. */
|
|
g_signal_connect_after (sett_conn, NM_SETTINGS_CONNECTION_REMOVED,
|
|
G_CALLBACK (connection_removed), self);
|
|
g_signal_connect (sett_conn, NM_SETTINGS_CONNECTION_UPDATED_INTERNAL,
|
|
G_CALLBACK (connection_updated), self);
|
|
g_signal_connect (sett_conn, NM_SETTINGS_CONNECTION_FLAGS_CHANGED,
|
|
G_CALLBACK (connection_flags_changed),
|
|
self);
|
|
if (!priv->startup_complete) {
|
|
g_signal_connect (sett_conn, "notify::" NM_SETTINGS_CONNECTION_READY,
|
|
G_CALLBACK (connection_ready_changed),
|
|
self);
|
|
}
|
|
|
|
_clear_connections_cached_list (priv);
|
|
|
|
g_object_ref (sett_conn);
|
|
/* FIXME(shutdown): The NMSettings instance can't be disposed
|
|
* while there is any exported connection. Ideally we should
|
|
* unexport all connections on NMSettings' disposal, but for now
|
|
* leak @self on termination when there are connections alive. */
|
|
g_object_ref (self);
|
|
priv->connections_len++;
|
|
c_list_link_tail (&priv->connections_lst_head, &sett_conn->_connections_lst);
|
|
|
|
path = nm_dbus_object_export (NM_DBUS_OBJECT (sett_conn));
|
|
|
|
nm_utils_log_connection_diff (nm_settings_connection_get_connection (sett_conn),
|
|
NULL,
|
|
LOGL_DEBUG,
|
|
LOGD_CORE,
|
|
"new connection", "++ ",
|
|
path);
|
|
|
|
/* Only emit the individual connection-added signal after connections
|
|
* have been initially loaded.
|
|
*/
|
|
if (priv->connections_loaded) {
|
|
nm_dbus_object_emit_signal (NM_DBUS_OBJECT (self),
|
|
&interface_info_settings,
|
|
&signal_info_new_connection,
|
|
"(o)",
|
|
nm_dbus_object_get_path (NM_DBUS_OBJECT (sett_conn)));
|
|
|
|
g_signal_emit (self, signals[CONNECTION_ADDED], 0, sett_conn);
|
|
_notify (self, PROP_CONNECTIONS);
|
|
}
|
|
|
|
nm_settings_connection_added (sett_conn);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
/**
|
|
* nm_settings_add_connection:
|
|
* @self: the #NMSettings object
|
|
* @connection: the source connection to create a new #NMSettingsConnection from
|
|
* @save_to_disk: %TRUE to save the connection to disk immediately, %FALSE to
|
|
* not save to disk
|
|
* @error: on return, a location to store any errors that may occur
|
|
*
|
|
* Creates a new #NMSettingsConnection for the given source @connection.
|
|
* The returned object is owned by @self and the caller must reference
|
|
* the object to continue using it.
|
|
*
|
|
* Returns: the new #NMSettingsConnection or %NULL
|
|
*/
|
|
NMSettingsConnection *
|
|
nm_settings_add_connection (NMSettings *self,
|
|
NMConnection *connection,
|
|
gboolean save_to_disk,
|
|
GError **error)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSList *iter;
|
|
NMSettingsConnection *added = NULL;
|
|
NMSettingsConnection *candidate = NULL;
|
|
const char *uuid;
|
|
|
|
uuid = nm_connection_get_uuid (connection);
|
|
|
|
/* Make sure a connection with this UUID doesn't already exist */
|
|
c_list_for_each_entry (candidate, &priv->connections_lst_head, _connections_lst) {
|
|
if (nm_streq0 (uuid, nm_settings_connection_get_uuid (candidate))) {
|
|
g_set_error_literal (error,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_UUID_EXISTS,
|
|
"A connection with this UUID already exists.");
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
/* 1) plugin writes the NMConnection to disk
|
|
* 2) plugin creates a new NMSettingsConnection subclass with the settings
|
|
* from the NMConnection and returns it to the settings service
|
|
* 3) settings service exports the new NMSettingsConnection subclass
|
|
* 4) plugin notices that something on the filesystem has changed
|
|
* 5) plugin reads the changes and ignores them because they will
|
|
* contain the same data as the connection it already knows about
|
|
*/
|
|
for (iter = priv->plugins; iter; iter = g_slist_next (iter)) {
|
|
NMSettingsPlugin *plugin = NM_SETTINGS_PLUGIN (iter->data);
|
|
GError *add_error = NULL;
|
|
gs_unref_variant GVariant *secrets = NULL;
|
|
|
|
/* Make a copy of agent-owned secrets because they won't be present in
|
|
* the connection returned by plugins, as plugins return only what was
|
|
* reread from the file. */
|
|
secrets = nm_connection_to_dbus (connection,
|
|
NM_CONNECTION_SERIALIZE_ONLY_SECRETS
|
|
| NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED);
|
|
|
|
added = nm_settings_plugin_add_connection (plugin, connection, save_to_disk, &add_error);
|
|
if (added) {
|
|
if (secrets) {
|
|
/* FIXME(copy-on-write-connection): avoid modifying NMConnection instances and share them via copy-on-write. */
|
|
nm_connection_update_secrets (nm_settings_connection_get_connection (added),
|
|
NULL,
|
|
secrets,
|
|
NULL);
|
|
}
|
|
claim_connection (self, added);
|
|
return added;
|
|
}
|
|
_LOGD ("Failed to add %s/'%s': %s",
|
|
nm_connection_get_uuid (connection),
|
|
nm_connection_get_id (connection),
|
|
add_error->message);
|
|
g_clear_error (&add_error);
|
|
}
|
|
|
|
g_set_error_literal (error, NM_SETTINGS_ERROR, NM_SETTINGS_ERROR_FAILED,
|
|
"No plugin supported adding this connection");
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
send_agent_owned_secrets (NMSettings *self,
|
|
NMSettingsConnection *sett_conn,
|
|
NMAuthSubject *subject)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
gs_unref_object NMConnection *for_agent = NULL;
|
|
|
|
/* Dupe the connection so we can clear out non-agent-owned secrets,
|
|
* as agent-owned secrets are the only ones we send back to be saved.
|
|
* Only send secrets to agents of the same UID that called update too.
|
|
*/
|
|
for_agent = nm_simple_connection_new_clone (nm_settings_connection_get_connection (sett_conn));
|
|
_nm_connection_clear_secrets_by_secret_flags (for_agent,
|
|
NM_SETTING_SECRET_FLAG_AGENT_OWNED);
|
|
nm_agent_manager_save_secrets (priv->agent_mgr,
|
|
nm_dbus_object_get_path (NM_DBUS_OBJECT (sett_conn)),
|
|
for_agent,
|
|
subject);
|
|
}
|
|
|
|
static void
|
|
pk_add_cb (NMAuthChain *chain,
|
|
GDBusMethodInvocation *context,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
NMAuthCallResult result;
|
|
gs_free_error GError *error = NULL;
|
|
NMConnection *connection = NULL;
|
|
gs_unref_object NMSettingsConnection *added = NULL;
|
|
NMSettingsAddCallback callback;
|
|
gpointer callback_data;
|
|
NMAuthSubject *subject;
|
|
const char *perm;
|
|
gboolean save_to_disk;
|
|
|
|
nm_assert (G_IS_DBUS_METHOD_INVOCATION (context));
|
|
|
|
c_list_unlink (nm_auth_chain_parent_lst_list (chain));
|
|
|
|
perm = nm_auth_chain_get_data (chain, "perm");
|
|
nm_assert (perm);
|
|
|
|
result = nm_auth_chain_get_result (chain, perm);
|
|
|
|
if (result != NM_AUTH_CALL_RESULT_YES) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Insufficient privileges.");
|
|
} else {
|
|
/* Authorized */
|
|
connection = nm_auth_chain_get_data (chain, "connection");
|
|
nm_assert (connection);
|
|
|
|
save_to_disk = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "save-to-disk"));
|
|
added = nm_settings_add_connection (self, connection, save_to_disk, &error);
|
|
|
|
/* The callback may remove the connection from the settings manager (e.g.
|
|
* because it's found to be incompatible with the device on AddAndActivate).
|
|
* But we need to keep it alive for a bit longer, precisely to check wehther
|
|
* it's still known to the setting manager. */
|
|
nm_g_object_ref (added);
|
|
}
|
|
|
|
callback = nm_auth_chain_get_data (chain, "callback");
|
|
callback_data = nm_auth_chain_get_data (chain, "callback-data");
|
|
subject = nm_auth_chain_get_data (chain, "subject");
|
|
|
|
callback (self, added, error, context, subject, callback_data);
|
|
|
|
/* Send agent-owned secrets to the agents */
|
|
if ( !error
|
|
&& added
|
|
&& nm_settings_has_connection (self, added))
|
|
send_agent_owned_secrets (self, added, subject);
|
|
}
|
|
|
|
void
|
|
nm_settings_add_connection_dbus (NMSettings *self,
|
|
NMConnection *connection,
|
|
gboolean save_to_disk,
|
|
NMAuthSubject *subject,
|
|
GDBusMethodInvocation *context,
|
|
NMSettingsAddCallback callback,
|
|
gpointer user_data)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMSettingConnection *s_con;
|
|
NMAuthChain *chain;
|
|
GError *error = NULL, *tmp_error = NULL;
|
|
const char *perm;
|
|
|
|
g_return_if_fail (NM_IS_CONNECTION (connection));
|
|
g_return_if_fail (NM_IS_AUTH_SUBJECT (subject));
|
|
g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (context));
|
|
|
|
/* Connection must be valid, of course */
|
|
if (!nm_connection_verify (connection, &tmp_error)) {
|
|
error = g_error_new (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_INVALID_CONNECTION,
|
|
"The connection was invalid: %s",
|
|
tmp_error->message);
|
|
g_error_free (tmp_error);
|
|
goto done;
|
|
}
|
|
|
|
/* FIXME: The kernel doesn't support Ad-Hoc WPA connections well at this time,
|
|
* and turns them into open networks. It's been this way since at least
|
|
* 2.6.30 or so; until that's fixed, disable WPA-protected Ad-Hoc networks.
|
|
*/
|
|
if (nm_utils_connection_is_adhoc_wpa (connection)) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_INVALID_CONNECTION,
|
|
"WPA Ad-Hoc disabled due to kernel bugs");
|
|
goto done;
|
|
}
|
|
|
|
if (!nm_auth_is_subject_in_acl_set_error (connection,
|
|
subject,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
&error))
|
|
goto done;
|
|
|
|
/* If the caller is the only user in the connection's permissions, then
|
|
* we use the 'modify.own' permission instead of 'modify.system'. If the
|
|
* request affects more than just the caller, require 'modify.system'.
|
|
*/
|
|
s_con = nm_connection_get_setting_connection (connection);
|
|
nm_assert (s_con);
|
|
if (nm_setting_connection_get_num_permissions (s_con) == 1)
|
|
perm = NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN;
|
|
else
|
|
perm = NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM;
|
|
|
|
/* Validate the user request */
|
|
chain = nm_auth_chain_new_subject (subject, context, pk_add_cb, self);
|
|
if (!chain) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Unable to authenticate the request.");
|
|
goto done;
|
|
}
|
|
|
|
c_list_link_tail (&priv->auth_lst_head, nm_auth_chain_parent_lst_list (chain));
|
|
|
|
nm_auth_chain_set_data (chain, "perm", (gpointer) perm, NULL);
|
|
nm_auth_chain_set_data (chain, "connection", g_object_ref (connection), g_object_unref);
|
|
nm_auth_chain_set_data (chain, "callback", callback, NULL);
|
|
nm_auth_chain_set_data (chain, "callback-data", user_data, NULL);
|
|
nm_auth_chain_set_data (chain, "subject", g_object_ref (subject), g_object_unref);
|
|
nm_auth_chain_set_data (chain, "save-to-disk", GUINT_TO_POINTER (save_to_disk), NULL);
|
|
nm_auth_chain_add_call_unsafe (chain, perm, TRUE);
|
|
return;
|
|
|
|
done:
|
|
nm_assert (error);
|
|
callback (self, NULL, error, context, subject, user_data);
|
|
g_error_free (error);
|
|
}
|
|
|
|
static void
|
|
settings_add_connection_add_cb (NMSettings *self,
|
|
NMSettingsConnection *connection,
|
|
GError *error,
|
|
GDBusMethodInvocation *context,
|
|
NMAuthSubject *subject,
|
|
gpointer user_data)
|
|
{
|
|
if (error) {
|
|
g_dbus_method_invocation_return_gerror (context, error);
|
|
nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD, NULL, FALSE, NULL, subject, error->message);
|
|
} else {
|
|
g_dbus_method_invocation_return_value (context,
|
|
g_variant_new ("(o)",
|
|
nm_dbus_object_get_path (NM_DBUS_OBJECT (connection))));
|
|
nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD, connection, TRUE, NULL,
|
|
subject, NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
settings_add_connection_helper (NMSettings *self,
|
|
GDBusMethodInvocation *context,
|
|
GVariant *settings,
|
|
gboolean save_to_disk)
|
|
{
|
|
gs_unref_object NMConnection *connection = NULL;
|
|
GError *error = NULL;
|
|
gs_unref_object NMAuthSubject *subject = NULL;
|
|
|
|
connection = _nm_simple_connection_new_from_dbus (settings,
|
|
NM_SETTING_PARSE_FLAGS_STRICT
|
|
| NM_SETTING_PARSE_FLAGS_NORMALIZE,
|
|
&error);
|
|
|
|
if ( !connection
|
|
|| !nm_connection_verify_secrets (connection, &error)) {
|
|
g_dbus_method_invocation_take_error (context, error);
|
|
return;
|
|
}
|
|
|
|
subject = nm_auth_subject_new_unix_process_from_context (context);
|
|
if (!subject) {
|
|
g_dbus_method_invocation_return_error_literal (context,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Unable to determine UID of request.");
|
|
return;
|
|
}
|
|
|
|
nm_settings_add_connection_dbus (self,
|
|
connection,
|
|
save_to_disk,
|
|
subject,
|
|
context,
|
|
settings_add_connection_add_cb,
|
|
NULL);
|
|
}
|
|
|
|
static void
|
|
impl_settings_add_connection (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
gs_unref_variant GVariant *settings = NULL;
|
|
|
|
g_variant_get (parameters, "(@a{sa{sv}})", &settings);
|
|
settings_add_connection_helper (self, invocation, settings, TRUE);
|
|
}
|
|
|
|
static void
|
|
impl_settings_add_connection_unsaved (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
gs_unref_variant GVariant *settings = NULL;
|
|
|
|
g_variant_get (parameters, "(@a{sa{sv}})", &settings);
|
|
settings_add_connection_helper (self, invocation, settings, FALSE);
|
|
}
|
|
|
|
static void
|
|
impl_settings_load_connections (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
gs_unref_ptrarray GPtrArray *failures = NULL;
|
|
gs_free const char **filenames = NULL;
|
|
|
|
g_variant_get (parameters, "(^a&s)", &filenames);
|
|
|
|
/* The permission is already enforced by the D-Bus daemon, but we ensure
|
|
* that the caller is still alive so that clients are forced to wait and
|
|
* we'll be able to switch to polkit without breaking behavior.
|
|
*/
|
|
if (!nm_dbus_manager_ensure_uid (nm_dbus_object_get_manager (obj),
|
|
invocation,
|
|
G_MAXULONG,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED))
|
|
return;
|
|
|
|
if (filenames) {
|
|
gsize i;
|
|
|
|
for (i = 0; filenames[i]; i++) {
|
|
GSList *iter;
|
|
|
|
if (filenames[i][0] != '/')
|
|
_LOGW ("load: connection filename '%s' is not an absolute path", filenames[i]);
|
|
else {
|
|
for (iter = priv->plugins; iter; iter = iter->next) {
|
|
NMSettingsPlugin *plugin = NM_SETTINGS_PLUGIN (iter->data);
|
|
|
|
if (nm_settings_plugin_load_connection (plugin, filenames[i]))
|
|
goto next_filename;
|
|
}
|
|
}
|
|
|
|
if (!failures)
|
|
failures = g_ptr_array_new ();
|
|
g_ptr_array_add (failures, (char *) filenames[i]);
|
|
|
|
next_filename:
|
|
;
|
|
}
|
|
}
|
|
|
|
if (failures)
|
|
g_ptr_array_add (failures, NULL);
|
|
|
|
g_dbus_method_invocation_return_value (invocation,
|
|
g_variant_new ("(b^as)",
|
|
(gboolean) (!failures),
|
|
failures
|
|
? (const char **) failures->pdata
|
|
: NM_PTRARRAY_EMPTY (const char *)));
|
|
}
|
|
|
|
static void
|
|
impl_settings_reload_connections (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSList *iter;
|
|
|
|
/* The permission is already enforced by the D-Bus daemon, but we ensure
|
|
* that the caller is still alive so that clients are forced to wait and
|
|
* we'll be able to switch to polkit without breaking behavior.
|
|
*/
|
|
if (!nm_dbus_manager_ensure_uid (nm_dbus_object_get_manager (obj),
|
|
invocation,
|
|
G_MAXULONG,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED))
|
|
return;
|
|
|
|
for (iter = priv->plugins; iter; iter = g_slist_next (iter)) {
|
|
NMSettingsPlugin *plugin = NM_SETTINGS_PLUGIN (iter->data);
|
|
|
|
nm_settings_plugin_reload_connections (plugin);
|
|
}
|
|
|
|
g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
_clear_connections_cached_list (NMSettingsPrivate *priv)
|
|
{
|
|
if (!priv->connections_cached_list)
|
|
return;
|
|
|
|
nm_assert (priv->connections_len == NM_PTRARRAY_LEN (priv->connections_cached_list));
|
|
|
|
#if NM_MORE_ASSERTS
|
|
/* set the pointer to a bogus value. This makes it more apparent
|
|
* if somebody has a reference to the cached list and still uses
|
|
* it. That is a bug, this code just tries to make it blow up
|
|
* more eagerly. */
|
|
memset (priv->connections_cached_list,
|
|
0xdeaddead,
|
|
sizeof (NMSettingsConnection *) * (priv->connections_len + 1));
|
|
#endif
|
|
|
|
nm_clear_g_free (&priv->connections_cached_list);
|
|
}
|
|
|
|
static void
|
|
impl_settings_list_connections (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *dbus_connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
gs_free const char **strv = NULL;
|
|
|
|
strv = nm_dbus_utils_get_paths_for_clist (&priv->connections_lst_head,
|
|
priv->connections_len,
|
|
G_STRUCT_OFFSET (NMSettingsConnection, _connections_lst),
|
|
TRUE);
|
|
g_dbus_method_invocation_return_value (invocation,
|
|
g_variant_new ("(^ao)", strv));
|
|
}
|
|
|
|
NMSettingsConnection *
|
|
nm_settings_get_connection_by_uuid (NMSettings *self, const char *uuid)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
NMSettingsConnection *candidate;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), NULL);
|
|
g_return_val_if_fail (uuid != NULL, NULL);
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
c_list_for_each_entry (candidate, &priv->connections_lst_head, _connections_lst) {
|
|
if (nm_streq (uuid, nm_settings_connection_get_uuid (candidate)))
|
|
return candidate;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
impl_settings_get_connection_by_uuid (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *dbus_connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
NMSettingsConnection *sett_conn;
|
|
gs_unref_object NMAuthSubject *subject = NULL;
|
|
GError *error = NULL;
|
|
const char *uuid;
|
|
|
|
g_variant_get (parameters, "(&s)", &uuid);
|
|
|
|
sett_conn = nm_settings_get_connection_by_uuid (self, uuid);
|
|
if (!sett_conn) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_INVALID_CONNECTION,
|
|
"No connection with the UUID was found.");
|
|
goto error;
|
|
}
|
|
|
|
subject = nm_auth_subject_new_unix_process_from_context (invocation);
|
|
if (!subject) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Unable to determine UID of request.");
|
|
goto error;
|
|
}
|
|
|
|
if (!nm_auth_is_subject_in_acl_set_error (nm_settings_connection_get_connection (sett_conn),
|
|
subject,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
&error))
|
|
goto error;
|
|
|
|
g_dbus_method_invocation_return_value (invocation,
|
|
g_variant_new ("(o)",
|
|
nm_dbus_object_get_path (NM_DBUS_OBJECT (sett_conn))));
|
|
return;
|
|
|
|
error:
|
|
g_dbus_method_invocation_take_error (invocation, error);
|
|
}
|
|
|
|
/**
|
|
* nm_settings_get_connections:
|
|
* @self: the #NMSettings
|
|
* @out_len: (out) (allow-none): returns the number of returned
|
|
* connections.
|
|
*
|
|
* Returns: (transfer none): a list of NMSettingsConnections. The list is
|
|
* unsorted and NULL terminated. The result is never %NULL, in case of no
|
|
* connections, it returns an empty list.
|
|
* The returned list is cached internally, only valid until the next
|
|
* NMSettings operation.
|
|
*/
|
|
NMSettingsConnection *const*
|
|
nm_settings_get_connections (NMSettings *self, guint *out_len)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
NMSettingsConnection **v;
|
|
NMSettingsConnection *con;
|
|
guint i;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), NULL);
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
nm_assert (priv->connections_len == c_list_length (&priv->connections_lst_head));
|
|
|
|
if (G_UNLIKELY (!priv->connections_cached_list)) {
|
|
v = g_new (NMSettingsConnection *, priv->connections_len + 1);
|
|
|
|
i = 0;
|
|
c_list_for_each_entry (con, &priv->connections_lst_head, _connections_lst) {
|
|
nm_assert (i < priv->connections_len);
|
|
v[i++] = con;
|
|
}
|
|
nm_assert (i == priv->connections_len);
|
|
v[i] = NULL;
|
|
|
|
priv->connections_cached_list = v;
|
|
}
|
|
|
|
NM_SET_OUT (out_len, priv->connections_len);
|
|
return priv->connections_cached_list;
|
|
}
|
|
|
|
/**
|
|
* nm_settings_get_connections_clone:
|
|
* @self: the #NMSetting
|
|
* @out_len: (allow-none): optional output argument
|
|
* @func: caller-supplied function for filtering connections
|
|
* @func_data: caller-supplied data passed to @func
|
|
* @sort_compare_func: (allow-none): optional function pointer for
|
|
* sorting the returned list.
|
|
* @sort_data: user data for @sort_compare_func.
|
|
*
|
|
* Returns: (transfer container) (element-type NMSettingsConnection):
|
|
* an NULL terminated array of #NMSettingsConnection objects that were
|
|
* filtered by @func (or all connections if no filter was specified).
|
|
* The order is arbitrary.
|
|
* Caller is responsible for freeing the returned array with free(),
|
|
* the contained values do not need to be unrefed.
|
|
*/
|
|
NMSettingsConnection **
|
|
nm_settings_get_connections_clone (NMSettings *self,
|
|
guint *out_len,
|
|
NMSettingsConnectionFilterFunc func,
|
|
gpointer func_data,
|
|
GCompareDataFunc sort_compare_func,
|
|
gpointer sort_data)
|
|
{
|
|
NMSettingsConnection *const*list_cached;
|
|
NMSettingsConnection **list;
|
|
guint len, i, j;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), NULL);
|
|
|
|
list_cached = nm_settings_get_connections (self, &len);
|
|
|
|
#if NM_MORE_ASSERTS
|
|
nm_assert (list_cached);
|
|
for (i = 0; i < len; i++)
|
|
nm_assert (NM_IS_SETTINGS_CONNECTION (list_cached[i]));
|
|
nm_assert (!list_cached[i]);
|
|
#endif
|
|
|
|
list = g_new (NMSettingsConnection *, ((gsize) len + 1));
|
|
if (func) {
|
|
for (i = 0, j = 0; i < len; i++) {
|
|
if (func (self, list_cached[i], func_data))
|
|
list[j++] = list_cached[i];
|
|
}
|
|
list[j] = NULL;
|
|
len = j;
|
|
} else
|
|
memcpy (list, list_cached, sizeof (list[0]) * ((gsize) len + 1));
|
|
|
|
if ( len > 1
|
|
&& sort_compare_func) {
|
|
g_qsort_with_data (list, len, sizeof (NMSettingsConnection *),
|
|
sort_compare_func, sort_data);
|
|
}
|
|
NM_SET_OUT (out_len, len);
|
|
return list;
|
|
}
|
|
|
|
NMSettingsConnection *
|
|
nm_settings_get_connection_by_path (NMSettings *self, const char *path)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
NMSettingsConnection *connection;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), NULL);
|
|
g_return_val_if_fail (path, NULL);
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
connection = nm_dbus_manager_lookup_object (nm_dbus_object_get_manager (NM_DBUS_OBJECT (self)),
|
|
path);
|
|
if ( !connection
|
|
|| !NM_IS_SETTINGS_CONNECTION (connection))
|
|
return NULL;
|
|
|
|
nm_assert (c_list_contains (&priv->connections_lst_head, &connection->_connections_lst));
|
|
return connection;
|
|
}
|
|
|
|
gboolean
|
|
nm_settings_has_connection (NMSettings *self, NMSettingsConnection *connection)
|
|
{
|
|
gboolean has;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), FALSE);
|
|
g_return_val_if_fail (NM_IS_SETTINGS_CONNECTION (connection), FALSE);
|
|
|
|
has = !c_list_is_empty (&connection->_connections_lst);
|
|
|
|
nm_assert (has == nm_c_list_contains_entry (&NM_SETTINGS_GET_PRIVATE (self)->connections_lst_head,
|
|
connection,
|
|
_connections_lst));
|
|
nm_assert (({
|
|
NMSettingsConnection *candidate = NULL;
|
|
const char *path;
|
|
|
|
path = nm_dbus_object_get_path (NM_DBUS_OBJECT (connection));
|
|
if (path)
|
|
candidate = nm_settings_get_connection_by_path (self, path);
|
|
|
|
(has == (connection == candidate));
|
|
}));
|
|
|
|
return has;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
add_plugin (NMSettings *self,
|
|
NMSettingsPlugin *plugin,
|
|
const char *pname,
|
|
const char *path)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
|
|
nm_assert (NM_IS_SETTINGS (self));
|
|
nm_assert (NM_IS_SETTINGS_PLUGIN (plugin));
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
nm_assert (!g_slist_find (priv->plugins, plugin));
|
|
|
|
priv->plugins = g_slist_append (priv->plugins, g_object_ref (plugin));
|
|
|
|
nm_shutdown_wait_obj_register_full (G_OBJECT (plugin),
|
|
g_strdup_printf ("%s-settings-plugin", pname),
|
|
TRUE);
|
|
|
|
_LOGI ("Loaded settings plugin: %s (%s%s%s)",
|
|
pname,
|
|
NM_PRINT_FMT_QUOTED (path, "\"", path, "\"", "internal"));
|
|
}
|
|
|
|
static gboolean
|
|
add_plugin_load_file (NMSettings *self, const char *pname, GError **error)
|
|
{
|
|
gs_free char *full_name = NULL;
|
|
gs_free char *path = NULL;
|
|
gs_unref_object NMSettingsPlugin *plugin = NULL;
|
|
GModule *module;
|
|
NMSettingsPluginFactoryFunc factory_func;
|
|
struct stat st;
|
|
int errsv;
|
|
|
|
full_name = g_strdup_printf ("nm-settings-plugin-%s", pname);
|
|
path = g_module_build_path (NMPLUGINDIR, full_name);
|
|
|
|
if (stat (path, &st) != 0) {
|
|
errsv = errno;
|
|
_LOGW ("could not load plugin '%s' from file '%s': %s", pname, path, nm_strerror_native (errsv));
|
|
return TRUE;
|
|
}
|
|
if (!S_ISREG (st.st_mode)) {
|
|
_LOGW ("could not load plugin '%s' from file '%s': not a file", pname, path);
|
|
return TRUE;
|
|
}
|
|
if (st.st_uid != 0) {
|
|
_LOGW ("could not load plugin '%s' from file '%s': file must be owned by root", pname, path);
|
|
return TRUE;
|
|
}
|
|
if (st.st_mode & (S_IWGRP | S_IWOTH | S_ISUID)) {
|
|
_LOGW ("could not load plugin '%s' from file '%s': invalid file permissions", pname, path);
|
|
return TRUE;
|
|
}
|
|
|
|
module = g_module_open (path, G_MODULE_BIND_LOCAL);
|
|
if (!module) {
|
|
_LOGW ("could not load plugin '%s' from file '%s': %s",
|
|
pname, path, g_module_error ());
|
|
return TRUE;
|
|
}
|
|
|
|
/* errors after this point are fatal, because we loaded the shared library already. */
|
|
|
|
if (!g_module_symbol (module, "nm_settings_plugin_factory", (gpointer) (&factory_func))) {
|
|
g_set_error (error, NM_SETTINGS_ERROR, NM_SETTINGS_ERROR_FAILED,
|
|
"Could not find plugin '%s' factory function.",
|
|
pname);
|
|
g_module_close (module);
|
|
return FALSE;
|
|
}
|
|
|
|
/* after accessing the plugin we cannot unload it anymore, because the glib
|
|
* types cannot be properly unregistered. */
|
|
g_module_make_resident (module);
|
|
|
|
plugin = (*factory_func) ();
|
|
if (!NM_IS_SETTINGS_PLUGIN (plugin)) {
|
|
g_set_error (error, NM_SETTINGS_ERROR, NM_SETTINGS_ERROR_FAILED,
|
|
"plugin '%s' returned invalid settings plugin",
|
|
pname);
|
|
return FALSE;
|
|
}
|
|
|
|
add_plugin (self, NM_SETTINGS_PLUGIN (plugin), pname, path);
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
add_plugin_keyfile (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
if (priv->keyfile_plugin)
|
|
return;
|
|
priv->keyfile_plugin = nms_keyfile_plugin_new ();
|
|
add_plugin (self, NM_SETTINGS_PLUGIN (priv->keyfile_plugin), "keyfile", NULL);
|
|
}
|
|
|
|
static gboolean
|
|
load_plugins (NMSettings *self, const char *const*plugins, GError **error)
|
|
{
|
|
const char *const*iter;
|
|
gboolean success = TRUE;
|
|
|
|
for (iter = plugins; iter && *iter; iter++) {
|
|
const char *pname = *iter;
|
|
|
|
if (!*pname || strchr (pname, '/')) {
|
|
_LOGW ("ignore invalid plugin \"%s\"", pname);
|
|
continue;
|
|
}
|
|
|
|
if (NM_IN_STRSET (pname, "ifcfg-suse", "ifnet", "ibft", "no-ibft")) {
|
|
_LOGW ("skipping deprecated plugin %s", pname);
|
|
continue;
|
|
}
|
|
|
|
/* keyfile plugin is built-in now */
|
|
if (nm_streq (pname, "keyfile")) {
|
|
add_plugin_keyfile (self);
|
|
continue;
|
|
}
|
|
|
|
if (nm_utils_strv_find_first ((char **) plugins,
|
|
iter - plugins,
|
|
pname) >= 0) {
|
|
/* the plugin is already mentioned in the list previously.
|
|
* Don't load a duplicate. */
|
|
continue;
|
|
}
|
|
|
|
success = add_plugin_load_file (self, pname, error);
|
|
if (!success)
|
|
break;
|
|
}
|
|
|
|
/* If keyfile plugin was not among configured plugins, add it as the last one */
|
|
if (success)
|
|
add_plugin_keyfile (self);
|
|
|
|
return success;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
pk_hostname_cb (NMAuthChain *chain,
|
|
GDBusMethodInvocation *context,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (user_data);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMAuthCallResult result;
|
|
GError *error = NULL;
|
|
const char *hostname;
|
|
|
|
nm_assert (G_IS_DBUS_METHOD_INVOCATION (context));
|
|
|
|
c_list_unlink (nm_auth_chain_parent_lst_list (chain));
|
|
|
|
result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME);
|
|
|
|
/* If our NMSettingsConnection is already gone, do nothing */
|
|
if (result != NM_AUTH_CALL_RESULT_YES) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Insufficient privileges.");
|
|
} else {
|
|
hostname = nm_auth_chain_get_data (chain, "hostname");
|
|
|
|
if (!nm_hostname_manager_write_hostname (priv->hostname_manager, hostname)) {
|
|
error = g_error_new_literal (NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_FAILED,
|
|
"Saving the hostname failed.");
|
|
}
|
|
}
|
|
|
|
if (error)
|
|
g_dbus_method_invocation_take_error (context, error);
|
|
else
|
|
g_dbus_method_invocation_return_value (context, NULL);
|
|
}
|
|
|
|
static void
|
|
impl_settings_save_hostname (NMDBusObject *obj,
|
|
const NMDBusInterfaceInfoExtended *interface_info,
|
|
const NMDBusMethodInfoExtended *method_info,
|
|
GDBusConnection *connection,
|
|
const char *sender,
|
|
GDBusMethodInvocation *invocation,
|
|
GVariant *parameters)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (obj);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMAuthChain *chain;
|
|
const char *hostname;
|
|
|
|
g_variant_get (parameters, "(&s)", &hostname);
|
|
|
|
/* Minimal validation of the hostname */
|
|
if (!nm_hostname_manager_validate_hostname (hostname)) {
|
|
g_dbus_method_invocation_return_error_literal (invocation,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_INVALID_HOSTNAME,
|
|
"The hostname was too long or contained invalid characters.");
|
|
return;
|
|
}
|
|
|
|
chain = nm_auth_chain_new_context (invocation, pk_hostname_cb, self);
|
|
if (!chain) {
|
|
g_dbus_method_invocation_return_error_literal (invocation,
|
|
NM_SETTINGS_ERROR,
|
|
NM_SETTINGS_ERROR_PERMISSION_DENIED,
|
|
"Unable to authenticate the request.");
|
|
return;
|
|
}
|
|
|
|
c_list_link_tail (&priv->auth_lst_head, nm_auth_chain_parent_lst_list (chain));
|
|
nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME, TRUE);
|
|
nm_auth_chain_set_data (chain, "hostname", g_strdup (hostname), g_free);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
_hostname_changed_cb (NMHostnameManager *hostname_manager,
|
|
GParamSpec *pspec,
|
|
gpointer user_data)
|
|
{
|
|
_notify (user_data, PROP_HOSTNAME);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static gboolean
|
|
have_connection_for_device (NMSettings *self, NMDevice *device)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
NMSettingWired *s_wired;
|
|
const char *setting_hwaddr;
|
|
const char *perm_hw_addr;
|
|
NMSettingsConnection *sett_conn;
|
|
|
|
g_return_val_if_fail (NM_IS_SETTINGS (self), FALSE);
|
|
|
|
perm_hw_addr = nm_device_get_permanent_hw_address (device);
|
|
|
|
/* Find a wired connection locked to the given MAC address, if any */
|
|
c_list_for_each_entry (sett_conn, &priv->connections_lst_head, _connections_lst) {
|
|
NMConnection *connection = nm_settings_connection_get_connection (sett_conn);
|
|
NMSettingConnection *s_con = nm_connection_get_setting_connection (connection);
|
|
const char *ctype;
|
|
const char *iface;
|
|
|
|
ctype = nm_setting_connection_get_connection_type (s_con);
|
|
if (!NM_IN_STRSET (ctype, NM_SETTING_WIRED_SETTING_NAME,
|
|
NM_SETTING_PPPOE_SETTING_NAME))
|
|
continue;
|
|
|
|
if (!nm_device_check_connection_compatible (device, connection, NULL))
|
|
continue;
|
|
|
|
iface = nm_setting_connection_get_interface_name (s_con);
|
|
if (nm_streq0 (iface, nm_device_get_iface (device)))
|
|
continue;
|
|
|
|
s_wired = nm_connection_get_setting_wired (connection);
|
|
if ( !s_wired
|
|
&& nm_streq (ctype, NM_SETTING_PPPOE_SETTING_NAME)) {
|
|
/* No wired setting; therefore the PPPoE connection applies to any device */
|
|
return TRUE;
|
|
}
|
|
|
|
setting_hwaddr = nm_setting_wired_get_mac_address (s_wired);
|
|
if (setting_hwaddr) {
|
|
/* A connection mac-locked to this device */
|
|
if ( perm_hw_addr
|
|
&& nm_utils_hwaddr_matches (setting_hwaddr, -1, perm_hw_addr, -1))
|
|
return TRUE;
|
|
} else {
|
|
/* A connection that applies to any wired device */
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
/* See if there's a known non-NetworkManager configuration for the device */
|
|
if (nm_device_spec_match_list (device, priv->unrecognized_specs))
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
default_wired_connection_updated_by_user_cb (NMSettingsConnection *connection, gboolean by_user, NMSettings *self)
|
|
{
|
|
NMDevice *device;
|
|
|
|
if (!by_user)
|
|
return;
|
|
|
|
/* The connection has been changed by the user, it should no longer be
|
|
* considered a default wired connection, and should no longer affect
|
|
* the no-auto-default configuration option.
|
|
*/
|
|
device = g_object_get_qdata (G_OBJECT (connection), _default_wired_device_quark ());
|
|
if (device)
|
|
default_wired_clear_tag (self, device, connection, FALSE);
|
|
}
|
|
|
|
static void
|
|
default_wired_clear_tag (NMSettings *self,
|
|
NMDevice *device,
|
|
NMSettingsConnection *connection,
|
|
gboolean add_to_no_auto_default)
|
|
{
|
|
nm_assert (NM_IS_SETTINGS (self));
|
|
nm_assert (NM_IS_DEVICE (device));
|
|
nm_assert (NM_IS_SETTINGS_CONNECTION (connection));
|
|
nm_assert (device == g_object_get_qdata (G_OBJECT (connection), _default_wired_device_quark ()));
|
|
nm_assert (connection == g_object_get_qdata (G_OBJECT (device), _default_wired_connection_quark ()));
|
|
|
|
g_object_set_qdata (G_OBJECT (connection), _default_wired_device_quark (), NULL);
|
|
g_object_set_qdata (G_OBJECT (device), _default_wired_connection_quark (), NULL);
|
|
|
|
g_signal_handlers_disconnect_by_func (connection, G_CALLBACK (default_wired_connection_updated_by_user_cb), self);
|
|
|
|
if (add_to_no_auto_default)
|
|
nm_config_set_no_auto_default_for_device (NM_SETTINGS_GET_PRIVATE (self)->config, device);
|
|
}
|
|
|
|
static void
|
|
device_realized (NMDevice *device, GParamSpec *pspec, NMSettings *self)
|
|
{
|
|
NMConnection *connection;
|
|
NMSettingsConnection *added;
|
|
GError *error = NULL;
|
|
|
|
if (!nm_device_is_real (device))
|
|
return;
|
|
|
|
g_signal_handlers_disconnect_by_func (device,
|
|
G_CALLBACK (device_realized),
|
|
self);
|
|
|
|
/* If the device isn't managed or it already has a default wired connection,
|
|
* ignore it.
|
|
*/
|
|
if ( !nm_device_get_managed (device, FALSE)
|
|
|| g_object_get_qdata (G_OBJECT (device), _default_wired_connection_quark ())
|
|
|| have_connection_for_device (self, device))
|
|
return;
|
|
|
|
connection = nm_device_new_default_connection (device);
|
|
if (!connection)
|
|
return;
|
|
|
|
/* Add the connection */
|
|
added = nm_settings_add_connection (self, connection, FALSE, &error);
|
|
g_object_unref (connection);
|
|
|
|
if (!added) {
|
|
if (!g_error_matches (error, NM_SETTINGS_ERROR, NM_SETTINGS_ERROR_UUID_EXISTS)) {
|
|
_LOGW ("(%s) couldn't create default wired connection: %s",
|
|
nm_device_get_iface (device),
|
|
error->message);
|
|
}
|
|
g_clear_error (&error);
|
|
return;
|
|
}
|
|
|
|
g_object_set_qdata (G_OBJECT (added), _default_wired_device_quark (), device);
|
|
g_object_set_qdata (G_OBJECT (device), _default_wired_connection_quark (), added);
|
|
|
|
g_signal_connect (added, NM_SETTINGS_CONNECTION_UPDATED_INTERNAL,
|
|
G_CALLBACK (default_wired_connection_updated_by_user_cb), self);
|
|
|
|
_LOGI ("(%s): created default wired connection '%s'",
|
|
nm_device_get_iface (device),
|
|
nm_settings_connection_get_id (added));
|
|
}
|
|
|
|
void
|
|
nm_settings_device_added (NMSettings *self, NMDevice *device)
|
|
{
|
|
if (nm_device_is_real (device))
|
|
device_realized (device, NULL, self);
|
|
else {
|
|
g_signal_connect_after (device, "notify::" NM_DEVICE_REAL,
|
|
G_CALLBACK (device_realized),
|
|
self);
|
|
}
|
|
}
|
|
|
|
void
|
|
nm_settings_device_removed (NMSettings *self, NMDevice *device, gboolean quitting)
|
|
{
|
|
NMSettingsConnection *connection;
|
|
|
|
g_signal_handlers_disconnect_by_func (device,
|
|
G_CALLBACK (device_realized),
|
|
self);
|
|
|
|
connection = g_object_get_qdata (G_OBJECT (device), _default_wired_connection_quark ());
|
|
if (connection) {
|
|
default_wired_clear_tag (self, device, connection, FALSE);
|
|
|
|
/* Don't delete the default wired connection on shutdown, so that it
|
|
* remains up and can be assumed if NM starts again.
|
|
*/
|
|
if (quitting == FALSE)
|
|
nm_settings_connection_delete (connection, NULL);
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
G_GNUC_PRINTF (4, 5)
|
|
static void
|
|
_kf_db_log_fcn (NMKeyFileDB *kf_db,
|
|
int syslog_level,
|
|
gpointer user_data,
|
|
const char *fmt,
|
|
...)
|
|
{
|
|
NMSettings *self = user_data;
|
|
NMLogLevel level = nm_log_level_from_syslog (syslog_level);
|
|
|
|
if (_NMLOG_ENABLED (level)) {
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
gs_free char *msg = NULL;
|
|
va_list ap;
|
|
const char *prefix;
|
|
|
|
va_start (ap, fmt);
|
|
msg = g_strdup_vprintf (fmt, ap);
|
|
va_end (ap);
|
|
|
|
if (priv->kf_db_timestamps == kf_db)
|
|
prefix = "timestamps";
|
|
else if (priv->kf_db_seen_bssids == kf_db)
|
|
prefix = "seen-bssids";
|
|
else {
|
|
nm_assert_not_reached ();
|
|
prefix = "???";
|
|
}
|
|
|
|
_NMLOG (level, "[%s-keyfile]: %s", prefix, msg);
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
_kf_db_got_dirty_flush (NMSettings *self,
|
|
gboolean is_timestamps)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
const char *prefix;
|
|
NMKeyFileDB *kf_db;
|
|
|
|
if (is_timestamps) {
|
|
prefix = "timestamps";
|
|
kf_db = priv->kf_db_timestamps;
|
|
priv->kf_db_flush_idle_id_timestamps = 0;
|
|
} else {
|
|
prefix = "seen-bssids";
|
|
kf_db = priv->kf_db_seen_bssids;
|
|
priv->kf_db_flush_idle_id_seen_bssids = 0;
|
|
}
|
|
|
|
if (nm_key_file_db_is_dirty (kf_db))
|
|
nm_key_file_db_to_file (kf_db, FALSE);
|
|
else {
|
|
_LOGT ("[%s-keyfile]: skip saving changes to \"%s\"",
|
|
prefix,
|
|
nm_key_file_db_get_filename (kf_db));
|
|
}
|
|
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static gboolean
|
|
_kf_db_got_dirty_flush_timestamps_cb (gpointer user_data)
|
|
{
|
|
return _kf_db_got_dirty_flush (user_data,
|
|
TRUE);
|
|
}
|
|
|
|
static gboolean
|
|
_kf_db_got_dirty_flush_seen_bssids_cb (gpointer user_data)
|
|
{
|
|
return _kf_db_got_dirty_flush (user_data,
|
|
FALSE);
|
|
}
|
|
|
|
static void
|
|
_kf_db_got_dirty_fcn (NMKeyFileDB *kf_db,
|
|
gpointer user_data)
|
|
{
|
|
NMSettings *self = user_data;
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSourceFunc idle_func;
|
|
guint *p_id;
|
|
const char *prefix;
|
|
|
|
if (priv->kf_db_timestamps == kf_db) {
|
|
prefix = "timestamps";
|
|
p_id = &priv->kf_db_flush_idle_id_timestamps;
|
|
idle_func = _kf_db_got_dirty_flush_timestamps_cb;
|
|
} else if (priv->kf_db_seen_bssids == kf_db) {
|
|
prefix = "seen-bssids";
|
|
p_id = &priv->kf_db_flush_idle_id_seen_bssids;
|
|
idle_func = _kf_db_got_dirty_flush_seen_bssids_cb;
|
|
} else {
|
|
nm_assert_not_reached ();
|
|
return;
|
|
}
|
|
|
|
if (*p_id != 0)
|
|
return;
|
|
_LOGT ("[%s-keyfile]: schedule flushing changes to disk", prefix);
|
|
*p_id = g_idle_add_full (G_PRIORITY_LOW, idle_func, self, NULL);
|
|
}
|
|
|
|
void
|
|
nm_settings_kf_db_write (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
|
|
g_return_if_fail (NM_IS_SETTINGS (self));
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
if (priv->kf_db_timestamps)
|
|
nm_key_file_db_to_file (priv->kf_db_timestamps, TRUE);
|
|
if (priv->kf_db_seen_bssids)
|
|
nm_key_file_db_to_file (priv->kf_db_seen_bssids, TRUE);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
gboolean
|
|
nm_settings_start (NMSettings *self, GError **error)
|
|
{
|
|
NMSettingsPrivate *priv;
|
|
gs_strfreev char **plugins = NULL;
|
|
|
|
priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
priv->kf_db_timestamps = nm_key_file_db_new (NMSTATEDIR "/timestamps",
|
|
"timestamps",
|
|
_kf_db_log_fcn,
|
|
_kf_db_got_dirty_fcn,
|
|
self);
|
|
priv->kf_db_seen_bssids = nm_key_file_db_new (NMSTATEDIR "/seen-bssids",
|
|
"seen-bssids",
|
|
_kf_db_log_fcn,
|
|
_kf_db_got_dirty_fcn,
|
|
self);
|
|
nm_key_file_db_start (priv->kf_db_timestamps);
|
|
nm_key_file_db_start (priv->kf_db_seen_bssids);
|
|
|
|
/* Load the plugins; fail if a plugin is not found. */
|
|
plugins = nm_config_data_get_plugins (nm_config_get_data_orig (priv->config), TRUE);
|
|
|
|
if (!load_plugins (self, (const char *const*) plugins, error))
|
|
return FALSE;
|
|
|
|
load_connections (self);
|
|
|
|
check_startup_complete (self);
|
|
|
|
priv->hostname_manager = g_object_ref (nm_hostname_manager_get ());
|
|
g_signal_connect (priv->hostname_manager,
|
|
"notify::"NM_HOSTNAME_MANAGER_HOSTNAME,
|
|
G_CALLBACK (_hostname_changed_cb),
|
|
self);
|
|
if (nm_hostname_manager_get_hostname (priv->hostname_manager))
|
|
_notify (self, PROP_HOSTNAME);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
get_property (GObject *object, guint prop_id,
|
|
GValue *value, GParamSpec *pspec)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (object);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
const char **strv;
|
|
|
|
switch (prop_id) {
|
|
case PROP_UNMANAGED_SPECS:
|
|
g_value_take_boxed (value,
|
|
_nm_utils_slist_to_strv (nm_settings_get_unmanaged_specs (self),
|
|
TRUE));
|
|
break;
|
|
case PROP_HOSTNAME:
|
|
g_value_set_string (value,
|
|
priv->hostname_manager
|
|
? nm_hostname_manager_get_hostname (priv->hostname_manager)
|
|
: NULL);
|
|
break;
|
|
case PROP_CAN_MODIFY:
|
|
g_value_set_boolean (value, TRUE);
|
|
break;
|
|
case PROP_CONNECTIONS:
|
|
if (priv->connections_loaded) {
|
|
strv = nm_dbus_utils_get_paths_for_clist (&priv->connections_lst_head,
|
|
priv->connections_len,
|
|
G_STRUCT_OFFSET (NMSettingsConnection, _connections_lst),
|
|
TRUE);
|
|
g_value_take_boxed (value, nm_utils_strv_make_deep_copied (strv));
|
|
} else
|
|
g_value_set_boxed (value, NULL);
|
|
break;
|
|
case PROP_STARTUP_COMPLETE:
|
|
g_value_set_boolean (value, !nm_settings_get_startup_complete_blocked_reason (self));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
nm_settings_init (NMSettings *self)
|
|
{
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
|
|
c_list_init (&priv->auth_lst_head);
|
|
c_list_init (&priv->connections_lst_head);
|
|
|
|
priv->agent_mgr = g_object_ref (nm_agent_manager_get ());
|
|
priv->config = g_object_ref (nm_config_get ());
|
|
}
|
|
|
|
NMSettings *
|
|
nm_settings_new (void)
|
|
{
|
|
return g_object_new (NM_TYPE_SETTINGS, NULL);
|
|
}
|
|
|
|
static void
|
|
dispose (GObject *object)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (object);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
CList *iter;
|
|
|
|
g_clear_object (&priv->startup_complete_blocked_by);
|
|
|
|
while ((iter = c_list_first (&priv->auth_lst_head)))
|
|
nm_auth_chain_destroy (nm_auth_chain_parent_lst_entry (iter));
|
|
|
|
if (priv->hostname_manager) {
|
|
g_signal_handlers_disconnect_by_func (priv->hostname_manager,
|
|
G_CALLBACK (_hostname_changed_cb),
|
|
self);
|
|
g_clear_object (&priv->hostname_manager);
|
|
}
|
|
|
|
G_OBJECT_CLASS (nm_settings_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
finalize (GObject *object)
|
|
{
|
|
NMSettings *self = NM_SETTINGS (object);
|
|
NMSettingsPrivate *priv = NM_SETTINGS_GET_PRIVATE (self);
|
|
GSList *iter;
|
|
|
|
_clear_connections_cached_list (priv);
|
|
|
|
nm_assert (c_list_is_empty (&priv->connections_lst_head));
|
|
|
|
g_slist_free_full (priv->unmanaged_specs, g_free);
|
|
g_slist_free_full (priv->unrecognized_specs, g_free);
|
|
|
|
while ((iter = priv->plugins)) {
|
|
gs_unref_object NMSettingsPlugin *plugin = iter->data;
|
|
|
|
priv->plugins = g_slist_delete_link (priv->plugins, iter);
|
|
g_signal_handlers_disconnect_by_data (plugin, self);
|
|
}
|
|
|
|
g_clear_object (&priv->keyfile_plugin);
|
|
|
|
g_clear_object (&priv->agent_mgr);
|
|
|
|
g_clear_object (&priv->config);
|
|
|
|
nm_clear_g_source (&priv->kf_db_flush_idle_id_timestamps);
|
|
nm_clear_g_source (&priv->kf_db_flush_idle_id_seen_bssids);
|
|
nm_key_file_db_to_file (priv->kf_db_timestamps, FALSE);
|
|
nm_key_file_db_to_file (priv->kf_db_seen_bssids, FALSE);
|
|
nm_key_file_db_destroy (priv->kf_db_timestamps);
|
|
nm_key_file_db_destroy (priv->kf_db_seen_bssids);
|
|
|
|
G_OBJECT_CLASS (nm_settings_parent_class)->finalize (object);
|
|
}
|
|
|
|
static const GDBusSignalInfo signal_info_new_connection = NM_DEFINE_GDBUS_SIGNAL_INFO_INIT (
|
|
"NewConnection",
|
|
.args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connection", "o"),
|
|
),
|
|
);
|
|
|
|
static const GDBusSignalInfo signal_info_connection_removed = NM_DEFINE_GDBUS_SIGNAL_INFO_INIT (
|
|
"ConnectionRemoved",
|
|
.args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connection", "o"),
|
|
),
|
|
);
|
|
|
|
static const NMDBusInterfaceInfoExtended interface_info_settings = {
|
|
.parent = NM_DEFINE_GDBUS_INTERFACE_INFO_INIT (
|
|
NM_DBUS_INTERFACE_SETTINGS,
|
|
.methods = NM_DEFINE_GDBUS_METHOD_INFOS (
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"ListConnections",
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connections", "ao"),
|
|
),
|
|
),
|
|
.handle = impl_settings_list_connections,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"GetConnectionByUuid",
|
|
.in_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("uuid", "s"),
|
|
),
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connection", "o"),
|
|
),
|
|
),
|
|
.handle = impl_settings_get_connection_by_uuid,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"AddConnection",
|
|
.in_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connection", "a{sa{sv}}"),
|
|
),
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("path", "o"),
|
|
),
|
|
),
|
|
.handle = impl_settings_add_connection,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"AddConnectionUnsaved",
|
|
.in_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("connection", "a{sa{sv}}"),
|
|
),
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("path", "o"),
|
|
),
|
|
),
|
|
.handle = impl_settings_add_connection_unsaved,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"LoadConnections",
|
|
.in_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("filenames", "as"),
|
|
),
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("status", "b"),
|
|
NM_DEFINE_GDBUS_ARG_INFO ("failures", "as"),
|
|
),
|
|
),
|
|
.handle = impl_settings_load_connections,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"ReloadConnections",
|
|
.out_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("status", "b"),
|
|
),
|
|
),
|
|
.handle = impl_settings_reload_connections,
|
|
),
|
|
NM_DEFINE_DBUS_METHOD_INFO_EXTENDED (
|
|
NM_DEFINE_GDBUS_METHOD_INFO_INIT (
|
|
"SaveHostname",
|
|
.in_args = NM_DEFINE_GDBUS_ARG_INFOS (
|
|
NM_DEFINE_GDBUS_ARG_INFO ("hostname", "s"),
|
|
),
|
|
),
|
|
.handle = impl_settings_save_hostname,
|
|
),
|
|
),
|
|
.signals = NM_DEFINE_GDBUS_SIGNAL_INFOS (
|
|
&nm_signal_info_property_changed_legacy,
|
|
&signal_info_new_connection,
|
|
&signal_info_connection_removed,
|
|
),
|
|
.properties = NM_DEFINE_GDBUS_PROPERTY_INFOS (
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("Connections", "ao", NM_SETTINGS_CONNECTIONS),
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("Hostname", "s", NM_SETTINGS_HOSTNAME),
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("CanModify", "b", NM_SETTINGS_CAN_MODIFY),
|
|
),
|
|
),
|
|
.legacy_property_changed = TRUE,
|
|
};
|
|
|
|
static void
|
|
nm_settings_class_init (NMSettingsClass *class)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
NMDBusObjectClass *dbus_object_class = NM_DBUS_OBJECT_CLASS (class);
|
|
|
|
dbus_object_class->export_path = NM_DBUS_EXPORT_PATH_STATIC (NM_DBUS_PATH_SETTINGS);
|
|
dbus_object_class->interface_infos = NM_DBUS_INTERFACE_INFOS (&interface_info_settings);
|
|
|
|
object_class->get_property = get_property;
|
|
object_class->dispose = dispose;
|
|
object_class->finalize = finalize;
|
|
|
|
obj_properties[PROP_UNMANAGED_SPECS] =
|
|
g_param_spec_boxed (NM_SETTINGS_UNMANAGED_SPECS, "", "",
|
|
G_TYPE_STRV,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_HOSTNAME] =
|
|
g_param_spec_string (NM_SETTINGS_HOSTNAME, "", "",
|
|
NULL,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_CAN_MODIFY] =
|
|
g_param_spec_boolean (NM_SETTINGS_CAN_MODIFY, "", "",
|
|
FALSE,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_CONNECTIONS] =
|
|
g_param_spec_boxed (NM_SETTINGS_CONNECTIONS, "", "",
|
|
G_TYPE_STRV,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_STARTUP_COMPLETE] =
|
|
g_param_spec_boolean (NM_SETTINGS_STARTUP_COMPLETE, "", "",
|
|
FALSE,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
g_object_class_install_properties (object_class, _PROPERTY_ENUMS_LAST, obj_properties);
|
|
|
|
signals[CONNECTION_ADDED] =
|
|
g_signal_new (NM_SETTINGS_SIGNAL_CONNECTION_ADDED,
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
G_SIGNAL_RUN_FIRST,
|
|
0, NULL, NULL,
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
G_TYPE_NONE, 1, NM_TYPE_SETTINGS_CONNECTION);
|
|
|
|
signals[CONNECTION_UPDATED] =
|
|
g_signal_new (NM_SETTINGS_SIGNAL_CONNECTION_UPDATED,
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
G_SIGNAL_RUN_FIRST,
|
|
0, NULL, NULL,
|
|
NULL,
|
|
G_TYPE_NONE, 2, NM_TYPE_SETTINGS_CONNECTION, G_TYPE_BOOLEAN);
|
|
|
|
signals[CONNECTION_REMOVED] =
|
|
g_signal_new (NM_SETTINGS_SIGNAL_CONNECTION_REMOVED,
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
G_SIGNAL_RUN_FIRST,
|
|
0, NULL, NULL,
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
G_TYPE_NONE, 1, NM_TYPE_SETTINGS_CONNECTION);
|
|
|
|
signals[CONNECTION_FLAGS_CHANGED] =
|
|
g_signal_new (NM_SETTINGS_SIGNAL_CONNECTION_FLAGS_CHANGED,
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
G_SIGNAL_RUN_FIRST,
|
|
0, NULL, NULL,
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
G_TYPE_NONE, 1, NM_TYPE_SETTINGS_CONNECTION);
|
|
}
|