]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-bus/bus-socket.c
Merge pull request #16803 from poettering/analyze-condition-rework
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-socket.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <endian.h>
4 #include <poll.h>
5 #include <stdlib.h>
6 #include <unistd.h>
7
8 #include "sd-bus.h"
9 #include "sd-daemon.h"
10
11 #include "alloc-util.h"
12 #include "bus-internal.h"
13 #include "bus-message.h"
14 #include "bus-socket.h"
15 #include "fd-util.h"
16 #include "format-util.h"
17 #include "fs-util.h"
18 #include "hexdecoct.h"
19 #include "io-util.h"
20 #include "macro.h"
21 #include "memory-util.h"
22 #include "path-util.h"
23 #include "process-util.h"
24 #include "rlimit-util.h"
25 #include "selinux-util.h"
26 #include "signal-util.h"
27 #include "stdio-util.h"
28 #include "string-util.h"
29 #include "user-util.h"
30 #include "utf8.h"
31
32 #define SNDBUF_SIZE (8*1024*1024)
33
34 static void iovec_advance(struct iovec iov[], unsigned *idx, size_t size) {
35
36 while (size > 0) {
37 struct iovec *i = iov + *idx;
38
39 if (i->iov_len > size) {
40 i->iov_base = (uint8_t*) i->iov_base + size;
41 i->iov_len -= size;
42 return;
43 }
44
45 size -= i->iov_len;
46
47 *i = IOVEC_MAKE(NULL, 0);
48
49 (*idx)++;
50 }
51 }
52
53 static int append_iovec(sd_bus_message *m, const void *p, size_t sz) {
54 assert(m);
55 assert(p);
56 assert(sz > 0);
57
58 m->iovec[m->n_iovec++] = IOVEC_MAKE((void*) p, sz);
59
60 return 0;
61 }
62
63 static int bus_message_setup_iovec(sd_bus_message *m) {
64 struct bus_body_part *part;
65 unsigned n, i;
66 int r;
67
68 assert(m);
69 assert(m->sealed);
70
71 if (m->n_iovec > 0)
72 return 0;
73
74 assert(!m->iovec);
75
76 n = 1 + m->n_body_parts;
77 if (n < ELEMENTSOF(m->iovec_fixed))
78 m->iovec = m->iovec_fixed;
79 else {
80 m->iovec = new(struct iovec, n);
81 if (!m->iovec) {
82 r = -ENOMEM;
83 goto fail;
84 }
85 }
86
87 r = append_iovec(m, m->header, BUS_MESSAGE_BODY_BEGIN(m));
88 if (r < 0)
89 goto fail;
90
91 MESSAGE_FOREACH_PART(part, i, m) {
92 r = bus_body_part_map(part);
93 if (r < 0)
94 goto fail;
95
96 r = append_iovec(m, part->data, part->size);
97 if (r < 0)
98 goto fail;
99 }
100
101 assert(n == m->n_iovec);
102
103 return 0;
104
105 fail:
106 m->poisoned = true;
107 return r;
108 }
109
110 bool bus_socket_auth_needs_write(sd_bus *b) {
111
112 unsigned i;
113
114 if (b->auth_index >= ELEMENTSOF(b->auth_iovec))
115 return false;
116
117 for (i = b->auth_index; i < ELEMENTSOF(b->auth_iovec); i++) {
118 struct iovec *j = b->auth_iovec + i;
119
120 if (j->iov_len > 0)
121 return true;
122 }
123
124 return false;
125 }
126
127 static int bus_socket_write_auth(sd_bus *b) {
128 ssize_t k;
129
130 assert(b);
131 assert(b->state == BUS_AUTHENTICATING);
132
133 if (!bus_socket_auth_needs_write(b))
134 return 0;
135
136 if (b->prefer_writev)
137 k = writev(b->output_fd, b->auth_iovec + b->auth_index, ELEMENTSOF(b->auth_iovec) - b->auth_index);
138 else {
139 struct msghdr mh = {
140 .msg_iov = b->auth_iovec + b->auth_index,
141 .msg_iovlen = ELEMENTSOF(b->auth_iovec) - b->auth_index,
142 };
143
144 k = sendmsg(b->output_fd, &mh, MSG_DONTWAIT|MSG_NOSIGNAL);
145 if (k < 0 && errno == ENOTSOCK) {
146 b->prefer_writev = true;
147 k = writev(b->output_fd, b->auth_iovec + b->auth_index, ELEMENTSOF(b->auth_iovec) - b->auth_index);
148 }
149 }
150
151 if (k < 0)
152 return errno == EAGAIN ? 0 : -errno;
153
154 iovec_advance(b->auth_iovec, &b->auth_index, (size_t) k);
155 return 1;
156 }
157
158 static int bus_socket_auth_verify_client(sd_bus *b) {
159 char *d, *e, *f, *start;
160 sd_id128_t peer;
161 int r;
162
163 assert(b);
164
165 /*
166 * We expect three response lines:
167 * "DATA\r\n"
168 * "OK <server-id>\r\n"
169 * "AGREE_UNIX_FD\r\n" (optional)
170 */
171
172 d = memmem_safe(b->rbuffer, b->rbuffer_size, "\r\n", 2);
173 if (!d)
174 return 0;
175
176 e = memmem(d + 2, b->rbuffer_size - (d - (char*) b->rbuffer) - 2, "\r\n", 2);
177 if (!e)
178 return 0;
179
180 if (b->accept_fd) {
181 f = memmem(e + 2, b->rbuffer_size - (e - (char*) b->rbuffer) - 2, "\r\n", 2);
182 if (!f)
183 return 0;
184
185 start = f + 2;
186 } else {
187 f = NULL;
188 start = e + 2;
189 }
190
191 /* Nice! We got all the lines we need. First check the DATA line. */
192
193 if (d - (char*) b->rbuffer == 4) {
194 if (memcmp(b->rbuffer, "DATA", 4))
195 return -EPERM;
196 } else if (d - (char*) b->rbuffer == 3 + 32) {
197 /*
198 * Old versions of the server-side implementation of `sd-bus` replied with "OK <id>" to
199 * "AUTH" requests from a client, even if the "AUTH" line did not contain inlined
200 * arguments. Therefore, we also accept "OK <id>" here, even though it is technically the
201 * wrong reply. We ignore the "<id>" parameter, though, since it has no real value.
202 */
203 if (memcmp(b->rbuffer, "OK ", 3))
204 return -EPERM;
205 } else
206 return -EPERM;
207
208 /* Now check the OK line. */
209
210 if (e - d != 2 + 3 + 32)
211 return -EPERM;
212
213 if (memcmp(d + 2, "OK ", 3))
214 return -EPERM;
215
216 b->auth = b->anonymous_auth ? BUS_AUTH_ANONYMOUS : BUS_AUTH_EXTERNAL;
217
218 for (unsigned i = 0; i < 32; i += 2) {
219 int x, y;
220
221 x = unhexchar(d[2 + 3 + i]);
222 y = unhexchar(d[2 + 3 + i + 1]);
223
224 if (x < 0 || y < 0)
225 return -EINVAL;
226
227 peer.bytes[i/2] = ((uint8_t) x << 4 | (uint8_t) y);
228 }
229
230 if (!sd_id128_is_null(b->server_id) &&
231 !sd_id128_equal(b->server_id, peer))
232 return -EPERM;
233
234 b->server_id = peer;
235
236 /* And possibly check the third line, too */
237
238 if (f)
239 b->can_fds =
240 (f - e == STRLEN("\r\nAGREE_UNIX_FD")) &&
241 memcmp(e + 2, "AGREE_UNIX_FD",
242 STRLEN("AGREE_UNIX_FD")) == 0;
243
244 b->rbuffer_size -= (start - (char*) b->rbuffer);
245 memmove(b->rbuffer, start, b->rbuffer_size);
246
247 r = bus_start_running(b);
248 if (r < 0)
249 return r;
250
251 return 1;
252 }
253
254 static bool line_equals(const char *s, size_t m, const char *line) {
255 size_t l;
256
257 l = strlen(line);
258 if (l != m)
259 return false;
260
261 return memcmp(s, line, l) == 0;
262 }
263
264 static bool line_begins(const char *s, size_t m, const char *word) {
265 const char *p;
266
267 p = memory_startswith(s, m, word);
268 return p && (p == (s + m) || *p == ' ');
269 }
270
271 static int verify_anonymous_token(sd_bus *b, const char *p, size_t l) {
272 _cleanup_free_ char *token = NULL;
273 size_t len;
274 int r;
275
276 if (!b->anonymous_auth)
277 return 0;
278
279 if (l <= 0)
280 return 1;
281
282 assert(p[0] == ' ');
283 p++; l--;
284
285 if (l % 2 != 0)
286 return 0;
287
288 r = unhexmem(p, l, (void **) &token, &len);
289 if (r < 0)
290 return 0;
291
292 if (memchr(token, 0, len))
293 return 0;
294
295 return !!utf8_is_valid(token);
296 }
297
298 static int verify_external_token(sd_bus *b, const char *p, size_t l) {
299 _cleanup_free_ char *token = NULL;
300 size_t len;
301 uid_t u;
302 int r;
303
304 /* We don't do any real authentication here. Instead, we if
305 * the owner of this bus wanted authentication he should have
306 * checked SO_PEERCRED before even creating the bus object. */
307
308 if (!b->anonymous_auth && !b->ucred_valid)
309 return 0;
310
311 if (l <= 0)
312 return 1;
313
314 assert(p[0] == ' ');
315 p++; l--;
316
317 if (l % 2 != 0)
318 return 0;
319
320 r = unhexmem(p, l, (void**) &token, &len);
321 if (r < 0)
322 return 0;
323
324 if (memchr(token, 0, len))
325 return 0;
326
327 r = parse_uid(token, &u);
328 if (r < 0)
329 return 0;
330
331 /* We ignore the passed value if anonymous authentication is
332 * on anyway. */
333 if (!b->anonymous_auth && u != b->ucred.uid)
334 return 0;
335
336 return 1;
337 }
338
339 static int bus_socket_auth_write(sd_bus *b, const char *t) {
340 char *p;
341 size_t l;
342
343 assert(b);
344 assert(t);
345
346 /* We only make use of the first iovec */
347 assert(IN_SET(b->auth_index, 0, 1));
348
349 l = strlen(t);
350 p = malloc(b->auth_iovec[0].iov_len + l);
351 if (!p)
352 return -ENOMEM;
353
354 memcpy_safe(p, b->auth_iovec[0].iov_base, b->auth_iovec[0].iov_len);
355 memcpy(p + b->auth_iovec[0].iov_len, t, l);
356
357 b->auth_iovec[0].iov_base = p;
358 b->auth_iovec[0].iov_len += l;
359
360 free(b->auth_buffer);
361 b->auth_buffer = p;
362 b->auth_index = 0;
363 return 0;
364 }
365
366 static int bus_socket_auth_write_ok(sd_bus *b) {
367 char t[3 + 32 + 2 + 1];
368
369 assert(b);
370
371 xsprintf(t, "OK " SD_ID128_FORMAT_STR "\r\n", SD_ID128_FORMAT_VAL(b->server_id));
372
373 return bus_socket_auth_write(b, t);
374 }
375
376 static int bus_socket_auth_verify_server(sd_bus *b) {
377 char *e;
378 const char *line;
379 size_t l;
380 bool processed = false;
381 int r;
382
383 assert(b);
384
385 if (b->rbuffer_size < 1)
386 return 0;
387
388 /* First char must be a NUL byte */
389 if (*(char*) b->rbuffer != 0)
390 return -EIO;
391
392 if (b->rbuffer_size < 3)
393 return 0;
394
395 /* Begin with the first line */
396 if (b->auth_rbegin <= 0)
397 b->auth_rbegin = 1;
398
399 for (;;) {
400 /* Check if line is complete */
401 line = (char*) b->rbuffer + b->auth_rbegin;
402 e = memmem(line, b->rbuffer_size - b->auth_rbegin, "\r\n", 2);
403 if (!e)
404 return processed;
405
406 l = e - line;
407
408 if (line_begins(line, l, "AUTH ANONYMOUS")) {
409
410 r = verify_anonymous_token(b,
411 line + strlen("AUTH ANONYMOUS"),
412 l - strlen("AUTH ANONYMOUS"));
413 if (r < 0)
414 return r;
415 if (r == 0)
416 r = bus_socket_auth_write(b, "REJECTED\r\n");
417 else {
418 b->auth = BUS_AUTH_ANONYMOUS;
419 if (l <= strlen("AUTH ANONYMOUS"))
420 r = bus_socket_auth_write(b, "DATA\r\n");
421 else
422 r = bus_socket_auth_write_ok(b);
423 }
424
425 } else if (line_begins(line, l, "AUTH EXTERNAL")) {
426
427 r = verify_external_token(b,
428 line + strlen("AUTH EXTERNAL"),
429 l - strlen("AUTH EXTERNAL"));
430 if (r < 0)
431 return r;
432 if (r == 0)
433 r = bus_socket_auth_write(b, "REJECTED\r\n");
434 else {
435 b->auth = BUS_AUTH_EXTERNAL;
436 if (l <= strlen("AUTH EXTERNAL"))
437 r = bus_socket_auth_write(b, "DATA\r\n");
438 else
439 r = bus_socket_auth_write_ok(b);
440 }
441
442 } else if (line_begins(line, l, "AUTH"))
443 r = bus_socket_auth_write(b, "REJECTED EXTERNAL ANONYMOUS\r\n");
444 else if (line_equals(line, l, "CANCEL") ||
445 line_begins(line, l, "ERROR")) {
446
447 b->auth = _BUS_AUTH_INVALID;
448 r = bus_socket_auth_write(b, "REJECTED\r\n");
449
450 } else if (line_equals(line, l, "BEGIN")) {
451
452 if (b->auth == _BUS_AUTH_INVALID)
453 r = bus_socket_auth_write(b, "ERROR\r\n");
454 else {
455 /* We can't leave from the auth phase
456 * before we haven't written
457 * everything queued, so let's check
458 * that */
459
460 if (bus_socket_auth_needs_write(b))
461 return 1;
462
463 b->rbuffer_size -= (e + 2 - (char*) b->rbuffer);
464 memmove(b->rbuffer, e + 2, b->rbuffer_size);
465 return bus_start_running(b);
466 }
467
468 } else if (line_begins(line, l, "DATA")) {
469
470 if (b->auth == _BUS_AUTH_INVALID)
471 r = bus_socket_auth_write(b, "ERROR\r\n");
472 else {
473 if (b->auth == BUS_AUTH_ANONYMOUS)
474 r = verify_anonymous_token(b, line + 4, l - 4);
475 else
476 r = verify_external_token(b, line + 4, l - 4);
477
478 if (r < 0)
479 return r;
480 if (r == 0) {
481 b->auth = _BUS_AUTH_INVALID;
482 r = bus_socket_auth_write(b, "REJECTED\r\n");
483 } else
484 r = bus_socket_auth_write_ok(b);
485 }
486 } else if (line_equals(line, l, "NEGOTIATE_UNIX_FD")) {
487 if (b->auth == _BUS_AUTH_INVALID || !b->accept_fd)
488 r = bus_socket_auth_write(b, "ERROR\r\n");
489 else {
490 b->can_fds = true;
491 r = bus_socket_auth_write(b, "AGREE_UNIX_FD\r\n");
492 }
493 } else
494 r = bus_socket_auth_write(b, "ERROR\r\n");
495
496 if (r < 0)
497 return r;
498
499 b->auth_rbegin = e + 2 - (char*) b->rbuffer;
500
501 processed = true;
502 }
503 }
504
505 static int bus_socket_auth_verify(sd_bus *b) {
506 assert(b);
507
508 if (b->is_server)
509 return bus_socket_auth_verify_server(b);
510 else
511 return bus_socket_auth_verify_client(b);
512 }
513
514 static int bus_socket_read_auth(sd_bus *b) {
515 struct msghdr mh;
516 struct iovec iov = {};
517 size_t n;
518 ssize_t k;
519 int r;
520 void *p;
521 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(int) * BUS_FDS_MAX)) control;
522 bool handle_cmsg = false;
523
524 assert(b);
525 assert(b->state == BUS_AUTHENTICATING);
526
527 r = bus_socket_auth_verify(b);
528 if (r != 0)
529 return r;
530
531 n = MAX(256u, b->rbuffer_size * 2);
532
533 if (n > BUS_AUTH_SIZE_MAX)
534 n = BUS_AUTH_SIZE_MAX;
535
536 if (b->rbuffer_size >= n)
537 return -ENOBUFS;
538
539 p = realloc(b->rbuffer, n);
540 if (!p)
541 return -ENOMEM;
542
543 b->rbuffer = p;
544
545 iov = IOVEC_MAKE((uint8_t *)b->rbuffer + b->rbuffer_size, n - b->rbuffer_size);
546
547 if (b->prefer_readv) {
548 k = readv(b->input_fd, &iov, 1);
549 if (k < 0)
550 k = -errno;
551 } else {
552 mh = (struct msghdr) {
553 .msg_iov = &iov,
554 .msg_iovlen = 1,
555 .msg_control = &control,
556 .msg_controllen = sizeof(control),
557 };
558
559 k = recvmsg_safe(b->input_fd, &mh, MSG_DONTWAIT|MSG_CMSG_CLOEXEC);
560 if (k == -ENOTSOCK) {
561 b->prefer_readv = true;
562 k = readv(b->input_fd, &iov, 1);
563 if (k < 0)
564 k = -errno;
565 } else
566 handle_cmsg = true;
567 }
568 if (k == -EAGAIN)
569 return 0;
570 if (k < 0)
571 return (int) k;
572 if (k == 0) {
573 if (handle_cmsg)
574 cmsg_close_all(&mh); /* paranoia, we shouldn't have gotten any fds on EOF */
575 return -ECONNRESET;
576 }
577
578 b->rbuffer_size += k;
579
580 if (handle_cmsg) {
581 struct cmsghdr *cmsg;
582
583 CMSG_FOREACH(cmsg, &mh)
584 if (cmsg->cmsg_level == SOL_SOCKET &&
585 cmsg->cmsg_type == SCM_RIGHTS) {
586 int j;
587
588 /* Whut? We received fds during the auth
589 * protocol? Somebody is playing games with
590 * us. Close them all, and fail */
591 j = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
592 close_many((int*) CMSG_DATA(cmsg), j);
593 return -EIO;
594 } else
595 log_debug("Got unexpected auxiliary data with level=%d and type=%d",
596 cmsg->cmsg_level, cmsg->cmsg_type);
597 }
598
599 r = bus_socket_auth_verify(b);
600 if (r != 0)
601 return r;
602
603 return 1;
604 }
605
606 void bus_socket_setup(sd_bus *b) {
607 assert(b);
608
609 /* Increase the buffers to 8 MB */
610 (void) fd_inc_rcvbuf(b->input_fd, SNDBUF_SIZE);
611 (void) fd_inc_sndbuf(b->output_fd, SNDBUF_SIZE);
612
613 b->message_version = 1;
614 b->message_endian = 0;
615 }
616
617 static void bus_get_peercred(sd_bus *b) {
618 int r;
619
620 assert(b);
621 assert(!b->ucred_valid);
622 assert(!b->label);
623 assert(b->n_groups == (size_t) -1);
624
625 /* Get the peer for socketpair() sockets */
626 b->ucred_valid = getpeercred(b->input_fd, &b->ucred) >= 0;
627
628 /* Get the SELinux context of the peer */
629 r = getpeersec(b->input_fd, &b->label);
630 if (r < 0 && !IN_SET(r, -EOPNOTSUPP, -ENOPROTOOPT))
631 log_debug_errno(r, "Failed to determine peer security context: %m");
632
633 /* Get the list of auxiliary groups of the peer */
634 r = getpeergroups(b->input_fd, &b->groups);
635 if (r >= 0)
636 b->n_groups = (size_t) r;
637 else if (!IN_SET(r, -EOPNOTSUPP, -ENOPROTOOPT))
638 log_debug_errno(r, "Failed to determine peer's group list: %m");
639 }
640
641 static int bus_socket_start_auth_client(sd_bus *b) {
642 static const char sasl_auth_anonymous[] = {
643 /*
644 * We use an arbitrary trace-string for the ANONYMOUS authentication. It can be used by the
645 * message broker to aid debugging of clients. We fully anonymize the connection and use a
646 * static default.
647 */
648 "\0AUTH ANONYMOUS\r\n"
649 /* HEX a n o n y m o u s */
650 "DATA 616e6f6e796d6f7573\r\n"
651 };
652 static const char sasl_auth_external[] = {
653 "\0AUTH EXTERNAL\r\n"
654 "DATA\r\n"
655 };
656 static const char sasl_negotiate_unix_fd[] = {
657 "NEGOTIATE_UNIX_FD\r\n"
658 };
659 static const char sasl_begin[] = {
660 "BEGIN\r\n"
661 };
662 size_t i = 0;
663
664 assert(b);
665
666 if (b->anonymous_auth)
667 b->auth_iovec[i++] = IOVEC_MAKE((char*) sasl_auth_anonymous, sizeof(sasl_auth_anonymous) - 1);
668 else
669 b->auth_iovec[i++] = IOVEC_MAKE((char*) sasl_auth_external, sizeof(sasl_auth_external) - 1);
670
671 if (b->accept_fd)
672 b->auth_iovec[i++] = IOVEC_MAKE_STRING(sasl_negotiate_unix_fd);
673
674 b->auth_iovec[i++] = IOVEC_MAKE_STRING(sasl_begin);
675
676 return bus_socket_write_auth(b);
677 }
678
679 int bus_socket_start_auth(sd_bus *b) {
680 assert(b);
681
682 bus_get_peercred(b);
683
684 bus_set_state(b, BUS_AUTHENTICATING);
685 b->auth_timeout = now(CLOCK_MONOTONIC) + BUS_AUTH_TIMEOUT;
686
687 if (sd_is_socket(b->input_fd, AF_UNIX, 0, 0) <= 0)
688 b->accept_fd = false;
689
690 if (b->output_fd != b->input_fd)
691 if (sd_is_socket(b->output_fd, AF_UNIX, 0, 0) <= 0)
692 b->accept_fd = false;
693
694 if (b->is_server)
695 return bus_socket_read_auth(b);
696 else
697 return bus_socket_start_auth_client(b);
698 }
699
700 static int bus_socket_inotify_setup(sd_bus *b) {
701 _cleanup_free_ int *new_watches = NULL;
702 _cleanup_free_ char *absolute = NULL;
703 size_t n_allocated = 0, n = 0, done = 0, i;
704 unsigned max_follow = 32;
705 const char *p;
706 int wd, r;
707
708 assert(b);
709 assert(b->watch_bind);
710 assert(b->sockaddr.sa.sa_family == AF_UNIX);
711 assert(b->sockaddr.un.sun_path[0] != 0);
712
713 /* Sets up an inotify fd in case watch_bind is enabled: wait until the configured AF_UNIX file system socket
714 * appears before connecting to it. The implemented is pretty simplistic: we just subscribe to relevant changes
715 * to all prefix components of the path, and every time we get an event for that we try to reconnect again,
716 * without actually caring what precisely the event we got told us. If we still can't connect we re-subscribe
717 * to all relevant changes of anything in the path, so that our watches include any possibly newly created path
718 * components. */
719
720 if (b->inotify_fd < 0) {
721 b->inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
722 if (b->inotify_fd < 0)
723 return -errno;
724
725 b->inotify_fd = fd_move_above_stdio(b->inotify_fd);
726 }
727
728 /* Make sure the path is NUL terminated */
729 p = strndupa(b->sockaddr.un.sun_path, sizeof(b->sockaddr.un.sun_path));
730
731 /* Make sure the path is absolute */
732 r = path_make_absolute_cwd(p, &absolute);
733 if (r < 0)
734 goto fail;
735
736 /* Watch all parent directories, and don't mind any prefix that doesn't exist yet. For the innermost directory
737 * that exists we want to know when files are created or moved into it. For all parents of it we just care if
738 * they are removed or renamed. */
739
740 if (!GREEDY_REALLOC(new_watches, n_allocated, n + 1)) {
741 r = -ENOMEM;
742 goto fail;
743 }
744
745 /* Start with the top-level directory, which is a bit simpler than the rest, since it can't be a symlink, and
746 * always exists */
747 wd = inotify_add_watch(b->inotify_fd, "/", IN_CREATE|IN_MOVED_TO);
748 if (wd < 0) {
749 r = log_debug_errno(errno, "Failed to add inotify watch on /: %m");
750 goto fail;
751 } else
752 new_watches[n++] = wd;
753
754 for (;;) {
755 _cleanup_free_ char *component = NULL, *prefix = NULL, *destination = NULL;
756 size_t n_slashes, n_component;
757 char *c = NULL;
758
759 n_slashes = strspn(absolute + done, "/");
760 n_component = n_slashes + strcspn(absolute + done + n_slashes, "/");
761
762 if (n_component == 0) /* The end */
763 break;
764
765 component = strndup(absolute + done, n_component);
766 if (!component) {
767 r = -ENOMEM;
768 goto fail;
769 }
770
771 /* A trailing slash? That's a directory, and not a socket then */
772 if (path_equal(component, "/")) {
773 r = -EISDIR;
774 goto fail;
775 }
776
777 /* A single dot? Let's eat this up */
778 if (path_equal(component, "/.")) {
779 done += n_component;
780 continue;
781 }
782
783 prefix = strndup(absolute, done + n_component);
784 if (!prefix) {
785 r = -ENOMEM;
786 goto fail;
787 }
788
789 if (!GREEDY_REALLOC(new_watches, n_allocated, n + 1)) {
790 r = -ENOMEM;
791 goto fail;
792 }
793
794 wd = inotify_add_watch(b->inotify_fd, prefix, IN_DELETE_SELF|IN_MOVE_SELF|IN_ATTRIB|IN_CREATE|IN_MOVED_TO|IN_DONT_FOLLOW);
795 log_debug("Added inotify watch for %s on bus %s: %i", prefix, strna(b->description), wd);
796
797 if (wd < 0) {
798 if (IN_SET(errno, ENOENT, ELOOP))
799 break; /* This component doesn't exist yet, or the path contains a cyclic symlink right now */
800
801 r = log_debug_errno(errno, "Failed to add inotify watch on %s: %m", empty_to_root(prefix));
802 goto fail;
803 } else
804 new_watches[n++] = wd;
805
806 /* Check if this is possibly a symlink. If so, let's follow it and watch it too. */
807 r = readlink_malloc(prefix, &destination);
808 if (r == -EINVAL) { /* not a symlink */
809 done += n_component;
810 continue;
811 }
812 if (r < 0)
813 goto fail;
814
815 if (isempty(destination)) { /* Empty symlink target? Yuck! */
816 r = -EINVAL;
817 goto fail;
818 }
819
820 if (max_follow <= 0) { /* Let's make sure we don't follow symlinks forever */
821 r = -ELOOP;
822 goto fail;
823 }
824
825 if (path_is_absolute(destination)) {
826 /* For absolute symlinks we build the new path and start anew */
827 c = strjoin(destination, absolute + done + n_component);
828 done = 0;
829 } else {
830 _cleanup_free_ char *t = NULL;
831
832 /* For relative symlinks we replace the last component, and try again */
833 t = strndup(absolute, done);
834 if (!t)
835 return -ENOMEM;
836
837 c = strjoin(t, "/", destination, absolute + done + n_component);
838 }
839 if (!c) {
840 r = -ENOMEM;
841 goto fail;
842 }
843
844 free(absolute);
845 absolute = c;
846
847 max_follow--;
848 }
849
850 /* And now, let's remove all watches from the previous iteration we don't need anymore */
851 for (i = 0; i < b->n_inotify_watches; i++) {
852 bool found = false;
853 size_t j;
854
855 for (j = 0; j < n; j++)
856 if (new_watches[j] == b->inotify_watches[i]) {
857 found = true;
858 break;
859 }
860
861 if (found)
862 continue;
863
864 (void) inotify_rm_watch(b->inotify_fd, b->inotify_watches[i]);
865 }
866
867 free_and_replace(b->inotify_watches, new_watches);
868 b->n_inotify_watches = n;
869
870 return 0;
871
872 fail:
873 bus_close_inotify_fd(b);
874 return r;
875 }
876
877 int bus_socket_connect(sd_bus *b) {
878 bool inotify_done = false;
879 int r;
880
881 assert(b);
882
883 for (;;) {
884 assert(b->input_fd < 0);
885 assert(b->output_fd < 0);
886 assert(b->sockaddr.sa.sa_family != AF_UNSPEC);
887
888 b->input_fd = socket(b->sockaddr.sa.sa_family, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
889 if (b->input_fd < 0)
890 return -errno;
891
892 b->input_fd = fd_move_above_stdio(b->input_fd);
893
894 b->output_fd = b->input_fd;
895 bus_socket_setup(b);
896
897 if (connect(b->input_fd, &b->sockaddr.sa, b->sockaddr_size) < 0) {
898 if (errno == EINPROGRESS) {
899
900 /* If we have any inotify watches open, close them now, we don't need them anymore, as
901 * we have successfully initiated a connection */
902 bus_close_inotify_fd(b);
903
904 /* Note that very likely we are already in BUS_OPENING state here, as we enter it when
905 * we start parsing the address string. The only reason we set the state explicitly
906 * here, is to undo BUS_WATCH_BIND, in case we did the inotify magic. */
907 bus_set_state(b, BUS_OPENING);
908 return 1;
909 }
910
911 if (IN_SET(errno, ENOENT, ECONNREFUSED) && /* ENOENT → unix socket doesn't exist at all; ECONNREFUSED → unix socket stale */
912 b->watch_bind &&
913 b->sockaddr.sa.sa_family == AF_UNIX &&
914 b->sockaddr.un.sun_path[0] != 0) {
915
916 /* This connection attempt failed, let's release the socket for now, and start with a
917 * fresh one when reconnecting. */
918 bus_close_io_fds(b);
919
920 if (inotify_done) {
921 /* inotify set up already, don't do it again, just return now, and remember
922 * that we are waiting for inotify events now. */
923 bus_set_state(b, BUS_WATCH_BIND);
924 return 1;
925 }
926
927 /* This is a file system socket, and the inotify logic is enabled. Let's create the necessary inotify fd. */
928 r = bus_socket_inotify_setup(b);
929 if (r < 0)
930 return r;
931
932 /* Let's now try to connect a second time, because in theory there's otherwise a race
933 * here: the socket might have been created in the time between our first connect() and
934 * the time we set up the inotify logic. But let's remember that we set up inotify now,
935 * so that we don't do the connect() more than twice. */
936 inotify_done = true;
937
938 } else
939 return -errno;
940 } else
941 break;
942 }
943
944 /* Yay, established, we don't need no inotify anymore! */
945 bus_close_inotify_fd(b);
946
947 return bus_socket_start_auth(b);
948 }
949
950 int bus_socket_exec(sd_bus *b) {
951 int s[2], r;
952
953 assert(b);
954 assert(b->input_fd < 0);
955 assert(b->output_fd < 0);
956 assert(b->exec_path);
957 assert(b->busexec_pid == 0);
958
959 r = socketpair(AF_UNIX, SOCK_STREAM|SOCK_NONBLOCK|SOCK_CLOEXEC, 0, s);
960 if (r < 0)
961 return -errno;
962
963 r = safe_fork_full("(sd-busexec)", s+1, 1, FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS, &b->busexec_pid);
964 if (r < 0) {
965 safe_close_pair(s);
966 return r;
967 }
968 if (r == 0) {
969 /* Child */
970
971 if (rearrange_stdio(s[1], s[1], STDERR_FILENO) < 0)
972 _exit(EXIT_FAILURE);
973
974 (void) rlimit_nofile_safe();
975
976 if (b->exec_argv)
977 execvp(b->exec_path, b->exec_argv);
978 else {
979 const char *argv[] = { b->exec_path, NULL };
980 execvp(b->exec_path, (char**) argv);
981 }
982
983 _exit(EXIT_FAILURE);
984 }
985
986 safe_close(s[1]);
987 b->output_fd = b->input_fd = fd_move_above_stdio(s[0]);
988
989 bus_socket_setup(b);
990
991 return bus_socket_start_auth(b);
992 }
993
994 int bus_socket_take_fd(sd_bus *b) {
995 assert(b);
996
997 bus_socket_setup(b);
998
999 return bus_socket_start_auth(b);
1000 }
1001
1002 int bus_socket_write_message(sd_bus *bus, sd_bus_message *m, size_t *idx) {
1003 struct iovec *iov;
1004 ssize_t k;
1005 size_t n;
1006 unsigned j;
1007 int r;
1008
1009 assert(bus);
1010 assert(m);
1011 assert(idx);
1012 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
1013
1014 if (*idx >= BUS_MESSAGE_SIZE(m))
1015 return 0;
1016
1017 r = bus_message_setup_iovec(m);
1018 if (r < 0)
1019 return r;
1020
1021 n = m->n_iovec * sizeof(struct iovec);
1022 iov = newa(struct iovec, n);
1023 memcpy_safe(iov, m->iovec, n);
1024
1025 j = 0;
1026 iovec_advance(iov, &j, *idx);
1027
1028 if (bus->prefer_writev)
1029 k = writev(bus->output_fd, iov, m->n_iovec);
1030 else {
1031 struct msghdr mh = {
1032 .msg_iov = iov,
1033 .msg_iovlen = m->n_iovec,
1034 };
1035
1036 if (m->n_fds > 0 && *idx == 0) {
1037 struct cmsghdr *control;
1038
1039 mh.msg_controllen = CMSG_SPACE(sizeof(int) * m->n_fds);
1040 mh.msg_control = alloca0(mh.msg_controllen);
1041 control = CMSG_FIRSTHDR(&mh);
1042 control->cmsg_len = CMSG_LEN(sizeof(int) * m->n_fds);
1043 control->cmsg_level = SOL_SOCKET;
1044 control->cmsg_type = SCM_RIGHTS;
1045 memcpy(CMSG_DATA(control), m->fds, sizeof(int) * m->n_fds);
1046 }
1047
1048 k = sendmsg(bus->output_fd, &mh, MSG_DONTWAIT|MSG_NOSIGNAL);
1049 if (k < 0 && errno == ENOTSOCK) {
1050 bus->prefer_writev = true;
1051 k = writev(bus->output_fd, iov, m->n_iovec);
1052 }
1053 }
1054
1055 if (k < 0)
1056 return errno == EAGAIN ? 0 : -errno;
1057
1058 *idx += (size_t) k;
1059 return 1;
1060 }
1061
1062 static int bus_socket_read_message_need(sd_bus *bus, size_t *need) {
1063 uint32_t a, b;
1064 uint8_t e;
1065 uint64_t sum;
1066
1067 assert(bus);
1068 assert(need);
1069 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
1070
1071 if (bus->rbuffer_size < sizeof(struct bus_header)) {
1072 *need = sizeof(struct bus_header) + 8;
1073
1074 /* Minimum message size:
1075 *
1076 * Header +
1077 *
1078 * Method Call: +2 string headers
1079 * Signal: +3 string headers
1080 * Method Error: +1 string headers
1081 * +1 uint32 headers
1082 * Method Reply: +1 uint32 headers
1083 *
1084 * A string header is at least 9 bytes
1085 * A uint32 header is at least 8 bytes
1086 *
1087 * Hence the minimum message size of a valid message
1088 * is header + 8 bytes */
1089
1090 return 0;
1091 }
1092
1093 a = ((const uint32_t*) bus->rbuffer)[1];
1094 b = ((const uint32_t*) bus->rbuffer)[3];
1095
1096 e = ((const uint8_t*) bus->rbuffer)[0];
1097 if (e == BUS_LITTLE_ENDIAN) {
1098 a = le32toh(a);
1099 b = le32toh(b);
1100 } else if (e == BUS_BIG_ENDIAN) {
1101 a = be32toh(a);
1102 b = be32toh(b);
1103 } else
1104 return -EBADMSG;
1105
1106 sum = (uint64_t) sizeof(struct bus_header) + (uint64_t) ALIGN_TO(b, 8) + (uint64_t) a;
1107 if (sum >= BUS_MESSAGE_SIZE_MAX)
1108 return -ENOBUFS;
1109
1110 *need = (size_t) sum;
1111 return 0;
1112 }
1113
1114 static int bus_socket_make_message(sd_bus *bus, size_t size) {
1115 sd_bus_message *t = NULL;
1116 void *b;
1117 int r;
1118
1119 assert(bus);
1120 assert(bus->rbuffer_size >= size);
1121 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
1122
1123 r = bus_rqueue_make_room(bus);
1124 if (r < 0)
1125 return r;
1126
1127 if (bus->rbuffer_size > size) {
1128 b = memdup((const uint8_t*) bus->rbuffer + size,
1129 bus->rbuffer_size - size);
1130 if (!b)
1131 return -ENOMEM;
1132 } else
1133 b = NULL;
1134
1135 r = bus_message_from_malloc(bus,
1136 bus->rbuffer, size,
1137 bus->fds, bus->n_fds,
1138 NULL,
1139 &t);
1140 if (r == -EBADMSG) {
1141 log_debug_errno(r, "Received invalid message from connection %s, dropping.", strna(bus->description));
1142 free(bus->rbuffer); /* We want to drop current rbuffer and proceed with whatever remains in b */
1143 } else if (r < 0) {
1144 free(b);
1145 return r;
1146 }
1147
1148 /* rbuffer ownership was either transferred to t, or we got EBADMSG and dropped it. */
1149 bus->rbuffer = b;
1150 bus->rbuffer_size -= size;
1151
1152 bus->fds = NULL;
1153 bus->n_fds = 0;
1154
1155 if (t) {
1156 t->read_counter = ++bus->read_counter;
1157 bus->rqueue[bus->rqueue_size++] = bus_message_ref_queued(t, bus);
1158 sd_bus_message_unref(t);
1159 }
1160
1161 return 1;
1162 }
1163
1164 int bus_socket_read_message(sd_bus *bus) {
1165 struct msghdr mh;
1166 struct iovec iov = {};
1167 ssize_t k;
1168 size_t need;
1169 int r;
1170 void *b;
1171 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(int) * BUS_FDS_MAX)) control;
1172 bool handle_cmsg = false;
1173
1174 assert(bus);
1175 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
1176
1177 r = bus_socket_read_message_need(bus, &need);
1178 if (r < 0)
1179 return r;
1180
1181 if (bus->rbuffer_size >= need)
1182 return bus_socket_make_message(bus, need);
1183
1184 b = realloc(bus->rbuffer, need);
1185 if (!b)
1186 return -ENOMEM;
1187
1188 bus->rbuffer = b;
1189
1190 iov = IOVEC_MAKE((uint8_t *)bus->rbuffer + bus->rbuffer_size, need - bus->rbuffer_size);
1191
1192 if (bus->prefer_readv) {
1193 k = readv(bus->input_fd, &iov, 1);
1194 if (k < 0)
1195 k = -errno;
1196 } else {
1197 mh = (struct msghdr) {
1198 .msg_iov = &iov,
1199 .msg_iovlen = 1,
1200 .msg_control = &control,
1201 .msg_controllen = sizeof(control),
1202 };
1203
1204 k = recvmsg_safe(bus->input_fd, &mh, MSG_DONTWAIT|MSG_CMSG_CLOEXEC);
1205 if (k == -ENOTSOCK) {
1206 bus->prefer_readv = true;
1207 k = readv(bus->input_fd, &iov, 1);
1208 if (k < 0)
1209 k = -errno;
1210 } else
1211 handle_cmsg = true;
1212 }
1213 if (k == -EAGAIN)
1214 return 0;
1215 if (k < 0)
1216 return (int) k;
1217 if (k == 0) {
1218 if (handle_cmsg)
1219 cmsg_close_all(&mh); /* On EOF we shouldn't have gotten an fd, but let's make sure */
1220 return -ECONNRESET;
1221 }
1222
1223 bus->rbuffer_size += k;
1224
1225 if (handle_cmsg) {
1226 struct cmsghdr *cmsg;
1227
1228 CMSG_FOREACH(cmsg, &mh)
1229 if (cmsg->cmsg_level == SOL_SOCKET &&
1230 cmsg->cmsg_type == SCM_RIGHTS) {
1231 int n, *f, i;
1232
1233 n = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
1234
1235 if (!bus->can_fds) {
1236 /* Whut? We received fds but this
1237 * isn't actually enabled? Close them,
1238 * and fail */
1239
1240 close_many((int*) CMSG_DATA(cmsg), n);
1241 return -EIO;
1242 }
1243
1244 f = reallocarray(bus->fds, bus->n_fds + n, sizeof(int));
1245 if (!f) {
1246 close_many((int*) CMSG_DATA(cmsg), n);
1247 return -ENOMEM;
1248 }
1249
1250 for (i = 0; i < n; i++)
1251 f[bus->n_fds++] = fd_move_above_stdio(((int*) CMSG_DATA(cmsg))[i]);
1252 bus->fds = f;
1253 } else
1254 log_debug("Got unexpected auxiliary data with level=%d and type=%d",
1255 cmsg->cmsg_level, cmsg->cmsg_type);
1256 }
1257
1258 r = bus_socket_read_message_need(bus, &need);
1259 if (r < 0)
1260 return r;
1261
1262 if (bus->rbuffer_size >= need)
1263 return bus_socket_make_message(bus, need);
1264
1265 return 1;
1266 }
1267
1268 int bus_socket_process_opening(sd_bus *b) {
1269 int error = 0, events, r;
1270 socklen_t slen = sizeof(error);
1271
1272 assert(b->state == BUS_OPENING);
1273
1274 events = fd_wait_for_event(b->output_fd, POLLOUT, 0);
1275 if (events < 0)
1276 return events;
1277 if (!(events & (POLLOUT|POLLERR|POLLHUP)))
1278 return 0;
1279
1280 r = getsockopt(b->output_fd, SOL_SOCKET, SO_ERROR, &error, &slen);
1281 if (r < 0)
1282 b->last_connect_error = errno;
1283 else if (error != 0)
1284 b->last_connect_error = error;
1285 else if (events & (POLLERR|POLLHUP))
1286 b->last_connect_error = ECONNREFUSED;
1287 else
1288 return bus_socket_start_auth(b);
1289
1290 return bus_next_address(b);
1291 }
1292
1293 int bus_socket_process_authenticating(sd_bus *b) {
1294 int r;
1295
1296 assert(b);
1297 assert(b->state == BUS_AUTHENTICATING);
1298
1299 if (now(CLOCK_MONOTONIC) >= b->auth_timeout)
1300 return -ETIMEDOUT;
1301
1302 r = bus_socket_write_auth(b);
1303 if (r != 0)
1304 return r;
1305
1306 return bus_socket_read_auth(b);
1307 }
1308
1309 int bus_socket_process_watch_bind(sd_bus *b) {
1310 int r, q;
1311
1312 assert(b);
1313 assert(b->state == BUS_WATCH_BIND);
1314 assert(b->inotify_fd >= 0);
1315
1316 r = flush_fd(b->inotify_fd);
1317 if (r <= 0)
1318 return r;
1319
1320 log_debug("Got inotify event on bus %s.", strna(b->description));
1321
1322 /* We flushed events out of the inotify fd. In that case, maybe the socket is valid now? Let's try to connect
1323 * to it again */
1324
1325 r = bus_socket_connect(b);
1326 if (r < 0)
1327 return r;
1328
1329 q = bus_attach_io_events(b);
1330 if (q < 0)
1331 return q;
1332
1333 q = bus_attach_inotify_event(b);
1334 if (q < 0)
1335 return q;
1336
1337 return r;
1338 }