about summary refs log tree commit diff
path: root/dispatcher
diff options
context:
space:
mode:
Diffstat (limited to 'dispatcher')
-rw-r--r--dispatcher/meson.build71
-rw-r--r--dispatcher/nm-dispatcher-utils.c677
-rw-r--r--dispatcher/nm-dispatcher.c14
-rw-r--r--dispatcher/tests/meson.build25
-rw-r--r--dispatcher/tests/test-dispatcher-envp.c56
5 files changed, 490 insertions, 353 deletions
diff --git a/dispatcher/meson.build b/dispatcher/meson.build
new file mode 100644
index 00000000..5859a6ed
--- /dev/null
+++ b/dispatcher/meson.build
@@ -0,0 +1,71 @@
+dispatcher_inc = include_directories('.')
+
+name = 'nm-dispatcher'
+
+service_conf = configuration_data()
+service_conf.set('sbindir', nm_sbindir)
+service_conf.set('sysconfdir', nm_sysconfdir)
+service_conf.set('localstatedir', nm_localstatedir)
+service_conf.set('libexecdir', nm_libexecdir)
+
+service = 'org.freedesktop.nm_dispatcher.service'
+
+configure_file(
+  input: service + '.in',
+  output: service,
+  install: true,
+  install_dir: dbus_sys_dir,
+  configuration: service_conf
+)
+
+install_data(
+  'nm-dispatcher.conf',
+  install_dir: dbus_conf_dir
+)
+
+sources = files('nm-dispatcher-utils.c')
+
+deps = [
+  libnm_dep,
+  nm_core_dep
+]
+
+cflags = [
+  '-DLIBEXECDIR="@0@"'.format(nm_libexecdir),
+  '-DSYSCONFDIR="@0@"'.format(nm_sysconfdir),
+  '-DNMCONFDIR="@0@"'.format(nm_pkgconfdir),
+  '-DG_LOG_DOMAIN="@0@"'.format(name),
+  '-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
+]
+
+libnm_dispatcher_core = static_library(
+  name + '-core',
+  sources: sources,
+  dependencies: deps,
+  c_args: cflags
+)
+
+sources = files('nm-dispatcher.c')
+
+sources += gnome.gdbus_codegen(
+  'nmdbus-dispatcher',
+  name + '.xml',
+  interface_prefix: 'org.freedesktop',
+  namespace: 'NMDBus'
+)
+
+executable(
+  name,
+  sources,
+  dependencies: deps,
+  c_args: cflags,
+  link_with: libnm_dispatcher_core,
+  link_args: ldflags_linker_script_binary,
+  link_depends: linker_script_binary,
+  install: true,
+  install_dir: nm_libexecdir
+)
+
+if enable_tests
+  subdir('tests')
+endif
diff --git a/dispatcher/nm-dispatcher-utils.c b/dispatcher/nm-dispatcher-utils.c
index 64a4b9ef..362f3126 100644
--- a/dispatcher/nm-dispatcher-utils.c
+++ b/dispatcher/nm-dispatcher-utils.c
@@ -33,331 +33,386 @@
 
 #include "nm-dispatcher-utils.h"
 
-static GSList *
-construct_basic_items (GSList *list,
-                       const char *uuid,
-                       const char *id,
-                       const char *iface,
-                       const char *ip_iface)
+/*****************************************************************************/
+
+static gboolean
+_is_valid_key (const char *line, gssize len)
 {
-	if (uuid)
-		list = g_slist_prepend (list, g_strdup_printf ("CONNECTION_UUID=%s", uuid));
-	if (id)
-		list = g_slist_prepend (list, g_strdup_printf ("CONNECTION_ID=%s", id));
-	if (iface)
-		list = g_slist_prepend (list, g_strdup_printf ("DEVICE_IFACE=%s", iface));
-	if (ip_iface)
-		list = g_slist_prepend (list, g_strdup_printf ("DEVICE_IP_IFACE=%s", ip_iface));
-	return list;
-}
+	gsize i, l;
+	char ch;
 
-static GSList *_list_append_val_strv (GSList *items, char **values, const char *format, ...) G_GNUC_PRINTF(3, 4);
+	if (!line)
+		return FALSE;
 
-static GSList *
-_list_append_val_strv (GSList *items, char **values, const char *format, ...)
-{
-	if (!values)
-		g_return_val_if_reached (items);
+	if (len < 0)
+		len = strlen (line);
 
-	/*  Only add an item if the list of @values is not empty */
-	if (values[0]) {
-		va_list args;
-		guint i;
-		GString *str = g_string_new (NULL);
+	if (len == 0)
+		return FALSE;
 
-		va_start (args, format);
-		g_string_append_vprintf (str, format, args);
-		va_end (args);
+	ch = line[0];
+	if (   !(ch >= 'A' && ch <= 'Z')
+	    && !NM_IN_SET (ch, '_'))
+		return FALSE;
 
-		g_string_append (str, values[0]);
-		for (i = 1; values[i]; i++) {
-			g_string_append_c (str, ' ');
-			g_string_append (str, values[i]);
-		}
-		items = g_slist_prepend (items, g_string_free (str, FALSE));
+	l = (gsize) len;
+
+	for (i = 1; i < l; i++) {
+		ch = line[i];
+
+		if (   !(ch >= 'A' && ch <= 'Z')
+		    && !(ch >= '0' && ch <= '9')
+		    && !NM_IN_SET (ch, '_'))
+			return FALSE;
 	}
 
-	/* we take ownership of the values array and free it. */
-	g_strfreev (values);
-	return items;
+	return TRUE;
 }
 
-static GSList *
-add_domains (GSList *items,
-             GVariant *dict,
-             const char *prefix,
-             const char four_or_six)
+static gboolean
+_is_valid_line (const char *line)
 {
-	GVariant *val;
+	const char *d;
 
-	/* Search domains */
-	val = g_variant_lookup_value (dict, "domains", G_VARIANT_TYPE_STRING_ARRAY);
-	if (val) {
-		items = _list_append_val_strv (items, g_variant_dup_strv (val, NULL),
-		                               "%sIP%c_DOMAINS=", prefix, four_or_six);
-		g_variant_unref (val);
-	}
-	return items;
+	if (!line)
+		return FALSE;
+
+	d = strchr (line, '=');
+	if (!d || d == line)
+		return FALSE;
+
+	return _is_valid_key (line, d - line);
 }
 
-static GSList *
-construct_proxy_items (GSList *items, GVariant *proxy_config, const char *prefix)
+static char *
+_sanitize_var_name (const char *key)
 {
-	GVariant *val;
+	char *sanitized;
 
-	if (proxy_config == NULL)
-		return items;
+	nm_assert (key);
 
-	if (prefix == NULL)
-		prefix = "";
+	if (!key[0])
+		return NULL;
 
-	/* PAC Url */
-	val = g_variant_lookup_value (proxy_config, "pac-url", G_VARIANT_TYPE_STRING);
-	if (val) {
-		char *str;
+	sanitized = g_ascii_strup (key, -1);
+	if (!NM_STRCHAR_ALL (sanitized, ch,    (ch >= 'A' && ch <= 'Z')
+	                                    || (ch >= '0' && ch <= '9')
+	                                    || NM_IN_SET (ch, '_'))) {
+		g_free (sanitized);
+		return NULL;
+	}
 
-		str = g_strdup_printf ("%sPROXY_PAC_URL=%s",
-		                       prefix,
-		                       g_variant_get_string (val, NULL));
+	nm_assert (_is_valid_key (sanitized, -1));
+	return sanitized;
+}
 
-		items = g_slist_prepend (items, str);
-		g_variant_unref (val);
-	}
+static void
+_items_add_str_take (GPtrArray *items, char *line)
+{
+	nm_assert (items);
+	nm_assert (_is_valid_line (line));
 
-	/* PAC Script */
-	val = g_variant_lookup_value (proxy_config, "pac-script", G_VARIANT_TYPE_STRING);
-	if (val) {
-		char *str;
+	g_ptr_array_add (items, line);
+}
 
-		str = g_strdup_printf ("%sPROXY_PAC_SCRIPT=%s",
-		                       prefix,
-		                       g_variant_get_string (val, NULL));
+static void
+_items_add_str (GPtrArray *items, const char *line)
+{
+	_items_add_str_take (items, g_strdup (line));
+}
 
-		items = g_slist_prepend (items, str);
-		g_variant_unref (val);
+static void
+_items_add_key (GPtrArray *items, const char *prefix, const char *key, const char *value)
+{
+	nm_assert (items);
+	nm_assert (_is_valid_key (key, -1));
+	nm_assert (value);
+
+	_items_add_str_take (items, g_strconcat (prefix ?: "", key, "=", value, NULL));
+}
+
+static void
+_items_add_key0 (GPtrArray *items, const char *prefix, const char *key, const char *value)
+{
+	nm_assert (items);
+	nm_assert (_is_valid_key (key, -1));
+
+	if (!value) {
+		/* for convenience, allow NULL values to indicate to skip the line. */
+		return;
 	}
 
-	return items;
+	_items_add_str_take (items, g_strconcat (prefix ?: "", key, "=", value, NULL));
 }
 
-static GSList *
-construct_ip4_items (GSList *items, GVariant *ip4_config, const char *prefix)
+G_GNUC_PRINTF (2, 3)
+static void
+_items_add_printf (GPtrArray *items, const char *fmt, ...)
 {
-	GPtrArray *addresses, *routes;
-	char *gateway;
-	GVariant *val;
-	int i;
+	va_list ap;
+	char *line;
 
-	if (ip4_config == NULL)
-		return items;
+	nm_assert (items);
+	nm_assert (fmt);
 
-	if (prefix == NULL)
-		prefix = "";
+	va_start (ap, fmt);
+	line = g_strdup_vprintf (fmt, ap);
+	va_end (ap);
+	_items_add_str_take (items, line);
+}
 
-	/* IP addresses */
-	val = g_variant_lookup_value (ip4_config, "addresses", G_VARIANT_TYPE ("aau"));
-	if (val) {
-		addresses = nm_utils_ip4_addresses_from_variant (val, &gateway);
-		if (!gateway)
-			gateway = g_strdup ("0.0.0.0");
-
-		for (i = 0; i < addresses->len; i++) {
-			NMIPAddress *addr = addresses->pdata[i];
-			char *addrtmp;
-
-			addrtmp = g_strdup_printf ("%sIP4_ADDRESS_%d=%s/%d %s", prefix, i,
-			                           nm_ip_address_get_address (addr),
-			                           nm_ip_address_get_prefix (addr),
-			                           gateway);
-			items = g_slist_prepend (items, addrtmp);
-		}
-		if (addresses->len)
-			items = g_slist_prepend (items, g_strdup_printf ("%sIP4_NUM_ADDRESSES=%d", prefix, addresses->len));
+static void
+_items_add_strv (GPtrArray *items, const char *prefix, const char *key, const char *const*values)
+{
+	gboolean has;
+	guint i;
+	GString *str;
 
-		/* Write gateway to a separate variable, too. */
-		items = g_slist_prepend (items, g_strdup_printf ("%sIP4_GATEWAY=%s", prefix, gateway));
+	nm_assert (items);
+	nm_assert (_is_valid_key (key, -1));
 
-		g_ptr_array_unref (addresses);
-		g_free (gateway);
-		g_variant_unref (val);
+	if (!values || !values[0]) {
+		/* Only add an item if the list of @values is not empty */
+		return;
 	}
 
-	/* DNS servers */
-	val = g_variant_lookup_value (ip4_config, "nameservers", G_VARIANT_TYPE ("au"));
-	if (val) {
-		items = _list_append_val_strv (items, nm_utils_ip4_dns_from_variant (val),
-		                               "%sIP4_NAMESERVERS=", prefix);
-		g_variant_unref (val);
-	}
+	str = g_string_new (NULL);
 
-	/* Search domains */
-	items = add_domains (items, ip4_config, prefix, '4');
+	if (prefix)
+		g_string_append (str, prefix);
+	g_string_append (str, key);
+	g_string_append_c (str, '=');
 
-	/* WINS servers */
-	val = g_variant_lookup_value (ip4_config, "wins-servers", G_VARIANT_TYPE ("au"));
-	if (val) {
-		items = _list_append_val_strv (items, nm_utils_ip4_dns_from_variant (val),
-		                               "%sIP4_WINS_SERVERS=", prefix);
-		g_variant_unref (val);
+	has = FALSE;
+	for (i = 0; values[i]; i++) {
+		if (!values[i][0])
+			continue;
+		if (has)
+			g_string_append_c (str, ' ');
+		else
+			has = TRUE;
+		g_string_append (str, values[i]);
 	}
 
-	/* Static routes */
-	val = g_variant_lookup_value (ip4_config, "routes", G_VARIANT_TYPE ("aau"));
-	if (val) {
-		routes = nm_utils_ip4_routes_from_variant (val);
-
-		for (i = 0; i < routes->len; i++) {
-			NMIPRoute *route = routes->pdata[i];
-			const char *next_hop;
-			char *routetmp;
-
-			next_hop = nm_ip_route_get_next_hop (route);
-			if (!next_hop)
-				next_hop = "0.0.0.0";
-
-			routetmp = g_strdup_printf ("%sIP4_ROUTE_%d=%s/%d %s %u", prefix, i,
-			                            nm_ip_route_get_dest (route),
-			                            nm_ip_route_get_prefix (route),
-			                            next_hop,
-			                            (guint32) MAX (0, nm_ip_route_get_metric (route)));
-			items = g_slist_prepend (items, routetmp);
-		}
-		items = g_slist_prepend (items, g_strdup_printf ("%sIP4_NUM_ROUTES=%d", prefix, routes->len));
-		g_ptr_array_unref (routes);
-		g_variant_unref (val);
-	} else
-		items = g_slist_prepend (items, g_strdup_printf ("%sIP4_NUM_ROUTES=0", prefix));
-
-	return items;
+	_items_add_str_take (items, g_string_free (str, FALSE));
 }
 
-static GSList *
-construct_device_dhcp4_items (GSList *items, GVariant *dhcp4_config)
+/*****************************************************************************/
+
+static void
+construct_proxy_items (GPtrArray *items, GVariant *proxy_config, const char *prefix)
 {
-	GVariantIter iter;
-	const char *key, *tmp;
-	GVariant *val;
-	char *ucased;
+	GVariant *variant;
 
-	if (dhcp4_config == NULL)
-		return items;
+	nm_assert (items);
 
-	g_variant_iter_init (&iter, dhcp4_config);
-	while (g_variant_iter_next (&iter, "{&sv}", &key, &val)) {
-		ucased = g_ascii_strup (key, -1);
-		tmp = g_variant_get_string (val, NULL);
-		items = g_slist_prepend (items, g_strdup_printf ("DHCP4_%s=%s", ucased, tmp));
-		g_free (ucased);
-		g_variant_unref (val);
+	if (!proxy_config)
+		return;
+
+	variant = g_variant_lookup_value (proxy_config, "pac-url", G_VARIANT_TYPE_STRING);
+	if (variant) {
+		_items_add_key (items, prefix, "PROXY_PAC_URL",
+		                g_variant_get_string (variant, NULL));
+		g_variant_unref (variant);
+	}
+
+	variant = g_variant_lookup_value (proxy_config, "pac-script", G_VARIANT_TYPE_STRING);
+	if (variant) {
+		_items_add_key (items, prefix, "PROXY_PAC_SCRIPT",
+		                g_variant_get_string (variant, NULL));
+		g_variant_unref (variant);
 	}
-	return items;
 }
 
-static GSList *
-construct_ip6_items (GSList *items, GVariant *ip6_config, const char *prefix)
+static void
+construct_ip_items (GPtrArray *items, int addr_family, GVariant *ip_config, const char *prefix)
 {
-	GPtrArray *addresses, *routes;
-	char *gateway = NULL;
 	GVariant *val;
-	int i;
+	guint i;
+	guint nroutes = 0;
+	char four_or_six;
 
-	if (ip6_config == NULL)
-		return items;
+	if (!ip_config)
+		return;
 
-	if (prefix == NULL)
+	if (!prefix)
 		prefix = "";
 
-	/* IP addresses */
-	val = g_variant_lookup_value (ip6_config, "addresses", G_VARIANT_TYPE ("a(ayuay)"));
+	four_or_six = nm_utils_addr_family_to_char (addr_family);
+
+	val = g_variant_lookup_value (ip_config,
+	                              "addresses",
+	                                addr_family == AF_INET
+	                              ? G_VARIANT_TYPE ("aau")
+	                              : G_VARIANT_TYPE ("a(ayuay)"));
 	if (val) {
-		addresses = nm_utils_ip6_addresses_from_variant (val, &gateway);
-		if (!gateway)
-			gateway = g_strdup ("::");
-
-		for (i = 0; i < addresses->len; i++) {
-			NMIPAddress *addr = addresses->pdata[i];
-			char *addrtmp;
-
-			addrtmp = g_strdup_printf ("%sIP6_ADDRESS_%d=%s/%d %s", prefix, i,
-			                           nm_ip_address_get_address (addr),
-			                           nm_ip_address_get_prefix (addr),
-			                           gateway);
-			items = g_slist_prepend (items, addrtmp);
+		gs_unref_ptrarray GPtrArray *addresses = NULL;
+		gs_free char *gateway_free = NULL;
+		const char *gateway;
+
+		if (addr_family == AF_INET)
+			addresses = nm_utils_ip4_addresses_from_variant (val, &gateway_free);
+		else
+			addresses = nm_utils_ip6_addresses_from_variant (val, &gateway_free);
+
+		gateway = gateway_free ?: "0.0.0.0";
+
+		if (addresses && addresses->len) {
+			for (i = 0; i < addresses->len; i++) {
+				NMIPAddress *addr = addresses->pdata[i];
+
+				_items_add_printf (items,
+				                   "%sIP%c_ADDRESS_%d=%s/%d %s",
+				                   prefix,
+				                   four_or_six,
+				                   i,
+				                   nm_ip_address_get_address (addr),
+				                   nm_ip_address_get_prefix (addr),
+				                   gateway);
+			}
+
+			_items_add_printf (items,
+			                   "%sIP%c_NUM_ADDRESSES=%u",
+			                   prefix,
+			                   four_or_six,
+			                   addresses->len);
 		}
-		if (addresses->len)
-			items = g_slist_prepend (items, g_strdup_printf ("%sIP6_NUM_ADDRESSES=%d", prefix, addresses->len));
 
-		/* Write gateway to a separate variable, too. */
-		items = g_slist_prepend (items, g_strdup_printf ("%sIP6_GATEWAY=%s", prefix, gateway));
+		_items_add_key (items,
+		                prefix,
+		                  addr_family == AF_INET
+		                ? "IP4_GATEWAY"
+		                : "IP6_GATEWAY",
+		                gateway);
 
-		g_ptr_array_unref (addresses);
-		g_free (gateway);
 		g_variant_unref (val);
 	}
 
-	/* DNS servers */
-	val = g_variant_lookup_value (ip6_config, "nameservers", G_VARIANT_TYPE ("aay"));
+	val = g_variant_lookup_value (ip_config,
+	                              "nameservers",
+	                                addr_family == AF_INET
+	                              ? G_VARIANT_TYPE ("au")
+	                              : G_VARIANT_TYPE ("aay"));
 	if (val) {
-		items = _list_append_val_strv (items, nm_utils_ip6_dns_from_variant (val),
-		                               "%sIP6_NAMESERVERS=", prefix);
+		gs_strfreev char **v = NULL;
+
+		if (addr_family == AF_INET)
+			v = nm_utils_ip4_dns_from_variant (val);
+		else
+			v = nm_utils_ip6_dns_from_variant (val);
+		_items_add_strv (items,
+		                 prefix,
+		                   addr_family == AF_INET
+		                 ? "IP4_NAMESERVERS"
+		                 : "IP6_NAMESERVERS",
+		                 NM_CAST_STRV_CC (v));
 		g_variant_unref (val);
 	}
 
-	/* Search domains */
-	items = add_domains (items, ip6_config, prefix, '6');
+	val = g_variant_lookup_value (ip_config, "domains", G_VARIANT_TYPE_STRING_ARRAY);
+	if (val) {
+		gs_free const char **v = NULL;
+
+		v = g_variant_get_strv (val, NULL);
+		_items_add_strv (items, prefix,
+		                   addr_family == AF_INET
+		                 ? "IP4_DOMAINS"
+		                 : "IP6_DOMAINS",
+		                 v);
+		g_variant_unref (val);
+	}
+
+
+	if (addr_family == AF_INET) {
+		val = g_variant_lookup_value (ip_config, "wins-servers", G_VARIANT_TYPE ("au"));
+		if (val) {
+			gs_strfreev char **v = NULL;
+
+			v = nm_utils_ip4_dns_from_variant (val);
+			_items_add_strv (items, prefix, "IP4_WINS_SERVERS", NM_CAST_STRV_CC (v));
+			g_variant_unref (val);
+		}
+	}
 
-	/* Static routes */
-	val = g_variant_lookup_value (ip6_config, "routes", G_VARIANT_TYPE ("a(ayuayu)"));
+	val = g_variant_lookup_value (ip_config,
+	                              "routes",
+	                                addr_family == AF_INET
+	                              ? G_VARIANT_TYPE ("aau")
+	                              : G_VARIANT_TYPE ("a(ayuayu)"));
 	if (val) {
-		routes = nm_utils_ip6_routes_from_variant (val);
-
-		for (i = 0; i < routes->len; i++) {
-			NMIPRoute *route = routes->pdata[i];
-			const char *next_hop;
-			char *routetmp;
-
-			next_hop = nm_ip_route_get_next_hop (route);
-			if (!next_hop)
-				next_hop = "::";
-
-			routetmp = g_strdup_printf ("%sIP6_ROUTE_%d=%s/%d %s %u", prefix, i,
-			                            nm_ip_route_get_dest (route),
-			                            nm_ip_route_get_prefix (route),
-			                            next_hop,
-			                            (guint32) MAX (0, nm_ip_route_get_metric (route)));
-			items = g_slist_prepend (items, routetmp);
+		gs_unref_ptrarray GPtrArray *routes = NULL;
+
+		if (addr_family == AF_INET)
+			routes = nm_utils_ip4_routes_from_variant (val);
+		else
+			routes = nm_utils_ip6_routes_from_variant (val);
+
+		if (   routes
+		    && routes->len > 0) {
+			const char *const DEFAULT_GW = addr_family == AF_INET ? "0.0.0.0" : "::";
+
+			nroutes = routes->len;
+
+			for (i = 0; i < routes->len; i++) {
+				NMIPRoute *route = routes->pdata[i];
+
+				_items_add_printf (items,
+				                   "%sIP%c_ROUTE_%u=%s/%d %s %u",
+				                   prefix,
+				                   four_or_six,
+				                   i,
+				                   nm_ip_route_get_dest (route),
+				                   nm_ip_route_get_prefix (route),
+				                   nm_ip_route_get_next_hop (route) ?: DEFAULT_GW,
+				                   (guint) NM_MAX ((gint64) 0, nm_ip_route_get_metric (route)));
+			}
 		}
-		if (routes->len)
-			items = g_slist_prepend (items, g_strdup_printf ("%sIP6_NUM_ROUTES=%d", prefix, routes->len));
-		g_ptr_array_unref (routes);
+
 		g_variant_unref (val);
 	}
-
-	return items;
+	if (nroutes > 0 || addr_family == AF_INET) {
+		/* we also set IP4_NUM_ROUTES=0, but don't do so for addresses and IPv6 routes.
+		 * Historic reasons. */
+		_items_add_printf (items, "%sIP%c_NUM_ROUTES=%u", prefix, four_or_six, nroutes);
+	}
 }
 
-static GSList *
-construct_device_dhcp6_items (GSList *items, GVariant *dhcp6_config)
+static void
+construct_device_dhcp_items (GPtrArray *items, int addr_family, GVariant *dhcp_config)
 {
 	GVariantIter iter;
-	const char *key, *tmp;
+	const char *key;
 	GVariant *val;
-	char *ucased;
+	char four_or_six;
+
+	if (!dhcp_config)
+		return;
+
+	if (!g_variant_is_of_type (dhcp_config, G_VARIANT_TYPE_VARDICT))
+		return;
 
-	if (dhcp6_config == NULL)
-		return items;
+	four_or_six = nm_utils_addr_family_to_char (addr_family);
 
-	g_variant_iter_init (&iter, dhcp6_config);
+	g_variant_iter_init (&iter, dhcp_config);
 	while (g_variant_iter_next (&iter, "{&sv}", &key, &val)) {
-		ucased = g_ascii_strup (key, -1);
-		tmp = g_variant_get_string (val, NULL);
-		items = g_slist_prepend (items, g_strdup_printf ("DHCP6_%s=%s", ucased, tmp));
-		g_free (ucased);
+		if (g_variant_is_of_type (val, G_VARIANT_TYPE_STRING)) {
+			gs_free char *ucased = NULL;
+
+			ucased = _sanitize_var_name (key);
+			if (ucased) {
+				_items_add_printf (items,
+				                   "DHCP%c_%s=%s",
+				                   four_or_six,
+				                   ucased,
+				                   g_variant_get_string (val, NULL));
+			}
+		}
 		g_variant_unref (val);
 	}
-	return items;
 }
 
+/*****************************************************************************/
+
 char **
 nm_dispatcher_utils_construct_envp (const char *action,
                                     GVariant *connection_dict,
@@ -376,16 +431,16 @@ nm_dispatcher_utils_construct_envp (const char *action,
                                     char **out_iface,
                                     const char **out_error_message)
 {
-	const char *iface = NULL, *ip_iface = NULL;
-	const char *uuid = NULL, *id = NULL, *path = NULL;
+	const char *iface = NULL;
+	const char *ip_iface = NULL;
+	const char *uuid = NULL;
+	const char *id = NULL;
+	const char *path = NULL;
 	const char *filename = NULL;
 	gboolean external;
 	NMDeviceState dev_state = NM_DEVICE_STATE_UNKNOWN;
-	GVariant *value;
-	char **envp = NULL, *path_item;
-	GSList *items = NULL, *iter;
-	guint i;
-	GVariant *con_setting;
+	GVariant *variant;
+	gs_unref_ptrarray GPtrArray *items = NULL;
 	const char *error_message_backup;
 
 	if (!out_error_message)
@@ -395,33 +450,33 @@ nm_dispatcher_utils_construct_envp (const char *action,
 	g_return_val_if_fail (out_iface != NULL, NULL);
 	g_return_val_if_fail (*out_iface == NULL, NULL);
 
+	items = g_ptr_array_new_with_free_func (g_free);
+
 	/* Hostname and connectivity changes don't require a device nor contain a connection */
-	if (   !strcmp (action, NMD_ACTION_HOSTNAME)
-	    || !strcmp (action, NMD_ACTION_CONNECTIVITY_CHANGE)) {
+	if (NM_IN_STRSET (action, NMD_ACTION_HOSTNAME,
+	                          NMD_ACTION_CONNECTIVITY_CHANGE))
 		goto done;
-	}
 
 	/* Connection properties */
 	if (!g_variant_lookup (connection_props, NMD_CONNECTION_PROPS_PATH, "&o", &path)) {
 		*out_error_message = "Missing or invalid required value " NMD_CONNECTION_PROPS_PATH "!";
 		return NULL;
 	}
-	items = g_slist_prepend (items, g_strdup_printf ("CONNECTION_DBUS_PATH=%s", path));
+
+	_items_add_key (items, NULL, "CONNECTION_DBUS_PATH", path);
 
 	if (g_variant_lookup (connection_props, NMD_CONNECTION_PROPS_EXTERNAL, "b", &external) && external)
-		items = g_slist_prepend (items, g_strdup ("CONNECTION_EXTERNAL=1"));
+		_items_add_str (items, "CONNECTION_EXTERNAL=1");
 
 	if (g_variant_lookup (connection_props, NMD_CONNECTION_PROPS_FILENAME, "&s", &filename))
-		items = g_slist_prepend (items, g_strdup_printf ("CONNECTION_FILENAME=%s", filename));
-
+		_items_add_key (items, NULL, "CONNECTION_FILENAME", filename);
 
 	/* Canonicalize the VPN interface name; "" is used when passing it through
 	 * D-Bus so make sure that's fixed up here.
 	 */
-	if (vpn_ip_iface && !strlen (vpn_ip_iface))
+	if (vpn_ip_iface && !vpn_ip_iface[0])
 		vpn_ip_iface = NULL;
 
-	/* interface name */
 	if (!g_variant_lookup (device_props, NMD_DEVICE_PROPS_INTERFACE, "&s", &iface)) {
 		*out_error_message = "Missing or invalid required value " NMD_DEVICE_PROPS_INTERFACE "!";
 		return NULL;
@@ -429,74 +484,74 @@ nm_dispatcher_utils_construct_envp (const char *action,
 	if (!*iface)
 		iface = NULL;
 
-	/* IP interface name */
-	value = g_variant_lookup_value (device_props, NMD_DEVICE_PROPS_IP_INTERFACE, NULL);
-	if (value) {
-		if (!g_variant_is_of_type (value, G_VARIANT_TYPE_STRING)) {
+	variant = g_variant_lookup_value (device_props, NMD_DEVICE_PROPS_IP_INTERFACE, NULL);
+	if (variant) {
+		if (!g_variant_is_of_type (variant, G_VARIANT_TYPE_STRING)) {
 			*out_error_message = "Invalid value " NMD_DEVICE_PROPS_IP_INTERFACE "!";
 			return NULL;
 		}
-		g_variant_unref (value);
+		g_variant_unref (variant);
 		(void) g_variant_lookup (device_props, NMD_DEVICE_PROPS_IP_INTERFACE, "&s", &ip_iface);
 	}
 
-	/* Device type */
 	if (!g_variant_lookup (device_props, NMD_DEVICE_PROPS_TYPE, "u", NULL)) {
 		*out_error_message = "Missing or invalid required value " NMD_DEVICE_PROPS_TYPE "!";
 		return NULL;
 	}
 
-	/* Device state */
-	value = g_variant_lookup_value (device_props, NMD_DEVICE_PROPS_STATE, G_VARIANT_TYPE_UINT32);
-	if (!value) {
+	variant = g_variant_lookup_value (device_props, NMD_DEVICE_PROPS_STATE, G_VARIANT_TYPE_UINT32);
+	if (!variant) {
 		*out_error_message = "Missing or invalid required value " NMD_DEVICE_PROPS_STATE "!";
 		return NULL;
 	}
-	dev_state = g_variant_get_uint32 (value);
-	g_variant_unref (value);
+	dev_state = g_variant_get_uint32 (variant);
+	g_variant_unref (variant);
 
-	/* device itself */
 	if (!g_variant_lookup (device_props, NMD_DEVICE_PROPS_PATH, "o", NULL)) {
 		*out_error_message = "Missing or invalid required value " NMD_DEVICE_PROPS_PATH "!";
 		return NULL;
 	}
 
-	/* UUID and ID */
-	con_setting = g_variant_lookup_value (connection_dict, NM_SETTING_CONNECTION_SETTING_NAME, NM_VARIANT_TYPE_SETTING);
-	if (!con_setting) {
-		*out_error_message = "Failed to read connection setting";
-		return NULL;
-	}
+	{
+		gs_unref_variant GVariant *con_setting = NULL;
 
-	if (!g_variant_lookup (con_setting, NM_SETTING_CONNECTION_UUID, "&s", &uuid)) {
-		*out_error_message = "Connection hash did not contain the UUID";
-		g_variant_unref (con_setting);
-		return NULL;
-	}
+		con_setting = g_variant_lookup_value (connection_dict, NM_SETTING_CONNECTION_SETTING_NAME, NM_VARIANT_TYPE_SETTING);
+		if (!con_setting) {
+			*out_error_message = "Failed to read connection setting";
+			return NULL;
+		}
 
-	if (!g_variant_lookup (con_setting, NM_SETTING_CONNECTION_ID, "&s", &id)) {
-		*out_error_message = "Connection hash did not contain the ID";
-		g_variant_unref (con_setting);
-		return NULL;
-	}
+		if (!g_variant_lookup (con_setting, NM_SETTING_CONNECTION_UUID, "&s", &uuid)) {
+			*out_error_message = "Connection hash did not contain the UUID";
+			return NULL;
+		}
+
+		if (!g_variant_lookup (con_setting, NM_SETTING_CONNECTION_ID, "&s", &id)) {
+			*out_error_message = "Connection hash did not contain the ID";
+			return NULL;
+		}
 
-	items = construct_basic_items (items, uuid, id, iface, ip_iface);
-	g_variant_unref (con_setting);
+		_items_add_key0 (items, NULL, "CONNECTION_UUID", uuid);
+		_items_add_key0 (items, NULL, "CONNECTION_ID", id);
+		_items_add_key0 (items, NULL, "DEVICE_IFACE", iface);
+		_items_add_key0 (items, NULL, "DEVICE_IP_IFACE", ip_iface);
+	}
 
 	/* Device it's aren't valid if the device isn't activated */
-	if (iface && (dev_state == NM_DEVICE_STATE_ACTIVATED)) {
-		items = construct_proxy_items (items, device_proxy_props, NULL);
-		items = construct_ip4_items (items, device_ip4_props, NULL);
-		items = construct_ip6_items (items, device_ip6_props, NULL);
-		items = construct_device_dhcp4_items (items, device_dhcp4_props);
-		items = construct_device_dhcp6_items (items, device_dhcp6_props);
+	if (   iface
+	    && dev_state == NM_DEVICE_STATE_ACTIVATED) {
+		construct_proxy_items (items, device_proxy_props, NULL);
+		construct_ip_items (items, AF_INET, device_ip4_props, NULL);
+		construct_ip_items (items, AF_INET6, device_ip6_props, NULL);
+		construct_device_dhcp_items (items, AF_INET, device_dhcp4_props);
+		construct_device_dhcp_items (items, AF_INET6, device_dhcp6_props);
 	}
 
 	if (vpn_ip_iface) {
-		items = g_slist_prepend (items, g_strdup_printf ("VPN_IP_IFACE=%s", vpn_ip_iface));
-		items = construct_proxy_items (items, vpn_proxy_props, "VPN_");
-		items = construct_ip4_items (items, vpn_ip4_props, "VPN_");
-		items = construct_ip6_items (items, vpn_ip6_props, "VPN_");
+		_items_add_key (items, NULL, "VPN_IP_IFACE", vpn_ip_iface);
+		construct_proxy_items (items, vpn_proxy_props, "VPN_");
+		construct_ip_items (items, AF_INET, vpn_ip4_props, "VPN_");
+		construct_ip_items (items, AF_INET6, vpn_ip6_props, "VPN_");
 	}
 
 	/* Backwards compat: 'iface' is set in this order:
@@ -511,26 +566,16 @@ nm_dispatcher_utils_construct_envp (const char *action,
 	else
 		*out_iface = g_strdup (iface);
 
- done:
+done:
 	/* The connectivity_state value will only be meaningful for 'connectivity-change' events
 	 * (otherwise it will be "UNKNOWN"), so we only set the environment variable in those cases.
 	 */
-	if (connectivity_state && strcmp(connectivity_state, "UNKNOWN"))
-		items = g_slist_prepend (items, g_strdup_printf ("CONNECTIVITY_STATE=%s", connectivity_state));
+	if (!NM_IN_STRSET (connectivity_state, NULL, "UNKNOWN"))
+		_items_add_key (items, NULL, "CONNECTIVITY_STATE", connectivity_state);
 
-	path = g_getenv ("PATH");
-	if (path) {
-		path_item = g_strdup_printf ("PATH=%s", path);
-		items = g_slist_prepend (items, path_item);
-	}
-
-	/* Convert the list to an environment pointer */
-	envp = g_new0 (char *, g_slist_length (items) + 1);
-	for (iter = items, i = 0; iter; iter = g_slist_next (iter), i++)
-		envp[i] = (char *) iter->data;
-	g_slist_free (items);
+	_items_add_key0 (items, NULL, "PATH", g_getenv ("PATH"));
 
 	*out_error_message = NULL;
-	return envp;
+	g_ptr_array_add (items, NULL);
+	return (char **) g_ptr_array_free (g_steal_pointer (&items), FALSE);
 }
-
diff --git a/dispatcher/nm-dispatcher.c b/dispatcher/nm-dispatcher.c
index 6bb52218..89966953 100644
--- a/dispatcher/nm-dispatcher.c
+++ b/dispatcher/nm-dispatcher.c
@@ -144,7 +144,7 @@ struct Request {
 		           (_request)->request_id, \
 		           (_request)->action, \
 		           (_request)->iface ? " [" : "", \
-		           (_request)->iface ? (_request)->iface : "", \
+		           (_request)->iface ?: "", \
 		           (_request)->iface ? "]" : "", \
 		           (_script) ? ", \"" : "", \
 		           (_script) ? (_script)->script : "", \
@@ -297,7 +297,7 @@ complete_request (Request *request)
 		g_variant_builder_add (&results, "(sus)",
 		                       script->script,
 		                       script->result,
-		                       script->error ? script->error : "");
+		                       script->error ?: "");
 	}
 
 	ret = g_variant_new ("(a(sus))", &results);
@@ -537,9 +537,7 @@ script_dispatch (ScriptInfo *script)
 	script->dispatched = TRUE;
 
 	argv[0] = script->script;
-	argv[1] = request->iface
-	          ? request->iface
-	          : (!strcmp (request->action, NMD_ACTION_HOSTNAME) ? "none" : "");
+	argv[1] = request->iface ?: (!strcmp(request->action, NMD_ACTION_HOSTNAME) ? "none" : "");
 	argv[2] = request->action;
 	argv[3] = NULL;
 
@@ -604,7 +602,7 @@ find_scripts (const char *str_action)
 
 	while ((filename = g_dir_read_name (dir))) {
 		char *path;
-		struct stat	st;
+		struct stat st;
 		int err;
 		const char *err_msg = NULL;
 
@@ -862,7 +860,6 @@ log_handler (const gchar *log_domain,
 	syslog (syslog_priority, "%s", message);
 }
 
-
 static void
 logging_setup (void)
 {
@@ -916,12 +913,9 @@ main (int argc, char **argv)
 
 	g_option_context_free (opt_ctx);
 
-	nm_g_type_init ();
-
 	g_unix_signal_add (SIGTERM, signal_handler, GINT_TO_POINTER (SIGTERM));
 	g_unix_signal_add (SIGINT, signal_handler, GINT_TO_POINTER (SIGINT));
 
-
 	if (debug) {
 		if (!g_getenv ("G_MESSAGES_DEBUG")) {
 			/* we log our regular messages using g_debug() and g_info().
diff --git a/dispatcher/tests/meson.build b/dispatcher/tests/meson.build
new file mode 100644
index 00000000..6ead88bf
--- /dev/null
+++ b/dispatcher/tests/meson.build
@@ -0,0 +1,25 @@
+test_unit = 'test-dispatcher-envp'
+
+incs = [
+  dispatcher_inc,
+  libnm_inc
+]
+
+exe = executable(
+  test_unit,
+  test_unit + '.c',
+  include_directories: incs,
+  dependencies: nm_core_dep,
+  c_args: [
+      '-DNETWORKMANAGER_COMPILATION_TEST',
+      '-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
+    ] +
+    nm_build_cflags,
+  link_with: libnm_dispatcher_core
+)
+
+test(
+  'dispatcher/' + test_unit,
+  test_script,
+  args: test_args + [exe.full_path()]
+)
diff --git a/dispatcher/tests/test-dispatcher-envp.c b/dispatcher/tests/test-dispatcher-envp.c
index 6dd4db07..1203c6ac 100644
--- a/dispatcher/tests/test-dispatcher-envp.c
+++ b/dispatcher/tests/test-dispatcher-envp.c
@@ -24,14 +24,32 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "nm-core-internal.h"
 #include "nm-dispatcher-utils.h"
 #include "nm-dispatcher-api.h"
 
 #include "nm-utils/nm-test-utils.h"
 
+#define TEST_DIR      NM_BUILD_SRCDIR"/dispatcher/tests"
+
 /*****************************************************************************/
 
+static void
+_print_env (const char *const*denv, GHashTable *expected_env)
+{
+	const char *const*iter;
+	GHashTableIter k;
+	const char *key;
+
+	g_print ("\n******* Generated environment:\n");
+	for (iter = denv; iter && *iter; iter++)
+		g_print ("   %s\n", *iter);
+
+	g_print ("\n******* Expected environment:\n");
+	g_hash_table_iter_init (&k, expected_env);
+	while (g_hash_table_iter_next (&k, (gpointer) &key, NULL))
+		g_print ("   %s\n", key);
+}
+
 static gboolean
 parse_main (GKeyFile *kf,
             const char *filename,
@@ -509,8 +527,7 @@ test_generic (const char *file, const char *override_vpn_ip_iface)
 	gs_strfreev char **denv = NULL;
 	char **iter;
 
-	/* Read in the test file */
-	p = g_build_filename (SRCDIR, file, NULL);
+	p = g_build_filename (TEST_DIR, file, NULL);
 	success = get_dispatcher_file (p,
 	                               &con_dict,
 	                               &con_props,
@@ -544,7 +561,7 @@ test_generic (const char *file, const char *override_vpn_ip_iface)
 	                                           device_dhcp4_props,
 	                                           device_dhcp6_props,
 	                                           connectivity_change,
-	                                           override_vpn_ip_iface ? override_vpn_ip_iface : vpn_ip_iface,
+	                                           override_vpn_ip_iface ?: vpn_ip_iface,
 	                                           vpn_proxy_props,
 	                                           vpn_ip4_props,
 	                                           vpn_ip6_props,
@@ -554,28 +571,12 @@ test_generic (const char *file, const char *override_vpn_ip_iface)
 	g_assert ((!denv && error_message) || (denv && !error_message));
 
 	if (error_message)
-		g_warning ("%s", error_message);
+		g_error ("FAILED: %s", error_message);
 
-	/* Print out environment for now */
-#ifdef DEBUG
-	g_message ("\n******* Generated environment:");
-	for (iter = denv; iter && *iter; iter++)
-		g_message ("   %s", *iter);
-#endif
-
-#ifdef DEBUG
-	{
-		GHashTableIter k;
-		const char *key;
-
-		g_message ("\n******* Expected environment:");
-		g_hash_table_iter_init (&k, expected_env);
-		while (g_hash_table_iter_next (&k, (gpointer) &key, NULL))
-			g_message ("   %s", key);
+	if (g_strv_length (denv) != g_hash_table_size (expected_env)) {
+		_print_env (NM_CAST_STRV_CC (denv), expected_env);
+		g_assert_cmpint (g_strv_length (denv), ==, g_hash_table_size (expected_env));
 	}
-#endif
-
-	g_assert_cmpint (g_strv_length (denv), ==, g_hash_table_size (expected_env));
 
 	/* Compare dispatcher generated env and expected env */
 	for (iter = denv; iter && *iter; iter++) {
@@ -590,9 +591,10 @@ test_generic (const char *file, const char *override_vpn_ip_iface)
 		}
 
 		foo = g_hash_table_lookup (expected_env, i_value);
-		if (!foo)
-			g_warning ("Failed to find %s in environment", i_value);
-		g_assert (foo);
+		if (!foo) {
+			_print_env (NM_CAST_STRV_CC (denv), expected_env);
+			g_error ("Failed to find %s in environment", i_value);
+		}
 	}
 
 	g_assert_cmpstr (expected_iface, ==, out_iface);