e546c4bee34144c8e5111cc0d0e53eb9131dc2b0
[platform/upstream/dbus.git] / dbus / dbus-sysdeps.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-sysdeps.c Wrappers around system/libc features (internal to D-BUS implementation)
3  * 
4  * Copyright (C) 2002, 2003  Red Hat, Inc.
5  * Copyright (C) 2003 CodeFactory AB
6  *
7  * Licensed under the Academic Free License version 1.2
8  * 
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.
13  *
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.
18  * 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24
25 #include "dbus-internals.h"
26 #include "dbus-sysdeps.h"
27 #include "dbus-threads.h"
28 #include "dbus-test.h"
29 #include <sys/types.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <signal.h>
33 #include <unistd.h>
34 #include <stdio.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <sys/socket.h>
38 #include <dirent.h>
39 #include <sys/un.h>
40 #include <pwd.h>
41 #include <time.h>
42 #include <locale.h>
43 #include <sys/time.h>
44 #include <sys/stat.h>
45 #include <sys/wait.h>
46 #include <netinet/in.h>
47 #include <netdb.h>
48 #include <grp.h>
49
50 #ifdef HAVE_WRITEV
51 #include <sys/uio.h>
52 #endif
53 #ifdef HAVE_POLL
54 #include <sys/poll.h>
55 #endif
56 #ifdef HAVE_BACKTRACE
57 #include <execinfo.h>
58 #endif
59
60
61 #ifndef O_BINARY
62 #define O_BINARY 0
63 #endif
64
65 #ifndef SUN_LEN
66 /* This system is not POSIX.1g.         */
67 #define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path)  \
68        + strlen ((ptr)->sun_path))
69 #endif
70
71 /**
72  * @addtogroup DBusInternalsUtils
73  * @{
74  */
75 /**
76  * Aborts the program with SIGABRT (dumping core).
77  */
78 void
79 _dbus_abort (void)
80 {
81   abort ();
82   _exit (1); /* in case someone manages to ignore SIGABRT */
83 }
84
85 /**
86  * Wrapper for setenv(). If the value is #NULL, unsets
87  * the environment variable.
88  *
89  * @todo if someone can verify it's safe, we could avoid the
90  * memleak when doing an unset.
91  *
92  * @param varname name of environment variable
93  * @param value value of environment variable
94  * @returns #TRUE on success.
95  */
96 dbus_bool_t
97 _dbus_setenv (const char *varname,
98               const char *value)
99 {
100   _dbus_assert (varname != NULL);
101   
102   if (value == NULL)
103     {
104 #ifdef HAVE_UNSETENV
105       unsetenv (varname);
106       return TRUE;
107 #else
108       char *putenv_value;
109       size_t len;
110
111       len = strlen (varname);
112
113       /* Use system malloc to avoid memleaks that dbus_malloc
114        * will get upset about.
115        */
116       
117       putenv_value = malloc (len + 1);
118       if (putenv_value == NULL)
119         return FALSE;
120
121       strcpy (putenv_value, varname);
122       
123       return (putenv (putenv_value) == 0);
124 #endif
125     }
126   else
127     {
128 #ifdef HAVE_SETENV
129       return (setenv (varname, value, TRUE) == 0);
130 #else
131       char *putenv_value;
132       size_t len;
133       size_t varname_len;
134       size_t value_len;
135
136       varname_len = strlen (varname);
137       value_len = strlen (value);
138       
139       len = varname_len + value_len + 1 /* '=' */ ;
140
141       /* Use system malloc to avoid memleaks that dbus_malloc
142        * will get upset about.
143        */
144       
145       putenv_value = malloc (len + 1);
146       if (putenv_value == NULL)
147         return FALSE;
148
149       strcpy (putenv_value, varname);
150       strcpy (putenv_value + varname_len, "=");
151       strcpy (putenv_value + varname_len + 1, value);
152       
153       return (putenv (putenv_value) == 0);
154 #endif
155     }
156 }
157
158 /**
159  * Wrapper for getenv().
160  *
161  * @param varname name of environment variable
162  * @returns value of environment variable or #NULL if unset
163  */
164 const char*
165 _dbus_getenv (const char *varname)
166 {  
167   return getenv (varname);
168 }
169
170 /**
171  * Thin wrapper around the read() system call that appends
172  * the data it reads to the DBusString buffer. It appends
173  * up to the given count, and returns the same value
174  * and same errno as read(). The only exception is that
175  * _dbus_read() handles EINTR for you. _dbus_read() can
176  * return ENOMEM, even though regular UNIX read doesn't.
177  *
178  * @param fd the file descriptor to read from
179  * @param buffer the buffer to append data to
180  * @param count the amount of data to read
181  * @returns the number of bytes read or -1
182  */
183 int
184 _dbus_read (int               fd,
185             DBusString       *buffer,
186             int               count)
187 {
188   int bytes_read;
189   int start;
190   char *data;
191
192   _dbus_assert (count >= 0);
193   
194   start = _dbus_string_get_length (buffer);
195
196   if (!_dbus_string_lengthen (buffer, count))
197     {
198       errno = ENOMEM;
199       return -1;
200     }
201
202   data = _dbus_string_get_data_len (buffer, start, count);
203
204  again:
205   
206   bytes_read = read (fd, data, count);
207
208   if (bytes_read < 0)
209     {
210       if (errno == EINTR)
211         goto again;
212       else
213         {
214           /* put length back (note that this doesn't actually realloc anything) */
215           _dbus_string_set_length (buffer, start);
216           return -1;
217         }
218     }
219   else
220     {
221       /* put length back (doesn't actually realloc) */
222       _dbus_string_set_length (buffer, start + bytes_read);
223
224 #if 0
225       if (bytes_read > 0)
226         _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
227 #endif
228       
229       return bytes_read;
230     }
231 }
232
233 /**
234  * Thin wrapper around the write() system call that writes a part of a
235  * DBusString and handles EINTR for you.
236  * 
237  * @param fd the file descriptor to write
238  * @param buffer the buffer to write data from
239  * @param start the first byte in the buffer to write
240  * @param len the number of bytes to try to write
241  * @returns the number of bytes written or -1 on error
242  */
243 int
244 _dbus_write (int               fd,
245              const DBusString *buffer,
246              int               start,
247              int               len)
248 {
249   const char *data;
250   int bytes_written;
251   
252   data = _dbus_string_get_const_data_len (buffer, start, len);
253   
254  again:
255
256   bytes_written = write (fd, data, len);
257
258   if (bytes_written < 0 && errno == EINTR)
259     goto again;
260
261 #if 0
262   if (bytes_written > 0)
263     _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
264 #endif
265   
266   return bytes_written;
267 }
268
269 /**
270  * Like _dbus_write() but will use writev() if possible
271  * to write both buffers in sequence. The return value
272  * is the number of bytes written in the first buffer,
273  * plus the number written in the second. If the first
274  * buffer is written successfully and an error occurs
275  * writing the second, the number of bytes in the first
276  * is returned (i.e. the error is ignored), on systems that
277  * don't have writev. Handles EINTR for you.
278  * The second buffer may be #NULL.
279  *
280  * @param fd the file descriptor
281  * @param buffer1 first buffer
282  * @param start1 first byte to write in first buffer
283  * @param len1 number of bytes to write from first buffer
284  * @param buffer2 second buffer, or #NULL
285  * @param start2 first byte to write in second buffer
286  * @param len2 number of bytes to write in second buffer
287  * @returns total bytes written from both buffers, or -1 on error
288  */
289 int
290 _dbus_write_two (int               fd,
291                  const DBusString *buffer1,
292                  int               start1,
293                  int               len1,
294                  const DBusString *buffer2,
295                  int               start2,
296                  int               len2)
297 {
298   _dbus_assert (buffer1 != NULL);
299   _dbus_assert (start1 >= 0);
300   _dbus_assert (start2 >= 0);
301   _dbus_assert (len1 >= 0);
302   _dbus_assert (len2 >= 0);
303   
304 #ifdef HAVE_WRITEV
305   {
306     struct iovec vectors[2];
307     const char *data1;
308     const char *data2;
309     int bytes_written;
310
311     data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
312
313     if (buffer2 != NULL)
314       data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
315     else
316       {
317         data2 = NULL;
318         start2 = 0;
319         len2 = 0;
320       }
321    
322     vectors[0].iov_base = (char*) data1;
323     vectors[0].iov_len = len1;
324     vectors[1].iov_base = (char*) data2;
325     vectors[1].iov_len = len2;
326
327   again:
328    
329     bytes_written = writev (fd,
330                             vectors,
331                             data2 ? 2 : 1);
332
333     if (bytes_written < 0 && errno == EINTR)
334       goto again;
335    
336     return bytes_written;
337   }
338 #else /* HAVE_WRITEV */
339   {
340     int ret1;
341     
342     ret1 = _dbus_write (fd, buffer1, start1, len1);
343     if (ret1 == len1 && buffer2 != NULL)
344       {
345         ret2 = _dbus_write (fd, buffer2, start2, len2);
346         if (ret2 < 0)
347           ret2 = 0; /* we can't report an error as the first write was OK */
348        
349         return ret1 + ret2;
350       }
351     else
352       return ret1;
353   }
354 #endif /* !HAVE_WRITEV */   
355 }
356
357 #define _DBUS_MAX_SUN_PATH_LENGTH 99
358
359 /**
360  * @def _DBUS_MAX_SUN_PATH_LENGTH
361  *
362  * Maximum length of the path to a UNIX domain socket,
363  * sockaddr_un::sun_path member. POSIX requires that all systems
364  * support at least 100 bytes here, including the nul termination.
365  * We use 99 for the max value to allow for the nul.
366  *
367  * We could probably also do sizeof (addr.sun_path)
368  * but this way we are the same on all platforms
369  * which is probably a good idea.
370  */
371
372 /**
373  * Creates a socket and connects it to the UNIX domain socket at the
374  * given path.  The connection fd is returned, and is set up as
375  * nonblocking.
376  *
377  * @param path the path to UNIX domain socket
378  * @param error return location for error code
379  * @returns connection file descriptor or -1 on error
380  */
381 int
382 _dbus_connect_unix_socket (const char     *path,
383                            DBusError      *error)
384 {
385   int fd;
386   struct sockaddr_un addr;  
387
388   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
389   
390   fd = socket (PF_UNIX, SOCK_STREAM, 0);
391   
392   if (fd < 0)
393     {
394       dbus_set_error (error,
395                       _dbus_error_from_errno (errno),
396                       "Failed to create socket: %s",
397                       _dbus_strerror (errno)); 
398       
399       return -1;
400     }
401
402   _DBUS_ZERO (addr);
403   addr.sun_family = AF_UNIX;
404   strncpy (addr.sun_path, path, _DBUS_MAX_SUN_PATH_LENGTH - 1);
405   
406   if (connect (fd, (struct sockaddr*) &addr, sizeof (addr)) < 0)
407     {      
408       dbus_set_error (error,
409                       _dbus_error_from_errno (errno),
410                       "Failed to connect to socket %s: %s",
411                       path, _dbus_strerror (errno));
412
413       close (fd);
414       fd = -1;
415       
416       return -1;
417     }
418
419   if (!_dbus_set_fd_nonblocking (fd, error))
420     {
421       _DBUS_ASSERT_ERROR_IS_SET (error);
422       
423       close (fd);
424       fd = -1;
425
426       return -1;
427     }
428
429   return fd;
430 }
431
432 /**
433  * Creates a socket and binds it to the given path,
434  * then listens on the socket. The socket is
435  * set to be nonblocking.
436  *
437  * @todo we'd like to be able to use the abstract namespace on linux
438  * (see "man 7 unix"). The question is whether to silently move all
439  * paths into that namespace if we can (I think that's best) or to
440  * require it to be specified explicitly in the dbus address.  Also,
441  * need to sort out how to check for abstract namespace support.
442  *
443  * @param path the socket name
444  * @param error return location for errors
445  * @returns the listening file descriptor or -1 on error
446  */
447 int
448 _dbus_listen_unix_socket (const char     *path,
449                           DBusError      *error)
450 {
451   int listen_fd;
452   struct sockaddr_un addr;
453
454   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
455   
456   listen_fd = socket (PF_UNIX, SOCK_STREAM, 0);
457   
458   if (listen_fd < 0)
459     {
460       dbus_set_error (error, _dbus_error_from_errno (errno),
461                       "Failed to create socket \"%s\": %s",
462                       path, _dbus_strerror (errno));
463       return -1;
464     }
465
466   /* FIXME discussed security implications of this with Nalin,
467    * and we couldn't think of where it would kick our ass, but
468    * it still seems a bit sucky. It also has non-security suckage;
469    * really we'd prefer to exit if the socket is already in use.
470    * But there doesn't seem to be a good way to do this.
471    *
472    * Just to be extra careful, I threw in the stat() - clearly
473    * the stat() can't *fix* any security issue, but it probably
474    * makes it harder to exploit.
475    */
476   {
477     struct stat sb;
478
479     if (stat (path, &sb) == 0 &&
480         S_ISSOCK (sb.st_mode))
481       unlink (path);
482   }
483   
484   _DBUS_ZERO (addr);
485   addr.sun_family = AF_UNIX;
486   strncpy (addr.sun_path, path, _DBUS_MAX_SUN_PATH_LENGTH - 1);
487   
488   if (bind (listen_fd, (struct sockaddr*) &addr, SUN_LEN (&addr)) < 0)
489     {
490       dbus_set_error (error, _dbus_error_from_errno (errno),
491                       "Failed to bind socket \"%s\": %s",
492                       path, _dbus_strerror (errno));
493       close (listen_fd);
494       return -1;
495     }
496
497   if (listen (listen_fd, 30 /* backlog */) < 0)
498     {
499       dbus_set_error (error, _dbus_error_from_errno (errno),
500                       "Failed to listen on socket \"%s\": %s",
501                       path, _dbus_strerror (errno));
502       close (listen_fd);
503       return -1;
504     }
505
506   if (!_dbus_set_fd_nonblocking (listen_fd, error))
507     {
508       _DBUS_ASSERT_ERROR_IS_SET (error);
509       close (listen_fd);
510       return -1;
511     }
512
513   /* Try opening up the permissions, but if we can't, just go ahead
514    * and continue, maybe it will be good enough.
515    */
516   if (chmod (path, 0777) < 0)
517     _dbus_warn ("Could not set mode 0777 on socket %s\n",
518                 path);
519   
520   return listen_fd;
521 }
522
523 /**
524  * Creates a socket and connects to a socket at the given host 
525  * and port. The connection fd is returned, and is set up as
526  * nonblocking.
527  *
528  * @param host the host name to connect to
529  * @param port the prot to connect to
530  * @param error return location for error code
531  * @returns connection file descriptor or -1 on error
532  */
533 int
534 _dbus_connect_tcp_socket (const char     *host,
535                           dbus_uint32_t   port,
536                           DBusError      *error)
537 {
538   int fd;
539   struct sockaddr_in addr;
540   struct hostent *he;
541   struct in_addr *haddr;
542
543   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
544   
545   fd = socket (AF_INET, SOCK_STREAM, 0);
546   
547   if (fd < 0)
548     {
549       dbus_set_error (error,
550                       _dbus_error_from_errno (errno),
551                       "Failed to create socket: %s",
552                       _dbus_strerror (errno)); 
553       
554       return -1;
555     }
556
557   if (host == NULL)
558     host = "localhost";
559
560   he = gethostbyname (host);
561   if (he == NULL) 
562     {
563       dbus_set_error (error,
564                       _dbus_error_from_errno (errno),
565                       "Failed to lookup hostname: %s",
566                       host);
567       return -1;
568     }
569   
570   haddr = ((struct in_addr *) (he->h_addr_list)[0]);
571
572   _DBUS_ZERO (addr);
573   memcpy (&addr.sin_addr, haddr, sizeof(struct in_addr));
574   addr.sin_family = AF_INET;
575   addr.sin_port = htons (port);
576   
577   if (connect (fd, (struct sockaddr*) &addr, sizeof (addr)) < 0)
578     {      
579       dbus_set_error (error,
580                        _dbus_error_from_errno (errno),
581                       "Failed to connect to socket %s: %s:%d",
582                       host, _dbus_strerror (errno), port);
583
584       close (fd);
585       fd = -1;
586       
587       return -1;
588     }
589
590   if (!_dbus_set_fd_nonblocking (fd, error))
591     {
592       close (fd);
593       fd = -1;
594
595       return -1;
596     }
597
598   return fd;
599 }
600
601 /**
602  * Creates a socket and binds it to the given path,
603  * then listens on the socket. The socket is
604  * set to be nonblocking. 
605  *
606  * @param host the host name to listen on
607  * @param port the prot to listen on
608  * @param error return location for errors
609  * @returns the listening file descriptor or -1 on error
610  */
611 int
612 _dbus_listen_tcp_socket (const char     *host,
613                          dbus_uint32_t   port,
614                          DBusError      *error)
615 {
616   int listen_fd;
617   struct sockaddr_in addr;
618   struct hostent *he;
619   struct in_addr *haddr;
620
621   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
622   
623   listen_fd = socket (AF_INET, SOCK_STREAM, 0);
624   
625   if (listen_fd < 0)
626     {
627       dbus_set_error (error, _dbus_error_from_errno (errno),
628                       "Failed to create socket \"%s:%d\": %s",
629                       host, port, _dbus_strerror (errno));
630       return -1;
631     }
632
633   if (host == NULL)
634     host = "localhost";
635   
636   he = gethostbyname (host);
637   if (he == NULL) 
638     {
639       dbus_set_error (error,
640                       _dbus_error_from_errno (errno),
641                       "Failed to lookup hostname: %s",
642                       host);
643       return -1;
644     }
645   
646   haddr = ((struct in_addr *) (he->h_addr_list)[0]);
647
648   _DBUS_ZERO (addr);
649   memcpy (&addr.sin_addr, haddr, sizeof (struct in_addr));
650   addr.sin_family = AF_INET;
651   addr.sin_port = htons (port);
652
653   if (bind (listen_fd, (struct sockaddr*) &addr, sizeof (struct sockaddr)))
654     {
655       dbus_set_error (error, _dbus_error_from_errno (errno),
656                       "Failed to bind socket \"%s:%d\": %s",
657                       host, port, _dbus_strerror (errno));
658       close (listen_fd);
659       return -1;
660     }
661
662   if (listen (listen_fd, 30 /* backlog */) < 0)
663     {
664       dbus_set_error (error, _dbus_error_from_errno (errno),  
665                       "Failed to listen on socket \"%s:%d\": %s",
666                       host, port, _dbus_strerror (errno));
667       close (listen_fd);
668       return -1;
669     }
670
671   if (!_dbus_set_fd_nonblocking (listen_fd, error))
672     {
673       close (listen_fd);
674       return -1;
675     }
676   
677   return listen_fd;
678 }
679
680 static dbus_bool_t
681 write_credentials_byte (int             server_fd,
682                         DBusError      *error)
683 {
684   int bytes_written;
685   char buf[1] = { '\0' };
686
687   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
688   
689  again:
690
691   bytes_written = write (server_fd, buf, 1);
692
693   if (bytes_written < 0 && errno == EINTR)
694     goto again;
695
696   if (bytes_written < 0)
697     {
698       dbus_set_error (error, _dbus_error_from_errno (errno),
699                       "Failed to write credentials byte: %s",
700                      _dbus_strerror (errno));
701       return FALSE;
702     }
703   else if (bytes_written == 0)
704     {
705       dbus_set_error (error, DBUS_ERROR_IO_ERROR,
706                       "wrote zero bytes writing credentials byte");
707       return FALSE;
708     }
709   else
710     {
711       _dbus_assert (bytes_written == 1);
712       _dbus_verbose ("wrote credentials byte\n");
713       return TRUE;
714     }
715 }
716
717 /**
718  * Reads a single byte which must be nul (an error occurs otherwise),
719  * and reads unix credentials if available. Fills in pid/uid/gid with
720  * -1 if no credentials are available. Return value indicates whether
721  * a byte was read, not whether we got valid credentials. On some
722  * systems, such as Linux, reading/writing the byte isn't actually
723  * required, but we do it anyway just to avoid multiple codepaths.
724  * 
725  * Fails if no byte is available, so you must select() first.
726  *
727  * The point of the byte is that on some systems we have to
728  * use sendmsg()/recvmsg() to transmit credentials.
729  *
730  * @param client_fd the client file descriptor
731  * @param credentials struct to fill with credentials of client
732  * @param error location to store error code
733  * @returns #TRUE on success
734  */
735 dbus_bool_t
736 _dbus_read_credentials_unix_socket  (int              client_fd,
737                                      DBusCredentials *credentials,
738                                      DBusError       *error)
739 {
740   struct msghdr msg;
741   struct iovec iov;
742   char buf;
743
744 #ifdef HAVE_CMSGCRED 
745   char cmsgmem[CMSG_SPACE (sizeof (struct cmsgcred))];
746   struct cmsghdr *cmsg = (struct cmsghdr *) cmsgmem;
747 #endif
748
749   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
750   
751   /* The POSIX spec certainly doesn't promise this, but
752    * we need these assertions to fail as soon as we're wrong about
753    * it so we can do the porting fixups
754    */
755   _dbus_assert (sizeof (pid_t) <= sizeof (credentials->pid));
756   _dbus_assert (sizeof (uid_t) <= sizeof (credentials->uid));
757   _dbus_assert (sizeof (gid_t) <= sizeof (credentials->gid));
758
759   _dbus_credentials_clear (credentials);
760
761 #if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED)
762   /* Set the socket to receive credentials on the next message */
763   {
764     int on = 1;
765     if (setsockopt (client_fd, 0, LOCAL_CREDS, &on, sizeof (on)) < 0)
766       {
767         _dbus_verbose ("Unable to set LOCAL_CREDS socket option\n");
768         return FALSE;
769       }
770   }
771 #endif
772
773   iov.iov_base = &buf;
774   iov.iov_len = 1;
775
776   memset (&msg, 0, sizeof (msg));
777   msg.msg_iov = &iov;
778   msg.msg_iovlen = 1;
779
780 #ifdef HAVE_CMSGCRED
781   memset (cmsgmem, 0, sizeof (cmsgmem));
782   msg.msg_control = cmsgmem;
783   msg.msg_controllen = sizeof (cmsgmem);
784 #endif
785
786  again:
787   if (recvmsg (client_fd, &msg, 0) < 0)
788     {
789       if (errno == EINTR)
790         goto again;
791
792       dbus_set_error (error, _dbus_error_from_errno (errno),
793                       "Failed to read credentials byte: %s",
794                       _dbus_strerror (errno));
795       return FALSE;
796     }
797
798   if (buf != '\0')
799     {
800       dbus_set_error (error, DBUS_ERROR_FAILED,
801                       "Credentials byte was not nul");
802       return FALSE;
803     }
804
805 #ifdef HAVE_CMSGCRED
806   if (cmsg->cmsg_len < sizeof (cmsgmem) || cmsg->cmsg_type != SCM_CREDS)
807     {
808       dbus_set_error (error, DBUS_ERROR_FAILED);
809       _dbus_verbose ("Message from recvmsg() was not SCM_CREDS\n");
810       return FALSE;
811     }
812 #endif
813
814   _dbus_verbose ("read credentials byte\n");
815
816   {
817 #ifdef SO_PEERCRED
818     struct ucred cr;   
819     int cr_len = sizeof (cr);
820    
821     if (getsockopt (client_fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) == 0 &&
822         cr_len == sizeof (cr))
823       {
824         credentials->pid = cr.pid;
825         credentials->uid = cr.uid;
826         credentials->gid = cr.gid;
827       }
828     else
829       {
830         _dbus_verbose ("Failed to getsockopt() credentials, returned len %d/%d: %s\n",
831                        cr_len, (int) sizeof (cr), _dbus_strerror (errno));
832       }
833 #elif defined(HAVE_CMSGCRED)
834     struct cmsgcred *cred;
835
836     cred = (struct cmsgcred *) CMSG_DATA (cmsg);
837
838     credentials->pid = cred->cmcred_pid;
839     credentials->uid = cred->cmcred_euid;
840     credentials->gid = cred->cmcred_groups[0];
841 #else /* !SO_PEERCRED && !HAVE_CMSGCRED */
842     _dbus_verbose ("Socket credentials not supported on this OS\n");
843 #endif
844   }
845
846   _dbus_verbose ("Credentials:"
847                  "  pid "DBUS_PID_FORMAT
848                  "  uid "DBUS_UID_FORMAT
849                  "  gid "DBUS_GID_FORMAT"\n",
850                  credentials->pid,
851                  credentials->uid,
852                  credentials->gid);
853     
854   return TRUE;
855 }
856
857 /**
858  * Sends a single nul byte with our UNIX credentials as ancillary
859  * data.  Returns #TRUE if the data was successfully written.  On
860  * systems that don't support sending credentials, just writes a byte,
861  * doesn't send any credentials.  On some systems, such as Linux,
862  * reading/writing the byte isn't actually required, but we do it
863  * anyway just to avoid multiple codepaths.
864  *
865  * Fails if no byte can be written, so you must select() first.
866  *
867  * The point of the byte is that on some systems we have to
868  * use sendmsg()/recvmsg() to transmit credentials.
869  *
870  * @param server_fd file descriptor for connection to server
871  * @param error return location for error code
872  * @returns #TRUE if the byte was sent
873  */
874 dbus_bool_t
875 _dbus_send_credentials_unix_socket  (int              server_fd,
876                                      DBusError       *error)
877 {
878   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
879   
880   if (write_credentials_byte (server_fd, error))
881     return TRUE;
882   else
883     return FALSE;
884 }
885
886 /**
887  * Accepts a connection on a listening socket.
888  * Handles EINTR for you.
889  *
890  * @param listen_fd the listen file descriptor
891  * @returns the connection fd of the client, or -1 on error
892  */
893 int
894 _dbus_accept  (int listen_fd)
895 {
896   int client_fd;
897   struct sockaddr addr;
898   socklen_t addrlen;
899
900   addrlen = sizeof (addr);
901   
902  retry:
903   client_fd = accept (listen_fd, &addr, &addrlen);
904   
905   if (client_fd < 0)
906     {
907       if (errno == EINTR)
908         goto retry;
909     }
910   
911   return client_fd;
912 }
913
914 /** @} */
915
916 /**
917  * @addtogroup DBusString
918  *
919  * @{
920  */
921 /**
922  * Appends an integer to a DBusString.
923  * 
924  * @param str the string
925  * @param value the integer value
926  * @returns #FALSE if not enough memory or other failure.
927  */
928 dbus_bool_t
929 _dbus_string_append_int (DBusString *str,
930                          long        value)
931 {
932   /* this calculation is from comp.lang.c faq */
933 #define MAX_LONG_LEN ((sizeof (long) * 8 + 2) / 3 + 1)  /* +1 for '-' */
934   int orig_len;
935   int i;
936   char *buf;
937   
938   orig_len = _dbus_string_get_length (str);
939
940   if (!_dbus_string_lengthen (str, MAX_LONG_LEN))
941     return FALSE;
942
943   buf = _dbus_string_get_data_len (str, orig_len, MAX_LONG_LEN);
944
945   snprintf (buf, MAX_LONG_LEN, "%ld", value);
946
947   i = 0;
948   while (*buf)
949     {
950       ++buf;
951       ++i;
952     }
953   
954   _dbus_string_shorten (str, MAX_LONG_LEN - i);
955   
956   return TRUE;
957 }
958
959 /**
960  * Appends an unsigned integer to a DBusString.
961  * 
962  * @param str the string
963  * @param value the integer value
964  * @returns #FALSE if not enough memory or other failure.
965  */
966 dbus_bool_t
967 _dbus_string_append_uint (DBusString    *str,
968                           unsigned long  value)
969 {
970   /* this is wrong, but definitely on the high side. */
971 #define MAX_ULONG_LEN (MAX_LONG_LEN * 2)
972   int orig_len;
973   int i;
974   char *buf;
975   
976   orig_len = _dbus_string_get_length (str);
977
978   if (!_dbus_string_lengthen (str, MAX_ULONG_LEN))
979     return FALSE;
980
981   buf = _dbus_string_get_data_len (str, orig_len, MAX_ULONG_LEN);
982
983   snprintf (buf, MAX_ULONG_LEN, "%lu", value);
984
985   i = 0;
986   while (*buf)
987     {
988       ++buf;
989       ++i;
990     }
991   
992   _dbus_string_shorten (str, MAX_ULONG_LEN - i);
993   
994   return TRUE;
995 }
996
997 /**
998  * Appends a double to a DBusString.
999  * 
1000  * @param str the string
1001  * @param value the floating point value
1002  * @returns #FALSE if not enough memory or other failure.
1003  */
1004 dbus_bool_t
1005 _dbus_string_append_double (DBusString *str,
1006                             double      value)
1007 {
1008 #define MAX_DOUBLE_LEN 64 /* this is completely made up :-/ */
1009   int orig_len;
1010   char *buf;
1011   int i;
1012   
1013   orig_len = _dbus_string_get_length (str);
1014
1015   if (!_dbus_string_lengthen (str, MAX_DOUBLE_LEN))
1016     return FALSE;
1017
1018   buf = _dbus_string_get_data_len (str, orig_len, MAX_DOUBLE_LEN);
1019
1020   snprintf (buf, MAX_LONG_LEN, "%g", value);
1021
1022   i = 0;
1023   while (*buf)
1024     {
1025       ++buf;
1026       ++i;
1027     }
1028   
1029   _dbus_string_shorten (str, MAX_DOUBLE_LEN - i);
1030   
1031   return TRUE;
1032 }
1033
1034 /**
1035  * Parses an integer contained in a DBusString. Either return parameter
1036  * may be #NULL if you aren't interested in it. The integer is parsed
1037  * and stored in value_return. Return parameters are not initialized
1038  * if the function returns #FALSE.
1039  *
1040  * @param str the string
1041  * @param start the byte index of the start of the integer
1042  * @param value_return return location of the integer value or #NULL
1043  * @param end_return return location of the end of the integer, or #NULL
1044  * @returns #TRUE on success
1045  */
1046 dbus_bool_t
1047 _dbus_string_parse_int (const DBusString *str,
1048                         int               start,
1049                         long             *value_return,
1050                         int              *end_return)
1051 {
1052   long v;
1053   const char *p;
1054   char *end;
1055
1056   p = _dbus_string_get_const_data_len (str, start,
1057                                        _dbus_string_get_length (str) - start);
1058
1059   end = NULL;
1060   errno = 0;
1061   v = strtol (p, &end, 0);
1062   if (end == NULL || end == p || errno != 0)
1063     return FALSE;
1064
1065   if (value_return)
1066     *value_return = v;
1067   if (end_return)
1068     *end_return = start + (end - p);
1069
1070   return TRUE;
1071 }
1072
1073 /**
1074  * Parses an unsigned integer contained in a DBusString. Either return
1075  * parameter may be #NULL if you aren't interested in it. The integer
1076  * is parsed and stored in value_return. Return parameters are not
1077  * initialized if the function returns #FALSE.
1078  *
1079  * @param str the string
1080  * @param start the byte index of the start of the integer
1081  * @param value_return return location of the integer value or #NULL
1082  * @param end_return return location of the end of the integer, or #NULL
1083  * @returns #TRUE on success
1084  */
1085 dbus_bool_t
1086 _dbus_string_parse_uint (const DBusString *str,
1087                          int               start,
1088                          unsigned long    *value_return,
1089                          int              *end_return)
1090 {
1091   unsigned long v;
1092   const char *p;
1093   char *end;
1094
1095   p = _dbus_string_get_const_data_len (str, start,
1096                                        _dbus_string_get_length (str) - start);
1097
1098   end = NULL;
1099   errno = 0;
1100   v = strtoul (p, &end, 0);
1101   if (end == NULL || end == p || errno != 0)
1102     return FALSE;
1103
1104   if (value_return)
1105     *value_return = v;
1106   if (end_return)
1107     *end_return = start + (end - p);
1108
1109   return TRUE;
1110 }
1111
1112 static dbus_bool_t
1113 ascii_isspace (char c)
1114 {
1115   return (c == ' ' ||
1116           c == '\f' ||
1117           c == '\n' ||
1118           c == '\r' ||
1119           c == '\t' ||
1120           c == '\v');
1121 }
1122
1123 static dbus_bool_t
1124 ascii_isdigit (char c)
1125 {
1126   return c >= '0' && c <= '9';
1127 }
1128
1129 static dbus_bool_t
1130 ascii_isxdigit (char c)
1131 {
1132   return (ascii_isdigit (c) ||
1133           (c >= 'a' && c <= 'f') ||
1134           (c >= 'A' && c <= 'F'));
1135 }
1136
1137
1138 /* Calls strtod in a locale-independent fashion, by looking at
1139  * the locale data and patching the decimal comma to a point.
1140  *
1141  * Relicensed from glib.
1142  */
1143 static double
1144 ascii_strtod (const char *nptr,
1145               char      **endptr)
1146 {
1147   char *fail_pos;
1148   double val;
1149   struct lconv *locale_data;
1150   const char *decimal_point;
1151   int decimal_point_len;
1152   const char *p, *decimal_point_pos;
1153   const char *end = NULL; /* Silence gcc */
1154
1155   fail_pos = NULL;
1156
1157   locale_data = localeconv ();
1158   decimal_point = locale_data->decimal_point;
1159   decimal_point_len = strlen (decimal_point);
1160
1161   _dbus_assert (decimal_point_len != 0);
1162   
1163   decimal_point_pos = NULL;
1164   if (decimal_point[0] != '.' ||
1165       decimal_point[1] != 0)
1166     {
1167       p = nptr;
1168       /* Skip leading space */
1169       while (ascii_isspace (*p))
1170         p++;
1171       
1172       /* Skip leading optional sign */
1173       if (*p == '+' || *p == '-')
1174         p++;
1175       
1176       if (p[0] == '0' &&
1177           (p[1] == 'x' || p[1] == 'X'))
1178         {
1179           p += 2;
1180           /* HEX - find the (optional) decimal point */
1181           
1182           while (ascii_isxdigit (*p))
1183             p++;
1184           
1185           if (*p == '.')
1186             {
1187               decimal_point_pos = p++;
1188               
1189               while (ascii_isxdigit (*p))
1190                 p++;
1191               
1192               if (*p == 'p' || *p == 'P')
1193                 p++;
1194               if (*p == '+' || *p == '-')
1195                 p++;
1196               while (ascii_isdigit (*p))
1197                 p++;
1198               end = p;
1199             }
1200         }
1201       else
1202         {
1203           while (ascii_isdigit (*p))
1204             p++;
1205           
1206           if (*p == '.')
1207             {
1208               decimal_point_pos = p++;
1209               
1210               while (ascii_isdigit (*p))
1211                 p++;
1212               
1213               if (*p == 'e' || *p == 'E')
1214                 p++;
1215               if (*p == '+' || *p == '-')
1216                 p++;
1217               while (ascii_isdigit (*p))
1218                 p++;
1219               end = p;
1220             }
1221         }
1222       /* For the other cases, we need not convert the decimal point */
1223     }
1224
1225   /* Set errno to zero, so that we can distinguish zero results
1226      and underflows */
1227   errno = 0;
1228   
1229   if (decimal_point_pos)
1230     {
1231       char *copy, *c;
1232
1233       /* We need to convert the '.' to the locale specific decimal point */
1234       copy = dbus_malloc (end - nptr + 1 + decimal_point_len);
1235       
1236       c = copy;
1237       memcpy (c, nptr, decimal_point_pos - nptr);
1238       c += decimal_point_pos - nptr;
1239       memcpy (c, decimal_point, decimal_point_len);
1240       c += decimal_point_len;
1241       memcpy (c, decimal_point_pos + 1, end - (decimal_point_pos + 1));
1242       c += end - (decimal_point_pos + 1);
1243       *c = 0;
1244
1245       val = strtod (copy, &fail_pos);
1246
1247       if (fail_pos)
1248         {
1249           if (fail_pos > decimal_point_pos)
1250             fail_pos = (char *)nptr + (fail_pos - copy) - (decimal_point_len - 1);
1251           else
1252             fail_pos = (char *)nptr + (fail_pos - copy);
1253         }
1254       
1255       dbus_free (copy);
1256           
1257     }
1258   else
1259     val = strtod (nptr, &fail_pos);
1260
1261   if (endptr)
1262     *endptr = fail_pos;
1263   
1264   return val;
1265 }
1266
1267
1268 /**
1269  * Parses a floating point number contained in a DBusString. Either
1270  * return parameter may be #NULL if you aren't interested in it. The
1271  * integer is parsed and stored in value_return. Return parameters are
1272  * not initialized if the function returns #FALSE.
1273  *
1274  * @param str the string
1275  * @param start the byte index of the start of the float
1276  * @param value_return return location of the float value or #NULL
1277  * @param end_return return location of the end of the float, or #NULL
1278  * @returns #TRUE on success
1279  */
1280 dbus_bool_t
1281 _dbus_string_parse_double (const DBusString *str,
1282                            int               start,
1283                            double           *value_return,
1284                            int              *end_return)
1285 {
1286   double v;
1287   const char *p;
1288   char *end;
1289
1290   p = _dbus_string_get_const_data_len (str, start,
1291                                        _dbus_string_get_length (str) - start);
1292
1293   end = NULL;
1294   errno = 0;
1295   v = ascii_strtod (p, &end);
1296   if (end == NULL || end == p || errno != 0)
1297     return FALSE;
1298
1299   if (value_return)
1300     *value_return = v;
1301   if (end_return)
1302     *end_return = start + (end - p);
1303
1304   return TRUE;
1305 }
1306
1307 /** @} */ /* DBusString group */
1308
1309 /**
1310  * @addtogroup DBusInternalsUtils
1311  * @{
1312  */
1313 static dbus_bool_t
1314 fill_user_info_from_passwd (struct passwd *p,
1315                             DBusUserInfo  *info,
1316                             DBusError     *error)
1317 {
1318   _dbus_assert (p->pw_name != NULL);
1319   _dbus_assert (p->pw_dir != NULL);
1320   
1321   info->uid = p->pw_uid;
1322   info->primary_gid = p->pw_gid;
1323   info->username = _dbus_strdup (p->pw_name);
1324   info->homedir = _dbus_strdup (p->pw_dir);
1325   
1326   if (info->username == NULL ||
1327       info->homedir == NULL)
1328     {
1329       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1330       return FALSE;
1331     }
1332
1333   return TRUE;
1334 }
1335
1336 static dbus_bool_t
1337 fill_user_info (DBusUserInfo       *info,
1338                 dbus_uid_t          uid,
1339                 const DBusString   *username,
1340                 DBusError          *error)
1341 {
1342   const char *username_c;
1343   
1344   /* exactly one of username/uid provided */
1345   _dbus_assert (username != NULL || uid != DBUS_UID_UNSET);
1346   _dbus_assert (username == NULL || uid == DBUS_UID_UNSET);
1347
1348   info->uid = DBUS_UID_UNSET;
1349   info->primary_gid = DBUS_GID_UNSET;
1350   info->group_ids = NULL;
1351   info->n_group_ids = 0;
1352   info->username = NULL;
1353   info->homedir = NULL;
1354   
1355   if (username != NULL)
1356     username_c = _dbus_string_get_const_data (username);
1357   else
1358     username_c = NULL;
1359
1360   /* For now assuming that the getpwnam() and getpwuid() flavors
1361    * are always symmetrical, if not we have to add more configure
1362    * checks
1363    */
1364   
1365 #if defined (HAVE_POSIX_GETPWNAME_R) || defined (HAVE_NONPOSIX_GETPWNAME_R)
1366   {
1367     struct passwd *p;
1368     int result;
1369     char buf[1024];
1370     struct passwd p_str;
1371
1372     p = NULL;
1373 #ifdef HAVE_POSIX_GETPWNAME_R
1374     if (uid >= 0)
1375       result = getpwuid_r (uid, &p_str, buf, sizeof (buf),
1376                            &p);
1377     else
1378       result = getpwnam_r (username_c, &p_str, buf, sizeof (buf),
1379                            &p);
1380 #else
1381     if (uid >= 0)
1382       p = getpwuid_r (uid, &p_str, buf, sizeof (buf));
1383     else
1384       p = getpwnam_r (username_c, &p_str, buf, sizeof (buf));
1385     result = 0;
1386 #endif /* !HAVE_POSIX_GETPWNAME_R */
1387     if (result == 0 && p == &p_str)
1388       {
1389         if (!fill_user_info_from_passwd (p, info, error))
1390           return FALSE;
1391       }
1392     else
1393       {
1394         dbus_set_error (error, _dbus_error_from_errno (errno),
1395                         "User \"%s\" unknown or no memory to allocate password entry\n",
1396                         username_c ? username_c : "???");
1397         _dbus_verbose ("User %s unknown\n", username_c ? username_c : "???");
1398         return FALSE;
1399       }
1400   }
1401 #else /* ! HAVE_GETPWNAM_R */
1402   {
1403     /* I guess we're screwed on thread safety here */
1404     struct passwd *p;
1405
1406     if (uid >= 0)
1407       p = getpwuid (uid);
1408     else
1409       p = getpwnam (username_c);
1410
1411     if (p != NULL)
1412       {
1413         if (!fill_user_info_from_passwd (p, info, error))
1414           return FALSE;
1415       }
1416     else
1417       {
1418         dbus_set_error (error, _dbus_error_from_errno (errno),
1419                         "User \"%s\" unknown or no memory to allocate password entry\n",
1420                         username_c ? username_c : "???");
1421         _dbus_verbose ("User %s unknown\n", username_c ? username_c : "???");
1422         return FALSE;
1423       }
1424   }
1425 #endif  /* ! HAVE_GETPWNAM_R */
1426
1427   /* Fill this in so we can use it to get groups */
1428   username_c = info->username;
1429   
1430 #ifdef HAVE_GETGROUPLIST
1431   {
1432     gid_t *buf;
1433     int buf_count;
1434     int i;
1435     
1436     buf_count = 17;
1437     buf = dbus_new (gid_t, buf_count);
1438     if (buf == NULL)
1439       {
1440         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1441         goto failed;
1442       }
1443     
1444     if (getgrouplist (username_c,
1445                       info->primary_gid,
1446                       buf, &buf_count) < 0)
1447       {
1448         gid_t *new = dbus_realloc (buf, buf_count * sizeof (buf[0]));
1449         if (new == NULL)
1450           {
1451             dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1452             dbus_free (buf);
1453             goto failed;
1454           }
1455         
1456         buf = new;
1457
1458         getgrouplist (username_c, info->primary_gid, buf, &buf_count);
1459       }
1460
1461     info->group_ids = dbus_new (dbus_gid_t, buf_count);
1462     if (info->group_ids == NULL)
1463       {
1464         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1465         dbus_free (buf);
1466         goto failed;
1467       }
1468     
1469     for (i = 0; i < buf_count; ++i)
1470       info->group_ids[i] = buf[i];
1471
1472     info->n_group_ids = buf_count;
1473     
1474     dbus_free (buf);
1475   }
1476 #else  /* HAVE_GETGROUPLIST */
1477   {
1478     /* We just get the one group ID */
1479     info->group_ids = dbus_new (dbus_gid_t, 1);
1480     if (info->group_ids == NULL)
1481       {
1482         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1483         goto out;
1484       }
1485
1486     info->n_group_ids = 1;
1487
1488     (info->group_ids)[0] = info->primary_gid;
1489   }
1490 #endif /* HAVE_GETGROUPLIST */
1491
1492   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1493   
1494   return TRUE;
1495   
1496  failed:
1497   _DBUS_ASSERT_ERROR_IS_SET (error);
1498   _dbus_user_info_free (info);
1499   return FALSE;
1500 }
1501
1502 /**
1503  * Gets user info for the given username.
1504  *
1505  * @param info user info object to initialize
1506  * @param username the username
1507  * @param error error return
1508  * @returns #TRUE on success
1509  */
1510 dbus_bool_t
1511 _dbus_user_info_fill (DBusUserInfo     *info,
1512                       const DBusString *username,
1513                       DBusError        *error)
1514 {
1515   return fill_user_info (info, DBUS_UID_UNSET,
1516                          username, error);
1517 }
1518
1519 /**
1520  * Gets user info for the given user ID.
1521  *
1522  * @param info user info object to initialize
1523  * @param uid the user ID
1524  * @param error error return
1525  * @returns #TRUE on success
1526  */
1527 dbus_bool_t
1528 _dbus_user_info_fill_uid (DBusUserInfo *info,
1529                           dbus_uid_t    uid,
1530                           DBusError    *error)
1531 {
1532   return fill_user_info (info, uid,
1533                          NULL, error);
1534 }
1535
1536 /**
1537  * Frees the members of info
1538  * (but not info itself)
1539  * @param info the user info struct
1540  */
1541 void
1542 _dbus_user_info_free (DBusUserInfo *info)
1543 {
1544   dbus_free (info->group_ids);
1545   dbus_free (info->username);
1546   dbus_free (info->homedir);
1547 }
1548
1549 static dbus_bool_t
1550 fill_user_info_from_group (struct group  *g,
1551                            DBusGroupInfo *info,
1552                            DBusError     *error)
1553 {
1554   _dbus_assert (g->gr_name != NULL);
1555   
1556   info->gid = g->gr_gid;
1557   info->groupname = _dbus_strdup (g->gr_name);
1558
1559   /* info->members = dbus_strdupv (g->gr_mem) */
1560   
1561   if (info->groupname == NULL)
1562     {
1563       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1564       return FALSE;
1565     }
1566
1567   return TRUE;
1568 }
1569
1570 static dbus_bool_t
1571 fill_group_info (DBusGroupInfo    *info,
1572                  dbus_gid_t        gid,
1573                  const DBusString *groupname,
1574                  DBusError        *error)
1575 {
1576   const char *group_c_str;
1577
1578   _dbus_assert (groupname != NULL || gid != DBUS_GID_UNSET);
1579   _dbus_assert (groupname == NULL || gid == DBUS_GID_UNSET);
1580
1581   if (groupname)
1582     group_c_str = _dbus_string_get_const_data (groupname);
1583   else
1584     group_c_str = NULL;
1585   
1586   /* For now assuming that the getgrnam() and getgrgid() flavors
1587    * always correspond to the pwnam flavors, if not we have
1588    * to add more configure checks.
1589    */
1590   
1591 #if defined (HAVE_POSIX_GETPWNAME_R) || defined (HAVE_NONPOSIX_GETPWNAME_R)
1592   {
1593     struct group *g;
1594     int result;
1595     char buf[1024];
1596     struct group g_str;
1597
1598     g = NULL;
1599 #ifdef HAVE_POSIX_GETPWNAME_R
1600
1601     if (group_c_str)
1602       result = getgrnam_r (group_c_str, &g_str, buf, sizeof (buf),
1603                            &g);
1604     else
1605       result = getgrgid_r (gid, &g_str, buf, sizeof (buf),
1606                            &g);
1607 #else
1608     p = getgrnam_r (group_c_str, &g_str, buf, sizeof (buf));
1609     result = 0;
1610 #endif /* !HAVE_POSIX_GETPWNAME_R */
1611     if (result == 0 && g == &g_str)
1612       {
1613         return fill_user_info_from_group (g, info, error);
1614       }
1615     else
1616       {
1617         dbus_set_error (error, _dbus_error_from_errno (errno),
1618                         "Group %s unknown or failed to look it up\n",
1619                         group_c_str ? group_c_str : "???");
1620         return FALSE;
1621       }
1622   }
1623 #else /* ! HAVE_GETPWNAM_R */
1624   {
1625     /* I guess we're screwed on thread safety here */
1626     struct group *g;
1627
1628     g = getgrnam (group_c_str);
1629
1630     if (g != NULL)
1631       {
1632         return fill_user_info_from_group (g, info, error);
1633       }
1634     else
1635       {
1636         dbus_set_error (error, _dbus_error_from_errno (errno),
1637                         "Group %s unknown or failed to look it up\n",
1638                         group_c_str ? group_c_str : "???");
1639         return FALSE;
1640       }
1641   }
1642 #endif  /* ! HAVE_GETPWNAM_R */
1643 }
1644
1645 /**
1646  * Initializes the given DBusGroupInfo struct
1647  * with information about the given group name.
1648  *
1649  * @param info the group info struct
1650  * @param groupname name of group
1651  * @param error the error return
1652  * @returns #FALSE if error is set
1653  */
1654 dbus_bool_t
1655 _dbus_group_info_fill (DBusGroupInfo    *info,
1656                        const DBusString *groupname,
1657                        DBusError        *error)
1658 {
1659   return fill_group_info (info, DBUS_GID_UNSET,
1660                           groupname, error);
1661
1662 }
1663
1664 /**
1665  * Initializes the given DBusGroupInfo struct
1666  * with information about the given group ID.
1667  *
1668  * @param info the group info struct
1669  * @param gid group ID
1670  * @param error the error return
1671  * @returns #FALSE if error is set
1672  */
1673 dbus_bool_t
1674 _dbus_group_info_fill_gid (DBusGroupInfo *info,
1675                            dbus_gid_t     gid,
1676                            DBusError     *error)
1677 {
1678   return fill_group_info (info, gid, NULL, error);
1679 }
1680
1681 /**
1682  * Frees the members of info (but not info itself).
1683  *
1684  * @param info the group info
1685  */
1686 void
1687 _dbus_group_info_free (DBusGroupInfo    *info)
1688 {
1689   dbus_free (info->groupname);
1690 }
1691
1692 /**
1693  * Sets fields in DBusCredentials to DBUS_PID_UNSET,
1694  * DBUS_UID_UNSET, DBUS_GID_UNSET.
1695  *
1696  * @param credentials the credentials object to fill in
1697  */
1698 void
1699 _dbus_credentials_clear (DBusCredentials *credentials)
1700 {
1701   credentials->pid = DBUS_PID_UNSET;
1702   credentials->uid = DBUS_UID_UNSET;
1703   credentials->gid = DBUS_GID_UNSET;
1704 }
1705
1706 /**
1707  * Gets the credentials of the current process.
1708  *
1709  * @param credentials credentials to fill in.
1710  */
1711 void
1712 _dbus_credentials_from_current_process (DBusCredentials *credentials)
1713 {
1714   /* The POSIX spec certainly doesn't promise this, but
1715    * we need these assertions to fail as soon as we're wrong about
1716    * it so we can do the porting fixups
1717    */
1718   _dbus_assert (sizeof (pid_t) <= sizeof (credentials->pid));
1719   _dbus_assert (sizeof (uid_t) <= sizeof (credentials->uid));
1720   _dbus_assert (sizeof (gid_t) <= sizeof (credentials->gid));
1721   
1722   credentials->pid = getpid ();
1723   credentials->uid = getuid ();
1724   credentials->gid = getgid ();
1725 }
1726
1727 /**
1728  * Checks whether the provided_credentials are allowed to log in
1729  * as the expected_credentials.
1730  *
1731  * @param expected_credentials credentials we're trying to log in as
1732  * @param provided_credentials credentials we have
1733  * @returns #TRUE if we can log in
1734  */
1735 dbus_bool_t
1736 _dbus_credentials_match (const DBusCredentials *expected_credentials,
1737                          const DBusCredentials *provided_credentials)
1738 {
1739   if (provided_credentials->uid == DBUS_UID_UNSET)
1740     return FALSE;
1741   else if (expected_credentials->uid == DBUS_UID_UNSET)
1742     return FALSE;
1743   else if (provided_credentials->uid == 0)
1744     return TRUE;
1745   else if (provided_credentials->uid == expected_credentials->uid)
1746     return TRUE;
1747   else
1748     return FALSE;
1749 }
1750
1751 /**
1752  * Gets our process ID
1753  * @returns process ID
1754  */
1755 unsigned long
1756 _dbus_getpid (void)
1757 {
1758   return getpid ();
1759 }
1760
1761 /** Gets our UID
1762  * @returns process UID
1763  */
1764 dbus_uid_t
1765 _dbus_getuid (void)
1766 {
1767   return getuid ();
1768 }
1769
1770 /** Gets our GID
1771  * @returns process GID
1772  */
1773 dbus_gid_t
1774 _dbus_getgid (void)
1775 {
1776   return getgid ();
1777 }
1778
1779
1780 _DBUS_DEFINE_GLOBAL_LOCK (atomic);
1781
1782 /**
1783  * Atomically increments an integer
1784  *
1785  * @param atomic pointer to the integer to increment
1786  * @returns the value after incrementing
1787  *
1788  * @todo implement arch-specific faster atomic ops
1789  */
1790 dbus_atomic_t
1791 _dbus_atomic_inc (dbus_atomic_t *atomic)
1792 {
1793   dbus_atomic_t res;
1794   
1795   _DBUS_LOCK (atomic);
1796   *atomic += 1;
1797   res = *atomic;
1798   _DBUS_UNLOCK (atomic);
1799   return res;
1800 }
1801
1802 /**
1803  * Atomically decrement an integer
1804  *
1805  * @param atomic pointer to the integer to decrement
1806  * @returns the value after decrementing
1807  *
1808  * @todo implement arch-specific faster atomic ops
1809  */
1810 dbus_atomic_t
1811 _dbus_atomic_dec (dbus_atomic_t *atomic)
1812 {
1813   dbus_atomic_t res;
1814   
1815   _DBUS_LOCK (atomic);
1816   *atomic -= 1;
1817   res = *atomic;
1818   _DBUS_UNLOCK (atomic);
1819   return res;
1820 }
1821
1822 /**
1823  * Wrapper for poll().
1824  *
1825  * @todo need a fallback implementation using select()
1826  *
1827  * @param fds the file descriptors to poll
1828  * @param n_fds number of descriptors in the array
1829  * @param timeout_milliseconds timeout or -1 for infinite
1830  * @returns numbers of fds with revents, or <0 on error
1831  */
1832 int
1833 _dbus_poll (DBusPollFD *fds,
1834             int         n_fds,
1835             int         timeout_milliseconds)
1836 {
1837 #ifdef HAVE_POLL
1838   /* This big thing is a constant expression and should get optimized
1839    * out of existence. So it's more robust than a configure check at
1840    * no cost.
1841    */
1842   if (_DBUS_POLLIN == POLLIN &&
1843       _DBUS_POLLPRI == POLLPRI &&
1844       _DBUS_POLLOUT == POLLOUT &&
1845       _DBUS_POLLERR == POLLERR &&
1846       _DBUS_POLLHUP == POLLHUP &&
1847       _DBUS_POLLNVAL == POLLNVAL &&
1848       sizeof (DBusPollFD) == sizeof (struct pollfd) &&
1849       _DBUS_STRUCT_OFFSET (DBusPollFD, fd) ==
1850       _DBUS_STRUCT_OFFSET (struct pollfd, fd) &&
1851       _DBUS_STRUCT_OFFSET (DBusPollFD, events) ==
1852       _DBUS_STRUCT_OFFSET (struct pollfd, events) &&
1853       _DBUS_STRUCT_OFFSET (DBusPollFD, revents) ==
1854       _DBUS_STRUCT_OFFSET (struct pollfd, revents))
1855     {
1856       return poll ((struct pollfd*) fds,
1857                    n_fds, 
1858                    timeout_milliseconds);
1859     }
1860   else
1861     {
1862       /* We have to convert the DBusPollFD to an array of
1863        * struct pollfd, poll, and convert back.
1864        */
1865       _dbus_warn ("didn't implement poll() properly for this system yet\n");
1866       return -1;
1867     }
1868 #else /* ! HAVE_POLL */
1869
1870   fd_set read_set, write_set, err_set;
1871   int max_fd = 0;
1872   int i;
1873   struct timeval tv;
1874   int ready;
1875   
1876   FD_ZERO (&read_set);
1877   FD_ZERO (&write_set);
1878   FD_ZERO (&err_set);
1879
1880   for (i = 0; i < n_fds; i++)
1881     {
1882       DBusPollFD f = fds[i];
1883
1884       if (f.events & _DBUS_POLLIN)
1885         FD_SET (f.fd, &read_set);
1886
1887       if (f.events & _DBUS_POLLOUT)
1888         FD_SET (f.fd, &write_set);
1889
1890       FD_SET (f.fd, &err_set);
1891
1892       max_fd = MAX (max_fd, f.fd);
1893     }
1894     
1895   tv.tv_sec = timeout_milliseconds / 1000;
1896   tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
1897
1898   ready = select (max_fd + 1, &read_set, &write_set, &err_set, &tv);
1899
1900   if (ready > 0)
1901     {
1902       for (i = 0; i < n_fds; i++)
1903         {
1904           DBusPollFD f = fds[i];
1905
1906           f.revents = 0;
1907
1908           if (FD_ISSET (f.fd, &read_set))
1909             f.revents |= _DBUS_POLLIN;
1910
1911           if (FD_ISSET (f.fd, &write_set))
1912             f.revents |= _DBUS_POLLOUT;
1913
1914           if (FD_ISSET (f.fd, &err_set))
1915             f.revents |= _DBUS_POLLERR;
1916         }
1917     }
1918
1919   return ready;
1920 #endif
1921 }
1922
1923 /** nanoseconds in a second */
1924 #define NANOSECONDS_PER_SECOND       1000000000
1925 /** microseconds in a second */
1926 #define MICROSECONDS_PER_SECOND      1000000
1927 /** milliseconds in a second */
1928 #define MILLISECONDS_PER_SECOND      1000
1929 /** nanoseconds in a millisecond */
1930 #define NANOSECONDS_PER_MILLISECOND  1000000
1931 /** microseconds in a millisecond */
1932 #define MICROSECONDS_PER_MILLISECOND 1000
1933
1934 /**
1935  * Sleeps the given number of milliseconds.
1936  * @param milliseconds number of milliseconds
1937  */
1938 void
1939 _dbus_sleep_milliseconds (int milliseconds)
1940 {
1941 #ifdef HAVE_NANOSLEEP
1942   struct timespec req;
1943   struct timespec rem;
1944
1945   req.tv_sec = milliseconds / MILLISECONDS_PER_SECOND;
1946   req.tv_nsec = (milliseconds % MILLISECONDS_PER_SECOND) * NANOSECONDS_PER_MILLISECOND;
1947   rem.tv_sec = 0;
1948   rem.tv_nsec = 0;
1949
1950   while (nanosleep (&req, &rem) < 0 && errno == EINTR)
1951     req = rem;
1952 #elif defined (HAVE_USLEEP)
1953   usleep (milliseconds * MICROSECONDS_PER_MILLISECOND);
1954 #else /* ! HAVE_USLEEP */
1955   sleep (MAX (milliseconds / 1000, 1));
1956 #endif
1957 }
1958
1959 /**
1960  * Get current time, as in gettimeofday().
1961  *
1962  * @param tv_sec return location for number of seconds
1963  * @param tv_usec return location for number of microseconds (thousandths)
1964  */
1965 void
1966 _dbus_get_current_time (long *tv_sec,
1967                         long *tv_usec)
1968 {
1969   struct timeval t;
1970
1971   gettimeofday (&t, NULL);
1972
1973   if (tv_sec)
1974     *tv_sec = t.tv_sec;
1975   if (tv_usec)
1976     *tv_usec = t.tv_usec;
1977 }
1978
1979 /**
1980  * Appends the contents of the given file to the string,
1981  * returning error code. At the moment, won't open a file
1982  * more than a megabyte in size.
1983  *
1984  * @param str the string to append to
1985  * @param filename filename to load
1986  * @param error place to set an error
1987  * @returns #FALSE if error was set
1988  */
1989 dbus_bool_t
1990 _dbus_file_get_contents (DBusString       *str,
1991                          const DBusString *filename,
1992                          DBusError        *error)
1993 {
1994   int fd;
1995   struct stat sb;
1996   int orig_len;
1997   int total;
1998   const char *filename_c;
1999
2000   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2001   
2002   filename_c = _dbus_string_get_const_data (filename);
2003   
2004   /* O_BINARY useful on Cygwin */
2005   fd = open (filename_c, O_RDONLY | O_BINARY);
2006   if (fd < 0)
2007     {
2008       dbus_set_error (error, _dbus_error_from_errno (errno),
2009                       "Failed to open \"%s\": %s",
2010                       filename_c,
2011                       _dbus_strerror (errno));
2012       return FALSE;
2013     }
2014
2015   if (fstat (fd, &sb) < 0)
2016     {
2017       dbus_set_error (error, _dbus_error_from_errno (errno),
2018                       "Failed to stat \"%s\": %s",
2019                       filename_c,
2020                       _dbus_strerror (errno));
2021
2022       _dbus_verbose ("fstat() failed: %s",
2023                      _dbus_strerror (errno));
2024       
2025       close (fd);
2026       
2027       return FALSE;
2028     }
2029
2030   if (sb.st_size > _DBUS_ONE_MEGABYTE)
2031     {
2032       dbus_set_error (error, DBUS_ERROR_FAILED,
2033                       "File size %lu of \"%s\" is too large.",
2034                       filename_c, (unsigned long) sb.st_size);
2035       close (fd);
2036       return FALSE;
2037     }
2038   
2039   total = 0;
2040   orig_len = _dbus_string_get_length (str);
2041   if (sb.st_size > 0 && S_ISREG (sb.st_mode))
2042     {
2043       int bytes_read;
2044
2045       while (total < (int) sb.st_size)
2046         {
2047           bytes_read = _dbus_read (fd, str,
2048                                    sb.st_size - total);
2049           if (bytes_read <= 0)
2050             {
2051               dbus_set_error (error, _dbus_error_from_errno (errno),
2052                               "Error reading \"%s\": %s",
2053                               filename_c,
2054                               _dbus_strerror (errno));
2055
2056               _dbus_verbose ("read() failed: %s",
2057                              _dbus_strerror (errno));
2058               
2059               close (fd);
2060               _dbus_string_set_length (str, orig_len);
2061               return FALSE;
2062             }
2063           else
2064             total += bytes_read;
2065         }
2066
2067       close (fd);
2068       return TRUE;
2069     }
2070   else if (sb.st_size != 0)
2071     {
2072       _dbus_verbose ("Can only open regular files at the moment.\n");
2073       dbus_set_error (error, DBUS_ERROR_FAILED,
2074                       "\"%s\" is not a regular file",
2075                       filename_c);
2076       close (fd);
2077       return FALSE;
2078     }
2079   else
2080     {
2081       close (fd);
2082       return TRUE;
2083     }
2084 }
2085
2086 /**
2087  * Writes a string out to a file. If the file exists,
2088  * it will be atomically overwritten by the new data.
2089  *
2090  * @param str the string to write out
2091  * @param filename the file to save string to
2092  * @param error error to be filled in on failure
2093  * @returns #FALSE on failure
2094  */
2095 dbus_bool_t
2096 _dbus_string_save_to_file (const DBusString *str,
2097                            const DBusString *filename,
2098                            DBusError        *error)
2099 {
2100   int fd;
2101   int bytes_to_write;
2102   const char *filename_c;
2103   DBusString tmp_filename;
2104   const char *tmp_filename_c;
2105   int total;
2106   dbus_bool_t need_unlink;
2107   dbus_bool_t retval;
2108
2109   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2110   
2111   fd = -1;
2112   retval = FALSE;
2113   need_unlink = FALSE;
2114   
2115   if (!_dbus_string_init (&tmp_filename))
2116     {
2117       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2118       return FALSE;
2119     }
2120
2121   if (!_dbus_string_copy (filename, 0, &tmp_filename, 0))
2122     {
2123       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2124       return FALSE;
2125     }
2126   
2127   if (!_dbus_string_append (&tmp_filename, "."))
2128     {
2129       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2130       return FALSE;
2131     }
2132
2133 #define N_TMP_FILENAME_RANDOM_BYTES 8
2134   if (!_dbus_generate_random_ascii (&tmp_filename, N_TMP_FILENAME_RANDOM_BYTES))
2135     {
2136       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2137       return FALSE;
2138     }
2139     
2140   filename_c = _dbus_string_get_const_data (filename);
2141   tmp_filename_c = _dbus_string_get_const_data (&tmp_filename);
2142
2143   fd = open (tmp_filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2144              0600);
2145   if (fd < 0)
2146     {
2147       dbus_set_error (error, _dbus_error_from_errno (errno),
2148                       "Could not create %s: %s", tmp_filename_c,
2149                       _dbus_strerror (errno));
2150       goto out;
2151     }
2152
2153   need_unlink = TRUE;
2154   
2155   total = 0;
2156   bytes_to_write = _dbus_string_get_length (str);
2157
2158   while (total < bytes_to_write)
2159     {
2160       int bytes_written;
2161
2162       bytes_written = _dbus_write (fd, str, total,
2163                                    bytes_to_write - total);
2164
2165       if (bytes_written <= 0)
2166         {
2167           dbus_set_error (error, _dbus_error_from_errno (errno),
2168                           "Could not write to %s: %s", tmp_filename_c,
2169                           _dbus_strerror (errno));
2170           
2171           goto out;
2172         }
2173
2174       total += bytes_written;
2175     }
2176
2177   if (close (fd) < 0)
2178     {
2179       dbus_set_error (error, _dbus_error_from_errno (errno),
2180                       "Could not close file %s: %s",
2181                       tmp_filename_c, _dbus_strerror (errno));
2182
2183       goto out;
2184     }
2185
2186   fd = -1;
2187   
2188   if (rename (tmp_filename_c, filename_c) < 0)
2189     {
2190       dbus_set_error (error, _dbus_error_from_errno (errno),
2191                       "Could not rename %s to %s: %s",
2192                       tmp_filename_c, filename_c,
2193                       _dbus_strerror (errno));
2194
2195       goto out;
2196     }
2197
2198   need_unlink = FALSE;
2199   
2200   retval = TRUE;
2201   
2202  out:
2203   /* close first, then unlink, to prevent ".nfs34234235" garbage
2204    * files
2205    */
2206
2207   if (fd >= 0)
2208     close (fd);
2209         
2210   if (need_unlink && unlink (tmp_filename_c) < 0)
2211     _dbus_verbose ("Failed to unlink temp file %s: %s\n",
2212                    tmp_filename_c, _dbus_strerror (errno));
2213
2214   _dbus_string_free (&tmp_filename);
2215
2216   if (!retval)
2217     _DBUS_ASSERT_ERROR_IS_SET (error);
2218   
2219   return retval;
2220 }
2221
2222 /** Creates the given file, failing if the file already exists.
2223  *
2224  * @param filename the filename
2225  * @param error error location
2226  * @returns #TRUE if we created the file and it didn't exist
2227  */
2228 dbus_bool_t
2229 _dbus_create_file_exclusively (const DBusString *filename,
2230                                DBusError        *error)
2231 {
2232   int fd;
2233   const char *filename_c;
2234
2235   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2236   
2237   filename_c = _dbus_string_get_const_data (filename);
2238   
2239   fd = open (filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2240              0600);
2241   if (fd < 0)
2242     {
2243       dbus_set_error (error,
2244                       DBUS_ERROR_FAILED,
2245                       "Could not create file %s: %s\n",
2246                       filename_c,
2247                       _dbus_strerror (errno));
2248       return FALSE;
2249     }
2250
2251   if (close (fd) < 0)
2252     {
2253       dbus_set_error (error,
2254                       DBUS_ERROR_FAILED,
2255                       "Could not close file %s: %s\n",
2256                       filename_c,
2257                       _dbus_strerror (errno));
2258       return FALSE;
2259     }
2260   
2261   return TRUE;
2262 }
2263
2264 /**
2265  * Deletes the given file.
2266  *
2267  * @param filename the filename
2268  * @param error error location
2269  * 
2270  * @returns #TRUE if unlink() succeeded
2271  */
2272 dbus_bool_t
2273 _dbus_delete_file (const DBusString *filename,
2274                    DBusError        *error)
2275 {
2276   const char *filename_c;
2277
2278   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2279   
2280   filename_c = _dbus_string_get_const_data (filename);
2281
2282   if (unlink (filename_c) < 0)
2283     {
2284       dbus_set_error (error, DBUS_ERROR_FAILED,
2285                       "Failed to delete file %s: %s\n",
2286                       filename_c, _dbus_strerror (errno));
2287       return FALSE;
2288     }
2289   else
2290     return TRUE;
2291 }
2292
2293 /**
2294  * Creates a directory; succeeds if the directory
2295  * is created or already existed.
2296  *
2297  * @param filename directory filename
2298  * @param error initialized error object
2299  * @returns #TRUE on success
2300  */
2301 dbus_bool_t
2302 _dbus_create_directory (const DBusString *filename,
2303                         DBusError        *error)
2304 {
2305   const char *filename_c;
2306
2307   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2308   
2309   filename_c = _dbus_string_get_const_data (filename);
2310
2311   if (mkdir (filename_c, 0700) < 0)
2312     {
2313       if (errno == EEXIST)
2314         return TRUE;
2315       
2316       dbus_set_error (error, DBUS_ERROR_FAILED,
2317                       "Failed to create directory %s: %s\n",
2318                       filename_c, _dbus_strerror (errno));
2319       return FALSE;
2320     }
2321   else
2322     return TRUE;
2323 }
2324
2325 /**
2326  * Appends the given filename to the given directory.
2327  *
2328  * @todo it might be cute to collapse multiple '/' such as "foo//"
2329  * concat "//bar"
2330  *
2331  * @param dir the directory name
2332  * @param next_component the filename
2333  * @returns #TRUE on success
2334  */
2335 dbus_bool_t
2336 _dbus_concat_dir_and_file (DBusString       *dir,
2337                            const DBusString *next_component)
2338 {
2339   dbus_bool_t dir_ends_in_slash;
2340   dbus_bool_t file_starts_with_slash;
2341
2342   if (_dbus_string_get_length (dir) == 0 ||
2343       _dbus_string_get_length (next_component) == 0)
2344     return TRUE;
2345   
2346   dir_ends_in_slash = '/' == _dbus_string_get_byte (dir,
2347                                                     _dbus_string_get_length (dir) - 1);
2348
2349   file_starts_with_slash = '/' == _dbus_string_get_byte (next_component, 0);
2350
2351   if (dir_ends_in_slash && file_starts_with_slash)
2352     {
2353       _dbus_string_shorten (dir, 1);
2354     }
2355   else if (!(dir_ends_in_slash || file_starts_with_slash))
2356     {
2357       if (!_dbus_string_append_byte (dir, '/'))
2358         return FALSE;
2359     }
2360
2361   return _dbus_string_copy (next_component, 0, dir,
2362                             _dbus_string_get_length (dir));
2363 }
2364
2365 /**
2366  * Get the directory name from a complete filename
2367  * @param filename the filename
2368  * @param dirname string to append directory name to
2369  * @returns #FALSE if no memory
2370  */
2371 dbus_bool_t
2372 _dbus_string_get_dirname  (const DBusString *filename,
2373                            DBusString       *dirname)
2374 {
2375   int sep;
2376   
2377   _dbus_assert (filename != dirname);
2378   _dbus_assert (filename != NULL);
2379   _dbus_assert (dirname != NULL);
2380
2381   /* Ignore any separators on the end */
2382   sep = _dbus_string_get_length (filename);
2383   if (sep == 0)
2384     return _dbus_string_append (dirname, "."); /* empty string passed in */
2385     
2386   while (sep > 0 && _dbus_string_get_byte (filename, sep - 1) == '/')
2387     --sep;
2388
2389   _dbus_assert (sep >= 0);
2390   
2391   if (sep == 0)
2392     return _dbus_string_append (dirname, "/");
2393   
2394   /* Now find the previous separator */
2395   _dbus_string_find_byte_backward (filename, sep, '/', &sep);
2396   if (sep < 0)
2397     return _dbus_string_append (dirname, ".");
2398   
2399   /* skip multiple separators */
2400   while (sep > 0 && _dbus_string_get_byte (filename, sep - 1) == '/')
2401     --sep;
2402
2403   _dbus_assert (sep >= 0);
2404   
2405   if (sep == 0 &&
2406       _dbus_string_get_byte (filename, 0) == '/')
2407     return _dbus_string_append (dirname, "/");
2408   else
2409     return _dbus_string_copy_len (filename, 0, sep - 0,
2410                                   dirname, _dbus_string_get_length (dirname));
2411 }
2412
2413 /**
2414  * Checks whether the filename is an absolute path
2415  *
2416  * @param filename the filename
2417  * @returns #TRUE if an absolute path
2418  */
2419 dbus_bool_t
2420 _dbus_path_is_absolute (const DBusString *filename)
2421 {
2422   if (_dbus_string_get_length (filename) > 0)
2423     return _dbus_string_get_byte (filename, 0) == '/';
2424   else
2425     return FALSE;
2426 }
2427
2428 struct DBusDirIter
2429 {
2430   DIR *d;
2431   
2432 };
2433
2434 /**
2435  * Open a directory to iterate over.
2436  *
2437  * @param filename the directory name
2438  * @param error exception return object or #NULL
2439  * @returns new iterator, or #NULL on error
2440  */
2441 DBusDirIter*
2442 _dbus_directory_open (const DBusString *filename,
2443                       DBusError        *error)
2444 {
2445   DIR *d;
2446   DBusDirIter *iter;
2447   const char *filename_c;
2448
2449   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2450   
2451   filename_c = _dbus_string_get_const_data (filename);
2452
2453   d = opendir (filename_c);
2454   if (d == NULL)
2455     {
2456       dbus_set_error (error, _dbus_error_from_errno (errno),
2457                       "Failed to read directory \"%s\": %s",
2458                       filename_c,
2459                       _dbus_strerror (errno));
2460       return NULL;
2461     }
2462   iter = dbus_new0 (DBusDirIter, 1);
2463   if (iter == NULL)
2464     {
2465       closedir (d);
2466       dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
2467                       "Could not allocate memory for directory iterator");
2468       return NULL;
2469     }
2470
2471   iter->d = d;
2472
2473   return iter;
2474 }
2475
2476 /**
2477  * Get next file in the directory. Will not return "." or ".."  on
2478  * UNIX. If an error occurs, the contents of "filename" are
2479  * undefined. The error is never set if the function succeeds.
2480  *
2481  * @todo for thread safety, I think we have to use
2482  * readdir_r(). (GLib has the same issue, should file a bug.)
2483  *
2484  * @param iter the iterator
2485  * @param filename string to be set to the next file in the dir
2486  * @param error return location for error
2487  * @returns #TRUE if filename was filled in with a new filename
2488  */
2489 dbus_bool_t
2490 _dbus_directory_get_next_file (DBusDirIter      *iter,
2491                                DBusString       *filename,
2492                                DBusError        *error)
2493 {
2494   struct dirent *ent;
2495
2496   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2497   
2498  again:
2499   errno = 0;
2500   ent = readdir (iter->d);
2501   if (ent == NULL)
2502     {
2503       if (errno != 0)
2504         dbus_set_error (error,
2505                         _dbus_error_from_errno (errno),
2506                         "%s", _dbus_strerror (errno));
2507       return FALSE;
2508     }
2509   else if (ent->d_name[0] == '.' &&
2510            (ent->d_name[1] == '\0' ||
2511             (ent->d_name[1] == '.' && ent->d_name[2] == '\0')))
2512     goto again;
2513   else
2514     {
2515       _dbus_string_set_length (filename, 0);
2516       if (!_dbus_string_append (filename, ent->d_name))
2517         {
2518           dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
2519                           "No memory to read directory entry");
2520           return FALSE;
2521         }
2522       else
2523         return TRUE;
2524     }
2525 }
2526
2527 /**
2528  * Closes a directory iteration.
2529  */
2530 void
2531 _dbus_directory_close (DBusDirIter *iter)
2532 {
2533   closedir (iter->d);
2534   dbus_free (iter);
2535 }
2536
2537 static dbus_bool_t
2538 pseudorandom_generate_random_bytes (DBusString *str,
2539                                     int         n_bytes)
2540 {
2541   int old_len;
2542   unsigned long tv_usec;
2543   int i;
2544   
2545   old_len = _dbus_string_get_length (str);
2546
2547   /* fall back to pseudorandom */
2548   _dbus_verbose ("Falling back to pseudorandom for %d bytes\n",
2549                  n_bytes);
2550   
2551   _dbus_get_current_time (NULL, &tv_usec);
2552   srand (tv_usec);
2553   
2554   i = 0;
2555   while (i < n_bytes)
2556     {
2557       double r;
2558       unsigned int b;
2559           
2560       r = rand ();
2561       b = (r / (double) RAND_MAX) * 255.0;
2562           
2563       if (!_dbus_string_append_byte (str, b))
2564         goto failed;
2565           
2566       ++i;
2567     }
2568
2569   return TRUE;
2570
2571  failed:
2572   _dbus_string_set_length (str, old_len);
2573   return FALSE;
2574 }
2575
2576 /**
2577  * Generates the given number of random bytes,
2578  * using the best mechanism we can come up with.
2579  *
2580  * @param str the string
2581  * @param n_bytes the number of random bytes to append to string
2582  * @returns #TRUE on success, #FALSE if no memory
2583  */
2584 dbus_bool_t
2585 _dbus_generate_random_bytes (DBusString *str,
2586                              int         n_bytes)
2587 {
2588   int old_len;
2589   int fd;
2590
2591   /* FALSE return means "no memory", if it could
2592    * mean something else then we'd need to return
2593    * a DBusError. So we always fall back to pseudorandom
2594    * if the I/O fails.
2595    */
2596   
2597   old_len = _dbus_string_get_length (str);
2598   fd = -1;
2599
2600   /* note, urandom on linux will fall back to pseudorandom */
2601   fd = open ("/dev/urandom", O_RDONLY);
2602   if (fd < 0)
2603     return pseudorandom_generate_random_bytes (str, n_bytes);
2604
2605   if (_dbus_read (fd, str, n_bytes) != n_bytes)
2606     {
2607       close (fd);
2608       _dbus_string_set_length (str, old_len);
2609       return pseudorandom_generate_random_bytes (str, n_bytes);
2610     }
2611
2612   _dbus_verbose ("Read %d bytes from /dev/urandom\n",
2613                  n_bytes);
2614   
2615   close (fd);
2616   
2617   return TRUE;
2618 }
2619
2620 /**
2621  * Generates the given number of random bytes, where the bytes are
2622  * chosen from the alphanumeric ASCII subset.
2623  *
2624  * @param str the string
2625  * @param n_bytes the number of random ASCII bytes to append to string
2626  * @returns #TRUE on success, #FALSE if no memory or other failure
2627  */
2628 dbus_bool_t
2629 _dbus_generate_random_ascii (DBusString *str,
2630                              int         n_bytes)
2631 {
2632   static const char letters[] =
2633     "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
2634   int i;
2635   int len;
2636   
2637   if (!_dbus_generate_random_bytes (str, n_bytes))
2638     return FALSE;
2639   
2640   len = _dbus_string_get_length (str);
2641   i = len - n_bytes;
2642   while (i < len)
2643     {
2644       _dbus_string_set_byte (str, i,
2645                              letters[_dbus_string_get_byte (str, i) %
2646                                      (sizeof (letters) - 1)]);
2647
2648       ++i;
2649     }
2650
2651   _dbus_assert (_dbus_string_validate_ascii (str, len - n_bytes,
2652                                              n_bytes));
2653
2654   return TRUE;
2655 }
2656
2657 /**
2658  * A wrapper around strerror() because some platforms
2659  * may be lame and not have strerror().
2660  *
2661  * @param error_number errno.
2662  * @returns error description.
2663  */
2664 const char*
2665 _dbus_strerror (int error_number)
2666 {
2667   const char *msg;
2668   
2669   msg = strerror (error_number);
2670   if (msg == NULL)
2671     msg = "unknown";
2672
2673   return msg;
2674 }
2675
2676 /**
2677  * signal (SIGPIPE, SIG_IGN);
2678  */
2679 void
2680 _dbus_disable_sigpipe (void)
2681 {
2682   signal (SIGPIPE, SIG_IGN);
2683 }
2684
2685 /**
2686  * Sets the file descriptor to be close
2687  * on exec. Should be called for all file
2688  * descriptors in D-BUS code.
2689  *
2690  * @param fd the file descriptor
2691  */
2692 void
2693 _dbus_fd_set_close_on_exec (int fd)
2694 {
2695   int val;
2696   
2697   val = fcntl (fd, F_GETFD, 0);
2698   
2699   if (val < 0)
2700     return;
2701
2702   val |= FD_CLOEXEC;
2703   
2704   fcntl (fd, F_SETFD, val);
2705 }
2706
2707 /**
2708  * Converts a UNIX errno into a #DBusError name.
2709  *
2710  * @todo should cover more errnos, specifically those
2711  * from open().
2712  * 
2713  * @param error_number the errno.
2714  * @returns an error name
2715  */
2716 const char*
2717 _dbus_error_from_errno (int error_number)
2718 {
2719   switch (error_number)
2720     {
2721     case 0:
2722       return DBUS_ERROR_FAILED;
2723       
2724 #ifdef EPROTONOSUPPORT
2725     case EPROTONOSUPPORT:
2726       return DBUS_ERROR_NOT_SUPPORTED;
2727 #endif
2728 #ifdef EAFNOSUPPORT
2729     case EAFNOSUPPORT:
2730       return DBUS_ERROR_NOT_SUPPORTED;
2731 #endif
2732 #ifdef ENFILE
2733     case ENFILE:
2734       return DBUS_ERROR_LIMITS_EXCEEDED; /* kernel out of memory */
2735 #endif
2736 #ifdef EMFILE
2737     case EMFILE:
2738       return DBUS_ERROR_LIMITS_EXCEEDED;
2739 #endif
2740 #ifdef EACCES
2741     case EACCES:
2742       return DBUS_ERROR_ACCESS_DENIED;
2743 #endif
2744 #ifdef EPERM
2745     case EPERM:
2746       return DBUS_ERROR_ACCESS_DENIED;
2747 #endif
2748 #ifdef ENOBUFS
2749     case ENOBUFS:
2750       return DBUS_ERROR_NO_MEMORY;
2751 #endif
2752 #ifdef ENOMEM
2753     case ENOMEM:
2754       return DBUS_ERROR_NO_MEMORY;
2755 #endif
2756 #ifdef EINVAL
2757     case EINVAL:
2758       return DBUS_ERROR_FAILED;
2759 #endif
2760 #ifdef EBADF
2761     case EBADF:
2762       return DBUS_ERROR_FAILED;
2763 #endif
2764 #ifdef EFAULT
2765     case EFAULT:
2766       return DBUS_ERROR_FAILED;
2767 #endif
2768 #ifdef ENOTSOCK
2769     case ENOTSOCK:
2770       return DBUS_ERROR_FAILED;
2771 #endif
2772 #ifdef EISCONN
2773     case EISCONN:
2774       return DBUS_ERROR_FAILED;
2775 #endif
2776 #ifdef ECONNREFUSED
2777     case ECONNREFUSED:
2778       return DBUS_ERROR_NO_SERVER;
2779 #endif
2780 #ifdef ETIMEDOUT
2781     case ETIMEDOUT:
2782       return DBUS_ERROR_TIMEOUT;
2783 #endif
2784 #ifdef ENETUNREACH
2785     case ENETUNREACH:
2786       return DBUS_ERROR_NO_NETWORK;
2787 #endif
2788 #ifdef EADDRINUSE
2789     case EADDRINUSE:
2790       return DBUS_ERROR_ADDRESS_IN_USE;
2791 #endif
2792 #ifdef EEXIST
2793     case EEXIST:
2794       return DBUS_ERROR_FILE_NOT_FOUND;
2795 #endif
2796 #ifdef ENOENT
2797     case ENOENT:
2798       return DBUS_ERROR_FILE_NOT_FOUND;
2799 #endif
2800     }
2801
2802   return DBUS_ERROR_FAILED;
2803 }
2804
2805 /**
2806  * Exit the process, returning the given value.
2807  *
2808  * @param code the exit code
2809  */
2810 void
2811 _dbus_exit (int code)
2812 {
2813   _exit (code);
2814 }
2815
2816 /**
2817  * stat() wrapper.
2818  *
2819  * @param filename the filename to stat
2820  * @param statbuf the stat info to fill in
2821  * @param error return location for error
2822  * @returns #FALSE if error was set
2823  */
2824 dbus_bool_t
2825 _dbus_stat (const DBusString *filename,
2826             DBusStat         *statbuf,
2827             DBusError        *error)
2828 {
2829   const char *filename_c;
2830   struct stat sb;
2831
2832   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2833   
2834   filename_c = _dbus_string_get_const_data (filename);
2835
2836   if (stat (filename_c, &sb) < 0)
2837     {
2838       dbus_set_error (error, _dbus_error_from_errno (errno),
2839                       "%s", _dbus_strerror (errno));
2840       return FALSE;
2841     }
2842
2843   statbuf->mode = sb.st_mode;
2844   statbuf->nlink = sb.st_nlink;
2845   statbuf->uid = sb.st_uid;
2846   statbuf->gid = sb.st_gid;
2847   statbuf->size = sb.st_size;
2848   statbuf->atime = sb.st_atime;
2849   statbuf->mtime = sb.st_mtime;
2850   statbuf->ctime = sb.st_ctime;
2851
2852   return TRUE;
2853 }
2854
2855 /**
2856  * Creates a full-duplex pipe (as in socketpair()).
2857  * Sets both ends of the pipe nonblocking.
2858  *
2859  * @param fd1 return location for one end
2860  * @param fd2 return location for the other end
2861  * @param blocking #TRUE if pipe should be blocking
2862  * @param error error return
2863  * @returns #FALSE on failure (if error is set)
2864  */
2865 dbus_bool_t
2866 _dbus_full_duplex_pipe (int        *fd1,
2867                         int        *fd2,
2868                         dbus_bool_t blocking,
2869                         DBusError  *error)
2870 {
2871 #ifdef HAVE_SOCKETPAIR
2872   int fds[2];
2873
2874   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2875   
2876   if (socketpair (AF_UNIX, SOCK_STREAM, 0, fds) < 0)
2877     {
2878       dbus_set_error (error, _dbus_error_from_errno (errno),
2879                       "Could not create full-duplex pipe");
2880       return FALSE;
2881     }
2882
2883   if (!blocking &&
2884       (!_dbus_set_fd_nonblocking (fds[0], NULL) ||
2885        !_dbus_set_fd_nonblocking (fds[1], NULL)))
2886     {
2887       dbus_set_error (error, _dbus_error_from_errno (errno),
2888                       "Could not set full-duplex pipe nonblocking");
2889       
2890       close (fds[0]);
2891       close (fds[1]);
2892       
2893       return FALSE;
2894     }
2895   
2896   *fd1 = fds[0];
2897   *fd2 = fds[1];
2898   
2899   return TRUE;  
2900 #else
2901   _dbus_warn ("_dbus_full_duplex_pipe() not implemented on this OS\n");
2902   dbus_set_error (error, DBUS_ERROR_FAILED,
2903                   "_dbus_full_duplex_pipe() not implemented on this OS");
2904   return FALSE;
2905 #endif
2906 }
2907
2908 /**
2909  * Closes a file descriptor.
2910  *
2911  * @param fd the file descriptor
2912  * @param error error object
2913  * @returns #FALSE if error set
2914  */
2915 dbus_bool_t
2916 _dbus_close (int        fd,
2917              DBusError *error)
2918 {
2919   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2920   
2921  again:
2922   if (close (fd) < 0)
2923     {
2924       if (errno == EINTR)
2925         goto again;
2926
2927       dbus_set_error (error, _dbus_error_from_errno (errno),
2928                       "Could not close fd %d", fd);
2929       return FALSE;
2930     }
2931
2932   return TRUE;
2933 }
2934
2935 /**
2936  * Sets a file descriptor to be nonblocking.
2937  *
2938  * @param fd the file descriptor.
2939  * @param error address of error location.
2940  * @returns #TRUE on success.
2941  */
2942 dbus_bool_t
2943 _dbus_set_fd_nonblocking (int             fd,
2944                           DBusError      *error)
2945 {
2946   int val;
2947
2948   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2949   
2950   val = fcntl (fd, F_GETFL, 0);
2951   if (val < 0)
2952     {
2953       dbus_set_error (error, _dbus_error_from_errno (errno),
2954                       "Failed to get flags from file descriptor %d: %s",
2955                       fd, _dbus_strerror (errno));
2956       _dbus_verbose ("Failed to get flags for fd %d: %s\n", fd,
2957                      _dbus_strerror (errno));
2958       return FALSE;
2959     }
2960
2961   if (fcntl (fd, F_SETFL, val | O_NONBLOCK) < 0)
2962     {
2963       dbus_set_error (error, _dbus_error_from_errno (errno),
2964                       "Failed to set nonblocking flag of file descriptor %d: %s",
2965                       fd, _dbus_strerror (errno));
2966       _dbus_verbose ("Failed to set fd %d nonblocking: %s\n",
2967                      fd, _dbus_strerror (errno));
2968
2969       return FALSE;
2970     }
2971
2972   return TRUE;
2973 }
2974
2975 /**
2976  * On GNU libc systems, print a crude backtrace to the verbose log.
2977  * On other systems, print "no backtrace support"
2978  *
2979  */
2980 void
2981 _dbus_print_backtrace (void)
2982 {
2983 #if defined (HAVE_BACKTRACE) && defined (DBUS_ENABLE_VERBOSE_MODE)
2984   void *bt[500];
2985   int bt_size;
2986   int i;
2987   char **syms;
2988   
2989   bt_size = backtrace (bt, 500);
2990
2991   syms = backtrace_symbols (bt, bt_size);
2992   
2993   i = 0;
2994   while (i < bt_size)
2995     {
2996       _dbus_verbose ("  %s\n", syms[i]);
2997       ++i;
2998     }
2999
3000   free (syms);
3001 #else
3002   _dbus_verbose ("  D-BUS not compiled with backtrace support\n");
3003 #endif
3004 }
3005
3006 /**
3007  * Does the chdir, fork, setsid, etc. to become a daemon process.
3008  *
3009  * @param pidfile #NULL, or pidfile to create
3010  * @param error return location for errors
3011  * @returns #FALSE on failure
3012  */
3013 dbus_bool_t
3014 _dbus_become_daemon (const DBusString *pidfile,
3015                      DBusError        *error)
3016 {
3017   const char *s;
3018   pid_t child_pid;
3019
3020   if (chdir ("/") < 0)
3021     {
3022       dbus_set_error (error, DBUS_ERROR_FAILED,
3023                       "Could not chdir() to root directory");
3024       return FALSE;
3025     }
3026
3027   switch ((child_pid = fork ()))
3028     {
3029     case -1:
3030       dbus_set_error (error, _dbus_error_from_errno (errno),
3031                       "Failed to fork daemon: %s", _dbus_strerror (errno));
3032       return FALSE;
3033       break;
3034
3035     case 0:
3036       s = _dbus_getenv ("DBUS_DEBUG_OUTPUT");
3037       if (s == NULL || *s == '\0')
3038         {
3039           int dev_null_fd;
3040
3041           /* silently ignore failures here, if someone
3042            * doesn't have /dev/null we may as well try
3043            * to continue anyhow
3044            */
3045
3046           dev_null_fd = open ("/dev/null", O_RDWR);
3047           if (dev_null_fd >= 0)
3048             {
3049               dup2 (dev_null_fd, 0);
3050               dup2 (dev_null_fd, 1);
3051               dup2 (dev_null_fd, 2);
3052             }
3053         }
3054
3055       /* Get a predictable umask */
3056       umask (022);
3057       break;
3058
3059     default:
3060       if (pidfile)
3061         {
3062           if (!_dbus_write_pid_file (pidfile,
3063                                      child_pid,
3064                                      error))
3065             {
3066               kill (child_pid, SIGTERM);
3067               return FALSE;
3068             }
3069         }
3070       _exit (0);
3071       break;
3072     }
3073
3074   if (setsid () == -1)
3075     _dbus_assert_not_reached ("setsid() failed");
3076   
3077   return TRUE;
3078 }
3079
3080 /**
3081  * Creates a file containing the process ID.
3082  *
3083  * @param filename the filename to write to
3084  * @param pid our process ID
3085  * @param error return location for errors
3086  * @returns #FALSE on failure
3087  */
3088 dbus_bool_t
3089 _dbus_write_pid_file (const DBusString *filename,
3090                       unsigned long     pid,
3091                       DBusError        *error)
3092 {
3093   const char *cfilename;
3094   int fd;
3095   FILE *f;
3096
3097   cfilename = _dbus_string_get_const_data (filename);
3098   
3099   fd = open (cfilename, O_WRONLY|O_CREAT|O_EXCL|O_BINARY, 0644);
3100   
3101   if (fd < 0)
3102     {
3103       dbus_set_error (error, _dbus_error_from_errno (errno),
3104                       "Failed to open \"%s\": %s", cfilename,
3105                       _dbus_strerror (errno));
3106       return FALSE;
3107     }
3108
3109   if ((f = fdopen (fd, "w")) == NULL)
3110     {
3111       dbus_set_error (error, _dbus_error_from_errno (errno),
3112                       "Failed to fdopen fd %d: %s", fd, _dbus_strerror (errno));
3113       close (fd);
3114       return FALSE;
3115     }
3116   
3117   if (fprintf (f, "%lu\n", pid) < 0)
3118     {
3119       dbus_set_error (error, _dbus_error_from_errno (errno),
3120                       "Failed to write to \"%s\": %s", cfilename,
3121                       _dbus_strerror (errno));
3122       return FALSE;
3123     }
3124
3125   if (fclose (f) == EOF)
3126     {
3127       dbus_set_error (error, _dbus_error_from_errno (errno),
3128                       "Failed to close \"%s\": %s", cfilename,
3129                       _dbus_strerror (errno));
3130       return FALSE;
3131     }
3132   
3133   return TRUE;
3134 }
3135
3136 /**
3137  * Changes the user and group the bus is running as.
3138  *
3139  * @param uid the new user ID
3140  * @param gid the new group ID
3141  * @param error return location for errors
3142  * @returns #FALSE on failure
3143  */
3144 dbus_bool_t
3145 _dbus_change_identity  (dbus_uid_t     uid,
3146                         dbus_gid_t     gid,
3147                         DBusError     *error)
3148 {
3149   /* Set GID first, or the setuid may remove our permission
3150    * to change the GID
3151    */
3152   if (setgid (gid) < 0)
3153     {
3154       dbus_set_error (error, _dbus_error_from_errno (errno),
3155                       "Failed to set GID to %lu: %s", gid,
3156                       _dbus_strerror (errno));
3157       return FALSE;
3158     }
3159   
3160   if (setuid (uid) < 0)
3161     {
3162       dbus_set_error (error, _dbus_error_from_errno (errno),
3163                       "Failed to set UID to %lu: %s", uid,
3164                       _dbus_strerror (errno));
3165       return FALSE;
3166     }
3167   
3168   return TRUE;
3169 }
3170
3171 /** Installs a UNIX signal handler
3172  *
3173  * @param sig the signal to handle
3174  * @param handler the handler
3175  */
3176 void
3177 _dbus_set_signal_handler (int               sig,
3178                           DBusSignalHandler handler)
3179 {
3180   struct sigaction act;
3181   sigset_t empty_mask;
3182   
3183   sigemptyset (&empty_mask);
3184   act.sa_handler = handler;
3185   act.sa_mask    = empty_mask;
3186   act.sa_flags   = 0;
3187   sigaction (sig,  &act, 0);
3188 }
3189
3190
3191 #ifdef DBUS_BUILD_TESTS
3192 #include <stdlib.h>
3193 static void
3194 check_dirname (const char *filename,
3195                const char *dirname)
3196 {
3197   DBusString f, d;
3198   
3199   _dbus_string_init_const (&f, filename);
3200
3201   if (!_dbus_string_init (&d))
3202     _dbus_assert_not_reached ("no memory");
3203
3204   if (!_dbus_string_get_dirname (&f, &d))
3205     _dbus_assert_not_reached ("no memory");
3206
3207   if (!_dbus_string_equal_c_str (&d, dirname))
3208     {
3209       _dbus_warn ("For filename \"%s\" got dirname \"%s\" and expected \"%s\"\n",
3210                   filename,
3211                   _dbus_string_get_const_data (&d),
3212                   dirname);
3213       exit (1);
3214     }
3215
3216   _dbus_string_free (&d);
3217 }
3218
3219 static void
3220 check_path_absolute (const char *path,
3221                      dbus_bool_t expected)
3222 {
3223   DBusString p;
3224
3225   _dbus_string_init_const (&p, path);
3226
3227   if (_dbus_path_is_absolute (&p) != expected)
3228     {
3229       _dbus_warn ("For path \"%s\" expected absolute = %d got %d\n",
3230                   path, expected, _dbus_path_is_absolute (&p));
3231       exit (1);
3232     }
3233 }
3234
3235 /**
3236  * Unit test for dbus-sysdeps.c.
3237  * 
3238  * @returns #TRUE on success.
3239  */
3240 dbus_bool_t
3241 _dbus_sysdeps_test (void)
3242 {
3243   DBusString str;
3244   double val;
3245   int pos;
3246   
3247   check_dirname ("foo", ".");
3248   check_dirname ("foo/bar", "foo");
3249   check_dirname ("foo//bar", "foo");
3250   check_dirname ("foo///bar", "foo");
3251   check_dirname ("foo/bar/", "foo");
3252   check_dirname ("foo//bar/", "foo");
3253   check_dirname ("foo///bar/", "foo");
3254   check_dirname ("foo/bar//", "foo");
3255   check_dirname ("foo//bar////", "foo");
3256   check_dirname ("foo///bar///////", "foo");
3257   check_dirname ("/foo", "/");
3258   check_dirname ("////foo", "/");
3259   check_dirname ("/foo/bar", "/foo");
3260   check_dirname ("/foo//bar", "/foo");
3261   check_dirname ("/foo///bar", "/foo");
3262   check_dirname ("/", "/");
3263   check_dirname ("///", "/");
3264   check_dirname ("", ".");  
3265
3266
3267   _dbus_string_init_const (&str, "3.5");
3268   if (!_dbus_string_parse_double (&str,
3269                                   0, &val, &pos))
3270     {
3271       _dbus_warn ("Failed to parse double");
3272       exit (1);
3273     }
3274   if (val != 3.5)
3275     {
3276       _dbus_warn ("Failed to parse 3.5 correctly, got: %f", val);
3277       exit (1);
3278     }
3279   if (pos != 3)
3280     {
3281       _dbus_warn ("_dbus_string_parse_double of \"3.5\" returned wrong position %d", pos);
3282       exit (1);
3283     }
3284
3285   check_path_absolute ("/", TRUE);
3286   check_path_absolute ("/foo", TRUE);
3287   check_path_absolute ("", FALSE);
3288   check_path_absolute ("foo", FALSE);
3289   check_path_absolute ("foo/bar", FALSE);
3290   
3291   return TRUE;
3292 }
3293 #endif /* DBUS_BUILD_TESTS */
3294
3295 /** @} end of sysdeps */
3296