2003-04-30 Havoc Pennington <hp@redhat.com>
[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 at least
474    * avoids inadvertent/accidental data loss.
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         errno = 0;
1459         if (getgrouplist (username_c, info->primary_gid, buf, &buf_count) < 0)
1460           {
1461             dbus_set_error (error,
1462                             _dbus_error_from_errno (errno),
1463                             "Failed to get groups for username \"%s\" primary GID "
1464                             DBUS_GID_FORMAT ": %s\n",
1465                             username_c, info->primary_gid,
1466                             _dbus_strerror (errno));
1467             dbus_free (buf);
1468             goto failed;
1469           }
1470       }
1471
1472     info->group_ids = dbus_new (dbus_gid_t, buf_count);
1473     if (info->group_ids == NULL)
1474       {
1475         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1476         dbus_free (buf);
1477         goto failed;
1478       }
1479     
1480     for (i = 0; i < buf_count; ++i)
1481       info->group_ids[i] = buf[i];
1482
1483     info->n_group_ids = buf_count;
1484     
1485     dbus_free (buf);
1486   }
1487 #else  /* HAVE_GETGROUPLIST */
1488   {
1489     /* We just get the one group ID */
1490     info->group_ids = dbus_new (dbus_gid_t, 1);
1491     if (info->group_ids == NULL)
1492       {
1493         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1494         goto out;
1495       }
1496
1497     info->n_group_ids = 1;
1498
1499     (info->group_ids)[0] = info->primary_gid;
1500   }
1501 #endif /* HAVE_GETGROUPLIST */
1502
1503   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1504   
1505   return TRUE;
1506   
1507  failed:
1508   _DBUS_ASSERT_ERROR_IS_SET (error);
1509   _dbus_user_info_free (info);
1510   return FALSE;
1511 }
1512
1513 /**
1514  * Gets user info for the given username.
1515  *
1516  * @param info user info object to initialize
1517  * @param username the username
1518  * @param error error return
1519  * @returns #TRUE on success
1520  */
1521 dbus_bool_t
1522 _dbus_user_info_fill (DBusUserInfo     *info,
1523                       const DBusString *username,
1524                       DBusError        *error)
1525 {
1526   return fill_user_info (info, DBUS_UID_UNSET,
1527                          username, error);
1528 }
1529
1530 /**
1531  * Gets user info for the given user ID.
1532  *
1533  * @param info user info object to initialize
1534  * @param uid the user ID
1535  * @param error error return
1536  * @returns #TRUE on success
1537  */
1538 dbus_bool_t
1539 _dbus_user_info_fill_uid (DBusUserInfo *info,
1540                           dbus_uid_t    uid,
1541                           DBusError    *error)
1542 {
1543   return fill_user_info (info, uid,
1544                          NULL, error);
1545 }
1546
1547 /**
1548  * Frees the members of info
1549  * (but not info itself)
1550  * @param info the user info struct
1551  */
1552 void
1553 _dbus_user_info_free (DBusUserInfo *info)
1554 {
1555   dbus_free (info->group_ids);
1556   dbus_free (info->username);
1557   dbus_free (info->homedir);
1558 }
1559
1560 static dbus_bool_t
1561 fill_user_info_from_group (struct group  *g,
1562                            DBusGroupInfo *info,
1563                            DBusError     *error)
1564 {
1565   _dbus_assert (g->gr_name != NULL);
1566   
1567   info->gid = g->gr_gid;
1568   info->groupname = _dbus_strdup (g->gr_name);
1569
1570   /* info->members = dbus_strdupv (g->gr_mem) */
1571   
1572   if (info->groupname == NULL)
1573     {
1574       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1575       return FALSE;
1576     }
1577
1578   return TRUE;
1579 }
1580
1581 static dbus_bool_t
1582 fill_group_info (DBusGroupInfo    *info,
1583                  dbus_gid_t        gid,
1584                  const DBusString *groupname,
1585                  DBusError        *error)
1586 {
1587   const char *group_c_str;
1588
1589   _dbus_assert (groupname != NULL || gid != DBUS_GID_UNSET);
1590   _dbus_assert (groupname == NULL || gid == DBUS_GID_UNSET);
1591
1592   if (groupname)
1593     group_c_str = _dbus_string_get_const_data (groupname);
1594   else
1595     group_c_str = NULL;
1596   
1597   /* For now assuming that the getgrnam() and getgrgid() flavors
1598    * always correspond to the pwnam flavors, if not we have
1599    * to add more configure checks.
1600    */
1601   
1602 #if defined (HAVE_POSIX_GETPWNAME_R) || defined (HAVE_NONPOSIX_GETPWNAME_R)
1603   {
1604     struct group *g;
1605     int result;
1606     char buf[1024];
1607     struct group g_str;
1608
1609     g = NULL;
1610 #ifdef HAVE_POSIX_GETPWNAME_R
1611
1612     if (group_c_str)
1613       result = getgrnam_r (group_c_str, &g_str, buf, sizeof (buf),
1614                            &g);
1615     else
1616       result = getgrgid_r (gid, &g_str, buf, sizeof (buf),
1617                            &g);
1618 #else
1619     p = getgrnam_r (group_c_str, &g_str, buf, sizeof (buf));
1620     result = 0;
1621 #endif /* !HAVE_POSIX_GETPWNAME_R */
1622     if (result == 0 && g == &g_str)
1623       {
1624         return fill_user_info_from_group (g, info, error);
1625       }
1626     else
1627       {
1628         dbus_set_error (error, _dbus_error_from_errno (errno),
1629                         "Group %s unknown or failed to look it up\n",
1630                         group_c_str ? group_c_str : "???");
1631         return FALSE;
1632       }
1633   }
1634 #else /* ! HAVE_GETPWNAM_R */
1635   {
1636     /* I guess we're screwed on thread safety here */
1637     struct group *g;
1638
1639     g = getgrnam (group_c_str);
1640
1641     if (g != NULL)
1642       {
1643         return fill_user_info_from_group (g, info, error);
1644       }
1645     else
1646       {
1647         dbus_set_error (error, _dbus_error_from_errno (errno),
1648                         "Group %s unknown or failed to look it up\n",
1649                         group_c_str ? group_c_str : "???");
1650         return FALSE;
1651       }
1652   }
1653 #endif  /* ! HAVE_GETPWNAM_R */
1654 }
1655
1656 /**
1657  * Initializes the given DBusGroupInfo struct
1658  * with information about the given group name.
1659  *
1660  * @param info the group info struct
1661  * @param groupname name of group
1662  * @param error the error return
1663  * @returns #FALSE if error is set
1664  */
1665 dbus_bool_t
1666 _dbus_group_info_fill (DBusGroupInfo    *info,
1667                        const DBusString *groupname,
1668                        DBusError        *error)
1669 {
1670   return fill_group_info (info, DBUS_GID_UNSET,
1671                           groupname, error);
1672
1673 }
1674
1675 /**
1676  * Initializes the given DBusGroupInfo struct
1677  * with information about the given group ID.
1678  *
1679  * @param info the group info struct
1680  * @param gid group ID
1681  * @param error the error return
1682  * @returns #FALSE if error is set
1683  */
1684 dbus_bool_t
1685 _dbus_group_info_fill_gid (DBusGroupInfo *info,
1686                            dbus_gid_t     gid,
1687                            DBusError     *error)
1688 {
1689   return fill_group_info (info, gid, NULL, error);
1690 }
1691
1692 /**
1693  * Frees the members of info (but not info itself).
1694  *
1695  * @param info the group info
1696  */
1697 void
1698 _dbus_group_info_free (DBusGroupInfo    *info)
1699 {
1700   dbus_free (info->groupname);
1701 }
1702
1703 /**
1704  * Sets fields in DBusCredentials to DBUS_PID_UNSET,
1705  * DBUS_UID_UNSET, DBUS_GID_UNSET.
1706  *
1707  * @param credentials the credentials object to fill in
1708  */
1709 void
1710 _dbus_credentials_clear (DBusCredentials *credentials)
1711 {
1712   credentials->pid = DBUS_PID_UNSET;
1713   credentials->uid = DBUS_UID_UNSET;
1714   credentials->gid = DBUS_GID_UNSET;
1715 }
1716
1717 /**
1718  * Gets the credentials of the current process.
1719  *
1720  * @param credentials credentials to fill in.
1721  */
1722 void
1723 _dbus_credentials_from_current_process (DBusCredentials *credentials)
1724 {
1725   /* The POSIX spec certainly doesn't promise this, but
1726    * we need these assertions to fail as soon as we're wrong about
1727    * it so we can do the porting fixups
1728    */
1729   _dbus_assert (sizeof (pid_t) <= sizeof (credentials->pid));
1730   _dbus_assert (sizeof (uid_t) <= sizeof (credentials->uid));
1731   _dbus_assert (sizeof (gid_t) <= sizeof (credentials->gid));
1732   
1733   credentials->pid = getpid ();
1734   credentials->uid = getuid ();
1735   credentials->gid = getgid ();
1736 }
1737
1738 /**
1739  * Checks whether the provided_credentials are allowed to log in
1740  * as the expected_credentials.
1741  *
1742  * @param expected_credentials credentials we're trying to log in as
1743  * @param provided_credentials credentials we have
1744  * @returns #TRUE if we can log in
1745  */
1746 dbus_bool_t
1747 _dbus_credentials_match (const DBusCredentials *expected_credentials,
1748                          const DBusCredentials *provided_credentials)
1749 {
1750   if (provided_credentials->uid == DBUS_UID_UNSET)
1751     return FALSE;
1752   else if (expected_credentials->uid == DBUS_UID_UNSET)
1753     return FALSE;
1754   else if (provided_credentials->uid == 0)
1755     return TRUE;
1756   else if (provided_credentials->uid == expected_credentials->uid)
1757     return TRUE;
1758   else
1759     return FALSE;
1760 }
1761
1762 /**
1763  * Gets our process ID
1764  * @returns process ID
1765  */
1766 unsigned long
1767 _dbus_getpid (void)
1768 {
1769   return getpid ();
1770 }
1771
1772 /** Gets our UID
1773  * @returns process UID
1774  */
1775 dbus_uid_t
1776 _dbus_getuid (void)
1777 {
1778   return getuid ();
1779 }
1780
1781 /** Gets our GID
1782  * @returns process GID
1783  */
1784 dbus_gid_t
1785 _dbus_getgid (void)
1786 {
1787   return getgid ();
1788 }
1789
1790
1791 _DBUS_DEFINE_GLOBAL_LOCK (atomic);
1792
1793 /**
1794  * Atomically increments an integer
1795  *
1796  * @param atomic pointer to the integer to increment
1797  * @returns the value after incrementing
1798  *
1799  * @todo implement arch-specific faster atomic ops
1800  */
1801 dbus_atomic_t
1802 _dbus_atomic_inc (dbus_atomic_t *atomic)
1803 {
1804   dbus_atomic_t res;
1805   
1806   _DBUS_LOCK (atomic);
1807   *atomic += 1;
1808   res = *atomic;
1809   _DBUS_UNLOCK (atomic);
1810   return res;
1811 }
1812
1813 /**
1814  * Atomically decrement an integer
1815  *
1816  * @param atomic pointer to the integer to decrement
1817  * @returns the value after decrementing
1818  *
1819  * @todo implement arch-specific faster atomic ops
1820  */
1821 dbus_atomic_t
1822 _dbus_atomic_dec (dbus_atomic_t *atomic)
1823 {
1824   dbus_atomic_t res;
1825   
1826   _DBUS_LOCK (atomic);
1827   *atomic -= 1;
1828   res = *atomic;
1829   _DBUS_UNLOCK (atomic);
1830   return res;
1831 }
1832
1833 /**
1834  * Wrapper for poll().
1835  *
1836  * @todo need a fallback implementation using select()
1837  *
1838  * @param fds the file descriptors to poll
1839  * @param n_fds number of descriptors in the array
1840  * @param timeout_milliseconds timeout or -1 for infinite
1841  * @returns numbers of fds with revents, or <0 on error
1842  */
1843 int
1844 _dbus_poll (DBusPollFD *fds,
1845             int         n_fds,
1846             int         timeout_milliseconds)
1847 {
1848 #ifdef HAVE_POLL
1849   /* This big thing is a constant expression and should get optimized
1850    * out of existence. So it's more robust than a configure check at
1851    * no cost.
1852    */
1853   if (_DBUS_POLLIN == POLLIN &&
1854       _DBUS_POLLPRI == POLLPRI &&
1855       _DBUS_POLLOUT == POLLOUT &&
1856       _DBUS_POLLERR == POLLERR &&
1857       _DBUS_POLLHUP == POLLHUP &&
1858       _DBUS_POLLNVAL == POLLNVAL &&
1859       sizeof (DBusPollFD) == sizeof (struct pollfd) &&
1860       _DBUS_STRUCT_OFFSET (DBusPollFD, fd) ==
1861       _DBUS_STRUCT_OFFSET (struct pollfd, fd) &&
1862       _DBUS_STRUCT_OFFSET (DBusPollFD, events) ==
1863       _DBUS_STRUCT_OFFSET (struct pollfd, events) &&
1864       _DBUS_STRUCT_OFFSET (DBusPollFD, revents) ==
1865       _DBUS_STRUCT_OFFSET (struct pollfd, revents))
1866     {
1867       return poll ((struct pollfd*) fds,
1868                    n_fds, 
1869                    timeout_milliseconds);
1870     }
1871   else
1872     {
1873       /* We have to convert the DBusPollFD to an array of
1874        * struct pollfd, poll, and convert back.
1875        */
1876       _dbus_warn ("didn't implement poll() properly for this system yet\n");
1877       return -1;
1878     }
1879 #else /* ! HAVE_POLL */
1880
1881   fd_set read_set, write_set, err_set;
1882   int max_fd = 0;
1883   int i;
1884   struct timeval tv;
1885   int ready;
1886   
1887   FD_ZERO (&read_set);
1888   FD_ZERO (&write_set);
1889   FD_ZERO (&err_set);
1890
1891   for (i = 0; i < n_fds; i++)
1892     {
1893       DBusPollFD f = fds[i];
1894
1895       if (f.events & _DBUS_POLLIN)
1896         FD_SET (f.fd, &read_set);
1897
1898       if (f.events & _DBUS_POLLOUT)
1899         FD_SET (f.fd, &write_set);
1900
1901       FD_SET (f.fd, &err_set);
1902
1903       max_fd = MAX (max_fd, f.fd);
1904     }
1905     
1906   tv.tv_sec = timeout_milliseconds / 1000;
1907   tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
1908
1909   ready = select (max_fd + 1, &read_set, &write_set, &err_set, &tv);
1910
1911   if (ready > 0)
1912     {
1913       for (i = 0; i < n_fds; i++)
1914         {
1915           DBusPollFD f = fds[i];
1916
1917           f.revents = 0;
1918
1919           if (FD_ISSET (f.fd, &read_set))
1920             f.revents |= _DBUS_POLLIN;
1921
1922           if (FD_ISSET (f.fd, &write_set))
1923             f.revents |= _DBUS_POLLOUT;
1924
1925           if (FD_ISSET (f.fd, &err_set))
1926             f.revents |= _DBUS_POLLERR;
1927         }
1928     }
1929
1930   return ready;
1931 #endif
1932 }
1933
1934 /** nanoseconds in a second */
1935 #define NANOSECONDS_PER_SECOND       1000000000
1936 /** microseconds in a second */
1937 #define MICROSECONDS_PER_SECOND      1000000
1938 /** milliseconds in a second */
1939 #define MILLISECONDS_PER_SECOND      1000
1940 /** nanoseconds in a millisecond */
1941 #define NANOSECONDS_PER_MILLISECOND  1000000
1942 /** microseconds in a millisecond */
1943 #define MICROSECONDS_PER_MILLISECOND 1000
1944
1945 /**
1946  * Sleeps the given number of milliseconds.
1947  * @param milliseconds number of milliseconds
1948  */
1949 void
1950 _dbus_sleep_milliseconds (int milliseconds)
1951 {
1952 #ifdef HAVE_NANOSLEEP
1953   struct timespec req;
1954   struct timespec rem;
1955
1956   req.tv_sec = milliseconds / MILLISECONDS_PER_SECOND;
1957   req.tv_nsec = (milliseconds % MILLISECONDS_PER_SECOND) * NANOSECONDS_PER_MILLISECOND;
1958   rem.tv_sec = 0;
1959   rem.tv_nsec = 0;
1960
1961   while (nanosleep (&req, &rem) < 0 && errno == EINTR)
1962     req = rem;
1963 #elif defined (HAVE_USLEEP)
1964   usleep (milliseconds * MICROSECONDS_PER_MILLISECOND);
1965 #else /* ! HAVE_USLEEP */
1966   sleep (MAX (milliseconds / 1000, 1));
1967 #endif
1968 }
1969
1970 /**
1971  * Get current time, as in gettimeofday().
1972  *
1973  * @param tv_sec return location for number of seconds
1974  * @param tv_usec return location for number of microseconds (thousandths)
1975  */
1976 void
1977 _dbus_get_current_time (long *tv_sec,
1978                         long *tv_usec)
1979 {
1980   struct timeval t;
1981
1982   gettimeofday (&t, NULL);
1983
1984   if (tv_sec)
1985     *tv_sec = t.tv_sec;
1986   if (tv_usec)
1987     *tv_usec = t.tv_usec;
1988 }
1989
1990 /**
1991  * Appends the contents of the given file to the string,
1992  * returning error code. At the moment, won't open a file
1993  * more than a megabyte in size.
1994  *
1995  * @param str the string to append to
1996  * @param filename filename to load
1997  * @param error place to set an error
1998  * @returns #FALSE if error was set
1999  */
2000 dbus_bool_t
2001 _dbus_file_get_contents (DBusString       *str,
2002                          const DBusString *filename,
2003                          DBusError        *error)
2004 {
2005   int fd;
2006   struct stat sb;
2007   int orig_len;
2008   int total;
2009   const char *filename_c;
2010
2011   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2012   
2013   filename_c = _dbus_string_get_const_data (filename);
2014   
2015   /* O_BINARY useful on Cygwin */
2016   fd = open (filename_c, O_RDONLY | O_BINARY);
2017   if (fd < 0)
2018     {
2019       dbus_set_error (error, _dbus_error_from_errno (errno),
2020                       "Failed to open \"%s\": %s",
2021                       filename_c,
2022                       _dbus_strerror (errno));
2023       return FALSE;
2024     }
2025
2026   if (fstat (fd, &sb) < 0)
2027     {
2028       dbus_set_error (error, _dbus_error_from_errno (errno),
2029                       "Failed to stat \"%s\": %s",
2030                       filename_c,
2031                       _dbus_strerror (errno));
2032
2033       _dbus_verbose ("fstat() failed: %s",
2034                      _dbus_strerror (errno));
2035       
2036       close (fd);
2037       
2038       return FALSE;
2039     }
2040
2041   if (sb.st_size > _DBUS_ONE_MEGABYTE)
2042     {
2043       dbus_set_error (error, DBUS_ERROR_FAILED,
2044                       "File size %lu of \"%s\" is too large.",
2045                       filename_c, (unsigned long) sb.st_size);
2046       close (fd);
2047       return FALSE;
2048     }
2049   
2050   total = 0;
2051   orig_len = _dbus_string_get_length (str);
2052   if (sb.st_size > 0 && S_ISREG (sb.st_mode))
2053     {
2054       int bytes_read;
2055
2056       while (total < (int) sb.st_size)
2057         {
2058           bytes_read = _dbus_read (fd, str,
2059                                    sb.st_size - total);
2060           if (bytes_read <= 0)
2061             {
2062               dbus_set_error (error, _dbus_error_from_errno (errno),
2063                               "Error reading \"%s\": %s",
2064                               filename_c,
2065                               _dbus_strerror (errno));
2066
2067               _dbus_verbose ("read() failed: %s",
2068                              _dbus_strerror (errno));
2069               
2070               close (fd);
2071               _dbus_string_set_length (str, orig_len);
2072               return FALSE;
2073             }
2074           else
2075             total += bytes_read;
2076         }
2077
2078       close (fd);
2079       return TRUE;
2080     }
2081   else if (sb.st_size != 0)
2082     {
2083       _dbus_verbose ("Can only open regular files at the moment.\n");
2084       dbus_set_error (error, DBUS_ERROR_FAILED,
2085                       "\"%s\" is not a regular file",
2086                       filename_c);
2087       close (fd);
2088       return FALSE;
2089     }
2090   else
2091     {
2092       close (fd);
2093       return TRUE;
2094     }
2095 }
2096
2097 /**
2098  * Writes a string out to a file. If the file exists,
2099  * it will be atomically overwritten by the new data.
2100  *
2101  * @param str the string to write out
2102  * @param filename the file to save string to
2103  * @param error error to be filled in on failure
2104  * @returns #FALSE on failure
2105  */
2106 dbus_bool_t
2107 _dbus_string_save_to_file (const DBusString *str,
2108                            const DBusString *filename,
2109                            DBusError        *error)
2110 {
2111   int fd;
2112   int bytes_to_write;
2113   const char *filename_c;
2114   DBusString tmp_filename;
2115   const char *tmp_filename_c;
2116   int total;
2117   dbus_bool_t need_unlink;
2118   dbus_bool_t retval;
2119
2120   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2121   
2122   fd = -1;
2123   retval = FALSE;
2124   need_unlink = FALSE;
2125   
2126   if (!_dbus_string_init (&tmp_filename))
2127     {
2128       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2129       return FALSE;
2130     }
2131
2132   if (!_dbus_string_copy (filename, 0, &tmp_filename, 0))
2133     {
2134       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2135       _dbus_string_free (&tmp_filename);
2136       return FALSE;
2137     }
2138   
2139   if (!_dbus_string_append (&tmp_filename, "."))
2140     {
2141       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2142       _dbus_string_free (&tmp_filename);
2143       return FALSE;
2144     }
2145
2146 #define N_TMP_FILENAME_RANDOM_BYTES 8
2147   if (!_dbus_generate_random_ascii (&tmp_filename, N_TMP_FILENAME_RANDOM_BYTES))
2148     {
2149       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2150       _dbus_string_free (&tmp_filename);
2151       return FALSE;
2152     }
2153     
2154   filename_c = _dbus_string_get_const_data (filename);
2155   tmp_filename_c = _dbus_string_get_const_data (&tmp_filename);
2156
2157   fd = open (tmp_filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2158              0600);
2159   if (fd < 0)
2160     {
2161       dbus_set_error (error, _dbus_error_from_errno (errno),
2162                       "Could not create %s: %s", tmp_filename_c,
2163                       _dbus_strerror (errno));
2164       goto out;
2165     }
2166
2167   need_unlink = TRUE;
2168   
2169   total = 0;
2170   bytes_to_write = _dbus_string_get_length (str);
2171
2172   while (total < bytes_to_write)
2173     {
2174       int bytes_written;
2175
2176       bytes_written = _dbus_write (fd, str, total,
2177                                    bytes_to_write - total);
2178
2179       if (bytes_written <= 0)
2180         {
2181           dbus_set_error (error, _dbus_error_from_errno (errno),
2182                           "Could not write to %s: %s", tmp_filename_c,
2183                           _dbus_strerror (errno));
2184           
2185           goto out;
2186         }
2187
2188       total += bytes_written;
2189     }
2190
2191   if (close (fd) < 0)
2192     {
2193       dbus_set_error (error, _dbus_error_from_errno (errno),
2194                       "Could not close file %s: %s",
2195                       tmp_filename_c, _dbus_strerror (errno));
2196
2197       goto out;
2198     }
2199
2200   fd = -1;
2201   
2202   if (rename (tmp_filename_c, filename_c) < 0)
2203     {
2204       dbus_set_error (error, _dbus_error_from_errno (errno),
2205                       "Could not rename %s to %s: %s",
2206                       tmp_filename_c, filename_c,
2207                       _dbus_strerror (errno));
2208
2209       goto out;
2210     }
2211
2212   need_unlink = FALSE;
2213   
2214   retval = TRUE;
2215   
2216  out:
2217   /* close first, then unlink, to prevent ".nfs34234235" garbage
2218    * files
2219    */
2220
2221   if (fd >= 0)
2222     close (fd);
2223         
2224   if (need_unlink && unlink (tmp_filename_c) < 0)
2225     _dbus_verbose ("Failed to unlink temp file %s: %s\n",
2226                    tmp_filename_c, _dbus_strerror (errno));
2227
2228   _dbus_string_free (&tmp_filename);
2229
2230   if (!retval)
2231     _DBUS_ASSERT_ERROR_IS_SET (error);
2232   
2233   return retval;
2234 }
2235
2236 /** Creates the given file, failing if the file already exists.
2237  *
2238  * @param filename the filename
2239  * @param error error location
2240  * @returns #TRUE if we created the file and it didn't exist
2241  */
2242 dbus_bool_t
2243 _dbus_create_file_exclusively (const DBusString *filename,
2244                                DBusError        *error)
2245 {
2246   int fd;
2247   const char *filename_c;
2248
2249   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2250   
2251   filename_c = _dbus_string_get_const_data (filename);
2252   
2253   fd = open (filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2254              0600);
2255   if (fd < 0)
2256     {
2257       dbus_set_error (error,
2258                       DBUS_ERROR_FAILED,
2259                       "Could not create file %s: %s\n",
2260                       filename_c,
2261                       _dbus_strerror (errno));
2262       return FALSE;
2263     }
2264
2265   if (close (fd) < 0)
2266     {
2267       dbus_set_error (error,
2268                       DBUS_ERROR_FAILED,
2269                       "Could not close file %s: %s\n",
2270                       filename_c,
2271                       _dbus_strerror (errno));
2272       return FALSE;
2273     }
2274   
2275   return TRUE;
2276 }
2277
2278 /**
2279  * Deletes the given file.
2280  *
2281  * @param filename the filename
2282  * @param error error location
2283  * 
2284  * @returns #TRUE if unlink() succeeded
2285  */
2286 dbus_bool_t
2287 _dbus_delete_file (const DBusString *filename,
2288                    DBusError        *error)
2289 {
2290   const char *filename_c;
2291
2292   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2293   
2294   filename_c = _dbus_string_get_const_data (filename);
2295
2296   if (unlink (filename_c) < 0)
2297     {
2298       dbus_set_error (error, DBUS_ERROR_FAILED,
2299                       "Failed to delete file %s: %s\n",
2300                       filename_c, _dbus_strerror (errno));
2301       return FALSE;
2302     }
2303   else
2304     return TRUE;
2305 }
2306
2307 /**
2308  * Creates a directory; succeeds if the directory
2309  * is created or already existed.
2310  *
2311  * @param filename directory filename
2312  * @param error initialized error object
2313  * @returns #TRUE on success
2314  */
2315 dbus_bool_t
2316 _dbus_create_directory (const DBusString *filename,
2317                         DBusError        *error)
2318 {
2319   const char *filename_c;
2320
2321   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2322   
2323   filename_c = _dbus_string_get_const_data (filename);
2324
2325   if (mkdir (filename_c, 0700) < 0)
2326     {
2327       if (errno == EEXIST)
2328         return TRUE;
2329       
2330       dbus_set_error (error, DBUS_ERROR_FAILED,
2331                       "Failed to create directory %s: %s\n",
2332                       filename_c, _dbus_strerror (errno));
2333       return FALSE;
2334     }
2335   else
2336     return TRUE;
2337 }
2338
2339 /**
2340  * Appends the given filename to the given directory.
2341  *
2342  * @todo it might be cute to collapse multiple '/' such as "foo//"
2343  * concat "//bar"
2344  *
2345  * @param dir the directory name
2346  * @param next_component the filename
2347  * @returns #TRUE on success
2348  */
2349 dbus_bool_t
2350 _dbus_concat_dir_and_file (DBusString       *dir,
2351                            const DBusString *next_component)
2352 {
2353   dbus_bool_t dir_ends_in_slash;
2354   dbus_bool_t file_starts_with_slash;
2355
2356   if (_dbus_string_get_length (dir) == 0 ||
2357       _dbus_string_get_length (next_component) == 0)
2358     return TRUE;
2359   
2360   dir_ends_in_slash = '/' == _dbus_string_get_byte (dir,
2361                                                     _dbus_string_get_length (dir) - 1);
2362
2363   file_starts_with_slash = '/' == _dbus_string_get_byte (next_component, 0);
2364
2365   if (dir_ends_in_slash && file_starts_with_slash)
2366     {
2367       _dbus_string_shorten (dir, 1);
2368     }
2369   else if (!(dir_ends_in_slash || file_starts_with_slash))
2370     {
2371       if (!_dbus_string_append_byte (dir, '/'))
2372         return FALSE;
2373     }
2374
2375   return _dbus_string_copy (next_component, 0, dir,
2376                             _dbus_string_get_length (dir));
2377 }
2378
2379 /**
2380  * Get the directory name from a complete filename
2381  * @param filename the filename
2382  * @param dirname string to append directory name to
2383  * @returns #FALSE if no memory
2384  */
2385 dbus_bool_t
2386 _dbus_string_get_dirname  (const DBusString *filename,
2387                            DBusString       *dirname)
2388 {
2389   int sep;
2390   
2391   _dbus_assert (filename != dirname);
2392   _dbus_assert (filename != NULL);
2393   _dbus_assert (dirname != NULL);
2394
2395   /* Ignore any separators on the end */
2396   sep = _dbus_string_get_length (filename);
2397   if (sep == 0)
2398     return _dbus_string_append (dirname, "."); /* empty string passed in */
2399     
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     return _dbus_string_append (dirname, "/");
2407   
2408   /* Now find the previous separator */
2409   _dbus_string_find_byte_backward (filename, sep, '/', &sep);
2410   if (sep < 0)
2411     return _dbus_string_append (dirname, ".");
2412   
2413   /* skip multiple separators */
2414   while (sep > 0 && _dbus_string_get_byte (filename, sep - 1) == '/')
2415     --sep;
2416
2417   _dbus_assert (sep >= 0);
2418   
2419   if (sep == 0 &&
2420       _dbus_string_get_byte (filename, 0) == '/')
2421     return _dbus_string_append (dirname, "/");
2422   else
2423     return _dbus_string_copy_len (filename, 0, sep - 0,
2424                                   dirname, _dbus_string_get_length (dirname));
2425 }
2426
2427 /**
2428  * Checks whether the filename is an absolute path
2429  *
2430  * @param filename the filename
2431  * @returns #TRUE if an absolute path
2432  */
2433 dbus_bool_t
2434 _dbus_path_is_absolute (const DBusString *filename)
2435 {
2436   if (_dbus_string_get_length (filename) > 0)
2437     return _dbus_string_get_byte (filename, 0) == '/';
2438   else
2439     return FALSE;
2440 }
2441
2442 struct DBusDirIter
2443 {
2444   DIR *d;
2445   
2446 };
2447
2448 /**
2449  * Open a directory to iterate over.
2450  *
2451  * @param filename the directory name
2452  * @param error exception return object or #NULL
2453  * @returns new iterator, or #NULL on error
2454  */
2455 DBusDirIter*
2456 _dbus_directory_open (const DBusString *filename,
2457                       DBusError        *error)
2458 {
2459   DIR *d;
2460   DBusDirIter *iter;
2461   const char *filename_c;
2462
2463   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2464   
2465   filename_c = _dbus_string_get_const_data (filename);
2466
2467   d = opendir (filename_c);
2468   if (d == NULL)
2469     {
2470       dbus_set_error (error, _dbus_error_from_errno (errno),
2471                       "Failed to read directory \"%s\": %s",
2472                       filename_c,
2473                       _dbus_strerror (errno));
2474       return NULL;
2475     }
2476   iter = dbus_new0 (DBusDirIter, 1);
2477   if (iter == NULL)
2478     {
2479       closedir (d);
2480       dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
2481                       "Could not allocate memory for directory iterator");
2482       return NULL;
2483     }
2484
2485   iter->d = d;
2486
2487   return iter;
2488 }
2489
2490 /**
2491  * Get next file in the directory. Will not return "." or ".."  on
2492  * UNIX. If an error occurs, the contents of "filename" are
2493  * undefined. The error is never set if the function succeeds.
2494  *
2495  * @todo for thread safety, I think we have to use
2496  * readdir_r(). (GLib has the same issue, should file a bug.)
2497  *
2498  * @param iter the iterator
2499  * @param filename string to be set to the next file in the dir
2500  * @param error return location for error
2501  * @returns #TRUE if filename was filled in with a new filename
2502  */
2503 dbus_bool_t
2504 _dbus_directory_get_next_file (DBusDirIter      *iter,
2505                                DBusString       *filename,
2506                                DBusError        *error)
2507 {
2508   struct dirent *ent;
2509
2510   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2511   
2512  again:
2513   errno = 0;
2514   ent = readdir (iter->d);
2515   if (ent == NULL)
2516     {
2517       if (errno != 0)
2518         dbus_set_error (error,
2519                         _dbus_error_from_errno (errno),
2520                         "%s", _dbus_strerror (errno));
2521       return FALSE;
2522     }
2523   else if (ent->d_name[0] == '.' &&
2524            (ent->d_name[1] == '\0' ||
2525             (ent->d_name[1] == '.' && ent->d_name[2] == '\0')))
2526     goto again;
2527   else
2528     {
2529       _dbus_string_set_length (filename, 0);
2530       if (!_dbus_string_append (filename, ent->d_name))
2531         {
2532           dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
2533                           "No memory to read directory entry");
2534           return FALSE;
2535         }
2536       else
2537         return TRUE;
2538     }
2539 }
2540
2541 /**
2542  * Closes a directory iteration.
2543  */
2544 void
2545 _dbus_directory_close (DBusDirIter *iter)
2546 {
2547   closedir (iter->d);
2548   dbus_free (iter);
2549 }
2550
2551 static dbus_bool_t
2552 pseudorandom_generate_random_bytes (DBusString *str,
2553                                     int         n_bytes)
2554 {
2555   int old_len;
2556   unsigned long tv_usec;
2557   int i;
2558   
2559   old_len = _dbus_string_get_length (str);
2560
2561   /* fall back to pseudorandom */
2562   _dbus_verbose ("Falling back to pseudorandom for %d bytes\n",
2563                  n_bytes);
2564   
2565   _dbus_get_current_time (NULL, &tv_usec);
2566   srand (tv_usec);
2567   
2568   i = 0;
2569   while (i < n_bytes)
2570     {
2571       double r;
2572       unsigned int b;
2573           
2574       r = rand ();
2575       b = (r / (double) RAND_MAX) * 255.0;
2576           
2577       if (!_dbus_string_append_byte (str, b))
2578         goto failed;
2579           
2580       ++i;
2581     }
2582
2583   return TRUE;
2584
2585  failed:
2586   _dbus_string_set_length (str, old_len);
2587   return FALSE;
2588 }
2589
2590 /**
2591  * Generates the given number of random bytes,
2592  * using the best mechanism we can come up with.
2593  *
2594  * @param str the string
2595  * @param n_bytes the number of random bytes to append to string
2596  * @returns #TRUE on success, #FALSE if no memory
2597  */
2598 dbus_bool_t
2599 _dbus_generate_random_bytes (DBusString *str,
2600                              int         n_bytes)
2601 {
2602   int old_len;
2603   int fd;
2604
2605   /* FALSE return means "no memory", if it could
2606    * mean something else then we'd need to return
2607    * a DBusError. So we always fall back to pseudorandom
2608    * if the I/O fails.
2609    */
2610   
2611   old_len = _dbus_string_get_length (str);
2612   fd = -1;
2613
2614   /* note, urandom on linux will fall back to pseudorandom */
2615   fd = open ("/dev/urandom", O_RDONLY);
2616   if (fd < 0)
2617     return pseudorandom_generate_random_bytes (str, n_bytes);
2618
2619   if (_dbus_read (fd, str, n_bytes) != n_bytes)
2620     {
2621       close (fd);
2622       _dbus_string_set_length (str, old_len);
2623       return pseudorandom_generate_random_bytes (str, n_bytes);
2624     }
2625
2626   _dbus_verbose ("Read %d bytes from /dev/urandom\n",
2627                  n_bytes);
2628   
2629   close (fd);
2630   
2631   return TRUE;
2632 }
2633
2634 /**
2635  * Generates the given number of random bytes, where the bytes are
2636  * chosen from the alphanumeric ASCII subset.
2637  *
2638  * @param str the string
2639  * @param n_bytes the number of random ASCII bytes to append to string
2640  * @returns #TRUE on success, #FALSE if no memory or other failure
2641  */
2642 dbus_bool_t
2643 _dbus_generate_random_ascii (DBusString *str,
2644                              int         n_bytes)
2645 {
2646   static const char letters[] =
2647     "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
2648   int i;
2649   int len;
2650   
2651   if (!_dbus_generate_random_bytes (str, n_bytes))
2652     return FALSE;
2653   
2654   len = _dbus_string_get_length (str);
2655   i = len - n_bytes;
2656   while (i < len)
2657     {
2658       _dbus_string_set_byte (str, i,
2659                              letters[_dbus_string_get_byte (str, i) %
2660                                      (sizeof (letters) - 1)]);
2661
2662       ++i;
2663     }
2664
2665   _dbus_assert (_dbus_string_validate_ascii (str, len - n_bytes,
2666                                              n_bytes));
2667
2668   return TRUE;
2669 }
2670
2671 /**
2672  * A wrapper around strerror() because some platforms
2673  * may be lame and not have strerror().
2674  *
2675  * @param error_number errno.
2676  * @returns error description.
2677  */
2678 const char*
2679 _dbus_strerror (int error_number)
2680 {
2681   const char *msg;
2682   
2683   msg = strerror (error_number);
2684   if (msg == NULL)
2685     msg = "unknown";
2686
2687   return msg;
2688 }
2689
2690 /**
2691  * signal (SIGPIPE, SIG_IGN);
2692  */
2693 void
2694 _dbus_disable_sigpipe (void)
2695 {
2696   signal (SIGPIPE, SIG_IGN);
2697 }
2698
2699 /**
2700  * Sets the file descriptor to be close
2701  * on exec. Should be called for all file
2702  * descriptors in D-BUS code.
2703  *
2704  * @param fd the file descriptor
2705  */
2706 void
2707 _dbus_fd_set_close_on_exec (int fd)
2708 {
2709   int val;
2710   
2711   val = fcntl (fd, F_GETFD, 0);
2712   
2713   if (val < 0)
2714     return;
2715
2716   val |= FD_CLOEXEC;
2717   
2718   fcntl (fd, F_SETFD, val);
2719 }
2720
2721 /**
2722  * Converts a UNIX errno into a #DBusError name.
2723  *
2724  * @todo should cover more errnos, specifically those
2725  * from open().
2726  * 
2727  * @param error_number the errno.
2728  * @returns an error name
2729  */
2730 const char*
2731 _dbus_error_from_errno (int error_number)
2732 {
2733   switch (error_number)
2734     {
2735     case 0:
2736       return DBUS_ERROR_FAILED;
2737       
2738 #ifdef EPROTONOSUPPORT
2739     case EPROTONOSUPPORT:
2740       return DBUS_ERROR_NOT_SUPPORTED;
2741 #endif
2742 #ifdef EAFNOSUPPORT
2743     case EAFNOSUPPORT:
2744       return DBUS_ERROR_NOT_SUPPORTED;
2745 #endif
2746 #ifdef ENFILE
2747     case ENFILE:
2748       return DBUS_ERROR_LIMITS_EXCEEDED; /* kernel out of memory */
2749 #endif
2750 #ifdef EMFILE
2751     case EMFILE:
2752       return DBUS_ERROR_LIMITS_EXCEEDED;
2753 #endif
2754 #ifdef EACCES
2755     case EACCES:
2756       return DBUS_ERROR_ACCESS_DENIED;
2757 #endif
2758 #ifdef EPERM
2759     case EPERM:
2760       return DBUS_ERROR_ACCESS_DENIED;
2761 #endif
2762 #ifdef ENOBUFS
2763     case ENOBUFS:
2764       return DBUS_ERROR_NO_MEMORY;
2765 #endif
2766 #ifdef ENOMEM
2767     case ENOMEM:
2768       return DBUS_ERROR_NO_MEMORY;
2769 #endif
2770 #ifdef EINVAL
2771     case EINVAL:
2772       return DBUS_ERROR_FAILED;
2773 #endif
2774 #ifdef EBADF
2775     case EBADF:
2776       return DBUS_ERROR_FAILED;
2777 #endif
2778 #ifdef EFAULT
2779     case EFAULT:
2780       return DBUS_ERROR_FAILED;
2781 #endif
2782 #ifdef ENOTSOCK
2783     case ENOTSOCK:
2784       return DBUS_ERROR_FAILED;
2785 #endif
2786 #ifdef EISCONN
2787     case EISCONN:
2788       return DBUS_ERROR_FAILED;
2789 #endif
2790 #ifdef ECONNREFUSED
2791     case ECONNREFUSED:
2792       return DBUS_ERROR_NO_SERVER;
2793 #endif
2794 #ifdef ETIMEDOUT
2795     case ETIMEDOUT:
2796       return DBUS_ERROR_TIMEOUT;
2797 #endif
2798 #ifdef ENETUNREACH
2799     case ENETUNREACH:
2800       return DBUS_ERROR_NO_NETWORK;
2801 #endif
2802 #ifdef EADDRINUSE
2803     case EADDRINUSE:
2804       return DBUS_ERROR_ADDRESS_IN_USE;
2805 #endif
2806 #ifdef EEXIST
2807     case EEXIST:
2808       return DBUS_ERROR_FILE_NOT_FOUND;
2809 #endif
2810 #ifdef ENOENT
2811     case ENOENT:
2812       return DBUS_ERROR_FILE_NOT_FOUND;
2813 #endif
2814     }
2815
2816   return DBUS_ERROR_FAILED;
2817 }
2818
2819 /**
2820  * Exit the process, returning the given value.
2821  *
2822  * @param code the exit code
2823  */
2824 void
2825 _dbus_exit (int code)
2826 {
2827   _exit (code);
2828 }
2829
2830 /**
2831  * stat() wrapper.
2832  *
2833  * @param filename the filename to stat
2834  * @param statbuf the stat info to fill in
2835  * @param error return location for error
2836  * @returns #FALSE if error was set
2837  */
2838 dbus_bool_t
2839 _dbus_stat (const DBusString *filename,
2840             DBusStat         *statbuf,
2841             DBusError        *error)
2842 {
2843   const char *filename_c;
2844   struct stat sb;
2845
2846   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2847   
2848   filename_c = _dbus_string_get_const_data (filename);
2849
2850   if (stat (filename_c, &sb) < 0)
2851     {
2852       dbus_set_error (error, _dbus_error_from_errno (errno),
2853                       "%s", _dbus_strerror (errno));
2854       return FALSE;
2855     }
2856
2857   statbuf->mode = sb.st_mode;
2858   statbuf->nlink = sb.st_nlink;
2859   statbuf->uid = sb.st_uid;
2860   statbuf->gid = sb.st_gid;
2861   statbuf->size = sb.st_size;
2862   statbuf->atime = sb.st_atime;
2863   statbuf->mtime = sb.st_mtime;
2864   statbuf->ctime = sb.st_ctime;
2865
2866   return TRUE;
2867 }
2868
2869 /**
2870  * Creates a full-duplex pipe (as in socketpair()).
2871  * Sets both ends of the pipe nonblocking.
2872  *
2873  * @param fd1 return location for one end
2874  * @param fd2 return location for the other end
2875  * @param blocking #TRUE if pipe should be blocking
2876  * @param error error return
2877  * @returns #FALSE on failure (if error is set)
2878  */
2879 dbus_bool_t
2880 _dbus_full_duplex_pipe (int        *fd1,
2881                         int        *fd2,
2882                         dbus_bool_t blocking,
2883                         DBusError  *error)
2884 {
2885 #ifdef HAVE_SOCKETPAIR
2886   int fds[2];
2887
2888   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2889   
2890   if (socketpair (AF_UNIX, SOCK_STREAM, 0, fds) < 0)
2891     {
2892       dbus_set_error (error, _dbus_error_from_errno (errno),
2893                       "Could not create full-duplex pipe");
2894       return FALSE;
2895     }
2896
2897   if (!blocking &&
2898       (!_dbus_set_fd_nonblocking (fds[0], NULL) ||
2899        !_dbus_set_fd_nonblocking (fds[1], NULL)))
2900     {
2901       dbus_set_error (error, _dbus_error_from_errno (errno),
2902                       "Could not set full-duplex pipe nonblocking");
2903       
2904       close (fds[0]);
2905       close (fds[1]);
2906       
2907       return FALSE;
2908     }
2909   
2910   *fd1 = fds[0];
2911   *fd2 = fds[1];
2912   
2913   return TRUE;  
2914 #else
2915   _dbus_warn ("_dbus_full_duplex_pipe() not implemented on this OS\n");
2916   dbus_set_error (error, DBUS_ERROR_FAILED,
2917                   "_dbus_full_duplex_pipe() not implemented on this OS");
2918   return FALSE;
2919 #endif
2920 }
2921
2922 /**
2923  * Closes a file descriptor.
2924  *
2925  * @param fd the file descriptor
2926  * @param error error object
2927  * @returns #FALSE if error set
2928  */
2929 dbus_bool_t
2930 _dbus_close (int        fd,
2931              DBusError *error)
2932 {
2933   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2934   
2935  again:
2936   if (close (fd) < 0)
2937     {
2938       if (errno == EINTR)
2939         goto again;
2940
2941       dbus_set_error (error, _dbus_error_from_errno (errno),
2942                       "Could not close fd %d", fd);
2943       return FALSE;
2944     }
2945
2946   return TRUE;
2947 }
2948
2949 /**
2950  * Sets a file descriptor to be nonblocking.
2951  *
2952  * @param fd the file descriptor.
2953  * @param error address of error location.
2954  * @returns #TRUE on success.
2955  */
2956 dbus_bool_t
2957 _dbus_set_fd_nonblocking (int             fd,
2958                           DBusError      *error)
2959 {
2960   int val;
2961
2962   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2963   
2964   val = fcntl (fd, F_GETFL, 0);
2965   if (val < 0)
2966     {
2967       dbus_set_error (error, _dbus_error_from_errno (errno),
2968                       "Failed to get flags from file descriptor %d: %s",
2969                       fd, _dbus_strerror (errno));
2970       _dbus_verbose ("Failed to get flags for fd %d: %s\n", fd,
2971                      _dbus_strerror (errno));
2972       return FALSE;
2973     }
2974
2975   if (fcntl (fd, F_SETFL, val | O_NONBLOCK) < 0)
2976     {
2977       dbus_set_error (error, _dbus_error_from_errno (errno),
2978                       "Failed to set nonblocking flag of file descriptor %d: %s",
2979                       fd, _dbus_strerror (errno));
2980       _dbus_verbose ("Failed to set fd %d nonblocking: %s\n",
2981                      fd, _dbus_strerror (errno));
2982
2983       return FALSE;
2984     }
2985
2986   return TRUE;
2987 }
2988
2989 /**
2990  * On GNU libc systems, print a crude backtrace to the verbose log.
2991  * On other systems, print "no backtrace support"
2992  *
2993  */
2994 void
2995 _dbus_print_backtrace (void)
2996 {
2997 #if defined (HAVE_BACKTRACE) && defined (DBUS_ENABLE_VERBOSE_MODE)
2998   void *bt[500];
2999   int bt_size;
3000   int i;
3001   char **syms;
3002   
3003   bt_size = backtrace (bt, 500);
3004
3005   syms = backtrace_symbols (bt, bt_size);
3006   
3007   i = 0;
3008   while (i < bt_size)
3009     {
3010       _dbus_verbose ("  %s\n", syms[i]);
3011       ++i;
3012     }
3013
3014   free (syms);
3015 #else
3016   _dbus_verbose ("  D-BUS not compiled with backtrace support\n");
3017 #endif
3018 }
3019
3020 /**
3021  * Does the chdir, fork, setsid, etc. to become a daemon process.
3022  *
3023  * @param pidfile #NULL, or pidfile to create
3024  * @param error return location for errors
3025  * @returns #FALSE on failure
3026  */
3027 dbus_bool_t
3028 _dbus_become_daemon (const DBusString *pidfile,
3029                      DBusError        *error)
3030 {
3031   const char *s;
3032   pid_t child_pid;
3033
3034   if (chdir ("/") < 0)
3035     {
3036       dbus_set_error (error, DBUS_ERROR_FAILED,
3037                       "Could not chdir() to root directory");
3038       return FALSE;
3039     }
3040
3041   switch ((child_pid = fork ()))
3042     {
3043     case -1:
3044       dbus_set_error (error, _dbus_error_from_errno (errno),
3045                       "Failed to fork daemon: %s", _dbus_strerror (errno));
3046       return FALSE;
3047       break;
3048
3049     case 0:
3050       s = _dbus_getenv ("DBUS_DEBUG_OUTPUT");
3051       if (s == NULL || *s == '\0')
3052         {
3053           int dev_null_fd;
3054
3055           /* silently ignore failures here, if someone
3056            * doesn't have /dev/null we may as well try
3057            * to continue anyhow
3058            */
3059
3060           dev_null_fd = open ("/dev/null", O_RDWR);
3061           if (dev_null_fd >= 0)
3062             {
3063               dup2 (dev_null_fd, 0);
3064               dup2 (dev_null_fd, 1);
3065               dup2 (dev_null_fd, 2);
3066             }
3067         }
3068
3069       /* Get a predictable umask */
3070       umask (022);
3071       break;
3072
3073     default:
3074       if (pidfile)
3075         {
3076           if (!_dbus_write_pid_file (pidfile,
3077                                      child_pid,
3078                                      error))
3079             {
3080               kill (child_pid, SIGTERM);
3081               return FALSE;
3082             }
3083         }
3084       _exit (0);
3085       break;
3086     }
3087
3088   if (setsid () == -1)
3089     _dbus_assert_not_reached ("setsid() failed");
3090   
3091   return TRUE;
3092 }
3093
3094 /**
3095  * Creates a file containing the process ID.
3096  *
3097  * @param filename the filename to write to
3098  * @param pid our process ID
3099  * @param error return location for errors
3100  * @returns #FALSE on failure
3101  */
3102 dbus_bool_t
3103 _dbus_write_pid_file (const DBusString *filename,
3104                       unsigned long     pid,
3105                       DBusError        *error)
3106 {
3107   const char *cfilename;
3108   int fd;
3109   FILE *f;
3110
3111   cfilename = _dbus_string_get_const_data (filename);
3112   
3113   fd = open (cfilename, O_WRONLY|O_CREAT|O_EXCL|O_BINARY, 0644);
3114   
3115   if (fd < 0)
3116     {
3117       dbus_set_error (error, _dbus_error_from_errno (errno),
3118                       "Failed to open \"%s\": %s", cfilename,
3119                       _dbus_strerror (errno));
3120       return FALSE;
3121     }
3122
3123   if ((f = fdopen (fd, "w")) == NULL)
3124     {
3125       dbus_set_error (error, _dbus_error_from_errno (errno),
3126                       "Failed to fdopen fd %d: %s", fd, _dbus_strerror (errno));
3127       close (fd);
3128       return FALSE;
3129     }
3130   
3131   if (fprintf (f, "%lu\n", pid) < 0)
3132     {
3133       dbus_set_error (error, _dbus_error_from_errno (errno),
3134                       "Failed to write to \"%s\": %s", cfilename,
3135                       _dbus_strerror (errno));
3136       return FALSE;
3137     }
3138
3139   if (fclose (f) == EOF)
3140     {
3141       dbus_set_error (error, _dbus_error_from_errno (errno),
3142                       "Failed to close \"%s\": %s", cfilename,
3143                       _dbus_strerror (errno));
3144       return FALSE;
3145     }
3146   
3147   return TRUE;
3148 }
3149
3150 /**
3151  * Changes the user and group the bus is running as.
3152  *
3153  * @param uid the new user ID
3154  * @param gid the new group ID
3155  * @param error return location for errors
3156  * @returns #FALSE on failure
3157  */
3158 dbus_bool_t
3159 _dbus_change_identity  (dbus_uid_t     uid,
3160                         dbus_gid_t     gid,
3161                         DBusError     *error)
3162 {
3163   /* Set GID first, or the setuid may remove our permission
3164    * to change the GID
3165    */
3166   if (setgid (gid) < 0)
3167     {
3168       dbus_set_error (error, _dbus_error_from_errno (errno),
3169                       "Failed to set GID to %lu: %s", gid,
3170                       _dbus_strerror (errno));
3171       return FALSE;
3172     }
3173   
3174   if (setuid (uid) < 0)
3175     {
3176       dbus_set_error (error, _dbus_error_from_errno (errno),
3177                       "Failed to set UID to %lu: %s", uid,
3178                       _dbus_strerror (errno));
3179       return FALSE;
3180     }
3181   
3182   return TRUE;
3183 }
3184
3185 /** Installs a UNIX signal handler
3186  *
3187  * @param sig the signal to handle
3188  * @param handler the handler
3189  */
3190 void
3191 _dbus_set_signal_handler (int               sig,
3192                           DBusSignalHandler handler)
3193 {
3194   struct sigaction act;
3195   sigset_t empty_mask;
3196   
3197   sigemptyset (&empty_mask);
3198   act.sa_handler = handler;
3199   act.sa_mask    = empty_mask;
3200   act.sa_flags   = 0;
3201   sigaction (sig,  &act, 0);
3202 }
3203
3204
3205 #ifdef DBUS_BUILD_TESTS
3206 #include <stdlib.h>
3207 static void
3208 check_dirname (const char *filename,
3209                const char *dirname)
3210 {
3211   DBusString f, d;
3212   
3213   _dbus_string_init_const (&f, filename);
3214
3215   if (!_dbus_string_init (&d))
3216     _dbus_assert_not_reached ("no memory");
3217
3218   if (!_dbus_string_get_dirname (&f, &d))
3219     _dbus_assert_not_reached ("no memory");
3220
3221   if (!_dbus_string_equal_c_str (&d, dirname))
3222     {
3223       _dbus_warn ("For filename \"%s\" got dirname \"%s\" and expected \"%s\"\n",
3224                   filename,
3225                   _dbus_string_get_const_data (&d),
3226                   dirname);
3227       exit (1);
3228     }
3229
3230   _dbus_string_free (&d);
3231 }
3232
3233 static void
3234 check_path_absolute (const char *path,
3235                      dbus_bool_t expected)
3236 {
3237   DBusString p;
3238
3239   _dbus_string_init_const (&p, path);
3240
3241   if (_dbus_path_is_absolute (&p) != expected)
3242     {
3243       _dbus_warn ("For path \"%s\" expected absolute = %d got %d\n",
3244                   path, expected, _dbus_path_is_absolute (&p));
3245       exit (1);
3246     }
3247 }
3248
3249 /**
3250  * Unit test for dbus-sysdeps.c.
3251  * 
3252  * @returns #TRUE on success.
3253  */
3254 dbus_bool_t
3255 _dbus_sysdeps_test (void)
3256 {
3257   DBusString str;
3258   double val;
3259   int pos;
3260   
3261   check_dirname ("foo", ".");
3262   check_dirname ("foo/bar", "foo");
3263   check_dirname ("foo//bar", "foo");
3264   check_dirname ("foo///bar", "foo");
3265   check_dirname ("foo/bar/", "foo");
3266   check_dirname ("foo//bar/", "foo");
3267   check_dirname ("foo///bar/", "foo");
3268   check_dirname ("foo/bar//", "foo");
3269   check_dirname ("foo//bar////", "foo");
3270   check_dirname ("foo///bar///////", "foo");
3271   check_dirname ("/foo", "/");
3272   check_dirname ("////foo", "/");
3273   check_dirname ("/foo/bar", "/foo");
3274   check_dirname ("/foo//bar", "/foo");
3275   check_dirname ("/foo///bar", "/foo");
3276   check_dirname ("/", "/");
3277   check_dirname ("///", "/");
3278   check_dirname ("", ".");  
3279
3280
3281   _dbus_string_init_const (&str, "3.5");
3282   if (!_dbus_string_parse_double (&str,
3283                                   0, &val, &pos))
3284     {
3285       _dbus_warn ("Failed to parse double");
3286       exit (1);
3287     }
3288   if (val != 3.5)
3289     {
3290       _dbus_warn ("Failed to parse 3.5 correctly, got: %f", val);
3291       exit (1);
3292     }
3293   if (pos != 3)
3294     {
3295       _dbus_warn ("_dbus_string_parse_double of \"3.5\" returned wrong position %d", pos);
3296       exit (1);
3297     }
3298
3299   check_path_absolute ("/", TRUE);
3300   check_path_absolute ("/foo", TRUE);
3301   check_path_absolute ("", FALSE);
3302   check_path_absolute ("foo", FALSE);
3303   check_path_absolute ("foo/bar", FALSE);
3304   
3305   return TRUE;
3306 }
3307 #endif /* DBUS_BUILD_TESTS */
3308
3309 /** @} end of sysdeps */
3310