summary refs log tree commit diff
path: root/src/nm-policy-hostname.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nm-policy-hostname.c')
-rw-r--r--src/nm-policy-hostname.c205
1 files changed, 205 insertions, 0 deletions
diff --git a/src/nm-policy-hostname.c b/src/nm-policy-hostname.c
new file mode 100644
index 00000000..a273a920
--- /dev/null
+++ b/src/nm-policy-hostname.c
@@ -0,0 +1,205 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
+/* NetworkManager -- Network link manager
+ *
+ * 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.
+ *
+ * Copyright (C) 2004 - 2010 Red Hat, Inc.
+ * Copyright (C) 2007 - 2008 Novell, Inc.
+ */
+
+#include <string.h>
+#include <unistd.h>
+#include <errno.h>
+#include <netdb.h>
+#include <ctype.h>
+
+#include <glib.h>
+
+#include "nm-logging.h"
+#include "nm-policy-hostname.h"
+#include "nm-policy-hosts.h"
+
+/************************************************************************/
+
+struct HostnameThread {
+	GThread *thread;
+
+	GMutex *lock;
+	gboolean dead;
+	int ret;
+
+	guint32 ip4_addr;
+	char hostname[NI_MAXHOST + 1];
+
+	HostnameThreadCallback callback;
+	gpointer user_data;
+};
+
+static gboolean
+hostname_thread_run_cb (gpointer user_data)
+{
+	HostnameThread *ht = (HostnameThread *) user_data;
+	const char *hostname = NULL;
+
+	if (strlen (ht->hostname))
+		hostname = ht->hostname;
+
+	(*ht->callback) (ht, ht->ret, hostname, ht->user_data);
+	return FALSE;
+}
+
+static gpointer
+hostname_thread_worker (gpointer data)
+{
+	HostnameThread *ht = (HostnameThread *) data;
+	struct sockaddr_in addr;
+	int i;
+
+	g_mutex_lock (ht->lock);
+	if (ht->dead) {
+		g_mutex_unlock (ht->lock);
+		return (gpointer) NULL;
+	}
+	g_mutex_unlock (ht->lock);
+
+	addr.sin_family = AF_INET;
+	addr.sin_addr.s_addr = ht->ip4_addr;
+
+	ht->ret = getnameinfo ((struct sockaddr *) &addr, sizeof (struct sockaddr_in),
+	                       ht->hostname, NI_MAXHOST, NULL, 0,
+	                       NI_NAMEREQD);
+	if (ht->ret == 0) {
+		for (i = 0; i < strlen (ht->hostname); i++)
+			ht->hostname[i] = tolower (ht->hostname[i]);
+	}
+
+	/* Don't track the idle handler ID because by the time the g_idle_add()
+	 * returns the ID, the handler may already have run and freed the
+	 * HostnameThread.
+	 */
+	g_idle_add (hostname_thread_run_cb, ht);
+	return (gpointer) TRUE;
+}
+
+void
+hostname_thread_free (HostnameThread *ht)
+{
+	g_return_if_fail (ht != NULL);
+
+	g_mutex_free (ht->lock);
+	memset (ht, 0, sizeof (HostnameThread));
+	g_free (ht);
+}
+
+HostnameThread *
+hostname_thread_new (guint32 ip4_addr, HostnameThreadCallback callback, gpointer user_data)
+{
+	HostnameThread *ht;
+
+	ht = g_malloc0 (sizeof (HostnameThread));
+	g_assert (ht);
+
+	ht->lock = g_mutex_new ();
+	ht->callback = callback;
+	ht->user_data = user_data;
+	ht->ip4_addr = ip4_addr;
+
+	ht->thread = g_thread_create (hostname_thread_worker, ht, FALSE, NULL);
+	if (!ht->thread) {
+		hostname_thread_free (ht);
+		ht = NULL;
+	}
+
+	return ht;
+}
+
+void
+hostname_thread_kill (HostnameThread *ht)
+{
+	g_return_if_fail (ht != NULL);
+
+	g_mutex_lock (ht->lock);
+	ht->dead = TRUE;
+	g_mutex_unlock (ht->lock);
+}
+
+gboolean
+hostname_thread_is_dead (HostnameThread *ht)
+{
+	g_return_val_if_fail (ht != NULL, TRUE);
+
+	return ht->dead;
+}
+
+/************************************************************************/
+
+#define FALLBACK_HOSTNAME "localhost.localdomain"
+
+gboolean
+nm_policy_set_system_hostname (const char *new_hostname, const char *msg)
+{
+	char old_hostname[HOST_NAME_MAX + 1];
+	int ret = 0;
+	const char *name;
+	gboolean set_hostname = TRUE, changed = FALSE;
+
+	if (new_hostname)
+		g_warn_if_fail (strlen (new_hostname));
+
+	name = (new_hostname && strlen (new_hostname)) ? new_hostname : FALLBACK_HOSTNAME;
+
+	old_hostname[HOST_NAME_MAX] = '\0';
+	errno = 0;
+	ret = gethostname (old_hostname, HOST_NAME_MAX);
+	if (ret != 0) {
+		nm_log_warn (LOGD_DNS, "couldn't get the system hostname: (%d) %s",
+		             errno, strerror (errno));
+	} else {
+		/* Don't set the hostname if it isn't actually changing */
+		if (   (new_hostname && !strcmp (old_hostname, new_hostname))
+		    || (!new_hostname && !strcmp (old_hostname, FALLBACK_HOSTNAME)))
+			set_hostname = FALSE;
+	}
+
+	if (set_hostname) {
+		nm_log_info (LOGD_DNS, "Setting system hostname to '%s' (%s)", name, msg);
+		ret = sethostname (name, strlen (name));
+		if (ret != 0) {
+			nm_log_warn (LOGD_DNS, "couldn't set the system hostname to '%s': (%d) %s",
+			             name, errno, strerror (errno));
+			return FALSE;
+		}
+	}
+
+	/* But even if the hostname isn't changing, always try updating /etc/hosts
+	 * just in case the hostname changed while NM wasn't running; we need to
+	 * make sure that /etc/hosts has valid mappings for '127.0.0.1' and the
+	 * current system hostname.  If those exist,
+	 * nm_policy_hosts_update_etc_hosts() will just return and won't touch
+	 * /etc/hosts at all.
+	 */
+	if (!nm_policy_hosts_update_etc_hosts (name, FALLBACK_HOSTNAME, &changed)) {
+		/* error updating /etc/hosts; fallback to localhost.localdomain */
+		nm_log_info (LOGD_DNS, "Setting system hostname to '" FALLBACK_HOSTNAME "' (error updating /etc/hosts)");
+		ret = sethostname (FALLBACK_HOSTNAME, strlen (FALLBACK_HOSTNAME));
+		if (ret != 0) {
+			nm_log_warn (LOGD_DNS, "couldn't set the fallback system hostname (%s): (%d) %s",
+			             FALLBACK_HOSTNAME, errno, strerror (errno));
+		}
+	}
+
+	return changed;
+}
+