]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/portable/portable.c
tree-wide: make sure our control buffers are properly aligned
[thirdparty/systemd.git] / src / portable / portable.c
CommitLineData
61d0578b
LP
1/* SPDX-License-Identifier: LGPL-2.1+ */
2
e08f94ac
LP
3#include <linux/loop.h>
4
61d0578b
LP
5#include "bus-common-errors.h"
6#include "bus-error.h"
7#include "conf-files.h"
8#include "copy.h"
9#include "def.h"
10#include "dirent-util.h"
11#include "dissect-image.h"
12#include "fd-util.h"
13#include "fileio.h"
14#include "fs-util.h"
5cfa33e0 15#include "install.h"
61d0578b
LP
16#include "io-util.h"
17#include "locale-util.h"
18#include "loop-util.h"
19#include "machine-image.h"
20#include "mkdir.h"
d8b4d14d 21#include "nulstr-util.h"
61d0578b
LP
22#include "os-util.h"
23#include "path-lookup.h"
24#include "portable.h"
25#include "process-util.h"
26#include "set.h"
27#include "signal-util.h"
28#include "socket-util.h"
760877e9 29#include "sort-util.h"
61d0578b
LP
30#include "string-table.h"
31#include "strv.h"
e4de7287 32#include "tmpfile-util.h"
61d0578b
LP
33#include "user-util.h"
34
35static const char profile_dirs[] = CONF_PATHS_NULSTR("systemd/portable/profile");
36
37/* Markers used in the first line of our 20-portable.conf unit file drop-in to determine, that a) the unit file was
38 * dropped there by the portable service logic and b) for which image it was dropped there. */
39#define PORTABLE_DROPIN_MARKER_BEGIN "# Drop-in created for image '"
40#define PORTABLE_DROPIN_MARKER_END "', do not edit."
41
42static bool prefix_match(const char *unit, const char *prefix) {
43 const char *p;
44
45 p = startswith(unit, prefix);
46 if (!p)
47 return false;
48
49 /* Only respect prefixes followed by dash or dot or when there's a complete match */
50 return IN_SET(*p, '-', '.', '@', 0);
51}
52
53static bool unit_match(const char *unit, char **matches) {
54 const char *dot;
55 char **i;
56
57 dot = strrchr(unit, '.');
58 if (!dot)
59 return false;
60
61 if (!STR_IN_SET(dot, ".service", ".socket", ".target", ".timer", ".path"))
62 return false;
63
64 /* Empty match expression means: everything */
65 if (strv_isempty(matches))
66 return true;
67
68 /* Otherwise, at least one needs to match */
69 STRV_FOREACH(i, matches)
70 if (prefix_match(unit, *i))
71 return true;
72
73 return false;
74}
75
76static PortableMetadata *portable_metadata_new(const char *name, int fd) {
77 PortableMetadata *m;
78
79 m = malloc0(offsetof(PortableMetadata, name) + strlen(name) + 1);
80 if (!m)
81 return NULL;
82
83 strcpy(m->name, name);
84 m->fd = fd;
85
86 return m;
87}
88
89PortableMetadata *portable_metadata_unref(PortableMetadata *i) {
90 if (!i)
91 return NULL;
92
93 safe_close(i->fd);
94 free(i->source);
95
96 return mfree(i);
97}
98
61d0578b
LP
99static int compare_metadata(PortableMetadata *const *x, PortableMetadata *const *y) {
100 return strcmp((*x)->name, (*y)->name);
101}
102
103int portable_metadata_hashmap_to_sorted_array(Hashmap *unit_files, PortableMetadata ***ret) {
104
105 _cleanup_free_ PortableMetadata **sorted = NULL;
106 Iterator iterator;
107 PortableMetadata *item;
108 size_t k = 0;
109
110 sorted = new(PortableMetadata*, hashmap_size(unit_files));
111 if (!sorted)
112 return -ENOMEM;
113
114 HASHMAP_FOREACH(item, unit_files, iterator)
115 sorted[k++] = item;
116
117 assert(k == hashmap_size(unit_files));
118
119 typesafe_qsort(sorted, k, compare_metadata);
120
121 *ret = TAKE_PTR(sorted);
122 return 0;
123}
124
125static int send_item(
126 int socket_fd,
127 const char *name,
128 int fd) {
129
fb29cdbe 130 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(int))) control = {};
61d0578b
LP
131 struct iovec iovec;
132 struct msghdr mh = {
133 .msg_control = &control,
134 .msg_controllen = sizeof(control),
135 .msg_iov = &iovec,
136 .msg_iovlen = 1,
137 };
138 struct cmsghdr *cmsg;
139 _cleanup_close_ int data_fd = -1;
140
141 assert(socket_fd >= 0);
142 assert(name);
143 assert(fd >= 0);
144
145 data_fd = fd_duplicate_data_fd(fd);
146 if (data_fd < 0)
147 return data_fd;
148
149 cmsg = CMSG_FIRSTHDR(&mh);
150 cmsg->cmsg_level = SOL_SOCKET;
151 cmsg->cmsg_type = SCM_RIGHTS;
152 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
153 memcpy(CMSG_DATA(cmsg), &data_fd, sizeof(int));
154
61d0578b
LP
155 iovec = IOVEC_MAKE_STRING(name);
156
157 if (sendmsg(socket_fd, &mh, MSG_NOSIGNAL) < 0)
158 return -errno;
159
160 return 0;
161}
162
163static int recv_item(
164 int socket_fd,
165 char **ret_name,
166 int *ret_fd) {
167
fb29cdbe 168 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(int))) control;
61d0578b
LP
169 char buffer[PATH_MAX+2];
170 struct iovec iov = IOVEC_INIT(buffer, sizeof(buffer)-1);
171 struct msghdr mh = {
172 .msg_control = &control,
173 .msg_controllen = sizeof(control),
174 .msg_iov = &iov,
175 .msg_iovlen = 1,
176 };
177 struct cmsghdr *cmsg;
178 _cleanup_close_ int found_fd = -1;
179 char *copy;
180 ssize_t n;
181
182 assert(socket_fd >= 0);
183 assert(ret_name);
184 assert(ret_fd);
185
3691bcf3 186 n = recvmsg_safe(socket_fd, &mh, MSG_CMSG_CLOEXEC);
61d0578b 187 if (n < 0)
3691bcf3 188 return (int) n;
61d0578b
LP
189
190 CMSG_FOREACH(cmsg, &mh) {
191 if (cmsg->cmsg_level == SOL_SOCKET &&
192 cmsg->cmsg_type == SCM_RIGHTS) {
193
194 if (cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
195 assert(found_fd < 0);
196 found_fd = *(int*) CMSG_DATA(cmsg);
197 break;
198 }
199
200 cmsg_close_all(&mh);
201 return -EIO;
202 }
203 }
204
205 buffer[n] = 0;
206
207 copy = strdup(buffer);
208 if (!copy)
209 return -ENOMEM;
210
211 *ret_name = copy;
212 *ret_fd = TAKE_FD(found_fd);
213
214 return 0;
215}
216
67818055
YW
217DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(portable_metadata_hash_ops, char, string_hash_func, string_compare_func,
218 PortableMetadata, portable_metadata_unref);
219
61d0578b
LP
220static int extract_now(
221 const char *where,
222 char **matches,
223 int socket_fd,
224 PortableMetadata **ret_os_release,
225 Hashmap **ret_unit_files) {
226
67818055 227 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
61d0578b
LP
228 _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
229 _cleanup_(lookup_paths_free) LookupPaths paths = {};
230 _cleanup_close_ int os_release_fd = -1;
231 _cleanup_free_ char *os_release_path = NULL;
232 char **i;
233 int r;
234
235 /* Extracts the metadata from a directory tree 'where'. Extracts two kinds of information: the /etc/os-release
236 * data, and all unit files matching the specified expression. Note that this function is called in two very
237 * different but also similar contexts. When the tool gets invoked on a directory tree, we'll process it
238 * directly, and in-process, and thus can return the requested data directly, via 'ret_os_release' and
239 * 'ret_unit_files'. However, if the tool is invoked on a raw disk image — which needs to be mounted first — we
240 * are invoked in a child process with private mounts and then need to send the collected data to our
241 * parent. To handle both cases in one call this function also gets a 'socket_fd' parameter, which when >= 0 is
242 * used to send the data to the parent. */
243
244 assert(where);
245
246 /* First, find /etc/os-release and send it upstream (or just save it). */
247 r = open_os_release(where, &os_release_path, &os_release_fd);
248 if (r < 0)
249 log_debug_errno(r, "Couldn't acquire os-release file, ignoring: %m");
250 else {
251 if (socket_fd >= 0) {
252 r = send_item(socket_fd, "/etc/os-release", os_release_fd);
253 if (r < 0)
254 return log_debug_errno(r, "Failed to send os-release file: %m");
255 }
256
257 if (ret_os_release) {
258 os_release = portable_metadata_new("/etc/os-release", os_release_fd);
259 if (!os_release)
260 return -ENOMEM;
261
262 os_release_fd = -1;
263 os_release->source = TAKE_PTR(os_release_path);
264 }
265 }
266
267 /* Then, send unit file data to the parent (or/and add it to the hashmap). For that we use our usual unit
268 * discovery logic. Note that we force looking inside of /lib/systemd/system/ for units too, as we mightbe
269 * compiled for a split-usr system but the image might be a legacy-usr one. */
270 r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, where);
271 if (r < 0)
272 return log_debug_errno(r, "Failed to acquire lookup paths: %m");
273
67818055 274 unit_files = hashmap_new(&portable_metadata_hash_ops);
61d0578b
LP
275 if (!unit_files)
276 return -ENOMEM;
277
278 STRV_FOREACH(i, paths.search_path) {
279 _cleanup_free_ char *resolved = NULL;
280 _cleanup_closedir_ DIR *d = NULL;
281 struct dirent *de;
282
283 r = chase_symlinks_and_opendir(*i, where, 0, &resolved, &d);
284 if (r < 0) {
285 log_debug_errno(r, "Failed to open unit path '%s', ignoring: %m", *i);
286 continue;
287 }
288
289 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to read directory: %m")) {
290 _cleanup_(portable_metadata_unrefp) PortableMetadata *m = NULL;
291 _cleanup_close_ int fd = -1;
292
293 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
294 continue;
295
296 if (!unit_match(de->d_name, matches))
297 continue;
298
299 /* Filter out duplicates */
300 if (hashmap_get(unit_files, de->d_name))
301 continue;
302
303 dirent_ensure_type(d, de);
304 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
305 continue;
306
307 fd = openat(dirfd(d), de->d_name, O_CLOEXEC|O_RDONLY);
308 if (fd < 0) {
309 log_debug_errno(errno, "Failed to open unit file '%s', ignoring: %m", de->d_name);
310 continue;
311 }
312
313 if (socket_fd >= 0) {
314 r = send_item(socket_fd, de->d_name, fd);
315 if (r < 0)
316 return log_debug_errno(r, "Failed to send unit metadata to parent: %m");
317 }
318
319 m = portable_metadata_new(de->d_name, fd);
320 if (!m)
321 return -ENOMEM;
322 fd = -1;
323
657ee2d8 324 m->source = path_join(resolved, de->d_name);
61d0578b
LP
325 if (!m->source)
326 return -ENOMEM;
327
328 r = hashmap_put(unit_files, m->name, m);
329 if (r < 0)
330 return log_debug_errno(r, "Failed to add unit to hashmap: %m");
331 m = NULL;
332 }
333 }
334
335 if (ret_os_release)
336 *ret_os_release = TAKE_PTR(os_release);
337 if (ret_unit_files)
338 *ret_unit_files = TAKE_PTR(unit_files);
339
340 return 0;
341}
342
343static int portable_extract_by_path(
344 const char *path,
345 char **matches,
346 PortableMetadata **ret_os_release,
347 Hashmap **ret_unit_files,
348 sd_bus_error *error) {
349
67818055 350 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
61d0578b
LP
351 _cleanup_(portable_metadata_unrefp) PortableMetadata* os_release = NULL;
352 _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
353 int r;
354
355 assert(path);
356
e08f94ac 357 r = loop_device_make_by_path(path, O_RDONLY, LO_FLAGS_PARTSCAN, &d);
61d0578b
LP
358 if (r == -EISDIR) {
359 /* We can't turn this into a loop-back block device, and this returns EISDIR? Then this is a directory
360 * tree and not a raw device. It's easy then. */
361
362 r = extract_now(path, matches, -1, &os_release, &unit_files);
363 if (r < 0)
364 return r;
365
366 } else if (r < 0)
367 return log_debug_errno(r, "Failed to set up loopback device: %m");
368 else {
369 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
370 _cleanup_(rmdir_and_freep) char *tmpdir = NULL;
371 _cleanup_(close_pairp) int seq[2] = { -1, -1 };
372 _cleanup_(sigkill_waitp) pid_t child = 0;
373
374 /* We now have a loopback block device, let's fork off a child in its own mount namespace, mount it
375 * there, and extract the metadata we need. The metadata is sent from the child back to us. */
376
377 BLOCK_SIGNALS(SIGCHLD);
378
379 r = mkdtemp_malloc("/tmp/inspect-XXXXXX", &tmpdir);
380 if (r < 0)
381 return log_debug_errno(r, "Failed to create temporary directory: %m");
382
d4dffb85 383 r = dissect_image(d->fd, NULL, 0, DISSECT_IMAGE_READ_ONLY|DISSECT_IMAGE_REQUIRE_ROOT|DISSECT_IMAGE_DISCARD_ON_LOOP|DISSECT_IMAGE_RELAX_VAR_CHECK, &m);
61d0578b
LP
384 if (r == -ENOPKG)
385 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Couldn't identify a suitable partition table or file system in '%s'.", path);
386 else if (r == -EADDRNOTAVAIL)
387 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No root partition for specified root hash found in '%s'.", path);
388 else if (r == -ENOTUNIQ)
389 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Multiple suitable root partitions found in image '%s'.", path);
390 else if (r == -ENXIO)
391 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No suitable root partition found in image '%s'.", path);
392 else if (r == -EPROTONOSUPPORT)
393 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Device '%s' is loopback block device with partition scanning turned off, please turn it on.", path);
394 if (r < 0)
395 return r;
396
397 if (socketpair(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0, seq) < 0)
398 return log_debug_errno(errno, "Failed to allocated SOCK_SEQPACKET socket: %m");
399
400 r = safe_fork("(sd-dissect)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE|FORK_LOG, &child);
401 if (r < 0)
402 return r;
403 if (r == 0) {
404 seq[0] = safe_close(seq[0]);
405
406 r = dissected_image_mount(m, tmpdir, UID_INVALID, DISSECT_IMAGE_READ_ONLY|DISSECT_IMAGE_VALIDATE_OS);
407 if (r < 0) {
408 log_debug_errno(r, "Failed to mount dissected image: %m");
409 goto child_finish;
410 }
411
412 r = extract_now(tmpdir, matches, seq[1], NULL, NULL);
413
414 child_finish:
415 _exit(r < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
416 }
417
418 seq[1] = safe_close(seq[1]);
419
67818055 420 unit_files = hashmap_new(&portable_metadata_hash_ops);
61d0578b
LP
421 if (!unit_files)
422 return -ENOMEM;
423
424 for (;;) {
425 _cleanup_(portable_metadata_unrefp) PortableMetadata *add = NULL;
426 _cleanup_free_ char *name = NULL;
427 _cleanup_close_ int fd = -1;
428
429 r = recv_item(seq[0], &name, &fd);
430 if (r < 0)
431 return log_debug_errno(r, "Failed to receive item: %m");
432
5238e957 433 /* We can't really distinguish a zero-length datagram without any fds from EOF (both are signalled the
61d0578b
LP
434 * same way by recvmsg()). Hence, accept either as end notification. */
435 if (isempty(name) && fd < 0)
436 break;
437
438 if (isempty(name) || fd < 0) {
439 log_debug("Invalid item sent from child.");
440 return -EINVAL;
441 }
442
443 add = portable_metadata_new(name, fd);
444 if (!add)
445 return -ENOMEM;
446 fd = -1;
447
448 /* Note that we do not initialize 'add->source' here, as the source path is not usable here as
449 * it refers to a path only valid in the short-living namespaced child process we forked
450 * here. */
451
452 if (PORTABLE_METADATA_IS_UNIT(add)) {
453 r = hashmap_put(unit_files, add->name, add);
454 if (r < 0)
455 return log_debug_errno(r, "Failed to add item to unit file list: %m");
456
457 add = NULL;
458
459 } else if (PORTABLE_METADATA_IS_OS_RELEASE(add)) {
460
461 assert(!os_release);
462 os_release = TAKE_PTR(add);
463 } else
464 assert_not_reached("Unexpected metadata item from child.");
465 }
466
467 r = wait_for_terminate_and_check("(sd-dissect)", child, 0);
468 if (r < 0)
469 return r;
470 child = 0;
471 }
472
473 if (!os_release)
474 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image '%s' lacks os-release data, refusing.", path);
475
476 if (hashmap_isempty(unit_files))
477 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Couldn't find any matching unit files in image '%s', refusing.", path);
478
479 if (ret_unit_files)
480 *ret_unit_files = TAKE_PTR(unit_files);
481
482 if (ret_os_release)
483 *ret_os_release = TAKE_PTR(os_release);
484
485 return 0;
486}
487
488int portable_extract(
489 const char *name_or_path,
490 char **matches,
491 PortableMetadata **ret_os_release,
492 Hashmap **ret_unit_files,
493 sd_bus_error *error) {
494
495 _cleanup_(image_unrefp) Image *image = NULL;
496 int r;
497
498 assert(name_or_path);
499
500 r = image_find_harder(IMAGE_PORTABLE, name_or_path, &image);
501 if (r < 0)
502 return r;
503
504 return portable_extract_by_path(image->path, matches, ret_os_release, ret_unit_files, error);
505}
506
507static int unit_file_is_active(
508 sd_bus *bus,
509 const char *name,
510 sd_bus_error *error) {
511
512 static const char *const active_states[] = {
513 "activating",
514 "active",
515 "reloading",
516 "deactivating",
517 NULL,
518 };
519 int r;
520
521 if (!bus)
522 return false;
523
524 /* If we are looking at a plain or instance things are easy, we can just query the state */
525 if (unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
526 _cleanup_free_ char *path = NULL, *buf = NULL;
527
528 path = unit_dbus_path_from_name(name);
529 if (!path)
530 return -ENOMEM;
531
532 r = sd_bus_get_property_string(
533 bus,
534 "org.freedesktop.systemd1",
535 path,
536 "org.freedesktop.systemd1.Unit",
537 "ActiveState",
538 error,
539 &buf);
540 if (r < 0)
541 return log_debug_errno(r, "Failed to retrieve unit state: %s", bus_error_message(error, r));
542
543 return strv_contains((char**) active_states, buf);
544 }
545
546 /* Otherwise we need to enumerate. But let's build the most restricted query we can */
547 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
548 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
549 const char *at, *prefix, *joined;
550
551 r = sd_bus_message_new_method_call(
552 bus,
553 &m,
554 "org.freedesktop.systemd1",
555 "/org/freedesktop/systemd1",
556 "org.freedesktop.systemd1.Manager",
557 "ListUnitsByPatterns");
558 if (r < 0)
559 return r;
560
561 r = sd_bus_message_append_strv(m, (char**) active_states);
562 if (r < 0)
563 return r;
564
565 at = strchr(name, '@');
566 assert(at);
567
568 prefix = strndupa(name, at + 1 - name);
569 joined = strjoina(prefix, "*", at + 1);
570
571 r = sd_bus_message_append_strv(m, STRV_MAKE(joined));
572 if (r < 0)
573 return r;
574
575 r = sd_bus_call(bus, m, 0, error, &reply);
576 if (r < 0)
577 return log_debug_errno(r, "Failed to list units: %s", bus_error_message(error, r));
578
579 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
580 if (r < 0)
581 return r;
582
583 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_STRUCT, "ssssssouso");
584 if (r < 0)
585 return r;
586
587 return r > 0;
588 }
589
590 return -EINVAL;
591}
592
593static int portable_changes_add(
594 PortableChange **changes,
595 size_t *n_changes,
596 PortableChangeType type,
597 const char *path,
598 const char *source) {
599
600 _cleanup_free_ char *p = NULL, *s = NULL;
601 PortableChange *c;
602
603 assert(path);
604 assert(!changes == !n_changes);
605
606 if (!changes)
607 return 0;
608
609 c = reallocarray(*changes, *n_changes + 1, sizeof(PortableChange));
610 if (!c)
611 return -ENOMEM;
612 *changes = c;
613
614 p = strdup(path);
615 if (!p)
616 return -ENOMEM;
617
858d36c1 618 path_simplify(p, false);
61d0578b
LP
619
620 if (source) {
621 s = strdup(source);
622 if (!s)
623 return -ENOMEM;
624
858d36c1 625 path_simplify(s, false);
61d0578b
LP
626 }
627
628 c[(*n_changes)++] = (PortableChange) {
629 .type = type,
630 .path = TAKE_PTR(p),
631 .source = TAKE_PTR(s),
632 };
633
634 return 0;
635}
636
637static int portable_changes_add_with_prefix(
638 PortableChange **changes,
639 size_t *n_changes,
640 PortableChangeType type,
641 const char *prefix,
642 const char *path,
643 const char *source) {
644
645 assert(path);
646 assert(!changes == !n_changes);
647
648 if (!changes)
649 return 0;
650
651 if (prefix) {
270384b2 652 path = prefix_roota(prefix, path);
61d0578b
LP
653
654 if (source)
270384b2 655 source = prefix_roota(prefix, source);
61d0578b
LP
656 }
657
658 return portable_changes_add(changes, n_changes, type, path, source);
659}
660
661void portable_changes_free(PortableChange *changes, size_t n_changes) {
662 size_t i;
663
664 assert(changes || n_changes == 0);
665
666 for (i = 0; i < n_changes; i++) {
667 free(changes[i].path);
668 free(changes[i].source);
669 }
670
671 free(changes);
672}
673
674static int install_chroot_dropin(
675 const char *image_path,
676 ImageType type,
677 const PortableMetadata *m,
678 const char *dropin_dir,
679 char **ret_dropin,
680 PortableChange **changes,
681 size_t *n_changes) {
682
683 _cleanup_free_ char *text = NULL, *dropin = NULL;
684 int r;
685
686 assert(image_path);
687 assert(m);
688 assert(dropin_dir);
689
657ee2d8 690 dropin = path_join(dropin_dir, "20-portable.conf");
61d0578b
LP
691 if (!dropin)
692 return -ENOMEM;
693
694 text = strjoin(PORTABLE_DROPIN_MARKER_BEGIN, image_path, PORTABLE_DROPIN_MARKER_END "\n");
695 if (!text)
696 return -ENOMEM;
697
698 if (endswith(m->name, ".service"))
699 if (!strextend(&text,
700 "\n"
701 "[Service]\n",
702 IN_SET(type, IMAGE_DIRECTORY, IMAGE_SUBVOLUME) ? "RootDirectory=" : "RootImage=", image_path, "\n"
703 "Environment=PORTABLE=", basename(image_path), "\n"
704 "LogExtraFields=PORTABLE=", basename(image_path), "\n",
705 NULL))
706
707 return -ENOMEM;
708
709 r = write_string_file(dropin, text, WRITE_STRING_FILE_CREATE|WRITE_STRING_FILE_ATOMIC);
710 if (r < 0)
711 return log_debug_errno(r, "Failed to write '%s': %m", dropin);
712
713 (void) portable_changes_add(changes, n_changes, PORTABLE_WRITE, dropin, NULL);
714
715 if (ret_dropin)
716 *ret_dropin = TAKE_PTR(dropin);
717
718 return 0;
719}
720
721static int find_profile(const char *name, const char *unit, char **ret) {
722 const char *p, *dot;
723
724 assert(name);
725 assert(ret);
726
727 assert_se(dot = strrchr(unit, '.'));
728
729 NULSTR_FOREACH(p, profile_dirs) {
730 _cleanup_free_ char *joined;
731
732 joined = strjoin(p, "/", name, "/", dot + 1, ".conf");
733 if (!joined)
734 return -ENOMEM;
735
736 if (laccess(joined, F_OK) >= 0) {
737 *ret = TAKE_PTR(joined);
738 return 0;
739 }
740
741 if (errno != ENOENT)
742 return -errno;
743 }
744
745 return -ENOENT;
746}
747
748static int install_profile_dropin(
749 const char *image_path,
750 const PortableMetadata *m,
751 const char *dropin_dir,
752 const char *profile,
753 PortableFlags flags,
754 char **ret_dropin,
755 PortableChange **changes,
756 size_t *n_changes) {
757
758 _cleanup_free_ char *dropin = NULL, *from = NULL;
759 int r;
760
761 assert(image_path);
762 assert(m);
763 assert(dropin_dir);
764
765 if (!profile)
766 return 0;
767
768 r = find_profile(profile, m->name, &from);
769 if (r < 0) {
99c89da0 770 if (r != -ENOENT)
61d0578b
LP
771 return log_debug_errno(errno, "Profile '%s' is not accessible: %m", profile);
772
773 log_debug_errno(errno, "Skipping link to profile '%s', as it does not exist: %m", profile);
774 return 0;
775 }
776
657ee2d8 777 dropin = path_join(dropin_dir, "10-profile.conf");
61d0578b
LP
778 if (!dropin)
779 return -ENOMEM;
780
781 if (flags & PORTABLE_PREFER_COPY) {
782
8a016c74 783 r = copy_file_atomic(from, dropin, 0644, 0, 0, COPY_REFLINK);
61d0578b 784 if (r < 0)
9a6f746f 785 return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
61d0578b
LP
786
787 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, dropin, from);
788
789 } else {
790
791 if (symlink(from, dropin) < 0)
9a6f746f 792 return log_debug_errno(errno, "Failed to link %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
61d0578b
LP
793
794 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, dropin, from);
795 }
796
797 if (ret_dropin)
798 *ret_dropin = TAKE_PTR(dropin);
799
800 return 0;
801}
802
40a7b232 803static const char *attached_path(const LookupPaths *paths, PortableFlags flags) {
61d0578b
LP
804 const char *where;
805
806 assert(paths);
807
808 if (flags & PORTABLE_RUNTIME)
40a7b232 809 where = paths->runtime_attached;
61d0578b 810 else
40a7b232 811 where = paths->persistent_attached;
61d0578b
LP
812
813 assert(where);
814 return where;
815}
816
817static int attach_unit_file(
818 const LookupPaths *paths,
819 const char *image_path,
820 ImageType type,
821 const PortableMetadata *m,
822 const char *profile,
823 PortableFlags flags,
824 PortableChange **changes,
825 size_t *n_changes) {
826
827 _cleanup_(unlink_and_freep) char *chroot_dropin = NULL, *profile_dropin = NULL;
828 _cleanup_(rmdir_and_freep) char *dropin_dir = NULL;
829 const char *where, *path;
830 int r;
831
832 assert(paths);
833 assert(image_path);
834 assert(m);
835 assert(PORTABLE_METADATA_IS_UNIT(m));
836
40a7b232 837 where = attached_path(paths, flags);
61d0578b 838
d09d85a2
LP
839 (void) mkdir_parents(where, 0755);
840 if (mkdir(where, 0755) < 0) {
841 if (errno != EEXIST)
842 return -errno;
843 } else
844 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, where, NULL);
845
270384b2 846 path = prefix_roota(where, m->name);
61d0578b
LP
847 dropin_dir = strjoin(path, ".d");
848 if (!dropin_dir)
849 return -ENOMEM;
850
d09d85a2
LP
851 if (mkdir(dropin_dir, 0755) < 0) {
852 if (errno != EEXIST)
853 return -errno;
854 } else
855 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, dropin_dir, NULL);
61d0578b
LP
856
857 /* We install the drop-ins first, and the actual unit file last to achieve somewhat atomic behaviour if PID 1
858 * is reloaded while we are creating things here: as long as only the drop-ins exist the unit doesn't exist at
859 * all for PID 1. */
860
861 r = install_chroot_dropin(image_path, type, m, dropin_dir, &chroot_dropin, changes, n_changes);
862 if (r < 0)
863 return r;
864
865 r = install_profile_dropin(image_path, m, dropin_dir, profile, flags, &profile_dropin, changes, n_changes);
866 if (r < 0)
867 return r;
868
869 if ((flags & PORTABLE_PREFER_SYMLINK) && m->source) {
870
871 if (symlink(m->source, path) < 0)
872 return log_debug_errno(errno, "Failed to symlink unit file '%s': %m", path);
873
874 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, path, m->source);
875
876 } else {
877 _cleanup_(unlink_and_freep) char *tmp = NULL;
878 _cleanup_close_ int fd = -1;
879
880 fd = open_tmpfile_linkable(where, O_WRONLY|O_CLOEXEC, &tmp);
881 if (fd < 0)
882 return log_debug_errno(fd, "Failed to create unit file '%s': %m", path);
883
884 r = copy_bytes(m->fd, fd, UINT64_MAX, COPY_REFLINK);
885 if (r < 0)
886 return log_debug_errno(r, "Failed to copy unit file '%s': %m", path);
887
888 if (fchmod(fd, 0644) < 0)
889 return log_debug_errno(errno, "Failed to change unit file access mode for '%s': %m", path);
890
891 r = link_tmpfile(fd, tmp, path);
892 if (r < 0)
893 return log_debug_errno(r, "Failed to install unit file '%s': %m", path);
894
895 tmp = mfree(tmp);
896
897 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, path, m->source);
898 }
899
900 /* All is established now, now let's disable any rollbacks */
901 chroot_dropin = mfree(chroot_dropin);
902 profile_dropin = mfree(profile_dropin);
903 dropin_dir = mfree(dropin_dir);
904
905 return 0;
906}
907
908static int image_symlink(
909 const char *image_path,
910 PortableFlags flags,
911 char **ret) {
912
913 const char *fn, *where;
914 char *joined = NULL;
915
916 assert(image_path);
917 assert(ret);
918
919 fn = last_path_component(image_path);
920
921 if (flags & PORTABLE_RUNTIME)
922 where = "/run/portables/";
923 else
924 where = "/etc/portables/";
925
926 joined = strjoin(where, fn);
927 if (!joined)
928 return -ENOMEM;
929
930 *ret = joined;
931 return 0;
932}
933
934static int install_image_symlink(
935 const char *image_path,
936 PortableFlags flags,
937 PortableChange **changes,
938 size_t *n_changes) {
939
940 _cleanup_free_ char *sl = NULL;
941 int r;
942
943 assert(image_path);
944
945 /* If the image is outside of the image search also link it into it, so that it can be found with short image
946 * names and is listed among the images. */
947
948 if (image_in_search_path(IMAGE_PORTABLE, image_path))
949 return 0;
950
951 r = image_symlink(image_path, flags, &sl);
952 if (r < 0)
953 return log_debug_errno(r, "Failed to generate image symlink path: %m");
954
955 (void) mkdir_parents(sl, 0755);
956
957 if (symlink(image_path, sl) < 0)
9a6f746f 958 return log_debug_errno(errno, "Failed to link %s %s %s: %m", image_path, special_glyph(SPECIAL_GLYPH_ARROW), sl);
61d0578b
LP
959
960 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, sl, image_path);
961 return 0;
962}
963
964int portable_attach(
965 sd_bus *bus,
966 const char *name_or_path,
967 char **matches,
968 const char *profile,
969 PortableFlags flags,
970 PortableChange **changes,
971 size_t *n_changes,
972 sd_bus_error *error) {
973
67818055 974 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
61d0578b
LP
975 _cleanup_(lookup_paths_free) LookupPaths paths = {};
976 _cleanup_(image_unrefp) Image *image = NULL;
977 PortableMetadata *item;
978 Iterator iterator;
979 int r;
980
981 assert(name_or_path);
982
983 r = image_find_harder(IMAGE_PORTABLE, name_or_path, &image);
984 if (r < 0)
985 return r;
986
987 r = portable_extract_by_path(image->path, matches, NULL, &unit_files, error);
988 if (r < 0)
989 return r;
990
991 r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
992 if (r < 0)
993 return r;
994
995 HASHMAP_FOREACH(item, unit_files, iterator) {
996 r = unit_file_exists(UNIT_FILE_SYSTEM, &paths, item->name);
997 if (r < 0)
998 return sd_bus_error_set_errnof(error, r, "Failed to determine whether unit '%s' exists on the host: %m", item->name);
999 if (r > 0)
1000 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' exists on the host already, refusing.", item->name);
1001
1002 r = unit_file_is_active(bus, item->name, error);
1003 if (r < 0)
1004 return r;
1005 if (r > 0)
1006 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active already, refusing.", item->name);
1007 }
1008
1009 HASHMAP_FOREACH(item, unit_files, iterator) {
1010 r = attach_unit_file(&paths, image->path, image->type, item, profile, flags, changes, n_changes);
1011 if (r < 0)
1012 return r;
1013 }
1014
1015 /* We don't care too much for the image symlink, it's just a convenience thing, it's not necessary for proper
1016 * operation otherwise. */
1017 (void) install_image_symlink(image->path, flags, changes, n_changes);
1018
1019 return 0;
1020}
1021
1022static bool marker_matches_image(const char *marker, const char *name_or_path) {
1023 const char *a;
1024
1025 assert(marker);
1026 assert(name_or_path);
1027
1028 a = last_path_component(marker);
1029
1030 if (image_name_is_valid(name_or_path)) {
1031 const char *e;
1032
1033 /* We shall match against an image name. In that case let's compare the last component, and optionally
1034 * allow either a suffix of ".raw" or a series of "/". */
1035
1036 e = startswith(a, name_or_path);
1037 if (!e)
1038 return false;
1039
1040 return
1041 e[strspn(e, "/")] == 0 ||
1042 streq(e, ".raw");
1043 } else {
1044 const char *b;
1045 size_t l;
1046
1047 /* We shall match against a path. Let's ignore any prefix here though, as often there are many ways to
1048 * reach the same file. However, in this mode, let's validate any file suffix. */
1049
1050 l = strcspn(a, "/");
1051 b = last_path_component(name_or_path);
1052
1053 if (strcspn(b, "/") != l)
1054 return false;
1055
1056 return memcmp(a, b, l) == 0;
1057 }
1058}
1059
1060static int test_chroot_dropin(
1061 DIR *d,
1062 const char *where,
1063 const char *fname,
1064 const char *name_or_path,
1065 char **ret_marker) {
1066
1067 _cleanup_free_ char *line = NULL, *marker = NULL;
1068 _cleanup_fclose_ FILE *f = NULL;
1069 _cleanup_close_ int fd = -1;
1070 const char *p, *e, *k;
1071 int r;
1072
1073 assert(d);
1074 assert(where);
1075 assert(fname);
1076
1077 /* We recognize unis created from portable images via the drop-in we created for them */
1078
1079 p = strjoina(fname, ".d/20-portable.conf");
1080 fd = openat(dirfd(d), p, O_RDONLY|O_CLOEXEC);
1081 if (fd < 0) {
1082 if (errno == ENOENT)
1083 return 0;
1084
1085 return log_debug_errno(errno, "Failed to open %s/%s: %m", where, p);
1086 }
1087
4fa744a3 1088 r = take_fdopen_unlocked(&fd, "r", &f);
02e23d1a
ZJS
1089 if (r < 0)
1090 return log_debug_errno(r, "Failed to convert file handle: %m");
61d0578b
LP
1091
1092 r = read_line(f, LONG_LINE_MAX, &line);
1093 if (r < 0)
1094 return log_debug_errno(r, "Failed to read from %s/%s: %m", where, p);
1095
1096 e = startswith(line, PORTABLE_DROPIN_MARKER_BEGIN);
1097 if (!e)
1098 return 0;
1099
1100 k = endswith(e, PORTABLE_DROPIN_MARKER_END);
1101 if (!k)
1102 return 0;
1103
1104 marker = strndup(e, k - e);
1105 if (!marker)
1106 return -ENOMEM;
1107
1108 if (!name_or_path)
1109 r = true;
1110 else
1111 r = marker_matches_image(marker, name_or_path);
1112
1113 if (ret_marker)
1114 *ret_marker = TAKE_PTR(marker);
1115
1116 return r;
1117}
1118
1119int portable_detach(
1120 sd_bus *bus,
1121 const char *name_or_path,
1122 PortableFlags flags,
1123 PortableChange **changes,
1124 size_t *n_changes,
1125 sd_bus_error *error) {
1126
1127 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1128 _cleanup_set_free_free_ Set *unit_files = NULL, *markers = NULL;
1129 _cleanup_closedir_ DIR *d = NULL;
1130 const char *where, *item;
1131 Iterator iterator;
1132 struct dirent *de;
1133 int ret = 0;
1134 int r;
1135
1136 assert(name_or_path);
1137
1138 r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
1139 if (r < 0)
1140 return r;
1141
40a7b232 1142 where = attached_path(&paths, flags);
61d0578b
LP
1143
1144 d = opendir(where);
339731db
LP
1145 if (!d) {
1146 if (errno == ENOENT)
1147 goto not_found;
1148
61d0578b 1149 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
339731db 1150 }
61d0578b
LP
1151
1152 unit_files = set_new(&string_hash_ops);
1153 if (!unit_files)
1154 return -ENOMEM;
1155
1156 markers = set_new(&path_hash_ops);
1157 if (!markers)
1158 return -ENOMEM;
1159
1160 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
1161 _cleanup_free_ char *marker = NULL;
1162 UnitFileState state;
1163
1164 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
1165 continue;
1166
1167 /* Filter out duplicates */
1168 if (set_get(unit_files, de->d_name))
1169 continue;
1170
1171 dirent_ensure_type(d, de);
1172 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
1173 continue;
1174
1175 r = test_chroot_dropin(d, where, de->d_name, name_or_path, &marker);
1176 if (r < 0)
1177 return r;
1178 if (r == 0)
1179 continue;
1180
1181 r = unit_file_lookup_state(UNIT_FILE_SYSTEM, &paths, de->d_name, &state);
1182 if (r < 0)
1183 return log_debug_errno(r, "Failed to determine unit file state of '%s': %m", de->d_name);
c3d809ef 1184 if (!IN_SET(state, UNIT_FILE_STATIC, UNIT_FILE_DISABLED, UNIT_FILE_LINKED, UNIT_FILE_RUNTIME, UNIT_FILE_LINKED_RUNTIME))
61d0578b
LP
1185 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is in state '%s', can't detach.", de->d_name, unit_file_state_to_string(state));
1186
1187 r = unit_file_is_active(bus, de->d_name, error);
1188 if (r < 0)
1189 return r;
1190 if (r > 0)
1191 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active, can't detach.", de->d_name);
1192
1193 r = set_put_strdup(unit_files, de->d_name);
1194 if (r < 0)
1195 return log_debug_errno(r, "Failed to add unit name '%s' to set: %m", de->d_name);
1196
1197 if (path_is_absolute(marker) &&
1198 !image_in_search_path(IMAGE_PORTABLE, marker)) {
1199
1200 r = set_ensure_allocated(&markers, &path_hash_ops);
1201 if (r < 0)
1202 return r;
1203
1204 r = set_put(markers, marker);
1205 if (r >= 0)
1206 marker = NULL;
1207 else if (r != -EEXIST)
1208 return r;
1209 }
1210 }
1211
339731db
LP
1212 if (set_isempty(unit_files))
1213 goto not_found;
61d0578b
LP
1214
1215 SET_FOREACH(item, unit_files, iterator) {
1216 _cleanup_free_ char *md = NULL;
1217 const char *suffix;
1218
1219 if (unlinkat(dirfd(d), item, 0) < 0) {
1220 log_debug_errno(errno, "Can't remove unit file %s/%s: %m", where, item);
1221
1222 if (errno != ENOENT && ret >= 0)
1223 ret = -errno;
1224 } else
1225 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, item, NULL);
1226
1227 FOREACH_STRING(suffix, ".d/10-profile.conf", ".d/20-portable.conf") {
1228 _cleanup_free_ char *dropin = NULL;
1229
1230 dropin = strjoin(item, suffix);
1231 if (!dropin)
1232 return -ENOMEM;
1233
1234 if (unlinkat(dirfd(d), dropin, 0) < 0) {
1235 log_debug_errno(errno, "Can't remove drop-in %s/%s: %m", where, dropin);
1236
1237 if (errno != ENOENT && ret >= 0)
1238 ret = -errno;
1239 } else
1240 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, dropin, NULL);
1241 }
1242
1243 md = strjoin(item, ".d");
1244 if (!md)
1245 return -ENOMEM;
1246
1247 if (unlinkat(dirfd(d), md, AT_REMOVEDIR) < 0) {
1248 log_debug_errno(errno, "Can't remove drop-in directory %s/%s: %m", where, md);
1249
1250 if (errno != ENOENT && ret >= 0)
1251 ret = -errno;
1252 } else
1253 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, md, NULL);
1254 }
1255
1256 /* Now, also drop any image symlink, for images outside of the sarch path */
1257 SET_FOREACH(item, markers, iterator) {
1258 _cleanup_free_ char *sl = NULL;
1259 struct stat st;
1260
1261 r = image_symlink(item, flags, &sl);
1262 if (r < 0) {
1263 log_debug_errno(r, "Failed to determine image symlink for '%s', ignoring: %m", item);
1264 continue;
1265 }
1266
1267 if (lstat(sl, &st) < 0) {
1268 log_debug_errno(errno, "Failed to stat '%s', ignoring: %m", sl);
1269 continue;
1270 }
1271
1272 if (!S_ISLNK(st.st_mode)) {
1273 log_debug("Image '%s' is not a symlink, ignoring.", sl);
1274 continue;
1275 }
1276
1277 if (unlink(sl) < 0) {
1278 log_debug_errno(errno, "Can't remove image symlink '%s': %m", sl);
1279
1280 if (errno != ENOENT && ret >= 0)
1281 ret = -errno;
1282 } else
1283 portable_changes_add(changes, n_changes, PORTABLE_UNLINK, sl, NULL);
1284 }
1285
d09d85a2
LP
1286 /* Try to remove the unit file directory, if we can */
1287 if (rmdir(where) >= 0)
1288 portable_changes_add(changes, n_changes, PORTABLE_UNLINK, where, NULL);
1289
61d0578b 1290 return ret;
339731db
LP
1291
1292not_found:
1293 log_debug("No unit files associated with '%s' found. Image not attached?", name_or_path);
1294 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_UNIT, "No unit files associated with '%s' found. Image not attached?", name_or_path);
61d0578b
LP
1295}
1296
1297static int portable_get_state_internal(
1298 sd_bus *bus,
1299 const char *name_or_path,
1300 PortableFlags flags,
1301 PortableState *ret,
1302 sd_bus_error *error) {
1303
1304 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1305 bool found_enabled = false, found_running = false;
1306 _cleanup_set_free_free_ Set *unit_files = NULL;
1307 _cleanup_closedir_ DIR *d = NULL;
1308 const char *where;
1309 struct dirent *de;
1310 int r;
1311
1312 assert(name_or_path);
1313 assert(ret);
1314
1315 r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
1316 if (r < 0)
1317 return r;
1318
40a7b232 1319 where = attached_path(&paths, flags);
61d0578b
LP
1320
1321 d = opendir(where);
339731db
LP
1322 if (!d) {
1323 if (errno == ENOENT) {
1324 /* If the 'attached' directory doesn't exist at all, then we know for sure this image isn't attached. */
1325 *ret = PORTABLE_DETACHED;
1326 return 0;
1327 }
1328
61d0578b 1329 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
339731db 1330 }
61d0578b
LP
1331
1332 unit_files = set_new(&string_hash_ops);
1333 if (!unit_files)
1334 return -ENOMEM;
1335
1336 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
1337 UnitFileState state;
1338
1339 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
1340 continue;
1341
1342 /* Filter out duplicates */
1343 if (set_get(unit_files, de->d_name))
1344 continue;
1345
1346 dirent_ensure_type(d, de);
1347 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
1348 continue;
1349
1350 r = test_chroot_dropin(d, where, de->d_name, name_or_path, NULL);
1351 if (r < 0)
1352 return r;
1353 if (r == 0)
1354 continue;
1355
1356 r = unit_file_lookup_state(UNIT_FILE_SYSTEM, &paths, de->d_name, &state);
1357 if (r < 0)
1358 return log_debug_errno(r, "Failed to determine unit file state of '%s': %m", de->d_name);
1359 if (!IN_SET(state, UNIT_FILE_STATIC, UNIT_FILE_DISABLED, UNIT_FILE_LINKED, UNIT_FILE_LINKED_RUNTIME))
1360 found_enabled = true;
1361
1362 r = unit_file_is_active(bus, de->d_name, error);
1363 if (r < 0)
1364 return r;
1365 if (r > 0)
1366 found_running = true;
1367
1368 r = set_put_strdup(unit_files, de->d_name);
1369 if (r < 0)
1370 return log_debug_errno(r, "Failed to add unit name '%s' to set: %m", de->d_name);
1371 }
1372
1373 *ret = found_running ? (!set_isempty(unit_files) && (flags & PORTABLE_RUNTIME) ? PORTABLE_RUNNING_RUNTIME : PORTABLE_RUNNING) :
1374 found_enabled ? (flags & PORTABLE_RUNTIME ? PORTABLE_ENABLED_RUNTIME : PORTABLE_ENABLED) :
1375 !set_isempty(unit_files) ? (flags & PORTABLE_RUNTIME ? PORTABLE_ATTACHED_RUNTIME : PORTABLE_ATTACHED) : PORTABLE_DETACHED;
1376
1377 return 0;
1378}
1379
1380int portable_get_state(
1381 sd_bus *bus,
1382 const char *name_or_path,
1383 PortableFlags flags,
1384 PortableState *ret,
1385 sd_bus_error *error) {
1386
1387 PortableState state;
1388 int r;
1389
1390 assert(name_or_path);
1391 assert(ret);
1392
1393 /* We look for matching units twice: once in the regular directories, and once in the runtime directories — but
1394 * the latter only if we didn't find anything in the former. */
1395
1396 r = portable_get_state_internal(bus, name_or_path, flags & ~PORTABLE_RUNTIME, &state, error);
1397 if (r < 0)
1398 return r;
1399
1400 if (state == PORTABLE_DETACHED) {
1401 r = portable_get_state_internal(bus, name_or_path, flags | PORTABLE_RUNTIME, &state, error);
1402 if (r < 0)
1403 return r;
1404 }
1405
1406 *ret = state;
1407 return 0;
1408}
1409
1410int portable_get_profiles(char ***ret) {
1411 assert(ret);
1412
1413 return conf_files_list_nulstr(ret, NULL, NULL, CONF_FILES_DIRECTORY|CONF_FILES_BASENAME|CONF_FILES_FILTER_MASKED, profile_dirs);
1414}
1415
1416static const char* const portable_change_type_table[_PORTABLE_CHANGE_TYPE_MAX] = {
1417 [PORTABLE_COPY] = "copy",
1418 [PORTABLE_MKDIR] = "mkdir",
1419 [PORTABLE_SYMLINK] = "symlink",
1420 [PORTABLE_UNLINK] = "unlink",
1421 [PORTABLE_WRITE] = "write",
1422};
1423
1424DEFINE_STRING_TABLE_LOOKUP(portable_change_type, PortableChangeType);
1425
1426static const char* const portable_state_table[_PORTABLE_STATE_MAX] = {
1427 [PORTABLE_DETACHED] = "detached",
1428 [PORTABLE_ATTACHED] = "attached",
1429 [PORTABLE_ATTACHED_RUNTIME] = "attached-runtime",
1430 [PORTABLE_ENABLED] = "enabled",
1431 [PORTABLE_ENABLED_RUNTIME] = "enabled-runtime",
1432 [PORTABLE_RUNNING] = "running",
1433 [PORTABLE_RUNNING_RUNTIME] = "running-runtime",
1434};
1435
1436DEFINE_STRING_TABLE_LOOKUP(portable_state, PortableState);