1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-sysdeps.c Wrappers around system/libc features shared between UNIX and Windows (internal to D-Bus implementation)
4 * Copyright (C) 2002, 2003, 2006 Red Hat, Inc.
5 * Copyright (C) 2003 CodeFactory AB
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "dbus-internals.h"
27 #include "dbus-sysdeps.h"
28 #include "dbus-threads.h"
29 #include "dbus-protocol.h"
30 #include "dbus-string.h"
31 #include "dbus-list.h"
33 /* NOTE: If you include any unix/windows-specific headers here, you are probably doing something
34 * wrong and should be putting some code in dbus-sysdeps-unix.c or dbus-sysdeps-win.c.
36 * These are the standard ANSI C headers...
49 _DBUS_DEFINE_GLOBAL_LOCK (win_fds);
50 _DBUS_DEFINE_GLOBAL_LOCK (sid_atom_cache);
51 _DBUS_DEFINE_GLOBAL_LOCK (system_users);
55 #elif (defined __APPLE__)
56 # include <crt_externs.h>
57 # define environ (*_NSGetEnviron())
59 extern char **environ;
63 * @defgroup DBusSysdeps Internal system-dependent API
64 * @ingroup DBusInternals
65 * @brief Internal system-dependent API available on UNIX and Windows
67 * The system-dependent API has a dual purpose. First, it encapsulates
68 * all usage of operating system APIs for ease of auditing and to
69 * avoid cluttering the rest of the code with bizarre OS quirks and
70 * headers. Second, it abstracts different operating system APIs for
77 * Aborts the program with SIGABRT (dumping core).
84 _dbus_print_backtrace ();
86 s = _dbus_getenv ("DBUS_BLOCK_ON_ABORT");
89 /* don't use _dbus_warn here since it can _dbus_abort() */
90 fprintf (stderr, " Process %lu sleeping for gdb attach\n", _dbus_pid_for_log ());
91 _dbus_sleep_milliseconds (1000 * 180);
95 _dbus_exit (1); /* in case someone manages to ignore SIGABRT ? */
99 * Wrapper for setenv(). If the value is #NULL, unsets
100 * the environment variable.
102 * There is an unfixable memleak in that it is unsafe to
103 * free memory malloced for use with setenv. This is because
104 * we can not rely on internal implementation details of
105 * the underlying libc library.
107 * @param varname name of environment variable
108 * @param value value of environment variable
109 * @returns #TRUE on success.
112 _dbus_setenv (const char *varname,
115 _dbus_assert (varname != NULL);
126 len = strlen (varname);
128 /* Use system malloc to avoid memleaks that dbus_malloc
129 * will get upset about.
132 putenv_value = malloc (len + 2);
133 if (putenv_value == NULL)
136 strcpy (putenv_value, varname);
137 #if defined(DBUS_WIN)
138 strcat (putenv_value, "=");
141 return (putenv (putenv_value) == 0);
147 return (setenv (varname, value, TRUE) == 0);
154 varname_len = strlen (varname);
155 value_len = strlen (value);
157 len = varname_len + value_len + 1 /* '=' */ ;
159 /* Use system malloc to avoid memleaks that dbus_malloc
160 * will get upset about.
163 putenv_value = malloc (len + 1);
164 if (putenv_value == NULL)
167 strcpy (putenv_value, varname);
168 strcpy (putenv_value + varname_len, "=");
169 strcpy (putenv_value + varname_len + 1, value);
171 return (putenv (putenv_value) == 0);
177 * Wrapper for getenv().
179 * @param varname name of environment variable
180 * @returns value of environment variable or #NULL if unset
183 _dbus_getenv (const char *varname)
185 return getenv (varname);
189 * Wrapper for clearenv().
191 * @returns #TRUE on success.
194 _dbus_clearenv (void)
196 dbus_bool_t rc = TRUE;
199 if (clearenv () != 0)
211 * Split paths into a list of char strings
213 * @param dirs string with pathes
214 * @param suffix string concated to each path in dirs
215 * @param dir_list contains a list of splitted pathes
216 * return #TRUE is pathes could be splittes,#FALSE in oom case
219 _dbus_split_paths_and_append (DBusString *dirs,
227 DBusString file_suffix;
232 _dbus_string_init_const (&file_suffix, suffix);
234 len = _dbus_string_get_length (dirs);
236 while (_dbus_string_find (dirs, start, _DBUS_PATH_SEPARATOR, &i))
240 if (!_dbus_string_init (&path))
243 if (!_dbus_string_copy_len (dirs,
249 _dbus_string_free (&path);
253 _dbus_string_chop_white (&path);
255 /* check for an empty path */
256 if (_dbus_string_get_length (&path) == 0)
259 if (!_dbus_concat_dir_and_file (&path,
262 _dbus_string_free (&path);
266 if (!_dbus_string_copy_data(&path, &cpath))
268 _dbus_string_free (&path);
272 if (!_dbus_list_append (dir_list, cpath))
274 _dbus_string_free (&path);
280 _dbus_string_free (&path);
288 if (!_dbus_string_init (&path))
291 if (!_dbus_string_copy_len (dirs,
297 _dbus_string_free (&path);
301 if (!_dbus_concat_dir_and_file (&path,
304 _dbus_string_free (&path);
308 if (!_dbus_string_copy_data(&path, &cpath))
310 _dbus_string_free (&path);
314 if (!_dbus_list_append (dir_list, cpath))
316 _dbus_string_free (&path);
321 _dbus_string_free (&path);
327 _dbus_list_foreach (dir_list, (DBusForeachFunction)dbus_free, NULL);
328 _dbus_list_clear (dir_list);
335 * @addtogroup DBusString
340 * Appends an integer to a DBusString.
342 * @param str the string
343 * @param value the integer value
344 * @returns #FALSE if not enough memory or other failure.
347 _dbus_string_append_int (DBusString *str,
350 /* this calculation is from comp.lang.c faq */
351 #define MAX_LONG_LEN ((sizeof (long) * 8 + 2) / 3 + 1) /* +1 for '-' */
356 orig_len = _dbus_string_get_length (str);
358 if (!_dbus_string_lengthen (str, MAX_LONG_LEN))
361 buf = _dbus_string_get_data_len (str, orig_len, MAX_LONG_LEN);
363 snprintf (buf, MAX_LONG_LEN, "%ld", value);
372 _dbus_string_shorten (str, MAX_LONG_LEN - i);
378 * Appends an unsigned integer to a DBusString.
380 * @param str the string
381 * @param value the integer value
382 * @returns #FALSE if not enough memory or other failure.
385 _dbus_string_append_uint (DBusString *str,
388 /* this is wrong, but definitely on the high side. */
389 #define MAX_ULONG_LEN (MAX_LONG_LEN * 2)
394 orig_len = _dbus_string_get_length (str);
396 if (!_dbus_string_lengthen (str, MAX_ULONG_LEN))
399 buf = _dbus_string_get_data_len (str, orig_len, MAX_ULONG_LEN);
401 snprintf (buf, MAX_ULONG_LEN, "%lu", value);
410 _dbus_string_shorten (str, MAX_ULONG_LEN - i);
416 * Parses an integer contained in a DBusString. Either return parameter
417 * may be #NULL if you aren't interested in it. The integer is parsed
418 * and stored in value_return. Return parameters are not initialized
419 * if the function returns #FALSE.
421 * @param str the string
422 * @param start the byte index of the start of the integer
423 * @param value_return return location of the integer value or #NULL
424 * @param end_return return location of the end of the integer, or #NULL
425 * @returns #TRUE on success
428 _dbus_string_parse_int (const DBusString *str,
437 p = _dbus_string_get_const_data_len (str, start,
438 _dbus_string_get_length (str) - start);
441 _dbus_set_errno_to_zero ();
442 v = strtol (p, &end, 0);
443 if (end == NULL || end == p || errno != 0)
449 *end_return = start + (end - p);
455 * Parses an unsigned integer contained in a DBusString. Either return
456 * parameter may be #NULL if you aren't interested in it. The integer
457 * is parsed and stored in value_return. Return parameters are not
458 * initialized if the function returns #FALSE.
460 * @param str the string
461 * @param start the byte index of the start of the integer
462 * @param value_return return location of the integer value or #NULL
463 * @param end_return return location of the end of the integer, or #NULL
464 * @returns #TRUE on success
467 _dbus_string_parse_uint (const DBusString *str,
469 unsigned long *value_return,
476 p = _dbus_string_get_const_data_len (str, start,
477 _dbus_string_get_length (str) - start);
480 _dbus_set_errno_to_zero ();
481 v = strtoul (p, &end, 0);
482 if (end == NULL || end == p || errno != 0)
488 *end_return = start + (end - p);
493 /** @} */ /* DBusString group */
496 * @addtogroup DBusInternalsUtils
501 _dbus_generate_pseudorandom_bytes_buffer (char *buffer,
507 /* fall back to pseudorandom */
508 _dbus_verbose ("Falling back to pseudorandom for %d bytes\n",
511 _dbus_get_real_time (NULL, &tv_usec);
521 b = (r / (double) RAND_MAX) * 255.0;
530 * Fills n_bytes of the given buffer with random bytes.
532 * @param buffer an allocated buffer
533 * @param n_bytes the number of bytes in buffer to write to
536 _dbus_generate_random_bytes_buffer (char *buffer,
541 if (!_dbus_string_init (&str))
543 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
547 if (!_dbus_generate_random_bytes (&str, n_bytes))
549 _dbus_string_free (&str);
550 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
554 _dbus_string_copy_to_buffer (&str, buffer, n_bytes);
556 _dbus_string_free (&str);
560 * Generates the given number of random bytes, where the bytes are
561 * chosen from the alphanumeric ASCII subset.
563 * @param str the string
564 * @param n_bytes the number of random ASCII bytes to append to string
565 * @returns #TRUE on success, #FALSE if no memory or other failure
568 _dbus_generate_random_ascii (DBusString *str,
571 static const char letters[] =
572 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
576 if (!_dbus_generate_random_bytes (str, n_bytes))
579 len = _dbus_string_get_length (str);
583 _dbus_string_set_byte (str, i,
584 letters[_dbus_string_get_byte (str, i) %
585 (sizeof (letters) - 1)]);
590 _dbus_assert (_dbus_string_validate_ascii (str, len - n_bytes,
597 * Converts a UNIX errno, or Windows errno or WinSock error value into
600 * @todo should cover more errnos, specifically those
603 * @param error_number the errno.
604 * @returns an error name
607 _dbus_error_from_errno (int error_number)
609 switch (error_number)
612 return DBUS_ERROR_FAILED;
614 #ifdef EPROTONOSUPPORT
615 case EPROTONOSUPPORT:
616 return DBUS_ERROR_NOT_SUPPORTED;
617 #elif defined(WSAEPROTONOSUPPORT)
618 case WSAEPROTONOSUPPORT:
619 return DBUS_ERROR_NOT_SUPPORTED;
623 return DBUS_ERROR_NOT_SUPPORTED;
624 #elif defined(WSAEAFNOSUPPORT)
625 case WSAEAFNOSUPPORT:
626 return DBUS_ERROR_NOT_SUPPORTED;
630 return DBUS_ERROR_LIMITS_EXCEEDED; /* kernel out of memory */
634 return DBUS_ERROR_LIMITS_EXCEEDED;
638 return DBUS_ERROR_ACCESS_DENIED;
642 return DBUS_ERROR_ACCESS_DENIED;
646 return DBUS_ERROR_NO_MEMORY;
650 return DBUS_ERROR_NO_MEMORY;
654 return DBUS_ERROR_NO_SERVER;
655 #elif defined(WSAECONNREFUSED)
656 case WSAECONNREFUSED:
657 return DBUS_ERROR_NO_SERVER;
661 return DBUS_ERROR_TIMEOUT;
662 #elif defined(WSAETIMEDOUT)
664 return DBUS_ERROR_TIMEOUT;
668 return DBUS_ERROR_NO_NETWORK;
669 #elif defined(WSAENETUNREACH)
671 return DBUS_ERROR_NO_NETWORK;
675 return DBUS_ERROR_ADDRESS_IN_USE;
676 #elif defined(WSAEADDRINUSE)
678 return DBUS_ERROR_ADDRESS_IN_USE;
682 return DBUS_ERROR_FILE_EXISTS;
686 return DBUS_ERROR_FILE_NOT_FOUND;
690 return DBUS_ERROR_FAILED;
694 * Converts the current system errno value into a #DBusError name.
696 * @returns an error name
699 _dbus_error_from_system_errno (void)
701 return _dbus_error_from_errno (errno);
705 * Assign 0 to the global errno variable
708 _dbus_set_errno_to_zero (void)
718 * See if errno is set
719 * @returns #TRUE if errno is not 0
722 _dbus_get_is_errno_nonzero (void)
728 * See if errno is ENOMEM
729 * @returns #TRUE if errno == ENOMEM
732 _dbus_get_is_errno_enomem (void)
734 return errno == ENOMEM;
738 * See if errno is EINTR
739 * @returns #TRUE if errno == EINTR
742 _dbus_get_is_errno_eintr (void)
744 return errno == EINTR;
748 * See if errno is EPIPE
749 * @returns #TRUE if errno == EPIPE
752 _dbus_get_is_errno_epipe (void)
754 return errno == EPIPE;
758 * Get error message from errno
759 * @returns _dbus_strerror(errno)
762 _dbus_strerror_from_errno (void)
764 return _dbus_strerror (errno);
767 /** @} end of sysdeps */
769 /* tests in dbus-sysdeps-util.c */