2014-07-15 16:19:10 +02:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
|
/* NetworkManager -- Network link manager
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2018-07-13 16:55:12 +02:00
|
|
|
* (C) Copyright 2012 Colin Walters <walters@verbum.org>.
|
2014-07-15 16:19:10 +02:00
|
|
|
* (C) Copyright 2014 Red Hat, Inc.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-06-01 13:42:08 +02:00
|
|
|
#ifndef __NM_MACROS_INTERNAL_H__
|
|
|
|
|
#define __NM_MACROS_INTERNAL_H__
|
2014-07-15 16:19:10 +02:00
|
|
|
|
2016-12-09 09:22:29 +01:00
|
|
|
#include <stdio.h>
|
2016-03-23 17:55:27 +01:00
|
|
|
#include <stdlib.h>
|
2016-12-09 09:22:29 +01:00
|
|
|
#include <errno.h>
|
2018-07-13 16:55:12 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2016-03-23 17:55:27 +01:00
|
|
|
|
2017-10-17 19:59:33 +02:00
|
|
|
#define _nm_packed __attribute__ ((packed))
|
|
|
|
|
#define _nm_unused __attribute__ ((unused))
|
|
|
|
|
#define _nm_pure __attribute__ ((pure))
|
|
|
|
|
#define _nm_const __attribute__ ((const))
|
|
|
|
|
#define _nm_printf(a,b) __attribute__ ((__format__ (__printf__, a, b)))
|
|
|
|
|
#define _nm_align(s) __attribute__ ((aligned (s)))
|
|
|
|
|
#define _nm_alignof(type) __alignof (type)
|
|
|
|
|
#define _nm_alignas(type) _nm_align (_nm_alignof (type))
|
2018-07-18 10:27:20 +02:00
|
|
|
#define nm_auto(fcn) __attribute__ ((cleanup(fcn)))
|
|
|
|
|
|
2016-04-06 10:16:06 +02:00
|
|
|
|
2017-12-13 09:34:39 +01:00
|
|
|
#if __GNUC__ >= 7
|
|
|
|
|
#define _nm_fallthrough __attribute__ ((fallthrough))
|
|
|
|
|
#else
|
|
|
|
|
#define _nm_fallthrough
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-13 10:45:15 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifdef thread_local
|
|
|
|
|
#define _nm_thread_local thread_local
|
|
|
|
|
/*
|
|
|
|
|
* Don't break on glibc < 2.16 that doesn't define __STDC_NO_THREADS__
|
|
|
|
|
* see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53769
|
|
|
|
|
*/
|
|
|
|
|
#elif __STDC_VERSION__ >= 201112L && !(defined(__STDC_NO_THREADS__) || (defined(__GNU_LIBRARY__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 16))
|
|
|
|
|
#define _nm_thread_local _Thread_local
|
|
|
|
|
#else
|
|
|
|
|
#define _nm_thread_local __thread
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2018-07-13 16:55:12 +02:00
|
|
|
#define NM_AUTO_DEFINE_FCN_VOID(CastType, name, func) \
|
|
|
|
|
static inline void name (void *v) \
|
|
|
|
|
{ \
|
|
|
|
|
func (*((CastType *) v)); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define NM_AUTO_DEFINE_FCN_VOID0(CastType, name, func) \
|
|
|
|
|
static inline void name (void *v) \
|
|
|
|
|
{ \
|
|
|
|
|
if (*((CastType *) v)) \
|
|
|
|
|
func (*((CastType *) v)); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define NM_AUTO_DEFINE_FCN(Type, name, func) \
|
|
|
|
|
static inline void name (Type *v) \
|
|
|
|
|
{ \
|
|
|
|
|
func (*v); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define NM_AUTO_DEFINE_FCN0(Type, name, func) \
|
|
|
|
|
static inline void name (Type *v) \
|
|
|
|
|
{ \
|
|
|
|
|
if (*v) \
|
|
|
|
|
func (*v); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_free:
|
|
|
|
|
*
|
|
|
|
|
* Call g_free() on a variable location when it goes out of scope.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_free nm_auto(gs_local_free)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN_VOID (void *, gs_local_free, g_free)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_object:
|
|
|
|
|
*
|
|
|
|
|
* Call g_object_unref() on a variable location when it goes out of
|
|
|
|
|
* scope. Note that unlike g_object_unref(), the variable may be
|
|
|
|
|
* %NULL.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_object nm_auto(gs_local_obj_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN_VOID0 (GObject *, gs_local_obj_unref, g_object_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_variant:
|
|
|
|
|
*
|
|
|
|
|
* Call g_variant_unref() on a variable location when it goes out of
|
|
|
|
|
* scope. Note that unlike g_variant_unref(), the variable may be
|
|
|
|
|
* %NULL.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_variant nm_auto(gs_local_variant_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GVariant *, gs_local_variant_unref, g_variant_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_array:
|
|
|
|
|
*
|
|
|
|
|
* Call g_array_unref() on a variable location when it goes out of
|
|
|
|
|
* scope. Note that unlike g_array_unref(), the variable may be
|
|
|
|
|
* %NULL.
|
|
|
|
|
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_array nm_auto(gs_local_array_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GArray *, gs_local_array_unref, g_array_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_ptrarray:
|
|
|
|
|
*
|
|
|
|
|
* Call g_ptr_array_unref() on a variable location when it goes out of
|
|
|
|
|
* scope. Note that unlike g_ptr_array_unref(), the variable may be
|
|
|
|
|
* %NULL.
|
|
|
|
|
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_ptrarray nm_auto(gs_local_ptrarray_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GPtrArray *, gs_local_ptrarray_unref, g_ptr_array_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_hashtable:
|
|
|
|
|
*
|
|
|
|
|
* Call g_hash_table_unref() on a variable location when it goes out
|
|
|
|
|
* of scope. Note that unlike g_hash_table_unref(), the variable may
|
|
|
|
|
* be %NULL.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_hashtable nm_auto(gs_local_hashtable_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GHashTable *, gs_local_hashtable_unref, g_hash_table_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_free_slist:
|
|
|
|
|
*
|
|
|
|
|
* Call g_slist_free() on a variable location when it goes out
|
|
|
|
|
* of scope.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_free_slist nm_auto(gs_local_free_slist)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN (GSList *, gs_local_free_slist, g_slist_free)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_bytes:
|
|
|
|
|
*
|
|
|
|
|
* Call g_bytes_unref() on a variable location when it goes out
|
|
|
|
|
* of scope. Note that unlike g_bytes_unref(), the variable may
|
|
|
|
|
* be %NULL.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_bytes nm_auto(gs_local_bytes_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GBytes *, gs_local_bytes_unref, g_bytes_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_strfreev:
|
|
|
|
|
*
|
|
|
|
|
* Call g_strfreev() on a variable location when it goes out of scope.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_strfreev nm_auto(gs_local_strfreev)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN (char **, gs_local_strfreev, g_strfreev)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_free_error:
|
|
|
|
|
*
|
|
|
|
|
* Call g_error_free() on a variable location when it goes out of scope.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_free_error nm_auto(gs_local_free_error)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GError *, gs_local_free_error, g_error_free)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gs_unref_keyfile:
|
|
|
|
|
*
|
|
|
|
|
* Call g_key_file_unref() on a variable location when it goes out of scope.
|
|
|
|
|
*/
|
2018-07-18 10:27:20 +02:00
|
|
|
#define gs_unref_keyfile nm_auto(gs_local_keyfile_unref)
|
2018-07-13 16:55:12 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GKeyFile *, gs_local_keyfile_unref, g_key_file_unref)
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2017-09-15 13:52:29 +02:00
|
|
|
#include "nm-glib.h"
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2017-01-16 16:10:28 +01:00
|
|
|
#define nm_offsetofend(t,m) (G_STRUCT_OFFSET (t,m) + sizeof (((t *) NULL)->m))
|
|
|
|
|
|
2018-07-13 17:40:26 +02:00
|
|
|
/*****************************************************************************/
|
2016-02-28 11:53:54 +01:00
|
|
|
|
2017-10-18 11:14:36 +02:00
|
|
|
static inline int nm_close (int fd);
|
2018-07-13 17:40:26 +02:00
|
|
|
|
2016-02-12 15:43:30 +01:00
|
|
|
/**
|
|
|
|
|
* nm_auto_free:
|
|
|
|
|
*
|
|
|
|
|
* Call free() on a variable location when it goes out of scope.
|
2018-07-13 16:37:02 +02:00
|
|
|
* This is for pointers that are allocated with malloc() instead of
|
|
|
|
|
* g_malloc().
|
|
|
|
|
*
|
|
|
|
|
* In practice, since glib 2.45, g_malloc()/g_free() always wraps malloc()/free().
|
|
|
|
|
* See bgo#751592. In that case, it would be safe to free pointers allocated with
|
|
|
|
|
* malloc() with gs_free or g_free().
|
|
|
|
|
*
|
|
|
|
|
* However, let's never mix them. To free malloc'ed memory, always use
|
|
|
|
|
* free() or nm_auto_free.
|
2016-02-12 15:43:30 +01:00
|
|
|
*/
|
2018-07-13 16:51:34 +02:00
|
|
|
NM_AUTO_DEFINE_FCN_VOID (void *, _nm_auto_free_impl, free)
|
2018-07-13 16:37:02 +02:00
|
|
|
#define nm_auto_free nm_auto(_nm_auto_free_impl)
|
2014-10-31 20:46:39 +01:00
|
|
|
|
2018-07-13 16:51:34 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GVariantIter *, _nm_auto_free_variant_iter, g_variant_iter_free)
|
2018-07-18 10:27:20 +02:00
|
|
|
#define nm_auto_free_variant_iter nm_auto(_nm_auto_free_variant_iter)
|
shared/gsystem-local-alloc: rename unused gs_* cleanup macros
These cleanup macros are unused by NetworkManager code. Note that
since "shared/nm-utils" is used by applet and VPN plugins, theoretically,
they could be used there. I didn't check that, but breaking API of
"shared/nm-utils" is fine (as long as we catch it with a compilation
error).
Historically, we use libgsystem's gsystem-local-alloc header and their
"gs_*" macros. However, they are not really our style and don't have
a nm-prefix (like the rest of our code). We keep the gs_ names, because
they are wildly used and because we wanted to keep gsystem-local-alloc
in sync with upstream (which is no longer the case).
Our own cleanup macros are always called "nm_auto_*". So, at least
for the unused "gs_*" macros, rename them to "nm_auto_*".
Don't drop them, despite they being unused. The reason is, that we should
make use of cleanup functions more eagerly. Dropping them now -- because
they are momentarily unused -- hampers using them in the future. We
often don't use the cleanup macros at places where I think we should,
so by dropping them, we hamper future use.
2018-07-13 16:42:52 +02:00
|
|
|
|
2018-07-13 16:51:34 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GVariantBuilder *, _nm_auto_unref_variant_builder, g_variant_builder_unref)
|
2018-07-18 10:27:20 +02:00
|
|
|
#define nm_auto_unref_variant_builder nm_auto(_nm_auto_unref_variant_builder)
|
shared/gsystem-local-alloc: rename unused gs_* cleanup macros
These cleanup macros are unused by NetworkManager code. Note that
since "shared/nm-utils" is used by applet and VPN plugins, theoretically,
they could be used there. I didn't check that, but breaking API of
"shared/nm-utils" is fine (as long as we catch it with a compilation
error).
Historically, we use libgsystem's gsystem-local-alloc header and their
"gs_*" macros. However, they are not really our style and don't have
a nm-prefix (like the rest of our code). We keep the gs_ names, because
they are wildly used and because we wanted to keep gsystem-local-alloc
in sync with upstream (which is no longer the case).
Our own cleanup macros are always called "nm_auto_*". So, at least
for the unused "gs_*" macros, rename them to "nm_auto_*".
Don't drop them, despite they being unused. The reason is, that we should
make use of cleanup functions more eagerly. Dropping them now -- because
they are momentarily unused -- hampers using them in the future. We
often don't use the cleanup macros at places where I think we should,
so by dropping them, we hamper future use.
2018-07-13 16:42:52 +02:00
|
|
|
|
2018-07-13 16:51:34 +02:00
|
|
|
NM_AUTO_DEFINE_FCN (GList *, _nm_auto_free_list, g_list_free)
|
2018-07-18 10:27:20 +02:00
|
|
|
#define nm_auto_free_list nm_auto(_nm_auto_free_list)
|
shared/gsystem-local-alloc: rename unused gs_* cleanup macros
These cleanup macros are unused by NetworkManager code. Note that
since "shared/nm-utils" is used by applet and VPN plugins, theoretically,
they could be used there. I didn't check that, but breaking API of
"shared/nm-utils" is fine (as long as we catch it with a compilation
error).
Historically, we use libgsystem's gsystem-local-alloc header and their
"gs_*" macros. However, they are not really our style and don't have
a nm-prefix (like the rest of our code). We keep the gs_ names, because
they are wildly used and because we wanted to keep gsystem-local-alloc
in sync with upstream (which is no longer the case).
Our own cleanup macros are always called "nm_auto_*". So, at least
for the unused "gs_*" macros, rename them to "nm_auto_*".
Don't drop them, despite they being unused. The reason is, that we should
make use of cleanup functions more eagerly. Dropping them now -- because
they are momentarily unused -- hampers using them in the future. We
often don't use the cleanup macros at places where I think we should,
so by dropping them, we hamper future use.
2018-07-13 16:42:52 +02:00
|
|
|
|
2018-07-13 16:51:34 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GChecksum *, _nm_auto_checksum_free, g_checksum_free)
|
2018-07-18 10:27:20 +02:00
|
|
|
#define nm_auto_free_checksum nm_auto(_nm_auto_checksum_free)
|
shared/gsystem-local-alloc: rename unused gs_* cleanup macros
These cleanup macros are unused by NetworkManager code. Note that
since "shared/nm-utils" is used by applet and VPN plugins, theoretically,
they could be used there. I didn't check that, but breaking API of
"shared/nm-utils" is fine (as long as we catch it with a compilation
error).
Historically, we use libgsystem's gsystem-local-alloc header and their
"gs_*" macros. However, they are not really our style and don't have
a nm-prefix (like the rest of our code). We keep the gs_ names, because
they are wildly used and because we wanted to keep gsystem-local-alloc
in sync with upstream (which is no longer the case).
Our own cleanup macros are always called "nm_auto_*". So, at least
for the unused "gs_*" macros, rename them to "nm_auto_*".
Don't drop them, despite they being unused. The reason is, that we should
make use of cleanup functions more eagerly. Dropping them now -- because
they are momentarily unused -- hampers using them in the future. We
often don't use the cleanup macros at places where I think we should,
so by dropping them, we hamper future use.
2018-07-13 16:42:52 +02:00
|
|
|
|
2018-08-29 10:21:52 +02:00
|
|
|
#define nm_auto_unset_gvalue nm_auto(g_value_unset)
|
2016-03-18 16:23:49 +01:00
|
|
|
|
2018-07-13 17:40:26 +02:00
|
|
|
NM_AUTO_DEFINE_FCN_VOID0 (void *, _nm_auto_unref_gtypeclass, g_type_class_unref)
|
2017-03-28 18:06:14 +02:00
|
|
|
#define nm_auto_unref_gtypeclass nm_auto(_nm_auto_unref_gtypeclass)
|
|
|
|
|
|
2018-08-28 16:47:13 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GByteArray *, _nm_auto_unref_bytearray, g_byte_array_unref)
|
|
|
|
|
#define nm_auto_unref_bytearray nm_auto(_nm_auto_unref_bytearray)
|
|
|
|
|
|
2016-06-24 09:19:42 +02:00
|
|
|
static inline void
|
2018-07-13 17:40:26 +02:00
|
|
|
_nm_auto_free_gstring (GString **str)
|
2016-06-24 09:19:42 +02:00
|
|
|
{
|
|
|
|
|
if (*str)
|
|
|
|
|
g_string_free (*str, TRUE);
|
|
|
|
|
}
|
2018-07-13 17:40:26 +02:00
|
|
|
#define nm_auto_free_gstring nm_auto(_nm_auto_free_gstring)
|
2016-06-24 09:19:42 +02:00
|
|
|
|
2016-12-09 09:22:29 +01:00
|
|
|
static inline void
|
2018-07-13 17:40:26 +02:00
|
|
|
_nm_auto_close (int *pfd)
|
2016-12-09 09:22:29 +01:00
|
|
|
{
|
|
|
|
|
if (*pfd >= 0) {
|
|
|
|
|
int errsv = errno;
|
|
|
|
|
|
2017-10-18 11:14:36 +02:00
|
|
|
(void) nm_close (*pfd);
|
2016-12-09 09:22:29 +01:00
|
|
|
errno = errsv;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-13 17:40:26 +02:00
|
|
|
#define nm_auto_close nm_auto(_nm_auto_close)
|
2016-12-09 09:22:29 +01:00
|
|
|
|
|
|
|
|
static inline void
|
2018-07-13 17:40:26 +02:00
|
|
|
_nm_auto_fclose (FILE **pfd)
|
2016-12-09 09:22:29 +01:00
|
|
|
{
|
|
|
|
|
if (*pfd) {
|
|
|
|
|
int errsv = errno;
|
|
|
|
|
|
|
|
|
|
(void) fclose (*pfd);
|
|
|
|
|
errno = errsv;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-13 17:40:26 +02:00
|
|
|
#define nm_auto_fclose nm_auto(_nm_auto_fclose)
|
2016-12-09 09:22:29 +01:00
|
|
|
|
2016-12-11 22:35:44 +01:00
|
|
|
static inline void
|
|
|
|
|
_nm_auto_protect_errno (int *p_saved_errno)
|
|
|
|
|
{
|
|
|
|
|
errno = *p_saved_errno;
|
|
|
|
|
}
|
|
|
|
|
#define NM_AUTO_PROTECT_ERRNO(errsv_saved) nm_auto(_nm_auto_protect_errno) _nm_unused const int errsv_saved = (errno)
|
|
|
|
|
|
2018-07-13 17:40:26 +02:00
|
|
|
NM_AUTO_DEFINE_FCN0 (GSource *, _nm_auto_unref_gsource, g_source_unref);
|
2018-05-07 16:23:57 +02:00
|
|
|
#define nm_auto_unref_gsource nm_auto(_nm_auto_unref_gsource)
|
|
|
|
|
|
2018-07-11 14:06:28 +02:00
|
|
|
static inline void
|
|
|
|
|
_nm_auto_freev (gpointer ptr)
|
|
|
|
|
{
|
|
|
|
|
gpointer **p = ptr;
|
|
|
|
|
gpointer *_ptr;
|
|
|
|
|
|
|
|
|
|
if (*p) {
|
|
|
|
|
for (_ptr = *p; *_ptr; _ptr++)
|
|
|
|
|
g_free (*_ptr);
|
|
|
|
|
g_free (*p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* g_free a NULL terminated array of pointers, with also freeing each
|
|
|
|
|
* pointer with g_free(). It essentially does the same as
|
|
|
|
|
* gs_strfreev / g_strfreev(), but not restricted to strv arrays. */
|
|
|
|
|
#define nm_auto_freev nm_auto(_nm_auto_freev)
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2014-10-31 20:46:39 +01:00
|
|
|
|
2014-07-15 16:23:13 +02:00
|
|
|
/* http://stackoverflow.com/a/11172679 */
|
|
|
|
|
#define _NM_UTILS_MACRO_FIRST(...) __NM_UTILS_MACRO_FIRST_HELPER(__VA_ARGS__, throwaway)
|
|
|
|
|
#define __NM_UTILS_MACRO_FIRST_HELPER(first, ...) first
|
|
|
|
|
|
|
|
|
|
#define _NM_UTILS_MACRO_REST(...) __NM_UTILS_MACRO_REST_HELPER(__NM_UTILS_MACRO_REST_NUM(__VA_ARGS__), __VA_ARGS__)
|
|
|
|
|
#define __NM_UTILS_MACRO_REST_HELPER(qty, ...) __NM_UTILS_MACRO_REST_HELPER2(qty, __VA_ARGS__)
|
|
|
|
|
#define __NM_UTILS_MACRO_REST_HELPER2(qty, ...) __NM_UTILS_MACRO_REST_HELPER_##qty(__VA_ARGS__)
|
|
|
|
|
#define __NM_UTILS_MACRO_REST_HELPER_ONE(first)
|
|
|
|
|
#define __NM_UTILS_MACRO_REST_HELPER_TWOORMORE(first, ...) , __VA_ARGS__
|
|
|
|
|
#define __NM_UTILS_MACRO_REST_NUM(...) \
|
2017-03-20 23:50:51 +01:00
|
|
|
__NM_UTILS_MACRO_REST_SELECT_30TH(__VA_ARGS__, \
|
|
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE,\
|
|
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE,\
|
2014-07-15 16:23:13 +02:00
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE,\
|
|
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE,\
|
|
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE, TWOORMORE,\
|
|
|
|
|
TWOORMORE, TWOORMORE, TWOORMORE, ONE, throwaway)
|
2017-03-20 23:50:51 +01:00
|
|
|
#define __NM_UTILS_MACRO_REST_SELECT_30TH(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20, a21, a22, a23, a24, a25, a26, a27, a28, a29, a30, ...) a30
|
2014-07-15 16:23:13 +02:00
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2014-10-31 20:46:39 +01:00
|
|
|
|
2018-07-10 08:45:39 +02:00
|
|
|
/* http://stackoverflow.com/a/2124385/354393
|
|
|
|
|
* https://stackoverflow.com/questions/11317474/macro-to-count-number-of-arguments
|
|
|
|
|
*/
|
2015-08-12 13:04:12 +02:00
|
|
|
|
|
|
|
|
#define NM_NARG(...) \
|
2018-07-10 08:45:39 +02:00
|
|
|
_NM_NARG(, ##__VA_ARGS__, _NM_NARG_RSEQ_N())
|
2015-08-12 13:04:12 +02:00
|
|
|
#define _NM_NARG(...) \
|
|
|
|
|
_NM_NARG_ARG_N(__VA_ARGS__)
|
|
|
|
|
#define _NM_NARG_ARG_N( \
|
2018-07-10 08:45:39 +02:00
|
|
|
_0, \
|
2015-08-12 13:04:12 +02:00
|
|
|
_1, _2, _3, _4, _5, _6, _7, _8, _9,_10, \
|
|
|
|
|
_11,_12,_13,_14,_15,_16,_17,_18,_19,_20, \
|
|
|
|
|
_21,_22,_23,_24,_25,_26,_27,_28,_29,_30, \
|
|
|
|
|
_31,_32,_33,_34,_35,_36,_37,_38,_39,_40, \
|
|
|
|
|
_41,_42,_43,_44,_45,_46,_47,_48,_49,_50, \
|
|
|
|
|
_51,_52,_53,_54,_55,_56,_57,_58,_59,_60, \
|
|
|
|
|
_61,_62,_63,N,...) N
|
|
|
|
|
#define _NM_NARG_RSEQ_N() \
|
|
|
|
|
63,62,61,60, \
|
|
|
|
|
59,58,57,56,55,54,53,52,51,50, \
|
|
|
|
|
49,48,47,46,45,44,43,42,41,40, \
|
|
|
|
|
39,38,37,36,35,34,33,32,31,30, \
|
|
|
|
|
29,28,27,26,25,24,23,22,21,20, \
|
|
|
|
|
19,18,17,16,15,14,13,12,11,10, \
|
|
|
|
|
9,8,7,6,5,4,3,2,1,0
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2015-08-12 13:04:12 +02:00
|
|
|
|
2014-10-31 20:46:39 +01:00
|
|
|
#if defined (__GNUC__)
|
|
|
|
|
#define _NM_PRAGMA_WARNING_DO(warning) G_STRINGIFY(GCC diagnostic ignored warning)
|
|
|
|
|
#elif defined (__clang__)
|
|
|
|
|
#define _NM_PRAGMA_WARNING_DO(warning) G_STRINGIFY(clang diagnostic ignored warning)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* you can only suppress a specific warning that the compiler
|
|
|
|
|
* understands. Otherwise you will get another compiler warning
|
|
|
|
|
* about invalid pragma option.
|
|
|
|
|
* It's not that bad however, because gcc and clang often have the
|
|
|
|
|
* same name for the same warning. */
|
|
|
|
|
|
2015-11-13 16:42:08 +01:00
|
|
|
#if defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
|
2014-10-31 20:46:39 +01:00
|
|
|
#define NM_PRAGMA_WARNING_DISABLE(warning) \
|
2015-12-21 10:54:08 +01:00
|
|
|
_Pragma("GCC diagnostic push") \
|
2014-10-31 20:46:39 +01:00
|
|
|
_Pragma(_NM_PRAGMA_WARNING_DO(warning))
|
|
|
|
|
#elif defined (__clang__)
|
|
|
|
|
#define NM_PRAGMA_WARNING_DISABLE(warning) \
|
2015-12-21 10:54:08 +01:00
|
|
|
_Pragma("clang diagnostic push") \
|
2018-01-23 14:31:39 +01:00
|
|
|
_Pragma(_NM_PRAGMA_WARNING_DO("-Wunknown-warning-option")) \
|
2014-10-31 20:46:39 +01:00
|
|
|
_Pragma(_NM_PRAGMA_WARNING_DO(warning))
|
|
|
|
|
#else
|
|
|
|
|
#define NM_PRAGMA_WARNING_DISABLE(warning)
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-11-13 16:42:08 +01:00
|
|
|
#if defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
|
2014-10-31 20:46:39 +01:00
|
|
|
#define NM_PRAGMA_WARNING_REENABLE \
|
|
|
|
|
_Pragma("GCC diagnostic pop")
|
|
|
|
|
#elif defined (__clang__)
|
|
|
|
|
#define NM_PRAGMA_WARNING_REENABLE \
|
|
|
|
|
_Pragma("clang diagnostic pop")
|
|
|
|
|
#else
|
|
|
|
|
#define NM_PRAGMA_WARNING_REENABLE
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2014-07-15 16:19:10 +02:00
|
|
|
|
2016-02-28 16:06:05 +01:00
|
|
|
/**
|
|
|
|
|
* NM_G_ERROR_MSG:
|
2017-04-27 09:00:55 +02:00
|
|
|
* @error: (allow-none): the #GError instance
|
2016-02-28 16:06:05 +01:00
|
|
|
*
|
|
|
|
|
* All functions must follow the convention that when they
|
|
|
|
|
* return a failure, they must also set the GError to a valid
|
|
|
|
|
* message. For external API however, we want to be extra
|
|
|
|
|
* careful before accessing the error instance. Use NM_G_ERROR_MSG()
|
|
|
|
|
* which is safe to use on NULL.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the error message.
|
|
|
|
|
**/
|
|
|
|
|
static inline const char *
|
|
|
|
|
NM_G_ERROR_MSG (GError *error)
|
|
|
|
|
{
|
2018-08-09 16:41:28 +02:00
|
|
|
return error ? (error->message ?: "(null)") : "(no-error)"; \
|
2016-02-28 16:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2016-02-28 16:06:05 +01:00
|
|
|
|
2014-12-17 10:38:46 +01:00
|
|
|
/* macro to return strlen() of a compile time string. */
|
2016-02-12 12:34:43 +01:00
|
|
|
#define NM_STRLEN(str) ( sizeof ("" str) - 1 )
|
2014-12-17 10:38:46 +01:00
|
|
|
|
2017-04-06 09:47:05 +02:00
|
|
|
/* returns the length of a NULL terminated array of pointers,
|
|
|
|
|
* like g_strv_length() does. The difference is:
|
|
|
|
|
* - it operats on arrays of pointers (of any kind, requiring no cast).
|
|
|
|
|
* - it accepts NULL to return zero. */
|
|
|
|
|
#define NM_PTRARRAY_LEN(array) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (*(array)) *const _array = (array); \
|
|
|
|
|
gsize _n = 0; \
|
|
|
|
|
\
|
|
|
|
|
if (_array) { \
|
2018-03-14 09:10:49 +01:00
|
|
|
_nm_unused gconstpointer _type_check_is_pointer = _array[0]; \
|
|
|
|
|
\
|
2017-04-06 09:47:05 +02:00
|
|
|
while (_array[_n]) \
|
|
|
|
|
_n++; \
|
|
|
|
|
} \
|
|
|
|
|
_n; \
|
|
|
|
|
})
|
|
|
|
|
|
2016-09-26 16:59:30 +02:00
|
|
|
/* Note: @value is only evaluated when *out_val is present.
|
|
|
|
|
* Thus,
|
|
|
|
|
* NM_SET_OUT (out_str, g_strdup ("hallo"));
|
|
|
|
|
* does the right thing.
|
|
|
|
|
*/
|
2015-08-18 16:10:38 +02:00
|
|
|
#define NM_SET_OUT(out_val, value) \
|
|
|
|
|
G_STMT_START { \
|
|
|
|
|
typeof(*(out_val)) *_out_val = (out_val); \
|
|
|
|
|
\
|
|
|
|
|
if (_out_val) { \
|
|
|
|
|
*_out_val = (value); \
|
|
|
|
|
} \
|
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2015-08-12 13:04:12 +02:00
|
|
|
|
2017-11-10 12:00:09 +01:00
|
|
|
#ifndef _NM_CC_SUPPORT_AUTO_TYPE
|
2017-11-10 09:32:14 +01:00
|
|
|
#if (defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9 )))
|
|
|
|
|
#define _NM_CC_SUPPORT_AUTO_TYPE 1
|
|
|
|
|
#else
|
|
|
|
|
#define _NM_CC_SUPPORT_AUTO_TYPE 0
|
|
|
|
|
#endif
|
2017-11-10 12:00:09 +01:00
|
|
|
#endif
|
2017-11-10 09:32:14 +01:00
|
|
|
|
2017-11-10 12:00:09 +01:00
|
|
|
#ifndef _NM_CC_SUPPORT_GENERIC
|
2017-11-10 10:00:46 +01:00
|
|
|
#if (defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9 ))) || (defined (__clang__))
|
2017-07-05 11:12:59 +02:00
|
|
|
#define _NM_CC_SUPPORT_GENERIC 1
|
|
|
|
|
#else
|
|
|
|
|
#define _NM_CC_SUPPORT_GENERIC 0
|
|
|
|
|
#endif
|
2017-11-10 12:00:09 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if _NM_CC_SUPPORT_AUTO_TYPE
|
|
|
|
|
#define _nm_auto_type __auto_type
|
|
|
|
|
#endif
|
2017-07-05 11:12:59 +02:00
|
|
|
|
|
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
2017-11-09 11:42:24 +01:00
|
|
|
#define _NM_CONSTCAST_FULL_1(type, obj_expr, obj) \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
(_Generic ((obj_expr), \
|
2017-11-09 11:42:24 +01:00
|
|
|
const void *const: ((const type *) (obj)), \
|
|
|
|
|
const void * : ((const type *) (obj)), \
|
|
|
|
|
void *const: (( type *) (obj)), \
|
|
|
|
|
void * : (( type *) (obj)), \
|
|
|
|
|
const type *const: ((const type *) (obj)), \
|
|
|
|
|
const type * : ((const type *) (obj)), \
|
|
|
|
|
type *const: (( type *) (obj)), \
|
|
|
|
|
type * : (( type *) (obj))))
|
|
|
|
|
#define _NM_CONSTCAST_FULL_2(type, obj_expr, obj, alias_type2) \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
(_Generic ((obj_expr), \
|
2017-11-09 11:42:24 +01:00
|
|
|
const void *const: ((const type *) (obj)), \
|
|
|
|
|
const void * : ((const type *) (obj)), \
|
|
|
|
|
void *const: (( type *) (obj)), \
|
|
|
|
|
void * : (( type *) (obj)), \
|
|
|
|
|
const alias_type2 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type2 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type2 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type2 * : (( type *) (obj)), \
|
|
|
|
|
const type *const: ((const type *) (obj)), \
|
|
|
|
|
const type * : ((const type *) (obj)), \
|
|
|
|
|
type *const: (( type *) (obj)), \
|
|
|
|
|
type * : (( type *) (obj))))
|
|
|
|
|
#define _NM_CONSTCAST_FULL_3(type, obj_expr, obj, alias_type2, alias_type3) \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
(_Generic ((obj_expr), \
|
2017-11-09 11:42:24 +01:00
|
|
|
const void *const: ((const type *) (obj)), \
|
|
|
|
|
const void * : ((const type *) (obj)), \
|
|
|
|
|
void *const: (( type *) (obj)), \
|
|
|
|
|
void * : (( type *) (obj)), \
|
|
|
|
|
const alias_type2 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type2 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type2 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type2 * : (( type *) (obj)), \
|
|
|
|
|
const alias_type3 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type3 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type3 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type3 * : (( type *) (obj)), \
|
|
|
|
|
const type *const: ((const type *) (obj)), \
|
|
|
|
|
const type * : ((const type *) (obj)), \
|
|
|
|
|
type *const: (( type *) (obj)), \
|
|
|
|
|
type * : (( type *) (obj))))
|
|
|
|
|
#define _NM_CONSTCAST_FULL_4(type, obj_expr, obj, alias_type2, alias_type3, alias_type4) \
|
|
|
|
|
(_Generic ((obj_expr), \
|
|
|
|
|
const void *const: ((const type *) (obj)), \
|
|
|
|
|
const void * : ((const type *) (obj)), \
|
|
|
|
|
void *const: (( type *) (obj)), \
|
|
|
|
|
void * : (( type *) (obj)), \
|
|
|
|
|
const alias_type2 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type2 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type2 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type2 * : (( type *) (obj)), \
|
|
|
|
|
const alias_type3 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type3 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type3 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type3 * : (( type *) (obj)), \
|
|
|
|
|
const alias_type4 *const: ((const type *) (obj)), \
|
|
|
|
|
const alias_type4 * : ((const type *) (obj)), \
|
|
|
|
|
alias_type4 *const: (( type *) (obj)), \
|
|
|
|
|
alias_type4 * : (( type *) (obj)), \
|
|
|
|
|
const type *const: ((const type *) (obj)), \
|
|
|
|
|
const type * : ((const type *) (obj)), \
|
|
|
|
|
type *const: (( type *) (obj)), \
|
|
|
|
|
type * : (( type *) (obj))))
|
|
|
|
|
#define _NM_CONSTCAST_FULL_x(type, obj_expr, obj, n, ...) (_NM_CONSTCAST_FULL_##n (type, obj_expr, obj, ##__VA_ARGS__))
|
|
|
|
|
#define _NM_CONSTCAST_FULL_y(type, obj_expr, obj, n, ...) (_NM_CONSTCAST_FULL_x (type, obj_expr, obj, n, ##__VA_ARGS__))
|
|
|
|
|
#define NM_CONSTCAST_FULL( type, obj_expr, obj, ...) (_NM_CONSTCAST_FULL_y (type, obj_expr, obj, NM_NARG (dummy, ##__VA_ARGS__), ##__VA_ARGS__))
|
2017-07-05 11:12:59 +02:00
|
|
|
#else
|
2017-11-09 11:42:24 +01:00
|
|
|
#define NM_CONSTCAST_FULL( type, obj_expr, obj, ...) ((type *) (obj))
|
2017-07-05 11:12:59 +02:00
|
|
|
#endif
|
|
|
|
|
|
2017-11-09 11:42:24 +01:00
|
|
|
#define NM_CONSTCAST(type, obj, ...) \
|
|
|
|
|
NM_CONSTCAST_FULL(type, (obj), (obj), ##__VA_ARGS__)
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
|
2018-01-28 09:08:20 +01:00
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
|
|
|
|
#define NM_UNCONST_PTR(type, arg) \
|
|
|
|
|
_Generic ((arg), \
|
|
|
|
|
const type *: ((type *) (arg)), \
|
|
|
|
|
type *: ((type *) (arg)))
|
|
|
|
|
#else
|
|
|
|
|
#define NM_UNCONST_PTR(type, arg) \
|
|
|
|
|
((type *) (arg))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
|
|
|
|
#define NM_UNCONST_PPTR(type, arg) \
|
|
|
|
|
_Generic ((arg), \
|
|
|
|
|
const type * *: ((type **) (arg)), \
|
|
|
|
|
type * *: ((type **) (arg)), \
|
|
|
|
|
const type *const*: ((type **) (arg)), \
|
|
|
|
|
type *const*: ((type **) (arg)))
|
|
|
|
|
#else
|
|
|
|
|
#define NM_UNCONST_PPTR(type, arg) \
|
|
|
|
|
((type **) (arg))
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-09 11:42:24 +01:00
|
|
|
#define NM_GOBJECT_CAST(type, obj, is_check, ...) \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
({ \
|
|
|
|
|
const void *_obj = (obj); \
|
|
|
|
|
\
|
2017-11-09 11:42:24 +01:00
|
|
|
nm_assert (_obj || (is_check (_obj))); \
|
|
|
|
|
NM_CONSTCAST_FULL (type, (obj), _obj, GObject, ##__VA_ARGS__); \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
})
|
2017-11-09 11:42:24 +01:00
|
|
|
|
|
|
|
|
#define NM_GOBJECT_CAST_NON_NULL(type, obj, is_check, ...) \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
({ \
|
|
|
|
|
const void *_obj = (obj); \
|
|
|
|
|
\
|
|
|
|
|
nm_assert (is_check (_obj)); \
|
2017-11-09 11:42:24 +01:00
|
|
|
NM_CONSTCAST_FULL (type, (obj), _obj, GObject, ##__VA_ARGS__); \
|
shared: rework _NM_GET_PRIVATE() to use _Generic()
_NM_GET_PRIVATE() used typeof() to propagate constness of the @self
pointer. However, that means, it could only be used with a self pointer
of the exact type. That means, you explicitly had to cast from (GObject *)
or from (void *).
The requirement is cumbersome, and often led us to either create @self
pointer we didn't need:
NMDeviceVlan *self = NM_DEVICE_VLAN (device);
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE (self);
or casting:
NMDeviceVlanPrivate *priv = NM_DEVICE_VLAN_GET_PRIVATE ((NMDevice *) device);
In both cases we forcefully cast the source variable, loosing help from
the compiler to detect a bug.
For "nm-linux-platform.c", instead we commonly have a pointer of type
NMPlatform. Hence, we always forcefully cast the type via _NM_GET_PRIVATE_VOID().
Rework the macro to use _Generic(). If compiler supports _Generic(), then we
will get all compile time checks as desired. If the compiler doesn't support
_Generic(), it will still work. You don't get the compile-time checking of course,
but you'd notice that something is wrong once you build with a suitable
compiler.
2017-11-09 10:05:00 +01:00
|
|
|
})
|
|
|
|
|
|
2017-10-17 19:59:53 +02:00
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
|
|
|
|
/* returns @value, if the type of @value matches @type.
|
|
|
|
|
* This requires support for C11 _Generic(). If no support is
|
|
|
|
|
* present, this returns @value directly.
|
|
|
|
|
*
|
|
|
|
|
* It's useful to check the let the compiler ensure that @value is
|
|
|
|
|
* of a certain type. */
|
|
|
|
|
#define _NM_ENSURE_TYPE(type, value) (_Generic ((value), type: (value)))
|
|
|
|
|
#else
|
|
|
|
|
#define _NM_ENSURE_TYPE(type, value) (value)
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-11 14:23:04 +02:00
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
|
|
|
|
/* these macros cast (value) to
|
|
|
|
|
* - "const char **" (for "MC", mutable-const)
|
|
|
|
|
* - "const char *const*" (for "CC", const-const)
|
|
|
|
|
* The point is to do this cast, but only accepting pointers
|
|
|
|
|
* that are compatible already.
|
|
|
|
|
*
|
|
|
|
|
* The problem is, if you add a function like g_strdupv(), the input
|
|
|
|
|
* argument is not modified (CC), but you want to make it work also
|
|
|
|
|
* for "char **". C doesn't allow this form of casting (for good reasons),
|
|
|
|
|
* so the function makes a choice like g_strdupv(char**). That means,
|
|
|
|
|
* every time you want to call ith with a const argument, you need to
|
|
|
|
|
* explicitly cast it.
|
|
|
|
|
*
|
|
|
|
|
* These macros do the cast, but they only accept a compatible input
|
|
|
|
|
* type, otherwise they will fail compilation.
|
|
|
|
|
*/
|
|
|
|
|
#define NM_CAST_STRV_MC(value) \
|
|
|
|
|
(_Generic ((value), \
|
|
|
|
|
const char * *: (const char * *) (value), \
|
|
|
|
|
char * *: (const char * *) (value), \
|
|
|
|
|
void *: (const char * *) (value)))
|
|
|
|
|
#define NM_CAST_STRV_CC(value) \
|
|
|
|
|
(_Generic ((value), \
|
|
|
|
|
const char *const*: (const char *const*) (value), \
|
|
|
|
|
const char * *: (const char *const*) (value), \
|
|
|
|
|
char *const*: (const char *const*) (value), \
|
|
|
|
|
char * *: (const char *const*) (value), \
|
|
|
|
|
const void *: (const char *const*) (value), \
|
|
|
|
|
void *: (const char *const*) (value)))
|
|
|
|
|
#else
|
|
|
|
|
#define NM_CAST_STRV_MC(value) ((const char * *) (value))
|
|
|
|
|
#define NM_CAST_STRV_CC(value) ((const char *const*) (value))
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-10 09:32:14 +01:00
|
|
|
#if _NM_CC_SUPPORT_GENERIC
|
|
|
|
|
#define NM_PROPAGATE_CONST(test_expr, ptr) \
|
|
|
|
|
(_Generic ((test_expr), \
|
|
|
|
|
const typeof (*(test_expr)) *: ((const typeof (*(ptr)) *) (ptr)), \
|
|
|
|
|
default: (_Generic ((test_expr), \
|
|
|
|
|
typeof (*(test_expr)) *: (ptr)))))
|
|
|
|
|
#else
|
|
|
|
|
#define NM_PROPAGATE_CONST(test_expr, ptr) (ptr)
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-07-05 11:12:59 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-09-22 14:14:22 +02:00
|
|
|
#define _NM_IN_SET_EVAL_1( op, _x, y) (_x == (y))
|
|
|
|
|
#define _NM_IN_SET_EVAL_2( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_1 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_3( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_2 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_4( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_3 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_5( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_4 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_6( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_5 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_7( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_6 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_8( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_7 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_9( op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_8 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_10(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_9 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_11(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_10 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_12(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_11 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_13(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_12 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_14(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_13 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_15(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_14 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_SET_EVAL_16(op, _x, y, ...) (_x == (y)) op _NM_IN_SET_EVAL_15 (op, _x, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
#define _NM_IN_SET_EVAL_N2(op, _x, n, ...) (_NM_IN_SET_EVAL_##n(op, _x, __VA_ARGS__))
|
2017-03-14 15:42:36 +01:00
|
|
|
#define _NM_IN_SET_EVAL_N(op, type, x, n, ...) \
|
2016-02-11 17:24:33 +01:00
|
|
|
({ \
|
2017-03-14 15:42:36 +01:00
|
|
|
type _x = (x); \
|
|
|
|
|
\
|
|
|
|
|
/* trigger a -Wenum-compare warning */ \
|
|
|
|
|
nm_assert (TRUE || _x == (x)); \
|
|
|
|
|
\
|
2016-02-11 17:24:33 +01:00
|
|
|
!!_NM_IN_SET_EVAL_N2(op, _x, n, __VA_ARGS__); \
|
2015-08-12 13:04:12 +02:00
|
|
|
})
|
|
|
|
|
|
2017-03-14 15:42:36 +01:00
|
|
|
#define _NM_IN_SET(op, type, x, ...) _NM_IN_SET_EVAL_N(op, type, x, NM_NARG (__VA_ARGS__), __VA_ARGS__)
|
|
|
|
|
|
2015-08-12 13:04:12 +02:00
|
|
|
/* Beware that this does short-circuit evaluation (use "||" instead of "|")
|
|
|
|
|
* which has a possibly unexpected non-function-like behavior.
|
|
|
|
|
* Use NM_IN_SET_SE if you need all arguments to be evaluted. */
|
2017-03-14 15:42:36 +01:00
|
|
|
#define NM_IN_SET(x, ...) _NM_IN_SET(||, typeof (x), x, __VA_ARGS__)
|
2015-08-12 13:04:12 +02:00
|
|
|
|
|
|
|
|
/* "SE" stands for "side-effect". Contrary to NM_IN_SET(), this does not do
|
|
|
|
|
* short-circuit evaluation, which can make a difference if the arguments have
|
|
|
|
|
* side-effects. */
|
2017-03-14 15:42:36 +01:00
|
|
|
#define NM_IN_SET_SE(x, ...) _NM_IN_SET(|, typeof (x), x, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
/* the *_TYPED forms allow to explicitly select the type of "x". This is useful
|
|
|
|
|
* if "x" doesn't support typeof (bitfields) or you want to gracefully convert
|
|
|
|
|
* a type using automatic type conversion rules (but not forcing the conversion
|
|
|
|
|
* with a cast). */
|
|
|
|
|
#define NM_IN_SET_TYPED(type, x, ...) _NM_IN_SET(||, type, x, __VA_ARGS__)
|
|
|
|
|
#define NM_IN_SET_SE_TYPED(type, x, ...) _NM_IN_SET(|, type, x, __VA_ARGS__)
|
2015-08-12 13:04:12 +02:00
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2016-02-11 16:53:06 +01:00
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
|
_NM_IN_STRSET_streq (const char *x, const char *s)
|
|
|
|
|
{
|
|
|
|
|
return s && strcmp (x, s) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-22 14:14:22 +02:00
|
|
|
#define _NM_IN_STRSET_EVAL_1( op, _x, y) _NM_IN_STRSET_streq (_x, y)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_2( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_1 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_3( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_2 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_4( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_3 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_5( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_4 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_6( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_5 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_7( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_6 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_8( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_7 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_9( op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_8 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_10(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_9 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_11(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_10 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_12(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_11 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_13(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_12 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_14(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_13 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_15(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_14 (op, _x, __VA_ARGS__)
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_16(op, _x, y, ...) _NM_IN_STRSET_streq (_x, y) op _NM_IN_STRSET_EVAL_15 (op, _x, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
#define _NM_IN_STRSET_EVAL_N2(op, _x, n, ...) (_NM_IN_STRSET_EVAL_##n(op, _x, __VA_ARGS__))
|
2016-02-11 16:53:06 +01:00
|
|
|
#define _NM_IN_STRSET_EVAL_N(op, x, n, ...) \
|
|
|
|
|
({ \
|
|
|
|
|
const char *_x = (x); \
|
2017-03-14 15:42:36 +01:00
|
|
|
( ((_x == NULL) && _NM_IN_SET_EVAL_N2 (op, ((const char *) NULL), n, __VA_ARGS__)) \
|
|
|
|
|
|| ((_x != NULL) && _NM_IN_STRSET_EVAL_N2 (op, _x, n, __VA_ARGS__)) \
|
2016-02-11 16:53:06 +01:00
|
|
|
); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/* Beware that this does short-circuit evaluation (use "||" instead of "|")
|
|
|
|
|
* which has a possibly unexpected non-function-like behavior.
|
|
|
|
|
* Use NM_IN_STRSET_SE if you need all arguments to be evaluted. */
|
|
|
|
|
#define NM_IN_STRSET(x, ...) _NM_IN_STRSET_EVAL_N(||, x, NM_NARG (__VA_ARGS__), __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
/* "SE" stands for "side-effect". Contrary to NM_IN_STRSET(), this does not do
|
|
|
|
|
* short-circuit evaluation, which can make a difference if the arguments have
|
|
|
|
|
* side-effects. */
|
|
|
|
|
#define NM_IN_STRSET_SE(x, ...) _NM_IN_STRSET_EVAL_N(|, x, NM_NARG (__VA_ARGS__), __VA_ARGS__)
|
|
|
|
|
|
2016-10-28 18:16:02 +02:00
|
|
|
#define NM_STRCHAR_ALL(str, ch_iter, predicate) \
|
|
|
|
|
({ \
|
|
|
|
|
gboolean _val = TRUE; \
|
|
|
|
|
const char *_str = (str); \
|
|
|
|
|
\
|
|
|
|
|
if (_str) { \
|
|
|
|
|
for (;;) { \
|
|
|
|
|
const char ch_iter = _str[0]; \
|
|
|
|
|
\
|
|
|
|
|
if (ch_iter != '\0') { \
|
|
|
|
|
if (predicate) {\
|
|
|
|
|
_str++; \
|
|
|
|
|
continue; \
|
|
|
|
|
} \
|
|
|
|
|
_val = FALSE; \
|
|
|
|
|
} \
|
|
|
|
|
break; \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
_val; \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
#define NM_STRCHAR_ANY(str, ch_iter, predicate) \
|
|
|
|
|
({ \
|
|
|
|
|
gboolean _val = FALSE; \
|
|
|
|
|
const char *_str = (str); \
|
|
|
|
|
\
|
|
|
|
|
if (_str) { \
|
|
|
|
|
for (;;) { \
|
|
|
|
|
const char ch_iter = _str[0]; \
|
|
|
|
|
\
|
|
|
|
|
if (ch_iter != '\0') { \
|
|
|
|
|
if (predicate) { \
|
|
|
|
|
; \
|
|
|
|
|
} else { \
|
|
|
|
|
_str++; \
|
|
|
|
|
continue; \
|
|
|
|
|
} \
|
|
|
|
|
_val = TRUE; \
|
|
|
|
|
} \
|
|
|
|
|
break; \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
_val; \
|
|
|
|
|
})
|
|
|
|
|
|
2015-08-12 13:04:12 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2017-02-02 19:03:38 +01:00
|
|
|
/* NM_CACHED_QUARK() returns the GQuark for @string, but caches
|
|
|
|
|
* it in a static variable to speed up future lookups.
|
|
|
|
|
*
|
|
|
|
|
* @string must be a string literal.
|
|
|
|
|
*/
|
|
|
|
|
#define NM_CACHED_QUARK(string) \
|
|
|
|
|
({ \
|
|
|
|
|
static GQuark _nm_cached_quark = 0; \
|
|
|
|
|
\
|
|
|
|
|
(G_LIKELY (_nm_cached_quark != 0) \
|
|
|
|
|
? _nm_cached_quark \
|
|
|
|
|
: (_nm_cached_quark = g_quark_from_static_string (""string""))); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/* NM_CACHED_QUARK_FCN() is essentially the same as G_DEFINE_QUARK
|
|
|
|
|
* with two differences:
|
2017-12-05 12:37:16 +01:00
|
|
|
* - @string must be a quoted string-literal
|
2017-02-02 19:03:38 +01:00
|
|
|
* - @fcn must be the full function name, while G_DEFINE_QUARK() appends
|
|
|
|
|
* "_quark" to the function name.
|
|
|
|
|
* Both properties of G_DEFINE_QUARK() are non favorable, because you can no
|
|
|
|
|
* longer grep for string/fcn -- unless you are aware that you are searching
|
|
|
|
|
* for G_DEFINE_QUARK() and omit quotes / append _quark(). With NM_CACHED_QUARK_FCN(),
|
|
|
|
|
* ctags/cscope can locate the use of @fcn (though it doesn't recognize that
|
|
|
|
|
* NM_CACHED_QUARK_FCN() defines it).
|
|
|
|
|
*/
|
|
|
|
|
#define NM_CACHED_QUARK_FCN(string, fcn) \
|
|
|
|
|
GQuark \
|
|
|
|
|
fcn (void) \
|
|
|
|
|
{ \
|
|
|
|
|
return NM_CACHED_QUARK (string); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-02-12 12:34:31 +01:00
|
|
|
#define nm_streq(s1, s2) (strcmp (s1, s2) == 0)
|
|
|
|
|
#define nm_streq0(s1, s2) (g_strcmp0 (s1, s2) == 0)
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2017-06-14 13:20:49 +02:00
|
|
|
static inline GString *
|
|
|
|
|
nm_gstring_prepare (GString **l)
|
|
|
|
|
{
|
|
|
|
|
if (*l)
|
|
|
|
|
g_string_set_size (*l, 0);
|
|
|
|
|
else
|
|
|
|
|
*l = g_string_sized_new (30);
|
|
|
|
|
return *l;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-12 18:53:08 +02:00
|
|
|
static inline const char *
|
|
|
|
|
nm_str_not_empty (const char *str)
|
|
|
|
|
{
|
|
|
|
|
return str && str[0] ? str : NULL;
|
|
|
|
|
}
|
2016-09-02 14:58:56 +02:00
|
|
|
|
|
|
|
|
static inline char *
|
|
|
|
|
nm_strdup_not_empty (const char *str)
|
|
|
|
|
{
|
|
|
|
|
return str && str[0] ? g_strdup (str) : NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-07 17:48:46 +01:00
|
|
|
static inline char *
|
|
|
|
|
nm_str_realloc (char *str)
|
|
|
|
|
{
|
|
|
|
|
gs_free char *s = str;
|
|
|
|
|
|
|
|
|
|
/* Returns a new clone of @str and frees @str. The point is that @str
|
|
|
|
|
* possibly points to a larger chunck of memory. We want to freshly allocate
|
|
|
|
|
* a buffer.
|
|
|
|
|
*
|
|
|
|
|
* We could use realloc(), but that might not do anything or leave
|
|
|
|
|
* @str in its memory pool for chunks of a different size (bad for
|
|
|
|
|
* fragmentation).
|
|
|
|
|
*
|
|
|
|
|
* This is only useful when we want to keep the buffer around for a long
|
|
|
|
|
* time and want to re-allocate a more optimal buffer. */
|
|
|
|
|
|
|
|
|
|
return g_strdup (s);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 14:58:56 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2015-06-17 17:43:18 +02:00
|
|
|
#define NM_PRINT_FMT_QUOTED(cond, prefix, str, suffix, str_else) \
|
|
|
|
|
(cond) ? (prefix) : "", \
|
|
|
|
|
(cond) ? (str) : (str_else), \
|
|
|
|
|
(cond) ? (suffix) : ""
|
2015-08-21 14:08:22 +02:00
|
|
|
#define NM_PRINT_FMT_QUOTE_STRING(arg) NM_PRINT_FMT_QUOTED((arg), "\"", (arg), "\"", "(null)")
|
2015-06-17 17:43:18 +02:00
|
|
|
|
2015-01-05 17:20:03 +01:00
|
|
|
/*****************************************************************************/
|
2015-04-10 07:25:03 +02:00
|
|
|
|
2016-05-14 23:01:21 +02:00
|
|
|
/* glib/C provides the following kind of assertions:
|
|
|
|
|
* - assert() -- disable with NDEBUG
|
|
|
|
|
* - g_return_if_fail() -- disable with G_DISABLE_CHECKS
|
|
|
|
|
* - g_assert() -- disable with G_DISABLE_ASSERT
|
|
|
|
|
* but they are all enabled by default and usually even production builds have
|
|
|
|
|
* these kind of assertions enabled. It also means, that disabling assertions
|
|
|
|
|
* is an untested configuration, and might have bugs.
|
|
|
|
|
*
|
|
|
|
|
* Add our own assertion macro nm_assert(), which is disabled by default and must
|
|
|
|
|
* be explicitly enabled. They are useful for more expensive checks or checks that
|
|
|
|
|
* depend less on runtime conditions (that is, are generally expected to be true). */
|
|
|
|
|
|
|
|
|
|
#ifndef NM_MORE_ASSERTS
|
|
|
|
|
#define NM_MORE_ASSERTS 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-10-05 13:48:01 +02:00
|
|
|
#if NM_MORE_ASSERTS
|
2015-04-10 07:25:03 +02:00
|
|
|
#define nm_assert(cond) G_STMT_START { g_assert (cond); } G_STMT_END
|
2016-10-26 14:44:02 +02:00
|
|
|
#define nm_assert_se(cond) G_STMT_START { if (G_LIKELY (cond)) { ; } else { g_assert (FALSE && (cond)); } } G_STMT_END
|
2016-03-16 14:50:23 +01:00
|
|
|
#define nm_assert_not_reached() G_STMT_START { g_assert_not_reached (); } G_STMT_END
|
2015-04-10 07:25:03 +02:00
|
|
|
#else
|
2015-05-26 18:08:04 +02:00
|
|
|
#define nm_assert(cond) G_STMT_START { if (FALSE) { if (cond) { } } } G_STMT_END
|
2016-10-26 14:44:02 +02:00
|
|
|
#define nm_assert_se(cond) G_STMT_START { if (G_LIKELY (cond)) { ; } } G_STMT_END
|
2016-03-16 14:50:23 +01:00
|
|
|
#define nm_assert_not_reached() G_STMT_START { ; } G_STMT_END
|
2015-04-10 07:25:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2015-01-05 17:20:03 +01:00
|
|
|
|
2016-02-19 19:59:05 +01:00
|
|
|
#define NM_GOBJECT_PROPERTIES_DEFINE_BASE(...) \
|
2016-01-19 16:43:51 +01:00
|
|
|
typedef enum { \
|
2018-09-01 19:18:51 +02:00
|
|
|
PROP_0, \
|
2016-01-19 16:43:51 +01:00
|
|
|
__VA_ARGS__ \
|
|
|
|
|
_PROPERTY_ENUMS_LAST, \
|
|
|
|
|
} _PropertyEnums; \
|
2016-02-19 19:59:05 +01:00
|
|
|
static GParamSpec *obj_properties[_PROPERTY_ENUMS_LAST] = { NULL, }
|
|
|
|
|
|
|
|
|
|
#define NM_GOBJECT_PROPERTIES_DEFINE(obj_type, ...) \
|
|
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE_BASE (__VA_ARGS__); \
|
2016-01-19 16:43:51 +01:00
|
|
|
static inline void \
|
2018-07-15 07:25:36 +02:00
|
|
|
_nm_gobject_notify_together_impl (obj_type *obj, guint n, const _PropertyEnums *props) \
|
2016-01-19 16:43:51 +01:00
|
|
|
{ \
|
2018-07-15 07:25:36 +02:00
|
|
|
const gboolean freeze_thaw = (n > 1); \
|
|
|
|
|
\
|
2016-01-19 16:43:51 +01:00
|
|
|
nm_assert (G_IS_OBJECT (obj)); \
|
2018-07-15 07:25:36 +02:00
|
|
|
nm_assert (n > 0); \
|
|
|
|
|
\
|
|
|
|
|
if (freeze_thaw) \
|
|
|
|
|
g_object_freeze_notify ((GObject *) obj); \
|
|
|
|
|
while (n-- > 0) { \
|
|
|
|
|
const _PropertyEnums prop = *props++; \
|
|
|
|
|
\
|
2018-09-01 19:18:51 +02:00
|
|
|
if (prop != PROP_0) { \
|
|
|
|
|
nm_assert ((gsize) prop < G_N_ELEMENTS (obj_properties)); \
|
|
|
|
|
nm_assert (obj_properties[prop]); \
|
|
|
|
|
g_object_notify_by_pspec ((GObject *) obj, obj_properties[prop]); \
|
|
|
|
|
} \
|
2018-07-15 07:25:36 +02:00
|
|
|
} \
|
|
|
|
|
if (freeze_thaw) \
|
|
|
|
|
g_object_thaw_notify ((GObject *) obj); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static inline void \
|
|
|
|
|
_notify (obj_type *obj, _PropertyEnums prop) \
|
|
|
|
|
{ \
|
|
|
|
|
_nm_gobject_notify_together_impl (obj, 1, &prop); \
|
|
|
|
|
} \
|
|
|
|
|
|
|
|
|
|
/* invokes _notify() for all arguments (of type _PropertyEnums). Note, that if
|
|
|
|
|
* there are more than one prop arguments, this will involve a freeze/thaw
|
|
|
|
|
* of GObject property notifications. */
|
|
|
|
|
#define nm_gobject_notify_together(obj, ...) \
|
|
|
|
|
_nm_gobject_notify_together_impl (obj, NM_NARG (__VA_ARGS__), (const _PropertyEnums[]) { __VA_ARGS__ })
|
2016-01-19 16:43:51 +01:00
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2017-11-10 09:32:14 +01:00
|
|
|
#define _NM_GET_PRIVATE(self, type, is_check, ...) (&(NM_GOBJECT_CAST_NON_NULL (type, (self), is_check, ##__VA_ARGS__)->_priv))
|
|
|
|
|
#if _NM_CC_SUPPORT_AUTO_TYPE
|
|
|
|
|
#define _NM_GET_PRIVATE_PTR(self, type, is_check, ...) \
|
|
|
|
|
({ \
|
|
|
|
|
_nm_auto_type _self = NM_GOBJECT_CAST_NON_NULL (type, (self), is_check, ##__VA_ARGS__); \
|
|
|
|
|
\
|
|
|
|
|
NM_PROPAGATE_CONST (_self, _self->_priv); \
|
|
|
|
|
})
|
|
|
|
|
#else
|
|
|
|
|
#define _NM_GET_PRIVATE_PTR(self, type, is_check, ...) (NM_GOBJECT_CAST_NON_NULL (type, (self), is_check, ##__VA_ARGS__)->_priv)
|
|
|
|
|
#endif
|
2017-03-10 10:49:28 +01:00
|
|
|
|
2016-09-05 16:49:50 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-03-12 15:38:53 +01:00
|
|
|
static inline gpointer
|
|
|
|
|
nm_g_object_ref (gpointer obj)
|
|
|
|
|
{
|
|
|
|
|
/* g_object_ref() doesn't accept NULL. */
|
|
|
|
|
if (obj)
|
|
|
|
|
g_object_ref (obj);
|
|
|
|
|
return obj;
|
|
|
|
|
}
|
2017-12-06 10:04:50 +01:00
|
|
|
#define nm_g_object_ref(obj) ((typeof (obj)) nm_g_object_ref (obj))
|
2016-03-12 15:38:53 +01:00
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
nm_g_object_unref (gpointer obj)
|
|
|
|
|
{
|
|
|
|
|
/* g_object_unref() doesn't accept NULL. Usully, we workaround that
|
|
|
|
|
* by using g_clear_object(), but sometimes that is not convinient
|
|
|
|
|
* (for example as as destroy function for a hash table that can contain
|
|
|
|
|
* NULL values). */
|
|
|
|
|
if (obj)
|
|
|
|
|
g_object_unref (obj);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-14 11:32:56 +02:00
|
|
|
/* Assigns GObject @obj to destination @pp, and takes an additional ref.
|
|
|
|
|
* The previous value of @pp is unrefed.
|
2017-09-06 15:32:52 +02:00
|
|
|
*
|
|
|
|
|
* It makes sure to first increase the ref-count of @obj, and handles %NULL
|
|
|
|
|
* @obj correctly.
|
|
|
|
|
* */
|
|
|
|
|
#define nm_g_object_ref_set(pp, obj) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (*(pp)) *const _pp = (pp); \
|
2018-06-14 11:32:56 +02:00
|
|
|
typeof (*_pp) const _obj = (obj); \
|
|
|
|
|
typeof (*_pp) _p; \
|
2017-09-06 15:32:52 +02:00
|
|
|
gboolean _changed = FALSE; \
|
|
|
|
|
\
|
2018-06-14 11:32:56 +02:00
|
|
|
nm_assert (!_pp || !*_pp || G_IS_OBJECT (*_pp)); \
|
|
|
|
|
nm_assert (!_obj || G_IS_OBJECT (_obj)); \
|
|
|
|
|
\
|
2017-09-06 15:32:52 +02:00
|
|
|
if ( _pp \
|
|
|
|
|
&& ((_p = *_pp) != _obj)) { \
|
2018-06-14 11:32:56 +02:00
|
|
|
nm_g_object_ref (_obj); \
|
2017-09-06 15:32:52 +02:00
|
|
|
*_pp = _obj; \
|
2018-06-14 11:32:56 +02:00
|
|
|
nm_g_object_unref (_p); \
|
2017-09-06 15:32:52 +02:00
|
|
|
_changed = TRUE; \
|
|
|
|
|
} \
|
|
|
|
|
_changed; \
|
|
|
|
|
})
|
|
|
|
|
|
2018-03-19 12:33:45 +01:00
|
|
|
#define nm_clear_pointer(pp, destroy) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (*(pp)) *_pp = (pp); \
|
|
|
|
|
typeof (*_pp) _p; \
|
|
|
|
|
gboolean _changed = FALSE; \
|
|
|
|
|
\
|
|
|
|
|
if ( _pp \
|
|
|
|
|
&& (_p = *_pp)) { \
|
|
|
|
|
_nm_unused gconstpointer _p_check_is_pointer = _p; \
|
|
|
|
|
\
|
|
|
|
|
*_pp = NULL; \
|
|
|
|
|
/* g_clear_pointer() assigns @destroy first to a local variable, so that
|
|
|
|
|
* you can call "g_clear_pointer (pp, (GDestroyNotify) destroy);" without
|
|
|
|
|
* gcc emitting a warning. We don't do that, hence, you cannot cast
|
|
|
|
|
* "destroy" first.
|
|
|
|
|
*
|
|
|
|
|
* On the upside: you are not supposed to cast fcn, because the pointer
|
|
|
|
|
* types are preserved. If you really need a cast, you should cast @pp.
|
|
|
|
|
* But that is hardly ever necessary. */ \
|
|
|
|
|
(destroy) (_p); \
|
|
|
|
|
\
|
|
|
|
|
_changed = TRUE; \
|
|
|
|
|
} \
|
|
|
|
|
_changed; \
|
|
|
|
|
})
|
|
|
|
|
|
2016-09-28 15:34:52 +02:00
|
|
|
/* basically, replaces
|
|
|
|
|
* g_clear_pointer (&location, g_free)
|
|
|
|
|
* with
|
|
|
|
|
* nm_clear_g_free (&location)
|
|
|
|
|
*
|
|
|
|
|
* Another advantage is that by using a macro and typeof(), it is more
|
|
|
|
|
* typesafe and gives you for example a compiler warning when pp is a const
|
|
|
|
|
* pointer or points to a const-pointer.
|
|
|
|
|
*/
|
|
|
|
|
#define nm_clear_g_free(pp) \
|
2018-03-19 12:33:45 +01:00
|
|
|
nm_clear_pointer (pp, g_free)
|
2017-09-06 15:32:52 +02:00
|
|
|
|
|
|
|
|
#define nm_clear_g_object(pp) \
|
2018-03-19 12:33:45 +01:00
|
|
|
nm_clear_pointer (pp, g_object_unref)
|
2016-09-28 15:34:52 +02:00
|
|
|
|
2015-04-28 17:59:07 +02:00
|
|
|
static inline gboolean
|
|
|
|
|
nm_clear_g_source (guint *id)
|
|
|
|
|
{
|
2018-03-19 13:14:47 +01:00
|
|
|
guint v;
|
|
|
|
|
|
|
|
|
|
if ( id
|
|
|
|
|
&& (v = *id)) {
|
2015-04-28 17:59:07 +02:00
|
|
|
*id = 0;
|
2018-03-19 13:14:47 +01:00
|
|
|
g_source_remove (v);
|
2015-04-28 17:59:07 +02:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-01 16:41:09 +02:00
|
|
|
static inline gboolean
|
2016-01-04 10:29:06 +01:00
|
|
|
nm_clear_g_signal_handler (gpointer self, gulong *id)
|
2015-10-01 16:41:09 +02:00
|
|
|
{
|
2018-03-19 13:14:47 +01:00
|
|
|
gulong v;
|
|
|
|
|
|
|
|
|
|
if ( id
|
|
|
|
|
&& (v = *id)) {
|
2015-10-01 16:41:09 +02:00
|
|
|
*id = 0;
|
2018-03-19 13:14:47 +01:00
|
|
|
g_signal_handler_disconnect (self, v);
|
2015-10-01 16:41:09 +02:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-08 15:18:25 +02:00
|
|
|
static inline gboolean
|
|
|
|
|
nm_clear_g_variant (GVariant **variant)
|
|
|
|
|
{
|
2018-03-19 13:14:47 +01:00
|
|
|
GVariant *v;
|
|
|
|
|
|
|
|
|
|
if ( variant
|
|
|
|
|
&& (v = *variant)) {
|
2015-10-08 15:18:25 +02:00
|
|
|
*variant = NULL;
|
2018-03-19 13:14:47 +01:00
|
|
|
g_variant_unref (v);
|
2015-10-08 15:18:25 +02:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-30 11:52:06 +01:00
|
|
|
static inline gboolean
|
|
|
|
|
nm_clear_g_cancellable (GCancellable **cancellable)
|
|
|
|
|
{
|
2018-03-19 13:14:47 +01:00
|
|
|
GCancellable *v;
|
|
|
|
|
|
|
|
|
|
if ( cancellable
|
|
|
|
|
&& (v = *cancellable)) {
|
2015-10-30 11:52:06 +01:00
|
|
|
*cancellable = NULL;
|
2018-03-19 13:14:47 +01:00
|
|
|
g_cancellable_cancel (v);
|
|
|
|
|
g_object_unref (v);
|
2015-10-30 11:52:06 +01:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 17:59:07 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2015-05-12 09:24:05 +02:00
|
|
|
/* Determine whether @x is a power of two (@x being an integer type).
|
2017-05-22 13:28:35 +02:00
|
|
|
* Basically, this returns TRUE, if @x has exactly one bit set.
|
|
|
|
|
* For negative values and zero, this always returns FALSE. */
|
2015-05-12 09:24:05 +02:00
|
|
|
#define nm_utils_is_power_of_two(x) ({ \
|
2015-12-04 16:57:38 +01:00
|
|
|
typeof(x) __x = (x); \
|
2015-05-12 09:24:05 +02:00
|
|
|
\
|
2017-05-22 13:28:35 +02:00
|
|
|
( (__x > ((typeof(__x)) 0)) \
|
|
|
|
|
&& ((__x & (__x - (((typeof(__x)) 1)))) == ((typeof(__x)) 0))); \
|
2015-05-12 09:24:05 +02:00
|
|
|
})
|
|
|
|
|
|
2018-08-07 09:21:45 +02:00
|
|
|
#define NM_DIV_ROUND_UP(x, y) \
|
|
|
|
|
({ \
|
|
|
|
|
const typeof(x) _x = (x); \
|
|
|
|
|
const typeof(y) _y = (y); \
|
|
|
|
|
\
|
|
|
|
|
(_x / _y + !!(_x % _y)); \
|
|
|
|
|
})
|
|
|
|
|
|
2015-05-12 09:24:05 +02:00
|
|
|
/*****************************************************************************/
|
2017-04-04 14:41:12 +02:00
|
|
|
|
|
|
|
|
#define NM_UTILS_LOOKUP_DEFAULT(v) return (v)
|
|
|
|
|
#define NM_UTILS_LOOKUP_DEFAULT_WARN(v) g_return_val_if_reached (v)
|
|
|
|
|
#define NM_UTILS_LOOKUP_DEFAULT_NM_ASSERT(v) { nm_assert_not_reached (); return (v); }
|
|
|
|
|
#define NM_UTILS_LOOKUP_ITEM(v, n) (void) 0; case v: return (n); (void) 0
|
|
|
|
|
#define NM_UTILS_LOOKUP_STR_ITEM(v, n) NM_UTILS_LOOKUP_ITEM(v, ""n"")
|
|
|
|
|
#define NM_UTILS_LOOKUP_ITEM_IGNORE(v) (void) 0; case v: break; (void) 0
|
|
|
|
|
#define NM_UTILS_LOOKUP_ITEM_IGNORE_OTHER() (void) 0; default: break; (void) 0
|
|
|
|
|
|
|
|
|
|
#define _NM_UTILS_LOOKUP_DEFINE(scope, fcn_name, lookup_type, result_type, unknown_val, ...) \
|
|
|
|
|
scope result_type \
|
|
|
|
|
fcn_name (lookup_type val) \
|
|
|
|
|
{ \
|
|
|
|
|
switch (val) { \
|
|
|
|
|
(void) 0, \
|
|
|
|
|
__VA_ARGS__ \
|
|
|
|
|
(void) 0; \
|
|
|
|
|
}; \
|
|
|
|
|
{ unknown_val; } \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define NM_UTILS_LOOKUP_STR_DEFINE(fcn_name, lookup_type, unknown_val, ...) \
|
|
|
|
|
_NM_UTILS_LOOKUP_DEFINE (, fcn_name, lookup_type, const char *, unknown_val, __VA_ARGS__)
|
|
|
|
|
#define NM_UTILS_LOOKUP_STR_DEFINE_STATIC(fcn_name, lookup_type, unknown_val, ...) \
|
|
|
|
|
_NM_UTILS_LOOKUP_DEFINE (static, fcn_name, lookup_type, const char *, unknown_val, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
/* Call the string-lookup-table function @fcn_name. If the function returns
|
|
|
|
|
* %NULL, the numeric index is converted to string using a alloca() buffer.
|
|
|
|
|
* Beware: this macro uses alloca(). */
|
|
|
|
|
#define NM_UTILS_LOOKUP_STR(fcn_name, idx) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (idx) _idx = (idx); \
|
|
|
|
|
const char *_s; \
|
|
|
|
|
\
|
|
|
|
|
_s = fcn_name (_idx); \
|
|
|
|
|
if (!_s) { \
|
|
|
|
|
_s = g_alloca (30); \
|
|
|
|
|
\
|
|
|
|
|
g_snprintf ((char *) _s, 30, "(%lld)", (long long) _idx); \
|
|
|
|
|
} \
|
|
|
|
|
_s; \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2015-05-12 09:24:05 +02:00
|
|
|
|
2015-05-25 11:19:28 +02:00
|
|
|
/* check if @flags has exactly one flag (@check) set. You should call this
|
|
|
|
|
* only with @check being a compile time constant and a power of two. */
|
|
|
|
|
#define NM_FLAGS_HAS(flags, check) \
|
2017-03-23 17:25:04 +01:00
|
|
|
( G_STATIC_ASSERT_EXPR ((check) > 0 && ((check) & ((check) - 1)) == 0), NM_FLAGS_ANY ((flags), (check)) )
|
2015-05-25 11:19:28 +02:00
|
|
|
|
|
|
|
|
#define NM_FLAGS_ANY(flags, check) ( ( ((flags) & (check)) != 0 ) ? TRUE : FALSE )
|
|
|
|
|
#define NM_FLAGS_ALL(flags, check) ( ( ((flags) & (check)) == (check) ) ? TRUE : FALSE )
|
|
|
|
|
|
2015-05-25 11:23:08 +02:00
|
|
|
#define NM_FLAGS_SET(flags, val) ({ \
|
|
|
|
|
const typeof(flags) _flags = (flags); \
|
|
|
|
|
const typeof(flags) _val = (val); \
|
|
|
|
|
\
|
|
|
|
|
_flags | _val; \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
#define NM_FLAGS_UNSET(flags, val) ({ \
|
|
|
|
|
const typeof(flags) _flags = (flags); \
|
|
|
|
|
const typeof(flags) _val = (val); \
|
|
|
|
|
\
|
|
|
|
|
_flags & (~_val); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
#define NM_FLAGS_ASSIGN(flags, val, assign) ({ \
|
|
|
|
|
const typeof(flags) _flags = (flags); \
|
|
|
|
|
const typeof(flags) _val = (val); \
|
|
|
|
|
\
|
|
|
|
|
(assign) \
|
|
|
|
|
? _flags | (_val) \
|
|
|
|
|
: _flags & (~_val); \
|
|
|
|
|
})
|
|
|
|
|
|
2015-05-25 11:19:28 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2015-01-21 10:01:26 -05:00
|
|
|
#define _NM_BACKPORT_SYMBOL_IMPL(VERSION, RETURN_TYPE, ORIG_FUNC, VERSIONED_FUNC, ARGS_TYPED, ARGS) \
|
|
|
|
|
RETURN_TYPE VERSIONED_FUNC ARGS_TYPED; \
|
|
|
|
|
RETURN_TYPE VERSIONED_FUNC ARGS_TYPED \
|
|
|
|
|
{ \
|
|
|
|
|
return ORIG_FUNC ARGS; \
|
|
|
|
|
} \
|
|
|
|
|
RETURN_TYPE ORIG_FUNC ARGS_TYPED; \
|
|
|
|
|
__asm__(".symver "G_STRINGIFY(VERSIONED_FUNC)", "G_STRINGIFY(ORIG_FUNC)"@"G_STRINGIFY(VERSION))
|
|
|
|
|
|
|
|
|
|
#define NM_BACKPORT_SYMBOL(VERSION, RETURN_TYPE, FUNC, ARGS_TYPED, ARGS) \
|
|
|
|
|
_NM_BACKPORT_SYMBOL_IMPL(VERSION, RETURN_TYPE, FUNC, _##FUNC##_##VERSION, ARGS_TYPED, ARGS)
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-12-16 11:32:58 +01:00
|
|
|
#define nm_str_skip_leading_spaces(str) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (*(str)) *_str = (str); \
|
|
|
|
|
_nm_unused const char *_str_type_check = _str; \
|
|
|
|
|
\
|
|
|
|
|
if (_str) { \
|
|
|
|
|
while (g_ascii_isspace (_str[0])) \
|
|
|
|
|
_str++; \
|
|
|
|
|
} \
|
|
|
|
|
_str; \
|
|
|
|
|
})
|
|
|
|
|
|
2015-06-16 14:55:19 +02:00
|
|
|
static inline char *
|
|
|
|
|
nm_strstrip (char *str)
|
|
|
|
|
{
|
|
|
|
|
/* g_strstrip doesn't like NULL. */
|
|
|
|
|
return str ? g_strstrip (str) : NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-06 15:27:21 +02:00
|
|
|
static inline const char *
|
|
|
|
|
nm_strstrip_avoid_copy (const char *str, char **str_free)
|
|
|
|
|
{
|
|
|
|
|
gsize l;
|
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
|
|
nm_assert (str_free && !*str_free);
|
|
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
str = nm_str_skip_leading_spaces (str);
|
|
|
|
|
l = strlen (str);
|
|
|
|
|
if ( l == 0
|
|
|
|
|
|| !g_ascii_isspace (str[l - 1]))
|
|
|
|
|
return str;
|
|
|
|
|
while ( l > 0
|
|
|
|
|
&& g_ascii_isspace (str[l - 1]))
|
|
|
|
|
l--;
|
|
|
|
|
|
|
|
|
|
s = g_new (char, l + 1);
|
|
|
|
|
memcpy (s, str, l);
|
|
|
|
|
s[l] = '\0';
|
|
|
|
|
*str_free = s;
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-07 12:58:21 +02:00
|
|
|
/* g_ptr_array_sort()'s compare function takes pointers to the
|
|
|
|
|
* value. Thus, you cannot use strcmp directly. You can use
|
|
|
|
|
* nm_strcmp_p().
|
|
|
|
|
*
|
|
|
|
|
* Like strcmp(), this function is not forgiving to accept %NULL. */
|
|
|
|
|
static inline int
|
|
|
|
|
nm_strcmp_p (gconstpointer a, gconstpointer b)
|
|
|
|
|
{
|
|
|
|
|
const char *s1 = *((const char **) a);
|
|
|
|
|
const char *s2 = *((const char **) b);
|
|
|
|
|
|
|
|
|
|
return strcmp (s1, s2);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-16 14:55:19 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-09-05 14:12:41 +02:00
|
|
|
/* Taken from systemd's UNIQ_T and UNIQ macros. */
|
|
|
|
|
|
|
|
|
|
#define NM_UNIQ_T(x, uniq) G_PASTE(__unique_prefix_, G_PASTE(x, uniq))
|
|
|
|
|
#define NM_UNIQ __COUNTER__
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/* glib's MIN()/MAX() macros don't have function-like behavior, in that they evaluate
|
|
|
|
|
* the argument possibly twice.
|
|
|
|
|
*
|
|
|
|
|
* Taken from systemd's MIN()/MAX() macros. */
|
|
|
|
|
|
|
|
|
|
#define NM_MIN(a, b) __NM_MIN(NM_UNIQ, a, NM_UNIQ, b)
|
|
|
|
|
#define __NM_MIN(aq, a, bq, b) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (a) NM_UNIQ_T(A, aq) = (a); \
|
|
|
|
|
typeof (b) NM_UNIQ_T(B, bq) = (b); \
|
|
|
|
|
((NM_UNIQ_T(A, aq) < NM_UNIQ_T(B, bq)) ? NM_UNIQ_T(A, aq) : NM_UNIQ_T(B, bq)); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
#define NM_MAX(a, b) __NM_MAX(NM_UNIQ, a, NM_UNIQ, b)
|
|
|
|
|
#define __NM_MAX(aq, a, bq, b) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (a) NM_UNIQ_T(A, aq) = (a); \
|
|
|
|
|
typeof (b) NM_UNIQ_T(B, bq) = (b); \
|
|
|
|
|
((NM_UNIQ_T(A, aq) > NM_UNIQ_T(B, bq)) ? NM_UNIQ_T(A, aq) : NM_UNIQ_T(B, bq)); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
#define NM_CLAMP(x, low, high) __NM_CLAMP(NM_UNIQ, x, NM_UNIQ, low, NM_UNIQ, high)
|
|
|
|
|
#define __NM_CLAMP(xq, x, lowq, low, highq, high) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof(x)NM_UNIQ_T(X,xq) = (x); \
|
|
|
|
|
typeof(low) NM_UNIQ_T(LOW,lowq) = (low); \
|
|
|
|
|
typeof(high) NM_UNIQ_T(HIGH,highq) = (high); \
|
|
|
|
|
\
|
|
|
|
|
( (NM_UNIQ_T(X,xq) > NM_UNIQ_T(HIGH,highq)) \
|
|
|
|
|
? NM_UNIQ_T(HIGH,highq) \
|
|
|
|
|
: (NM_UNIQ_T(X,xq) < NM_UNIQ_T(LOW,lowq)) \
|
|
|
|
|
? NM_UNIQ_T(LOW,lowq) \
|
|
|
|
|
: NM_UNIQ_T(X,xq)); \
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
config: allow to enable/disable configuration snippets
Support a new configuration option
[.config]
enable=<ENABLED>
for configuration snippets.
This new [.config] section is only relevant within the snippet itself
and it is not merged into the combined configuration.
Currently only the "enable" key is supported. If the "enable" key is
missing, it obviously defaults to being enabled. It allows snippets
to be skipped from loading. The main configuration "NetworkManager.conf"
cannot be skipped.
<ENABLED> can be a boolean value (false), to skip a configuration
snippet from loading.
It can also be a string to match against the NetworkManager version,
like "enable=nm-version-min:1.1,nm-version-min:1.0.6"
There are several motivations for this:
- the user can disable an entire configuration snippet by toggeling
one entry.
This generalizes the functionality of the global-dns.enable
setting, but in a way that applies to configuration on a per-file
basis.
- for developing, we often switch between different versions of
NetworkManager. Thus, we might want to use different configuration.
E.g. before global-dns options, I want to use "dns=none" and manage
resolv.conf myself. Now, I can use global-dns setting to do that.
That can be achieved with something like the following (not exactly,
it's an example only):
[.config]
enable=nm-version-min:1.1
[main]
dns=default
[global-dns-domain-*]
nameserver=127.0.0.1
Arguably, this would be more awesome, if we would bump our micro devel
version (1.1.0) more often while developing 1.2.0 (*hint*).
- in principle, packages could drop configuration snippets and enable
them based on the NetworkManager version.
- with the "env:" spec, you can enable/disable snippets by configuring
an environment variable. Again, useful for testing and developing.
2015-10-01 10:43:33 +02:00
|
|
|
static inline guint
|
2017-03-16 12:09:22 +01:00
|
|
|
nm_encode_version (guint major, guint minor, guint micro)
|
|
|
|
|
{
|
config: allow to enable/disable configuration snippets
Support a new configuration option
[.config]
enable=<ENABLED>
for configuration snippets.
This new [.config] section is only relevant within the snippet itself
and it is not merged into the combined configuration.
Currently only the "enable" key is supported. If the "enable" key is
missing, it obviously defaults to being enabled. It allows snippets
to be skipped from loading. The main configuration "NetworkManager.conf"
cannot be skipped.
<ENABLED> can be a boolean value (false), to skip a configuration
snippet from loading.
It can also be a string to match against the NetworkManager version,
like "enable=nm-version-min:1.1,nm-version-min:1.0.6"
There are several motivations for this:
- the user can disable an entire configuration snippet by toggeling
one entry.
This generalizes the functionality of the global-dns.enable
setting, but in a way that applies to configuration on a per-file
basis.
- for developing, we often switch between different versions of
NetworkManager. Thus, we might want to use different configuration.
E.g. before global-dns options, I want to use "dns=none" and manage
resolv.conf myself. Now, I can use global-dns setting to do that.
That can be achieved with something like the following (not exactly,
it's an example only):
[.config]
enable=nm-version-min:1.1
[main]
dns=default
[global-dns-domain-*]
nameserver=127.0.0.1
Arguably, this would be more awesome, if we would bump our micro devel
version (1.1.0) more often while developing 1.2.0 (*hint*).
- in principle, packages could drop configuration snippets and enable
them based on the NetworkManager version.
- with the "env:" spec, you can enable/disable snippets by configuring
an environment variable. Again, useful for testing and developing.
2015-10-01 10:43:33 +02:00
|
|
|
/* analog to the preprocessor macro NM_ENCODE_VERSION(). */
|
|
|
|
|
return (major << 16) | (minor << 8) | micro;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
2017-03-16 12:09:22 +01:00
|
|
|
nm_decode_version (guint version, guint *major, guint *minor, guint *micro)
|
|
|
|
|
{
|
config: allow to enable/disable configuration snippets
Support a new configuration option
[.config]
enable=<ENABLED>
for configuration snippets.
This new [.config] section is only relevant within the snippet itself
and it is not merged into the combined configuration.
Currently only the "enable" key is supported. If the "enable" key is
missing, it obviously defaults to being enabled. It allows snippets
to be skipped from loading. The main configuration "NetworkManager.conf"
cannot be skipped.
<ENABLED> can be a boolean value (false), to skip a configuration
snippet from loading.
It can also be a string to match against the NetworkManager version,
like "enable=nm-version-min:1.1,nm-version-min:1.0.6"
There are several motivations for this:
- the user can disable an entire configuration snippet by toggeling
one entry.
This generalizes the functionality of the global-dns.enable
setting, but in a way that applies to configuration on a per-file
basis.
- for developing, we often switch between different versions of
NetworkManager. Thus, we might want to use different configuration.
E.g. before global-dns options, I want to use "dns=none" and manage
resolv.conf myself. Now, I can use global-dns setting to do that.
That can be achieved with something like the following (not exactly,
it's an example only):
[.config]
enable=nm-version-min:1.1
[main]
dns=default
[global-dns-domain-*]
nameserver=127.0.0.1
Arguably, this would be more awesome, if we would bump our micro devel
version (1.1.0) more often while developing 1.2.0 (*hint*).
- in principle, packages could drop configuration snippets and enable
them based on the NetworkManager version.
- with the "env:" spec, you can enable/disable snippets by configuring
an environment variable. Again, useful for testing and developing.
2015-10-01 10:43:33 +02:00
|
|
|
*major = (version & 0xFFFF0000u) >> 16;
|
|
|
|
|
*minor = (version & 0x0000FF00u) >> 8;
|
|
|
|
|
*micro = (version & 0x000000FFu);
|
|
|
|
|
}
|
2016-12-20 16:51:52 +01:00
|
|
|
|
2015-10-29 12:47:59 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-10-08 19:16:27 +02:00
|
|
|
/* taken from systemd's DECIMAL_STR_MAX()
|
|
|
|
|
*
|
|
|
|
|
* Returns the number of chars needed to format variables of the
|
|
|
|
|
* specified type as a decimal string. Adds in extra space for a
|
|
|
|
|
* negative '-' prefix (hence works correctly on signed
|
|
|
|
|
* types). Includes space for the trailing NUL. */
|
|
|
|
|
#define NM_DECIMAL_STR_MAX(type) \
|
|
|
|
|
(2+(sizeof(type) <= 1 ? 3 : \
|
|
|
|
|
sizeof(type) <= 2 ? 5 : \
|
|
|
|
|
sizeof(type) <= 4 ? 10 : \
|
|
|
|
|
sizeof(type) <= 8 ? 20 : sizeof(int[-2*(sizeof(type) > 8)])))
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-07-05 12:23:26 +02:00
|
|
|
/* if @str is NULL, return "(null)". Otherwise, allocate a buffer using
|
2017-02-10 17:10:29 +01:00
|
|
|
* alloca() of and fill it with @str. @str will be quoted with double quote.
|
|
|
|
|
* If @str is longer then @trunc_at, the string is truncated and the closing
|
|
|
|
|
* quote is instead '^' to indicate truncation.
|
|
|
|
|
*
|
|
|
|
|
* Thus, the maximum stack allocated buffer will be @trunc_at+3. */
|
|
|
|
|
#define nm_strquote_a(trunc_at, str) \
|
2016-07-05 12:23:26 +02:00
|
|
|
({ \
|
2017-02-10 17:10:29 +01:00
|
|
|
const char *const _str = (str); \
|
2016-07-05 12:23:26 +02:00
|
|
|
\
|
2017-02-10 17:10:29 +01:00
|
|
|
(_str \
|
|
|
|
|
? ({ \
|
|
|
|
|
const gsize _trunc_at = (trunc_at); \
|
|
|
|
|
const gsize _strlen_trunc = NM_MIN (strlen (_str), _trunc_at); \
|
|
|
|
|
char *_buf; \
|
|
|
|
|
\
|
|
|
|
|
_buf = g_alloca (_strlen_trunc + 3); \
|
|
|
|
|
_buf[0] = '"'; \
|
|
|
|
|
memcpy (&_buf[1], _str, _strlen_trunc); \
|
|
|
|
|
_buf[_strlen_trunc + 1] = _str[_strlen_trunc] ? '^' : '"'; \
|
|
|
|
|
_buf[_strlen_trunc + 2] = '\0'; \
|
|
|
|
|
_buf; \
|
|
|
|
|
}) \
|
|
|
|
|
: "(null)"); \
|
2016-07-05 12:23:26 +02:00
|
|
|
})
|
|
|
|
|
|
2017-03-16 12:09:22 +01:00
|
|
|
#define nm_sprintf_buf(buf, format, ...) \
|
|
|
|
|
({ \
|
2015-10-29 12:47:59 +01:00
|
|
|
char * _buf = (buf); \
|
2016-10-08 19:03:16 +02:00
|
|
|
int _buf_len; \
|
2015-10-29 12:47:59 +01:00
|
|
|
\
|
|
|
|
|
/* some static assert trying to ensure that the buffer is statically allocated.
|
|
|
|
|
* It disallows a buffer size of sizeof(gpointer) to catch that. */ \
|
|
|
|
|
G_STATIC_ASSERT (G_N_ELEMENTS (buf) == sizeof (buf) && sizeof (buf) != sizeof (char *)); \
|
2016-10-08 19:03:16 +02:00
|
|
|
_buf_len = g_snprintf (_buf, sizeof (buf), \
|
|
|
|
|
""format"", ##__VA_ARGS__); \
|
|
|
|
|
nm_assert (_buf_len < sizeof (buf)); \
|
2015-10-29 12:47:59 +01:00
|
|
|
_buf; \
|
|
|
|
|
})
|
config: allow to enable/disable configuration snippets
Support a new configuration option
[.config]
enable=<ENABLED>
for configuration snippets.
This new [.config] section is only relevant within the snippet itself
and it is not merged into the combined configuration.
Currently only the "enable" key is supported. If the "enable" key is
missing, it obviously defaults to being enabled. It allows snippets
to be skipped from loading. The main configuration "NetworkManager.conf"
cannot be skipped.
<ENABLED> can be a boolean value (false), to skip a configuration
snippet from loading.
It can also be a string to match against the NetworkManager version,
like "enable=nm-version-min:1.1,nm-version-min:1.0.6"
There are several motivations for this:
- the user can disable an entire configuration snippet by toggeling
one entry.
This generalizes the functionality of the global-dns.enable
setting, but in a way that applies to configuration on a per-file
basis.
- for developing, we often switch between different versions of
NetworkManager. Thus, we might want to use different configuration.
E.g. before global-dns options, I want to use "dns=none" and manage
resolv.conf myself. Now, I can use global-dns setting to do that.
That can be achieved with something like the following (not exactly,
it's an example only):
[.config]
enable=nm-version-min:1.1
[main]
dns=default
[global-dns-domain-*]
nameserver=127.0.0.1
Arguably, this would be more awesome, if we would bump our micro devel
version (1.1.0) more often while developing 1.2.0 (*hint*).
- in principle, packages could drop configuration snippets and enable
them based on the NetworkManager version.
- with the "env:" spec, you can enable/disable snippets by configuring
an environment variable. Again, useful for testing and developing.
2015-10-01 10:43:33 +02:00
|
|
|
|
2015-12-07 20:59:39 +01:00
|
|
|
#define nm_sprintf_bufa(n_elements, format, ...) \
|
|
|
|
|
({ \
|
|
|
|
|
char *_buf; \
|
2016-10-08 19:03:16 +02:00
|
|
|
int _buf_len; \
|
2017-02-10 17:10:29 +01:00
|
|
|
typeof (n_elements) _n_elements = (n_elements); \
|
2015-12-07 20:59:39 +01:00
|
|
|
\
|
2017-02-10 17:10:29 +01:00
|
|
|
_buf = g_alloca (_n_elements); \
|
|
|
|
|
_buf_len = g_snprintf (_buf, _n_elements, \
|
2016-10-08 19:03:16 +02:00
|
|
|
""format"", ##__VA_ARGS__); \
|
2017-02-10 17:10:29 +01:00
|
|
|
nm_assert (_buf_len < _n_elements); \
|
2015-12-07 20:59:39 +01:00
|
|
|
_buf; \
|
|
|
|
|
})
|
|
|
|
|
|
2017-11-22 09:47:35 +01:00
|
|
|
/* aims to alloca() a buffer and fill it with printf(format, name).
|
|
|
|
|
* Note that format must not contain any format specifier except
|
|
|
|
|
* "%s".
|
|
|
|
|
* If the resulting string would be too large for stack allocation,
|
|
|
|
|
* it allocates a buffer with g_malloc() and assigns it to *p_val_to_free. */
|
|
|
|
|
#define nm_construct_name_a(format, name, p_val_to_free) \
|
|
|
|
|
({ \
|
|
|
|
|
const char *const _name = (name); \
|
|
|
|
|
char **const _p_val_to_free = (p_val_to_free); \
|
|
|
|
|
const gsize _name_len = strlen (_name); \
|
|
|
|
|
char *_buf2; \
|
|
|
|
|
\
|
|
|
|
|
nm_assert (_p_val_to_free && !*_p_val_to_free); \
|
|
|
|
|
if (NM_STRLEN (format) + _name_len < 200) \
|
|
|
|
|
_buf2 = nm_sprintf_bufa (NM_STRLEN (format) + _name_len, format, _name); \
|
|
|
|
|
else { \
|
|
|
|
|
_buf2 = g_strdup_printf (format, _name); \
|
|
|
|
|
*_p_val_to_free = _buf2; \
|
|
|
|
|
} \
|
|
|
|
|
(const char *) _buf2; \
|
|
|
|
|
})
|
|
|
|
|
|
config: allow to enable/disable configuration snippets
Support a new configuration option
[.config]
enable=<ENABLED>
for configuration snippets.
This new [.config] section is only relevant within the snippet itself
and it is not merged into the combined configuration.
Currently only the "enable" key is supported. If the "enable" key is
missing, it obviously defaults to being enabled. It allows snippets
to be skipped from loading. The main configuration "NetworkManager.conf"
cannot be skipped.
<ENABLED> can be a boolean value (false), to skip a configuration
snippet from loading.
It can also be a string to match against the NetworkManager version,
like "enable=nm-version-min:1.1,nm-version-min:1.0.6"
There are several motivations for this:
- the user can disable an entire configuration snippet by toggeling
one entry.
This generalizes the functionality of the global-dns.enable
setting, but in a way that applies to configuration on a per-file
basis.
- for developing, we often switch between different versions of
NetworkManager. Thus, we might want to use different configuration.
E.g. before global-dns options, I want to use "dns=none" and manage
resolv.conf myself. Now, I can use global-dns setting to do that.
That can be achieved with something like the following (not exactly,
it's an example only):
[.config]
enable=nm-version-min:1.1
[main]
dns=default
[global-dns-domain-*]
nameserver=127.0.0.1
Arguably, this would be more awesome, if we would bump our micro devel
version (1.1.0) more often while developing 1.2.0 (*hint*).
- in principle, packages could drop configuration snippets and enable
them based on the NetworkManager version.
- with the "env:" spec, you can enable/disable snippets by configuring
an environment variable. Again, useful for testing and developing.
2015-10-01 10:43:33 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2016-02-16 20:11:14 +01:00
|
|
|
/**
|
|
|
|
|
* The boolean type _Bool is C99 while we mostly stick to C89. However, _Bool is too
|
|
|
|
|
* convinient to miss and is effectively available in gcc and clang. So, just use it.
|
|
|
|
|
*
|
|
|
|
|
* Usually, one would include "stdbool.h" to get the "bool" define which aliases
|
|
|
|
|
* _Bool. We provide this define here, because we want to make use of it anywhere.
|
|
|
|
|
* (also, stdbool.h is again C99).
|
|
|
|
|
*
|
|
|
|
|
* Using _Bool has advantages over gboolean:
|
|
|
|
|
*
|
|
|
|
|
* - commonly _Bool is one byte large, instead of gboolean's 4 bytes (because gboolean
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
* is a typedef for int). Especially when having boolean fields in a struct, we can
|
2016-02-16 20:11:14 +01:00
|
|
|
* thereby easily save some space.
|
|
|
|
|
*
|
|
|
|
|
* - _Bool type guarantees that two "true" expressions compare equal. E.g. the follwing
|
|
|
|
|
* will not work:
|
|
|
|
|
* gboolean v1 = 1;
|
|
|
|
|
* gboolean v2 = 2;
|
|
|
|
|
* g_assert_cmpint (v1, ==, v2); // will fail
|
|
|
|
|
* For that, we often to use !! to coerce gboolean values to 0 or 1:
|
|
|
|
|
* g_assert_cmpint (!!v2, ==, TRUE);
|
|
|
|
|
* With _Bool type, this will be handled properly by the compiler.
|
|
|
|
|
*
|
|
|
|
|
* - For structs, we might want to safe even more space and use bitfields:
|
|
|
|
|
* struct s1 {
|
|
|
|
|
* gboolean v1:1;
|
|
|
|
|
* };
|
|
|
|
|
* But the problem here is that gboolean is signed, so that
|
|
|
|
|
* v1 will be either 0 or -1 (not 1, TRUE). Thus, the following
|
|
|
|
|
* fails:
|
|
|
|
|
* struct s1 s = { .v1 = TRUE, };
|
|
|
|
|
* g_assert_cmpint (s1.v1, ==, TRUE);
|
|
|
|
|
* It will however work just fine with bool/_Bool while retaining the
|
|
|
|
|
* notion of having a boolean value.
|
|
|
|
|
*
|
|
|
|
|
* Also, add the defines for "true" and "false". Those are nicely highlighted by the editor
|
|
|
|
|
* as special types, contrary to glib's "TRUE"/"FALSE".
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef bool
|
|
|
|
|
#define bool _Bool
|
|
|
|
|
#define true 1
|
|
|
|
|
#define false 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-10-11 12:23:02 +02:00
|
|
|
#ifdef _G_BOOLEAN_EXPR
|
|
|
|
|
/* g_assert() uses G_LIKELY(), which in turn uses _G_BOOLEAN_EXPR().
|
|
|
|
|
* As glib's implementation uses a local variable _g_boolean_var_,
|
|
|
|
|
* we cannot do
|
|
|
|
|
* g_assert (some_macro ());
|
|
|
|
|
* where some_macro() itself expands to ({g_assert(); ...}).
|
|
|
|
|
* In other words, you cannot have a g_assert() inside a g_assert()
|
|
|
|
|
* without getting a -Werror=shadow failure.
|
|
|
|
|
*
|
|
|
|
|
* Workaround that by re-defining _G_BOOLEAN_EXPR()
|
|
|
|
|
**/
|
|
|
|
|
#undef _G_BOOLEAN_EXPR
|
|
|
|
|
#define __NM_G_BOOLEAN_EXPR_IMPL(v, expr) \
|
|
|
|
|
({ \
|
|
|
|
|
int NM_UNIQ_T(V, v); \
|
|
|
|
|
\
|
|
|
|
|
if (expr) \
|
|
|
|
|
NM_UNIQ_T(V, v) = 1; \
|
|
|
|
|
else \
|
|
|
|
|
NM_UNIQ_T(V, v) = 0; \
|
|
|
|
|
NM_UNIQ_T(V, v); \
|
|
|
|
|
})
|
|
|
|
|
#define _G_BOOLEAN_EXPR(expr) __NM_G_BOOLEAN_EXPR_IMPL (NM_UNIQ, expr)
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-02-16 20:11:14 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2018-02-07 17:38:57 +01:00
|
|
|
/**
|
|
|
|
|
* nm_steal_int:
|
|
|
|
|
* @p_val: pointer to an int type.
|
|
|
|
|
*
|
|
|
|
|
* Returns: *p_val and sets *p_val to zero the same time.
|
|
|
|
|
* Accepts %NULL, in which case also numeric 0 will be returned.
|
|
|
|
|
*/
|
|
|
|
|
#define nm_steal_int(p_val) \
|
|
|
|
|
({ \
|
|
|
|
|
typeof (p_val) const _p_val = (p_val); \
|
|
|
|
|
typeof (*_p_val) _val = 0; \
|
|
|
|
|
\
|
|
|
|
|
if ( _p_val \
|
|
|
|
|
&& (_val = *_p_val)) { \
|
|
|
|
|
*_p_val = 0; \
|
|
|
|
|
} \
|
|
|
|
|
_val; \
|
|
|
|
|
})
|
|
|
|
|
|
2017-10-19 15:21:45 +02:00
|
|
|
static inline int
|
|
|
|
|
nm_steal_fd (int *p_fd)
|
|
|
|
|
{
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
if ( p_fd
|
2017-10-30 11:44:13 +01:00
|
|
|
&& ((fd = *p_fd) >= 0)) {
|
2017-10-19 15:21:45 +02:00
|
|
|
*p_fd = -1;
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 11:14:36 +02:00
|
|
|
/**
|
|
|
|
|
* nm_close:
|
|
|
|
|
*
|
|
|
|
|
* Like close() but throws an assertion if the input fd is
|
|
|
|
|
* invalid. Closing an invalid fd is a programming error, so
|
|
|
|
|
* it's better to catch it early.
|
|
|
|
|
*/
|
|
|
|
|
static inline int
|
|
|
|
|
nm_close (int fd)
|
|
|
|
|
{
|
shared: always call close() from nm_close() wrapper
The nm_close() wrapper should behave exactly the same as calling
close() directly. This is well known, documented behavior.
The only addition on top of that, should be the nm_assert() to catch
double-closing.
Prevously, when passing a negative file descriptor, we wouldn't properly
set errno. Also, the call would not show up in strace, which it should
(at least, if libc's close actually makes the syscall).
I would argue, that passing a negative file descriptor is a bug already
and we should never do that. Maybe we should even assert non-negative
fds. I don't do that now, because I am not sufficiently confident.
Anyway, the change should have not practical effect, because we
shouldn't actually pass negative fds already.
2017-11-14 14:42:38 +01:00
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
r = close (fd);
|
|
|
|
|
nm_assert (r != -1 || fd < 0 || errno != EBADF);
|
|
|
|
|
return r;
|
2017-10-18 11:14:36 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-07 16:24:30 +02:00
|
|
|
#define NM_PID_T_INVAL ((pid_t) -1)
|
|
|
|
|
|
2015-06-01 13:42:08 +02:00
|
|
|
#endif /* __NM_MACROS_INTERNAL_H__ */
|