D-Bus 1.14.0
dbus-internals.h
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-internals.h random utility stuff (internal to D-Bus implementation)
3 *
4 * Copyright (C) 2002, 2003 Red Hat, Inc.
5 *
6 * Licensed under the Academic Free License version 2.1
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 */
23#ifdef DBUS_INSIDE_DBUS_H
24#error "You can't include dbus-internals.h in the public header dbus.h"
25#endif
26
27#ifndef DBUS_INTERNALS_H
28#define DBUS_INTERNALS_H
29
30#include <dbus/dbus-memory.h>
31#include <dbus/dbus-types.h>
32#include <dbus/dbus-errors.h>
33#include <dbus/dbus-sysdeps.h>
34#include <dbus/dbus-threads-internal.h>
35
37
38#ifdef DBUS_ENABLE_EMBEDDED_TESTS
39#define DBUS_EMBEDDED_TESTS_EXPORT DBUS_PRIVATE_EXPORT
40#else
41#define DBUS_EMBEDDED_TESTS_EXPORT /* nothing */
42#endif
43
44DBUS_PRIVATE_EXPORT
45void _dbus_warn (const char *format,
46 ...) _DBUS_GNUC_PRINTF (1, 2);
47
48DBUS_PRIVATE_EXPORT
49void _dbus_warn_check_failed (const char *format,
50 ...) _DBUS_GNUC_PRINTF (1, 2);
51DBUS_PRIVATE_EXPORT
52void _dbus_warn_return_if_fail (const char *function,
53 const char *assertion,
54 const char *file,
55 int line);
56
57#if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
58#define _DBUS_FUNCTION_NAME __func__
59#elif defined(__GNUC__) || defined(_MSC_VER)
60#define _DBUS_FUNCTION_NAME __FUNCTION__
61#else
62#define _DBUS_FUNCTION_NAME "unknown function"
63#endif
64
65/*
66 * (code from GLib)
67 *
68 * The _DBUS_LIKELY and _DBUS_UNLIKELY macros let the programmer give hints to
69 * the compiler about the expected result of an expression. Some compilers
70 * can use this information for optimizations.
71 *
72 * The _DBUS_BOOLEAN_EXPR macro is intended to trigger a gcc warning when
73 * putting assignments in the macro arg
74 */
75#if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
76#define _DBUS_BOOLEAN_EXPR(expr) \
77 __extension__ ({ \
78 int _dbus_boolean_var_; \
79 if (expr) \
80 _dbus_boolean_var_ = 1; \
81 else \
82 _dbus_boolean_var_ = 0; \
83 _dbus_boolean_var_; \
84})
85#define _DBUS_LIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 1))
86#define _DBUS_UNLIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 0))
87#else
88#define _DBUS_LIKELY(expr) (expr)
89#define _DBUS_UNLIKELY(expr) (expr)
90#endif
91
92#ifdef DBUS_ENABLE_VERBOSE_MODE
93
94/*
95 at least gnu cc and msvc compiler are known to
96 have support for variable macro argument lists
97 add other compilers is required
98*/
99#if defined(__GNUC__) || defined(_MSC_VER)
100#define DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
101#endif
102
103#ifdef DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
104DBUS_PRIVATE_EXPORT
105void _dbus_verbose_real (const char *file, const int line, const char *function,
106 const char *format,...) _DBUS_GNUC_PRINTF (4, 5);
107# define _dbus_verbose(fmt,...) _dbus_verbose_real( __FILE__,__LINE__,__FUNCTION__,fmt, ## __VA_ARGS__)
108#else
109DBUS_PRIVATE_EXPORT
110void _dbus_verbose_real (const char *format,
111 ...) _DBUS_GNUC_PRINTF (1, 2);
112# define _dbus_verbose _dbus_verbose_real
113#endif
114DBUS_PRIVATE_EXPORT
115void _dbus_verbose_reset_real (void);
116DBUS_PRIVATE_EXPORT
117dbus_bool_t _dbus_is_verbose_real (void);
118DBUS_PRIVATE_EXPORT
119dbus_bool_t _dbus_get_verbose (void);
120DBUS_PRIVATE_EXPORT
121void _dbus_set_verbose (dbus_bool_t state);
122void _dbus_verbose_raw (const char *s);
123
124# define _dbus_verbose_reset _dbus_verbose_reset_real
125# define _dbus_is_verbose _dbus_is_verbose_real
126#else
127# define _dbus_verbose(...) do { } while (0)
128# define _dbus_verbose_reset() do { } while (0)
129# define _dbus_is_verbose() FALSE
130#endif /* !DBUS_ENABLE_VERBOSE_MODE */
131
132DBUS_PRIVATE_EXPORT
133void _dbus_trace_ref (const char *obj_name,
134 void *obj,
135 int old_refcount,
136 int new_refcount,
137 const char *why,
138 const char *env_var,
139 int *enabled);
140
141DBUS_PRIVATE_EXPORT
142const char* _dbus_strerror (int error_number);
143
144#ifdef DBUS_DISABLE_ASSERT
145#define _dbus_assert(condition) do { } while (0)
146#else
147DBUS_PRIVATE_EXPORT
148void _dbus_real_assert (dbus_bool_t condition,
149 const char *condition_text,
150 const char *file,
151 int line,
152 const char *func);
153#define _dbus_assert(condition) \
154 _dbus_real_assert ((condition) != 0, #condition, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
155#endif /* !DBUS_DISABLE_ASSERT */
156
157#ifdef DBUS_DISABLE_ASSERT
158#define _dbus_assert_not_reached(explanation) do { } while (0)
159#else
160DBUS_PRIVATE_EXPORT
161void _dbus_real_assert_not_reached (const char *explanation,
162 const char *file,
163 int line) _DBUS_GNUC_NORETURN;
164#define _dbus_assert_not_reached(explanation) \
165 _dbus_real_assert_not_reached (explanation, __FILE__, __LINE__)
166#endif /* !DBUS_DISABLE_ASSERT */
167
168#ifdef DBUS_DISABLE_CHECKS
169#define _dbus_return_if_fail(condition)
170#define _dbus_return_val_if_fail(condition, val)
171#else
172
173#define _dbus_return_if_fail(condition) do { \
174 _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_'); \
175 if (!(condition)) { \
176 _dbus_warn_return_if_fail (_DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__); \
177 return; \
178 } } while (0)
179
180#define _dbus_return_val_if_fail(condition, val) do { \
181 _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_'); \
182 if (!(condition)) { \
183 _dbus_warn_return_if_fail (_DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__); \
184 return (val); \
185 } } while (0)
186
187#endif /* !DBUS_DISABLE_ASSERT */
188
189#define _DBUS_N_ELEMENTS(array) ((int) (sizeof ((array)) / sizeof ((array)[0])))
190
191#define _DBUS_POINTER_TO_INT(pointer) ((intptr_t)(pointer))
192#define _DBUS_INT_TO_POINTER(integer) ((void*)((intptr_t)(integer)))
193
194#define _DBUS_ZERO(object) (memset (&(object), '\0', sizeof ((object))))
195
196#ifdef offsetof
197#define _DBUS_STRUCT_OFFSET(struct_type, member) \
198 (offsetof (struct_type, member))
199#else
200#define _DBUS_STRUCT_OFFSET(struct_type, member) \
201 ((intptr_t) ((unsigned char*) &((struct_type*) 0)->member))
202#endif
203
204#define _DBUS_ALIGNOF(type) \
205 (_DBUS_STRUCT_OFFSET (struct { char _1; type _2; }, _2))
206
207#if defined(DBUS_DISABLE_CHECKS) || defined(DBUS_DISABLE_ASSERT)
208/* this is an assert and not an error, but in the typical --disable-checks case (you're trying
209 * to really minimize code size), disabling these assertions makes sense.
210 */
211#define _DBUS_ASSERT_ERROR_IS_SET(error) do { } while (0)
212#define _DBUS_ASSERT_ERROR_IS_CLEAR(error) do { } while (0)
213#define _DBUS_ASSERT_ERROR_XOR_BOOL(error, retval) do { } while (0)
214#else
215static inline void
216_dbus_assert_error_is_set (const DBusError *error,
217 const char *file,
218 int line,
219 const char *func)
220{
221 _dbus_real_assert (error == NULL || dbus_error_is_set (error),
222 "error is set", file, line, func);
223}
224
225static inline void
226_dbus_assert_error_is_clear (const DBusError *error,
227 const char *file,
228 int line,
229 const char *func)
230{
231 _dbus_real_assert (error == NULL || !dbus_error_is_set (error),
232 "error is clear", file, line, func);
233}
234
235static inline void
236_dbus_assert_error_xor_bool (const DBusError *error,
237 dbus_bool_t retval,
238 const char *file,
239 int line,
240 const char *func)
241{
242 _dbus_real_assert (error == NULL || dbus_error_is_set (error) == !retval,
243 "error is consistent with boolean result", file, line, func);
244}
245
250#define _DBUS_ASSERT_ERROR_IS_SET(error) _dbus_assert_error_is_set (error, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
251
256#define _DBUS_ASSERT_ERROR_IS_CLEAR(error) _dbus_assert_error_is_clear (error, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
257
264#define _DBUS_ASSERT_ERROR_XOR_BOOL(error, retval) _dbus_assert_error_xor_bool (error, retval, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
265#endif
266
267#define _dbus_return_if_error_is_set(error) _dbus_return_if_fail ((error) == NULL || !dbus_error_is_set ((error)))
268#define _dbus_return_val_if_error_is_set(error, val) _dbus_return_val_if_fail ((error) == NULL || !dbus_error_is_set ((error)), (val))
269
270/* This alignment thing is from ORBit2 */
271/* Align a value upward to a boundary, expressed as a number of bytes.
272 * E.g. align to an 8-byte boundary with argument of 8.
273 */
274
275/*
276 * (this + boundary - 1)
277 * &
278 * ~(boundary - 1)
279 */
280
281#define _DBUS_ALIGN_VALUE(this, boundary) \
282 (( ((uintptr_t)(this)) + (((uintptr_t)(boundary)) -1)) & (~(((uintptr_t)(boundary))-1)))
283
284#define _DBUS_ALIGN_ADDRESS(this, boundary) \
285 ((void*)_DBUS_ALIGN_VALUE(this, boundary))
286
287
288DBUS_PRIVATE_EXPORT
289char* _dbus_strdup (const char *str);
290void* _dbus_memdup (const void *mem,
291 size_t n_bytes);
292DBUS_PRIVATE_EXPORT
293dbus_bool_t _dbus_string_array_contains (const char **array,
294 const char *str);
295DBUS_PRIVATE_EXPORT
296size_t _dbus_string_array_length (const char **array);
297char** _dbus_dup_string_array (const char **array);
298
299#define _DBUS_INT16_MIN ((dbus_int16_t) 0x8000)
300#define _DBUS_INT16_MAX ((dbus_int16_t) 0x7fff)
301#define _DBUS_UINT16_MAX ((dbus_uint16_t)0xffff)
302#define _DBUS_INT32_MIN ((dbus_int32_t) 0x80000000)
303#define _DBUS_INT32_MAX ((dbus_int32_t) 0x7fffffff)
304#define _DBUS_UINT32_MAX ((dbus_uint32_t)0xffffffff)
305/* using 32-bit here is sort of bogus */
306#define _DBUS_INT_MIN _DBUS_INT32_MIN
307#define _DBUS_INT_MAX _DBUS_INT32_MAX
308#define _DBUS_UINT_MAX _DBUS_UINT32_MAX
309#define _DBUS_INT64_MAX DBUS_INT64_CONSTANT (0x7fffffffffffffff)
310#define _DBUS_UINT64_MAX DBUS_UINT64_CONSTANT (0xffffffffffffffff)
311#define _DBUS_ONE_KILOBYTE 1024
312#define _DBUS_ONE_MEGABYTE 1024 * _DBUS_ONE_KILOBYTE
313#define _DBUS_ONE_HOUR_IN_MILLISECONDS (1000 * 60 * 60)
314#define _DBUS_USEC_PER_SECOND (1000000)
315
316#undef MAX
317#define MAX(a, b) (((a) > (b)) ? (a) : (b))
318
319#undef MIN
320#define MIN(a, b) (((a) < (b)) ? (a) : (b))
321
322#undef ABS
323#define ABS(a) (((a) < 0) ? -(a) : (a))
324
325#define _DBUS_ISASCII(c) ((c) != '\0' && (((c) & ~0x7f) == 0))
326
327typedef void (* DBusForeachFunction) (void *element,
328 void *data);
329
330void _dbus_verbose_bytes (const unsigned char *data,
331 int len,
332 int offset);
333DBUS_PRIVATE_EXPORT
335 int start,
336 int len);
337
338DBUS_PRIVATE_EXPORT
339extern const char *_dbus_no_memory_message;
340#define _DBUS_SET_OOM(error) dbus_set_error_const ((error), DBUS_ERROR_NO_MEMORY, _dbus_no_memory_message)
341DBUS_PRIVATE_EXPORT
342void _dbus_set_error_valist (DBusError *error,
343 const char *name,
344 const char *format,
345 va_list args) _DBUS_GNUC_PRINTF (3, 0);
346
347typedef dbus_bool_t (* DBusTestMemoryFunction) (void *data,
348 dbus_bool_t have_memory);
349
350#ifdef DBUS_ENABLE_EMBEDDED_TESTS
351/* Memory debugging */
352void _dbus_set_fail_alloc_counter (int until_next_fail);
353int _dbus_get_fail_alloc_counter (void);
354void _dbus_set_fail_alloc_failures (int failures_per_failure);
355int _dbus_get_fail_alloc_failures (void);
356dbus_bool_t _dbus_decrement_fail_alloc_counter (void);
357dbus_bool_t _dbus_disable_mem_pools (void);
358DBUS_PRIVATE_EXPORT
359int _dbus_get_malloc_blocks_outstanding (void);
360
361DBUS_PRIVATE_EXPORT
362dbus_bool_t _dbus_test_oom_handling (const char *description,
363 DBusTestMemoryFunction func,
364 void *data);
365#else
366#define _dbus_set_fail_alloc_counter(n)
367#define _dbus_get_fail_alloc_counter _DBUS_INT_MAX
368
369/* These are constant expressions so that blocks
370 * they protect should be optimized away
371 */
372#define _dbus_decrement_fail_alloc_counter() (FALSE)
373#define _dbus_disable_mem_pools() (FALSE)
374#define _dbus_get_malloc_blocks_outstanding() (0)
375
376#define _dbus_test_oom_handling(description, func, data) ((*func) (data, TRUE))
377#endif /* !DBUS_ENABLE_EMBEDDED_TESTS */
378
379typedef void (* DBusShutdownFunction) (void *data);
380DBUS_PRIVATE_EXPORT
381dbus_bool_t _dbus_register_shutdown_func (DBusShutdownFunction function,
382 void *data);
383dbus_bool_t _dbus_register_shutdown_func_unlocked (DBusShutdownFunction function,
384 void *data);
385
386extern int _dbus_current_generation;
387
388/* The weird case convention is to avoid having to change all the callers,
389 * which would be quite a mega-patch. */
390typedef enum
391{
392 /* index 0-4 */
393 _DBUS_LOCK_list,
394 _DBUS_LOCK_connection_slots,
395 _DBUS_LOCK_pending_call_slots,
396 _DBUS_LOCK_server_slots,
397 _DBUS_LOCK_message_slots,
398 /* index 5-9 */
399 _DBUS_LOCK_bus,
400 _DBUS_LOCK_bus_datas,
401 _DBUS_LOCK_shutdown_funcs,
402 _DBUS_LOCK_system_users,
403 _DBUS_LOCK_message_cache,
404 /* index 10-12 */
405 _DBUS_LOCK_shared_connections,
406 _DBUS_LOCK_machine_uuid,
407 _DBUS_LOCK_sysdeps,
408
409 _DBUS_N_GLOBAL_LOCKS
410} DBusGlobalLock;
411
412_DBUS_WARN_UNUSED_RESULT
413dbus_bool_t _dbus_lock (DBusGlobalLock lock);
414void _dbus_unlock (DBusGlobalLock lock);
415
416#define _DBUS_LOCK_NAME(name) _DBUS_LOCK_##name
417#define _DBUS_LOCK(name) _dbus_lock (_DBUS_LOCK_##name)
418#define _DBUS_UNLOCK(name) _dbus_unlock (_DBUS_LOCK_##name)
419
420DBUS_PRIVATE_EXPORT
422 const DBusString *unescaped);
423
425 const char *address_problem_type,
426 const char *address_problem_field,
427 const char *address_problem_other);
428
429#define DBUS_UUID_LENGTH_BYTES 16
430#define DBUS_UUID_LENGTH_WORDS (DBUS_UUID_LENGTH_BYTES / 4)
431#define DBUS_UUID_LENGTH_HEX (DBUS_UUID_LENGTH_BYTES * 2)
432
438{
439 dbus_uint32_t as_uint32s[DBUS_UUID_LENGTH_WORDS];
440 char as_bytes[DBUS_UUID_LENGTH_BYTES];
441};
442
443DBUS_PRIVATE_EXPORT _DBUS_WARN_UNUSED_RESULT
445 DBusError *error);
446DBUS_PRIVATE_EXPORT
448 DBusString *encoded);
450 DBusGUID *uuid,
451 dbus_bool_t create_if_not_found,
452 DBusError *error);
453
455 const DBusGUID *uuid,
456 DBusError *error);
457
458DBUS_PRIVATE_EXPORT
460 DBusError *error);
461
462#define _DBUS_PASTE2(a, b) a ## b
463#define _DBUS_PASTE(a, b) _DBUS_PASTE2 (a, b)
464#define _DBUS_STATIC_ASSERT(expr) \
465 typedef struct { char _assertion[(expr) ? 1 : -1]; } \
466 _DBUS_PASTE (_DBUS_STATIC_ASSERT_, __LINE__) _DBUS_GNUC_UNUSED
467
468#define _DBUS_STRINGIFY(x) #x
469#define _DBUS_FILE_LINE __FILE__ ":" _DBUS_STRINGIFY(__LINE__)
470
472
473#endif /* DBUS_INTERNALS_H */
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_address_append_escaped(DBusString *escaped, const DBusString *unescaped)
Appends an escaped version of one string to another string, using the D-Bus address escaping mechanis...
Definition: dbus-address.c:107
void _dbus_set_bad_address(DBusError *error, const char *address_problem_type, const char *address_problem_field, const char *address_problem_other)
Sets DBUS_ERROR_BAD_ADDRESS.
Definition: dbus-address.c:68
dbus_bool_t dbus_error_is_set(const DBusError *error)
Checks whether an error occurred (the error is set).
Definition: dbus-errors.c:329
DBUS_PRIVATE_EXPORT void _dbus_real_assert_not_reached(const char *explanation, const char *file, int line) _DBUS_GNUC_NORETURN
Internals of _dbus_assert_not_reached(); it's a function rather than a macro with the inline code so ...
DBUS_PRIVATE_EXPORT _DBUS_WARN_UNUSED_RESULT dbus_bool_t _dbus_generate_uuid(DBusGUID *uuid, DBusError *error)
Generates a new UUID.
DBUS_PRIVATE_EXPORT void _dbus_warn_check_failed(const char *format,...)
Prints a "critical" warning to stderr when an assertion fails; differs from _dbus_warn primarily in t...
void(* DBusForeachFunction)(void *element, void *data)
Used to iterate over each item in a collection, such as a DBusList.
DBUS_PRIVATE_EXPORT char * _dbus_strdup(const char *str)
Duplicates a string.
dbus_bool_t _dbus_read_uuid_file(const DBusString *filename, DBusGUID *uuid, dbus_bool_t create_if_not_found, DBusError *error)
Reads (and optionally writes) a uuid to a file.
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_string_array_contains(const char **array, const char *str)
Checks whether a string array contains the given string.
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_get_local_machine_uuid_encoded(DBusString *uuid_str, DBusError *error)
Gets the hex-encoded UUID of the machine this function is executed on.
DBUS_PRIVATE_EXPORT void _dbus_real_assert(dbus_bool_t condition, const char *condition_text, const char *file, int line, const char *func)
Internals of _dbus_assert(); it's a function rather than a macro with the inline code so that the ass...
dbus_bool_t _dbus_write_uuid_file(const DBusString *filename, const DBusGUID *uuid, DBusError *error)
Write the give UUID to a file.
DBUS_PRIVATE_EXPORT void _dbus_warn(const char *format,...)
Prints a warning message to stderr.
DBUS_PRIVATE_EXPORT size_t _dbus_string_array_length(const char **array)
Returns the size of a string array.
DBUS_PRIVATE_EXPORT const char * _dbus_no_memory_message
Fixed "out of memory" error message, just to avoid making up a different string every time and wastin...
void * _dbus_memdup(const void *mem, size_t n_bytes)
Duplicates a block of memory.
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_uuid_encode(const DBusGUID *uuid, DBusString *encoded)
Hex-encode a UUID.
char ** _dbus_dup_string_array(const char **array)
Duplicates a string array.
#define NULL
A null pointer, defined appropriately for C or C++.
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.
DBUS_PRIVATE_EXPORT void _dbus_verbose_bytes_of_string(const DBusString *str, int start, int len)
Dump the given part of the string to verbose log.
void _dbus_verbose_bytes(const unsigned char *data, int len, int offset)
If in verbose mode, print a block of binary data.
int _dbus_current_generation
_dbus_current_generation is used to track each time that dbus_shutdown() is called,...
Definition: dbus-memory.c:772
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_register_shutdown_func(DBusShutdownFunction function, void *data)
Register a cleanup function to be called exactly once the next time dbus_shutdown() is called.
Definition: dbus-memory.c:801
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:35
unsigned int dbus_uint32_t
A 32-bit unsigned integer on all platforms.
Object representing an exception.
Definition: dbus-errors.h:49
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...
dbus_uint32_t as_uint32s[DBUS_UUID_LENGTH_WORDS]
guid as four uint32 values
char as_bytes[DBUS_UUID_LENGTH_BYTES]
guid as 16 single-byte values