chiark / gitweb /
bus-util: introduce bus_open_system_watch_bind_with_description()
[elogind.git] / src / shared / bus-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3   This file is part of systemd.
4
5   Copyright 2013 Lennart Poettering
6 ***/
7
8 #include <errno.h>
9 #include <fcntl.h>
10 #include <inttypes.h>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <sys/ioctl.h>
15 #include <sys/resource.h>
16 #include <sys/socket.h>
17 #include <unistd.h>
18
19 #include "sd-bus-protocol.h"
20 #include "sd-bus.h"
21 #include "sd-daemon.h"
22 #include "sd-event.h"
23 #include "sd-id128.h"
24
25 #include "alloc-util.h"
26 #include "bus-internal.h"
27 #include "bus-label.h"
28 #include "bus-message.h"
29 #include "bus-util.h"
30 #include "cap-list.h"
31 #include "cgroup-util.h"
32 #include "def.h"
33 #include "escape.h"
34 #include "fd-util.h"
35 #include "missing.h"
36 #include "mount-util.h"
37 #include "nsflags.h"
38 #include "parse-util.h"
39 #include "proc-cmdline.h"
40 //#include "rlimit-util.h"
41 #include "stdio-util.h"
42 #include "strv.h"
43 #include "user-util.h"
44
45 #if 0 /// UNNEEDED by elogind
46 static int name_owner_change_callback(sd_bus_message *m, void *userdata, sd_bus_error *ret_error) {
47         sd_event *e = userdata;
48
49         assert(m);
50         assert(e);
51
52         sd_bus_close(sd_bus_message_get_bus(m));
53         sd_event_exit(e, 0);
54
55         return 1;
56 }
57
58 int bus_async_unregister_and_exit(sd_event *e, sd_bus *bus, const char *name) {
59         const char *match;
60         const char *unique;
61         int r;
62
63         assert(e);
64         assert(bus);
65         assert(name);
66
67         /* We unregister the name here and then wait for the
68          * NameOwnerChanged signal for this event to arrive before we
69          * quit. We do this in order to make sure that any queued
70          * requests are still processed before we really exit. */
71
72         r = sd_bus_get_unique_name(bus, &unique);
73         if (r < 0)
74                 return r;
75
76         match = strjoina(
77                         "sender='org.freedesktop.DBus',"
78                         "type='signal',"
79                         "interface='org.freedesktop.DBus',"
80                         "member='NameOwnerChanged',"
81                         "path='/org/freedesktop/DBus',"
82                         "arg0='", name, "',",
83                         "arg1='", unique, "',",
84                         "arg2=''");
85
86         r = sd_bus_add_match_async(bus, NULL, match, name_owner_change_callback, NULL, e);
87         if (r < 0)
88                 return r;
89
90         r = sd_bus_release_name_async(bus, NULL, name, NULL, NULL);
91         if (r < 0)
92                 return r;
93
94         return 0;
95 }
96
97 int bus_event_loop_with_idle(
98                 sd_event *e,
99                 sd_bus *bus,
100                 const char *name,
101                 usec_t timeout,
102                 check_idle_t check_idle,
103                 void *userdata) {
104         bool exiting = false;
105         int r, code;
106
107         assert(e);
108         assert(bus);
109         assert(name);
110
111         for (;;) {
112                 bool idle;
113
114                 r = sd_event_get_state(e);
115                 if (r < 0)
116                         return r;
117                 if (r == SD_EVENT_FINISHED)
118                         break;
119
120                 if (check_idle)
121                         idle = check_idle(userdata);
122                 else
123                         idle = true;
124
125                 r = sd_event_run(e, exiting || !idle ? (uint64_t) -1 : timeout);
126                 if (r < 0)
127                         return r;
128
129                 if (r == 0 && !exiting && idle) {
130
131                         r = sd_bus_try_close(bus);
132                         if (r == -EBUSY)
133                                 continue;
134
135                         /* Fallback for dbus1 connections: we
136                          * unregister the name and wait for the
137                          * response to come through for it */
138                         if (r == -EOPNOTSUPP) {
139
140                                 /* Inform the service manager that we
141                                  * are going down, so that it will
142                                  * queue all further start requests,
143                                  * instead of assuming we are already
144                                  * running. */
145                                 sd_notify(false, "STOPPING=1");
146
147                                 r = bus_async_unregister_and_exit(e, bus, name);
148                                 if (r < 0)
149                                         return r;
150
151                                 exiting = true;
152                                 continue;
153                         }
154
155                         if (r < 0)
156                                 return r;
157
158                         sd_event_exit(e, 0);
159                         break;
160                 }
161         }
162
163         r = sd_event_get_exit_code(e, &code);
164         if (r < 0)
165                 return r;
166
167         return code;
168 }
169 #endif // 0
170
171 int bus_name_has_owner(sd_bus *c, const char *name, sd_bus_error *error) {
172         _cleanup_(sd_bus_message_unrefp) sd_bus_message *rep = NULL;
173         int r, has_owner = 0;
174
175         assert(c);
176         assert(name);
177
178         r = sd_bus_call_method(c,
179                                "org.freedesktop.DBus",
180                                "/org/freedesktop/dbus",
181                                "org.freedesktop.DBus",
182                                "NameHasOwner",
183                                error,
184                                &rep,
185                                "s",
186                                name);
187         if (r < 0)
188                 return r;
189
190         r = sd_bus_message_read_basic(rep, 'b', &has_owner);
191         if (r < 0)
192                 return sd_bus_error_set_errno(error, r);
193
194         return has_owner;
195 }
196
197 static int check_good_user(sd_bus_message *m, uid_t good_user) {
198         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
199         uid_t sender_uid;
200         int r;
201
202         assert(m);
203
204         if (good_user == UID_INVALID)
205                 return 0;
206
207         r = sd_bus_query_sender_creds(m, SD_BUS_CREDS_EUID, &creds);
208         if (r < 0)
209                 return r;
210
211         /* Don't trust augmented credentials for authorization */
212         assert_return((sd_bus_creds_get_augmented_mask(creds) & SD_BUS_CREDS_EUID) == 0, -EPERM);
213
214         r = sd_bus_creds_get_euid(creds, &sender_uid);
215         if (r < 0)
216                 return r;
217
218         return sender_uid == good_user;
219 }
220
221 int bus_test_polkit(
222                 sd_bus_message *call,
223                 int capability,
224                 const char *action,
225                 const char **details,
226                 uid_t good_user,
227                 bool *_challenge,
228                 sd_bus_error *e) {
229
230         int r;
231
232         assert(call);
233         assert(action);
234
235         /* Tests non-interactively! */
236
237         r = check_good_user(call, good_user);
238         if (r != 0)
239                 return r;
240
241         r = sd_bus_query_sender_privilege(call, capability);
242         if (r < 0)
243                 return r;
244         else if (r > 0)
245                 return 1;
246 #if ENABLE_POLKIT
247         else {
248                 _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL;
249                 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
250                 int authorized = false, challenge = false;
251                 const char *sender, **k, **v;
252
253                 sender = sd_bus_message_get_sender(call);
254                 if (!sender)
255                         return -EBADMSG;
256
257                 r = sd_bus_message_new_method_call(
258                                 call->bus,
259                                 &request,
260                                 "org.freedesktop.PolicyKit1",
261                                 "/org/freedesktop/PolicyKit1/Authority",
262                                 "org.freedesktop.PolicyKit1.Authority",
263                                 "CheckAuthorization");
264                 if (r < 0)
265                         return r;
266
267                 r = sd_bus_message_append(
268                                 request,
269                                 "(sa{sv})s",
270                                 "system-bus-name", 1, "name", "s", sender,
271                                 action);
272                 if (r < 0)
273                         return r;
274
275                 r = sd_bus_message_open_container(request, 'a', "{ss}");
276                 if (r < 0)
277                         return r;
278
279                 STRV_FOREACH_PAIR(k, v, details) {
280                         r = sd_bus_message_append(request, "{ss}", *k, *v);
281                         if (r < 0)
282                                 return r;
283                 }
284
285                 r = sd_bus_message_close_container(request);
286                 if (r < 0)
287                         return r;
288
289                 r = sd_bus_message_append(request, "us", 0, NULL);
290                 if (r < 0)
291                         return r;
292
293                 r = sd_bus_call(call->bus, request, 0, e, &reply);
294                 if (r < 0) {
295                         /* Treat no PK available as access denied */
296                         if (sd_bus_error_has_name(e, SD_BUS_ERROR_SERVICE_UNKNOWN)) {
297                                 sd_bus_error_free(e);
298                                 return -EACCES;
299                         }
300
301                         return r;
302                 }
303
304                 r = sd_bus_message_enter_container(reply, 'r', "bba{ss}");
305                 if (r < 0)
306                         return r;
307
308                 r = sd_bus_message_read(reply, "bb", &authorized, &challenge);
309                 if (r < 0)
310                         return r;
311
312                 if (authorized)
313                         return 1;
314
315                 if (_challenge) {
316                         *_challenge = challenge;
317                         return 0;
318                 }
319         }
320 #endif
321
322         return -EACCES;
323 }
324
325 #if ENABLE_POLKIT
326
327 typedef struct AsyncPolkitQuery {
328         sd_bus_message *request, *reply;
329         sd_bus_message_handler_t callback;
330         void *userdata;
331         sd_bus_slot *slot;
332         Hashmap *registry;
333 } AsyncPolkitQuery;
334
335 static void async_polkit_query_free(AsyncPolkitQuery *q) {
336
337         if (!q)
338                 return;
339
340         sd_bus_slot_unref(q->slot);
341
342         if (q->registry && q->request)
343                 hashmap_remove(q->registry, q->request);
344
345         sd_bus_message_unref(q->request);
346         sd_bus_message_unref(q->reply);
347
348         free(q);
349 }
350
351 static int async_polkit_callback(sd_bus_message *reply, void *userdata, sd_bus_error *error) {
352         _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
353         AsyncPolkitQuery *q = userdata;
354         int r;
355
356         assert(reply);
357         assert(q);
358
359         q->slot = sd_bus_slot_unref(q->slot);
360         q->reply = sd_bus_message_ref(reply);
361
362         r = sd_bus_message_rewind(q->request, true);
363         if (r < 0) {
364                 r = sd_bus_reply_method_errno(q->request, r, NULL);
365                 goto finish;
366         }
367
368         r = q->callback(q->request, q->userdata, &error_buffer);
369         r = bus_maybe_reply_error(q->request, r, &error_buffer);
370
371 finish:
372         async_polkit_query_free(q);
373
374         return r;
375 }
376
377 #endif
378
379 int bus_verify_polkit_async(
380                 sd_bus_message *call,
381                 int capability,
382                 const char *action,
383                 const char **details,
384                 bool interactive,
385                 uid_t good_user,
386                 Hashmap **registry,
387                 sd_bus_error *error) {
388
389 #if ENABLE_POLKIT
390         _cleanup_(sd_bus_message_unrefp) sd_bus_message *pk = NULL;
391         AsyncPolkitQuery *q;
392         const char *sender, **k, **v;
393         sd_bus_message_handler_t callback;
394         void *userdata;
395         int c;
396 #endif
397         int r;
398
399         assert(call);
400         assert(action);
401         assert(registry);
402
403         r = check_good_user(call, good_user);
404         if (r != 0)
405                 return r;
406
407 #if ENABLE_POLKIT
408         q = hashmap_get(*registry, call);
409         if (q) {
410                 int authorized, challenge;
411
412                 /* This is the second invocation of this function, and
413                  * there's already a response from polkit, let's
414                  * process it */
415                 assert(q->reply);
416
417                 if (sd_bus_message_is_method_error(q->reply, NULL)) {
418                         const sd_bus_error *e;
419
420                         /* Copy error from polkit reply */
421                         e = sd_bus_message_get_error(q->reply);
422                         sd_bus_error_copy(error, e);
423
424                         /* Treat no PK available as access denied */
425                         if (sd_bus_error_has_name(e, SD_BUS_ERROR_SERVICE_UNKNOWN))
426                                 return -EACCES;
427
428                         return -sd_bus_error_get_errno(e);
429                 }
430
431                 r = sd_bus_message_enter_container(q->reply, 'r', "bba{ss}");
432                 if (r >= 0)
433                         r = sd_bus_message_read(q->reply, "bb", &authorized, &challenge);
434
435                 if (r < 0)
436                         return r;
437
438                 if (authorized)
439                         return 1;
440
441                 if (challenge)
442                         return sd_bus_error_set(error, SD_BUS_ERROR_INTERACTIVE_AUTHORIZATION_REQUIRED, "Interactive authentication required.");
443
444                 return -EACCES;
445         }
446 #endif
447
448         r = sd_bus_query_sender_privilege(call, capability);
449         if (r < 0)
450                 return r;
451         else if (r > 0)
452                 return 1;
453
454 #if ENABLE_POLKIT
455         if (sd_bus_get_current_message(call->bus) != call)
456                 return -EINVAL;
457
458         callback = sd_bus_get_current_handler(call->bus);
459         if (!callback)
460                 return -EINVAL;
461
462         userdata = sd_bus_get_current_userdata(call->bus);
463
464         sender = sd_bus_message_get_sender(call);
465         if (!sender)
466                 return -EBADMSG;
467
468         c = sd_bus_message_get_allow_interactive_authorization(call);
469         if (c < 0)
470                 return c;
471         if (c > 0)
472                 interactive = true;
473
474         r = hashmap_ensure_allocated(registry, NULL);
475         if (r < 0)
476                 return r;
477
478         r = sd_bus_message_new_method_call(
479                         call->bus,
480                         &pk,
481                         "org.freedesktop.PolicyKit1",
482                         "/org/freedesktop/PolicyKit1/Authority",
483                         "org.freedesktop.PolicyKit1.Authority",
484                         "CheckAuthorization");
485         if (r < 0)
486                 return r;
487
488         r = sd_bus_message_append(
489                         pk,
490                         "(sa{sv})s",
491                         "system-bus-name", 1, "name", "s", sender,
492                         action);
493         if (r < 0)
494                 return r;
495
496         r = sd_bus_message_open_container(pk, 'a', "{ss}");
497         if (r < 0)
498                 return r;
499
500         STRV_FOREACH_PAIR(k, v, details) {
501                 r = sd_bus_message_append(pk, "{ss}", *k, *v);
502                 if (r < 0)
503                         return r;
504         }
505
506         r = sd_bus_message_close_container(pk);
507         if (r < 0)
508                 return r;
509
510         r = sd_bus_message_append(pk, "us", !!interactive, NULL);
511         if (r < 0)
512                 return r;
513
514         q = new0(AsyncPolkitQuery, 1);
515         if (!q)
516                 return -ENOMEM;
517
518         q->request = sd_bus_message_ref(call);
519         q->callback = callback;
520         q->userdata = userdata;
521
522         r = hashmap_put(*registry, call, q);
523         if (r < 0) {
524                 async_polkit_query_free(q);
525                 return r;
526         }
527
528         q->registry = *registry;
529
530         r = sd_bus_call_async(call->bus, &q->slot, pk, async_polkit_callback, q, 0);
531         if (r < 0) {
532                 async_polkit_query_free(q);
533                 return r;
534         }
535
536         return 0;
537 #endif
538
539         return -EACCES;
540 }
541
542 void bus_verify_polkit_async_registry_free(Hashmap *registry) {
543 #if ENABLE_POLKIT
544         hashmap_free_with_destructor(registry, async_polkit_query_free);
545 #endif
546 }
547
548 #if 0 /// UNNEEDED by elogind
549 int bus_check_peercred(sd_bus *c) {
550         struct ucred ucred;
551         int fd, r;
552
553         assert(c);
554
555         fd = sd_bus_get_fd(c);
556         if (fd < 0)
557                 return fd;
558
559         r = getpeercred(fd, &ucred);
560         if (r < 0)
561                 return r;
562
563         if (ucred.uid != 0 && ucred.uid != geteuid())
564                 return -EPERM;
565
566         return 1;
567 }
568
569 int bus_connect_system_systemd(sd_bus **_bus) {
570         _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL;
571         int r;
572
573         assert(_bus);
574
575         if (geteuid() != 0)
576                 return sd_bus_default_system(_bus);
577
578         /* If we are root then let's talk directly to the system
579          * instance, instead of going via the bus */
580
581         r = sd_bus_new(&bus);
582         if (r < 0)
583                 return r;
584
585         r = sd_bus_set_address(bus, "unix:path=/run/systemd/private");
586         if (r < 0)
587                 return r;
588
589         r = sd_bus_start(bus);
590         if (r < 0)
591                 return sd_bus_default_system(_bus);
592
593         r = bus_check_peercred(bus);
594         if (r < 0)
595                 return r;
596
597         *_bus = TAKE_PTR(bus);
598
599         return 0;
600 }
601
602 int bus_connect_user_systemd(sd_bus **_bus) {
603         _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL;
604         _cleanup_free_ char *ee = NULL;
605         const char *e;
606         int r;
607
608         assert(_bus);
609
610         e = secure_getenv("XDG_RUNTIME_DIR");
611         if (!e)
612                 return sd_bus_default_user(_bus);
613
614         ee = bus_address_escape(e);
615         if (!ee)
616                 return -ENOMEM;
617
618         r = sd_bus_new(&bus);
619         if (r < 0)
620                 return r;
621
622         bus->address = strjoin("unix:path=", ee, "/systemd/private");
623         if (!bus->address)
624                 return -ENOMEM;
625
626         r = sd_bus_start(bus);
627         if (r < 0)
628                 return sd_bus_default_user(_bus);
629
630         r = bus_check_peercred(bus);
631         if (r < 0)
632                 return r;
633
634         *_bus = TAKE_PTR(bus);
635
636         return 0;
637 }
638 #endif // 0
639
640 #define print_property(name, fmt, ...)                                  \
641         do {                                                            \
642                 if (value)                                              \
643                         printf(fmt "\n", __VA_ARGS__);                  \
644                 else                                                    \
645                         printf("%s=" fmt "\n", name, __VA_ARGS__);      \
646         } while (0)
647
648 int bus_print_property(const char *name, sd_bus_message *m, bool value, bool all) {
649         char type;
650         const char *contents;
651         int r;
652
653         assert(name);
654         assert(m);
655
656         r = sd_bus_message_peek_type(m, &type, &contents);
657         if (r < 0)
658                 return r;
659
660         switch (type) {
661
662         case SD_BUS_TYPE_STRING: {
663                 const char *s;
664
665                 r = sd_bus_message_read_basic(m, type, &s);
666                 if (r < 0)
667                         return r;
668
669                 if (all || !isempty(s)) {
670                         bool good;
671
672                         /* This property has a single value, so we need to take
673                          * care not to print a new line, everything else is OK. */
674                         good = !strchr(s, '\n');
675                         print_property(name, "%s", good ? s : "[unprintable]");
676                 }
677
678                 return 1;
679         }
680
681         case SD_BUS_TYPE_BOOLEAN: {
682                 int b;
683
684                 r = sd_bus_message_read_basic(m, type, &b);
685                 if (r < 0)
686                         return r;
687
688                 print_property(name, "%s", yes_no(b));
689
690                 return 1;
691         }
692
693         case SD_BUS_TYPE_UINT64: {
694                 uint64_t u;
695
696                 r = sd_bus_message_read_basic(m, type, &u);
697                 if (r < 0)
698                         return r;
699
700                 /* Yes, heuristics! But we can change this check
701                  * should it turn out to not be sufficient */
702
703                 if (endswith(name, "Timestamp") || STR_IN_SET(name, "NextElapseUSecRealtime", "LastTriggerUSec")) {
704                         char timestamp[FORMAT_TIMESTAMP_MAX], *t;
705
706                         t = format_timestamp(timestamp, sizeof(timestamp), u);
707                         if (t || all)
708                                 print_property(name, "%s", strempty(t));
709
710                 } else if (strstr(name, "USec")) {
711                         char timespan[FORMAT_TIMESPAN_MAX];
712
713                         print_property(name, "%s", format_timespan(timespan, sizeof(timespan), u, 0));
714                 } else if (streq(name, "RestrictNamespaces")) {
715                         _cleanup_free_ char *s = NULL;
716                         const char *result;
717
718                         if ((u & NAMESPACE_FLAGS_ALL) == 0)
719                                 result = "yes";
720                         else if ((u & NAMESPACE_FLAGS_ALL) == NAMESPACE_FLAGS_ALL)
721                                 result = "no";
722                         else {
723                                 r = namespace_flag_to_string_many(u, &s);
724                                 if (r < 0)
725                                         return r;
726
727                                 result = s;
728                         }
729
730                         print_property(name, "%s", result);
731
732                 } else if (streq(name, "MountFlags")) {
733                         const char *result;
734
735                         result = mount_propagation_flags_to_string(u);
736                         if (!result)
737                                 return -EINVAL;
738
739                         print_property(name, "%s", result);
740
741                 } else if (STR_IN_SET(name, "CapabilityBoundingSet", "AmbientCapabilities")) {
742                         _cleanup_free_ char *s = NULL;
743
744                         r = capability_set_to_string_alloc(u, &s);
745                         if (r < 0)
746                                 return r;
747
748                         print_property(name, "%s", s);
749
750                 } else if ((STR_IN_SET(name, "CPUWeight", "StartupCPUWeight", "IOWeight", "StartupIOWeight") && u == CGROUP_WEIGHT_INVALID) ||
751                            (STR_IN_SET(name, "CPUShares", "StartupCPUShares") && u == CGROUP_CPU_SHARES_INVALID) ||
752                            (STR_IN_SET(name, "BlockIOWeight", "StartupBlockIOWeight") && u == CGROUP_BLKIO_WEIGHT_INVALID) ||
753                            (STR_IN_SET(name, "MemoryCurrent", "TasksCurrent") && u == (uint64_t) -1) ||
754                            (endswith(name, "NSec") && u == (uint64_t) -1))
755
756                         print_property(name, "%s", "[not set]");
757
758                 else if ((STR_IN_SET(name, "MemoryLow", "MemoryHigh", "MemoryMax", "MemorySwapMax", "MemoryLimit") && u == CGROUP_LIMIT_MAX) ||
759                          (STR_IN_SET(name, "TasksMax", "DefaultTasksMax") && u == (uint64_t) -1) ||
760                          (startswith(name, "Limit") && u == (uint64_t) -1) ||
761                          (startswith(name, "DefaultLimit") && u == (uint64_t) -1))
762
763                         print_property(name, "%s", "infinity");
764                 else
765                         print_property(name, "%"PRIu64, u);
766
767                 return 1;
768         }
769
770         case SD_BUS_TYPE_INT64: {
771                 int64_t i;
772
773                 r = sd_bus_message_read_basic(m, type, &i);
774                 if (r < 0)
775                         return r;
776
777                 print_property(name, "%"PRIi64, i);
778
779                 return 1;
780         }
781
782         case SD_BUS_TYPE_UINT32: {
783                 uint32_t u;
784
785                 r = sd_bus_message_read_basic(m, type, &u);
786                 if (r < 0)
787                         return r;
788
789                 if (strstr(name, "UMask") || strstr(name, "Mode"))
790                         print_property(name, "%04o", u);
791                 else if (streq(name, "UID")) {
792                         if (u == UID_INVALID)
793                                 print_property(name, "%s", "[not set]");
794                         else
795                                 print_property(name, "%"PRIu32, u);
796                 } else if (streq(name, "GID")) {
797                         if (u == GID_INVALID)
798                                 print_property(name, "%s", "[not set]");
799                         else
800                                 print_property(name, "%"PRIu32, u);
801                 } else
802                         print_property(name, "%"PRIu32, u);
803
804                 return 1;
805         }
806
807         case SD_BUS_TYPE_INT32: {
808                 int32_t i;
809
810                 r = sd_bus_message_read_basic(m, type, &i);
811                 if (r < 0)
812                         return r;
813
814                 print_property(name, "%"PRIi32, i);
815                 return 1;
816         }
817
818         case SD_BUS_TYPE_DOUBLE: {
819                 double d;
820
821                 r = sd_bus_message_read_basic(m, type, &d);
822                 if (r < 0)
823                         return r;
824
825                 print_property(name, "%g", d);
826                 return 1;
827         }
828
829         case SD_BUS_TYPE_ARRAY:
830                 if (streq(contents, "s")) {
831                         bool first = true;
832                         const char *str;
833
834                         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, contents);
835                         if (r < 0)
836                                 return r;
837
838                         while ((r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &str)) > 0) {
839                                 bool good;
840
841                                 if (first && !value)
842                                         printf("%s=", name);
843
844                                 /* This property has multiple space-separated values, so
845                                  * neither spaces not newlines can be allowed in a value. */
846                                 good = str[strcspn(str, " \n")] == '\0';
847
848                                 printf("%s%s", first ? "" : " ", good ? str : "[unprintable]");
849
850                                 first = false;
851                         }
852                         if (r < 0)
853                                 return r;
854
855                         if (first && all && !value)
856                                 printf("%s=", name);
857                         if (!first || all)
858                                 puts("");
859
860                         r = sd_bus_message_exit_container(m);
861                         if (r < 0)
862                                 return r;
863
864                         return 1;
865
866                 } else if (streq(contents, "y")) {
867                         const uint8_t *u;
868                         size_t n;
869
870                         r = sd_bus_message_read_array(m, SD_BUS_TYPE_BYTE, (const void**) &u, &n);
871                         if (r < 0)
872                                 return r;
873
874                         if (all || n > 0) {
875                                 unsigned int i;
876
877                                 if (!value)
878                                         printf("%s=", name);
879
880                                 for (i = 0; i < n; i++)
881                                         printf("%02x", u[i]);
882
883                                 puts("");
884                         }
885
886                         return 1;
887
888                 } else if (streq(contents, "u")) {
889                         uint32_t *u;
890                         size_t n;
891
892                         r = sd_bus_message_read_array(m, SD_BUS_TYPE_UINT32, (const void**) &u, &n);
893                         if (r < 0)
894                                 return r;
895
896                         if (all || n > 0) {
897                                 unsigned int i;
898
899                                 if (!value)
900                                         printf("%s=", name);
901
902                                 for (i = 0; i < n; i++)
903                                         printf("%08x", u[i]);
904
905                                 puts("");
906                         }
907
908                         return 1;
909                 }
910
911                 break;
912         }
913
914         return 0;
915 }
916
917 int bus_message_print_all_properties(
918                 sd_bus_message *m,
919                 bus_message_print_t func,
920                 char **filter,
921                 bool value,
922                 bool all,
923                 Set **found_properties) {
924
925         int r;
926
927         assert(m);
928
929         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "{sv}");
930         if (r < 0)
931                 return r;
932
933         while ((r = sd_bus_message_enter_container(m, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
934                 const char *name;
935                 const char *contents;
936
937                 r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &name);
938                 if (r < 0)
939                         return r;
940
941                 if (found_properties) {
942                         r = set_ensure_allocated(found_properties, &string_hash_ops);
943                         if (r < 0)
944                                 return log_oom();
945
946                         r = set_put(*found_properties, name);
947                         if (r < 0 && r != EEXIST)
948                                 return log_oom();
949                 }
950
951                 if (!filter || strv_find(filter, name)) {
952                         r = sd_bus_message_peek_type(m, NULL, &contents);
953                         if (r < 0)
954                                 return r;
955
956                         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_VARIANT, contents);
957                         if (r < 0)
958                                 return r;
959
960                         if (func)
961                                 r = func(name, m, value, all);
962                         if (!func || r == 0)
963                                 r = bus_print_property(name, m, value, all);
964                         if (r < 0)
965                                 return r;
966                         if (r == 0) {
967                                 if (all)
968                                         printf("%s=[unprintable]\n", name);
969                                 /* skip what we didn't read */
970                                 r = sd_bus_message_skip(m, contents);
971                                 if (r < 0)
972                                         return r;
973                         }
974
975                         r = sd_bus_message_exit_container(m);
976                         if (r < 0)
977                                 return r;
978                 } else {
979                         r = sd_bus_message_skip(m, "v");
980                         if (r < 0)
981                                 return r;
982                 }
983
984                 r = sd_bus_message_exit_container(m);
985                 if (r < 0)
986                         return r;
987         }
988         if (r < 0)
989                 return r;
990
991         r = sd_bus_message_exit_container(m);
992         if (r < 0)
993                 return r;
994
995         return 0;
996 }
997
998 int bus_print_all_properties(
999                 sd_bus *bus,
1000                 const char *dest,
1001                 const char *path,
1002                 bus_message_print_t func,
1003                 char **filter,
1004                 bool value,
1005                 bool all,
1006                 Set **found_properties) {
1007
1008         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1009         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1010         int r;
1011
1012         assert(bus);
1013         assert(path);
1014
1015         r = sd_bus_call_method(bus,
1016                         dest,
1017                         path,
1018                         "org.freedesktop.DBus.Properties",
1019                         "GetAll",
1020                         &error,
1021                         &reply,
1022                         "s", "");
1023         if (r < 0)
1024                 return r;
1025
1026         return bus_message_print_all_properties(reply, func, filter, value, all, found_properties);
1027 }
1028
1029 int bus_map_id128(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
1030         sd_id128_t *p = userdata;
1031         const void *v;
1032         size_t n;
1033         int r;
1034
1035         r = sd_bus_message_read_array(m, SD_BUS_TYPE_BYTE, &v, &n);
1036         if (r < 0)
1037                 return r;
1038
1039         if (n == 0)
1040                 *p = SD_ID128_NULL;
1041         else if (n == 16)
1042                 memcpy((*p).bytes, v, n);
1043         else
1044                 return -EINVAL;
1045
1046         return 0;
1047 }
1048
1049 static int map_basic(sd_bus *bus, const char *member, sd_bus_message *m, unsigned flags, sd_bus_error *error, void *userdata) {
1050         char type;
1051         int r;
1052
1053         r = sd_bus_message_peek_type(m, &type, NULL);
1054         if (r < 0)
1055                 return r;
1056
1057         switch (type) {
1058
1059         case SD_BUS_TYPE_STRING: {
1060                 const char **p = userdata;
1061                 const char *s;
1062
1063                 r = sd_bus_message_read_basic(m, type, &s);
1064                 if (r < 0)
1065                         return r;
1066
1067                 if (isempty(s))
1068                         s = NULL;
1069
1070                 if (flags & BUS_MAP_STRDUP)
1071                         return free_and_strdup((char **) userdata, s);
1072
1073                 *p = s;
1074                 return 0;
1075         }
1076
1077         case SD_BUS_TYPE_ARRAY: {
1078                 _cleanup_strv_free_ char **l = NULL;
1079                 char ***p = userdata;
1080
1081                 r = bus_message_read_strv_extend(m, &l);
1082                 if (r < 0)
1083                         return r;
1084
1085                 strv_free(*p);
1086                 *p = TAKE_PTR(l);
1087                 return 0;
1088         }
1089
1090         case SD_BUS_TYPE_BOOLEAN: {
1091                 int b;
1092
1093                 r = sd_bus_message_read_basic(m, type, &b);
1094                 if (r < 0)
1095                         return r;
1096
1097                 if (flags & BUS_MAP_BOOLEAN_AS_BOOL)
1098                         * (bool*) userdata = !!b;
1099                 else
1100                         * (int*) userdata = b;
1101
1102                 return 0;
1103         }
1104
1105         case SD_BUS_TYPE_INT32:
1106         case SD_BUS_TYPE_UINT32: {
1107                 uint32_t u, *p = userdata;
1108
1109                 r = sd_bus_message_read_basic(m, type, &u);
1110                 if (r < 0)
1111                         return r;
1112
1113                 *p = u;
1114                 return 0;
1115         }
1116
1117         case SD_BUS_TYPE_INT64:
1118         case SD_BUS_TYPE_UINT64: {
1119                 uint64_t t, *p = userdata;
1120
1121                 r = sd_bus_message_read_basic(m, type, &t);
1122                 if (r < 0)
1123                         return r;
1124
1125                 *p = t;
1126                 return 0;
1127         }
1128
1129         case SD_BUS_TYPE_DOUBLE: {
1130                 double d, *p = userdata;
1131
1132                 r = sd_bus_message_read_basic(m, type, &d);
1133                 if (r < 0)
1134                         return r;
1135
1136                 *p = d;
1137                 return 0;
1138         }}
1139
1140         return -EOPNOTSUPP;
1141 }
1142
1143 int bus_message_map_all_properties(
1144                 sd_bus_message *m,
1145                 const struct bus_properties_map *map,
1146                 unsigned flags,
1147                 sd_bus_error *error,
1148                 void *userdata) {
1149
1150         int r;
1151
1152         assert(m);
1153         assert(map);
1154
1155         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "{sv}");
1156         if (r < 0)
1157                 return r;
1158
1159         while ((r = sd_bus_message_enter_container(m, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
1160                 const struct bus_properties_map *prop;
1161                 const char *member;
1162                 const char *contents;
1163                 void *v;
1164                 unsigned i;
1165
1166                 r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &member);
1167                 if (r < 0)
1168                         return r;
1169
1170                 for (i = 0, prop = NULL; map[i].member; i++)
1171                         if (streq(map[i].member, member)) {
1172                                 prop = &map[i];
1173                                 break;
1174                         }
1175
1176                 if (prop) {
1177                         r = sd_bus_message_peek_type(m, NULL, &contents);
1178                         if (r < 0)
1179                                 return r;
1180
1181                         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_VARIANT, contents);
1182                         if (r < 0)
1183                                 return r;
1184
1185                         v = (uint8_t *)userdata + prop->offset;
1186                         if (map[i].set)
1187                                 r = prop->set(sd_bus_message_get_bus(m), member, m, error, v);
1188                         else
1189                                 r = map_basic(sd_bus_message_get_bus(m), member, m, flags, error, v);
1190                         if (r < 0)
1191                                 return r;
1192
1193                         r = sd_bus_message_exit_container(m);
1194                         if (r < 0)
1195                                 return r;
1196                 } else {
1197                         r = sd_bus_message_skip(m, "v");
1198                         if (r < 0)
1199                                 return r;
1200                 }
1201
1202                 r = sd_bus_message_exit_container(m);
1203                 if (r < 0)
1204                         return r;
1205         }
1206         if (r < 0)
1207                 return r;
1208
1209         return sd_bus_message_exit_container(m);
1210 }
1211
1212 #if 0 /// UNNEEDED by elogind
1213 int bus_message_map_properties_changed(
1214                 sd_bus_message *m,
1215                 const struct bus_properties_map *map,
1216                 unsigned flags,
1217                 sd_bus_error *error,
1218                 void *userdata) {
1219
1220         const char *member;
1221         int r, invalidated, i;
1222
1223         assert(m);
1224         assert(map);
1225
1226         r = bus_message_map_all_properties(m, map, flags, error, userdata);
1227         if (r < 0)
1228                 return r;
1229
1230         r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "s");
1231         if (r < 0)
1232                 return r;
1233
1234         invalidated = 0;
1235         while ((r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &member)) > 0)
1236                 for (i = 0; map[i].member; i++)
1237                         if (streq(map[i].member, member)) {
1238                                 ++invalidated;
1239                                 break;
1240                         }
1241         if (r < 0)
1242                 return r;
1243
1244         r = sd_bus_message_exit_container(m);
1245         if (r < 0)
1246                 return r;
1247
1248         return invalidated;
1249 }
1250 #endif // 0
1251
1252 int bus_map_all_properties(
1253                 sd_bus *bus,
1254                 const char *destination,
1255                 const char *path,
1256                 const struct bus_properties_map *map,
1257                 unsigned flags,
1258                 sd_bus_error *error,
1259                 sd_bus_message **reply,
1260                 void *userdata) {
1261
1262         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
1263         int r;
1264
1265         assert(bus);
1266         assert(destination);
1267         assert(path);
1268         assert(map);
1269         assert(reply || (flags & BUS_MAP_STRDUP));
1270
1271         r = sd_bus_call_method(
1272                         bus,
1273                         destination,
1274                         path,
1275                         "org.freedesktop.DBus.Properties",
1276                         "GetAll",
1277                         error,
1278                         &m,
1279                         "s", "");
1280         if (r < 0)
1281                 return r;
1282
1283         r = bus_message_map_all_properties(m, map, flags, error, userdata);
1284         if (r < 0)
1285                 return r;
1286
1287         if (reply)
1288                 *reply = sd_bus_message_ref(m);
1289
1290         return r;
1291 }
1292
1293 int bus_connect_transport(BusTransport transport, const char *host, bool user, sd_bus **ret) {
1294         _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL;
1295         int r;
1296
1297         assert(transport >= 0);
1298         assert(transport < _BUS_TRANSPORT_MAX);
1299         assert(ret);
1300
1301         assert_return((transport == BUS_TRANSPORT_LOCAL) == !host, -EINVAL);
1302         assert_return(transport == BUS_TRANSPORT_LOCAL || !user, -EOPNOTSUPP);
1303
1304         switch (transport) {
1305
1306         case BUS_TRANSPORT_LOCAL:
1307 #if 0 /// elogind does not support a user bus
1308                 if (user)
1309                         r = sd_bus_default_user(&bus);
1310                 else
1311 #endif // 0
1312                         r = sd_bus_default_system(&bus);
1313
1314                 break;
1315
1316         case BUS_TRANSPORT_REMOTE:
1317                 r = sd_bus_open_system_remote(&bus, host);
1318                 break;
1319
1320         case BUS_TRANSPORT_MACHINE:
1321                 r = sd_bus_open_system_machine(&bus, host);
1322                 break;
1323
1324         default:
1325                 assert_not_reached("Hmm, unknown transport type.");
1326         }
1327         if (r < 0)
1328                 return r;
1329
1330         r = sd_bus_set_exit_on_disconnect(bus, true);
1331         if (r < 0)
1332                 return r;
1333
1334         *ret = TAKE_PTR(bus);
1335
1336         return 0;
1337 }
1338
1339 #if 0 /// UNNEEDED by elogind
1340 int bus_connect_transport_systemd(BusTransport transport, const char *host, bool user, sd_bus **bus) {
1341         int r;
1342
1343         assert(transport >= 0);
1344         assert(transport < _BUS_TRANSPORT_MAX);
1345         assert(bus);
1346
1347         assert_return((transport == BUS_TRANSPORT_LOCAL) == !host, -EINVAL);
1348         assert_return(transport == BUS_TRANSPORT_LOCAL || !user, -EOPNOTSUPP);
1349
1350         switch (transport) {
1351
1352         case BUS_TRANSPORT_LOCAL:
1353                 if (user)
1354                         r = bus_connect_user_systemd(bus);
1355                 else
1356                         r = bus_connect_system_systemd(bus);
1357
1358                 break;
1359
1360         case BUS_TRANSPORT_REMOTE:
1361                 r = sd_bus_open_system_remote(bus, host);
1362                 break;
1363
1364         case BUS_TRANSPORT_MACHINE:
1365                 r = sd_bus_open_system_machine(bus, host);
1366                 break;
1367
1368         default:
1369                 assert_not_reached("Hmm, unknown transport type.");
1370         }
1371
1372         return r;
1373 }
1374 #endif // 0
1375
1376 int bus_property_get_bool(
1377                 sd_bus *bus,
1378                 const char *path,
1379                 const char *interface,
1380                 const char *property,
1381                 sd_bus_message *reply,
1382                 void *userdata,
1383                 sd_bus_error *error) {
1384
1385         int b = *(bool*) userdata;
1386
1387         return sd_bus_message_append_basic(reply, 'b', &b);
1388 }
1389
1390 int bus_property_set_bool(
1391                 sd_bus *bus,
1392                 const char *path,
1393                 const char *interface,
1394                 const char *property,
1395                 sd_bus_message *value,
1396                 void *userdata,
1397                 sd_bus_error *error) {
1398
1399         int b, r;
1400
1401         r = sd_bus_message_read(value, "b", &b);
1402         if (r < 0)
1403                 return r;
1404
1405         *(bool *) userdata = !!b;
1406         return 0;
1407 }
1408
1409 #if 0 /// UNNEEDED by elogind
1410 int bus_property_get_id128(
1411                 sd_bus *bus,
1412                 const char *path,
1413                 const char *interface,
1414                 const char *property,
1415                 sd_bus_message *reply,
1416                 void *userdata,
1417                 sd_bus_error *error) {
1418
1419         sd_id128_t *id = userdata;
1420
1421         if (sd_id128_is_null(*id)) /* Add an empty array if the ID is zero */
1422                 return sd_bus_message_append(reply, "ay", 0);
1423         else
1424                 return sd_bus_message_append_array(reply, 'y', id->bytes, 16);
1425 }
1426 #endif // 0
1427
1428 #if __SIZEOF_SIZE_T__ != 8
1429 int bus_property_get_size(
1430                 sd_bus *bus,
1431                 const char *path,
1432                 const char *interface,
1433                 const char *property,
1434                 sd_bus_message *reply,
1435                 void *userdata,
1436                 sd_bus_error *error) {
1437
1438         uint64_t sz = *(size_t*) userdata;
1439
1440         return sd_bus_message_append_basic(reply, 't', &sz);
1441 }
1442 #endif
1443
1444 #if __SIZEOF_LONG__ != 8
1445 int bus_property_get_long(
1446                 sd_bus *bus,
1447                 const char *path,
1448                 const char *interface,
1449                 const char *property,
1450                 sd_bus_message *reply,
1451                 void *userdata,
1452                 sd_bus_error *error) {
1453
1454         int64_t l = *(long*) userdata;
1455
1456         return sd_bus_message_append_basic(reply, 'x', &l);
1457 }
1458
1459 int bus_property_get_ulong(
1460                 sd_bus *bus,
1461                 const char *path,
1462                 const char *interface,
1463                 const char *property,
1464                 sd_bus_message *reply,
1465                 void *userdata,
1466                 sd_bus_error *error) {
1467
1468         uint64_t ul = *(unsigned long*) userdata;
1469
1470         return sd_bus_message_append_basic(reply, 't', &ul);
1471 }
1472 #endif
1473
1474 int bus_log_parse_error(int r) {
1475         return log_error_errno(r, "Failed to parse bus message: %m");
1476 }
1477
1478 #if 0 /// UNNEEDED by elogind
1479 int bus_log_create_error(int r) {
1480         return log_error_errno(r, "Failed to create bus message: %m");
1481 }
1482
1483 #endif // 0
1484 #if 0 /// UNNEEDED by elogind
1485 /**
1486  * bus_path_encode_unique() - encode unique object path
1487  * @b: bus connection or NULL
1488  * @prefix: object path prefix
1489  * @sender_id: unique-name of client, or NULL
1490  * @external_id: external ID to be chosen by client, or NULL
1491  * @ret_path: storage for encoded object path pointer
1492  *
1493  * Whenever we provide a bus API that allows clients to create and manage
1494  * server-side objects, we need to provide a unique name for these objects. If
1495  * we let the server choose the name, we suffer from a race condition: If a
1496  * client creates an object asynchronously, it cannot destroy that object until
1497  * it received the method reply. It cannot know the name of the new object,
1498  * thus, it cannot destroy it. Furthermore, it enforces a round-trip.
1499  *
1500  * Therefore, many APIs allow the client to choose the unique name for newly
1501  * created objects. There're two problems to solve, though:
1502  *    1) Object names are usually defined via dbus object paths, which are
1503  *       usually globally namespaced. Therefore, multiple clients must be able
1504  *       to choose unique object names without interference.
1505  *    2) If multiple libraries share the same bus connection, they must be
1506  *       able to choose unique object names without interference.
1507  * The first problem is solved easily by prefixing a name with the
1508  * unique-bus-name of a connection. The server side must enforce this and
1509  * reject any other name. The second problem is solved by providing unique
1510  * suffixes from within sd-bus.
1511  *
1512  * This helper allows clients to create unique object-paths. It uses the
1513  * template '/prefix/sender_id/external_id' and returns the new path in
1514  * @ret_path (must be freed by the caller).
1515  * If @sender_id is NULL, the unique-name of @b is used. If @external_id is
1516  * NULL, this function allocates a unique suffix via @b (by requesting a new
1517  * cookie). If both @sender_id and @external_id are given, @b can be passed as
1518  * NULL.
1519  *
1520  * Returns: 0 on success, negative error code on failure.
1521  */
1522 int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path) {
1523         _cleanup_free_ char *sender_label = NULL, *external_label = NULL;
1524         char external_buf[DECIMAL_STR_MAX(uint64_t)], *p;
1525         int r;
1526
1527         assert_return(b || (sender_id && external_id), -EINVAL);
1528         assert_return(object_path_is_valid(prefix), -EINVAL);
1529         assert_return(ret_path, -EINVAL);
1530
1531         if (!sender_id) {
1532                 r = sd_bus_get_unique_name(b, &sender_id);
1533                 if (r < 0)
1534                         return r;
1535         }
1536
1537         if (!external_id) {
1538                 xsprintf(external_buf, "%"PRIu64, ++b->cookie);
1539                 external_id = external_buf;
1540         }
1541
1542         sender_label = bus_label_escape(sender_id);
1543         if (!sender_label)
1544                 return -ENOMEM;
1545
1546         external_label = bus_label_escape(external_id);
1547         if (!external_label)
1548                 return -ENOMEM;
1549
1550         p = strjoin(prefix, "/", sender_label, "/", external_label);
1551         if (!p)
1552                 return -ENOMEM;
1553
1554         *ret_path = p;
1555         return 0;
1556 }
1557
1558 /**
1559  * bus_path_decode_unique() - decode unique object path
1560  * @path: object path to decode
1561  * @prefix: object path prefix
1562  * @ret_sender: output parameter for sender-id label
1563  * @ret_external: output parameter for external-id label
1564  *
1565  * This does the reverse of bus_path_encode_unique() (see its description for
1566  * details). Both trailing labels, sender-id and external-id, are unescaped and
1567  * returned in the given output parameters (the caller must free them).
1568  *
1569  * Note that this function returns 0 if the path does not match the template
1570  * (see bus_path_encode_unique()), 1 if it matched.
1571  *
1572  * Returns: Negative error code on failure, 0 if the given object path does not
1573  *          match the template (return parameters are set to NULL), 1 if it was
1574  *          parsed successfully (return parameters contain allocated labels).
1575  */
1576 int bus_path_decode_unique(const char *path, const char *prefix, char **ret_sender, char **ret_external) {
1577         const char *p, *q;
1578         char *sender, *external;
1579
1580         assert(object_path_is_valid(path));
1581         assert(object_path_is_valid(prefix));
1582         assert(ret_sender);
1583         assert(ret_external);
1584
1585         p = object_path_startswith(path, prefix);
1586         if (!p) {
1587                 *ret_sender = NULL;
1588                 *ret_external = NULL;
1589                 return 0;
1590         }
1591
1592         q = strchr(p, '/');
1593         if (!q) {
1594                 *ret_sender = NULL;
1595                 *ret_external = NULL;
1596                 return 0;
1597         }
1598
1599         sender = bus_label_unescape_n(p, q - p);
1600         external = bus_label_unescape(q + 1);
1601         if (!sender || !external) {
1602                 free(sender);
1603                 free(external);
1604                 return -ENOMEM;
1605         }
1606
1607         *ret_sender = sender;
1608         *ret_external = external;
1609         return 1;
1610 }
1611 #endif // 0
1612
1613 #if 0 /// UNNEEDED by elogind
1614 int bus_property_get_rlimit(
1615                 sd_bus *bus,
1616                 const char *path,
1617                 const char *interface,
1618                 const char *property,
1619                 sd_bus_message *reply,
1620                 void *userdata,
1621                 sd_bus_error *error) {
1622
1623         struct rlimit *rl;
1624         uint64_t u;
1625         rlim_t x;
1626         const char *is_soft;
1627
1628         assert(bus);
1629         assert(reply);
1630         assert(userdata);
1631
1632         is_soft = endswith(property, "Soft");
1633         rl = *(struct rlimit**) userdata;
1634         if (rl)
1635                 x = is_soft ? rl->rlim_cur : rl->rlim_max;
1636         else {
1637                 struct rlimit buf = {};
1638                 int z;
1639                 const char *s;
1640
1641                 s = is_soft ? strndupa(property, is_soft - property) : property;
1642
1643                 z = rlimit_from_string(strstr(s, "Limit"));
1644                 assert(z >= 0);
1645
1646                 getrlimit(z, &buf);
1647                 x = is_soft ? buf.rlim_cur : buf.rlim_max;
1648         }
1649
1650         /* rlim_t might have different sizes, let's map
1651          * RLIMIT_INFINITY to (uint64_t) -1, so that it is the same on
1652          * all archs */
1653         u = x == RLIM_INFINITY ? (uint64_t) -1 : (uint64_t) x;
1654
1655         return sd_bus_message_append(reply, "t", u);
1656 }
1657
1658 int bus_track_add_name_many(sd_bus_track *t, char **l) {
1659         int r = 0;
1660         char **i;
1661
1662         assert(t);
1663
1664         /* Continues adding after failure, and returns the first failure. */
1665
1666         STRV_FOREACH(i, l) {
1667                 int k;
1668
1669                 k = sd_bus_track_add_name(t, *i);
1670                 if (k < 0 && r >= 0)
1671                         r = k;
1672         }
1673
1674         return r;
1675 }
1676 #endif // 0
1677
1678 int bus_open_system_watch_bind_with_description(sd_bus **ret, const char *description) {
1679         _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL;
1680         const char *e;
1681         int r;
1682
1683         assert(ret);
1684
1685         /* Match like sd_bus_open_system(), but with the "watch_bind" feature and the Connected() signal turned on. */
1686
1687         r = sd_bus_new(&bus);
1688         if (r < 0)
1689                 return r;
1690
1691         if (description) {
1692                 r = sd_bus_set_description(bus, description);
1693                 if (r < 0)
1694                         return r;
1695         }
1696
1697         e = secure_getenv("DBUS_SYSTEM_BUS_ADDRESS");
1698         if (!e)
1699                 e = DEFAULT_SYSTEM_BUS_ADDRESS;
1700
1701         r = sd_bus_set_address(bus, e);
1702         if (r < 0)
1703                 return r;
1704
1705         r = sd_bus_set_bus_client(bus, true);
1706         if (r < 0)
1707                 return r;
1708
1709         r = sd_bus_set_trusted(bus, true);
1710         if (r < 0)
1711                 return r;
1712
1713         r = sd_bus_negotiate_creds(bus, true, SD_BUS_CREDS_UID|SD_BUS_CREDS_EUID|SD_BUS_CREDS_EFFECTIVE_CAPS);
1714         if (r < 0)
1715                 return r;
1716
1717         r = sd_bus_set_watch_bind(bus, true);
1718         if (r < 0)
1719                 return r;
1720
1721         r = sd_bus_set_connected_signal(bus, true);
1722         if (r < 0)
1723                 return r;
1724
1725         r = sd_bus_start(bus);
1726         if (r < 0)
1727                 return r;
1728
1729         *ret = TAKE_PTR(bus);
1730
1731         return 0;
1732 }