chiark / gitweb /
75adba10de5cbce54f0fa93c079475e06d6c0820
[elogind.git] / dbus.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
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 <dbus/dbus.h>
23
24 #include <sys/epoll.h>
25 #include <sys/timerfd.h>
26 #include <errno.h>
27 #include <unistd.h>
28
29 #include "dbus.h"
30 #include "log.h"
31 #include "strv.h"
32 #include "cgroup.h"
33
34 static void bus_dispatch_status(DBusConnection *bus, DBusDispatchStatus status, void *data)  {
35         Manager *m = data;
36
37         assert(bus);
38         assert(m);
39         assert(m->bus == bus);
40
41         m->request_bus_dispatch = status != DBUS_DISPATCH_COMPLETE;
42 }
43
44 static void system_bus_dispatch_status(DBusConnection *bus, DBusDispatchStatus status, void *data)  {
45         Manager *m = data;
46
47         assert(bus);
48         assert(m);
49         assert(m->system_bus == bus);
50
51         m->request_system_bus_dispatch = status != DBUS_DISPATCH_COMPLETE;
52 }
53
54 static uint32_t bus_flags_to_events(DBusWatch *bus_watch) {
55         unsigned flags;
56         uint32_t events = 0;
57
58         assert(bus_watch);
59
60         /* no watch flags for disabled watches */
61         if (!dbus_watch_get_enabled(bus_watch))
62                 return 0;
63
64         flags = dbus_watch_get_flags(bus_watch);
65
66         if (flags & DBUS_WATCH_READABLE)
67                 events |= EPOLLIN;
68         if (flags & DBUS_WATCH_WRITABLE)
69                 events |= EPOLLOUT;
70
71         return events | EPOLLHUP | EPOLLERR;
72 }
73
74 static unsigned events_to_bus_flags(uint32_t events) {
75         unsigned flags = 0;
76
77         if (events & EPOLLIN)
78                 flags |= DBUS_WATCH_READABLE;
79         if (events & EPOLLOUT)
80                 flags |= DBUS_WATCH_WRITABLE;
81         if (events & EPOLLHUP)
82                 flags |= DBUS_WATCH_HANGUP;
83         if (events & EPOLLERR)
84                 flags |= DBUS_WATCH_ERROR;
85
86         return flags;
87 }
88
89 void bus_watch_event(Manager *m, Watch *w, int events) {
90         assert(m);
91         assert(w);
92
93         /* This is called by the event loop whenever there is
94          * something happening on D-Bus' file handles. */
95
96         if (!dbus_watch_get_enabled(w->data.bus_watch))
97                 return;
98
99         dbus_watch_handle(w->data.bus_watch, events_to_bus_flags(events));
100 }
101
102 static dbus_bool_t bus_add_watch(DBusWatch *bus_watch, void *data) {
103         Manager *m = data;
104         Watch *w;
105         struct epoll_event ev;
106
107         assert(bus_watch);
108         assert(m);
109
110         if (!(w = new0(Watch, 1)))
111                 return FALSE;
112
113         w->fd = dbus_watch_get_unix_fd(bus_watch);
114         w->type = WATCH_DBUS_WATCH;
115         w->data.bus_watch = bus_watch;
116
117         zero(ev);
118         ev.events = bus_flags_to_events(bus_watch);
119         ev.data.ptr = w;
120
121         if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, w->fd, &ev) < 0) {
122
123                 if (errno != EEXIST) {
124                         free(w);
125                         return FALSE;
126                 }
127
128                 /* Hmm, bloody D-Bus creates multiple watches on the
129                  * same fd. epoll() does not like that. As a dirty
130                  * hack we simply dup() the fd and hence get a second
131                  * one we can safely add to the epoll(). */
132
133                 if ((w->fd = dup(w->fd)) < 0) {
134                         free(w);
135                         return FALSE;
136                 }
137
138                 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, w->fd, &ev) < 0) {
139                         free(w);
140                         close_nointr_nofail(w->fd);
141                         return FALSE;
142                 }
143
144                 w->fd_is_dupped = true;
145         }
146
147         dbus_watch_set_data(bus_watch, w, NULL);
148
149         return TRUE;
150 }
151
152 static void bus_remove_watch(DBusWatch *bus_watch, void *data) {
153         Manager *m = data;
154         Watch *w;
155
156         assert(bus_watch);
157         assert(m);
158
159         if (!(w = dbus_watch_get_data(bus_watch)))
160                 return;
161
162         assert(w->type == WATCH_DBUS_WATCH);
163         assert_se(epoll_ctl(m->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
164
165         if (w->fd_is_dupped)
166                 close_nointr_nofail(w->fd);
167
168         free(w);
169 }
170
171 static void bus_toggle_watch(DBusWatch *bus_watch, void *data) {
172         Manager *m = data;
173         Watch *w;
174         struct epoll_event ev;
175
176         assert(bus_watch);
177         assert(m);
178
179         assert_se(w = dbus_watch_get_data(bus_watch));
180         assert(w->type == WATCH_DBUS_WATCH);
181
182         zero(ev);
183         ev.events = bus_flags_to_events(bus_watch);
184         ev.data.ptr = w;
185
186         assert_se(epoll_ctl(m->epoll_fd, EPOLL_CTL_MOD, w->fd, &ev) == 0);
187 }
188
189 static int bus_timeout_arm(Manager *m, Watch *w) {
190         struct itimerspec its;
191
192         assert(m);
193         assert(w);
194
195         zero(its);
196
197         if (dbus_timeout_get_enabled(w->data.bus_timeout)) {
198                 timespec_store(&its.it_value, dbus_timeout_get_interval(w->data.bus_timeout) * USEC_PER_MSEC);
199                 its.it_interval = its.it_interval;
200         }
201
202         if (timerfd_settime(w->fd, 0, &its, NULL) < 0)
203                 return -errno;
204
205         return 0;
206 }
207
208 void bus_timeout_event(Manager *m, Watch *w, int events) {
209         assert(m);
210         assert(w);
211
212         /* This is called by the event loop whenever there is
213          * something happening on D-Bus' file handles. */
214
215         if (!(dbus_timeout_get_enabled(w->data.bus_timeout)))
216                 return;
217
218         dbus_timeout_handle(w->data.bus_timeout);
219 }
220
221 static dbus_bool_t bus_add_timeout(DBusTimeout *timeout, void *data) {
222         Manager *m = data;
223         Watch *w;
224         struct epoll_event ev;
225
226         assert(timeout);
227         assert(m);
228
229         if (!(w = new0(Watch, 1)))
230                 return FALSE;
231
232         if (!(w->fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC)) < 0)
233                 goto fail;
234
235         w->type = WATCH_DBUS_TIMEOUT;
236         w->data.bus_timeout = timeout;
237
238         if (bus_timeout_arm(m, w) < 0)
239                 goto fail;
240
241         zero(ev);
242         ev.events = EPOLLIN;
243         ev.data.ptr = w;
244
245         if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, w->fd, &ev) < 0)
246                 goto fail;
247
248         dbus_timeout_set_data(timeout, w, NULL);
249
250         return TRUE;
251
252 fail:
253         if (w->fd >= 0)
254                 close_nointr_nofail(w->fd);
255
256         free(w);
257         return FALSE;
258 }
259
260 static void bus_remove_timeout(DBusTimeout *timeout, void *data) {
261         Manager *m = data;
262         Watch *w;
263
264         assert(timeout);
265         assert(m);
266
267         if (!(w = dbus_timeout_get_data(timeout)))
268                 return;
269
270         assert(w->type == WATCH_DBUS_TIMEOUT);
271         assert_se(epoll_ctl(m->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
272         close_nointr_nofail(w->fd);
273         free(w);
274 }
275
276 static void bus_toggle_timeout(DBusTimeout *timeout, void *data) {
277         Manager *m = data;
278         Watch *w;
279         int r;
280
281         assert(timeout);
282         assert(m);
283
284         assert_se(w = dbus_timeout_get_data(timeout));
285         assert(w->type == WATCH_DBUS_TIMEOUT);
286
287         if ((r = bus_timeout_arm(m, w)) < 0)
288                 log_error("Failed to rearm timer: %s", strerror(-r));
289 }
290
291 static DBusHandlerResult bus_message_filter(DBusConnection  *connection, DBusMessage  *message, void *data) {
292         Manager *m = data;
293         DBusError error;
294
295         assert(connection);
296         assert(message);
297         assert(m);
298
299         dbus_error_init(&error);
300
301         /* log_debug("Got D-Bus request: %s.%s() on %s", */
302         /*           dbus_message_get_interface(message), */
303         /*           dbus_message_get_member(message), */
304         /*           dbus_message_get_path(message)); */
305
306         if (dbus_message_is_signal(message, DBUS_INTERFACE_LOCAL, "Disconnected")) {
307                 log_error("Warning! D-Bus connection terminated.");
308
309                 /* FIXME: we probably should restart D-Bus here */
310
311         } else if (dbus_message_is_signal(message, DBUS_INTERFACE_DBUS, "NameOwnerChanged")) {
312                 const char *name, *old, *new;
313
314                 if (!dbus_message_get_args(message, &error,
315                                            DBUS_TYPE_STRING, &name,
316                                            DBUS_TYPE_STRING, &old,
317                                            DBUS_TYPE_STRING, &new,
318                                            DBUS_TYPE_INVALID))
319                         log_error("Failed to parse NameOwnerChanged message: %s", error.message);
320                 else  {
321                         if (set_remove(m->subscribed, (char*) name))
322                                 log_debug("Subscription client vanished: %s (left: %u)", name, set_size(m->subscribed));
323                 }
324         }
325
326         dbus_error_free(&error);
327         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
328 }
329
330 static DBusHandlerResult system_bus_message_filter(DBusConnection  *connection, DBusMessage  *message, void *data) {
331         Manager *m = data;
332         DBusError error;
333
334         assert(connection);
335         assert(message);
336         assert(m);
337
338         dbus_error_init(&error);
339
340         /* log_debug("Got D-Bus request: %s.%s() on %s", */
341         /*           dbus_message_get_interface(message), */
342         /*           dbus_message_get_member(message), */
343         /*           dbus_message_get_path(message)); */
344
345         if (dbus_message_is_signal(message, DBUS_INTERFACE_LOCAL, "Disconnected")) {
346                 log_error("Warning! D-Bus connection terminated.");
347
348                 /* FIXME: we probably should restart D-Bus here */
349
350         } if (dbus_message_is_signal(message, "org.freedesktop.systemd1.Agent", "Released")) {
351                 const char *cgroup;
352
353                 if (!dbus_message_get_args(message, &error,
354                                            DBUS_TYPE_STRING, &cgroup,
355                                            DBUS_TYPE_INVALID))
356                         log_error("Failed to parse Released message: %s", error.message);
357                 else
358                         cgroup_notify_empty(m, cgroup);
359         }
360
361         dbus_error_free(&error);
362         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
363 }
364
365 unsigned bus_dispatch(Manager *m) {
366         assert(m);
367
368         if (m->request_bus_dispatch)
369                 if (dbus_connection_dispatch(m->bus) == DBUS_DISPATCH_COMPLETE) {
370                         m->request_bus_dispatch = false;
371                         return 1;
372                 }
373
374         if (m->request_system_bus_dispatch)
375                 if (dbus_connection_dispatch(m->system_bus) == DBUS_DISPATCH_COMPLETE) {
376                         m->request_system_bus_dispatch = false;
377                         return 1;
378                 }
379
380         return 0;
381 }
382
383 static void pending_cb(DBusPendingCall *pending, void *userdata) {
384         DBusMessage *reply;
385         DBusError error;
386
387         dbus_error_init(&error);
388
389         assert_se(reply = dbus_pending_call_steal_reply(pending));
390
391         switch (dbus_message_get_type(reply)) {
392
393         case DBUS_MESSAGE_TYPE_ERROR:
394
395                 assert_se(dbus_set_error_from_message(&error, reply));
396                 log_warning("RequestName() failed: %s", error.message);
397                 break;
398
399         case DBUS_MESSAGE_TYPE_METHOD_RETURN: {
400                 uint32_t r;
401
402                 if (!dbus_message_get_args(reply,
403                                            &error,
404                                            DBUS_TYPE_UINT32, &r,
405                                            DBUS_TYPE_INVALID)) {
406                         log_error("Failed to parse RequestName() reply: %s", error.message);
407                         break;
408                 }
409
410                 if (r == 1)
411                         log_debug("Successfully acquired name.");
412                 else
413                         log_error("Name already owned.");
414
415                 break;
416         }
417
418         default:
419                 assert_not_reached("Invalid reply message");
420         }
421
422         dbus_message_unref(reply);
423         dbus_error_free(&error);
424 }
425
426 static int request_name(Manager *m) {
427         DBusMessage *message;
428         const char *name = "org.freedesktop.systemd1";
429         uint32_t flags = 0;
430         DBusPendingCall *pending;
431
432         if (!(message = dbus_message_new_method_call(
433                               DBUS_SERVICE_DBUS,
434                               DBUS_PATH_DBUS,
435                               DBUS_INTERFACE_DBUS,
436                               "RequestName")))
437                 return -ENOMEM;
438
439         if (!dbus_message_append_args(
440                             message,
441                             DBUS_TYPE_STRING, &name,
442                             DBUS_TYPE_UINT32, &flags,
443                             DBUS_TYPE_INVALID)) {
444                 dbus_message_unref(message);
445                 return -ENOMEM;
446         }
447
448         if (!dbus_connection_send_with_reply(m->bus, message, &pending, -1)) {
449                 dbus_message_unref(message);
450                 return -ENOMEM;
451         }
452
453
454         dbus_message_unref(message);
455
456         if (!dbus_pending_call_set_notify(pending, pending_cb, NULL, NULL)) {
457                 dbus_pending_call_cancel(pending);
458                 dbus_pending_call_unref(pending);
459                 return -ENOMEM;
460         }
461
462
463         dbus_pending_call_unref(pending);
464
465         /* We simple ask for the name and don't wait for it. Sooner or
466          * later we'll have it. */
467
468         return 0;
469 }
470
471 static int bus_setup_loop(Manager *m, DBusConnection *bus) {
472         assert(m);
473         assert(bus);
474
475         dbus_connection_set_exit_on_disconnect(bus, FALSE);
476         if (!dbus_connection_set_watch_functions(bus, bus_add_watch, bus_remove_watch, bus_toggle_watch, m, NULL) ||
477             !dbus_connection_set_timeout_functions(bus, bus_add_timeout, bus_remove_timeout, bus_toggle_timeout, m, NULL))
478                 return -ENOMEM;
479
480         return 0;
481 }
482
483 int bus_init(Manager *m) {
484         DBusError error;
485         char *id;
486         int r;
487
488         assert(m);
489
490         if (m->bus)
491                 return 0;
492
493         if (!(m->subscribed = set_new(string_hash_func, string_compare_func)))
494                 return -ENOMEM;
495
496         dbus_connection_set_change_sigpipe(FALSE);
497
498         dbus_error_init(&error);
499         if (!(m->bus = dbus_bus_get_private(m->running_as == MANAGER_SESSION ? DBUS_BUS_SESSION : DBUS_BUS_SYSTEM, &error))) {
500                 log_error("Failed to get D-Bus connection: %s", error.message);
501                 dbus_error_free(&error);
502                 bus_done(m);
503                 return -ECONNREFUSED;
504         }
505
506         if ((r = bus_setup_loop(m, m->bus)) < 0) {
507                 bus_done(m);
508                 return r;
509         }
510
511         dbus_connection_set_dispatch_status_function(m->bus, bus_dispatch_status, m, NULL);
512
513         if (m->running_as == MANAGER_SESSION) {
514                 if (!(m->system_bus = dbus_bus_get_private(DBUS_BUS_SYSTEM, &error))) {
515                         log_error("Failed to get D-Bus connection: %s", error.message);
516                         dbus_error_free(&error);
517                         bus_done(m);
518                         return -ECONNREFUSED;
519                 }
520
521                 if ((r = bus_setup_loop(m, m->system_bus)) < 0) {
522                         bus_done(m);
523                         return r;
524                 }
525
526                 dbus_connection_set_dispatch_status_function(m->system_bus, system_bus_dispatch_status, m, NULL);
527         } else
528                 m->system_bus = m->bus;
529
530         if (!dbus_connection_register_object_path(m->bus, "/org/freedesktop/systemd1", &bus_manager_vtable, m) ||
531             !dbus_connection_register_fallback(m->bus, "/org/freedesktop/systemd1/unit", &bus_unit_vtable, m) ||
532             !dbus_connection_register_fallback(m->bus, "/org/freedesktop/systemd1/job", &bus_job_vtable, m) ||
533             !dbus_connection_add_filter(m->bus, bus_message_filter, m, NULL) ||
534             !dbus_connection_add_filter(m->system_bus, system_bus_message_filter, m, NULL)) {
535                 bus_done(m);
536                 return -ENOMEM;
537         }
538
539         dbus_bus_add_match(m->bus,
540                            "type='signal',"
541                            "sender='"DBUS_SERVICE_DBUS"',"
542                            "interface='"DBUS_INTERFACE_DBUS"',"
543                            "path='"DBUS_PATH_DBUS"'",
544                            &error);
545
546         if (dbus_error_is_set(&error)) {
547                 log_error("Failed to register match: %s", error.message);
548                 dbus_error_free(&error);
549                 return -ENOMEM;
550         }
551
552         if ((r = request_name(m)) < 0) {
553                 bus_done(m);
554                 return r;
555         }
556
557         dbus_bus_add_match(m->system_bus,
558                            "type='signal',"
559                            "interface='org.freedesktop.systemd1.Agent',"
560                            "path='/org/freedesktop/systemd1/agent'",
561                            &error);
562
563         if (dbus_error_is_set(&error)) {
564                 log_error("Failed to register match: %s", error.message);
565                 dbus_error_free(&error);
566                 bus_done(m);
567                 return -ENOMEM;
568         }
569
570         log_debug("Successfully connected to D-Bus bus %s as %s",
571                   strnull((id = dbus_connection_get_server_id(m->bus))),
572                   strnull(dbus_bus_get_unique_name(m->bus)));
573         dbus_free(id);
574
575         log_debug("Successfully connected to system D-Bus bus %s as %s",
576                   strnull((id = dbus_connection_get_server_id(m->system_bus))),
577                   strnull(dbus_bus_get_unique_name(m->system_bus)));
578         dbus_free(id);
579
580         m->request_bus_dispatch = true;
581         m->request_system_bus_dispatch = true;
582
583         return 0;
584 }
585
586 void bus_done(Manager *m) {
587         assert(m);
588
589         if (m->system_bus && m->system_bus != m->bus) {
590                 dbus_connection_close(m->system_bus);
591                 dbus_connection_unref(m->system_bus);
592                 m->system_bus = NULL;
593         }
594
595         if (m->bus) {
596                 dbus_connection_close(m->bus);
597                 dbus_connection_unref(m->bus);
598                 m->bus = NULL;
599         }
600
601         if (m->subscribed) {
602                 char *c;
603
604                 while ((c = set_steal_first(m->subscribed)))
605                         free(c);
606
607                 set_free(m->subscribed);
608                 m->subscribed = NULL;
609         }
610 }
611
612 DBusHandlerResult bus_default_message_handler(Manager *m, DBusMessage *message, const char*introspection, const BusProperty *properties) {
613         DBusError error;
614         DBusMessage *reply = NULL;
615         int r;
616
617         assert(m);
618         assert(message);
619
620         dbus_error_init(&error);
621
622         if (dbus_message_is_method_call(message, "org.freedesktop.DBus.Introspectable", "Introspect") && introspection) {
623
624                 if (!(reply = dbus_message_new_method_return(message)))
625                         goto oom;
626
627                 if (!dbus_message_append_args(reply, DBUS_TYPE_STRING, &introspection, DBUS_TYPE_INVALID))
628                         goto oom;
629
630         } else if (dbus_message_is_method_call(message, "org.freedesktop.DBus.Properties", "Get") && properties) {
631                 const char *interface, *property;
632                 const BusProperty *p;
633
634                 if (!dbus_message_get_args(
635                             message,
636                             &error,
637                             DBUS_TYPE_STRING, &interface,
638                             DBUS_TYPE_STRING, &property,
639                             DBUS_TYPE_INVALID))
640                         return bus_send_error_reply(m, message, &error, -EINVAL);
641
642                 for (p = properties; p->property; p++)
643                         if (streq(p->interface, interface) && streq(p->property, property))
644                                 break;
645
646                 if (p->property) {
647                         DBusMessageIter iter, sub;
648
649                         if (!(reply = dbus_message_new_method_return(message)))
650                                 goto oom;
651
652                         dbus_message_iter_init_append(reply, &iter);
653
654                         if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, p->signature, &sub))
655                                 goto oom;
656
657                         if ((r = p->append(m, &sub, property, p->data)) < 0) {
658
659                                 if (r == -ENOMEM)
660                                         goto oom;
661
662                                 dbus_message_unref(reply);
663                                 return bus_send_error_reply(m, message, NULL, r);
664                         }
665
666                         if (!dbus_message_iter_close_container(&iter, &sub))
667                                 goto oom;
668                 }
669         } else if (dbus_message_is_method_call(message, "org.freedesktop.DBus.Properties", "GetAll") && properties) {
670                 const char *interface;
671                 const BusProperty *p;
672                 DBusMessageIter iter, sub, sub2, sub3;
673                 bool any = false;
674
675                 if (!dbus_message_get_args(
676                             message,
677                             &error,
678                             DBUS_TYPE_STRING, &interface,
679                             DBUS_TYPE_INVALID))
680                         return bus_send_error_reply(m, message, &error, -EINVAL);
681
682                 if (!(reply = dbus_message_new_method_return(message)))
683                         goto oom;
684
685                 dbus_message_iter_init_append(reply, &iter);
686
687                 if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{sv}", &sub))
688                         goto oom;
689
690                 for (p = properties; p->property; p++) {
691                         if (!streq(p->interface, interface))
692                                 continue;
693
694                         if (!dbus_message_iter_open_container(&sub, DBUS_TYPE_DICT_ENTRY, NULL, &sub2) ||
695                             !dbus_message_iter_append_basic(&sub2, DBUS_TYPE_STRING, &p->property) ||
696                             !dbus_message_iter_open_container(&sub2, DBUS_TYPE_VARIANT, p->signature, &sub3))
697                                 goto oom;
698
699                         if ((r = p->append(m, &sub3, p->property, p->data)) < 0) {
700
701                                 if (r == -ENOMEM)
702                                         goto oom;
703
704                                 dbus_message_unref(reply);
705                                 return bus_send_error_reply(m, message, NULL, r);
706                         }
707
708                         if (!dbus_message_iter_close_container(&sub2, &sub3) ||
709                             !dbus_message_iter_close_container(&sub, &sub2))
710                                 goto oom;
711
712                         any = true;
713                 }
714
715                 if (!dbus_message_iter_close_container(&iter, &sub))
716                         goto oom;
717         }
718
719         if (reply) {
720                 if (!dbus_connection_send(m->bus, reply, NULL))
721                         goto oom;
722
723                 dbus_message_unref(reply);
724                 return DBUS_HANDLER_RESULT_HANDLED;
725         }
726
727         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
728
729 oom:
730         if (reply)
731                 dbus_message_unref(reply);
732
733         dbus_error_free(&error);
734
735         return DBUS_HANDLER_RESULT_NEED_MEMORY;
736 }
737
738 static const char *error_to_dbus(int error) {
739
740         switch(error) {
741
742         case -EINVAL:
743                 return DBUS_ERROR_INVALID_ARGS;
744
745         case -ENOMEM:
746                 return DBUS_ERROR_NO_MEMORY;
747
748         case -EPERM:
749         case -EACCES:
750                 return DBUS_ERROR_ACCESS_DENIED;
751
752         case -ESRCH:
753                 return DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN;
754
755         case -ENOENT:
756                 return DBUS_ERROR_FILE_NOT_FOUND;
757
758         case -EEXIST:
759                 return DBUS_ERROR_FILE_EXISTS;
760
761         case -ETIMEDOUT:
762                 return DBUS_ERROR_TIMEOUT;
763
764         case -EIO:
765                 return DBUS_ERROR_IO_ERROR;
766
767         case -ENETRESET:
768         case -ECONNABORTED:
769         case -ECONNRESET:
770                 return DBUS_ERROR_DISCONNECTED;
771         }
772
773         return DBUS_ERROR_FAILED;
774 }
775
776 DBusHandlerResult bus_send_error_reply(Manager *m, DBusMessage *message, DBusError *bus_error, int error) {
777         DBusMessage *reply = NULL;
778         const char *name, *text;
779
780         if (bus_error && dbus_error_is_set(bus_error)) {
781                 name = bus_error->name;
782                 text = bus_error->message;
783         } else {
784                 name = error_to_dbus(error);
785                 text = strerror(-error);
786         }
787
788         if (!(reply = dbus_message_new_error(message, name, text)))
789                 goto oom;
790
791         if (!dbus_connection_send(m->bus, reply, NULL))
792                 goto oom;
793
794         dbus_message_unref(reply);
795
796         if (bus_error)
797                 dbus_error_free(bus_error);
798
799         return DBUS_HANDLER_RESULT_HANDLED;
800
801 oom:
802         if (reply)
803                 dbus_message_unref(reply);
804
805         if (bus_error)
806                 dbus_error_free(bus_error);
807
808         return DBUS_HANDLER_RESULT_NEED_MEMORY;
809 }
810
811 int bus_property_append_string(Manager *m, DBusMessageIter *i, const char *property, void *data) {
812         const char *t = data;
813
814         assert(m);
815         assert(i);
816         assert(property);
817
818         if (!t)
819                 t = "";
820
821         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_STRING, &t))
822                 return -ENOMEM;
823
824         return 0;
825 }
826
827 int bus_property_append_strv(Manager *m, DBusMessageIter *i, const char *property, void *data) {
828         DBusMessageIter sub;
829         char **t = data;
830
831         assert(m);
832         assert(i);
833         assert(property);
834
835         if (!dbus_message_iter_open_container(i, DBUS_TYPE_ARRAY, "s", &sub))
836                 return -ENOMEM;
837
838         STRV_FOREACH(t, t)
839                 if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, t))
840                         return -ENOMEM;
841
842         if (!dbus_message_iter_close_container(i, &sub))
843                 return -ENOMEM;
844
845         return 0;
846 }
847
848 int bus_property_append_bool(Manager *m, DBusMessageIter *i, const char *property, void *data) {
849         bool *b = data;
850         dbus_bool_t db;
851
852         assert(m);
853         assert(i);
854         assert(property);
855         assert(b);
856
857         db = *b;
858
859         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_BOOLEAN, &db))
860                 return -ENOMEM;
861
862         return 0;
863 }
864
865 int bus_property_append_uint64(Manager *m, DBusMessageIter *i, const char *property, void *data) {
866         assert(m);
867         assert(i);
868         assert(property);
869         assert(data);
870
871         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_UINT64, data))
872                 return -ENOMEM;
873
874         return 0;
875 }
876
877 int bus_property_append_uint32(Manager *m, DBusMessageIter *i, const char *property, void *data) {
878         assert(m);
879         assert(i);
880         assert(property);
881         assert(data);
882
883         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_UINT32, data))
884                 return -ENOMEM;
885
886         return 0;
887 }