chiark / gitweb /
25b718ec026533463341bb382eadbbd3d03e35e8
[elogind.git] / src / dbus-common.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <assert.h>
23 #include <sys/socket.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <dbus/dbus.h>
29
30 #include "log.h"
31 #include "dbus-common.h"
32 #include "util.h"
33
34 int bus_check_peercred(DBusConnection *c) {
35         int fd;
36         struct ucred ucred;
37         socklen_t l;
38
39         assert(c);
40
41         assert_se(dbus_connection_get_unix_fd(c, &fd));
42
43         l = sizeof(struct ucred);
44         if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &ucred, &l) < 0) {
45                 log_error("SO_PEERCRED failed: %m");
46                 return -errno;
47         }
48
49         if (l != sizeof(struct ucred)) {
50                 log_error("SO_PEERCRED returned wrong size.");
51                 return -E2BIG;
52         }
53
54         if (ucred.uid != 0)
55                 return -EPERM;
56
57         return 1;
58 }
59
60 #define TIMEOUT_USEC (60*USEC_PER_SEC)
61
62 static int sync_auth(DBusConnection *bus, DBusError *error) {
63         usec_t begin, tstamp;
64
65         assert(bus);
66
67         /* This complexity should probably move into D-Bus itself:
68          *
69          * https://bugs.freedesktop.org/show_bug.cgi?id=35189 */
70
71         begin = tstamp = now(CLOCK_MONOTONIC);
72         for (;;) {
73
74                 if (tstamp > begin + TIMEOUT_USEC)
75                         break;
76
77                 if (dbus_connection_get_is_authenticated(bus))
78                         break;
79
80                 if (!dbus_connection_read_write_dispatch(bus, ((begin + TIMEOUT_USEC - tstamp) + USEC_PER_MSEC - 1) / USEC_PER_MSEC))
81                         break;
82
83                 tstamp = now(CLOCK_MONOTONIC);
84         }
85
86         if (!dbus_connection_get_is_connected(bus)) {
87                 dbus_set_error_const(error, DBUS_ERROR_NO_SERVER, "Connection terminated during authentication.");
88                 return -ECONNREFUSED;
89         }
90
91         if (!dbus_connection_get_is_authenticated(bus)) {
92                 dbus_set_error_const(error, DBUS_ERROR_TIMEOUT, "Failed to authenticate in time.");
93                 return -EACCES;
94         }
95
96         return 0;
97 }
98
99 int bus_connect(DBusBusType t, DBusConnection **_bus, bool *private, DBusError *error) {
100         DBusConnection *bus;
101         int r;
102
103         assert(_bus);
104
105         /* If we are root, then let's not go via the bus */
106         if (geteuid() == 0 && t == DBUS_BUS_SYSTEM) {
107                 if (!(bus = dbus_connection_open_private("unix:abstract=/org/freedesktop/systemd1/private", error)))
108                         return -EIO;
109
110                 dbus_connection_set_exit_on_disconnect(bus, FALSE);
111
112                 if (bus_check_peercred(bus) < 0) {
113                         dbus_connection_close(bus);
114                         dbus_connection_unref(bus);
115
116                         dbus_set_error_const(error, DBUS_ERROR_ACCESS_DENIED, "Failed to verify owner of bus.");
117                         return -EACCES;
118                 }
119
120                 if (private)
121                         *private = true;
122
123         } else {
124                 if (!(bus = dbus_bus_get_private(t, error)))
125                         return -EIO;
126
127                 dbus_connection_set_exit_on_disconnect(bus, FALSE);
128
129                 if (private)
130                         *private = false;
131         }
132
133         if ((r = sync_auth(bus, error)) < 0) {
134                 dbus_connection_close(bus);
135                 dbus_connection_unref(bus);
136                 return r;
137         }
138
139         *_bus = bus;
140         return 0;
141 }
142
143 int bus_connect_system_ssh(const char *user, const char *host, DBusConnection **_bus, DBusError *error) {
144         DBusConnection *bus;
145         char *p = NULL;
146         int r;
147
148         assert(_bus);
149         assert(user || host);
150
151         if (user && host)
152                 asprintf(&p, "exec:path=ssh,argv1=-xT,argv2=%s@%s,argv3=systemd-stdio-bridge", user, host);
153         else if (user)
154                 asprintf(&p, "exec:path=ssh,argv1=-xT,argv2=%s@localhost,argv3=systemd-stdio-bridge", user);
155         else if (host)
156                 asprintf(&p, "exec:path=ssh,argv1=-xT,argv2=%s,argv3=systemd-stdio-bridge", host);
157
158         if (!p) {
159                 dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
160                 return -ENOMEM;
161         }
162
163         bus = dbus_connection_open_private(p, error);
164         free(p);
165
166         if (!bus)
167                 return -EIO;
168
169         dbus_connection_set_exit_on_disconnect(bus, FALSE);
170
171         if ((r = sync_auth(bus, error)) < 0) {
172                 dbus_connection_close(bus);
173                 dbus_connection_unref(bus);
174                 return r;
175         }
176
177         if (!dbus_bus_register(bus, error)) {
178                 dbus_connection_close(bus);
179                 dbus_connection_unref(bus);
180                 return r;
181         }
182
183         *_bus = bus;
184         return 0;
185 }
186
187 int bus_connect_system_polkit(DBusConnection **_bus, DBusError *error) {
188         DBusConnection *bus;
189         int r;
190
191         assert(_bus);
192
193         /* Don't bother with PolicyKit if we are root */
194         if (geteuid() == 0)
195                 return bus_connect(DBUS_BUS_SYSTEM, _bus, NULL, error);
196
197         if (!(bus = dbus_connection_open_private("exec:path=pkexec,argv1=" SYSTEMD_STDIO_BRIDGE_BINARY_PATH, error)))
198                 return -EIO;
199
200         dbus_connection_set_exit_on_disconnect(bus, FALSE);
201
202         if ((r = sync_auth(bus, error)) < 0) {
203                 dbus_connection_close(bus);
204                 dbus_connection_unref(bus);
205                 return r;
206         }
207
208         if (!dbus_bus_register(bus, error)) {
209                 dbus_connection_close(bus);
210                 dbus_connection_unref(bus);
211                 return r;
212         }
213
214         *_bus = bus;
215         return 0;
216 }
217
218 const char *bus_error_message(const DBusError *error) {
219         assert(error);
220
221         /* Sometimes the D-Bus server is a little bit too verbose with
222          * its error messages, so let's override them here */
223         if (dbus_error_has_name(error, DBUS_ERROR_ACCESS_DENIED))
224                 return "Access denied";
225
226         return error->message;
227 }