1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-internals.c random utility stuff (internal to D-BUS implementation)
4 * Copyright (C) 2002, 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "dbus-internals.h"
24 #include "dbus-protocol.h"
25 #include "dbus-test.h"
29 #include <sys/types.h>
36 * @defgroup DBusInternals D-BUS internal implementation details
37 * @brief Documentation useful when developing or debugging D-BUS itself.
42 * @defgroup DBusInternalsUtils Utilities and portability
43 * @ingroup DBusInternals
44 * @brief Utility functions (_dbus_assert(), _dbus_warn(), etc.)
51 * Aborts with an error message if the condition is false.
53 * @param condition condition which must be true.
57 * @def _dbus_assert_not_reached
59 * Aborts with an error message if called.
60 * The given explanation will be printed.
62 * @param explanation explanation of what happened if the code was reached.
66 * @def _DBUS_N_ELEMENTS
68 * Computes the number of elements in a fixed-size array using
71 * @param array the array to count elements in.
75 * @def _DBUS_POINTER_TO_INT
77 * Safely casts a void* to an integer; should only be used on void*
78 * that actually contain integers, for example one created with
79 * _DBUS_INT_TO_POINTER. Only guaranteed to preserve 32 bits.
80 * (i.e. it's used to store 32-bit ints in pointers, but
81 * can't be used to store 64-bit pointers in ints.)
83 * @param pointer pointer to extract an integer from.
86 * @def _DBUS_INT_TO_POINTER
88 * Safely stuffs an integer into a pointer, to be extracted later with
89 * _DBUS_POINTER_TO_INT. Only guaranteed to preserve 32 bits.
91 * @param integer the integer to stuff into a pointer.
96 * Sets all bits in an object to zero.
98 * @param object the object to be zeroed.
103 * Minimum value of type "int"
108 * Maximum value of type "int"
112 * @typedef DBusForeachFunction
114 * Used to iterate over each item in a collection, such as
119 * @def _DBUS_LOCK_NAME
121 * Expands to name of a global lock variable.
125 * @def _DBUS_DEFINE_GLOBAL_LOCK
127 * Defines a global lock variable with the given name.
128 * The lock must be added to the list to initialize
129 * in dbus_threads_init().
133 * @def _DBUS_DECLARE_GLOBAL_LOCK
135 * Expands to declaration of a global lock defined
136 * with _DBUS_DEFINE_GLOBAL_LOCK.
137 * The lock must be added to the list to initialize
138 * in dbus_threads_init().
144 * Locks a global lock
150 * Unlocks a global lock
154 * Fixed "out of memory" error message, just to avoid
155 * making up a different string every time and wasting
158 const char _dbus_no_memory_message[] = "Not enough memory";
161 * Prints a warning message to stderr.
163 * @param format printf-style format string.
166 _dbus_warn (const char *format,
169 /* FIXME not portable enough? */
172 va_start (args, format);
173 vfprintf (stderr, format, args);
177 static dbus_bool_t verbose_initted = FALSE;
180 * Prints a warning message to stderr
181 * if the user has enabled verbose mode.
182 * This is the real function implementation,
183 * use _dbus_verbose() macro in code.
185 * @param format printf-style format string.
188 _dbus_verbose_real (const char *format,
192 static dbus_bool_t verbose = TRUE;
193 static dbus_bool_t need_pid = TRUE;
195 /* things are written a bit oddly here so that
196 * in the non-verbose case we just have the one
197 * conditional and return immediately.
202 if (!verbose_initted)
204 verbose = _dbus_getenv ("DBUS_VERBOSE") != NULL;
205 verbose_initted = TRUE;
214 fprintf (stderr, "%lu: ", _dbus_getpid ());
216 len = strlen (format);
217 if (format[len-1] == '\n')
223 va_start (args, format);
224 vfprintf (stderr, format, args);
231 * Reinitializes the verbose logging code, used
232 * as a hack in dbus-spawn.c so that a child
233 * process re-reads its pid
237 _dbus_verbose_reset_real (void)
239 verbose_initted = FALSE;
243 * Duplicates a string. Result must be freed with
244 * dbus_free(). Returns #NULL if memory allocation fails.
245 * If the string to be duplicated is #NULL, returns #NULL.
247 * @param str string to duplicate.
248 * @returns newly-allocated copy.
251 _dbus_strdup (const char *str)
261 copy = dbus_malloc (len + 1);
265 memcpy (copy, str, len + 1);
271 * Duplicates a block of memory. Returns
274 * @param mem memory to copy
275 * @param n_bytes number of bytes to copy
279 _dbus_memdup (const void *mem,
284 copy = dbus_malloc (n_bytes);
288 memcpy (copy, mem, n_bytes);
294 * Duplicates a string array. Result may be freed with
295 * dbus_free_string_array(). Returns #NULL if memory allocation fails.
296 * If the array to be duplicated is #NULL, returns #NULL.
298 * @param array array to duplicate.
299 * @returns newly-allocated copy.
302 _dbus_dup_string_array (const char **array)
311 for (len = 0; array[len] != NULL; ++len)
314 copy = dbus_new0 (char*, len + 1);
321 copy[i] = _dbus_strdup (array[i]);
324 dbus_free_string_array (copy);
335 * Checks whether a string array contains the given string.
337 * @param array array to search.
338 * @param str string to look for
339 * @returns #TRUE if array contains string
342 _dbus_string_array_contains (const char **array,
348 while (array[i] != NULL)
350 if (strcmp (array[i], str) == 0)
359 * Returns a string describing the given type.
361 * @param type the type to describe
362 * @returns a constant string describing the type
365 _dbus_type_to_string (int type)
369 case DBUS_TYPE_INVALID:
373 case DBUS_TYPE_BOOLEAN:
375 case DBUS_TYPE_INT32:
377 case DBUS_TYPE_UINT32:
379 case DBUS_TYPE_DOUBLE:
381 case DBUS_TYPE_STRING:
383 case DBUS_TYPE_CUSTOM:
385 case DBUS_TYPE_ARRAY:
395 * Returns a string describing the given name.
397 * @param header_field the field to describe
398 * @returns a constant string describing the field
401 _dbus_header_field_to_string (int header_field)
403 switch (header_field)
405 case DBUS_HEADER_FIELD_INVALID:
407 case DBUS_HEADER_FIELD_PATH:
409 case DBUS_HEADER_FIELD_INTERFACE:
411 case DBUS_HEADER_FIELD_MEMBER:
413 case DBUS_HEADER_FIELD_ERROR_NAME:
415 case DBUS_HEADER_FIELD_REPLY_SERIAL:
416 return "reply-serial";
417 case DBUS_HEADER_FIELD_DESTINATION:
418 return "destination";
419 case DBUS_HEADER_FIELD_SENDER:
426 #ifndef DBUS_DISABLE_CHECKS
427 /** String used in _dbus_return_if_fail macro */
428 const char _dbus_return_if_fail_warning_format[] =
429 "%lu: arguments to %s() were incorrect, assertion \"%s\" failed in file %s line %d.\n"
430 "This is normally a bug in some application using the D-BUS library.\n";
433 #ifndef DBUS_DISABLE_ASSERT
435 * Internals of _dbus_assert(); it's a function
436 * rather than a macro with the inline code so
437 * that the assertion failure blocks don't show up
438 * in test suite coverage, and to shrink code size.
440 * @param condition TRUE if assertion succeeded
441 * @param condition_text condition as a string
442 * @param file file the assertion is in
443 * @param line line the assertion is in
446 _dbus_real_assert (dbus_bool_t condition,
447 const char *condition_text,
451 if (_DBUS_UNLIKELY (!condition))
453 _dbus_warn ("%lu: assertion failed \"%s\" file \"%s\" line %d\n",
454 _dbus_getpid (), condition_text, file, line);
460 * Internals of _dbus_assert_not_reached(); it's a function
461 * rather than a macro with the inline code so
462 * that the assertion failure blocks don't show up
463 * in test suite coverage, and to shrink code size.
465 * @param explanation what was reached that shouldn't have been
466 * @param file file the assertion is in
467 * @param line line the assertion is in
470 _dbus_real_assert_not_reached (const char *explanation,
474 _dbus_warn ("File \"%s\" line %d process %lu should not have been reached: %s\n",
475 file, line, _dbus_getpid (), explanation);
478 #endif /* DBUS_DISABLE_ASSERT */
480 #ifdef DBUS_BUILD_TESTS
482 run_failing_each_malloc (int n_mallocs,
483 const char *description,
484 DBusTestMemoryFunction func,
487 n_mallocs += 10; /* fudge factor to ensure reallocs etc. are covered */
489 while (n_mallocs >= 0)
491 _dbus_set_fail_alloc_counter (n_mallocs);
493 _dbus_verbose ("\n===\n%s: (will fail malloc %d with %d failures)\n===\n",
494 description, n_mallocs,
495 _dbus_get_fail_alloc_failures ());
497 if (!(* func) (data))
503 _dbus_set_fail_alloc_counter (_DBUS_INT_MAX);
509 * Tests how well the given function responds to out-of-memory
510 * situations. Calls the function repeatedly, failing a different
511 * call to malloc() each time. If the function ever returns #FALSE,
512 * the test fails. The function should return #TRUE whenever something
513 * valid (such as returning an error, or succeeding) occurs, and #FALSE
514 * if it gets confused in some way.
516 * @param description description of the test used in verbose output
517 * @param func function to call
518 * @param data data to pass to function
519 * @returns #TRUE if the function never returns FALSE
522 _dbus_test_oom_handling (const char *description,
523 DBusTestMemoryFunction func,
528 /* Run once to see about how many mallocs are involved */
530 _dbus_set_fail_alloc_counter (_DBUS_INT_MAX);
532 _dbus_verbose ("Running once to count mallocs\n");
534 if (!(* func) (data))
537 approx_mallocs = _DBUS_INT_MAX - _dbus_get_fail_alloc_counter ();
539 _dbus_verbose ("\n=================\n%s: about %d mallocs total\n=================\n",
540 description, approx_mallocs);
542 _dbus_set_fail_alloc_failures (1);
543 if (!run_failing_each_malloc (approx_mallocs, description, func, data))
546 _dbus_set_fail_alloc_failures (2);
547 if (!run_failing_each_malloc (approx_mallocs, description, func, data))
550 _dbus_set_fail_alloc_failures (3);
551 if (!run_failing_each_malloc (approx_mallocs, description, func, data))
554 _dbus_set_fail_alloc_failures (4);
555 if (!run_failing_each_malloc (approx_mallocs, description, func, data))
558 _dbus_verbose ("\n=================\n%s: all iterations passed\n=================\n",
563 #endif /* DBUS_BUILD_TESTS */