2008-08-12 18:39:03 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
2008-11-03 04:45:50 +00:00
|
|
|
/* NetworkManager system settings service
|
2007-11-26 03:47:30 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2008-06-26 18:31:52 +00:00
|
|
|
* 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.
|
2007-11-26 03:47:30 +00:00
|
|
|
*
|
2011-01-26 11:38:12 -06:00
|
|
|
* Copyright (C) 2007 - 2011 Red Hat, Inc.
|
2008-11-03 04:45:50 +00:00
|
|
|
* Copyright (C) 2008 Novell, Inc.
|
2007-11-26 03:47:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "nm-system-config-interface.h"
|
|
|
|
|
|
|
|
|
|
static void
|
2007-11-29 14:40:24 +00:00
|
|
|
interface_init (gpointer g_iface)
|
2007-11-26 03:47:30 +00:00
|
|
|
{
|
|
|
|
|
GType iface_type = G_TYPE_FROM_INTERFACE (g_iface);
|
|
|
|
|
static gboolean initialized = FALSE;
|
|
|
|
|
|
|
|
|
|
if (initialized)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Properties */
|
|
|
|
|
g_object_interface_install_property
|
|
|
|
|
(g_iface,
|
|
|
|
|
g_param_spec_string (NM_SYSTEM_CONFIG_INTERFACE_NAME,
|
|
|
|
|
"Name",
|
|
|
|
|
"Plugin name",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
|
|
g_object_interface_install_property
|
|
|
|
|
(g_iface,
|
|
|
|
|
g_param_spec_string (NM_SYSTEM_CONFIG_INTERFACE_INFO,
|
|
|
|
|
"Info",
|
|
|
|
|
"Plugin information",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
2008-09-18 Dan Williams <dcbw@redhat.com>
Implement support for honoring configured and automatic hostnames, and for
setting the configured hostname.
* introspection/nm-ip4-config.xml
src/nm-ip4-config.c
src/nm-ip4-config.h
src/dhcp-manager/nm-dhcp-manager.c
- Remove useless hostname property; it's not really part of the IPv4
config
* introspection/nm-settings-system.xml
libnm-glib/nm-dbus-settings-system.c
libnm-glib/nm-dbus-settings-system.h
- Add SetHostname() call to system settings D-Bus interface
- Add Hostname property to system settings D-Bus interface
- (nm_dbus_settings_system_save_hostname,
nm_dbus_settings_system_get_hostname): implement
* src/nm-device.c
src/nm-device.h
- (nm_device_get_dhcp4_config): implement
* src/nm-manager.c
src/nm-manager.h
- Fetch and track system settings service hostname changes, and proxy
the changes via a GObject property of the manager
* system-settings/src/nm-system-config-interface.c
system-settings/src/nm-system-config-interface.h
- Replace nm_system_config_interface_supports_add() with a capabilities
bitfield
* system-settings/src/nm-system-config-error.c
system-settings/src/nm-system-config-error.h
- Add additional errors
* system-settings/src/dbus-settings.c
system-settings/src/dbus-settings.h
- (get_property, nm_sysconfig_settings_class_init): add hostname
property; first plugin returning a hostname wins
- (impl_settings_add_connection): use plugin capabilities instead of
nm_system_config_interface_supports_add()
- (impl_settings_save_hostname): implement hostname saving
* src/NetworkManagerPolicy.c
- (lookup_thread_run_cb, lookup_thread_worker, lookup_thread_new,
lookup_thread_die): implement an asynchronous hostname lookup thread
which given an IPv4 address tries to look up the hostname for that
address with reverse DNS
- (get_best_device): split out best device code from
update_routing_and_dns()
- (update_etc_hosts): update /etc/hosts with the machine's new hostname
to preserve the 127.0.0.1 reverse mapping that so many things require
- (set_system_hostname): set a given hostname
- (update_system_hostname): implement hostname policy; a configured
hostname (from the system settings service) is used if available,
otherwise an automatically determined hostname from DHCP, VPN, etc.
If there was no automatically determined hostname, reverse DNS of
the best device's IP address will be used, and as a last resort the
hostname 'localhost.localdomain' is set.
- (update_routing_and_dns): use get_best_device(); update the system
hostname when the network config changes
- (hostname_changed): update system hostname if the system settings
service signals a hostname change
- (nm_policy_new): list for system settings service hostname changes
- (nm_policy_destroy): ensure that an in-progress hostname lookup thread
gets told to die
* system-settings/plugins/keyfile/plugin.c
system-settings/plugins/ifcfg-suse/plugin.c
- (get_property, sc_plugin_ifcfg_class_init): implement hostname and
capabilities properties
* system-settings/plugins/ifcfg-fedora/shvar.c
- (svOpenFile): re-enable R/W access of ifcfg files since the plugin
writes out /etc/sysconfig/network now
* system-settings/plugins/ifcfg-fedora/plugin.c
- (plugin_get_hostname): get hostname from /etc/sysconfig/network
- (plugin_set_hostname): save hostname to /etc/sysconfig/network
- (sc_network_changed_cb): handle changes to /etc/sysconfig/network
- (sc_plugin_ifcfg_init): monitor /etc/sysconfig/network for changes
- (get_property, set_property, sc_plugin_ifcfg_class_init): implement
hostname get/set and capabilities get
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4077 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2008-09-18 15:16:44 +00:00
|
|
|
g_object_interface_install_property
|
|
|
|
|
(g_iface,
|
|
|
|
|
g_param_spec_uint (NM_SYSTEM_CONFIG_INTERFACE_CAPABILITIES,
|
|
|
|
|
"Capabilities",
|
|
|
|
|
"Plugin capabilties",
|
|
|
|
|
NM_SYSTEM_CONFIG_INTERFACE_CAP_NONE,
|
2011-01-31 21:11:18 -06:00
|
|
|
( NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_CONNECTIONS
|
|
|
|
|
| NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_HOSTNAME),
|
2008-09-18 Dan Williams <dcbw@redhat.com>
Implement support for honoring configured and automatic hostnames, and for
setting the configured hostname.
* introspection/nm-ip4-config.xml
src/nm-ip4-config.c
src/nm-ip4-config.h
src/dhcp-manager/nm-dhcp-manager.c
- Remove useless hostname property; it's not really part of the IPv4
config
* introspection/nm-settings-system.xml
libnm-glib/nm-dbus-settings-system.c
libnm-glib/nm-dbus-settings-system.h
- Add SetHostname() call to system settings D-Bus interface
- Add Hostname property to system settings D-Bus interface
- (nm_dbus_settings_system_save_hostname,
nm_dbus_settings_system_get_hostname): implement
* src/nm-device.c
src/nm-device.h
- (nm_device_get_dhcp4_config): implement
* src/nm-manager.c
src/nm-manager.h
- Fetch and track system settings service hostname changes, and proxy
the changes via a GObject property of the manager
* system-settings/src/nm-system-config-interface.c
system-settings/src/nm-system-config-interface.h
- Replace nm_system_config_interface_supports_add() with a capabilities
bitfield
* system-settings/src/nm-system-config-error.c
system-settings/src/nm-system-config-error.h
- Add additional errors
* system-settings/src/dbus-settings.c
system-settings/src/dbus-settings.h
- (get_property, nm_sysconfig_settings_class_init): add hostname
property; first plugin returning a hostname wins
- (impl_settings_add_connection): use plugin capabilities instead of
nm_system_config_interface_supports_add()
- (impl_settings_save_hostname): implement hostname saving
* src/NetworkManagerPolicy.c
- (lookup_thread_run_cb, lookup_thread_worker, lookup_thread_new,
lookup_thread_die): implement an asynchronous hostname lookup thread
which given an IPv4 address tries to look up the hostname for that
address with reverse DNS
- (get_best_device): split out best device code from
update_routing_and_dns()
- (update_etc_hosts): update /etc/hosts with the machine's new hostname
to preserve the 127.0.0.1 reverse mapping that so many things require
- (set_system_hostname): set a given hostname
- (update_system_hostname): implement hostname policy; a configured
hostname (from the system settings service) is used if available,
otherwise an automatically determined hostname from DHCP, VPN, etc.
If there was no automatically determined hostname, reverse DNS of
the best device's IP address will be used, and as a last resort the
hostname 'localhost.localdomain' is set.
- (update_routing_and_dns): use get_best_device(); update the system
hostname when the network config changes
- (hostname_changed): update system hostname if the system settings
service signals a hostname change
- (nm_policy_new): list for system settings service hostname changes
- (nm_policy_destroy): ensure that an in-progress hostname lookup thread
gets told to die
* system-settings/plugins/keyfile/plugin.c
system-settings/plugins/ifcfg-suse/plugin.c
- (get_property, sc_plugin_ifcfg_class_init): implement hostname and
capabilities properties
* system-settings/plugins/ifcfg-fedora/shvar.c
- (svOpenFile): re-enable R/W access of ifcfg files since the plugin
writes out /etc/sysconfig/network now
* system-settings/plugins/ifcfg-fedora/plugin.c
- (plugin_get_hostname): get hostname from /etc/sysconfig/network
- (plugin_set_hostname): save hostname to /etc/sysconfig/network
- (sc_network_changed_cb): handle changes to /etc/sysconfig/network
- (sc_plugin_ifcfg_init): monitor /etc/sysconfig/network for changes
- (get_property, set_property, sc_plugin_ifcfg_class_init): implement
hostname get/set and capabilities get
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4077 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2008-09-18 15:16:44 +00:00
|
|
|
NM_SYSTEM_CONFIG_INTERFACE_CAP_NONE,
|
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
|
|
g_object_interface_install_property
|
|
|
|
|
(g_iface,
|
|
|
|
|
g_param_spec_string (NM_SYSTEM_CONFIG_INTERFACE_HOSTNAME,
|
|
|
|
|
"Hostname",
|
|
|
|
|
"Configured hostname",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
|
2007-11-26 03:47:30 +00:00
|
|
|
/* Signals */
|
2009-07-23 09:20:52 -04:00
|
|
|
g_signal_new (NM_SYSTEM_CONFIG_INTERFACE_CONNECTION_ADDED,
|
2007-11-26 03:47:30 +00:00
|
|
|
iface_type,
|
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
|
G_STRUCT_OFFSET (NMSystemConfigInterface, connection_added),
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
|
|
|
G_TYPE_NONE, 1,
|
2011-01-26 11:38:12 -06:00
|
|
|
NM_TYPE_SETTINGS_CONNECTION);
|
2007-11-26 03:47:30 +00:00
|
|
|
|
2009-07-23 09:20:52 -04:00
|
|
|
g_signal_new (NM_SYSTEM_CONFIG_INTERFACE_UNMANAGED_SPECS_CHANGED,
|
2008-04-08 01:36:39 +00:00
|
|
|
iface_type,
|
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
2009-07-23 09:20:52 -04:00
|
|
|
G_STRUCT_OFFSET (NMSystemConfigInterface, unmanaged_specs_changed),
|
2008-04-08 01:36:39 +00:00
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
|
2007-11-26 03:47:30 +00:00
|
|
|
initialized = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GType
|
|
|
|
|
nm_system_config_interface_get_type (void)
|
|
|
|
|
{
|
|
|
|
|
static GType system_config_interface_type = 0;
|
|
|
|
|
|
|
|
|
|
if (!system_config_interface_type) {
|
|
|
|
|
const GTypeInfo system_config_interface_info = {
|
|
|
|
|
sizeof (NMSystemConfigInterface), /* class_size */
|
2007-11-29 14:40:24 +00:00
|
|
|
interface_init, /* base_init */
|
2007-11-26 03:47:30 +00:00
|
|
|
NULL, /* base_finalize */
|
|
|
|
|
NULL,
|
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
|
NULL, /* class_data */
|
|
|
|
|
0,
|
|
|
|
|
0, /* n_preallocs */
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
system_config_interface_type = g_type_register_static (G_TYPE_INTERFACE,
|
|
|
|
|
"NMSystemConfigInterface",
|
|
|
|
|
&system_config_interface_info,
|
|
|
|
|
0);
|
|
|
|
|
|
|
|
|
|
g_type_interface_add_prerequisite (system_config_interface_type, G_TYPE_OBJECT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return system_config_interface_type;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-29 14:40:24 +00:00
|
|
|
void
|
2008-04-08 01:36:39 +00:00
|
|
|
nm_system_config_interface_init (NMSystemConfigInterface *config,
|
2009-06-11 00:39:12 -04:00
|
|
|
gpointer unused)
|
2007-11-29 14:40:24 +00:00
|
|
|
{
|
|
|
|
|
g_return_if_fail (config != NULL);
|
|
|
|
|
|
|
|
|
|
if (NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->init)
|
2009-06-11 00:39:12 -04:00
|
|
|
NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->init (config);
|
2007-11-29 14:40:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GSList *
|
|
|
|
|
nm_system_config_interface_get_connections (NMSystemConfigInterface *config)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (config != NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->get_connections)
|
|
|
|
|
return NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->get_connections (config);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 01:36:39 +00:00
|
|
|
GSList *
|
2009-06-11 00:39:12 -04:00
|
|
|
nm_system_config_interface_get_unmanaged_specs (NMSystemConfigInterface *config)
|
2008-04-08 01:36:39 +00:00
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (config != NULL, NULL);
|
|
|
|
|
|
2009-06-11 00:39:12 -04:00
|
|
|
if (NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->get_unmanaged_specs)
|
|
|
|
|
return NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->get_unmanaged_specs (config);
|
2008-04-08 01:36:39 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-26 11:38:12 -06:00
|
|
|
NMSettingsConnection *
|
2008-04-22 14:48:02 +00:00
|
|
|
nm_system_config_interface_add_connection (NMSystemConfigInterface *config,
|
2008-08-12 18:39:03 +00:00
|
|
|
NMConnection *connection,
|
|
|
|
|
GError **error)
|
2008-04-22 14:48:02 +00:00
|
|
|
{
|
2011-03-14 01:05:51 -05:00
|
|
|
g_return_val_if_fail (config != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (NM_IS_CONNECTION (connection), NULL);
|
2008-04-22 14:48:02 +00:00
|
|
|
|
|
|
|
|
if (NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->add_connection)
|
2010-10-29 14:34:33 -05:00
|
|
|
return NM_SYSTEM_CONFIG_INTERFACE_GET_INTERFACE (config)->add_connection (config, connection, error);
|
2008-07-16 07:37:10 +00:00
|
|
|
|
2010-10-29 14:34:33 -05:00
|
|
|
return NULL;
|
2008-04-22 14:48:02 +00:00
|
|
|
}
|