
- All internal source files (except "examples", which are not internal) should include "config.h" first. As also all internal source files should include "nm-default.h", let "config.h" be included by "nm-default.h" and include "nm-default.h" as first in every source file. We already wanted to include "nm-default.h" before other headers because it might contains some fixes (like "nm-glib.h" compatibility) that is required first. - After including "nm-default.h", we optinally allow for including the corresponding header file for the source file at hand. The idea is to ensure that each header file is self contained. - Don't include "config.h" or "nm-default.h" in any header file (except "nm-sd-adapt.h"). Public headers anyway must not include these headers, and internal headers are never included after "nm-default.h", as of the first previous point. - Include all internal headers with quotes instead of angle brackets. In practice it doesn't matter, because in our public headers we must include other headers with angle brackets. As we use our public headers also to compile our interal source files, effectively the result must be the same. Still do it for consistency. - Except for <config.h> itself. Include it with angle brackets as suggested by https://www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Headers
422 lines
9.7 KiB
C
422 lines
9.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright 2008 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include <dbus/dbus-glib.h>
|
|
#include <string.h>
|
|
|
|
#include "nm-types.h"
|
|
#include "nm-types-private.h"
|
|
#include "nm-object-private.h"
|
|
#include "nm-object-cache.h"
|
|
#include "nm-dbus-glib-types.h"
|
|
#include "nm-setting-ip6-config.h"
|
|
|
|
static gpointer
|
|
_nm_ssid_copy (GByteArray *src)
|
|
{
|
|
GByteArray *dest;
|
|
|
|
dest = g_byte_array_sized_new (src->len);
|
|
g_byte_array_append (dest, src->data, src->len);
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_ssid_free (GByteArray *ssid)
|
|
{
|
|
g_byte_array_free (ssid, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_ssid_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMSsid"),
|
|
(GBoxedCopyFunc) _nm_ssid_copy,
|
|
(GBoxedFreeFunc) _nm_ssid_free);
|
|
return our_type;
|
|
}
|
|
|
|
gboolean
|
|
_nm_ssid_demarshal (GValue *value, GByteArray **dest)
|
|
{
|
|
GByteArray *array;
|
|
|
|
if (!G_VALUE_HOLDS (value, DBUS_TYPE_G_UCHAR_ARRAY))
|
|
return FALSE;
|
|
|
|
if (*dest) {
|
|
g_boxed_free (NM_TYPE_SSID, *dest);
|
|
*dest = NULL;
|
|
}
|
|
|
|
array = (GByteArray *) g_value_get_boxed (value);
|
|
if (array && (array->len > 0)) {
|
|
*dest = g_byte_array_sized_new (array->len);
|
|
(*dest)->len = array->len;
|
|
memcpy ((*dest)->data, array->data, array->len);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_uint_array_copy (GArray *src)
|
|
{
|
|
GArray *dest;
|
|
|
|
dest = g_array_sized_new (FALSE, TRUE, sizeof (guint32), src->len);
|
|
g_array_append_vals (dest, src->data, src->len);
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_uint_array_free (GArray *array)
|
|
{
|
|
g_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_uint_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMUintArray"),
|
|
(GBoxedCopyFunc) _nm_uint_array_copy,
|
|
(GBoxedFreeFunc) _nm_uint_array_free);
|
|
return our_type;
|
|
}
|
|
|
|
gboolean
|
|
_nm_uint_array_demarshal (GValue *value, GArray **dest)
|
|
{
|
|
GArray *array;
|
|
|
|
if (!G_VALUE_HOLDS (value, DBUS_TYPE_G_UINT_ARRAY))
|
|
return FALSE;
|
|
|
|
if (*dest) {
|
|
g_boxed_free (NM_TYPE_UINT_ARRAY, *dest);
|
|
*dest = NULL;
|
|
}
|
|
|
|
array = (GArray *) g_value_get_boxed (value);
|
|
if (array && (array->len > 0)) {
|
|
*dest = g_array_sized_new (FALSE, TRUE, sizeof (guint32), array->len);
|
|
g_array_append_vals (*dest, array->data, array->len);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_string_array_copy (GPtrArray *src)
|
|
{
|
|
GPtrArray *dest;
|
|
int i;
|
|
|
|
dest = g_ptr_array_sized_new (src->len);
|
|
for (i = 0; i < src->len; i++)
|
|
g_ptr_array_add (dest, g_strdup (g_ptr_array_index (src, i)));
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_string_array_free (GPtrArray *array)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
g_free (g_ptr_array_index (array, i));
|
|
g_ptr_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_string_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMStringArray"),
|
|
(GBoxedCopyFunc) _nm_string_array_copy,
|
|
(GBoxedFreeFunc) _nm_string_array_free);
|
|
return our_type;
|
|
}
|
|
|
|
gboolean
|
|
_nm_string_array_demarshal (GValue *value, GPtrArray **dest)
|
|
{
|
|
char **array;
|
|
|
|
if (!G_VALUE_HOLDS (value, G_TYPE_STRV))
|
|
return FALSE;
|
|
|
|
if (*dest) {
|
|
g_boxed_free (NM_TYPE_STRING_ARRAY, *dest);
|
|
*dest = NULL;
|
|
}
|
|
|
|
array = (char **) g_value_get_boxed (value);
|
|
if (array && array[0]) {
|
|
int i;
|
|
|
|
*dest = g_ptr_array_new ();
|
|
for (i = 0; array[i]; i++)
|
|
g_ptr_array_add (*dest, g_strdup (array[i]));
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_object_array_copy (GPtrArray *src)
|
|
{
|
|
GPtrArray *dest;
|
|
int i;
|
|
|
|
dest = g_ptr_array_sized_new (src->len);
|
|
for (i = 0; i < src->len; i++)
|
|
g_ptr_array_add (dest, g_object_ref (g_ptr_array_index (src, i)));
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_object_array_free (GPtrArray *array)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
g_object_unref (g_ptr_array_index (array, i));
|
|
g_ptr_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_object_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMObjectArray"),
|
|
(GBoxedCopyFunc) _nm_object_array_copy,
|
|
(GBoxedFreeFunc) _nm_object_array_free);
|
|
return our_type;
|
|
}
|
|
|
|
gboolean
|
|
_nm_object_array_demarshal (GValue *value,
|
|
GPtrArray **dest,
|
|
DBusGConnection *connection,
|
|
NMObjectCreatorFunc func)
|
|
{
|
|
GPtrArray *temp = NULL;
|
|
GPtrArray *array;
|
|
|
|
if (!G_VALUE_HOLDS (value, DBUS_TYPE_G_ARRAY_OF_OBJECT_PATH))
|
|
return FALSE;
|
|
|
|
array = (GPtrArray *) g_value_get_boxed (value);
|
|
if (array && array->len) {
|
|
int i;
|
|
|
|
temp = g_ptr_array_sized_new (array->len);
|
|
for (i = 0; i < array->len; i++) {
|
|
const char *path;
|
|
GObject *object;
|
|
|
|
path = g_ptr_array_index (array, i);
|
|
object = G_OBJECT (_nm_object_cache_get (path));
|
|
if (object)
|
|
g_ptr_array_add (temp, object);
|
|
else {
|
|
object = (*func) (connection, path);
|
|
if (object)
|
|
g_ptr_array_add (temp, object);
|
|
else
|
|
g_warning ("%s: couldn't create object for %s", __func__, path);
|
|
}
|
|
}
|
|
} else
|
|
temp = g_ptr_array_new ();
|
|
|
|
/* Deallocate after to ensure that an object that might already
|
|
* be in the array doesn't get destroyed due to refcounting.
|
|
*/
|
|
if (*dest)
|
|
g_boxed_free (NM_TYPE_OBJECT_ARRAY, *dest);
|
|
*dest = temp;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_ip6_address_object_array_copy (GPtrArray *src)
|
|
{
|
|
GPtrArray *dest;
|
|
int i;
|
|
|
|
dest = g_ptr_array_sized_new (src->len);
|
|
for (i = 0; i < src->len; i++)
|
|
g_ptr_array_add (dest, nm_ip6_address_dup (g_ptr_array_index (src, i)));
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_ip6_address_object_array_free (GPtrArray *array)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
nm_ip6_address_unref (g_ptr_array_index (array, i));
|
|
g_ptr_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_ip6_address_object_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMIP6AddressObjectArray"),
|
|
(GBoxedCopyFunc) _nm_ip6_address_object_array_copy,
|
|
(GBoxedFreeFunc) _nm_ip6_address_object_array_free);
|
|
return our_type;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_ip6_address_array_copy (GPtrArray *src)
|
|
{
|
|
GPtrArray *dest;
|
|
int i;
|
|
|
|
dest = g_ptr_array_sized_new (src->len);
|
|
for (i = 0; i < src->len; i++) {
|
|
struct in6_addr *addr = g_ptr_array_index (src, i);
|
|
struct in6_addr *copy;
|
|
|
|
copy = g_malloc0 (sizeof (struct in6_addr));
|
|
memcpy (copy, addr, sizeof (struct in6_addr));
|
|
g_ptr_array_add (dest, copy);
|
|
}
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_ip6_address_array_free (GPtrArray *array)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
g_free (g_ptr_array_index (array, i));
|
|
g_ptr_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_ip6_address_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMIP6AddressArray"),
|
|
(GBoxedCopyFunc) _nm_ip6_address_array_copy,
|
|
(GBoxedFreeFunc) _nm_ip6_address_array_free);
|
|
return our_type;
|
|
}
|
|
|
|
gboolean
|
|
_nm_ip6_address_array_demarshal (GValue *value, GSList **dest)
|
|
{
|
|
GPtrArray *array;
|
|
|
|
if (!G_VALUE_HOLDS (value, DBUS_TYPE_G_ARRAY_OF_ARRAY_OF_UCHAR))
|
|
return FALSE;
|
|
|
|
if (*dest) {
|
|
g_slist_free_full (*dest, g_free);
|
|
*dest = NULL;
|
|
}
|
|
|
|
array = (GPtrArray *) g_value_get_boxed (value);
|
|
if (array && array->len) {
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++) {
|
|
GByteArray *bytearray = (GByteArray *) g_ptr_array_index (array, i);
|
|
struct in6_addr *addr;
|
|
|
|
addr = g_malloc0 (sizeof (struct in6_addr));
|
|
memcpy (addr->s6_addr, bytearray->data, bytearray->len);
|
|
*dest = g_slist_append (*dest, addr);
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************/
|
|
|
|
static gpointer
|
|
_nm_ip6_route_object_array_copy (GPtrArray *src)
|
|
{
|
|
GPtrArray *dest;
|
|
int i;
|
|
|
|
dest = g_ptr_array_sized_new (src->len);
|
|
for (i = 0; i < src->len; i++)
|
|
g_ptr_array_add (dest, nm_ip6_route_dup (g_ptr_array_index (src, i)));
|
|
return dest;
|
|
}
|
|
|
|
static void
|
|
_nm_ip6_route_object_array_free (GPtrArray *array)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
nm_ip6_route_unref (g_ptr_array_index (array, i));
|
|
g_ptr_array_free (array, TRUE);
|
|
}
|
|
|
|
GType
|
|
nm_ip6_route_object_array_get_type (void)
|
|
{
|
|
static GType our_type = 0;
|
|
|
|
if (our_type == 0)
|
|
our_type = g_boxed_type_register_static (g_intern_static_string ("NMIP6RouteObjectArray"),
|
|
(GBoxedCopyFunc) _nm_ip6_route_object_array_copy,
|
|
(GBoxedFreeFunc) _nm_ip6_route_object_array_free);
|
|
return our_type;
|
|
}
|