]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/portable/portable.c
adfd846bab79789586b29713dde463b732eacdb6
[thirdparty/systemd.git] / src / portable / portable.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <linux/loop.h>
4
5 #include "bus-common-errors.h"
6 #include "bus-error.h"
7 #include "chase.h"
8 #include "conf-files.h"
9 #include "copy.h"
10 #include "data-fd-util.h"
11 #include "constants.h"
12 #include "dirent-util.h"
13 #include "discover-image.h"
14 #include "dissect-image.h"
15 #include "env-file.h"
16 #include "env-util.h"
17 #include "errno-list.h"
18 #include "escape.h"
19 #include "extension-util.h"
20 #include "fd-util.h"
21 #include "fileio.h"
22 #include "fs-util.h"
23 #include "install.h"
24 #include "io-util.h"
25 #include "locale-util.h"
26 #include "loop-util.h"
27 #include "mkdir.h"
28 #include "nulstr-util.h"
29 #include "os-util.h"
30 #include "path-lookup.h"
31 #include "portable.h"
32 #include "process-util.h"
33 #include "selinux-util.h"
34 #include "set.h"
35 #include "signal-util.h"
36 #include "socket-util.h"
37 #include "sort-util.h"
38 #include "string-table.h"
39 #include "strv.h"
40 #include "tmpfile-util.h"
41 #include "user-util.h"
42
43 /* Markers used in the first line of our 20-portable.conf unit file drop-in to determine, that a) the unit file was
44 * dropped there by the portable service logic and b) for which image it was dropped there. */
45 #define PORTABLE_DROPIN_MARKER_BEGIN "# Drop-in created for image '"
46 #define PORTABLE_DROPIN_MARKER_END "', do not edit."
47
48 static bool prefix_match(const char *unit, const char *prefix) {
49 const char *p;
50
51 p = startswith(unit, prefix);
52 if (!p)
53 return false;
54
55 /* Only respect prefixes followed by dash or dot or when there's a complete match */
56 return IN_SET(*p, '-', '.', '@', 0);
57 }
58
59 static bool unit_match(const char *unit, char **matches) {
60 const char *dot;
61
62 dot = strrchr(unit, '.');
63 if (!dot)
64 return false;
65
66 if (!STR_IN_SET(dot, ".service", ".socket", ".target", ".timer", ".path"))
67 return false;
68
69 /* Empty match expression means: everything */
70 if (strv_isempty(matches))
71 return true;
72
73 /* Otherwise, at least one needs to match */
74 STRV_FOREACH(i, matches)
75 if (prefix_match(unit, *i))
76 return true;
77
78 return false;
79 }
80
81 static PortableMetadata *portable_metadata_new(const char *name, const char *path, const char *selinux_label, int fd) {
82 PortableMetadata *m;
83
84 m = malloc0(offsetof(PortableMetadata, name) + strlen(name) + 1);
85 if (!m)
86 return NULL;
87
88 /* In case of a layered attach, we want to remember which image the unit came from */
89 if (path) {
90 m->image_path = strdup(path);
91 if (!m->image_path)
92 return mfree(m);
93 }
94
95 /* The metadata file might have SELinux labels, we need to carry them and reapply them */
96 if (!isempty(selinux_label)) {
97 m->selinux_label = strdup(selinux_label);
98 if (!m->selinux_label) {
99 free(m->image_path);
100 return mfree(m);
101 }
102 }
103
104 strcpy(m->name, name);
105 m->fd = fd;
106
107 return TAKE_PTR(m);
108 }
109
110 PortableMetadata *portable_metadata_unref(PortableMetadata *i) {
111 if (!i)
112 return NULL;
113
114 safe_close(i->fd);
115 free(i->source);
116 free(i->image_path);
117 free(i->selinux_label);
118
119 return mfree(i);
120 }
121
122 static int compare_metadata(PortableMetadata *const *x, PortableMetadata *const *y) {
123 return strcmp((*x)->name, (*y)->name);
124 }
125
126 int portable_metadata_hashmap_to_sorted_array(Hashmap *unit_files, PortableMetadata ***ret) {
127
128 _cleanup_free_ PortableMetadata **sorted = NULL;
129 PortableMetadata *item;
130 size_t k = 0;
131
132 sorted = new(PortableMetadata*, hashmap_size(unit_files));
133 if (!sorted)
134 return -ENOMEM;
135
136 HASHMAP_FOREACH(item, unit_files)
137 sorted[k++] = item;
138
139 assert(k == hashmap_size(unit_files));
140
141 typesafe_qsort(sorted, k, compare_metadata);
142
143 *ret = TAKE_PTR(sorted);
144 return 0;
145 }
146
147 static int send_one_fd_iov_with_data_fd(
148 int socket_fd,
149 const struct iovec *iov,
150 size_t iovlen,
151 int fd) {
152
153 _cleanup_close_ int data_fd = -EBADF;
154
155 assert(iov || iovlen == 0);
156 assert(socket_fd >= 0);
157 assert(fd >= 0);
158
159 data_fd = copy_data_fd(fd);
160 if (data_fd < 0)
161 return data_fd;
162
163 return send_one_fd_iov(socket_fd, data_fd, iov, iovlen, 0);
164 }
165
166 DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(portable_metadata_hash_ops, char, string_hash_func, string_compare_func,
167 PortableMetadata, portable_metadata_unref);
168
169 static int extract_now(
170 const char *where,
171 char **matches,
172 const char *image_name,
173 bool path_is_extension,
174 bool relax_extension_release_check,
175 int socket_fd,
176 PortableMetadata **ret_os_release,
177 Hashmap **ret_unit_files) {
178
179 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
180 _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
181 _cleanup_(lookup_paths_free) LookupPaths paths = {};
182 _cleanup_close_ int os_release_fd = -EBADF;
183 _cleanup_free_ char *os_release_path = NULL;
184 const char *os_release_id;
185 int r;
186
187 /* Extracts the metadata from a directory tree 'where'. Extracts two kinds of information: the /etc/os-release
188 * data, and all unit files matching the specified expression. Note that this function is called in two very
189 * different but also similar contexts. When the tool gets invoked on a directory tree, we'll process it
190 * directly, and in-process, and thus can return the requested data directly, via 'ret_os_release' and
191 * 'ret_unit_files'. However, if the tool is invoked on a raw disk image — which needs to be mounted first — we
192 * are invoked in a child process with private mounts and then need to send the collected data to our
193 * parent. To handle both cases in one call this function also gets a 'socket_fd' parameter, which when >= 0 is
194 * used to send the data to the parent. */
195
196 assert(where);
197
198 /* First, find os-release/extension-release and send it upstream (or just save it). */
199 if (path_is_extension) {
200 os_release_id = strjoina("/usr/lib/extension-release.d/extension-release.", image_name);
201 r = open_extension_release(where, image_name, relax_extension_release_check, &os_release_path, &os_release_fd);
202 } else {
203 os_release_id = "/etc/os-release";
204 r = open_os_release(where, &os_release_path, &os_release_fd);
205 }
206 if (r < 0)
207 log_debug_errno(r,
208 "Couldn't acquire %s file, ignoring: %m",
209 path_is_extension ? "extension-release " : "os-release");
210 else {
211 if (socket_fd >= 0) {
212 struct iovec iov[] = {
213 IOVEC_MAKE_STRING(os_release_id),
214 IOVEC_MAKE((char *)"\0", sizeof(char)),
215 };
216
217 r = send_one_fd_iov_with_data_fd(socket_fd, iov, ELEMENTSOF(iov), os_release_fd);
218 if (r < 0)
219 return log_debug_errno(r, "Failed to send os-release file: %m");
220 }
221
222 if (ret_os_release) {
223 os_release = portable_metadata_new(os_release_id, NULL, NULL, os_release_fd);
224 if (!os_release)
225 return -ENOMEM;
226
227 os_release_fd = -EBADF;
228 os_release->source = TAKE_PTR(os_release_path);
229 }
230 }
231
232 /* Then, send unit file data to the parent (or/and add it to the hashmap). For that we use our usual unit
233 * discovery logic. Note that we force looking inside of /lib/systemd/system/ for units too, as we mightbe
234 * compiled for a split-usr system but the image might be a legacy-usr one. */
235 r = lookup_paths_init(&paths, RUNTIME_SCOPE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, where);
236 if (r < 0)
237 return log_debug_errno(r, "Failed to acquire lookup paths: %m");
238
239 unit_files = hashmap_new(&portable_metadata_hash_ops);
240 if (!unit_files)
241 return -ENOMEM;
242
243 STRV_FOREACH(i, paths.search_path) {
244 _cleanup_free_ char *resolved = NULL;
245 _cleanup_closedir_ DIR *d = NULL;
246
247 r = chase_and_opendir(*i, where, 0, &resolved, &d);
248 if (r < 0) {
249 log_debug_errno(r, "Failed to open unit path '%s', ignoring: %m", *i);
250 continue;
251 }
252
253 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to read directory: %m")) {
254 _cleanup_(portable_metadata_unrefp) PortableMetadata *m = NULL;
255 _cleanup_(mac_selinux_freep) char *con = NULL;
256 _cleanup_close_ int fd = -EBADF;
257
258 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
259 continue;
260
261 if (!unit_match(de->d_name, matches))
262 continue;
263
264 /* Filter out duplicates */
265 if (hashmap_get(unit_files, de->d_name))
266 continue;
267
268 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
269 continue;
270
271 fd = openat(dirfd(d), de->d_name, O_CLOEXEC|O_RDONLY);
272 if (fd < 0) {
273 log_debug_errno(errno, "Failed to open unit file '%s', ignoring: %m", de->d_name);
274 continue;
275 }
276
277 #if HAVE_SELINUX
278 /* The units will be copied on the host's filesystem, so if they had a SELinux label
279 * we have to preserve it. Copy it out so that it can be applied later. */
280
281 r = fgetfilecon_raw(fd, &con);
282 if (r < 0 && !ERRNO_IS_XATTR_ABSENT(errno))
283 log_debug_errno(errno, "Failed to get SELinux file context from '%s', ignoring: %m", de->d_name);
284 #endif
285
286 if (socket_fd >= 0) {
287 struct iovec iov[] = {
288 IOVEC_MAKE_STRING(de->d_name),
289 IOVEC_MAKE((char *)"\0", sizeof(char)),
290 IOVEC_MAKE_STRING(strempty(con)),
291 };
292
293 r = send_one_fd_iov_with_data_fd(socket_fd, iov, ELEMENTSOF(iov), fd);
294 if (r < 0)
295 return log_debug_errno(r, "Failed to send unit metadata to parent: %m");
296 }
297
298 m = portable_metadata_new(de->d_name, where, con, fd);
299 if (!m)
300 return -ENOMEM;
301 fd = -EBADF;
302
303 m->source = path_join(resolved, de->d_name);
304 if (!m->source)
305 return -ENOMEM;
306
307 r = hashmap_put(unit_files, m->name, m);
308 if (r < 0)
309 return log_debug_errno(r, "Failed to add unit to hashmap: %m");
310 m = NULL;
311 }
312 }
313
314 if (ret_os_release)
315 *ret_os_release = TAKE_PTR(os_release);
316 if (ret_unit_files)
317 *ret_unit_files = TAKE_PTR(unit_files);
318
319 return 0;
320 }
321
322 static int portable_extract_by_path(
323 const char *path,
324 bool path_is_extension,
325 bool relax_extension_release_check,
326 char **matches,
327 PortableMetadata **ret_os_release,
328 Hashmap **ret_unit_files,
329 sd_bus_error *error) {
330
331 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
332 _cleanup_(portable_metadata_unrefp) PortableMetadata* os_release = NULL;
333 _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
334 int r;
335
336 assert(path);
337
338 r = loop_device_make_by_path(path, O_RDONLY, /* sector_size= */ UINT32_MAX, LO_FLAGS_PARTSCAN, LOCK_SH, &d);
339 if (r == -EISDIR) {
340 _cleanup_free_ char *image_name = NULL;
341
342 /* We can't turn this into a loop-back block device, and this returns EISDIR? Then this is a directory
343 * tree and not a raw device. It's easy then. */
344
345 r = path_extract_filename(path, &image_name);
346 if (r < 0)
347 return log_error_errno(r, "Failed to extract image name from path '%s': %m", path);
348
349 r = extract_now(path, matches, image_name, path_is_extension, /* relax_extension_release_check= */ false, -1, &os_release, &unit_files);
350 if (r < 0)
351 return r;
352
353 } else if (r < 0)
354 return log_debug_errno(r, "Failed to set up loopback device for %s: %m", path);
355 else {
356 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
357 _cleanup_(rmdir_and_freep) char *tmpdir = NULL;
358 _cleanup_(close_pairp) int seq[2] = PIPE_EBADF;
359 _cleanup_(sigkill_waitp) pid_t child = 0;
360
361 /* We now have a loopback block device, let's fork off a child in its own mount namespace, mount it
362 * there, and extract the metadata we need. The metadata is sent from the child back to us. */
363
364 BLOCK_SIGNALS(SIGCHLD);
365
366 r = mkdtemp_malloc("/tmp/inspect-XXXXXX", &tmpdir);
367 if (r < 0)
368 return log_debug_errno(r, "Failed to create temporary directory: %m");
369
370 r = dissect_loop_device(
371 d,
372 NULL, NULL,
373 DISSECT_IMAGE_READ_ONLY |
374 DISSECT_IMAGE_GENERIC_ROOT |
375 DISSECT_IMAGE_REQUIRE_ROOT |
376 DISSECT_IMAGE_DISCARD_ON_LOOP |
377 DISSECT_IMAGE_RELAX_VAR_CHECK |
378 DISSECT_IMAGE_USR_NO_ROOT |
379 DISSECT_IMAGE_ADD_PARTITION_DEVICES |
380 DISSECT_IMAGE_PIN_PARTITION_DEVICES,
381 &m);
382 if (r == -ENOPKG)
383 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Couldn't identify a suitable partition table or file system in '%s'.", path);
384 else if (r == -EADDRNOTAVAIL)
385 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No root partition for specified root hash found in '%s'.", path);
386 else if (r == -ENOTUNIQ)
387 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Multiple suitable root partitions found in image '%s'.", path);
388 else if (r == -ENXIO)
389 sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No suitable root partition found in image '%s'.", path);
390 else if (r == -EPROTONOSUPPORT)
391 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);
392 if (r < 0)
393 return r;
394
395 if (socketpair(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0, seq) < 0)
396 return log_debug_errno(errno, "Failed to allocated SOCK_SEQPACKET socket: %m");
397
398 r = safe_fork("(sd-dissect)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE|FORK_LOG, &child);
399 if (r < 0)
400 return r;
401 if (r == 0) {
402 DissectImageFlags flags = DISSECT_IMAGE_READ_ONLY;
403
404 seq[0] = safe_close(seq[0]);
405
406 if (path_is_extension)
407 flags |= DISSECT_IMAGE_VALIDATE_OS_EXT | (relax_extension_release_check ? DISSECT_IMAGE_RELAX_SYSEXT_CHECK : 0);
408 else
409 flags |= DISSECT_IMAGE_VALIDATE_OS;
410
411 r = dissected_image_mount(m, tmpdir, UID_INVALID, UID_INVALID, flags);
412 if (r < 0) {
413 log_debug_errno(r, "Failed to mount dissected image: %m");
414 goto child_finish;
415 }
416
417 r = extract_now(tmpdir, matches, m->image_name, path_is_extension, relax_extension_release_check, seq[1], NULL, NULL);
418
419 child_finish:
420 _exit(r < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
421 }
422
423 seq[1] = safe_close(seq[1]);
424
425 unit_files = hashmap_new(&portable_metadata_hash_ops);
426 if (!unit_files)
427 return -ENOMEM;
428
429 for (;;) {
430 _cleanup_(portable_metadata_unrefp) PortableMetadata *add = NULL;
431 _cleanup_close_ int fd = -EBADF;
432 /* We use NAME_MAX space for the SELinux label here. The kernel currently enforces no limit, but
433 * according to suggestions from the SELinux people this will change and it will probably be
434 * identical to NAME_MAX. For now we use that, but this should be updated one day when the final
435 * limit is known. */
436 char iov_buffer[PATH_MAX + NAME_MAX + 2];
437 struct iovec iov = IOVEC_MAKE(iov_buffer, sizeof(iov_buffer));
438
439 ssize_t n = receive_one_fd_iov(seq[0], &iov, 1, 0, &fd);
440 if (n == -EIO)
441 break;
442 if (n < 0)
443 return log_debug_errno(n, "Failed to receive item: %m");
444 iov_buffer[n] = 0;
445
446 /* We can't really distinguish a zero-length datagram without any fds from EOF (both are signalled the
447 * same way by recvmsg()). Hence, accept either as end notification. */
448 if (isempty(iov_buffer) && fd < 0)
449 break;
450
451 if (isempty(iov_buffer) || fd < 0)
452 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
453 "Invalid item sent from child.");
454
455 /* Given recvmsg cannot be used with multiple io vectors if you don't know the size in advance,
456 * use a marker to separate the name and the optional SELinux context. */
457 char *selinux_label = memchr(iov_buffer, 0, n);
458 assert(selinux_label);
459 selinux_label++;
460
461 add = portable_metadata_new(iov_buffer, path, selinux_label, fd);
462 if (!add)
463 return -ENOMEM;
464 fd = -EBADF;
465
466 /* Note that we do not initialize 'add->source' here, as the source path is not usable here as
467 * it refers to a path only valid in the short-living namespaced child process we forked
468 * here. */
469
470 if (PORTABLE_METADATA_IS_UNIT(add)) {
471 r = hashmap_put(unit_files, add->name, add);
472 if (r < 0)
473 return log_debug_errno(r, "Failed to add item to unit file list: %m");
474
475 add = NULL;
476
477 } else if (PORTABLE_METADATA_IS_OS_RELEASE(add) || PORTABLE_METADATA_IS_EXTENSION_RELEASE(add)) {
478
479 assert(!os_release);
480 os_release = TAKE_PTR(add);
481 } else
482 assert_not_reached();
483 }
484
485 r = wait_for_terminate_and_check("(sd-dissect)", child, 0);
486 if (r < 0)
487 return r;
488 child = 0;
489 }
490
491 if (!os_release)
492 return sd_bus_error_setf(error,
493 SD_BUS_ERROR_INVALID_ARGS,
494 "Image '%s' lacks %s data, refusing.",
495 path,
496 path_is_extension ? "extension-release" : "os-release");
497
498 if (ret_unit_files)
499 *ret_unit_files = TAKE_PTR(unit_files);
500
501 if (ret_os_release)
502 *ret_os_release = TAKE_PTR(os_release);
503
504 return 0;
505 }
506
507 static int extract_image_and_extensions(
508 const char *name_or_path,
509 char **matches,
510 char **extension_image_paths,
511 bool validate_sysext,
512 bool relax_extension_release_check,
513 Image **ret_image,
514 OrderedHashmap **ret_extension_images,
515 OrderedHashmap **ret_extension_releases,
516 PortableMetadata **ret_os_release,
517 Hashmap **ret_unit_files,
518 char ***ret_valid_prefixes,
519 sd_bus_error *error) {
520
521 _cleanup_free_ char *id = NULL, *version_id = NULL, *sysext_level = NULL;
522 _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
523 _cleanup_ordered_hashmap_free_ OrderedHashmap *extension_images = NULL, *extension_releases = NULL;
524 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
525 _cleanup_strv_free_ char **valid_prefixes = NULL;
526 _cleanup_(image_unrefp) Image *image = NULL;
527 Image *ext;
528 int r;
529
530 assert(name_or_path);
531
532 r = image_find_harder(IMAGE_PORTABLE, name_or_path, NULL, &image);
533 if (r < 0)
534 return r;
535
536 if (!strv_isempty(extension_image_paths)) {
537 extension_images = ordered_hashmap_new(&image_hash_ops);
538 if (!extension_images)
539 return -ENOMEM;
540
541 if (ret_extension_releases) {
542 extension_releases = ordered_hashmap_new(&portable_metadata_hash_ops);
543 if (!extension_releases)
544 return -ENOMEM;
545 }
546
547 STRV_FOREACH(p, extension_image_paths) {
548 _cleanup_(image_unrefp) Image *new = NULL;
549
550 r = image_find_harder(IMAGE_PORTABLE, *p, NULL, &new);
551 if (r < 0)
552 return r;
553
554 r = ordered_hashmap_put(extension_images, new->name, new);
555 if (r < 0)
556 return r;
557 TAKE_PTR(new);
558 }
559 }
560
561 r = portable_extract_by_path(image->path, /* path_is_extension= */ false, /* relax_extension_release_check= */ false, matches, &os_release, &unit_files, error);
562 if (r < 0)
563 return r;
564
565 /* If we are layering extension images on top of a runtime image, check that the os-release and
566 * extension-release metadata match, otherwise reject it immediately as invalid, or it will fail when
567 * the units are started. Also, collect valid portable prefixes if caller requested that. */
568 if (validate_sysext || ret_valid_prefixes) {
569 _cleanup_free_ char *prefixes = NULL;
570
571 r = parse_env_file_fd(os_release->fd, os_release->name,
572 "ID", &id,
573 "VERSION_ID", &version_id,
574 "SYSEXT_LEVEL", &sysext_level,
575 "PORTABLE_PREFIXES", &prefixes);
576 if (r < 0)
577 return r;
578 if (isempty(id))
579 return sd_bus_error_set_errnof(error, SYNTHETIC_ERRNO(ESTALE), "Image %s os-release metadata lacks the ID field", name_or_path);
580
581 if (prefixes) {
582 valid_prefixes = strv_split(prefixes, WHITESPACE);
583 if (!valid_prefixes)
584 return -ENOMEM;
585 }
586 }
587
588 ORDERED_HASHMAP_FOREACH(ext, extension_images) {
589 _cleanup_(portable_metadata_unrefp) PortableMetadata *extension_release_meta = NULL;
590 _cleanup_hashmap_free_ Hashmap *extra_unit_files = NULL;
591 _cleanup_strv_free_ char **extension_release = NULL;
592 const char *e;
593
594 r = portable_extract_by_path(ext->path, /* path_is_extension= */ true, relax_extension_release_check, matches, &extension_release_meta, &extra_unit_files, error);
595 if (r < 0)
596 return r;
597
598 r = hashmap_move(unit_files, extra_unit_files);
599 if (r < 0)
600 return r;
601
602 if (!validate_sysext && !ret_valid_prefixes && !ret_extension_releases)
603 continue;
604
605 r = load_env_file_pairs_fd(extension_release_meta->fd, extension_release_meta->name, &extension_release);
606 if (r < 0)
607 return r;
608
609 if (validate_sysext) {
610 r = extension_release_validate(ext->path, id, version_id, sysext_level, "portable", extension_release);
611 if (r == 0)
612 return sd_bus_error_set_errnof(error, SYNTHETIC_ERRNO(ESTALE), "Image %s extension-release metadata does not match the root's", ext->path);
613 if (r < 0)
614 return sd_bus_error_set_errnof(error, r, "Failed to compare image %s extension-release metadata with the root's os-release: %m", ext->path);
615 }
616
617 e = strv_env_pairs_get(extension_release, "PORTABLE_PREFIXES");
618 if (e) {
619 _cleanup_strv_free_ char **l = NULL;
620
621 l = strv_split(e, WHITESPACE);
622 if (!l)
623 return -ENOMEM;
624
625 r = strv_extend_strv(&valid_prefixes, l, true);
626 if (r < 0)
627 return r;
628 }
629
630 if (ret_extension_releases) {
631 r = ordered_hashmap_put(extension_releases, ext->name, extension_release_meta);
632 if (r < 0)
633 return r;
634 TAKE_PTR(extension_release_meta);
635 }
636 }
637
638 strv_sort(valid_prefixes);
639
640 if (ret_image)
641 *ret_image = TAKE_PTR(image);
642 if (ret_extension_images)
643 *ret_extension_images = TAKE_PTR(extension_images);
644 if (ret_extension_releases)
645 *ret_extension_releases = TAKE_PTR(extension_releases);
646 if (ret_os_release)
647 *ret_os_release = TAKE_PTR(os_release);
648 if (ret_unit_files)
649 *ret_unit_files = TAKE_PTR(unit_files);
650 if (ret_valid_prefixes)
651 *ret_valid_prefixes = TAKE_PTR(valid_prefixes);
652
653 return 0;
654 }
655
656 int portable_extract(
657 const char *name_or_path,
658 char **matches,
659 char **extension_image_paths,
660 PortableFlags flags,
661 PortableMetadata **ret_os_release,
662 OrderedHashmap **ret_extension_releases,
663 Hashmap **ret_unit_files,
664 char ***ret_valid_prefixes,
665 sd_bus_error *error) {
666
667 _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
668 _cleanup_ordered_hashmap_free_ OrderedHashmap *extension_images = NULL, *extension_releases = NULL;
669 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
670 _cleanup_(strv_freep) char **valid_prefixes = NULL;
671 _cleanup_(image_unrefp) Image *image = NULL;
672 int r;
673
674 assert(name_or_path);
675
676 r = extract_image_and_extensions(
677 name_or_path,
678 matches,
679 extension_image_paths,
680 /* validate_sysext= */ false,
681 /* relax_extension_release_check= */ FLAGS_SET(flags, PORTABLE_FORCE_SYSEXT),
682 &image,
683 &extension_images,
684 &extension_releases,
685 &os_release,
686 &unit_files,
687 ret_valid_prefixes ? &valid_prefixes : NULL,
688 error);
689 if (r < 0)
690 return r;
691
692 if (hashmap_isempty(unit_files)) {
693 _cleanup_free_ char *extensions = strv_join(extension_image_paths, ", ");
694 if (!extensions)
695 return -ENOMEM;
696
697 return sd_bus_error_setf(error,
698 SD_BUS_ERROR_INVALID_ARGS,
699 "Couldn't find any matching unit files in image '%s%s%s', refusing.",
700 image->path,
701 isempty(extensions) ? "" : "' or any of its extensions '",
702 isempty(extensions) ? "" : extensions);
703 }
704
705 if (ret_os_release)
706 *ret_os_release = TAKE_PTR(os_release);
707 if (ret_extension_releases)
708 *ret_extension_releases = TAKE_PTR(extension_releases);
709 if (ret_unit_files)
710 *ret_unit_files = TAKE_PTR(unit_files);
711 if (ret_valid_prefixes)
712 *ret_valid_prefixes = TAKE_PTR(valid_prefixes);
713
714 return 0;
715 }
716
717 static int unit_file_is_active(
718 sd_bus *bus,
719 const char *name,
720 sd_bus_error *error) {
721
722 static const char *const active_states[] = {
723 "activating",
724 "active",
725 "reloading",
726 "deactivating",
727 NULL,
728 };
729 int r;
730
731 if (!bus)
732 return false;
733
734 /* If we are looking at a plain or instance things are easy, we can just query the state */
735 if (unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
736 _cleanup_free_ char *path = NULL, *buf = NULL;
737
738 path = unit_dbus_path_from_name(name);
739 if (!path)
740 return -ENOMEM;
741
742 r = sd_bus_get_property_string(
743 bus,
744 "org.freedesktop.systemd1",
745 path,
746 "org.freedesktop.systemd1.Unit",
747 "ActiveState",
748 error,
749 &buf);
750 if (r < 0)
751 return log_debug_errno(r, "Failed to retrieve unit state: %s", bus_error_message(error, r));
752
753 return strv_contains((char**) active_states, buf);
754 }
755
756 /* Otherwise we need to enumerate. But let's build the most restricted query we can */
757 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
758 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
759 const char *at, *prefix, *joined;
760
761 r = sd_bus_message_new_method_call(
762 bus,
763 &m,
764 "org.freedesktop.systemd1",
765 "/org/freedesktop/systemd1",
766 "org.freedesktop.systemd1.Manager",
767 "ListUnitsByPatterns");
768 if (r < 0)
769 return r;
770
771 r = sd_bus_message_append_strv(m, (char**) active_states);
772 if (r < 0)
773 return r;
774
775 at = strchr(name, '@');
776 assert(at);
777
778 prefix = strndupa_safe(name, at + 1 - name);
779 joined = strjoina(prefix, "*", at + 1);
780
781 r = sd_bus_message_append_strv(m, STRV_MAKE(joined));
782 if (r < 0)
783 return r;
784
785 r = sd_bus_call(bus, m, 0, error, &reply);
786 if (r < 0)
787 return log_debug_errno(r, "Failed to list units: %s", bus_error_message(error, r));
788
789 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
790 if (r < 0)
791 return r;
792
793 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_STRUCT, "ssssssouso");
794 if (r < 0)
795 return r;
796
797 return r > 0;
798 }
799
800 return -EINVAL;
801 }
802
803 static int portable_changes_add(
804 PortableChange **changes,
805 size_t *n_changes,
806 int type_or_errno, /* PORTABLE_COPY, PORTABLE_SYMLINK, … if positive, or errno if negative */
807 const char *path,
808 const char *source) {
809
810 _cleanup_free_ char *p = NULL, *s = NULL;
811 PortableChange *c;
812
813 assert(path);
814 assert(!changes == !n_changes);
815
816 if (type_or_errno >= 0)
817 assert(type_or_errno < _PORTABLE_CHANGE_TYPE_MAX);
818 else
819 assert(type_or_errno >= -ERRNO_MAX);
820
821 if (!changes)
822 return 0;
823
824 c = reallocarray(*changes, *n_changes + 1, sizeof(PortableChange));
825 if (!c)
826 return -ENOMEM;
827 *changes = c;
828
829 p = strdup(path);
830 if (!p)
831 return -ENOMEM;
832
833 path_simplify(p);
834
835 if (source) {
836 s = strdup(source);
837 if (!s)
838 return -ENOMEM;
839
840 path_simplify(s);
841 }
842
843 c[(*n_changes)++] = (PortableChange) {
844 .type_or_errno = type_or_errno,
845 .path = TAKE_PTR(p),
846 .source = TAKE_PTR(s),
847 };
848
849 return 0;
850 }
851
852 static int portable_changes_add_with_prefix(
853 PortableChange **changes,
854 size_t *n_changes,
855 int type_or_errno,
856 const char *prefix,
857 const char *path,
858 const char *source) {
859
860 _cleanup_free_ char *path_buf = NULL, *source_buf = NULL;
861
862 assert(path);
863 assert(!changes == !n_changes);
864
865 if (!changes)
866 return 0;
867
868 if (prefix) {
869 path_buf = path_join(prefix, path);
870 if (!path_buf)
871 return -ENOMEM;
872
873 path = path_buf;
874
875 if (source) {
876 source_buf = path_join(prefix, source);
877 if (!source_buf)
878 return -ENOMEM;
879
880 source = source_buf;
881 }
882 }
883
884 return portable_changes_add(changes, n_changes, type_or_errno, path, source);
885 }
886
887 void portable_changes_free(PortableChange *changes, size_t n_changes) {
888 size_t i;
889
890 assert(changes || n_changes == 0);
891
892 for (i = 0; i < n_changes; i++) {
893 free(changes[i].path);
894 free(changes[i].source);
895 }
896
897 free(changes);
898 }
899
900 static const char *root_setting_from_image(ImageType type) {
901 return IN_SET(type, IMAGE_DIRECTORY, IMAGE_SUBVOLUME) ? "RootDirectory=" : "RootImage=";
902 }
903
904 static const char *extension_setting_from_image(ImageType type) {
905 return IN_SET(type, IMAGE_DIRECTORY, IMAGE_SUBVOLUME) ? "ExtensionDirectories=" : "ExtensionImages=";
906 }
907
908 static int make_marker_text(const char *image_path, OrderedHashmap *extension_images, char **ret_text) {
909 _cleanup_free_ char *text = NULL, *escaped_image_path = NULL;
910 Image *ext;
911
912 assert(image_path);
913 assert(ret_text);
914
915 escaped_image_path = xescape(image_path, ":");
916 if (!escaped_image_path)
917 return -ENOMEM;
918
919 /* If the image is layered, include all layers in the marker as a colon-separated
920 * list of paths, so that we can do exact matches on removal. */
921 text = strjoin(PORTABLE_DROPIN_MARKER_BEGIN, escaped_image_path);
922 if (!text)
923 return -ENOMEM;
924
925 ORDERED_HASHMAP_FOREACH(ext, extension_images) {
926 _cleanup_free_ char *escaped = NULL;
927
928 escaped = xescape(ext->path, ":");
929 if (!escaped)
930 return -ENOMEM;
931
932 if (!strextend(&text, ":", escaped))
933 return -ENOMEM;
934 }
935
936 if (!strextend(&text, PORTABLE_DROPIN_MARKER_END "\n"))
937 return -ENOMEM;
938
939 *ret_text = TAKE_PTR(text);
940 return 0;
941 }
942
943 static int append_release_log_fields(
944 char **text,
945 const PortableMetadata *release,
946 ImageClass type,
947 const char *field_name) {
948
949 static const char *const field_versions[_IMAGE_CLASS_MAX][4]= {
950 [IMAGE_PORTABLE] = { "IMAGE_VERSION", "VERSION_ID", "BUILD_ID", NULL },
951 [IMAGE_EXTENSION] = { "SYSEXT_IMAGE_VERSION", "SYSEXT_VERSION_ID", "SYSEXT_BUILD_ID", NULL },
952 };
953 static const char *const field_ids[_IMAGE_CLASS_MAX][3]= {
954 [IMAGE_PORTABLE] = { "IMAGE_ID", "ID", NULL },
955 [IMAGE_EXTENSION] = { "SYSEXT_IMAGE_ID", "SYSEXT_ID", NULL },
956 };
957 _cleanup_strv_free_ char **fields = NULL;
958 const char *id = NULL, *version = NULL;
959 int r;
960
961 assert(IN_SET(type, IMAGE_PORTABLE, IMAGE_EXTENSION));
962 assert(!strv_isempty((char *const *)field_ids[type]));
963 assert(!strv_isempty((char *const *)field_versions[type]));
964 assert(field_name);
965 assert(text);
966
967 if (!release)
968 return 0; /* Nothing to do. */
969
970 r = load_env_file_pairs_fd(release->fd, release->name, &fields);
971 if (r < 0)
972 return log_debug_errno(r, "Failed to parse '%s': %m", release->name);
973
974 /* Find an ID first, in order of preference from more specific to less specific: IMAGE_ID -> ID */
975 id = strv_find_first_field((char *const *)field_ids[type], fields);
976
977 /* Then the version, same logic, prefer the more specific one */
978 version = strv_find_first_field((char *const *)field_versions[type], fields);
979
980 /* If there's no valid version to be found, simply omit it. */
981 if (!id && !version)
982 return 0;
983
984 if (!strextend(text,
985 "LogExtraFields=",
986 field_name,
987 "=",
988 strempty(id),
989 id && version ? "_" : "",
990 strempty(version),
991 "\n"))
992 return -ENOMEM;
993
994 return 0;
995 }
996
997 static int install_chroot_dropin(
998 const char *image_path,
999 ImageType type,
1000 OrderedHashmap *extension_images,
1001 OrderedHashmap *extension_releases,
1002 const PortableMetadata *m,
1003 const PortableMetadata *os_release,
1004 const char *dropin_dir,
1005 PortableFlags flags,
1006 char **ret_dropin,
1007 PortableChange **changes,
1008 size_t *n_changes) {
1009
1010 _cleanup_free_ char *text = NULL, *dropin = NULL;
1011 int r;
1012
1013 assert(image_path);
1014 assert(m);
1015 assert(dropin_dir);
1016
1017 dropin = path_join(dropin_dir, "20-portable.conf");
1018 if (!dropin)
1019 return -ENOMEM;
1020
1021 r = make_marker_text(image_path, extension_images, &text);
1022 if (r < 0)
1023 return log_debug_errno(r, "Failed to generate marker string for portable drop-in: %m");
1024
1025 if (endswith(m->name, ".service")) {
1026 const char *os_release_source, *root_type;
1027 _cleanup_free_ char *base_name = NULL;
1028 Image *ext;
1029
1030 root_type = root_setting_from_image(type);
1031
1032 if (access("/etc/os-release", F_OK) < 0) {
1033 if (errno != ENOENT)
1034 return log_debug_errno(errno, "Failed to check if /etc/os-release exists: %m");
1035
1036 os_release_source = "/usr/lib/os-release";
1037 } else
1038 os_release_source = "/etc/os-release";
1039
1040 r = path_extract_filename(m->image_path ?: image_path, &base_name);
1041 if (r < 0)
1042 return log_debug_errno(r, "Failed to extract basename from '%s': %m", m->image_path ?: image_path);
1043
1044 if (!strextend(&text,
1045 "\n"
1046 "[Service]\n",
1047 root_type, image_path, "\n"
1048 "Environment=PORTABLE=", base_name, "\n"
1049 "BindReadOnlyPaths=", os_release_source, ":/run/host/os-release\n"
1050 "LogExtraFields=PORTABLE=", base_name, "\n"))
1051 return -ENOMEM;
1052
1053 /* If we have a single image then PORTABLE= will point to it, so we add
1054 * PORTABLE_NAME_AND_VERSION= with the os-release fields and we are done. But if we have
1055 * extensions, PORTABLE= will point to the image where the current unit was found in. So we
1056 * also list PORTABLE_ROOT= and PORTABLE_ROOT_NAME_AND_VERSION= for the base image, and
1057 * PORTABLE_EXTENSION= and PORTABLE_EXTENSION_NAME_AND_VERSION= for each extension, so that
1058 * all needed metadata is available. */
1059 if (ordered_hashmap_isempty(extension_images))
1060 r = append_release_log_fields(&text, os_release, IMAGE_PORTABLE, "PORTABLE_NAME_AND_VERSION");
1061 else {
1062 _cleanup_free_ char *root_base_name = NULL;
1063
1064 r = path_extract_filename(image_path, &root_base_name);
1065 if (r < 0)
1066 return log_debug_errno(r, "Failed to extract basename from '%s': %m", image_path);
1067
1068 if (!strextend(&text,
1069 "Environment=PORTABLE_ROOT=", root_base_name, "\n",
1070 "LogExtraFields=PORTABLE_ROOT=", root_base_name, "\n"))
1071 return -ENOMEM;
1072
1073 r = append_release_log_fields(&text, os_release, IMAGE_PORTABLE, "PORTABLE_ROOT_NAME_AND_VERSION");
1074 }
1075 if (r < 0)
1076 return r;
1077
1078 if (m->image_path && !path_equal(m->image_path, image_path))
1079 ORDERED_HASHMAP_FOREACH(ext, extension_images) {
1080 _cleanup_free_ char *extension_base_name = NULL;
1081
1082 r = path_extract_filename(ext->path, &extension_base_name);
1083 if (r < 0)
1084 return log_debug_errno(r, "Failed to extract basename from '%s': %m", ext->path);
1085
1086 if (!strextend(&text,
1087 "\n",
1088 extension_setting_from_image(ext->type),
1089 ext->path,
1090 /* With --force tell PID1 to avoid enforcing that the image <name> and
1091 * extension-release.<name> have to match. */
1092 !IN_SET(type, IMAGE_DIRECTORY, IMAGE_SUBVOLUME) &&
1093 FLAGS_SET(flags, PORTABLE_FORCE_SYSEXT) ?
1094 ":x-systemd.relax-extension-release-check\n" :
1095 "\n",
1096 /* In PORTABLE= we list the 'main' image name for this unit
1097 * (the image where the unit was extracted from), but we are
1098 * stacking multiple images, so list those too. */
1099 "LogExtraFields=PORTABLE_EXTENSION=", extension_base_name, "\n"))
1100 return -ENOMEM;
1101
1102 /* Look for image/version identifiers in the extension release files. We
1103 * look for all possible IDs, but typically only 1 or 2 will be set, so
1104 * the number of fields added shouldn't be too large. We prefix the DDI
1105 * name to the value, so that we can add the same field multiple times and
1106 * still be able to identify what applies to what. */
1107 r = append_release_log_fields(&text,
1108 ordered_hashmap_get(extension_releases, ext->name),
1109 IMAGE_EXTENSION,
1110 "PORTABLE_EXTENSION_NAME_AND_VERSION");
1111 if (r < 0)
1112 return r;
1113 }
1114 }
1115
1116 r = write_string_file(dropin, text, WRITE_STRING_FILE_CREATE|WRITE_STRING_FILE_ATOMIC);
1117 if (r < 0)
1118 return log_debug_errno(r, "Failed to write '%s': %m", dropin);
1119
1120 (void) portable_changes_add(changes, n_changes, PORTABLE_WRITE, dropin, NULL);
1121
1122 if (ret_dropin)
1123 *ret_dropin = TAKE_PTR(dropin);
1124
1125 return 0;
1126 }
1127
1128 static int install_profile_dropin(
1129 const char *image_path,
1130 const PortableMetadata *m,
1131 const char *dropin_dir,
1132 const char *profile,
1133 PortableFlags flags,
1134 char **ret_dropin,
1135 PortableChange **changes,
1136 size_t *n_changes) {
1137
1138 _cleanup_free_ char *dropin = NULL, *from = NULL;
1139 int r;
1140
1141 assert(image_path);
1142 assert(m);
1143 assert(dropin_dir);
1144
1145 if (!profile)
1146 return 0;
1147
1148 r = find_portable_profile(profile, m->name, &from);
1149 if (r < 0) {
1150 if (r != -ENOENT)
1151 return log_debug_errno(errno, "Profile '%s' is not accessible: %m", profile);
1152
1153 log_debug_errno(errno, "Skipping link to profile '%s', as it does not exist: %m", profile);
1154 return 0;
1155 }
1156
1157 dropin = path_join(dropin_dir, "10-profile.conf");
1158 if (!dropin)
1159 return -ENOMEM;
1160
1161 if (flags & PORTABLE_PREFER_COPY) {
1162
1163 r = copy_file_atomic(from, dropin, 0644, COPY_REFLINK);
1164 if (r < 0)
1165 return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dropin);
1166
1167 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, dropin, from);
1168
1169 } else {
1170
1171 if (symlink(from, dropin) < 0)
1172 return log_debug_errno(errno, "Failed to link %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dropin);
1173
1174 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, dropin, from);
1175 }
1176
1177 if (ret_dropin)
1178 *ret_dropin = TAKE_PTR(dropin);
1179
1180 return 0;
1181 }
1182
1183 static const char *attached_path(const LookupPaths *paths, PortableFlags flags) {
1184 const char *where;
1185
1186 assert(paths);
1187
1188 if (flags & PORTABLE_RUNTIME)
1189 where = paths->runtime_attached;
1190 else
1191 where = paths->persistent_attached;
1192
1193 assert(where);
1194 return where;
1195 }
1196
1197 static int attach_unit_file(
1198 const LookupPaths *paths,
1199 const char *image_path,
1200 ImageType type,
1201 OrderedHashmap *extension_images,
1202 OrderedHashmap *extension_releases,
1203 const PortableMetadata *m,
1204 const PortableMetadata *os_release,
1205 const char *profile,
1206 PortableFlags flags,
1207 PortableChange **changes,
1208 size_t *n_changes) {
1209
1210 _cleanup_(unlink_and_freep) char *chroot_dropin = NULL, *profile_dropin = NULL;
1211 _cleanup_(rmdir_and_freep) char *dropin_dir = NULL;
1212 _cleanup_free_ char *path = NULL;
1213 const char *where;
1214 int r;
1215
1216 assert(paths);
1217 assert(image_path);
1218 assert(m);
1219 assert(PORTABLE_METADATA_IS_UNIT(m));
1220
1221 where = attached_path(paths, flags);
1222
1223 (void) mkdir_parents(where, 0755);
1224 if (mkdir(where, 0755) < 0) {
1225 if (errno != EEXIST)
1226 return log_debug_errno(errno, "Failed to create attach directory %s: %m", where);
1227 } else
1228 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, where, NULL);
1229
1230 path = path_join(where, m->name);
1231 if (!path)
1232 return -ENOMEM;
1233
1234 dropin_dir = strjoin(path, ".d");
1235 if (!dropin_dir)
1236 return -ENOMEM;
1237
1238 if (mkdir(dropin_dir, 0755) < 0) {
1239 if (errno != EEXIST)
1240 return log_debug_errno(errno, "Failed to create drop-in directory %s: %m", dropin_dir);
1241 } else
1242 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, dropin_dir, NULL);
1243
1244 /* We install the drop-ins first, and the actual unit file last to achieve somewhat atomic behaviour if PID 1
1245 * is reloaded while we are creating things here: as long as only the drop-ins exist the unit doesn't exist at
1246 * all for PID 1. */
1247
1248 r = install_chroot_dropin(image_path, type, extension_images, extension_releases, m, os_release, dropin_dir, flags, &chroot_dropin, changes, n_changes);
1249 if (r < 0)
1250 return r;
1251
1252 r = install_profile_dropin(image_path, m, dropin_dir, profile, flags, &profile_dropin, changes, n_changes);
1253 if (r < 0)
1254 return r;
1255
1256 if ((flags & PORTABLE_PREFER_SYMLINK) && m->source) {
1257
1258 if (symlink(m->source, path) < 0)
1259 return log_debug_errno(errno, "Failed to symlink unit file '%s': %m", path);
1260
1261 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, path, m->source);
1262
1263 } else {
1264 _cleanup_(unlink_and_freep) char *tmp = NULL;
1265 _cleanup_close_ int fd = -EBADF;
1266
1267 (void) mac_selinux_create_file_prepare_label(path, m->selinux_label);
1268
1269 fd = open_tmpfile_linkable(path, O_WRONLY|O_CLOEXEC, &tmp);
1270 mac_selinux_create_file_clear(); /* Clear immediately in case of errors */
1271 if (fd < 0)
1272 return log_debug_errno(fd, "Failed to create unit file '%s': %m", path);
1273
1274 r = copy_bytes(m->fd, fd, UINT64_MAX, COPY_REFLINK);
1275 if (r < 0)
1276 return log_debug_errno(r, "Failed to copy unit file '%s': %m", path);
1277
1278 if (fchmod(fd, 0644) < 0)
1279 return log_debug_errno(errno, "Failed to change unit file access mode for '%s': %m", path);
1280
1281 r = link_tmpfile(fd, tmp, path, /* replace= */ false);
1282 if (r < 0)
1283 return log_debug_errno(r, "Failed to install unit file '%s': %m", path);
1284
1285 tmp = mfree(tmp);
1286
1287 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, path, m->source);
1288 }
1289
1290 /* All is established now, now let's disable any rollbacks */
1291 chroot_dropin = mfree(chroot_dropin);
1292 profile_dropin = mfree(profile_dropin);
1293 dropin_dir = mfree(dropin_dir);
1294
1295 return 0;
1296 }
1297
1298 static int image_symlink(
1299 const char *image_path,
1300 PortableFlags flags,
1301 char **ret) {
1302
1303 const char *fn, *where;
1304 char *joined = NULL;
1305
1306 assert(image_path);
1307 assert(ret);
1308
1309 fn = last_path_component(image_path);
1310
1311 if (flags & PORTABLE_RUNTIME)
1312 where = "/run/portables/";
1313 else
1314 where = "/etc/portables/";
1315
1316 joined = strjoin(where, fn);
1317 if (!joined)
1318 return -ENOMEM;
1319
1320 *ret = joined;
1321 return 0;
1322 }
1323
1324 static int install_image_symlink(
1325 const char *image_path,
1326 PortableFlags flags,
1327 PortableChange **changes,
1328 size_t *n_changes) {
1329
1330 _cleanup_free_ char *sl = NULL;
1331 int r;
1332
1333 assert(image_path);
1334
1335 /* If the image is outside of the image search also link it into it, so that it can be found with short image
1336 * names and is listed among the images. */
1337
1338 if (image_in_search_path(IMAGE_PORTABLE, NULL, image_path))
1339 return 0;
1340
1341 r = image_symlink(image_path, flags, &sl);
1342 if (r < 0)
1343 return log_debug_errno(r, "Failed to generate image symlink path: %m");
1344
1345 (void) mkdir_parents(sl, 0755);
1346
1347 if (symlink(image_path, sl) < 0)
1348 return log_debug_errno(errno, "Failed to link %s %s %s: %m", image_path, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), sl);
1349
1350 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, sl, image_path);
1351 return 0;
1352 }
1353
1354 static int install_image_and_extensions_symlinks(
1355 const Image *image,
1356 OrderedHashmap *extension_images,
1357 PortableFlags flags,
1358 PortableChange **changes,
1359 size_t *n_changes) {
1360
1361 Image *ext;
1362 int r;
1363
1364 assert(image);
1365
1366 ORDERED_HASHMAP_FOREACH(ext, extension_images) {
1367 r = install_image_symlink(ext->path, flags, changes, n_changes);
1368 if (r < 0)
1369 return r;
1370 }
1371
1372 r = install_image_symlink(image->path, flags, changes, n_changes);
1373 if (r < 0)
1374 return r;
1375
1376 return 0;
1377 }
1378
1379 static bool prefix_matches_compatible(char **matches, char **valid_prefixes) {
1380 /* Checks if all 'matches' are included in the list of 'valid_prefixes' */
1381
1382 STRV_FOREACH(m, matches)
1383 if (!strv_contains(valid_prefixes, *m))
1384 return false;
1385
1386 return true;
1387 }
1388
1389 int portable_attach(
1390 sd_bus *bus,
1391 const char *name_or_path,
1392 char **matches,
1393 const char *profile,
1394 char **extension_image_paths,
1395 PortableFlags flags,
1396 PortableChange **changes,
1397 size_t *n_changes,
1398 sd_bus_error *error) {
1399
1400 _cleanup_ordered_hashmap_free_ OrderedHashmap *extension_images = NULL, *extension_releases = NULL;
1401 _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
1402 _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
1403 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1404 _cleanup_strv_free_ char **valid_prefixes = NULL;
1405 _cleanup_(image_unrefp) Image *image = NULL;
1406 PortableMetadata *item;
1407 int r;
1408
1409 r = extract_image_and_extensions(
1410 name_or_path,
1411 matches,
1412 extension_image_paths,
1413 /* validate_sysext= */ true,
1414 /* relax_extension_release_check= */ FLAGS_SET(flags, PORTABLE_FORCE_SYSEXT),
1415 &image,
1416 &extension_images,
1417 &extension_releases,
1418 &os_release,
1419 &unit_files,
1420 &valid_prefixes,
1421 error);
1422 if (r < 0)
1423 return r;
1424
1425 if (valid_prefixes && !prefix_matches_compatible(matches, valid_prefixes)) {
1426 _cleanup_free_ char *matches_joined = NULL, *extensions_joined = NULL, *valid_prefixes_joined = NULL;
1427
1428 matches_joined = strv_join(matches, "', '");
1429 if (!matches_joined)
1430 return -ENOMEM;
1431
1432 extensions_joined = strv_join(extension_image_paths, ", ");
1433 if (!extensions_joined)
1434 return -ENOMEM;
1435
1436 valid_prefixes_joined = strv_join(valid_prefixes, ", ");
1437 if (!valid_prefixes_joined)
1438 return -ENOMEM;
1439
1440 return sd_bus_error_setf(
1441 error,
1442 SD_BUS_ERROR_INVALID_ARGS,
1443 "Selected matches '%s' are not compatible with portable service image '%s%s%s', refusing. (Acceptable prefix matches are: %s)",
1444 matches_joined,
1445 image->path,
1446 isempty(extensions_joined) ? "" : "' or any of its extensions '",
1447 strempty(extensions_joined),
1448 valid_prefixes_joined);
1449 }
1450
1451 if (hashmap_isempty(unit_files)) {
1452 _cleanup_free_ char *extensions_joined = strv_join(extension_image_paths, ", ");
1453 if (!extensions_joined)
1454 return -ENOMEM;
1455
1456 return sd_bus_error_setf(
1457 error,
1458 SD_BUS_ERROR_INVALID_ARGS,
1459 "Couldn't find any matching unit files in image '%s%s%s', refusing.",
1460 image->path,
1461 isempty(extensions_joined) ? "" : "' or any of its extensions '",
1462 strempty(extensions_joined));
1463 }
1464
1465 r = lookup_paths_init(&paths, RUNTIME_SCOPE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
1466 if (r < 0)
1467 return r;
1468
1469 if (!FLAGS_SET(flags, PORTABLE_REATTACH) && !FLAGS_SET(flags, PORTABLE_FORCE_ATTACH))
1470 HASHMAP_FOREACH(item, unit_files) {
1471 r = unit_file_exists(RUNTIME_SCOPE_SYSTEM, &paths, item->name);
1472 if (r < 0)
1473 return sd_bus_error_set_errnof(error, r, "Failed to determine whether unit '%s' exists on the host: %m", item->name);
1474 if (r > 0)
1475 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' exists on the host already, refusing.", item->name);
1476
1477 r = unit_file_is_active(bus, item->name, error);
1478 if (r < 0)
1479 return r;
1480 if (r > 0)
1481 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active already, refusing.", item->name);
1482 }
1483
1484 HASHMAP_FOREACH(item, unit_files) {
1485 r = attach_unit_file(&paths, image->path, image->type, extension_images, extension_releases,
1486 item, os_release, profile, flags, changes, n_changes);
1487 if (r < 0)
1488 return sd_bus_error_set_errnof(error, r, "Failed to attach unit '%s': %m", item->name);
1489 }
1490
1491 /* We don't care too much for the image symlink, it's just a convenience thing, it's not necessary for proper
1492 * operation otherwise. */
1493 (void) install_image_and_extensions_symlinks(image, extension_images, flags, changes, n_changes);
1494
1495 return 0;
1496 }
1497
1498 static bool marker_matches_images(const char *marker, const char *name_or_path, char **extension_image_paths) {
1499 _cleanup_strv_free_ char **root_and_extensions = NULL;
1500 const char *a;
1501 int r;
1502
1503 assert(marker);
1504 assert(name_or_path);
1505
1506 /* If extensions were used when attaching, the marker will be a colon-separated
1507 * list of images/paths. We enforce strict 1:1 matching, so that we are sure
1508 * we are detaching exactly what was attached.
1509 * For each image, starting with the root, we look for a token in the marker,
1510 * and return a negative answer on any non-matching combination. */
1511
1512 root_and_extensions = strv_new(name_or_path);
1513 if (!root_and_extensions)
1514 return -ENOMEM;
1515
1516 r = strv_extend_strv(&root_and_extensions, extension_image_paths, false);
1517 if (r < 0)
1518 return r;
1519
1520 STRV_FOREACH(image_name_or_path, root_and_extensions) {
1521 _cleanup_free_ char *image = NULL;
1522
1523 r = extract_first_word(&marker, &image, ":", EXTRACT_UNQUOTE|EXTRACT_RETAIN_ESCAPE);
1524 if (r < 0)
1525 return log_debug_errno(r, "Failed to parse marker: %s", marker);
1526 if (r == 0)
1527 return false;
1528
1529 a = last_path_component(image);
1530
1531 if (image_name_is_valid(*image_name_or_path)) {
1532 const char *e, *underscore;
1533
1534 /* We shall match against an image name. In that case let's compare the last component, and optionally
1535 * allow either a suffix of ".raw" or a series of "/".
1536 * But allow matching on a different version of the same image, when a "_" is used as a separator. */
1537 underscore = strchr(*image_name_or_path, '_');
1538 if (underscore) {
1539 if (strneq(a, *image_name_or_path, underscore - *image_name_or_path))
1540 continue;
1541 return false;
1542 }
1543
1544 e = startswith(a, *image_name_or_path);
1545 if (!e)
1546 return false;
1547
1548 if(!(e[strspn(e, "/")] == 0 || streq(e, ".raw")))
1549 return false;
1550 } else {
1551 const char *b, *underscore;
1552 size_t l;
1553
1554 /* We shall match against a path. Let's ignore any prefix here though, as often there are many ways to
1555 * reach the same file. However, in this mode, let's validate any file suffix.
1556 * But also ensure that we don't fail if both components don't have a '/' at all
1557 * (strcspn returns the full length of the string in that case, which might not
1558 * match as the versions might differ). */
1559
1560 l = strcspn(a, "/");
1561 b = last_path_component(*image_name_or_path);
1562
1563 if ((a[l] != '/') != !strchr(b, '/')) /* One is a directory, the other is not */
1564 return false;
1565
1566 if (a[l] != 0 && strcspn(b, "/") != l)
1567 return false;
1568
1569 underscore = strchr(b, '_');
1570 if (underscore)
1571 l = underscore - b;
1572 else { /* Either component could be versioned */
1573 underscore = strchr(a, '_');
1574 if (underscore)
1575 l = underscore - a;
1576 }
1577
1578 if (!strneq(a, b, l))
1579 return false;
1580 }
1581 }
1582
1583 return true;
1584 }
1585
1586 static int test_chroot_dropin(
1587 DIR *d,
1588 const char *where,
1589 const char *fname,
1590 const char *name_or_path,
1591 char **extension_image_paths,
1592 char **ret_marker) {
1593
1594 _cleanup_free_ char *line = NULL, *marker = NULL;
1595 _cleanup_fclose_ FILE *f = NULL;
1596 _cleanup_close_ int fd = -EBADF;
1597 const char *p, *e, *k;
1598 int r;
1599
1600 assert(d);
1601 assert(where);
1602 assert(fname);
1603
1604 /* We recognize unis created from portable images via the drop-in we created for them */
1605
1606 p = strjoina(fname, ".d/20-portable.conf");
1607 fd = openat(dirfd(d), p, O_RDONLY|O_CLOEXEC);
1608 if (fd < 0) {
1609 if (errno == ENOENT)
1610 return 0;
1611
1612 return log_debug_errno(errno, "Failed to open %s/%s: %m", where, p);
1613 }
1614
1615 r = take_fdopen_unlocked(&fd, "r", &f);
1616 if (r < 0)
1617 return log_debug_errno(r, "Failed to convert file handle: %m");
1618
1619 r = read_line(f, LONG_LINE_MAX, &line);
1620 if (r < 0)
1621 return log_debug_errno(r, "Failed to read from %s/%s: %m", where, p);
1622
1623 e = startswith(line, PORTABLE_DROPIN_MARKER_BEGIN);
1624 if (!e)
1625 return 0;
1626
1627 k = endswith(e, PORTABLE_DROPIN_MARKER_END);
1628 if (!k)
1629 return 0;
1630
1631 marker = strndup(e, k - e);
1632 if (!marker)
1633 return -ENOMEM;
1634
1635 if (!name_or_path)
1636 r = true;
1637 else
1638 r = marker_matches_images(marker, name_or_path, extension_image_paths);
1639
1640 if (ret_marker)
1641 *ret_marker = TAKE_PTR(marker);
1642
1643 return r;
1644 }
1645
1646 int portable_detach(
1647 sd_bus *bus,
1648 const char *name_or_path,
1649 char **extension_image_paths,
1650 PortableFlags flags,
1651 PortableChange **changes,
1652 size_t *n_changes,
1653 sd_bus_error *error) {
1654
1655 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1656 _cleanup_set_free_ Set *unit_files = NULL, *markers = NULL;
1657 _cleanup_free_ char *extensions = NULL;
1658 _cleanup_closedir_ DIR *d = NULL;
1659 const char *where, *item;
1660 int ret = 0;
1661 int r;
1662
1663 assert(name_or_path);
1664
1665 r = lookup_paths_init(&paths, RUNTIME_SCOPE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
1666 if (r < 0)
1667 return r;
1668
1669 where = attached_path(&paths, flags);
1670
1671 d = opendir(where);
1672 if (!d) {
1673 if (errno == ENOENT)
1674 goto not_found;
1675
1676 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
1677 }
1678
1679 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
1680 _cleanup_free_ char *marker = NULL, *unit_name = NULL;
1681 const char *dot;
1682
1683 /* When a portable service is enabled with "portablectl --copy=symlink --enable --now attach",
1684 * and is disabled with "portablectl --enable --now detach", which calls DisableUnitFilesWithFlags
1685 * DBus method, the main unit file is removed, but its drop-ins are not. Hence, here we need
1686 * to list both main unit files and drop-in directories (without the main unit files). */
1687
1688 dot = endswith(de->d_name, ".d");
1689 if (dot)
1690 unit_name = strndup(de->d_name, dot - de->d_name);
1691 else
1692 unit_name = strdup(de->d_name);
1693 if (!unit_name)
1694 return -ENOMEM;
1695
1696 if (!unit_name_is_valid(unit_name, UNIT_NAME_ANY))
1697 continue;
1698
1699 /* Filter out duplicates */
1700 if (set_contains(unit_files, unit_name))
1701 continue;
1702
1703 if (dot ? !IN_SET(de->d_type, DT_LNK, DT_DIR) : !IN_SET(de->d_type, DT_LNK, DT_REG))
1704 continue;
1705
1706 r = test_chroot_dropin(d, where, unit_name, name_or_path, extension_image_paths, &marker);
1707 if (r < 0)
1708 return r;
1709 if (r == 0)
1710 continue;
1711
1712 if (!FLAGS_SET(flags, PORTABLE_REATTACH) && !FLAGS_SET(flags, PORTABLE_FORCE_ATTACH)) {
1713 r = unit_file_is_active(bus, unit_name, error);
1714 if (r < 0)
1715 return r;
1716 if (r > 0)
1717 return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active, can't detach.", unit_name);
1718 }
1719
1720 r = set_ensure_consume(&unit_files, &string_hash_ops_free, TAKE_PTR(unit_name));
1721 if (r < 0)
1722 return log_oom_debug();
1723
1724 for (const char *p = marker;;) {
1725 _cleanup_free_ char *image = NULL;
1726
1727 r = extract_first_word(&p, &image, ":", EXTRACT_UNESCAPE_SEPARATORS|EXTRACT_RETAIN_ESCAPE);
1728 if (r < 0)
1729 return log_debug_errno(r, "Failed to parse marker: %s", p);
1730 if (r == 0)
1731 break;
1732
1733 if (path_is_absolute(image) && !image_in_search_path(IMAGE_PORTABLE, NULL, image)) {
1734 r = set_ensure_consume(&markers, &path_hash_ops_free, TAKE_PTR(image));
1735 if (r < 0)
1736 return r;
1737 }
1738 }
1739 }
1740
1741 if (set_isempty(unit_files))
1742 goto not_found;
1743
1744 SET_FOREACH(item, unit_files) {
1745 _cleanup_free_ char *md = NULL;
1746
1747 if (unlinkat(dirfd(d), item, 0) < 0) {
1748 log_debug_errno(errno, "Can't remove unit file %s/%s: %m", where, item);
1749
1750 if (errno != ENOENT && ret >= 0)
1751 ret = -errno;
1752 } else
1753 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, item, NULL);
1754
1755 FOREACH_STRING(suffix, ".d/10-profile.conf", ".d/20-portable.conf") {
1756 _cleanup_free_ char *dropin = NULL;
1757
1758 dropin = strjoin(item, suffix);
1759 if (!dropin)
1760 return -ENOMEM;
1761
1762 if (unlinkat(dirfd(d), dropin, 0) < 0) {
1763 log_debug_errno(errno, "Can't remove drop-in %s/%s: %m", where, dropin);
1764
1765 if (errno != ENOENT && ret >= 0)
1766 ret = -errno;
1767 } else
1768 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, dropin, NULL);
1769 }
1770
1771 md = strjoin(item, ".d");
1772 if (!md)
1773 return -ENOMEM;
1774
1775 if (unlinkat(dirfd(d), md, AT_REMOVEDIR) < 0) {
1776 log_debug_errno(errno, "Can't remove drop-in directory %s/%s: %m", where, md);
1777
1778 if (errno != ENOENT && ret >= 0)
1779 ret = -errno;
1780 } else
1781 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, md, NULL);
1782 }
1783
1784 /* Now, also drop any image symlink, for images outside of the sarch path */
1785 SET_FOREACH(item, markers) {
1786 _cleanup_free_ char *sl = NULL;
1787 struct stat st;
1788
1789 r = image_symlink(item, flags, &sl);
1790 if (r < 0) {
1791 log_debug_errno(r, "Failed to determine image symlink for '%s', ignoring: %m", item);
1792 continue;
1793 }
1794
1795 if (lstat(sl, &st) < 0) {
1796 log_debug_errno(errno, "Failed to stat '%s', ignoring: %m", sl);
1797 continue;
1798 }
1799
1800 if (!S_ISLNK(st.st_mode)) {
1801 log_debug("Image '%s' is not a symlink, ignoring.", sl);
1802 continue;
1803 }
1804
1805 if (unlink(sl) < 0) {
1806 log_debug_errno(errno, "Can't remove image symlink '%s': %m", sl);
1807
1808 if (errno != ENOENT && ret >= 0)
1809 ret = -errno;
1810 } else
1811 portable_changes_add(changes, n_changes, PORTABLE_UNLINK, sl, NULL);
1812 }
1813
1814 /* Try to remove the unit file directory, if we can */
1815 if (rmdir(where) >= 0)
1816 portable_changes_add(changes, n_changes, PORTABLE_UNLINK, where, NULL);
1817
1818 return ret;
1819
1820 not_found:
1821 extensions = strv_join(extension_image_paths, ", ");
1822 if (!extensions)
1823 return -ENOMEM;
1824
1825 r = sd_bus_error_setf(error,
1826 BUS_ERROR_NO_SUCH_UNIT,
1827 "No unit files associated with '%s%s%s' found attached to the system. Image not attached?",
1828 name_or_path,
1829 isempty(extensions) ? "" : "' or any of its extensions '",
1830 isempty(extensions) ? "" : extensions);
1831 return log_debug_errno(r, "%s", error->message);
1832 }
1833
1834 static int portable_get_state_internal(
1835 sd_bus *bus,
1836 const char *name_or_path,
1837 char **extension_image_paths,
1838 PortableFlags flags,
1839 PortableState *ret,
1840 sd_bus_error *error) {
1841
1842 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1843 bool found_enabled = false, found_running = false;
1844 _cleanup_set_free_ Set *unit_files = NULL;
1845 _cleanup_closedir_ DIR *d = NULL;
1846 const char *where;
1847 int r;
1848
1849 assert(name_or_path);
1850 assert(ret);
1851
1852 r = lookup_paths_init(&paths, RUNTIME_SCOPE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
1853 if (r < 0)
1854 return r;
1855
1856 where = attached_path(&paths, flags);
1857
1858 d = opendir(where);
1859 if (!d) {
1860 if (errno == ENOENT) {
1861 /* If the 'attached' directory doesn't exist at all, then we know for sure this image isn't attached. */
1862 *ret = PORTABLE_DETACHED;
1863 return 0;
1864 }
1865
1866 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
1867 }
1868
1869 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
1870 UnitFileState state;
1871
1872 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
1873 continue;
1874
1875 /* Filter out duplicates */
1876 if (set_contains(unit_files, de->d_name))
1877 continue;
1878
1879 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
1880 continue;
1881
1882 r = test_chroot_dropin(d, where, de->d_name, name_or_path, extension_image_paths, NULL);
1883 if (r < 0)
1884 return r;
1885 if (r == 0)
1886 continue;
1887
1888 r = unit_file_lookup_state(RUNTIME_SCOPE_SYSTEM, &paths, de->d_name, &state);
1889 if (r < 0)
1890 return log_debug_errno(r, "Failed to determine unit file state of '%s': %m", de->d_name);
1891 if (!IN_SET(state, UNIT_FILE_STATIC, UNIT_FILE_DISABLED, UNIT_FILE_LINKED, UNIT_FILE_LINKED_RUNTIME))
1892 found_enabled = true;
1893
1894 r = unit_file_is_active(bus, de->d_name, error);
1895 if (r < 0)
1896 return r;
1897 if (r > 0)
1898 found_running = true;
1899
1900 r = set_put_strdup(&unit_files, de->d_name);
1901 if (r < 0)
1902 return log_debug_errno(r, "Failed to add unit name '%s' to set: %m", de->d_name);
1903 }
1904
1905 *ret = found_running ? (!set_isempty(unit_files) && (flags & PORTABLE_RUNTIME) ? PORTABLE_RUNNING_RUNTIME : PORTABLE_RUNNING) :
1906 found_enabled ? (flags & PORTABLE_RUNTIME ? PORTABLE_ENABLED_RUNTIME : PORTABLE_ENABLED) :
1907 !set_isempty(unit_files) ? (flags & PORTABLE_RUNTIME ? PORTABLE_ATTACHED_RUNTIME : PORTABLE_ATTACHED) : PORTABLE_DETACHED;
1908
1909 return 0;
1910 }
1911
1912 int portable_get_state(
1913 sd_bus *bus,
1914 const char *name_or_path,
1915 char **extension_image_paths,
1916 PortableFlags flags,
1917 PortableState *ret,
1918 sd_bus_error *error) {
1919
1920 PortableState state;
1921 int r;
1922
1923 assert(name_or_path);
1924 assert(ret);
1925
1926 /* We look for matching units twice: once in the regular directories, and once in the runtime directories — but
1927 * the latter only if we didn't find anything in the former. */
1928
1929 r = portable_get_state_internal(bus, name_or_path, extension_image_paths, flags & ~PORTABLE_RUNTIME, &state, error);
1930 if (r < 0)
1931 return r;
1932
1933 if (state == PORTABLE_DETACHED) {
1934 r = portable_get_state_internal(bus, name_or_path, extension_image_paths, flags | PORTABLE_RUNTIME, &state, error);
1935 if (r < 0)
1936 return r;
1937 }
1938
1939 *ret = state;
1940 return 0;
1941 }
1942
1943 int portable_get_profiles(char ***ret) {
1944 assert(ret);
1945
1946 return conf_files_list_nulstr(ret, NULL, NULL, CONF_FILES_DIRECTORY|CONF_FILES_BASENAME|CONF_FILES_FILTER_MASKED, PORTABLE_PROFILE_DIRS);
1947 }
1948
1949 static const char* const portable_change_type_table[_PORTABLE_CHANGE_TYPE_MAX] = {
1950 [PORTABLE_COPY] = "copy",
1951 [PORTABLE_MKDIR] = "mkdir",
1952 [PORTABLE_SYMLINK] = "symlink",
1953 [PORTABLE_UNLINK] = "unlink",
1954 [PORTABLE_WRITE] = "write",
1955 };
1956
1957 DEFINE_STRING_TABLE_LOOKUP(portable_change_type, int);
1958
1959 static const char* const portable_state_table[_PORTABLE_STATE_MAX] = {
1960 [PORTABLE_DETACHED] = "detached",
1961 [PORTABLE_ATTACHED] = "attached",
1962 [PORTABLE_ATTACHED_RUNTIME] = "attached-runtime",
1963 [PORTABLE_ENABLED] = "enabled",
1964 [PORTABLE_ENABLED_RUNTIME] = "enabled-runtime",
1965 [PORTABLE_RUNNING] = "running",
1966 [PORTABLE_RUNNING_RUNTIME] = "running-runtime",
1967 };
1968
1969 DEFINE_STRING_TABLE_LOOKUP(portable_state, PortableState);