Merge remote-tracking branch 'alban/own_prefix2'
[platform/upstream/dbus.git] / dbus / dbus-sysdeps-unix.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-sysdeps-unix.c Wrappers around UNIX system/libc features (internal to D-Bus implementation)
3  *
4  * Copyright (C) 2002, 2003, 2006  Red Hat, Inc.
5  * Copyright (C) 2003 CodeFactory AB
6  *
7  * Licensed under the Academic Free License version 2.1
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #include <config.h>
26
27 #include "dbus-internals.h"
28 #include "dbus-sysdeps.h"
29 #include "dbus-sysdeps-unix.h"
30 #include "dbus-threads.h"
31 #include "dbus-protocol.h"
32 #include "dbus-transport.h"
33 #include "dbus-string.h"
34 #include "dbus-userdb.h"
35 #include "dbus-list.h"
36 #include "dbus-credentials.h"
37 #include "dbus-nonce.h"
38
39 #include <sys/types.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <signal.h>
43 #include <unistd.h>
44 #include <stdio.h>
45 #include <fcntl.h>
46 #include <sys/socket.h>
47 #include <dirent.h>
48 #include <sys/un.h>
49 #include <pwd.h>
50 #include <time.h>
51 #include <locale.h>
52 #include <sys/time.h>
53 #include <sys/stat.h>
54 #include <sys/wait.h>
55 #include <netinet/in.h>
56 #include <netdb.h>
57 #include <grp.h>
58
59 #ifdef HAVE_ERRNO_H
60 #include <errno.h>
61 #endif
62 #ifdef HAVE_WRITEV
63 #include <sys/uio.h>
64 #endif
65 #ifdef HAVE_POLL
66 #include <sys/poll.h>
67 #endif
68 #ifdef HAVE_BACKTRACE
69 #include <execinfo.h>
70 #endif
71 #ifdef HAVE_GETPEERUCRED
72 #include <ucred.h>
73 #endif
74
75 #ifdef HAVE_ADT
76 #include <bsm/adt.h>
77 #endif
78
79 #include "sd-daemon.h"
80
81 #ifndef O_BINARY
82 #define O_BINARY 0
83 #endif
84
85 #ifndef AI_ADDRCONFIG
86 #define AI_ADDRCONFIG 0
87 #endif
88
89 #ifndef HAVE_SOCKLEN_T
90 #define socklen_t int
91 #endif
92
93 #if defined (__sun) || defined (__sun__)
94 /*
95  * CMS_SPACE etc. definitions for Solaris < 10, based on
96  *   http://mailman.videolan.org/pipermail/vlc-devel/2006-May/024402.html
97  * via
98  *   http://wiki.opencsw.org/porting-faq#toc10
99  *
100  * These are only redefined for Solaris, for now: if your OS needs these too,
101  * please file a bug. (Or preferably, improve your OS so they're not needed.)
102  */
103
104 # ifndef CMSG_ALIGN
105 #   ifdef __sun__
106 #     define CMSG_ALIGN(len) _CMSG_DATA_ALIGN (len)
107 #   else
108       /* aligning to sizeof (long) is assumed to be portable (fd.o#40235) */
109 #     define CMSG_ALIGN(len) (((len) + sizeof (long) - 1) & \
110                               ~(sizeof (long) - 1))
111 #   endif
112 # endif
113
114 # ifndef CMSG_SPACE
115 #   define CMSG_SPACE(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + \
116                             CMSG_ALIGN (len))
117 # endif
118
119 # ifndef CMSG_LEN
120 #   define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
121 # endif
122
123 #endif /* Solaris */
124
125 static dbus_bool_t
126 _dbus_open_socket (int              *fd_p,
127                    int               domain,
128                    int               type,
129                    int               protocol,
130                    DBusError        *error)
131 {
132 #ifdef SOCK_CLOEXEC
133   dbus_bool_t cloexec_done;
134
135   *fd_p = socket (domain, type | SOCK_CLOEXEC, protocol);
136   cloexec_done = *fd_p >= 0;
137
138   /* Check if kernel seems to be too old to know SOCK_CLOEXEC */
139   if (*fd_p < 0 && errno == EINVAL)
140 #endif
141     {
142       *fd_p = socket (domain, type, protocol);
143     }
144
145   if (*fd_p >= 0)
146     {
147 #ifdef SOCK_CLOEXEC
148       if (!cloexec_done)
149 #endif
150         {
151           _dbus_fd_set_close_on_exec(*fd_p);
152         }
153
154       _dbus_verbose ("socket fd %d opened\n", *fd_p);
155       return TRUE;
156     }
157   else
158     {
159       dbus_set_error(error,
160                      _dbus_error_from_errno (errno),
161                      "Failed to open socket: %s",
162                      _dbus_strerror (errno));
163       return FALSE;
164     }
165 }
166
167 /**
168  * Opens a UNIX domain socket (as in the socket() call).
169  * Does not bind the socket.
170  *
171  * This will set FD_CLOEXEC for the socket returned
172  *
173  * @param fd return location for socket descriptor
174  * @param error return location for an error
175  * @returns #FALSE if error is set
176  */
177 static dbus_bool_t
178 _dbus_open_unix_socket (int              *fd,
179                         DBusError        *error)
180 {
181   return _dbus_open_socket(fd, PF_UNIX, SOCK_STREAM, 0, error);
182 }
183
184 /**
185  * Closes a socket. Should not be used on non-socket
186  * file descriptors or handles.
187  *
188  * @param fd the socket
189  * @param error return location for an error
190  * @returns #FALSE if error is set
191  */
192 dbus_bool_t
193 _dbus_close_socket (int               fd,
194                     DBusError        *error)
195 {
196   return _dbus_close (fd, error);
197 }
198
199 /**
200  * Like _dbus_read(), but only works on sockets so is
201  * available on Windows.
202  *
203  * @param fd the socket
204  * @param buffer string to append data to
205  * @param count max amount of data to read
206  * @returns number of bytes appended to the string
207  */
208 int
209 _dbus_read_socket (int               fd,
210                    DBusString       *buffer,
211                    int               count)
212 {
213   return _dbus_read (fd, buffer, count);
214 }
215
216 /**
217  * Like _dbus_write(), but only supports sockets
218  * and is thus available on Windows.
219  *
220  * @param fd the file descriptor to write
221  * @param buffer the buffer to write data from
222  * @param start the first byte in the buffer to write
223  * @param len the number of bytes to try to write
224  * @returns the number of bytes written or -1 on error
225  */
226 int
227 _dbus_write_socket (int               fd,
228                     const DBusString *buffer,
229                     int               start,
230                     int               len)
231 {
232 #if HAVE_DECL_MSG_NOSIGNAL
233   const char *data;
234   int bytes_written;
235
236   data = _dbus_string_get_const_data_len (buffer, start, len);
237
238  again:
239
240   bytes_written = send (fd, data, len, MSG_NOSIGNAL);
241
242   if (bytes_written < 0 && errno == EINTR)
243     goto again;
244
245   return bytes_written;
246
247 #else
248   return _dbus_write (fd, buffer, start, len);
249 #endif
250 }
251
252 /**
253  * Like _dbus_read_socket() but also tries to read unix fds from the
254  * socket. When there are more fds to read than space in the array
255  * passed this function will fail with ENOSPC.
256  *
257  * @param fd the socket
258  * @param buffer string to append data to
259  * @param count max amount of data to read
260  * @param fds array to place read file descriptors in
261  * @param n_fds on input space in fds array, on output how many fds actually got read
262  * @returns number of bytes appended to string
263  */
264 int
265 _dbus_read_socket_with_unix_fds (int               fd,
266                                  DBusString       *buffer,
267                                  int               count,
268                                  int              *fds,
269                                  int              *n_fds) {
270 #ifndef HAVE_UNIX_FD_PASSING
271   int r;
272
273   if ((r = _dbus_read_socket(fd, buffer, count)) < 0)
274     return r;
275
276   *n_fds = 0;
277   return r;
278
279 #else
280   int bytes_read;
281   int start;
282   struct msghdr m;
283   struct iovec iov;
284
285   _dbus_assert (count >= 0);
286   _dbus_assert (*n_fds >= 0);
287
288   start = _dbus_string_get_length (buffer);
289
290   if (!_dbus_string_lengthen (buffer, count))
291     {
292       errno = ENOMEM;
293       return -1;
294     }
295
296   _DBUS_ZERO(iov);
297   iov.iov_base = _dbus_string_get_data_len (buffer, start, count);
298   iov.iov_len = count;
299
300   _DBUS_ZERO(m);
301   m.msg_iov = &iov;
302   m.msg_iovlen = 1;
303
304   /* Hmm, we have no clue how long the control data will actually be
305      that is queued for us. The least we can do is assume that the
306      caller knows. Hence let's make space for the number of fds that
307      we shall read at max plus the cmsg header. */
308   m.msg_controllen = CMSG_SPACE(*n_fds * sizeof(int));
309
310   /* It's probably safe to assume that systems with SCM_RIGHTS also
311      know alloca() */
312   m.msg_control = alloca(m.msg_controllen);
313   memset(m.msg_control, 0, m.msg_controllen);
314
315  again:
316
317   bytes_read = recvmsg(fd, &m, 0
318 #ifdef MSG_CMSG_CLOEXEC
319                        |MSG_CMSG_CLOEXEC
320 #endif
321                        );
322
323   if (bytes_read < 0)
324     {
325       if (errno == EINTR)
326         goto again;
327       else
328         {
329           /* put length back (note that this doesn't actually realloc anything) */
330           _dbus_string_set_length (buffer, start);
331           return -1;
332         }
333     }
334   else
335     {
336       struct cmsghdr *cm;
337       dbus_bool_t found = FALSE;
338
339       if (m.msg_flags & MSG_CTRUNC)
340         {
341           /* Hmm, apparently the control data was truncated. The bad
342              thing is that we might have completely lost a couple of fds
343              without chance to recover them. Hence let's treat this as a
344              serious error. */
345
346           errno = ENOSPC;
347           _dbus_string_set_length (buffer, start);
348           return -1;
349         }
350
351       for (cm = CMSG_FIRSTHDR(&m); cm; cm = CMSG_NXTHDR(&m, cm))
352         if (cm->cmsg_level == SOL_SOCKET && cm->cmsg_type == SCM_RIGHTS)
353           {
354             unsigned i;
355
356             _dbus_assert(cm->cmsg_len <= CMSG_LEN(*n_fds * sizeof(int)));
357             *n_fds = (cm->cmsg_len - CMSG_LEN(0)) / sizeof(int);
358
359             memcpy(fds, CMSG_DATA(cm), *n_fds * sizeof(int));
360             found = TRUE;
361
362             /* Linux doesn't tell us whether MSG_CMSG_CLOEXEC actually
363                worked, hence we need to go through this list and set
364                CLOEXEC everywhere in any case */
365             for (i = 0; i < *n_fds; i++)
366               _dbus_fd_set_close_on_exec(fds[i]);
367
368             break;
369           }
370
371       if (!found)
372         *n_fds = 0;
373
374       /* put length back (doesn't actually realloc) */
375       _dbus_string_set_length (buffer, start + bytes_read);
376
377 #if 0
378       if (bytes_read > 0)
379         _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
380 #endif
381
382       return bytes_read;
383     }
384 #endif
385 }
386
387 int
388 _dbus_write_socket_with_unix_fds(int               fd,
389                                  const DBusString *buffer,
390                                  int               start,
391                                  int               len,
392                                  const int        *fds,
393                                  int               n_fds) {
394
395 #ifndef HAVE_UNIX_FD_PASSING
396
397   if (n_fds > 0) {
398     errno = ENOTSUP;
399     return -1;
400   }
401
402   return _dbus_write_socket(fd, buffer, start, len);
403 #else
404   return _dbus_write_socket_with_unix_fds_two(fd, buffer, start, len, NULL, 0, 0, fds, n_fds);
405 #endif
406 }
407
408 int
409 _dbus_write_socket_with_unix_fds_two(int               fd,
410                                      const DBusString *buffer1,
411                                      int               start1,
412                                      int               len1,
413                                      const DBusString *buffer2,
414                                      int               start2,
415                                      int               len2,
416                                      const int        *fds,
417                                      int               n_fds) {
418
419 #ifndef HAVE_UNIX_FD_PASSING
420
421   if (n_fds > 0) {
422     errno = ENOTSUP;
423     return -1;
424   }
425
426   return _dbus_write_socket_two(fd,
427                                 buffer1, start1, len1,
428                                 buffer2, start2, len2);
429 #else
430
431   struct msghdr m;
432   struct cmsghdr *cm;
433   struct iovec iov[2];
434   int bytes_written;
435
436   _dbus_assert (len1 >= 0);
437   _dbus_assert (len2 >= 0);
438   _dbus_assert (n_fds >= 0);
439
440   _DBUS_ZERO(iov);
441   iov[0].iov_base = (char*) _dbus_string_get_const_data_len (buffer1, start1, len1);
442   iov[0].iov_len = len1;
443
444   if (buffer2)
445     {
446       iov[1].iov_base = (char*) _dbus_string_get_const_data_len (buffer2, start2, len2);
447       iov[1].iov_len = len2;
448     }
449
450   _DBUS_ZERO(m);
451   m.msg_iov = iov;
452   m.msg_iovlen = buffer2 ? 2 : 1;
453
454   if (n_fds > 0)
455     {
456       m.msg_controllen = CMSG_SPACE(n_fds * sizeof(int));
457       m.msg_control = alloca(m.msg_controllen);
458       memset(m.msg_control, 0, m.msg_controllen);
459
460       cm = CMSG_FIRSTHDR(&m);
461       cm->cmsg_level = SOL_SOCKET;
462       cm->cmsg_type = SCM_RIGHTS;
463       cm->cmsg_len = CMSG_LEN(n_fds * sizeof(int));
464       memcpy(CMSG_DATA(cm), fds, n_fds * sizeof(int));
465     }
466
467  again:
468
469   bytes_written = sendmsg (fd, &m, 0
470 #if HAVE_DECL_MSG_NOSIGNAL
471                            |MSG_NOSIGNAL
472 #endif
473                            );
474
475   if (bytes_written < 0 && errno == EINTR)
476     goto again;
477
478 #if 0
479   if (bytes_written > 0)
480     _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
481 #endif
482
483   return bytes_written;
484 #endif
485 }
486
487 /**
488  * Like _dbus_write_two() but only works on sockets and is thus
489  * available on Windows.
490  *
491  * @param fd the file descriptor
492  * @param buffer1 first buffer
493  * @param start1 first byte to write in first buffer
494  * @param len1 number of bytes to write from first buffer
495  * @param buffer2 second buffer, or #NULL
496  * @param start2 first byte to write in second buffer
497  * @param len2 number of bytes to write in second buffer
498  * @returns total bytes written from both buffers, or -1 on error
499  */
500 int
501 _dbus_write_socket_two (int               fd,
502                         const DBusString *buffer1,
503                         int               start1,
504                         int               len1,
505                         const DBusString *buffer2,
506                         int               start2,
507                         int               len2)
508 {
509 #if HAVE_DECL_MSG_NOSIGNAL
510   struct iovec vectors[2];
511   const char *data1;
512   const char *data2;
513   int bytes_written;
514   struct msghdr m;
515
516   _dbus_assert (buffer1 != NULL);
517   _dbus_assert (start1 >= 0);
518   _dbus_assert (start2 >= 0);
519   _dbus_assert (len1 >= 0);
520   _dbus_assert (len2 >= 0);
521
522   data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
523
524   if (buffer2 != NULL)
525     data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
526   else
527     {
528       data2 = NULL;
529       start2 = 0;
530       len2 = 0;
531     }
532
533   vectors[0].iov_base = (char*) data1;
534   vectors[0].iov_len = len1;
535   vectors[1].iov_base = (char*) data2;
536   vectors[1].iov_len = len2;
537
538   _DBUS_ZERO(m);
539   m.msg_iov = vectors;
540   m.msg_iovlen = data2 ? 2 : 1;
541
542  again:
543
544   bytes_written = sendmsg (fd, &m, MSG_NOSIGNAL);
545
546   if (bytes_written < 0 && errno == EINTR)
547     goto again;
548
549   return bytes_written;
550
551 #else
552   return _dbus_write_two (fd, buffer1, start1, len1,
553                           buffer2, start2, len2);
554 #endif
555 }
556
557 dbus_bool_t
558 _dbus_socket_is_invalid (int fd)
559 {
560     return fd < 0 ? TRUE : FALSE;
561 }
562
563 /**
564  * Thin wrapper around the read() system call that appends
565  * the data it reads to the DBusString buffer. It appends
566  * up to the given count, and returns the same value
567  * and same errno as read(). The only exception is that
568  * _dbus_read() handles EINTR for you. Also, _dbus_read() can
569  * return ENOMEM, even though regular UNIX read doesn't.
570  *
571  * Unlike _dbus_read_socket(), _dbus_read() is not available
572  * on Windows.
573  *
574  * @param fd the file descriptor to read from
575  * @param buffer the buffer to append data to
576  * @param count the amount of data to read
577  * @returns the number of bytes read or -1
578  */
579 int
580 _dbus_read (int               fd,
581             DBusString       *buffer,
582             int               count)
583 {
584   int bytes_read;
585   int start;
586   char *data;
587
588   _dbus_assert (count >= 0);
589
590   start = _dbus_string_get_length (buffer);
591
592   if (!_dbus_string_lengthen (buffer, count))
593     {
594       errno = ENOMEM;
595       return -1;
596     }
597
598   data = _dbus_string_get_data_len (buffer, start, count);
599
600  again:
601
602   bytes_read = read (fd, data, count);
603
604   if (bytes_read < 0)
605     {
606       if (errno == EINTR)
607         goto again;
608       else
609         {
610           /* put length back (note that this doesn't actually realloc anything) */
611           _dbus_string_set_length (buffer, start);
612           return -1;
613         }
614     }
615   else
616     {
617       /* put length back (doesn't actually realloc) */
618       _dbus_string_set_length (buffer, start + bytes_read);
619
620 #if 0
621       if (bytes_read > 0)
622         _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
623 #endif
624
625       return bytes_read;
626     }
627 }
628
629 /**
630  * Thin wrapper around the write() system call that writes a part of a
631  * DBusString and handles EINTR for you.
632  *
633  * @param fd the file descriptor to write
634  * @param buffer the buffer to write data from
635  * @param start the first byte in the buffer to write
636  * @param len the number of bytes to try to write
637  * @returns the number of bytes written or -1 on error
638  */
639 int
640 _dbus_write (int               fd,
641              const DBusString *buffer,
642              int               start,
643              int               len)
644 {
645   const char *data;
646   int bytes_written;
647
648   data = _dbus_string_get_const_data_len (buffer, start, len);
649
650  again:
651
652   bytes_written = write (fd, data, len);
653
654   if (bytes_written < 0 && errno == EINTR)
655     goto again;
656
657 #if 0
658   if (bytes_written > 0)
659     _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
660 #endif
661
662   return bytes_written;
663 }
664
665 /**
666  * Like _dbus_write() but will use writev() if possible
667  * to write both buffers in sequence. The return value
668  * is the number of bytes written in the first buffer,
669  * plus the number written in the second. If the first
670  * buffer is written successfully and an error occurs
671  * writing the second, the number of bytes in the first
672  * is returned (i.e. the error is ignored), on systems that
673  * don't have writev. Handles EINTR for you.
674  * The second buffer may be #NULL.
675  *
676  * @param fd the file descriptor
677  * @param buffer1 first buffer
678  * @param start1 first byte to write in first buffer
679  * @param len1 number of bytes to write from first buffer
680  * @param buffer2 second buffer, or #NULL
681  * @param start2 first byte to write in second buffer
682  * @param len2 number of bytes to write in second buffer
683  * @returns total bytes written from both buffers, or -1 on error
684  */
685 int
686 _dbus_write_two (int               fd,
687                  const DBusString *buffer1,
688                  int               start1,
689                  int               len1,
690                  const DBusString *buffer2,
691                  int               start2,
692                  int               len2)
693 {
694   _dbus_assert (buffer1 != NULL);
695   _dbus_assert (start1 >= 0);
696   _dbus_assert (start2 >= 0);
697   _dbus_assert (len1 >= 0);
698   _dbus_assert (len2 >= 0);
699
700 #ifdef HAVE_WRITEV
701   {
702     struct iovec vectors[2];
703     const char *data1;
704     const char *data2;
705     int bytes_written;
706
707     data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
708
709     if (buffer2 != NULL)
710       data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
711     else
712       {
713         data2 = NULL;
714         start2 = 0;
715         len2 = 0;
716       }
717
718     vectors[0].iov_base = (char*) data1;
719     vectors[0].iov_len = len1;
720     vectors[1].iov_base = (char*) data2;
721     vectors[1].iov_len = len2;
722
723   again:
724
725     bytes_written = writev (fd,
726                             vectors,
727                             data2 ? 2 : 1);
728
729     if (bytes_written < 0 && errno == EINTR)
730       goto again;
731
732     return bytes_written;
733   }
734 #else /* HAVE_WRITEV */
735   {
736     int ret1;
737
738     ret1 = _dbus_write (fd, buffer1, start1, len1);
739     if (ret1 == len1 && buffer2 != NULL)
740       {
741         ret2 = _dbus_write (fd, buffer2, start2, len2);
742         if (ret2 < 0)
743           ret2 = 0; /* we can't report an error as the first write was OK */
744
745         return ret1 + ret2;
746       }
747     else
748       return ret1;
749   }
750 #endif /* !HAVE_WRITEV */
751 }
752
753 #define _DBUS_MAX_SUN_PATH_LENGTH 99
754
755 /**
756  * @def _DBUS_MAX_SUN_PATH_LENGTH
757  *
758  * Maximum length of the path to a UNIX domain socket,
759  * sockaddr_un::sun_path member. POSIX requires that all systems
760  * support at least 100 bytes here, including the nul termination.
761  * We use 99 for the max value to allow for the nul.
762  *
763  * We could probably also do sizeof (addr.sun_path)
764  * but this way we are the same on all platforms
765  * which is probably a good idea.
766  */
767
768 /**
769  * Creates a socket and connects it to the UNIX domain socket at the
770  * given path.  The connection fd is returned, and is set up as
771  * nonblocking.
772  *
773  * Uses abstract sockets instead of filesystem-linked sockets if
774  * requested (it's possible only on Linux; see "man 7 unix" on Linux).
775  * On non-Linux abstract socket usage always fails.
776  *
777  * This will set FD_CLOEXEC for the socket returned.
778  *
779  * @param path the path to UNIX domain socket
780  * @param abstract #TRUE to use abstract namespace
781  * @param error return location for error code
782  * @returns connection file descriptor or -1 on error
783  */
784 int
785 _dbus_connect_unix_socket (const char     *path,
786                            dbus_bool_t     abstract,
787                            DBusError      *error)
788 {
789   int fd;
790   size_t path_len;
791   struct sockaddr_un addr;
792
793   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
794
795   _dbus_verbose ("connecting to unix socket %s abstract=%d\n",
796                  path, abstract);
797
798
799   if (!_dbus_open_unix_socket (&fd, error))
800     {
801       _DBUS_ASSERT_ERROR_IS_SET(error);
802       return -1;
803     }
804   _DBUS_ASSERT_ERROR_IS_CLEAR(error);
805
806   _DBUS_ZERO (addr);
807   addr.sun_family = AF_UNIX;
808   path_len = strlen (path);
809
810   if (abstract)
811     {
812 #ifdef HAVE_ABSTRACT_SOCKETS
813       addr.sun_path[0] = '\0'; /* this is what says "use abstract" */
814       path_len++; /* Account for the extra nul byte added to the start of sun_path */
815
816       if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
817         {
818           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
819                       "Abstract socket name too long\n");
820           _dbus_close (fd, NULL);
821           return -1;
822         }
823
824       strncpy (&addr.sun_path[1], path, path_len);
825       /* _dbus_verbose_bytes (addr.sun_path, sizeof (addr.sun_path)); */
826 #else /* HAVE_ABSTRACT_SOCKETS */
827       dbus_set_error (error, DBUS_ERROR_NOT_SUPPORTED,
828                       "Operating system does not support abstract socket namespace\n");
829       _dbus_close (fd, NULL);
830       return -1;
831 #endif /* ! HAVE_ABSTRACT_SOCKETS */
832     }
833   else
834     {
835       if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
836         {
837           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
838                       "Socket name too long\n");
839           _dbus_close (fd, NULL);
840           return -1;
841         }
842
843       strncpy (addr.sun_path, path, path_len);
844     }
845
846   if (connect (fd, (struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (struct sockaddr_un, sun_path) + path_len) < 0)
847     {
848       dbus_set_error (error,
849                       _dbus_error_from_errno (errno),
850                       "Failed to connect to socket %s: %s",
851                       path, _dbus_strerror (errno));
852
853       _dbus_close (fd, NULL);
854       return -1;
855     }
856
857   if (!_dbus_set_fd_nonblocking (fd, error))
858     {
859       _DBUS_ASSERT_ERROR_IS_SET (error);
860
861       _dbus_close (fd, NULL);
862       return -1;
863     }
864
865   return fd;
866 }
867
868 /**
869  * Creates a UNIX domain socket and connects it to the specified
870  * process to execute.
871  *
872  * This will set FD_CLOEXEC for the socket returned.
873  *
874  * @param path the path to the executable
875  * @param argv the argument list for the process to execute.
876  * argv[0] typically is identical to the path of the executable
877  * @param error return location for error code
878  * @returns connection file descriptor or -1 on error
879  */
880 int
881 _dbus_connect_exec (const char     *path,
882                     char *const    argv[],
883                     DBusError      *error)
884 {
885   int fds[2];
886   pid_t pid;
887
888   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
889
890   _dbus_verbose ("connecting to process %s\n", path);
891
892   if (socketpair (AF_UNIX, SOCK_STREAM
893 #ifdef SOCK_CLOEXEC
894                   |SOCK_CLOEXEC
895 #endif
896                   , 0, fds) < 0)
897     {
898       dbus_set_error (error,
899                       _dbus_error_from_errno (errno),
900                       "Failed to create socket pair: %s",
901                       _dbus_strerror (errno));
902       return -1;
903     }
904
905   _dbus_fd_set_close_on_exec (fds[0]);
906   _dbus_fd_set_close_on_exec (fds[1]);
907
908   pid = fork ();
909   if (pid < 0)
910     {
911       dbus_set_error (error,
912                       _dbus_error_from_errno (errno),
913                       "Failed to fork() to call %s: %s",
914                       path, _dbus_strerror (errno));
915       close (fds[0]);
916       close (fds[1]);
917       return -1;
918     }
919
920   if (pid == 0)
921     {
922       /* child */
923       close (fds[0]);
924
925       dup2 (fds[1], STDIN_FILENO);
926       dup2 (fds[1], STDOUT_FILENO);
927
928       if (fds[1] != STDIN_FILENO &&
929           fds[1] != STDOUT_FILENO)
930         close (fds[1]);
931
932       /* Inherit STDERR and the controlling terminal from the
933          parent */
934
935       _dbus_close_all ();
936
937       execvp (path, argv);
938
939       fprintf (stderr, "Failed to execute process %s: %s\n", path, _dbus_strerror (errno));
940
941       _exit(1);
942     }
943
944   /* parent */
945   close (fds[1]);
946
947   if (!_dbus_set_fd_nonblocking (fds[0], error))
948     {
949       _DBUS_ASSERT_ERROR_IS_SET (error);
950
951       close (fds[0]);
952       return -1;
953     }
954
955   return fds[0];
956 }
957
958 /**
959  * Enables or disables the reception of credentials on the given socket during
960  * the next message transmission.  This is only effective if the #LOCAL_CREDS
961  * system feature exists, in which case the other side of the connection does
962  * not have to do anything special to send the credentials.
963  *
964  * @param fd socket on which to change the #LOCAL_CREDS flag.
965  * @param on whether to enable or disable the #LOCAL_CREDS flag.
966  */
967 static dbus_bool_t
968 _dbus_set_local_creds (int fd, dbus_bool_t on)
969 {
970   dbus_bool_t retval = TRUE;
971
972 #if defined(HAVE_CMSGCRED)
973   /* NOOP just to make sure only one codepath is used
974    *      and to prefer CMSGCRED
975    */
976 #elif defined(LOCAL_CREDS)
977   int val = on ? 1 : 0;
978   if (setsockopt (fd, 0, LOCAL_CREDS, &val, sizeof (val)) < 0)
979     {
980       _dbus_verbose ("Unable to set LOCAL_CREDS socket option on fd %d\n", fd);
981       retval = FALSE;
982     }
983   else
984     _dbus_verbose ("LOCAL_CREDS %s for further messages on fd %d\n",
985                    on ? "enabled" : "disabled", fd);
986 #endif
987
988   return retval;
989 }
990
991 /**
992  * Creates a socket and binds it to the given path,
993  * then listens on the socket. The socket is
994  * set to be nonblocking.
995  *
996  * Uses abstract sockets instead of filesystem-linked
997  * sockets if requested (it's possible only on Linux;
998  * see "man 7 unix" on Linux).
999  * On non-Linux abstract socket usage always fails.
1000  *
1001  * This will set FD_CLOEXEC for the socket returned
1002  *
1003  * @param path the socket name
1004  * @param abstract #TRUE to use abstract namespace
1005  * @param error return location for errors
1006  * @returns the listening file descriptor or -1 on error
1007  */
1008 int
1009 _dbus_listen_unix_socket (const char     *path,
1010                           dbus_bool_t     abstract,
1011                           DBusError      *error)
1012 {
1013   int listen_fd;
1014   struct sockaddr_un addr;
1015   size_t path_len;
1016   unsigned int reuseaddr;
1017
1018   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1019
1020   _dbus_verbose ("listening on unix socket %s abstract=%d\n",
1021                  path, abstract);
1022
1023   if (!_dbus_open_unix_socket (&listen_fd, error))
1024     {
1025       _DBUS_ASSERT_ERROR_IS_SET(error);
1026       return -1;
1027     }
1028   _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1029
1030   _DBUS_ZERO (addr);
1031   addr.sun_family = AF_UNIX;
1032   path_len = strlen (path);
1033
1034   if (abstract)
1035     {
1036 #ifdef HAVE_ABSTRACT_SOCKETS
1037       /* remember that abstract names aren't nul-terminated so we rely
1038        * on sun_path being filled in with zeroes above.
1039        */
1040       addr.sun_path[0] = '\0'; /* this is what says "use abstract" */
1041       path_len++; /* Account for the extra nul byte added to the start of sun_path */
1042
1043       if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1044         {
1045           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
1046                       "Abstract socket name too long\n");
1047           _dbus_close (listen_fd, NULL);
1048           return -1;
1049         }
1050
1051       strncpy (&addr.sun_path[1], path, path_len);
1052       /* _dbus_verbose_bytes (addr.sun_path, sizeof (addr.sun_path)); */
1053 #else /* HAVE_ABSTRACT_SOCKETS */
1054       dbus_set_error (error, DBUS_ERROR_NOT_SUPPORTED,
1055                       "Operating system does not support abstract socket namespace\n");
1056       _dbus_close (listen_fd, NULL);
1057       return -1;
1058 #endif /* ! HAVE_ABSTRACT_SOCKETS */
1059     }
1060   else
1061     {
1062       /* Discussed security implications of this with Nalin,
1063        * and we couldn't think of where it would kick our ass, but
1064        * it still seems a bit sucky. It also has non-security suckage;
1065        * really we'd prefer to exit if the socket is already in use.
1066        * But there doesn't seem to be a good way to do this.
1067        *
1068        * Just to be extra careful, I threw in the stat() - clearly
1069        * the stat() can't *fix* any security issue, but it at least
1070        * avoids inadvertent/accidental data loss.
1071        */
1072       {
1073         struct stat sb;
1074
1075         if (stat (path, &sb) == 0 &&
1076             S_ISSOCK (sb.st_mode))
1077           unlink (path);
1078       }
1079
1080       if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1081         {
1082           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
1083                       "Abstract socket name too long\n");
1084           _dbus_close (listen_fd, NULL);
1085           return -1;
1086         }
1087
1088       strncpy (addr.sun_path, path, path_len);
1089     }
1090
1091   reuseaddr = 1;
1092   if (setsockopt  (listen_fd, SOL_SOCKET, SO_REUSEADDR, &reuseaddr, sizeof(reuseaddr))==-1)
1093     {
1094       _dbus_warn ("Failed to set socket option\"%s\": %s",
1095                   path, _dbus_strerror (errno));
1096     }
1097
1098   if (bind (listen_fd, (struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (struct sockaddr_un, sun_path) + path_len) < 0)
1099     {
1100       dbus_set_error (error, _dbus_error_from_errno (errno),
1101                       "Failed to bind socket \"%s\": %s",
1102                       path, _dbus_strerror (errno));
1103       _dbus_close (listen_fd, NULL);
1104       return -1;
1105     }
1106
1107   if (listen (listen_fd, 30 /* backlog */) < 0)
1108     {
1109       dbus_set_error (error, _dbus_error_from_errno (errno),
1110                       "Failed to listen on socket \"%s\": %s",
1111                       path, _dbus_strerror (errno));
1112       _dbus_close (listen_fd, NULL);
1113       return -1;
1114     }
1115
1116   if (!_dbus_set_local_creds (listen_fd, TRUE))
1117     {
1118       dbus_set_error (error, _dbus_error_from_errno (errno),
1119                       "Failed to enable LOCAL_CREDS on socket \"%s\": %s",
1120                       path, _dbus_strerror (errno));
1121       close (listen_fd);
1122       return -1;
1123     }
1124
1125   if (!_dbus_set_fd_nonblocking (listen_fd, error))
1126     {
1127       _DBUS_ASSERT_ERROR_IS_SET (error);
1128       _dbus_close (listen_fd, NULL);
1129       return -1;
1130     }
1131
1132   /* Try opening up the permissions, but if we can't, just go ahead
1133    * and continue, maybe it will be good enough.
1134    */
1135   if (!abstract && chmod (path, 0777) < 0)
1136     _dbus_warn ("Could not set mode 0777 on socket %s\n",
1137                 path);
1138
1139   return listen_fd;
1140 }
1141
1142 /**
1143  * Acquires one or more sockets passed in from systemd. The sockets
1144  * are set to be nonblocking.
1145  *
1146  * This will set FD_CLOEXEC for the sockets returned.
1147  *
1148  * @oaram fds the file descriptors
1149  * @param error return location for errors
1150  * @returns the number of file descriptors
1151  */
1152 int
1153 _dbus_listen_systemd_sockets (int       **fds,
1154                               DBusError *error)
1155 {
1156   int r, n;
1157   unsigned fd;
1158   int *new_fds;
1159
1160   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1161
1162   n = sd_listen_fds (TRUE);
1163   if (n < 0)
1164     {
1165       dbus_set_error (error, _dbus_error_from_errno (-n),
1166                       "Failed to acquire systemd socket: %s",
1167                       _dbus_strerror (-n));
1168       return -1;
1169     }
1170
1171   if (n <= 0)
1172     {
1173       dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
1174                       "No socket received.");
1175       return -1;
1176     }
1177
1178   for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1179     {
1180       r = sd_is_socket (fd, AF_UNSPEC, SOCK_STREAM, 1);
1181       if (r < 0)
1182         {
1183           dbus_set_error (error, _dbus_error_from_errno (-r),
1184                           "Failed to verify systemd socket type: %s",
1185                           _dbus_strerror (-r));
1186           return -1;
1187         }
1188
1189       if (!r)
1190         {
1191           dbus_set_error (error, DBUS_ERROR_BAD_ADDRESS,
1192                           "Passed socket has wrong type.");
1193           return -1;
1194         }
1195     }
1196
1197   /* OK, the file descriptors are all good, so let's take posession of
1198      them then. */
1199
1200   new_fds = dbus_new (int, n);
1201   if (!new_fds)
1202     {
1203       dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
1204                       "Failed to allocate file handle array.");
1205       goto fail;
1206     }
1207
1208   for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1209     {
1210       if (!_dbus_set_local_creds (fd, TRUE))
1211         {
1212           dbus_set_error (error, _dbus_error_from_errno (errno),
1213                           "Failed to enable LOCAL_CREDS on systemd socket: %s",
1214                           _dbus_strerror (errno));
1215           goto fail;
1216         }
1217
1218       if (!_dbus_set_fd_nonblocking (fd, error))
1219         {
1220           _DBUS_ASSERT_ERROR_IS_SET (error);
1221           goto fail;
1222         }
1223
1224       new_fds[fd - SD_LISTEN_FDS_START] = fd;
1225     }
1226
1227   *fds = new_fds;
1228   return n;
1229
1230  fail:
1231
1232   for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1233     {
1234       _dbus_close (fd, NULL);
1235     }
1236
1237   dbus_free (new_fds);
1238   return -1;
1239 }
1240
1241 /**
1242  * Creates a socket and connects to a socket at the given host
1243  * and port. The connection fd is returned, and is set up as
1244  * nonblocking.
1245  *
1246  * This will set FD_CLOEXEC for the socket returned
1247  *
1248  * @param host the host name to connect to
1249  * @param port the port to connect to
1250  * @param family the address family to listen on, NULL for all
1251  * @param error return location for error code
1252  * @returns connection file descriptor or -1 on error
1253  */
1254 int
1255 _dbus_connect_tcp_socket (const char     *host,
1256                           const char     *port,
1257                           const char     *family,
1258                           DBusError      *error)
1259 {
1260     return _dbus_connect_tcp_socket_with_nonce (host, port, family, (const char*)NULL, error);
1261 }
1262
1263 int
1264 _dbus_connect_tcp_socket_with_nonce (const char     *host,
1265                                      const char     *port,
1266                                      const char     *family,
1267                                      const char     *noncefile,
1268                                      DBusError      *error)
1269 {
1270   int saved_errno = 0;
1271   int fd = -1, res;
1272   struct addrinfo hints;
1273   struct addrinfo *ai, *tmp;
1274
1275   _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1276
1277   _DBUS_ZERO (hints);
1278
1279   if (!family)
1280     hints.ai_family = AF_UNSPEC;
1281   else if (!strcmp(family, "ipv4"))
1282     hints.ai_family = AF_INET;
1283   else if (!strcmp(family, "ipv6"))
1284     hints.ai_family = AF_INET6;
1285   else
1286     {
1287       dbus_set_error (error,
1288                       DBUS_ERROR_BAD_ADDRESS,
1289                       "Unknown address family %s", family);
1290       return -1;
1291     }
1292   hints.ai_protocol = IPPROTO_TCP;
1293   hints.ai_socktype = SOCK_STREAM;
1294   hints.ai_flags = AI_ADDRCONFIG;
1295
1296   if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1297     {
1298       dbus_set_error (error,
1299                       _dbus_error_from_errno (errno),
1300                       "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1301                       host, port, gai_strerror(res), res);
1302       return -1;
1303     }
1304
1305   tmp = ai;
1306   while (tmp)
1307     {
1308       if (!_dbus_open_socket (&fd, tmp->ai_family, SOCK_STREAM, 0, error))
1309         {
1310           freeaddrinfo(ai);
1311           _DBUS_ASSERT_ERROR_IS_SET(error);
1312           return -1;
1313         }
1314       _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1315
1316       if (connect (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1317         {
1318           saved_errno = errno;
1319           _dbus_close(fd, NULL);
1320           fd = -1;
1321           tmp = tmp->ai_next;
1322           continue;
1323         }
1324
1325       break;
1326     }
1327   freeaddrinfo(ai);
1328
1329   if (fd == -1)
1330     {
1331       dbus_set_error (error,
1332                       _dbus_error_from_errno (saved_errno),
1333                       "Failed to connect to socket \"%s:%s\" %s",
1334                       host, port, _dbus_strerror(saved_errno));
1335       return -1;
1336     }
1337
1338   if (noncefile != NULL)
1339     {
1340       DBusString noncefileStr;
1341       dbus_bool_t ret;
1342       _dbus_string_init_const (&noncefileStr, noncefile);
1343       ret = _dbus_send_nonce (fd, &noncefileStr, error);
1344       _dbus_string_free (&noncefileStr);
1345
1346       if (!ret)
1347     {
1348       _dbus_close (fd, NULL);
1349           return -1;
1350         }
1351     }
1352
1353   if (!_dbus_set_fd_nonblocking (fd, error))
1354     {
1355       _dbus_close (fd, NULL);
1356       return -1;
1357     }
1358
1359   return fd;
1360 }
1361
1362 /**
1363  * Creates a socket and binds it to the given path, then listens on
1364  * the socket. The socket is set to be nonblocking.  In case of port=0
1365  * a random free port is used and returned in the port parameter.
1366  * If inaddr_any is specified, the hostname is ignored.
1367  *
1368  * This will set FD_CLOEXEC for the socket returned
1369  *
1370  * @param host the host name to listen on
1371  * @param port the port to listen on, if zero a free port will be used
1372  * @param family the address family to listen on, NULL for all
1373  * @param retport string to return the actual port listened on
1374  * @param fds_p location to store returned file descriptors
1375  * @param error return location for errors
1376  * @returns the number of listening file descriptors or -1 on error
1377  */
1378 int
1379 _dbus_listen_tcp_socket (const char     *host,
1380                          const char     *port,
1381                          const char     *family,
1382                          DBusString     *retport,
1383                          int           **fds_p,
1384                          DBusError      *error)
1385 {
1386   int saved_errno;
1387   int nlisten_fd = 0, *listen_fd = NULL, res, i;
1388   struct addrinfo hints;
1389   struct addrinfo *ai, *tmp;
1390   unsigned int reuseaddr;
1391
1392   *fds_p = NULL;
1393   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1394
1395   _DBUS_ZERO (hints);
1396
1397   if (!family)
1398     hints.ai_family = AF_UNSPEC;
1399   else if (!strcmp(family, "ipv4"))
1400     hints.ai_family = AF_INET;
1401   else if (!strcmp(family, "ipv6"))
1402     hints.ai_family = AF_INET6;
1403   else
1404     {
1405       dbus_set_error (error,
1406                       DBUS_ERROR_BAD_ADDRESS,
1407                       "Unknown address family %s", family);
1408       return -1;
1409     }
1410
1411   hints.ai_protocol = IPPROTO_TCP;
1412   hints.ai_socktype = SOCK_STREAM;
1413   hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1414
1415  redo_lookup_with_port:
1416   ai = NULL;
1417   if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1418     {
1419       dbus_set_error (error,
1420                       _dbus_error_from_errno (errno),
1421                       "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1422                       host ? host : "*", port, gai_strerror(res), res);
1423       goto failed;
1424     }
1425
1426   tmp = ai;
1427   while (tmp)
1428     {
1429       int fd = -1, *newlisten_fd;
1430       if (!_dbus_open_socket (&fd, tmp->ai_family, SOCK_STREAM, 0, error))
1431         {
1432           _DBUS_ASSERT_ERROR_IS_SET(error);
1433           goto failed;
1434         }
1435       _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1436
1437       reuseaddr = 1;
1438       if (setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &reuseaddr, sizeof(reuseaddr))==-1)
1439         {
1440           _dbus_warn ("Failed to set socket option \"%s:%s\": %s",
1441                       host ? host : "*", port, _dbus_strerror (errno));
1442         }
1443
1444       if (bind (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1445         {
1446           saved_errno = errno;
1447           _dbus_close(fd, NULL);
1448           if (saved_errno == EADDRINUSE)
1449             {
1450               /* Depending on kernel policy, it may or may not
1451                  be neccessary to bind to both IPv4 & 6 addresses
1452                  so ignore EADDRINUSE here */
1453               tmp = tmp->ai_next;
1454               continue;
1455             }
1456           dbus_set_error (error, _dbus_error_from_errno (saved_errno),
1457                           "Failed to bind socket \"%s:%s\": %s",
1458                           host ? host : "*", port, _dbus_strerror (saved_errno));
1459           goto failed;
1460         }
1461
1462       if (listen (fd, 30 /* backlog */) < 0)
1463         {
1464           saved_errno = errno;
1465           _dbus_close (fd, NULL);
1466           dbus_set_error (error, _dbus_error_from_errno (saved_errno),
1467                           "Failed to listen on socket \"%s:%s\": %s",
1468                           host ? host : "*", port, _dbus_strerror (saved_errno));
1469           goto failed;
1470         }
1471
1472       newlisten_fd = dbus_realloc(listen_fd, sizeof(int)*(nlisten_fd+1));
1473       if (!newlisten_fd)
1474         {
1475           saved_errno = errno;
1476           _dbus_close (fd, NULL);
1477           dbus_set_error (error, _dbus_error_from_errno (saved_errno),
1478                           "Failed to allocate file handle array: %s",
1479                           _dbus_strerror (saved_errno));
1480           goto failed;
1481         }
1482       listen_fd = newlisten_fd;
1483       listen_fd[nlisten_fd] = fd;
1484       nlisten_fd++;
1485
1486       if (!_dbus_string_get_length(retport))
1487         {
1488           /* If the user didn't specify a port, or used 0, then
1489              the kernel chooses a port. After the first address
1490              is bound to, we need to force all remaining addresses
1491              to use the same port */
1492           if (!port || !strcmp(port, "0"))
1493             {
1494               int result;
1495               struct sockaddr_storage addr;
1496               socklen_t addrlen;
1497               char portbuf[50];
1498
1499               addrlen = sizeof(addr);
1500               result = getsockname(fd, (struct sockaddr*) &addr, &addrlen);
1501
1502               if (result == -1 ||
1503                   (res = getnameinfo ((struct sockaddr*)&addr, addrlen, NULL, 0,
1504                                       portbuf, sizeof(portbuf),
1505                                       NI_NUMERICHOST)) != 0)
1506                 {
1507                   dbus_set_error (error, _dbus_error_from_errno (errno),
1508                                   "Failed to resolve port \"%s:%s\": %s (%s)",
1509                                   host ? host : "*", port, gai_strerror(res), res);
1510                   goto failed;
1511                 }
1512               if (!_dbus_string_append(retport, portbuf))
1513                 {
1514                   dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1515                   goto failed;
1516                 }
1517
1518               /* Release current address list & redo lookup */
1519               port = _dbus_string_get_const_data(retport);
1520               freeaddrinfo(ai);
1521               goto redo_lookup_with_port;
1522             }
1523           else
1524             {
1525               if (!_dbus_string_append(retport, port))
1526                 {
1527                     dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1528                     goto failed;
1529                 }
1530             }
1531         }
1532
1533       tmp = tmp->ai_next;
1534     }
1535   freeaddrinfo(ai);
1536   ai = NULL;
1537
1538   if (!nlisten_fd)
1539     {
1540       errno = EADDRINUSE;
1541       dbus_set_error (error, _dbus_error_from_errno (errno),
1542                       "Failed to bind socket \"%s:%s\": %s",
1543                       host ? host : "*", port, _dbus_strerror (errno));
1544       goto failed;
1545     }
1546
1547   for (i = 0 ; i < nlisten_fd ; i++)
1548     {
1549       if (!_dbus_set_fd_nonblocking (listen_fd[i], error))
1550         {
1551           goto failed;
1552         }
1553     }
1554
1555   *fds_p = listen_fd;
1556
1557   return nlisten_fd;
1558
1559  failed:
1560   if (ai)
1561     freeaddrinfo(ai);
1562   for (i = 0 ; i < nlisten_fd ; i++)
1563     _dbus_close(listen_fd[i], NULL);
1564   dbus_free(listen_fd);
1565   return -1;
1566 }
1567
1568 static dbus_bool_t
1569 write_credentials_byte (int             server_fd,
1570                         DBusError      *error)
1571 {
1572   int bytes_written;
1573   char buf[1] = { '\0' };
1574 #if defined(HAVE_CMSGCRED)
1575   union {
1576           struct cmsghdr hdr;
1577           char cred[CMSG_SPACE (sizeof (struct cmsgcred))];
1578   } cmsg;
1579   struct iovec iov;
1580   struct msghdr msg;
1581   iov.iov_base = buf;
1582   iov.iov_len = 1;
1583
1584   _DBUS_ZERO(msg);
1585   msg.msg_iov = &iov;
1586   msg.msg_iovlen = 1;
1587
1588   msg.msg_control = (caddr_t) &cmsg;
1589   msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred));
1590   _DBUS_ZERO(cmsg);
1591   cmsg.hdr.cmsg_len = CMSG_LEN (sizeof (struct cmsgcred));
1592   cmsg.hdr.cmsg_level = SOL_SOCKET;
1593   cmsg.hdr.cmsg_type = SCM_CREDS;
1594 #endif
1595
1596   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1597
1598  again:
1599
1600 #if defined(HAVE_CMSGCRED)
1601   bytes_written = sendmsg (server_fd, &msg, 0
1602 #if HAVE_DECL_MSG_NOSIGNAL
1603                            |MSG_NOSIGNAL
1604 #endif
1605                            );
1606 #else
1607   bytes_written = send (server_fd, buf, 1, 0
1608 #if HAVE_DECL_MSG_NOSIGNAL
1609                         |MSG_NOSIGNAL
1610 #endif
1611                         );
1612 #endif
1613
1614   if (bytes_written < 0 && errno == EINTR)
1615     goto again;
1616
1617   if (bytes_written < 0)
1618     {
1619       dbus_set_error (error, _dbus_error_from_errno (errno),
1620                       "Failed to write credentials byte: %s",
1621                      _dbus_strerror (errno));
1622       return FALSE;
1623     }
1624   else if (bytes_written == 0)
1625     {
1626       dbus_set_error (error, DBUS_ERROR_IO_ERROR,
1627                       "wrote zero bytes writing credentials byte");
1628       return FALSE;
1629     }
1630   else
1631     {
1632       _dbus_assert (bytes_written == 1);
1633       _dbus_verbose ("wrote credentials byte\n");
1634       return TRUE;
1635     }
1636 }
1637
1638 /**
1639  * Reads a single byte which must be nul (an error occurs otherwise),
1640  * and reads unix credentials if available. Clears the credentials
1641  * object, then adds pid/uid if available, so any previous credentials
1642  * stored in the object are lost.
1643  *
1644  * Return value indicates whether a byte was read, not whether
1645  * we got valid credentials. On some systems, such as Linux,
1646  * reading/writing the byte isn't actually required, but we do it
1647  * anyway just to avoid multiple codepaths.
1648  *
1649  * Fails if no byte is available, so you must select() first.
1650  *
1651  * The point of the byte is that on some systems we have to
1652  * use sendmsg()/recvmsg() to transmit credentials.
1653  *
1654  * @param client_fd the client file descriptor
1655  * @param credentials object to add client credentials to
1656  * @param error location to store error code
1657  * @returns #TRUE on success
1658  */
1659 dbus_bool_t
1660 _dbus_read_credentials_socket  (int              client_fd,
1661                                 DBusCredentials *credentials,
1662                                 DBusError       *error)
1663 {
1664   struct msghdr msg;
1665   struct iovec iov;
1666   char buf;
1667   dbus_uid_t uid_read;
1668   dbus_pid_t pid_read;
1669   int bytes_read;
1670
1671 #ifdef HAVE_CMSGCRED
1672   union {
1673     struct cmsghdr hdr;
1674     char cred[CMSG_SPACE (sizeof (struct cmsgcred))];
1675   } cmsg;
1676
1677 #elif defined(LOCAL_CREDS)
1678   struct {
1679     struct cmsghdr hdr;
1680     struct sockcred cred;
1681   } cmsg;
1682 #endif
1683
1684   uid_read = DBUS_UID_UNSET;
1685   pid_read = DBUS_PID_UNSET;
1686
1687   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1688
1689   /* The POSIX spec certainly doesn't promise this, but
1690    * we need these assertions to fail as soon as we're wrong about
1691    * it so we can do the porting fixups
1692    */
1693   _dbus_assert (sizeof (pid_t) <= sizeof (dbus_pid_t));
1694   _dbus_assert (sizeof (uid_t) <= sizeof (dbus_uid_t));
1695   _dbus_assert (sizeof (gid_t) <= sizeof (dbus_gid_t));
1696
1697   _dbus_credentials_clear (credentials);
1698
1699   /* Systems supporting LOCAL_CREDS are configured to have this feature
1700    * enabled (if it does not conflict with HAVE_CMSGCRED) prior accepting
1701    * the connection.  Therefore, the received message must carry the
1702    * credentials information without doing anything special.
1703    */
1704
1705   iov.iov_base = &buf;
1706   iov.iov_len = 1;
1707
1708   _DBUS_ZERO(msg);
1709   msg.msg_iov = &iov;
1710   msg.msg_iovlen = 1;
1711
1712 #if defined(HAVE_CMSGCRED) || defined(LOCAL_CREDS)
1713   _DBUS_ZERO(cmsg);
1714   msg.msg_control = (caddr_t) &cmsg;
1715   msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred));
1716 #endif
1717
1718  again:
1719   bytes_read = recvmsg (client_fd, &msg, 0);
1720
1721   if (bytes_read < 0)
1722     {
1723       if (errno == EINTR)
1724         goto again;
1725
1726       /* EAGAIN or EWOULDBLOCK would be unexpected here since we would
1727        * normally only call read_credentials if the socket was ready
1728        * for reading
1729        */
1730
1731       dbus_set_error (error, _dbus_error_from_errno (errno),
1732                       "Failed to read credentials byte: %s",
1733                       _dbus_strerror (errno));
1734       return FALSE;
1735     }
1736   else if (bytes_read == 0)
1737     {
1738       /* this should not happen unless we are using recvmsg wrong,
1739        * so is essentially here for paranoia
1740        */
1741       dbus_set_error (error, DBUS_ERROR_FAILED,
1742                       "Failed to read credentials byte (zero-length read)");
1743       return FALSE;
1744     }
1745   else if (buf != '\0')
1746     {
1747       dbus_set_error (error, DBUS_ERROR_FAILED,
1748                       "Credentials byte was not nul");
1749       return FALSE;
1750     }
1751
1752 #if defined(HAVE_CMSGCRED) || defined(LOCAL_CREDS)
1753   if (cmsg.hdr.cmsg_len < CMSG_LEN (sizeof (struct cmsgcred))
1754                   || cmsg.hdr.cmsg_type != SCM_CREDS)
1755     {
1756       dbus_set_error (error, DBUS_ERROR_FAILED,
1757                       "Message from recvmsg() was not SCM_CREDS");
1758       return FALSE;
1759     }
1760 #endif
1761
1762   _dbus_verbose ("read credentials byte\n");
1763
1764   {
1765 #ifdef SO_PEERCRED
1766 #ifdef __OpenBSD__
1767     struct sockpeercred cr;
1768 #else
1769     struct ucred cr;
1770 #endif
1771     int cr_len = sizeof (cr);
1772
1773     if (getsockopt (client_fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) == 0 &&
1774         cr_len == sizeof (cr))
1775       {
1776         pid_read = cr.pid;
1777         uid_read = cr.uid;
1778       }
1779     else
1780       {
1781         _dbus_verbose ("Failed to getsockopt() credentials, returned len %d/%d: %s\n",
1782                        cr_len, (int) sizeof (cr), _dbus_strerror (errno));
1783       }
1784 #elif defined(HAVE_CMSGCRED)
1785     struct cmsgcred *cred;
1786
1787     cred = (struct cmsgcred *) CMSG_DATA (&cmsg.hdr);
1788     pid_read = cred->cmcred_pid;
1789     uid_read = cred->cmcred_euid;
1790 #elif defined(LOCAL_CREDS)
1791     pid_read = DBUS_PID_UNSET;
1792     uid_read = cmsg.cred.sc_uid;
1793     /* Since we have already got the credentials from this socket, we can
1794      * disable its LOCAL_CREDS flag if it was ever set. */
1795     _dbus_set_local_creds (client_fd, FALSE);
1796 #elif defined(HAVE_GETPEEREID)
1797     uid_t euid;
1798     gid_t egid;
1799     if (getpeereid (client_fd, &euid, &egid) == 0)
1800       {
1801         uid_read = euid;
1802       }
1803     else
1804       {
1805         _dbus_verbose ("Failed to getpeereid() credentials: %s\n", _dbus_strerror (errno));
1806       }
1807 #elif defined(HAVE_GETPEERUCRED)
1808     ucred_t * ucred = NULL;
1809     if (getpeerucred (client_fd, &ucred) == 0)
1810       {
1811         pid_read = ucred_getpid (ucred);
1812         uid_read = ucred_geteuid (ucred);
1813 #ifdef HAVE_ADT
1814         /* generate audit session data based on socket ucred */
1815         adt_session_data_t *adth = NULL;
1816         adt_export_data_t *data = NULL;
1817         size_t size = 0;
1818         if (adt_start_session (&adth, NULL, 0) || (adth == NULL))
1819           {
1820             _dbus_verbose ("Failed to adt_start_session(): %s\n", _dbus_strerror (errno));
1821           }
1822         else
1823           {
1824             if (adt_set_from_ucred (adth, ucred, ADT_NEW))
1825               {
1826                 _dbus_verbose ("Failed to adt_set_from_ucred(): %s\n", _dbus_strerror (errno));
1827               }
1828             else
1829               {
1830                 size = adt_export_session_data (adth, &data);
1831                 if (size <= 0)
1832                   {
1833                     _dbus_verbose ("Failed to adt_export_session_data(): %s\n", _dbus_strerror (errno));
1834                   }
1835                 else
1836                   {
1837                     _dbus_credentials_add_adt_audit_data (credentials, data, size);
1838                     free (data);
1839                   }
1840               }
1841             (void) adt_end_session (adth);
1842           }
1843 #endif /* HAVE_ADT */
1844       }
1845     else
1846       {
1847         _dbus_verbose ("Failed to getpeerucred() credentials: %s\n", _dbus_strerror (errno));
1848       }
1849     if (ucred != NULL)
1850       ucred_free (ucred);
1851 #else /* !SO_PEERCRED && !HAVE_CMSGCRED && !HAVE_GETPEEREID && !HAVE_GETPEERUCRED */
1852     _dbus_verbose ("Socket credentials not supported on this OS\n");
1853 #endif
1854   }
1855
1856   _dbus_verbose ("Credentials:"
1857                  "  pid "DBUS_PID_FORMAT
1858                  "  uid "DBUS_UID_FORMAT
1859                  "\n",
1860                  pid_read,
1861                  uid_read);
1862
1863   if (pid_read != DBUS_PID_UNSET)
1864     {
1865       if (!_dbus_credentials_add_unix_pid (credentials, pid_read))
1866         {
1867           _DBUS_SET_OOM (error);
1868           return FALSE;
1869         }
1870     }
1871
1872   if (uid_read != DBUS_UID_UNSET)
1873     {
1874       if (!_dbus_credentials_add_unix_uid (credentials, uid_read))
1875         {
1876           _DBUS_SET_OOM (error);
1877           return FALSE;
1878         }
1879     }
1880
1881   return TRUE;
1882 }
1883
1884 /**
1885  * Sends a single nul byte with our UNIX credentials as ancillary
1886  * data.  Returns #TRUE if the data was successfully written.  On
1887  * systems that don't support sending credentials, just writes a byte,
1888  * doesn't send any credentials.  On some systems, such as Linux,
1889  * reading/writing the byte isn't actually required, but we do it
1890  * anyway just to avoid multiple codepaths.
1891  *
1892  * Fails if no byte can be written, so you must select() first.
1893  *
1894  * The point of the byte is that on some systems we have to
1895  * use sendmsg()/recvmsg() to transmit credentials.
1896  *
1897  * @param server_fd file descriptor for connection to server
1898  * @param error return location for error code
1899  * @returns #TRUE if the byte was sent
1900  */
1901 dbus_bool_t
1902 _dbus_send_credentials_socket  (int              server_fd,
1903                                 DBusError       *error)
1904 {
1905   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1906
1907   if (write_credentials_byte (server_fd, error))
1908     return TRUE;
1909   else
1910     return FALSE;
1911 }
1912
1913 /**
1914  * Accepts a connection on a listening socket.
1915  * Handles EINTR for you.
1916  *
1917  * This will enable FD_CLOEXEC for the returned socket.
1918  *
1919  * @param listen_fd the listen file descriptor
1920  * @returns the connection fd of the client, or -1 on error
1921  */
1922 int
1923 _dbus_accept  (int listen_fd)
1924 {
1925   int client_fd;
1926   struct sockaddr addr;
1927   socklen_t addrlen;
1928 #ifdef HAVE_ACCEPT4
1929   dbus_bool_t cloexec_done;
1930 #endif
1931
1932   addrlen = sizeof (addr);
1933
1934  retry:
1935
1936 #ifdef HAVE_ACCEPT4
1937   /* We assume that if accept4 is available SOCK_CLOEXEC is too */
1938   client_fd = accept4 (listen_fd, &addr, &addrlen, SOCK_CLOEXEC);
1939   cloexec_done = client_fd >= 0;
1940
1941   if (client_fd < 0 && errno == ENOSYS)
1942 #endif
1943     {
1944       client_fd = accept (listen_fd, &addr, &addrlen);
1945     }
1946
1947   if (client_fd < 0)
1948     {
1949       if (errno == EINTR)
1950         goto retry;
1951     }
1952
1953   _dbus_verbose ("client fd %d accepted\n", client_fd);
1954
1955 #ifdef HAVE_ACCEPT4
1956   if (!cloexec_done)
1957 #endif
1958     {
1959       _dbus_fd_set_close_on_exec(client_fd);
1960     }
1961
1962   return client_fd;
1963 }
1964
1965 /**
1966  * Checks to make sure the given directory is
1967  * private to the user
1968  *
1969  * @param dir the name of the directory
1970  * @param error error return
1971  * @returns #FALSE on failure
1972  **/
1973 dbus_bool_t
1974 _dbus_check_dir_is_private_to_user (DBusString *dir, DBusError *error)
1975 {
1976   const char *directory;
1977   struct stat sb;
1978
1979   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1980
1981   directory = _dbus_string_get_const_data (dir);
1982
1983   if (stat (directory, &sb) < 0)
1984     {
1985       dbus_set_error (error, _dbus_error_from_errno (errno),
1986                       "%s", _dbus_strerror (errno));
1987
1988       return FALSE;
1989     }
1990
1991   if ((S_IROTH & sb.st_mode) || (S_IWOTH & sb.st_mode) ||
1992       (S_IRGRP & sb.st_mode) || (S_IWGRP & sb.st_mode))
1993     {
1994       dbus_set_error (error, DBUS_ERROR_FAILED,
1995                      "%s directory is not private to the user", directory);
1996       return FALSE;
1997     }
1998
1999   return TRUE;
2000 }
2001
2002 static dbus_bool_t
2003 fill_user_info_from_passwd (struct passwd *p,
2004                             DBusUserInfo  *info,
2005                             DBusError     *error)
2006 {
2007   _dbus_assert (p->pw_name != NULL);
2008   _dbus_assert (p->pw_dir != NULL);
2009
2010   info->uid = p->pw_uid;
2011   info->primary_gid = p->pw_gid;
2012   info->username = _dbus_strdup (p->pw_name);
2013   info->homedir = _dbus_strdup (p->pw_dir);
2014
2015   if (info->username == NULL ||
2016       info->homedir == NULL)
2017     {
2018       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2019       return FALSE;
2020     }
2021
2022   return TRUE;
2023 }
2024
2025 static dbus_bool_t
2026 fill_user_info (DBusUserInfo       *info,
2027                 dbus_uid_t          uid,
2028                 const DBusString   *username,
2029                 DBusError          *error)
2030 {
2031   const char *username_c;
2032
2033   /* exactly one of username/uid provided */
2034   _dbus_assert (username != NULL || uid != DBUS_UID_UNSET);
2035   _dbus_assert (username == NULL || uid == DBUS_UID_UNSET);
2036
2037   info->uid = DBUS_UID_UNSET;
2038   info->primary_gid = DBUS_GID_UNSET;
2039   info->group_ids = NULL;
2040   info->n_group_ids = 0;
2041   info->username = NULL;
2042   info->homedir = NULL;
2043
2044   if (username != NULL)
2045     username_c = _dbus_string_get_const_data (username);
2046   else
2047     username_c = NULL;
2048
2049   /* For now assuming that the getpwnam() and getpwuid() flavors
2050    * are always symmetrical, if not we have to add more configure
2051    * checks
2052    */
2053
2054 #if defined (HAVE_POSIX_GETPWNAM_R) || defined (HAVE_NONPOSIX_GETPWNAM_R)
2055   {
2056     struct passwd *p;
2057     int result;
2058     size_t buflen;
2059     char *buf;
2060     struct passwd p_str;
2061
2062     /* retrieve maximum needed size for buf */
2063     buflen = sysconf (_SC_GETPW_R_SIZE_MAX);
2064
2065     /* sysconf actually returns a long, but everything else expects size_t,
2066      * so just recast here.
2067      * https://bugs.freedesktop.org/show_bug.cgi?id=17061
2068      */
2069     if ((long) buflen <= 0)
2070       buflen = 1024;
2071
2072     result = -1;
2073     while (1)
2074       {
2075         buf = dbus_malloc (buflen);
2076         if (buf == NULL)
2077           {
2078             dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2079             return FALSE;
2080           }
2081
2082         p = NULL;
2083 #ifdef HAVE_POSIX_GETPWNAM_R
2084         if (uid != DBUS_UID_UNSET)
2085           result = getpwuid_r (uid, &p_str, buf, buflen,
2086                                &p);
2087         else
2088           result = getpwnam_r (username_c, &p_str, buf, buflen,
2089                                &p);
2090 #else
2091         if (uid != DBUS_UID_UNSET)
2092           p = getpwuid_r (uid, &p_str, buf, buflen);
2093         else
2094           p = getpwnam_r (username_c, &p_str, buf, buflen);
2095         result = 0;
2096 #endif /* !HAVE_POSIX_GETPWNAM_R */
2097         //Try a bigger buffer if ERANGE was returned
2098         if (result == ERANGE && buflen < 512 * 1024)
2099           {
2100             dbus_free (buf);
2101             buflen *= 2;
2102           }
2103         else
2104           {
2105             break;
2106           }
2107       }
2108     if (result == 0 && p == &p_str)
2109       {
2110         if (!fill_user_info_from_passwd (p, info, error))
2111           {
2112             dbus_free (buf);
2113             return FALSE;
2114           }
2115         dbus_free (buf);
2116       }
2117     else
2118       {
2119         dbus_set_error (error, _dbus_error_from_errno (errno),
2120                         "User \"%s\" unknown or no memory to allocate password entry\n",
2121                         username_c ? username_c : "???");
2122         _dbus_verbose ("User %s unknown\n", username_c ? username_c : "???");
2123         dbus_free (buf);
2124         return FALSE;
2125       }
2126   }
2127 #else /* ! HAVE_GETPWNAM_R */
2128   {
2129     /* I guess we're screwed on thread safety here */
2130     struct passwd *p;
2131
2132     if (uid != DBUS_UID_UNSET)
2133       p = getpwuid (uid);
2134     else
2135       p = getpwnam (username_c);
2136
2137     if (p != NULL)
2138       {
2139         if (!fill_user_info_from_passwd (p, info, error))
2140           {
2141             return FALSE;
2142           }
2143       }
2144     else
2145       {
2146         dbus_set_error (error, _dbus_error_from_errno (errno),
2147                         "User \"%s\" unknown or no memory to allocate password entry\n",
2148                         username_c ? username_c : "???");
2149         _dbus_verbose ("User %s unknown\n", username_c ? username_c : "???");
2150         return FALSE;
2151       }
2152   }
2153 #endif  /* ! HAVE_GETPWNAM_R */
2154
2155   /* Fill this in so we can use it to get groups */
2156   username_c = info->username;
2157
2158 #ifdef HAVE_GETGROUPLIST
2159   {
2160     gid_t *buf;
2161     int buf_count;
2162     int i;
2163     int initial_buf_count;
2164
2165     initial_buf_count = 17;
2166     buf_count = initial_buf_count;
2167     buf = dbus_new (gid_t, buf_count);
2168     if (buf == NULL)
2169       {
2170         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2171         goto failed;
2172       }
2173
2174     if (getgrouplist (username_c,
2175                       info->primary_gid,
2176                       buf, &buf_count) < 0)
2177       {
2178         gid_t *new;
2179         /* Presumed cause of negative return code: buf has insufficient
2180            entries to hold the entire group list. The Linux behavior in this
2181            case is to pass back the actual number of groups in buf_count, but
2182            on Mac OS X 10.5, buf_count is unhelpfully left alone.
2183            So as a hack, try to help out a bit by guessing a larger
2184            number of groups, within reason.. might still fail, of course,
2185            but we can at least print a more informative message.  I looked up
2186            the "right way" to do this by downloading Apple's own source code
2187            for the "id" command, and it turns out that they use an
2188            undocumented library function getgrouplist_2 (!) which is not
2189            declared in any header in /usr/include (!!). That did not seem
2190            like the way to go here.
2191         */
2192         if (buf_count == initial_buf_count)
2193           {
2194             buf_count *= 16; /* Retry with an arbitrarily scaled-up array */
2195           }
2196         new = dbus_realloc (buf, buf_count * sizeof (buf[0]));
2197         if (new == NULL)
2198           {
2199             dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2200             dbus_free (buf);
2201             goto failed;
2202           }
2203
2204         buf = new;
2205
2206         errno = 0;
2207         if (getgrouplist (username_c, info->primary_gid, buf, &buf_count) < 0)
2208           {
2209             if (errno == 0)
2210               {
2211                 _dbus_warn ("It appears that username \"%s\" is in more than %d groups.\nProceeding with just the first %d groups.",
2212                             username_c, buf_count, buf_count);
2213               }
2214             else
2215               {
2216                 dbus_set_error (error,
2217                                 _dbus_error_from_errno (errno),
2218                                 "Failed to get groups for username \"%s\" primary GID "
2219                                 DBUS_GID_FORMAT ": %s\n",
2220                                 username_c, info->primary_gid,
2221                                 _dbus_strerror (errno));
2222                 dbus_free (buf);
2223                 goto failed;
2224               }
2225           }
2226       }
2227
2228     info->group_ids = dbus_new (dbus_gid_t, buf_count);
2229     if (info->group_ids == NULL)
2230       {
2231         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2232         dbus_free (buf);
2233         goto failed;
2234       }
2235
2236     for (i = 0; i < buf_count; ++i)
2237       info->group_ids[i] = buf[i];
2238
2239     info->n_group_ids = buf_count;
2240
2241     dbus_free (buf);
2242   }
2243 #else  /* HAVE_GETGROUPLIST */
2244   {
2245     /* We just get the one group ID */
2246     info->group_ids = dbus_new (dbus_gid_t, 1);
2247     if (info->group_ids == NULL)
2248       {
2249         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2250         goto failed;
2251       }
2252
2253     info->n_group_ids = 1;
2254
2255     (info->group_ids)[0] = info->primary_gid;
2256   }
2257 #endif /* HAVE_GETGROUPLIST */
2258
2259   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2260
2261   return TRUE;
2262
2263  failed:
2264   _DBUS_ASSERT_ERROR_IS_SET (error);
2265   return FALSE;
2266 }
2267
2268 /**
2269  * Gets user info for the given username.
2270  *
2271  * @param info user info object to initialize
2272  * @param username the username
2273  * @param error error return
2274  * @returns #TRUE on success
2275  */
2276 dbus_bool_t
2277 _dbus_user_info_fill (DBusUserInfo     *info,
2278                       const DBusString *username,
2279                       DBusError        *error)
2280 {
2281   return fill_user_info (info, DBUS_UID_UNSET,
2282                          username, error);
2283 }
2284
2285 /**
2286  * Gets user info for the given user ID.
2287  *
2288  * @param info user info object to initialize
2289  * @param uid the user ID
2290  * @param error error return
2291  * @returns #TRUE on success
2292  */
2293 dbus_bool_t
2294 _dbus_user_info_fill_uid (DBusUserInfo *info,
2295                           dbus_uid_t    uid,
2296                           DBusError    *error)
2297 {
2298   return fill_user_info (info, uid,
2299                          NULL, error);
2300 }
2301
2302 /**
2303  * Adds the credentials of the current process to the
2304  * passed-in credentials object.
2305  *
2306  * @param credentials credentials to add to
2307  * @returns #FALSE if no memory; does not properly roll back on failure, so only some credentials may have been added
2308  */
2309 dbus_bool_t
2310 _dbus_credentials_add_from_current_process (DBusCredentials *credentials)
2311 {
2312   /* The POSIX spec certainly doesn't promise this, but
2313    * we need these assertions to fail as soon as we're wrong about
2314    * it so we can do the porting fixups
2315    */
2316   _dbus_assert (sizeof (pid_t) <= sizeof (dbus_pid_t));
2317   _dbus_assert (sizeof (uid_t) <= sizeof (dbus_uid_t));
2318   _dbus_assert (sizeof (gid_t) <= sizeof (dbus_gid_t));
2319
2320   if (!_dbus_credentials_add_unix_pid(credentials, _dbus_getpid()))
2321     return FALSE;
2322   if (!_dbus_credentials_add_unix_uid(credentials, _dbus_geteuid()))
2323     return FALSE;
2324
2325   return TRUE;
2326 }
2327
2328 /**
2329  * Append to the string the identity we would like to have when we
2330  * authenticate, on UNIX this is the current process UID and on
2331  * Windows something else, probably a Windows SID string.  No escaping
2332  * is required, that is done in dbus-auth.c. The username here
2333  * need not be anything human-readable, it can be the machine-readable
2334  * form i.e. a user id.
2335  *
2336  * @param str the string to append to
2337  * @returns #FALSE on no memory
2338  */
2339 dbus_bool_t
2340 _dbus_append_user_from_current_process (DBusString *str)
2341 {
2342   return _dbus_string_append_uint (str,
2343                                    _dbus_geteuid ());
2344 }
2345
2346 /**
2347  * Gets our process ID
2348  * @returns process ID
2349  */
2350 dbus_pid_t
2351 _dbus_getpid (void)
2352 {
2353   return getpid ();
2354 }
2355
2356 /** Gets our UID
2357  * @returns process UID
2358  */
2359 dbus_uid_t
2360 _dbus_getuid (void)
2361 {
2362   return getuid ();
2363 }
2364
2365 /** Gets our effective UID
2366  * @returns process effective UID
2367  */
2368 dbus_uid_t
2369 _dbus_geteuid (void)
2370 {
2371   return geteuid ();
2372 }
2373
2374 /**
2375  * The only reason this is separate from _dbus_getpid() is to allow it
2376  * on Windows for logging but not for other purposes.
2377  *
2378  * @returns process ID to put in log messages
2379  */
2380 unsigned long
2381 _dbus_pid_for_log (void)
2382 {
2383   return getpid ();
2384 }
2385
2386 /**
2387  * Gets a UID from a UID string.
2388  *
2389  * @param uid_str the UID in string form
2390  * @param uid UID to fill in
2391  * @returns #TRUE if successfully filled in UID
2392  */
2393 dbus_bool_t
2394 _dbus_parse_uid (const DBusString      *uid_str,
2395                  dbus_uid_t            *uid)
2396 {
2397   int end;
2398   long val;
2399
2400   if (_dbus_string_get_length (uid_str) == 0)
2401     {
2402       _dbus_verbose ("UID string was zero length\n");
2403       return FALSE;
2404     }
2405
2406   val = -1;
2407   end = 0;
2408   if (!_dbus_string_parse_int (uid_str, 0, &val,
2409                                &end))
2410     {
2411       _dbus_verbose ("could not parse string as a UID\n");
2412       return FALSE;
2413     }
2414
2415   if (end != _dbus_string_get_length (uid_str))
2416     {
2417       _dbus_verbose ("string contained trailing stuff after UID\n");
2418       return FALSE;
2419     }
2420
2421   *uid = val;
2422
2423   return TRUE;
2424 }
2425
2426 #if !DBUS_USE_SYNC
2427 _DBUS_DEFINE_GLOBAL_LOCK (atomic);
2428 #endif
2429
2430 /**
2431  * Atomically increments an integer
2432  *
2433  * @param atomic pointer to the integer to increment
2434  * @returns the value before incrementing
2435  */
2436 dbus_int32_t
2437 _dbus_atomic_inc (DBusAtomic *atomic)
2438 {
2439 #if DBUS_USE_SYNC
2440   return __sync_add_and_fetch(&atomic->value, 1)-1;
2441 #else
2442   dbus_int32_t res;
2443   _DBUS_LOCK (atomic);
2444   res = atomic->value;
2445   atomic->value += 1;
2446   _DBUS_UNLOCK (atomic);
2447   return res;
2448 #endif
2449 }
2450
2451 /**
2452  * Atomically decrement an integer
2453  *
2454  * @param atomic pointer to the integer to decrement
2455  * @returns the value before decrementing
2456  */
2457 dbus_int32_t
2458 _dbus_atomic_dec (DBusAtomic *atomic)
2459 {
2460 #if DBUS_USE_SYNC
2461   return __sync_sub_and_fetch(&atomic->value, 1)+1;
2462 #else
2463   dbus_int32_t res;
2464
2465   _DBUS_LOCK (atomic);
2466   res = atomic->value;
2467   atomic->value -= 1;
2468   _DBUS_UNLOCK (atomic);
2469   return res;
2470 #endif
2471 }
2472
2473 /**
2474  * Atomically get the value of an integer. It may change at any time
2475  * thereafter, so this is mostly only useful for assertions.
2476  *
2477  * @param atomic pointer to the integer to get
2478  * @returns the value at this moment
2479  */
2480 dbus_int32_t
2481 _dbus_atomic_get (DBusAtomic *atomic)
2482 {
2483 #if DBUS_USE_SYNC
2484   __sync_synchronize ();
2485   return atomic->value;
2486 #else
2487   dbus_int32_t res;
2488
2489   _DBUS_LOCK (atomic);
2490   res = atomic->value;
2491   _DBUS_UNLOCK (atomic);
2492   return res;
2493 #endif
2494 }
2495
2496 /**
2497  * Wrapper for poll().
2498  *
2499  * @param fds the file descriptors to poll
2500  * @param n_fds number of descriptors in the array
2501  * @param timeout_milliseconds timeout or -1 for infinite
2502  * @returns numbers of fds with revents, or <0 on error
2503  */
2504 int
2505 _dbus_poll (DBusPollFD *fds,
2506             int         n_fds,
2507             int         timeout_milliseconds)
2508 {
2509 #if defined(HAVE_POLL) && !defined(BROKEN_POLL)
2510   /* This big thing is a constant expression and should get optimized
2511    * out of existence. So it's more robust than a configure check at
2512    * no cost.
2513    */
2514   if (_DBUS_POLLIN == POLLIN &&
2515       _DBUS_POLLPRI == POLLPRI &&
2516       _DBUS_POLLOUT == POLLOUT &&
2517       _DBUS_POLLERR == POLLERR &&
2518       _DBUS_POLLHUP == POLLHUP &&
2519       _DBUS_POLLNVAL == POLLNVAL &&
2520       sizeof (DBusPollFD) == sizeof (struct pollfd) &&
2521       _DBUS_STRUCT_OFFSET (DBusPollFD, fd) ==
2522       _DBUS_STRUCT_OFFSET (struct pollfd, fd) &&
2523       _DBUS_STRUCT_OFFSET (DBusPollFD, events) ==
2524       _DBUS_STRUCT_OFFSET (struct pollfd, events) &&
2525       _DBUS_STRUCT_OFFSET (DBusPollFD, revents) ==
2526       _DBUS_STRUCT_OFFSET (struct pollfd, revents))
2527     {
2528       return poll ((struct pollfd*) fds,
2529                    n_fds,
2530                    timeout_milliseconds);
2531     }
2532   else
2533     {
2534       /* We have to convert the DBusPollFD to an array of
2535        * struct pollfd, poll, and convert back.
2536        */
2537       _dbus_warn ("didn't implement poll() properly for this system yet\n");
2538       return -1;
2539     }
2540 #else /* ! HAVE_POLL */
2541
2542   fd_set read_set, write_set, err_set;
2543   int max_fd = 0;
2544   int i;
2545   struct timeval tv;
2546   int ready;
2547
2548   FD_ZERO (&read_set);
2549   FD_ZERO (&write_set);
2550   FD_ZERO (&err_set);
2551
2552   for (i = 0; i < n_fds; i++)
2553     {
2554       DBusPollFD *fdp = &fds[i];
2555
2556       if (fdp->events & _DBUS_POLLIN)
2557         FD_SET (fdp->fd, &read_set);
2558
2559       if (fdp->events & _DBUS_POLLOUT)
2560         FD_SET (fdp->fd, &write_set);
2561
2562       FD_SET (fdp->fd, &err_set);
2563
2564       max_fd = MAX (max_fd, fdp->fd);
2565     }
2566
2567   tv.tv_sec = timeout_milliseconds / 1000;
2568   tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
2569
2570   ready = select (max_fd + 1, &read_set, &write_set, &err_set,
2571                   timeout_milliseconds < 0 ? NULL : &tv);
2572
2573   if (ready > 0)
2574     {
2575       for (i = 0; i < n_fds; i++)
2576         {
2577           DBusPollFD *fdp = &fds[i];
2578
2579           fdp->revents = 0;
2580
2581           if (FD_ISSET (fdp->fd, &read_set))
2582             fdp->revents |= _DBUS_POLLIN;
2583
2584           if (FD_ISSET (fdp->fd, &write_set))
2585             fdp->revents |= _DBUS_POLLOUT;
2586
2587           if (FD_ISSET (fdp->fd, &err_set))
2588             fdp->revents |= _DBUS_POLLERR;
2589         }
2590     }
2591
2592   return ready;
2593 #endif
2594 }
2595
2596 /**
2597  * Get current time, as in gettimeofday(). Use the monotonic clock if
2598  * available, to avoid problems when the system time changes.
2599  *
2600  * @param tv_sec return location for number of seconds
2601  * @param tv_usec return location for number of microseconds (thousandths)
2602  */
2603 void
2604 _dbus_get_current_time (long *tv_sec,
2605                         long *tv_usec)
2606 {
2607 #ifdef HAVE_MONOTONIC_CLOCK
2608   struct timespec ts;
2609   clock_gettime (CLOCK_MONOTONIC, &ts);
2610
2611   if (tv_sec)
2612     *tv_sec = ts.tv_sec;
2613   if (tv_usec)
2614     *tv_usec = ts.tv_nsec / 1000;
2615 #else
2616   struct timeval t;
2617
2618   gettimeofday (&t, NULL);
2619
2620   if (tv_sec)
2621     *tv_sec = t.tv_sec;
2622   if (tv_usec)
2623     *tv_usec = t.tv_usec;
2624 #endif
2625 }
2626
2627 /**
2628  * Creates a directory; succeeds if the directory
2629  * is created or already existed.
2630  *
2631  * @param filename directory filename
2632  * @param error initialized error object
2633  * @returns #TRUE on success
2634  */
2635 dbus_bool_t
2636 _dbus_create_directory (const DBusString *filename,
2637                         DBusError        *error)
2638 {
2639   const char *filename_c;
2640
2641   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2642
2643   filename_c = _dbus_string_get_const_data (filename);
2644
2645   if (mkdir (filename_c, 0700) < 0)
2646     {
2647       if (errno == EEXIST)
2648         return TRUE;
2649
2650       dbus_set_error (error, DBUS_ERROR_FAILED,
2651                       "Failed to create directory %s: %s\n",
2652                       filename_c, _dbus_strerror (errno));
2653       return FALSE;
2654     }
2655   else
2656     return TRUE;
2657 }
2658
2659 /**
2660  * Appends the given filename to the given directory.
2661  *
2662  * @todo it might be cute to collapse multiple '/' such as "foo//"
2663  * concat "//bar"
2664  *
2665  * @param dir the directory name
2666  * @param next_component the filename
2667  * @returns #TRUE on success
2668  */
2669 dbus_bool_t
2670 _dbus_concat_dir_and_file (DBusString       *dir,
2671                            const DBusString *next_component)
2672 {
2673   dbus_bool_t dir_ends_in_slash;
2674   dbus_bool_t file_starts_with_slash;
2675
2676   if (_dbus_string_get_length (dir) == 0 ||
2677       _dbus_string_get_length (next_component) == 0)
2678     return TRUE;
2679
2680   dir_ends_in_slash = '/' == _dbus_string_get_byte (dir,
2681                                                     _dbus_string_get_length (dir) - 1);
2682
2683   file_starts_with_slash = '/' == _dbus_string_get_byte (next_component, 0);
2684
2685   if (dir_ends_in_slash && file_starts_with_slash)
2686     {
2687       _dbus_string_shorten (dir, 1);
2688     }
2689   else if (!(dir_ends_in_slash || file_starts_with_slash))
2690     {
2691       if (!_dbus_string_append_byte (dir, '/'))
2692         return FALSE;
2693     }
2694
2695   return _dbus_string_copy (next_component, 0, dir,
2696                             _dbus_string_get_length (dir));
2697 }
2698
2699 /** nanoseconds in a second */
2700 #define NANOSECONDS_PER_SECOND       1000000000
2701 /** microseconds in a second */
2702 #define MICROSECONDS_PER_SECOND      1000000
2703 /** milliseconds in a second */
2704 #define MILLISECONDS_PER_SECOND      1000
2705 /** nanoseconds in a millisecond */
2706 #define NANOSECONDS_PER_MILLISECOND  1000000
2707 /** microseconds in a millisecond */
2708 #define MICROSECONDS_PER_MILLISECOND 1000
2709
2710 /**
2711  * Sleeps the given number of milliseconds.
2712  * @param milliseconds number of milliseconds
2713  */
2714 void
2715 _dbus_sleep_milliseconds (int milliseconds)
2716 {
2717 #ifdef HAVE_NANOSLEEP
2718   struct timespec req;
2719   struct timespec rem;
2720
2721   req.tv_sec = milliseconds / MILLISECONDS_PER_SECOND;
2722   req.tv_nsec = (milliseconds % MILLISECONDS_PER_SECOND) * NANOSECONDS_PER_MILLISECOND;
2723   rem.tv_sec = 0;
2724   rem.tv_nsec = 0;
2725
2726   while (nanosleep (&req, &rem) < 0 && errno == EINTR)
2727     req = rem;
2728 #elif defined (HAVE_USLEEP)
2729   usleep (milliseconds * MICROSECONDS_PER_MILLISECOND);
2730 #else /* ! HAVE_USLEEP */
2731   sleep (MAX (milliseconds / 1000, 1));
2732 #endif
2733 }
2734
2735 static dbus_bool_t
2736 _dbus_generate_pseudorandom_bytes (DBusString *str,
2737                                    int         n_bytes)
2738 {
2739   int old_len;
2740   char *p;
2741
2742   old_len = _dbus_string_get_length (str);
2743
2744   if (!_dbus_string_lengthen (str, n_bytes))
2745     return FALSE;
2746
2747   p = _dbus_string_get_data_len (str, old_len, n_bytes);
2748
2749   _dbus_generate_pseudorandom_bytes_buffer (p, n_bytes);
2750
2751   return TRUE;
2752 }
2753
2754 /**
2755  * Generates the given number of random bytes,
2756  * using the best mechanism we can come up with.
2757  *
2758  * @param str the string
2759  * @param n_bytes the number of random bytes to append to string
2760  * @returns #TRUE on success, #FALSE if no memory
2761  */
2762 dbus_bool_t
2763 _dbus_generate_random_bytes (DBusString *str,
2764                              int         n_bytes)
2765 {
2766   int old_len;
2767   int fd;
2768
2769   /* FALSE return means "no memory", if it could
2770    * mean something else then we'd need to return
2771    * a DBusError. So we always fall back to pseudorandom
2772    * if the I/O fails.
2773    */
2774
2775   old_len = _dbus_string_get_length (str);
2776   fd = -1;
2777
2778   /* note, urandom on linux will fall back to pseudorandom */
2779   fd = open ("/dev/urandom", O_RDONLY);
2780   if (fd < 0)
2781     return _dbus_generate_pseudorandom_bytes (str, n_bytes);
2782
2783   _dbus_verbose ("/dev/urandom fd %d opened\n", fd);
2784
2785   if (_dbus_read (fd, str, n_bytes) != n_bytes)
2786     {
2787       _dbus_close (fd, NULL);
2788       _dbus_string_set_length (str, old_len);
2789       return _dbus_generate_pseudorandom_bytes (str, n_bytes);
2790     }
2791
2792   _dbus_verbose ("Read %d bytes from /dev/urandom\n",
2793                  n_bytes);
2794
2795   _dbus_close (fd, NULL);
2796
2797   return TRUE;
2798 }
2799
2800 /**
2801  * Exit the process, returning the given value.
2802  *
2803  * @param code the exit code
2804  */
2805 void
2806 _dbus_exit (int code)
2807 {
2808   _exit (code);
2809 }
2810
2811 /**
2812  * A wrapper around strerror() because some platforms
2813  * may be lame and not have strerror(). Also, never
2814  * returns NULL.
2815  *
2816  * @param error_number errno.
2817  * @returns error description.
2818  */
2819 const char*
2820 _dbus_strerror (int error_number)
2821 {
2822   const char *msg;
2823
2824   msg = strerror (error_number);
2825   if (msg == NULL)
2826     msg = "unknown";
2827
2828   return msg;
2829 }
2830
2831 /**
2832  * signal (SIGPIPE, SIG_IGN);
2833  */
2834 void
2835 _dbus_disable_sigpipe (void)
2836 {
2837   signal (SIGPIPE, SIG_IGN);
2838 }
2839
2840 /**
2841  * Sets the file descriptor to be close
2842  * on exec. Should be called for all file
2843  * descriptors in D-Bus code.
2844  *
2845  * @param fd the file descriptor
2846  */
2847 void
2848 _dbus_fd_set_close_on_exec (intptr_t fd)
2849 {
2850   int val;
2851
2852   val = fcntl (fd, F_GETFD, 0);
2853
2854   if (val < 0)
2855     return;
2856
2857   val |= FD_CLOEXEC;
2858
2859   fcntl (fd, F_SETFD, val);
2860 }
2861
2862 /**
2863  * Closes a file descriptor.
2864  *
2865  * @param fd the file descriptor
2866  * @param error error object
2867  * @returns #FALSE if error set
2868  */
2869 dbus_bool_t
2870 _dbus_close (int        fd,
2871              DBusError *error)
2872 {
2873   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2874
2875  again:
2876   if (close (fd) < 0)
2877     {
2878       if (errno == EINTR)
2879         goto again;
2880
2881       dbus_set_error (error, _dbus_error_from_errno (errno),
2882                       "Could not close fd %d", fd);
2883       return FALSE;
2884     }
2885
2886   return TRUE;
2887 }
2888
2889 /**
2890  * Duplicates a file descriptor. Makes sure the fd returned is >= 3
2891  * (i.e. avoids stdin/stdout/stderr). Sets O_CLOEXEC.
2892  *
2893  * @param fd the file descriptor to duplicate
2894  * @returns duplicated file descriptor
2895  * */
2896 int
2897 _dbus_dup(int        fd,
2898           DBusError *error)
2899 {
2900   int new_fd;
2901
2902 #ifdef F_DUPFD_CLOEXEC
2903   dbus_bool_t cloexec_done;
2904
2905   new_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
2906   cloexec_done = new_fd >= 0;
2907
2908   if (new_fd < 0 && errno == EINVAL)
2909 #endif
2910     {
2911       new_fd = fcntl(fd, F_DUPFD, 3);
2912     }
2913
2914   if (new_fd < 0) {
2915
2916     dbus_set_error (error, _dbus_error_from_errno (errno),
2917                     "Could not duplicate fd %d", fd);
2918     return -1;
2919   }
2920
2921 #ifdef F_DUPFD_CLOEXEC
2922   if (!cloexec_done)
2923 #endif
2924     {
2925       _dbus_fd_set_close_on_exec(new_fd);
2926     }
2927
2928   return new_fd;
2929 }
2930
2931 /**
2932  * Sets a file descriptor to be nonblocking.
2933  *
2934  * @param fd the file descriptor.
2935  * @param error address of error location.
2936  * @returns #TRUE on success.
2937  */
2938 dbus_bool_t
2939 _dbus_set_fd_nonblocking (int             fd,
2940                           DBusError      *error)
2941 {
2942   int val;
2943
2944   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2945
2946   val = fcntl (fd, F_GETFL, 0);
2947   if (val < 0)
2948     {
2949       dbus_set_error (error, _dbus_error_from_errno (errno),
2950                       "Failed to get flags from file descriptor %d: %s",
2951                       fd, _dbus_strerror (errno));
2952       _dbus_verbose ("Failed to get flags for fd %d: %s\n", fd,
2953                      _dbus_strerror (errno));
2954       return FALSE;
2955     }
2956
2957   if (fcntl (fd, F_SETFL, val | O_NONBLOCK) < 0)
2958     {
2959       dbus_set_error (error, _dbus_error_from_errno (errno),
2960                       "Failed to set nonblocking flag of file descriptor %d: %s",
2961                       fd, _dbus_strerror (errno));
2962       _dbus_verbose ("Failed to set fd %d nonblocking: %s\n",
2963                      fd, _dbus_strerror (errno));
2964
2965       return FALSE;
2966     }
2967
2968   return TRUE;
2969 }
2970
2971 /**
2972  * On GNU libc systems, print a crude backtrace to stderr.  On other
2973  * systems, print "no backtrace support" and block for possible gdb
2974  * attachment if an appropriate environment variable is set.
2975  */
2976 void
2977 _dbus_print_backtrace (void)
2978 {
2979 #if defined (HAVE_BACKTRACE) && defined (DBUS_BUILT_R_DYNAMIC)
2980   void *bt[500];
2981   int bt_size;
2982   int i;
2983   char **syms;
2984
2985   bt_size = backtrace (bt, 500);
2986
2987   syms = backtrace_symbols (bt, bt_size);
2988
2989   i = 0;
2990   while (i < bt_size)
2991     {
2992       /* don't use dbus_warn since it can _dbus_abort() */
2993       fprintf (stderr, "  %s\n", syms[i]);
2994       ++i;
2995     }
2996   fflush (stderr);
2997
2998   free (syms);
2999 #elif defined (HAVE_BACKTRACE) && ! defined (DBUS_BUILT_R_DYNAMIC)
3000   fprintf (stderr, "  D-Bus not built with -rdynamic so unable to print a backtrace\n");
3001 #else
3002   fprintf (stderr, "  D-Bus not compiled with backtrace support so unable to print a backtrace\n");
3003 #endif
3004 }
3005
3006 /**
3007  * Creates a full-duplex pipe (as in socketpair()).
3008  * Sets both ends of the pipe nonblocking.
3009  *
3010  * Marks both file descriptors as close-on-exec
3011  *
3012  * @param fd1 return location for one end
3013  * @param fd2 return location for the other end
3014  * @param blocking #TRUE if pipe should be blocking
3015  * @param error error return
3016  * @returns #FALSE on failure (if error is set)
3017  */
3018 dbus_bool_t
3019 _dbus_full_duplex_pipe (int        *fd1,
3020                         int        *fd2,
3021                         dbus_bool_t blocking,
3022                         DBusError  *error)
3023 {
3024 #ifdef HAVE_SOCKETPAIR
3025   int fds[2];
3026   int retval;
3027
3028 #ifdef SOCK_CLOEXEC
3029   dbus_bool_t cloexec_done;
3030
3031   retval = socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, fds);
3032   cloexec_done = retval >= 0;
3033
3034   if (retval < 0 && errno == EINVAL)
3035 #endif
3036     {
3037       retval = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
3038     }
3039
3040   if (retval < 0)
3041     {
3042       dbus_set_error (error, _dbus_error_from_errno (errno),
3043                       "Could not create full-duplex pipe");
3044       return FALSE;
3045     }
3046
3047   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3048
3049 #ifdef SOCK_CLOEXEC
3050   if (!cloexec_done)
3051 #endif
3052     {
3053       _dbus_fd_set_close_on_exec (fds[0]);
3054       _dbus_fd_set_close_on_exec (fds[1]);
3055     }
3056
3057   if (!blocking &&
3058       (!_dbus_set_fd_nonblocking (fds[0], NULL) ||
3059        !_dbus_set_fd_nonblocking (fds[1], NULL)))
3060     {
3061       dbus_set_error (error, _dbus_error_from_errno (errno),
3062                       "Could not set full-duplex pipe nonblocking");
3063
3064       _dbus_close (fds[0], NULL);
3065       _dbus_close (fds[1], NULL);
3066
3067       return FALSE;
3068     }
3069
3070   *fd1 = fds[0];
3071   *fd2 = fds[1];
3072
3073   _dbus_verbose ("full-duplex pipe %d <-> %d\n",
3074                  *fd1, *fd2);
3075
3076   return TRUE;
3077 #else
3078   _dbus_warn ("_dbus_full_duplex_pipe() not implemented on this OS\n");
3079   dbus_set_error (error, DBUS_ERROR_FAILED,
3080                   "_dbus_full_duplex_pipe() not implemented on this OS");
3081   return FALSE;
3082 #endif
3083 }
3084
3085 /**
3086  * Measure the length of the given format string and arguments,
3087  * not including the terminating nul.
3088  *
3089  * @param format a printf-style format string
3090  * @param args arguments for the format string
3091  * @returns length of the given format string and args, or -1 if no memory
3092  */
3093 int
3094 _dbus_printf_string_upper_bound (const char *format,
3095                                  va_list     args)
3096 {
3097   char static_buf[1024];
3098   int bufsize = sizeof (static_buf);
3099   int len;
3100
3101   len = vsnprintf (static_buf, bufsize, format, args);
3102
3103   /* If vsnprintf() returned non-negative, then either the string fits in
3104    * static_buf, or this OS has the POSIX and C99 behaviour where vsnprintf
3105    * returns the number of characters that were needed, or this OS returns the
3106    * truncated length.
3107    *
3108    * We ignore the possibility that snprintf might just ignore the length and
3109    * overrun the buffer (64-bit Solaris 7), because that's pathological.
3110    * If your libc is really that bad, come back when you have a better one. */
3111   if (len == bufsize)
3112     {
3113       /* This could be the truncated length (Tru64 and IRIX have this bug),
3114        * or the real length could be coincidentally the same. Which is it?
3115        * If vsnprintf returns the truncated length, we'll go to the slow
3116        * path. */
3117       if (vsnprintf (static_buf, 1, format, args) == 1)
3118         len = -1;
3119     }
3120
3121   /* If vsnprintf() returned negative, we have to do more work.
3122    * HP-UX returns negative. */
3123   while (len < 0)
3124     {
3125       char *buf;
3126
3127       bufsize *= 2;
3128
3129       buf = dbus_malloc (bufsize);
3130
3131       if (buf == NULL)
3132         return -1;
3133
3134       len = vsnprintf (buf, bufsize, format, args);
3135       dbus_free (buf);
3136
3137       /* If the reported length is exactly the buffer size, round up to the
3138        * next size, in case vsnprintf has been returning the truncated
3139        * length */
3140       if (len == bufsize)
3141         len = -1;
3142     }
3143
3144   return len;
3145 }
3146
3147 /**
3148  * Gets the temporary files directory by inspecting the environment variables
3149  * TMPDIR, TMP, and TEMP in that order. If none of those are set "/tmp" is returned
3150  *
3151  * @returns location of temp directory
3152  */
3153 const char*
3154 _dbus_get_tmpdir(void)
3155 {
3156   static const char* tmpdir = NULL;
3157
3158   if (tmpdir == NULL)
3159     {
3160       /* TMPDIR is what glibc uses, then
3161        * glibc falls back to the P_tmpdir macro which
3162        * just expands to "/tmp"
3163        */
3164       if (tmpdir == NULL)
3165         tmpdir = getenv("TMPDIR");
3166
3167       /* These two env variables are probably
3168        * broken, but maybe some OS uses them?
3169        */
3170       if (tmpdir == NULL)
3171         tmpdir = getenv("TMP");
3172       if (tmpdir == NULL)
3173         tmpdir = getenv("TEMP");
3174
3175       /* And this is the sane fallback. */
3176       if (tmpdir == NULL)
3177         tmpdir = "/tmp";
3178     }
3179
3180   _dbus_assert(tmpdir != NULL);
3181
3182   return tmpdir;
3183 }
3184
3185 /**
3186  * Execute a subprocess, returning up to 1024 bytes of output
3187  * into @p result.
3188  *
3189  * If successful, returns #TRUE and appends the output to @p
3190  * result. If a failure happens, returns #FALSE and
3191  * sets an error in @p error.
3192  *
3193  * @note It's not an error if the subprocess terminates normally
3194  * without writing any data to stdout. Verify the @p result length
3195  * before and after this function call to cover this case.
3196  *
3197  * @param progname initial path to exec (may or may not be absolute)
3198  * @param path_fallback if %TRUE, search PATH for executable
3199  * @param argv NULL-terminated list of arguments
3200  * @param result a DBusString where the output can be append
3201  * @param error a DBusError to store the error in case of failure
3202  * @returns #TRUE on success, #FALSE if an error happened
3203  */
3204 static dbus_bool_t
3205 _read_subprocess_line_argv (const char *progpath,
3206                             dbus_bool_t path_fallback,
3207                             char       * const *argv,
3208                             DBusString *result,
3209                             DBusError  *error)
3210 {
3211   int result_pipe[2] = { -1, -1 };
3212   int errors_pipe[2] = { -1, -1 };
3213   pid_t pid;
3214   int ret;
3215   int status;
3216   int orig_len;
3217
3218   dbus_bool_t retval;
3219   sigset_t new_set, old_set;
3220
3221   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3222   retval = FALSE;
3223
3224   /* We need to block any existing handlers for SIGCHLD temporarily; they
3225    * will cause waitpid() below to fail.
3226    * https://bugs.freedesktop.org/show_bug.cgi?id=21347
3227    */
3228   sigemptyset (&new_set);
3229   sigaddset (&new_set, SIGCHLD);
3230   sigprocmask (SIG_BLOCK, &new_set, &old_set);
3231
3232   orig_len = _dbus_string_get_length (result);
3233
3234 #define READ_END        0
3235 #define WRITE_END       1
3236   if (pipe (result_pipe) < 0)
3237     {
3238       dbus_set_error (error, _dbus_error_from_errno (errno),
3239                       "Failed to create a pipe to call %s: %s",
3240                       progpath, _dbus_strerror (errno));
3241       _dbus_verbose ("Failed to create a pipe to call %s: %s\n",
3242                      progpath, _dbus_strerror (errno));
3243       goto out;
3244     }
3245   if (pipe (errors_pipe) < 0)
3246     {
3247       dbus_set_error (error, _dbus_error_from_errno (errno),
3248                       "Failed to create a pipe to call %s: %s",
3249                       progpath, _dbus_strerror (errno));
3250       _dbus_verbose ("Failed to create a pipe to call %s: %s\n",
3251                      progpath, _dbus_strerror (errno));
3252       goto out;
3253     }
3254
3255   pid = fork ();
3256   if (pid < 0)
3257     {
3258       dbus_set_error (error, _dbus_error_from_errno (errno),
3259                       "Failed to fork() to call %s: %s",
3260                       progpath, _dbus_strerror (errno));
3261       _dbus_verbose ("Failed to fork() to call %s: %s\n",
3262                      progpath, _dbus_strerror (errno));
3263       goto out;
3264     }
3265
3266   if (pid == 0)
3267     {
3268       /* child process */
3269       int fd;
3270
3271       fd = open ("/dev/null", O_RDWR);
3272       if (fd == -1)
3273         /* huh?! can't open /dev/null? */
3274         _exit (1);
3275
3276       _dbus_verbose ("/dev/null fd %d opened\n", fd);
3277
3278       /* set-up stdXXX */
3279       close (result_pipe[READ_END]);
3280       close (errors_pipe[READ_END]);
3281       close (0);                /* close stdin */
3282       close (1);                /* close stdout */
3283       close (2);                /* close stderr */
3284
3285       if (dup2 (fd, 0) == -1)
3286         _exit (1);
3287       if (dup2 (result_pipe[WRITE_END], 1) == -1)
3288         _exit (1);
3289       if (dup2 (errors_pipe[WRITE_END], 2) == -1)
3290         _exit (1);
3291
3292       _dbus_close_all ();
3293
3294       sigprocmask (SIG_SETMASK, &old_set, NULL);
3295
3296       /* If it looks fully-qualified, try execv first */
3297       if (progpath[0] == '/')
3298         {
3299           execv (progpath, argv);
3300           /* Ok, that failed.  Now if path_fallback is given, let's
3301            * try unqualified.  This is mostly a hack to work
3302            * around systems which ship dbus-launch in /usr/bin
3303            * but everything else in /bin (because dbus-launch
3304            * depends on X11).
3305            */
3306           if (path_fallback)
3307             /* We must have a slash, because we checked above */
3308             execvp (strrchr (progpath, '/')+1, argv);
3309         }
3310       else
3311         execvp (progpath, argv);
3312
3313       /* still nothing, we failed */
3314       _exit (1);
3315     }
3316
3317   /* parent process */
3318   close (result_pipe[WRITE_END]);
3319   close (errors_pipe[WRITE_END]);
3320   result_pipe[WRITE_END] = -1;
3321   errors_pipe[WRITE_END] = -1;
3322
3323   ret = 0;
3324   do
3325     {
3326       ret = _dbus_read (result_pipe[READ_END], result, 1024);
3327     }
3328   while (ret > 0);
3329
3330   /* reap the child process to avoid it lingering as zombie */
3331   do
3332     {
3333       ret = waitpid (pid, &status, 0);
3334     }
3335   while (ret == -1 && errno == EINTR);
3336
3337   /* We succeeded if the process exited with status 0 and
3338      anything was read */
3339   if (!WIFEXITED (status) || WEXITSTATUS (status) != 0 )
3340     {
3341       /* The process ended with error */
3342       DBusString error_message;
3343       if (!_dbus_string_init (&error_message))
3344         {
3345           _DBUS_SET_OOM (error);
3346           goto out;
3347         }
3348
3349       ret = 0;
3350       do
3351         {
3352           ret = _dbus_read (errors_pipe[READ_END], &error_message, 1024);
3353         }
3354       while (ret > 0);
3355
3356       _dbus_string_set_length (result, orig_len);
3357       if (_dbus_string_get_length (&error_message) > 0)
3358         dbus_set_error (error, DBUS_ERROR_SPAWN_EXEC_FAILED,
3359                         "%s terminated abnormally with the following error: %s",
3360                         progpath, _dbus_string_get_data (&error_message));
3361       else
3362         dbus_set_error (error, DBUS_ERROR_SPAWN_EXEC_FAILED,
3363                         "%s terminated abnormally without any error message",
3364                         progpath);
3365       goto out;
3366     }
3367
3368   retval = TRUE;
3369
3370  out:
3371   sigprocmask (SIG_SETMASK, &old_set, NULL);
3372
3373   if (retval)
3374     _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3375   else
3376     _DBUS_ASSERT_ERROR_IS_SET (error);
3377
3378   if (result_pipe[0] != -1)
3379     close (result_pipe[0]);
3380   if (result_pipe[1] != -1)
3381     close (result_pipe[1]);
3382   if (errors_pipe[0] != -1)
3383     close (errors_pipe[0]);
3384   if (errors_pipe[1] != -1)
3385     close (errors_pipe[1]);
3386
3387   return retval;
3388 }
3389
3390 /**
3391  * Returns the address of a new session bus.
3392  *
3393  * If successful, returns #TRUE and appends the address to @p
3394  * address. If a failure happens, returns #FALSE and
3395  * sets an error in @p error.
3396  *
3397  * @param address a DBusString where the address can be stored
3398  * @param error a DBusError to store the error in case of failure
3399  * @returns #TRUE on success, #FALSE if an error happened
3400  */
3401 dbus_bool_t
3402 _dbus_get_autolaunch_address (const char *scope,
3403                               DBusString *address,
3404                               DBusError  *error)
3405 {
3406 #ifdef DBUS_ENABLE_X11_AUTOLAUNCH
3407   /* Perform X11-based autolaunch. (We also support launchd-based autolaunch,
3408    * but that's done elsewhere, and if it worked, this function wouldn't
3409    * be called.) */
3410   const char *display;
3411   static char *argv[6];
3412   int i;
3413   DBusString uuid;
3414   dbus_bool_t retval;
3415
3416   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3417   retval = FALSE;
3418
3419   /* fd.o #19997: if $DISPLAY isn't set to something useful, then
3420    * dbus-launch-x11 is just going to fail. Rather than trying to
3421    * run it, we might as well bail out early with a nice error. */
3422   display = _dbus_getenv ("DISPLAY");
3423
3424   if (display == NULL || display[0] == '\0')
3425     {
3426       dbus_set_error_const (error, DBUS_ERROR_NOT_SUPPORTED,
3427           "Unable to autolaunch a dbus-daemon without a $DISPLAY for X11");
3428       return FALSE;
3429     }
3430
3431   if (!_dbus_string_init (&uuid))
3432     {
3433       _DBUS_SET_OOM (error);
3434       return FALSE;
3435     }
3436
3437   if (!_dbus_get_local_machine_uuid_encoded (&uuid))
3438     {
3439       _DBUS_SET_OOM (error);
3440       goto out;
3441     }
3442
3443   i = 0;
3444   argv[i] = "dbus-launch";
3445   ++i;
3446   argv[i] = "--autolaunch";
3447   ++i;
3448   argv[i] = _dbus_string_get_data (&uuid);
3449   ++i;
3450   argv[i] = "--binary-syntax";
3451   ++i;
3452   argv[i] = "--close-stderr";
3453   ++i;
3454   argv[i] = NULL;
3455   ++i;
3456
3457   _dbus_assert (i == _DBUS_N_ELEMENTS (argv));
3458
3459   retval = _read_subprocess_line_argv (DBUS_BINDIR "/dbus-launch",
3460                                        TRUE,
3461                                        argv, address, error);
3462
3463  out:
3464   _dbus_string_free (&uuid);
3465   return retval;
3466 #else
3467   dbus_set_error_const (error, DBUS_ERROR_NOT_SUPPORTED,
3468       "Using X11 for dbus-daemon autolaunch was disabled at compile time, "
3469       "set your DBUS_SESSION_BUS_ADDRESS instead");
3470   return FALSE;
3471 #endif
3472 }
3473
3474 /**
3475  * Reads the uuid of the machine we're running on from
3476  * the dbus configuration. Optionally try to create it
3477  * (only root can do this usually).
3478  *
3479  * On UNIX, reads a file that gets created by dbus-uuidgen
3480  * in a post-install script. On Windows, if there's a standard
3481  * machine uuid we could just use that, but I can't find one
3482  * with the right properties (the hardware profile guid can change
3483  * without rebooting I believe). If there's no standard one
3484  * we might want to use the registry instead of a file for
3485  * this, and I'm not sure how we'd ensure the uuid gets created.
3486  *
3487  * @param machine_id guid to init with the machine's uuid
3488  * @param create_if_not_found try to create the uuid if it doesn't exist
3489  * @param error the error return
3490  * @returns #FALSE if the error is set
3491  */
3492 dbus_bool_t
3493 _dbus_read_local_machine_uuid (DBusGUID   *machine_id,
3494                                dbus_bool_t create_if_not_found,
3495                                DBusError  *error)
3496 {
3497   DBusString filename;
3498   dbus_bool_t b;
3499
3500   _dbus_string_init_const (&filename, DBUS_MACHINE_UUID_FILE);
3501
3502   b = _dbus_read_uuid_file (&filename, machine_id, create_if_not_found, error);
3503   if (b)
3504     return TRUE;
3505
3506   dbus_error_free (error);
3507
3508   /* Fallback to the system machine ID */
3509   _dbus_string_init_const (&filename, "/etc/machine-id");
3510   return _dbus_read_uuid_file (&filename, machine_id, FALSE, error);
3511 }
3512
3513 #define DBUS_UNIX_STANDARD_SESSION_SERVICEDIR "/dbus-1/services"
3514 #define DBUS_UNIX_STANDARD_SYSTEM_SERVICEDIR "/dbus-1/system-services"
3515
3516 /**
3517  * quries launchd for a specific env var which holds the socket path.
3518  * @param launchd_env_var the env var to look up
3519  * @param error a DBusError to store the error in case of failure
3520  * @return the value of the env var
3521  */
3522 dbus_bool_t
3523 _dbus_lookup_launchd_socket (DBusString *socket_path,
3524                              const char *launchd_env_var,
3525                              DBusError  *error)
3526 {
3527 #ifdef DBUS_ENABLE_LAUNCHD
3528   char *argv[4];
3529   int i;
3530
3531   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3532
3533   i = 0;
3534   argv[i] = "launchctl";
3535   ++i;
3536   argv[i] = "getenv";
3537   ++i;
3538   argv[i] = (char*)launchd_env_var;
3539   ++i;
3540   argv[i] = NULL;
3541   ++i;
3542
3543   _dbus_assert (i == _DBUS_N_ELEMENTS (argv));
3544
3545   if (!_read_subprocess_line_argv(argv[0], TRUE, argv, socket_path, error))
3546     {
3547       return FALSE;
3548     }
3549
3550   /* no error, but no result either */
3551   if (_dbus_string_get_length(socket_path) == 0)
3552     {
3553       return FALSE;
3554     }
3555
3556   /* strip the carriage-return */
3557   _dbus_string_shorten(socket_path, 1);
3558   return TRUE;
3559 #else /* DBUS_ENABLE_LAUNCHD */
3560   dbus_set_error(error, DBUS_ERROR_NOT_SUPPORTED,
3561                 "can't lookup socket from launchd; launchd support not compiled in");
3562   return FALSE;
3563 #endif
3564 }
3565
3566 #ifdef DBUS_ENABLE_LAUNCHD
3567 static dbus_bool_t
3568 _dbus_lookup_session_address_launchd (DBusString *address, DBusError  *error)
3569 {
3570   dbus_bool_t valid_socket;
3571   DBusString socket_path;
3572
3573   if (!_dbus_string_init (&socket_path))
3574     {
3575       _DBUS_SET_OOM (error);
3576       return FALSE;
3577     }
3578
3579   valid_socket = _dbus_lookup_launchd_socket (&socket_path, "DBUS_LAUNCHD_SESSION_BUS_SOCKET", error);
3580
3581   if (dbus_error_is_set(error))
3582     {
3583       _dbus_string_free(&socket_path);
3584       return FALSE;
3585     }
3586
3587   if (!valid_socket)
3588     {
3589       dbus_set_error(error, "no socket path",
3590                 "launchd did not provide a socket path, "
3591                 "verify that org.freedesktop.dbus-session.plist is loaded!");
3592       _dbus_string_free(&socket_path);
3593       return FALSE;
3594     }
3595   if (!_dbus_string_append (address, "unix:path="))
3596     {
3597       _DBUS_SET_OOM (error);
3598       _dbus_string_free(&socket_path);
3599       return FALSE;
3600     }
3601   if (!_dbus_string_copy (&socket_path, 0, address,
3602                           _dbus_string_get_length (address)))
3603     {
3604       _DBUS_SET_OOM (error);
3605       _dbus_string_free(&socket_path);
3606       return FALSE;
3607     }
3608
3609   _dbus_string_free(&socket_path);
3610   return TRUE;
3611 }
3612 #endif
3613
3614 /**
3615  * Determines the address of the session bus by querying a
3616  * platform-specific method.
3617  *
3618  * The first parameter will be a boolean specifying whether
3619  * or not a dynamic session lookup is supported on this platform.
3620  *
3621  * If supported is TRUE and the return value is #TRUE, the
3622  * address will be  appended to @p address.
3623  * If a failure happens, returns #FALSE and sets an error in
3624  * @p error.
3625  *
3626  * If supported is FALSE, ignore the return value.
3627  *
3628  * @param supported returns whether this method is supported
3629  * @param address a DBusString where the address can be stored
3630  * @param error a DBusError to store the error in case of failure
3631  * @returns #TRUE on success, #FALSE if an error happened
3632  */
3633 dbus_bool_t
3634 _dbus_lookup_session_address (dbus_bool_t *supported,
3635                               DBusString  *address,
3636                               DBusError   *error)
3637 {
3638 #ifdef DBUS_ENABLE_LAUNCHD
3639   *supported = TRUE;
3640   return _dbus_lookup_session_address_launchd (address, error);
3641 #else
3642   /* On non-Mac Unix platforms, if the session address isn't already
3643    * set in DBUS_SESSION_BUS_ADDRESS environment variable, we punt and
3644    * fall back to the autolaunch: global default; see
3645    * init_session_address in dbus/dbus-bus.c. */
3646   *supported = FALSE;
3647   return TRUE;
3648 #endif
3649 }
3650
3651 /**
3652  * Returns the standard directories for a session bus to look for service
3653  * activation files
3654  *
3655  * On UNIX this should be the standard xdg freedesktop.org data directories:
3656  *
3657  * XDG_DATA_HOME=${XDG_DATA_HOME-$HOME/.local/share}
3658  * XDG_DATA_DIRS=${XDG_DATA_DIRS-/usr/local/share:/usr/share}
3659  *
3660  * and
3661  *
3662  * DBUS_DATADIR
3663  *
3664  * @param dirs the directory list we are returning
3665  * @returns #FALSE on OOM
3666  */
3667
3668 dbus_bool_t
3669 _dbus_get_standard_session_servicedirs (DBusList **dirs)
3670 {
3671   const char *xdg_data_home;
3672   const char *xdg_data_dirs;
3673   DBusString servicedir_path;
3674
3675   if (!_dbus_string_init (&servicedir_path))
3676     return FALSE;
3677
3678   xdg_data_home = _dbus_getenv ("XDG_DATA_HOME");
3679   xdg_data_dirs = _dbus_getenv ("XDG_DATA_DIRS");
3680
3681   if (xdg_data_home != NULL)
3682     {
3683       if (!_dbus_string_append (&servicedir_path, xdg_data_home))
3684         goto oom;
3685     }
3686   else
3687     {
3688       const DBusString *homedir;
3689       DBusString local_share;
3690
3691       if (!_dbus_homedir_from_current_process (&homedir))
3692         goto oom;
3693
3694       if (!_dbus_string_append (&servicedir_path, _dbus_string_get_const_data (homedir)))
3695         goto oom;
3696
3697       _dbus_string_init_const (&local_share, "/.local/share");
3698       if (!_dbus_concat_dir_and_file (&servicedir_path, &local_share))
3699         goto oom;
3700     }
3701
3702   if (!_dbus_string_append (&servicedir_path, ":"))
3703     goto oom;
3704
3705   if (xdg_data_dirs != NULL)
3706     {
3707       if (!_dbus_string_append (&servicedir_path, xdg_data_dirs))
3708         goto oom;
3709
3710       if (!_dbus_string_append (&servicedir_path, ":"))
3711         goto oom;
3712     }
3713   else
3714     {
3715       if (!_dbus_string_append (&servicedir_path, "/usr/local/share:/usr/share:"))
3716         goto oom;
3717     }
3718
3719   /*
3720    * add configured datadir to defaults
3721    * this may be the same as an xdg dir
3722    * however the config parser should take
3723    * care of duplicates
3724    */
3725   if (!_dbus_string_append (&servicedir_path, DBUS_DATADIR))
3726     goto oom;
3727
3728   if (!_dbus_split_paths_and_append (&servicedir_path,
3729                                      DBUS_UNIX_STANDARD_SESSION_SERVICEDIR,
3730                                      dirs))
3731     goto oom;
3732
3733   _dbus_string_free (&servicedir_path);
3734   return TRUE;
3735
3736  oom:
3737   _dbus_string_free (&servicedir_path);
3738   return FALSE;
3739 }
3740
3741
3742 /**
3743  * Returns the standard directories for a system bus to look for service
3744  * activation files
3745  *
3746  * On UNIX this should be the standard xdg freedesktop.org data directories:
3747  *
3748  * XDG_DATA_DIRS=${XDG_DATA_DIRS-/usr/local/share:/usr/share}
3749  *
3750  * and
3751  *
3752  * DBUS_DATADIR
3753  *
3754  * On Windows there is no system bus and this function can return nothing.
3755  *
3756  * @param dirs the directory list we are returning
3757  * @returns #FALSE on OOM
3758  */
3759
3760 dbus_bool_t
3761 _dbus_get_standard_system_servicedirs (DBusList **dirs)
3762 {
3763   /*
3764    * DBUS_DATADIR may be the same as one of the standard directories. However,
3765    * the config parser should take care of the duplicates.
3766    *
3767    * Also, append /lib as counterpart of /usr/share on the root
3768    * directory (the root directory does not know /share), in order to
3769    * facilitate early boot system bus activation where /usr might not
3770    * be available.
3771    */
3772   static const char standard_search_path[] =
3773     "/usr/local/share:"
3774     "/usr/share:"
3775     DBUS_DATADIR ":"
3776     "/lib";
3777   DBusString servicedir_path;
3778
3779   _dbus_string_init_const (&servicedir_path, standard_search_path);
3780
3781   return _dbus_split_paths_and_append (&servicedir_path,
3782                                        DBUS_UNIX_STANDARD_SYSTEM_SERVICEDIR,
3783                                        dirs);
3784 }
3785
3786 /**
3787  * Append the absolute path of the system.conf file
3788  * (there is no system bus on Windows so this can just
3789  * return FALSE and print a warning or something)
3790  *
3791  * @param str the string to append to
3792  * @returns #FALSE if no memory
3793  */
3794 dbus_bool_t
3795 _dbus_append_system_config_file (DBusString *str)
3796 {
3797   return _dbus_string_append (str, DBUS_SYSTEM_CONFIG_FILE);
3798 }
3799
3800 /**
3801  * Append the absolute path of the session.conf file.
3802  *
3803  * @param str the string to append to
3804  * @returns #FALSE if no memory
3805  */
3806 dbus_bool_t
3807 _dbus_append_session_config_file (DBusString *str)
3808 {
3809   return _dbus_string_append (str, DBUS_SESSION_CONFIG_FILE);
3810 }
3811
3812 /**
3813  * Called when the bus daemon is signaled to reload its configuration; any
3814  * caches should be nuked. Of course any caches that need explicit reload
3815  * are probably broken, but c'est la vie.
3816  *
3817  *
3818  */
3819 void
3820 _dbus_flush_caches (void)
3821 {
3822   _dbus_user_database_flush_system ();
3823 }
3824
3825 /**
3826  * Appends the directory in which a keyring for the given credentials
3827  * should be stored.  The credentials should have either a Windows or
3828  * UNIX user in them.  The directory should be an absolute path.
3829  *
3830  * On UNIX the directory is ~/.dbus-keyrings while on Windows it should probably
3831  * be something else, since the dotfile convention is not normal on Windows.
3832  *
3833  * @param directory string to append directory to
3834  * @param credentials credentials the directory should be for
3835  *
3836  * @returns #FALSE on no memory
3837  */
3838 dbus_bool_t
3839 _dbus_append_keyring_directory_for_credentials (DBusString      *directory,
3840                                                 DBusCredentials *credentials)
3841 {
3842   DBusString homedir;
3843   DBusString dotdir;
3844   dbus_uid_t uid;
3845
3846   _dbus_assert (credentials != NULL);
3847   _dbus_assert (!_dbus_credentials_are_anonymous (credentials));
3848
3849   if (!_dbus_string_init (&homedir))
3850     return FALSE;
3851
3852   uid = _dbus_credentials_get_unix_uid (credentials);
3853   _dbus_assert (uid != DBUS_UID_UNSET);
3854
3855   if (!_dbus_homedir_from_uid (uid, &homedir))
3856     goto failed;
3857
3858 #ifdef DBUS_BUILD_TESTS
3859   {
3860     const char *override;
3861
3862     override = _dbus_getenv ("DBUS_TEST_HOMEDIR");
3863     if (override != NULL && *override != '\0')
3864       {
3865         _dbus_string_set_length (&homedir, 0);
3866         if (!_dbus_string_append (&homedir, override))
3867           goto failed;
3868
3869         _dbus_verbose ("Using fake homedir for testing: %s\n",
3870                        _dbus_string_get_const_data (&homedir));
3871       }
3872     else
3873       {
3874         static dbus_bool_t already_warned = FALSE;
3875         if (!already_warned)
3876           {
3877             _dbus_warn ("Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid\n");
3878             already_warned = TRUE;
3879           }
3880       }
3881   }
3882 #endif
3883
3884   _dbus_string_init_const (&dotdir, ".dbus-keyrings");
3885   if (!_dbus_concat_dir_and_file (&homedir,
3886                                   &dotdir))
3887     goto failed;
3888
3889   if (!_dbus_string_copy (&homedir, 0,
3890                           directory, _dbus_string_get_length (directory))) {
3891     goto failed;
3892   }
3893
3894   _dbus_string_free (&homedir);
3895   return TRUE;
3896
3897  failed:
3898   _dbus_string_free (&homedir);
3899   return FALSE;
3900 }
3901
3902 //PENDING(kdab) docs
3903 dbus_bool_t
3904 _dbus_daemon_publish_session_bus_address (const char* addr,
3905                                           const char *scope)
3906 {
3907   return TRUE;
3908 }
3909
3910 //PENDING(kdab) docs
3911 void
3912 _dbus_daemon_unpublish_session_bus_address (void)
3913 {
3914
3915 }
3916
3917 /**
3918  * See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently
3919  * for Winsock so is abstracted)
3920  *
3921  * @returns #TRUE if errno == EAGAIN or errno == EWOULDBLOCK
3922  */
3923 dbus_bool_t
3924 _dbus_get_is_errno_eagain_or_ewouldblock (void)
3925 {
3926   return errno == EAGAIN || errno == EWOULDBLOCK;
3927 }
3928
3929 /**
3930  * Removes a directory; Directory must be empty
3931  *
3932  * @param filename directory filename
3933  * @param error initialized error object
3934  * @returns #TRUE on success
3935  */
3936 dbus_bool_t
3937 _dbus_delete_directory (const DBusString *filename,
3938                         DBusError        *error)
3939 {
3940   const char *filename_c;
3941
3942   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3943
3944   filename_c = _dbus_string_get_const_data (filename);
3945
3946   if (rmdir (filename_c) != 0)
3947     {
3948       dbus_set_error (error, DBUS_ERROR_FAILED,
3949                       "Failed to remove directory %s: %s\n",
3950                       filename_c, _dbus_strerror (errno));
3951       return FALSE;
3952     }
3953
3954   return TRUE;
3955 }
3956
3957 /**
3958  *  Checks whether file descriptors may be passed via the socket
3959  *
3960  *  @param fd the socket
3961  *  @return TRUE when fd passing over this socket is supported
3962  *
3963  */
3964 dbus_bool_t
3965 _dbus_socket_can_pass_unix_fd(int fd) {
3966
3967 #ifdef SCM_RIGHTS
3968   union {
3969     struct sockaddr sa;
3970     struct sockaddr_storage storage;
3971     struct sockaddr_un un;
3972   } sa_buf;
3973
3974   socklen_t sa_len = sizeof(sa_buf);
3975
3976   _DBUS_ZERO(sa_buf);
3977
3978   if (getsockname(fd, &sa_buf.sa, &sa_len) < 0)
3979     return FALSE;
3980
3981   return sa_buf.sa.sa_family == AF_UNIX;
3982
3983 #else
3984   return FALSE;
3985
3986 #endif
3987 }
3988
3989
3990 /*
3991  * replaces the term DBUS_PREFIX in configure_time_path by the
3992  * current dbus installation directory. On unix this function is a noop
3993  *
3994  * @param configure_time_path
3995  * @return real path
3996  */
3997 const char *
3998 _dbus_replace_install_prefix (const char *configure_time_path)
3999 {
4000   return configure_time_path;
4001 }
4002
4003 /**
4004  * Closes all file descriptors except the first three (i.e. stdin,
4005  * stdout, stderr).
4006  */
4007 void
4008 _dbus_close_all (void)
4009 {
4010   int maxfds, i;
4011
4012 #ifdef __linux__
4013   DIR *d;
4014
4015   /* On Linux we can optimize this a bit if /proc is available. If it
4016      isn't available, fall back to the brute force way. */
4017
4018   d = opendir ("/proc/self/fd");
4019   if (d)
4020     {
4021       for (;;)
4022         {
4023           struct dirent buf, *de;
4024           int k, fd;
4025           long l;
4026           char *e = NULL;
4027
4028           k = readdir_r (d, &buf, &de);
4029           if (k != 0 || !de)
4030             break;
4031
4032           if (de->d_name[0] == '.')
4033             continue;
4034
4035           errno = 0;
4036           l = strtol (de->d_name, &e, 10);
4037           if (errno != 0 || e == NULL || *e != '\0')
4038             continue;
4039
4040           fd = (int) l;
4041           if (fd < 3)
4042             continue;
4043
4044           if (fd == dirfd (d))
4045             continue;
4046
4047           close (fd);
4048         }
4049
4050       closedir (d);
4051       return;
4052     }
4053 #endif
4054
4055   maxfds = sysconf (_SC_OPEN_MAX);
4056
4057   /* Pick something reasonable if for some reason sysconf says
4058    * unlimited.
4059    */
4060   if (maxfds < 0)
4061     maxfds = 1024;
4062
4063   /* close all inherited fds */
4064   for (i = 3; i < maxfds; i++)
4065     close (i);
4066 }
4067
4068 /* tests in dbus-sysdeps-util.c */