]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/dissect-image.c
dissect-image: set MS_NOSYMFOLLOW for ESP/XBOOTLDR
[thirdparty/systemd.git] / src / shared / dissect-image.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #if HAVE_VALGRIND_MEMCHECK_H
4 #include <valgrind/memcheck.h>
5 #endif
6
7 #include <linux/dm-ioctl.h>
8 #include <linux/loop.h>
9 #include <sys/file.h>
10 #include <sys/mount.h>
11 #include <sys/prctl.h>
12 #include <sys/wait.h>
13 #include <sysexits.h>
14
15 #if HAVE_OPENSSL
16 #include <openssl/err.h>
17 #include <openssl/pem.h>
18 #include <openssl/x509.h>
19 #endif
20
21 #include "sd-device.h"
22 #include "sd-id128.h"
23
24 #include "architecture.h"
25 #include "ask-password-api.h"
26 #include "blkid-util.h"
27 #include "blockdev-util.h"
28 #include "btrfs-util.h"
29 #include "chase-symlinks.h"
30 #include "conf-files.h"
31 #include "constants.h"
32 #include "copy.h"
33 #include "cryptsetup-util.h"
34 #include "device-nodes.h"
35 #include "device-util.h"
36 #include "devnum-util.h"
37 #include "discover-image.h"
38 #include "dissect-image.h"
39 #include "dm-util.h"
40 #include "env-file.h"
41 #include "env-util.h"
42 #include "extension-release.h"
43 #include "fd-util.h"
44 #include "fileio.h"
45 #include "fs-util.h"
46 #include "fsck-util.h"
47 #include "gpt.h"
48 #include "hexdecoct.h"
49 #include "hostname-setup.h"
50 #include "id128-util.h"
51 #include "import-util.h"
52 #include "io-util.h"
53 #include "missing_mount.h"
54 #include "mkdir-label.h"
55 #include "mount-util.h"
56 #include "mountpoint-util.h"
57 #include "namespace-util.h"
58 #include "nulstr-util.h"
59 #include "openssl-util.h"
60 #include "os-util.h"
61 #include "path-util.h"
62 #include "process-util.h"
63 #include "raw-clone.h"
64 #include "resize-fs.h"
65 #include "signal-util.h"
66 #include "sparse-endian.h"
67 #include "stat-util.h"
68 #include "stdio-util.h"
69 #include "string-table.h"
70 #include "string-util.h"
71 #include "strv.h"
72 #include "tmpfile-util.h"
73 #include "udev-util.h"
74 #include "user-util.h"
75 #include "xattr-util.h"
76
77 /* how many times to wait for the device nodes to appear */
78 #define N_DEVICE_NODE_LIST_ATTEMPTS 10
79
80 int dissect_fstype_ok(const char *fstype) {
81 const char *e;
82 bool b;
83
84 /* When we automatically mount file systems, be a bit conservative by default what we are willing to
85 * mount, just as an extra safety net to not mount with badly maintained legacy file system
86 * drivers. */
87
88 e = secure_getenv("SYSTEMD_DISSECT_FILE_SYSTEMS");
89 if (e) {
90 _cleanup_strv_free_ char **l = NULL;
91
92 l = strv_split(e, ":");
93 if (!l)
94 return -ENOMEM;
95
96 b = strv_contains(l, fstype);
97 } else
98 b = STR_IN_SET(fstype,
99 "btrfs",
100 "erofs",
101 "ext4",
102 "squashfs",
103 "vfat",
104 "xfs");
105 if (b)
106 return true;
107
108 log_debug("File system type '%s' is not allowed to be mounted as result of automatic dissection.", fstype);
109 return false;
110 }
111
112 int probe_sector_size(int fd, uint32_t *ret) {
113
114 struct gpt_header {
115 char signature[8];
116 le32_t revision;
117 le32_t header_size;
118 le32_t crc32;
119 le32_t reserved;
120 le64_t my_lba;
121 le64_t alternate_lba;
122 le64_t first_usable_lba;
123 le64_t last_usable_lba;
124 sd_id128_t disk_guid;
125 le64_t partition_entry_lba;
126 le32_t number_of_partition_entries;
127 le32_t size_of_partition_entry;
128 le32_t partition_entry_array_crc32;
129 } _packed_;
130
131 /* Disk images might be for 512B or for 4096 sector sizes, let's try to auto-detect that by searching
132 * for the GPT headers at the relevant byte offsets */
133
134 assert_cc(sizeof(struct gpt_header) == 92);
135
136 /* We expect a sector size in the range 512…4096. The GPT header is located in the second
137 * sector. Hence it could be at byte 512 at the earliest, and at byte 4096 at the latest. And we must
138 * read with granularity of the largest sector size we care about. Which means 8K. */
139 uint8_t sectors[2 * 4096];
140 uint32_t found = 0;
141 ssize_t n;
142
143 assert(fd >= 0);
144 assert(ret);
145
146 n = pread(fd, sectors, sizeof(sectors), 0);
147 if (n < 0)
148 return -errno;
149 if (n != sizeof(sectors)) /* too short? */
150 goto not_found;
151
152 /* Let's see if we find the GPT partition header with various expected sector sizes */
153 for (uint32_t sz = 512; sz <= 4096; sz <<= 1) {
154 struct gpt_header *p;
155
156 assert(sizeof(sectors) >= sz * 2);
157 p = (struct gpt_header*) (sectors + sz);
158
159 if (memcmp(p->signature, (const char[8]) { 'E', 'F', 'I', ' ', 'P', 'A', 'R', 'T' }, 8) != 0)
160 continue;
161
162 if (le32toh(p->revision) != UINT32_C(0x00010000)) /* the only known revision of the spec: 1.0 */
163 continue;
164
165 if (le32toh(p->header_size) < sizeof(struct gpt_header))
166 continue;
167
168 if (le32toh(p->header_size) > 4096) /* larger than a sector? something is off… */
169 continue;
170
171 if (le64toh(p->my_lba) != 1) /* this sector must claim to be at sector offset 1 */
172 continue;
173
174 if (found != 0)
175 return log_debug_errno(SYNTHETIC_ERRNO(ENOTUNIQ),
176 "Detected valid partition table at offsets matching multiple sector sizes, refusing.");
177
178 found = sz;
179 }
180
181 if (found != 0) {
182 log_debug("Determined sector size %" PRIu32 " based on discovered partition table.", found);
183 *ret = found;
184 return 1; /* indicate we *did* find it */
185 }
186
187 not_found:
188 log_debug("Couldn't find any partition table to derive sector size of.");
189 *ret = 512; /* pick the traditional default */
190 return 0; /* indicate we didn't find it */
191 }
192
193 int probe_sector_size_prefer_ioctl(int fd, uint32_t *ret) {
194 struct stat st;
195
196 assert(fd >= 0);
197 assert(ret);
198
199 /* Just like probe_sector_size(), but if we are looking at a block device, will use the already
200 * configured sector size rather than probing by contents */
201
202 if (fstat(fd, &st) < 0)
203 return -errno;
204
205 if (S_ISBLK(st.st_mode))
206 return blockdev_get_sector_size(fd, ret);
207
208 return probe_sector_size(fd, ret);
209 }
210
211 int probe_filesystem_full(
212 int fd,
213 const char *path,
214 uint64_t offset,
215 uint64_t size,
216 char **ret_fstype) {
217
218 /* Try to find device content type and return it in *ret_fstype. If nothing is found,
219 * 0/NULL will be returned. -EUCLEAN will be returned for ambiguous results, and a
220 * different error otherwise. */
221
222 #if HAVE_BLKID
223 _cleanup_(blkid_free_probep) blkid_probe b = NULL;
224 _cleanup_free_ char *path_by_fd = NULL;
225 _cleanup_close_ int fd_close = -EBADF;
226 const char *fstype;
227 int r;
228
229 assert(fd >= 0 || path);
230 assert(ret_fstype);
231
232 if (fd < 0) {
233 fd_close = open(path, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY);
234 if (fd_close < 0)
235 return -errno;
236
237 fd = fd_close;
238 }
239
240 if (!path) {
241 r = fd_get_path(fd, &path_by_fd);
242 if (r < 0)
243 return r;
244
245 path = path_by_fd;
246 }
247
248 if (size == 0) /* empty size? nothing found! */
249 goto not_found;
250
251 b = blkid_new_probe();
252 if (!b)
253 return -ENOMEM;
254
255 errno = 0;
256 r = blkid_probe_set_device(
257 b,
258 fd,
259 offset,
260 size == UINT64_MAX ? 0 : size); /* when blkid sees size=0 it understands "everything". We prefer using UINT64_MAX for that */
261 if (r != 0)
262 return errno_or_else(ENOMEM);
263
264 blkid_probe_enable_superblocks(b, 1);
265 blkid_probe_set_superblocks_flags(b, BLKID_SUBLKS_TYPE);
266
267 errno = 0;
268 r = blkid_do_safeprobe(b);
269 if (r == _BLKID_SAFEPROBE_NOT_FOUND)
270 goto not_found;
271 if (r == _BLKID_SAFEPROBE_AMBIGUOUS)
272 return log_debug_errno(SYNTHETIC_ERRNO(EUCLEAN),
273 "Results ambiguous for partition %s", path);
274 if (r == _BLKID_SAFEPROBE_ERROR)
275 return log_debug_errno(errno_or_else(EIO), "Failed to probe partition %s: %m", path);
276
277 assert(r == _BLKID_SAFEPROBE_FOUND);
278
279 (void) blkid_probe_lookup_value(b, "TYPE", &fstype, NULL);
280
281 if (fstype) {
282 char *t;
283
284 log_debug("Probed fstype '%s' on partition %s.", fstype, path);
285
286 t = strdup(fstype);
287 if (!t)
288 return -ENOMEM;
289
290 *ret_fstype = t;
291 return 1;
292 }
293
294 not_found:
295 log_debug("No type detected on partition %s", path);
296 *ret_fstype = NULL;
297 return 0;
298 #else
299 return -EOPNOTSUPP;
300 #endif
301 }
302
303 #if HAVE_BLKID
304 static int dissected_image_probe_filesystems(DissectedImage *m, int fd) {
305 int r;
306
307 assert(m);
308
309 /* Fill in file system types if we don't know them yet. */
310
311 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
312 DissectedPartition *p = m->partitions + i;
313
314 if (!p->found)
315 continue;
316
317 if (!p->fstype) {
318 /* If we have an fd referring to the partition block device, use that. Otherwise go
319 * via the whole block device or backing regular file, and read via offset. */
320 if (p->mount_node_fd >= 0)
321 r = probe_filesystem_full(p->mount_node_fd, p->node, 0, UINT64_MAX, &p->fstype);
322 else
323 r = probe_filesystem_full(fd, p->node, p->offset, p->size, &p->fstype);
324 if (r < 0)
325 return r;
326 }
327
328 if (streq_ptr(p->fstype, "crypto_LUKS"))
329 m->encrypted = true;
330
331 if (p->fstype && fstype_is_ro(p->fstype))
332 p->rw = false;
333
334 if (!p->rw)
335 p->growfs = false;
336 }
337
338 return 0;
339 }
340
341 static void check_partition_flags(
342 const char *node,
343 unsigned long long pflags,
344 unsigned long long supported) {
345
346 assert(node);
347
348 /* Mask away all flags supported by this partition's type and the three flags the UEFI spec defines generically */
349 pflags &= ~(supported |
350 SD_GPT_FLAG_REQUIRED_PARTITION |
351 SD_GPT_FLAG_NO_BLOCK_IO_PROTOCOL |
352 SD_GPT_FLAG_LEGACY_BIOS_BOOTABLE);
353
354 if (pflags == 0)
355 return;
356
357 /* If there are other bits set, then log about it, to make things discoverable */
358 for (unsigned i = 0; i < sizeof(pflags) * 8; i++) {
359 unsigned long long bit = 1ULL << i;
360 if (!FLAGS_SET(pflags, bit))
361 continue;
362
363 log_debug("Unexpected partition flag %llu set on %s!", bit, node);
364 }
365 }
366 #endif
367
368 #if HAVE_BLKID
369 static int dissected_image_new(const char *path, DissectedImage **ret) {
370 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
371 _cleanup_free_ char *name = NULL;
372 int r;
373
374 assert(ret);
375
376 if (path) {
377 _cleanup_free_ char *filename = NULL;
378
379 r = path_extract_filename(path, &filename);
380 if (r < 0)
381 return r;
382
383 r = raw_strip_suffixes(filename, &name);
384 if (r < 0)
385 return r;
386
387 if (!image_name_is_valid(name)) {
388 log_debug("Image name %s is not valid, ignoring.", strna(name));
389 name = mfree(name);
390 }
391 }
392
393 m = new(DissectedImage, 1);
394 if (!m)
395 return -ENOMEM;
396
397 *m = (DissectedImage) {
398 .has_init_system = -1,
399 .image_name = TAKE_PTR(name),
400 };
401
402 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++)
403 m->partitions[i] = DISSECTED_PARTITION_NULL;
404
405 *ret = TAKE_PTR(m);
406 return 0;
407 }
408 #endif
409
410 static void dissected_partition_done(DissectedPartition *p) {
411 assert(p);
412
413 free(p->fstype);
414 free(p->node);
415 free(p->label);
416 free(p->decrypted_fstype);
417 free(p->decrypted_node);
418 free(p->mount_options);
419 safe_close(p->mount_node_fd);
420
421 *p = DISSECTED_PARTITION_NULL;
422 }
423
424 #if HAVE_BLKID
425 static int make_partition_devname(
426 const char *whole_devname,
427 uint64_t diskseq,
428 int nr,
429 DissectImageFlags flags,
430 char **ret) {
431
432 _cleanup_free_ char *s = NULL;
433 int r;
434
435 assert(whole_devname);
436 assert(nr != 0); /* zero is not a valid partition nr */
437 assert(ret);
438
439 if (!FLAGS_SET(flags, DISSECT_IMAGE_DISKSEQ_DEVNODE) || diskseq == 0) {
440
441 /* Given a whole block device node name (e.g. /dev/sda or /dev/loop7) generate a partition
442 * device name (e.g. /dev/sda7 or /dev/loop7p5). The rule the kernel uses is simple: if whole
443 * block device node name ends in a digit, then suffix a 'p', followed by the partition
444 * number. Otherwise, just suffix the partition number without any 'p'. */
445
446 if (nr < 0) { /* whole disk? */
447 s = strdup(whole_devname);
448 if (!s)
449 return -ENOMEM;
450 } else {
451 size_t l = strlen(whole_devname);
452 if (l < 1) /* underflow check for the subtraction below */
453 return -EINVAL;
454
455 bool need_p = ascii_isdigit(whole_devname[l-1]); /* Last char a digit? */
456
457 if (asprintf(&s, "%s%s%i", whole_devname, need_p ? "p" : "", nr) < 0)
458 return -ENOMEM;
459 }
460 } else {
461 if (nr < 0) /* whole disk? */
462 r = asprintf(&s, "/dev/disk/by-diskseq/%" PRIu64, diskseq);
463 else
464 r = asprintf(&s, "/dev/disk/by-diskseq/%" PRIu64 "-part%i", diskseq, nr);
465 if (r < 0)
466 return -ENOMEM;
467 }
468
469 *ret = TAKE_PTR(s);
470 return 0;
471 }
472
473 static int open_partition(
474 const char *node,
475 bool is_partition,
476 const LoopDevice *loop) {
477
478 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
479 _cleanup_close_ int fd = -EBADF;
480 dev_t devnum;
481 int r;
482
483 assert(node);
484 assert(loop);
485
486 fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY);
487 if (fd < 0)
488 return -errno;
489
490 /* Check if the block device is a child of (or equivalent to) the originally provided one. */
491 r = block_device_new_from_fd(fd, is_partition ? BLOCK_DEVICE_LOOKUP_WHOLE_DISK : 0, &dev);
492 if (r < 0)
493 return r;
494
495 r = sd_device_get_devnum(dev, &devnum);
496 if (r < 0)
497 return r;
498
499 if (loop->devno != devnum)
500 return -ENXIO;
501
502 /* Also check diskseq. */
503 if (loop->diskseq != 0) {
504 uint64_t diskseq;
505
506 r = fd_get_diskseq(fd, &diskseq);
507 if (r < 0)
508 return r;
509
510 if (loop->diskseq != diskseq)
511 return -ENXIO;
512 }
513
514 log_debug("Opened %s (fd=%i, whole_block_devnum=" DEVNUM_FORMAT_STR ", diskseq=%" PRIu64 ").",
515 node, fd, DEVNUM_FORMAT_VAL(loop->devno), loop->diskseq);
516 return TAKE_FD(fd);
517 }
518
519 static int compare_arch(Architecture a, Architecture b) {
520 if (a == b)
521 return 0;
522
523 if (a == native_architecture())
524 return 1;
525
526 if (b == native_architecture())
527 return -1;
528
529 #ifdef ARCHITECTURE_SECONDARY
530 if (a == ARCHITECTURE_SECONDARY)
531 return 1;
532
533 if (b == ARCHITECTURE_SECONDARY)
534 return -1;
535 #endif
536
537 return 0;
538 }
539
540 static int dissect_image(
541 DissectedImage *m,
542 int fd,
543 const char *devname,
544 const VeritySettings *verity,
545 const MountOptions *mount_options,
546 DissectImageFlags flags) {
547
548 sd_id128_t root_uuid = SD_ID128_NULL, root_verity_uuid = SD_ID128_NULL;
549 sd_id128_t usr_uuid = SD_ID128_NULL, usr_verity_uuid = SD_ID128_NULL;
550 bool is_gpt, is_mbr, multiple_generic = false,
551 generic_rw = false, /* initialize to appease gcc */
552 generic_growfs = false;
553 _cleanup_(blkid_free_probep) blkid_probe b = NULL;
554 _cleanup_free_ char *generic_node = NULL;
555 sd_id128_t generic_uuid = SD_ID128_NULL;
556 const char *pttype = NULL, *sptuuid = NULL;
557 blkid_partlist pl;
558 int r, generic_nr = -1, n_partitions;
559
560 assert(m);
561 assert(fd >= 0);
562 assert(devname);
563 assert(!verity || verity->designator < 0 || IN_SET(verity->designator, PARTITION_ROOT, PARTITION_USR));
564 assert(!verity || verity->root_hash || verity->root_hash_size == 0);
565 assert(!verity || verity->root_hash_sig || verity->root_hash_sig_size == 0);
566 assert(!verity || (verity->root_hash || !verity->root_hash_sig));
567 assert(!((flags & DISSECT_IMAGE_GPT_ONLY) && (flags & DISSECT_IMAGE_NO_PARTITION_TABLE)));
568 assert(m->sector_size > 0);
569
570 /* Probes a disk image, and returns information about what it found in *ret.
571 *
572 * Returns -ENOPKG if no suitable partition table or file system could be found.
573 * Returns -EADDRNOTAVAIL if a root hash was specified but no matching root/verity partitions found.
574 * Returns -ENXIO if we couldn't find any partition suitable as root or /usr partition
575 * Returns -ENOTUNIQ if we only found multiple generic partitions and thus don't know what to do with that */
576
577 uint64_t diskseq = m->loop ? m->loop->diskseq : 0;
578
579 if (verity && verity->root_hash) {
580 sd_id128_t fsuuid, vuuid;
581
582 /* If a root hash is supplied, then we use the root partition that has a UUID that match the
583 * first 128bit of the root hash. And we use the verity partition that has a UUID that match
584 * the final 128bit. */
585
586 if (verity->root_hash_size < sizeof(sd_id128_t))
587 return -EINVAL;
588
589 memcpy(&fsuuid, verity->root_hash, sizeof(sd_id128_t));
590 memcpy(&vuuid, (const uint8_t*) verity->root_hash + verity->root_hash_size - sizeof(sd_id128_t), sizeof(sd_id128_t));
591
592 if (sd_id128_is_null(fsuuid))
593 return -EINVAL;
594 if (sd_id128_is_null(vuuid))
595 return -EINVAL;
596
597 /* If the verity data declares it's for the /usr partition, then search for that, in all
598 * other cases assume it's for the root partition. */
599 if (verity->designator == PARTITION_USR) {
600 usr_uuid = fsuuid;
601 usr_verity_uuid = vuuid;
602 } else {
603 root_uuid = fsuuid;
604 root_verity_uuid = vuuid;
605 }
606 }
607
608 b = blkid_new_probe();
609 if (!b)
610 return -ENOMEM;
611
612 errno = 0;
613 r = blkid_probe_set_device(b, fd, 0, 0);
614 if (r != 0)
615 return errno_or_else(ENOMEM);
616
617 errno = 0;
618 r = blkid_probe_set_sectorsize(b, m->sector_size);
619 if (r != 0)
620 return errno_or_else(EIO);
621
622 if ((flags & DISSECT_IMAGE_GPT_ONLY) == 0) {
623 /* Look for file system superblocks, unless we only shall look for GPT partition tables */
624 blkid_probe_enable_superblocks(b, 1);
625 blkid_probe_set_superblocks_flags(b, BLKID_SUBLKS_TYPE|BLKID_SUBLKS_USAGE|BLKID_SUBLKS_UUID);
626 }
627
628 blkid_probe_enable_partitions(b, 1);
629 blkid_probe_set_partitions_flags(b, BLKID_PARTS_ENTRY_DETAILS);
630
631 errno = 0;
632 r = blkid_do_safeprobe(b);
633 if (r == _BLKID_SAFEPROBE_ERROR)
634 return errno_or_else(EIO);
635 if (IN_SET(r, _BLKID_SAFEPROBE_AMBIGUOUS, _BLKID_SAFEPROBE_NOT_FOUND))
636 return log_debug_errno(SYNTHETIC_ERRNO(ENOPKG), "Failed to identify any partition table.");
637
638 assert(r == _BLKID_SAFEPROBE_FOUND);
639
640 if ((!(flags & DISSECT_IMAGE_GPT_ONLY) &&
641 (flags & DISSECT_IMAGE_GENERIC_ROOT)) ||
642 (flags & DISSECT_IMAGE_NO_PARTITION_TABLE)) {
643 const char *usage = NULL;
644
645 /* If flags permit this, also allow using non-partitioned single-filesystem images */
646
647 (void) blkid_probe_lookup_value(b, "USAGE", &usage, NULL);
648 if (STRPTR_IN_SET(usage, "filesystem", "crypto")) {
649 _cleanup_free_ char *t = NULL, *n = NULL, *o = NULL;
650 const char *fstype = NULL, *options = NULL, *suuid = NULL;
651 _cleanup_close_ int mount_node_fd = -EBADF;
652 sd_id128_t uuid = SD_ID128_NULL;
653
654 if (FLAGS_SET(flags, DISSECT_IMAGE_PIN_PARTITION_DEVICES)) {
655 mount_node_fd = open_partition(devname, /* is_partition = */ false, m->loop);
656 if (mount_node_fd < 0)
657 return mount_node_fd;
658 }
659
660 /* OK, we have found a file system, that's our root partition then. */
661 (void) blkid_probe_lookup_value(b, "TYPE", &fstype, NULL);
662 (void) blkid_probe_lookup_value(b, "UUID", &suuid, NULL);
663
664 if (fstype) {
665 t = strdup(fstype);
666 if (!t)
667 return -ENOMEM;
668 }
669
670 if (suuid) {
671 /* blkid will return FAT's serial number as UUID, hence it is quite possible
672 * that parsing this will fail. We'll ignore the ID, since it's just too
673 * short to be useful as tru identifier. */
674 r = sd_id128_from_string(suuid, &uuid);
675 if (r < 0)
676 log_debug_errno(r, "Failed to parse file system UUID '%s', ignoring: %m", suuid);
677 }
678
679 r = make_partition_devname(devname, diskseq, -1, flags, &n);
680 if (r < 0)
681 return r;
682
683 m->single_file_system = true;
684 m->encrypted = streq_ptr(fstype, "crypto_LUKS");
685
686 m->has_verity = verity && verity->data_path;
687 m->verity_ready = verity_settings_data_covers(verity, PARTITION_ROOT);
688
689 m->has_verity_sig = false; /* signature not embedded, must be specified */
690 m->verity_sig_ready = m->verity_ready && verity->root_hash_sig;
691
692 m->image_uuid = uuid;
693
694 options = mount_options_from_designator(mount_options, PARTITION_ROOT);
695 if (options) {
696 o = strdup(options);
697 if (!o)
698 return -ENOMEM;
699 }
700
701 m->partitions[PARTITION_ROOT] = (DissectedPartition) {
702 .found = true,
703 .rw = !m->verity_ready && !fstype_is_ro(fstype),
704 .partno = -1,
705 .architecture = _ARCHITECTURE_INVALID,
706 .fstype = TAKE_PTR(t),
707 .node = TAKE_PTR(n),
708 .mount_options = TAKE_PTR(o),
709 .mount_node_fd = TAKE_FD(mount_node_fd),
710 .offset = 0,
711 .size = UINT64_MAX,
712 };
713
714 return 0;
715 }
716 }
717
718 (void) blkid_probe_lookup_value(b, "PTTYPE", &pttype, NULL);
719 if (!pttype)
720 return -ENOPKG;
721
722 is_gpt = streq_ptr(pttype, "gpt");
723 is_mbr = streq_ptr(pttype, "dos");
724
725 if (!is_gpt && ((flags & DISSECT_IMAGE_GPT_ONLY) || !is_mbr))
726 return -ENOPKG;
727
728 /* We support external verity data partitions only if the image has no partition table */
729 if (verity && verity->data_path)
730 return -EBADR;
731
732 if (FLAGS_SET(flags, DISSECT_IMAGE_ADD_PARTITION_DEVICES)) {
733 /* Safety check: refuse block devices that carry a partition table but for which the kernel doesn't
734 * do partition scanning. */
735 r = blockdev_partscan_enabled(fd);
736 if (r < 0)
737 return r;
738 if (r == 0)
739 return -EPROTONOSUPPORT;
740 }
741
742 (void) blkid_probe_lookup_value(b, "PTUUID", &sptuuid, NULL);
743 if (sptuuid) {
744 r = sd_id128_from_string(sptuuid, &m->image_uuid);
745 if (r < 0)
746 log_debug_errno(r, "Failed to parse partition table UUID '%s', ignoring: %m", sptuuid);
747 }
748
749 errno = 0;
750 pl = blkid_probe_get_partitions(b);
751 if (!pl)
752 return errno_or_else(ENOMEM);
753
754 errno = 0;
755 n_partitions = blkid_partlist_numof_partitions(pl);
756 if (n_partitions < 0)
757 return errno_or_else(EIO);
758
759 for (int i = 0; i < n_partitions; i++) {
760 _cleanup_free_ char *node = NULL;
761 unsigned long long pflags;
762 blkid_loff_t start, size;
763 blkid_partition pp;
764 int nr;
765
766 errno = 0;
767 pp = blkid_partlist_get_partition(pl, i);
768 if (!pp)
769 return errno_or_else(EIO);
770
771 pflags = blkid_partition_get_flags(pp);
772
773 errno = 0;
774 nr = blkid_partition_get_partno(pp);
775 if (nr < 0)
776 return errno_or_else(EIO);
777
778 errno = 0;
779 start = blkid_partition_get_start(pp);
780 if (start < 0)
781 return errno_or_else(EIO);
782
783 assert((uint64_t) start < UINT64_MAX/512);
784
785 errno = 0;
786 size = blkid_partition_get_size(pp);
787 if (size < 0)
788 return errno_or_else(EIO);
789
790 assert((uint64_t) size < UINT64_MAX/512);
791
792 /* While probing we need the non-diskseq device node name to access the thing, hence mask off
793 * DISSECT_IMAGE_DISKSEQ_DEVNODE. */
794 r = make_partition_devname(devname, diskseq, nr, flags & ~DISSECT_IMAGE_DISKSEQ_DEVNODE, &node);
795 if (r < 0)
796 return r;
797
798 /* So here's the thing: after the main ("whole") block device popped up it might take a while
799 * before the kernel fully probed the partition table. Waiting for that to finish is icky in
800 * userspace. So here's what we do instead. We issue the BLKPG_ADD_PARTITION ioctl to add the
801 * partition ourselves, racing against the kernel. Good thing is: if this call fails with
802 * EBUSY then the kernel was quicker than us, and that's totally OK, the outcome is good for
803 * us: the device node will exist. If OTOH our call was successful we won the race. Which is
804 * also good as the outcome is the same: the partition block device exists, and we can use
805 * it.
806 *
807 * Kernel returns EBUSY if there's already a partition by that number or an overlapping
808 * partition already existent. */
809
810 if (FLAGS_SET(flags, DISSECT_IMAGE_ADD_PARTITION_DEVICES)) {
811 r = block_device_add_partition(fd, node, nr, (uint64_t) start * 512, (uint64_t) size * 512);
812 if (r < 0) {
813 if (r != -EBUSY)
814 return log_debug_errno(r, "BLKPG_ADD_PARTITION failed: %m");
815
816 log_debug_errno(r, "Kernel was quicker than us in adding partition %i.", nr);
817 } else
818 log_debug("We were quicker than kernel in adding partition %i.", nr);
819 }
820
821 if (is_gpt) {
822 const char *fstype = NULL, *label;
823 sd_id128_t type_id, id;
824 GptPartitionType type;
825 bool rw = true, growfs = false;
826
827 r = blkid_partition_get_uuid_id128(pp, &id);
828 if (r < 0) {
829 log_debug_errno(r, "Failed to read partition UUID, ignoring: %m");
830 continue;
831 }
832
833 r = blkid_partition_get_type_id128(pp, &type_id);
834 if (r < 0) {
835 log_debug_errno(r, "Failed to read partition type UUID, ignoring: %m");
836 continue;
837 }
838
839 type = gpt_partition_type_from_uuid(type_id);
840
841 label = blkid_partition_get_name(pp); /* libblkid returns NULL here if empty */
842
843 if (IN_SET(type.designator,
844 PARTITION_HOME,
845 PARTITION_SRV,
846 PARTITION_XBOOTLDR,
847 PARTITION_TMP)) {
848
849 check_partition_flags(node, pflags,
850 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY | SD_GPT_FLAG_GROWFS);
851
852 if (pflags & SD_GPT_FLAG_NO_AUTO)
853 continue;
854
855 rw = !(pflags & SD_GPT_FLAG_READ_ONLY);
856 growfs = FLAGS_SET(pflags, SD_GPT_FLAG_GROWFS);
857
858 } else if (type.designator == PARTITION_ESP) {
859
860 /* Note that we don't check the SD_GPT_FLAG_NO_AUTO flag for the ESP, as it is
861 * not defined there. We instead check the SD_GPT_FLAG_NO_BLOCK_IO_PROTOCOL, as
862 * recommended by the UEFI spec (See "12.3.3 Number and Location of System
863 * Partitions"). */
864
865 if (pflags & SD_GPT_FLAG_NO_BLOCK_IO_PROTOCOL)
866 continue;
867
868 fstype = "vfat";
869
870 } else if (type.designator == PARTITION_ROOT) {
871
872 check_partition_flags(node, pflags,
873 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY | SD_GPT_FLAG_GROWFS);
874
875 if (pflags & SD_GPT_FLAG_NO_AUTO)
876 continue;
877
878 /* If a root ID is specified, ignore everything but the root id */
879 if (!sd_id128_is_null(root_uuid) && !sd_id128_equal(root_uuid, id))
880 continue;
881
882 rw = !(pflags & SD_GPT_FLAG_READ_ONLY);
883 growfs = FLAGS_SET(pflags, SD_GPT_FLAG_GROWFS);
884
885 } else if (type.designator == PARTITION_ROOT_VERITY) {
886
887 check_partition_flags(node, pflags,
888 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY);
889
890 if (pflags & SD_GPT_FLAG_NO_AUTO)
891 continue;
892
893 m->has_verity = true;
894
895 /* If no verity configuration is specified, then don't do verity */
896 if (!verity)
897 continue;
898 if (verity->designator >= 0 && verity->designator != PARTITION_ROOT)
899 continue;
900
901 /* If root hash is specified, then ignore everything but the root id */
902 if (!sd_id128_is_null(root_verity_uuid) && !sd_id128_equal(root_verity_uuid, id))
903 continue;
904
905 fstype = "DM_verity_hash";
906 rw = false;
907
908 } else if (type.designator == PARTITION_ROOT_VERITY_SIG) {
909
910 check_partition_flags(node, pflags,
911 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY);
912
913 if (pflags & SD_GPT_FLAG_NO_AUTO)
914 continue;
915
916 m->has_verity_sig = true;
917
918 if (!verity)
919 continue;
920 if (verity->designator >= 0 && verity->designator != PARTITION_ROOT)
921 continue;
922
923 fstype = "verity_hash_signature";
924 rw = false;
925
926 } else if (type.designator == PARTITION_USR) {
927
928 check_partition_flags(node, pflags,
929 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY | SD_GPT_FLAG_GROWFS);
930
931 if (pflags & SD_GPT_FLAG_NO_AUTO)
932 continue;
933
934 /* If a usr ID is specified, ignore everything but the usr id */
935 if (!sd_id128_is_null(usr_uuid) && !sd_id128_equal(usr_uuid, id))
936 continue;
937
938 rw = !(pflags & SD_GPT_FLAG_READ_ONLY);
939 growfs = FLAGS_SET(pflags, SD_GPT_FLAG_GROWFS);
940
941 } else if (type.designator == PARTITION_USR_VERITY) {
942
943 check_partition_flags(node, pflags,
944 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY);
945
946 if (pflags & SD_GPT_FLAG_NO_AUTO)
947 continue;
948
949 m->has_verity = true;
950
951 if (!verity)
952 continue;
953 if (verity->designator >= 0 && verity->designator != PARTITION_USR)
954 continue;
955
956 /* If usr hash is specified, then ignore everything but the usr id */
957 if (!sd_id128_is_null(usr_verity_uuid) && !sd_id128_equal(usr_verity_uuid, id))
958 continue;
959
960 fstype = "DM_verity_hash";
961 rw = false;
962
963 } else if (type.designator == PARTITION_USR_VERITY_SIG) {
964
965 check_partition_flags(node, pflags,
966 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY);
967
968 if (pflags & SD_GPT_FLAG_NO_AUTO)
969 continue;
970
971 m->has_verity_sig = true;
972
973 if (!verity)
974 continue;
975 if (verity->designator >= 0 && verity->designator != PARTITION_USR)
976 continue;
977
978 fstype = "verity_hash_signature";
979 rw = false;
980
981 } else if (type.designator == PARTITION_SWAP) {
982
983 check_partition_flags(node, pflags, SD_GPT_FLAG_NO_AUTO);
984
985 if (pflags & SD_GPT_FLAG_NO_AUTO)
986 continue;
987
988 /* Note: we don't set fstype = "swap" here, because we still need to probe if
989 * it might be encrypted (i.e. fstype "crypt_LUKS") or unencrypted
990 * (i.e. fstype "swap"), and the only way to figure that out is via fstype
991 * probing. */
992
993 /* We don't have a designator for SD_GPT_LINUX_GENERIC so check the UUID instead. */
994 } else if (sd_id128_equal(type.uuid, SD_GPT_LINUX_GENERIC)) {
995
996 check_partition_flags(node, pflags,
997 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY | SD_GPT_FLAG_GROWFS);
998
999 if (pflags & SD_GPT_FLAG_NO_AUTO)
1000 continue;
1001
1002 if (generic_node)
1003 multiple_generic = true;
1004 else {
1005 generic_nr = nr;
1006 generic_rw = !(pflags & SD_GPT_FLAG_READ_ONLY);
1007 generic_growfs = FLAGS_SET(pflags, SD_GPT_FLAG_GROWFS);
1008 generic_uuid = id;
1009 generic_node = TAKE_PTR(node);
1010 }
1011
1012 } else if (type.designator == PARTITION_VAR) {
1013
1014 check_partition_flags(node, pflags,
1015 SD_GPT_FLAG_NO_AUTO | SD_GPT_FLAG_READ_ONLY | SD_GPT_FLAG_GROWFS);
1016
1017 if (pflags & SD_GPT_FLAG_NO_AUTO)
1018 continue;
1019
1020 if (!FLAGS_SET(flags, DISSECT_IMAGE_RELAX_VAR_CHECK)) {
1021 sd_id128_t var_uuid;
1022
1023 /* For /var we insist that the uuid of the partition matches the
1024 * HMAC-SHA256 of the /var GPT partition type uuid, keyed by machine
1025 * ID. Why? Unlike the other partitions /var is inherently
1026 * installation specific, hence we need to be careful not to mount it
1027 * in the wrong installation. By hashing the partition UUID from
1028 * /etc/machine-id we can securely bind the partition to the
1029 * installation. */
1030
1031 r = sd_id128_get_machine_app_specific(SD_GPT_VAR, &var_uuid);
1032 if (r < 0)
1033 return r;
1034
1035 if (!sd_id128_equal(var_uuid, id)) {
1036 log_debug("Found a /var/ partition, but its UUID didn't match our expectations "
1037 "(found: " SD_ID128_UUID_FORMAT_STR ", expected: " SD_ID128_UUID_FORMAT_STR "), ignoring.",
1038 SD_ID128_FORMAT_VAL(id), SD_ID128_FORMAT_VAL(var_uuid));
1039 continue;
1040 }
1041 }
1042
1043 rw = !(pflags & SD_GPT_FLAG_READ_ONLY);
1044 growfs = FLAGS_SET(pflags, SD_GPT_FLAG_GROWFS);
1045 }
1046
1047 if (type.designator != _PARTITION_DESIGNATOR_INVALID) {
1048 _cleanup_free_ char *t = NULL, *o = NULL, *l = NULL, *n = NULL;
1049 _cleanup_close_ int mount_node_fd = -EBADF;
1050 const char *options = NULL;
1051
1052 if (m->partitions[type.designator].found) {
1053 /* For most partition types the first one we see wins. Except for the
1054 * rootfs and /usr, where we do a version compare of the label, and
1055 * let the newest version win. This permits a simple A/B versioning
1056 * scheme in OS images. */
1057
1058 if (compare_arch(type.arch, m->partitions[type.designator].architecture) <= 0)
1059 continue;
1060
1061 if (!partition_designator_is_versioned(type.designator) ||
1062 strverscmp_improved(m->partitions[type.designator].label, label) >= 0)
1063 continue;
1064
1065 dissected_partition_done(m->partitions + type.designator);
1066 }
1067
1068 if (FLAGS_SET(flags, DISSECT_IMAGE_PIN_PARTITION_DEVICES) &&
1069 type.designator != PARTITION_SWAP) {
1070 mount_node_fd = open_partition(node, /* is_partition = */ true, m->loop);
1071 if (mount_node_fd < 0)
1072 return mount_node_fd;
1073 }
1074
1075 r = make_partition_devname(devname, diskseq, nr, flags, &n);
1076 if (r < 0)
1077 return r;
1078
1079 if (fstype) {
1080 t = strdup(fstype);
1081 if (!t)
1082 return -ENOMEM;
1083 }
1084
1085 if (label) {
1086 l = strdup(label);
1087 if (!l)
1088 return -ENOMEM;
1089 }
1090
1091 options = mount_options_from_designator(mount_options, type.designator);
1092 if (options) {
1093 o = strdup(options);
1094 if (!o)
1095 return -ENOMEM;
1096 }
1097
1098 m->partitions[type.designator] = (DissectedPartition) {
1099 .found = true,
1100 .partno = nr,
1101 .rw = rw,
1102 .growfs = growfs,
1103 .architecture = type.arch,
1104 .node = TAKE_PTR(n),
1105 .fstype = TAKE_PTR(t),
1106 .label = TAKE_PTR(l),
1107 .uuid = id,
1108 .mount_options = TAKE_PTR(o),
1109 .mount_node_fd = TAKE_FD(mount_node_fd),
1110 .offset = (uint64_t) start * 512,
1111 .size = (uint64_t) size * 512,
1112 .gpt_flags = pflags,
1113 };
1114 }
1115
1116 } else if (is_mbr) {
1117
1118 switch (blkid_partition_get_type(pp)) {
1119
1120 case 0x83: /* Linux partition */
1121
1122 if (pflags != 0x80) /* Bootable flag */
1123 continue;
1124
1125 if (generic_node)
1126 multiple_generic = true;
1127 else {
1128 generic_nr = nr;
1129 generic_rw = true;
1130 generic_growfs = false;
1131 generic_node = TAKE_PTR(node);
1132 }
1133
1134 break;
1135
1136 case 0xEA: { /* Boot Loader Spec extended $BOOT partition */
1137 _cleanup_close_ int mount_node_fd = -EBADF;
1138 _cleanup_free_ char *o = NULL, *n = NULL;
1139 sd_id128_t id = SD_ID128_NULL;
1140 const char *options = NULL;
1141
1142 /* First one wins */
1143 if (m->partitions[PARTITION_XBOOTLDR].found)
1144 continue;
1145
1146 if (FLAGS_SET(flags, DISSECT_IMAGE_PIN_PARTITION_DEVICES)) {
1147 mount_node_fd = open_partition(node, /* is_partition = */ true, m->loop);
1148 if (mount_node_fd < 0)
1149 return mount_node_fd;
1150 }
1151
1152 (void) blkid_partition_get_uuid_id128(pp, &id);
1153
1154 r = make_partition_devname(devname, diskseq, nr, flags, &n);
1155 if (r < 0)
1156 return r;
1157
1158 options = mount_options_from_designator(mount_options, PARTITION_XBOOTLDR);
1159 if (options) {
1160 o = strdup(options);
1161 if (!o)
1162 return -ENOMEM;
1163 }
1164
1165 m->partitions[PARTITION_XBOOTLDR] = (DissectedPartition) {
1166 .found = true,
1167 .partno = nr,
1168 .rw = true,
1169 .growfs = false,
1170 .architecture = _ARCHITECTURE_INVALID,
1171 .node = TAKE_PTR(n),
1172 .uuid = id,
1173 .mount_options = TAKE_PTR(o),
1174 .mount_node_fd = TAKE_FD(mount_node_fd),
1175 .offset = (uint64_t) start * 512,
1176 .size = (uint64_t) size * 512,
1177 };
1178
1179 break;
1180 }}
1181 }
1182 }
1183
1184 if (!m->partitions[PARTITION_ROOT].found &&
1185 (m->partitions[PARTITION_ROOT_VERITY].found ||
1186 m->partitions[PARTITION_ROOT_VERITY_SIG].found))
1187 return -EADDRNOTAVAIL; /* Verity found but no matching rootfs? Something is off, refuse. */
1188
1189 /* Hmm, we found a signature partition but no Verity data? Something is off. */
1190 if (m->partitions[PARTITION_ROOT_VERITY_SIG].found && !m->partitions[PARTITION_ROOT_VERITY].found)
1191 return -EADDRNOTAVAIL;
1192
1193 if (!m->partitions[PARTITION_USR].found &&
1194 (m->partitions[PARTITION_USR_VERITY].found ||
1195 m->partitions[PARTITION_USR_VERITY_SIG].found))
1196 return -EADDRNOTAVAIL; /* as above */
1197
1198 /* as above */
1199 if (m->partitions[PARTITION_USR_VERITY_SIG].found && !m->partitions[PARTITION_USR_VERITY].found)
1200 return -EADDRNOTAVAIL;
1201
1202 /* If root and /usr are combined then insist that the architecture matches */
1203 if (m->partitions[PARTITION_ROOT].found &&
1204 m->partitions[PARTITION_USR].found &&
1205 (m->partitions[PARTITION_ROOT].architecture >= 0 &&
1206 m->partitions[PARTITION_USR].architecture >= 0 &&
1207 m->partitions[PARTITION_ROOT].architecture != m->partitions[PARTITION_USR].architecture))
1208 return -EADDRNOTAVAIL;
1209
1210 if (!m->partitions[PARTITION_ROOT].found &&
1211 !m->partitions[PARTITION_USR].found &&
1212 (flags & DISSECT_IMAGE_GENERIC_ROOT) &&
1213 (!verity || !verity->root_hash || verity->designator != PARTITION_USR)) {
1214
1215 /* OK, we found nothing usable, then check if there's a single generic partition, and use
1216 * that. If the root hash was set however, then we won't fall back to a generic node, because
1217 * the root hash decides. */
1218
1219 /* If we didn't find a properly marked root partition, but we did find a single suitable
1220 * generic Linux partition, then use this as root partition, if the caller asked for it. */
1221 if (multiple_generic)
1222 return -ENOTUNIQ;
1223
1224 /* If we didn't find a generic node, then we can't fix this up either */
1225 if (generic_node) {
1226 _cleanup_close_ int mount_node_fd = -EBADF;
1227 _cleanup_free_ char *o = NULL, *n = NULL;
1228 const char *options;
1229
1230 if (FLAGS_SET(flags, DISSECT_IMAGE_PIN_PARTITION_DEVICES)) {
1231 mount_node_fd = open_partition(generic_node, /* is_partition = */ true, m->loop);
1232 if (mount_node_fd < 0)
1233 return mount_node_fd;
1234 }
1235
1236 r = make_partition_devname(devname, diskseq, generic_nr, flags, &n);
1237 if (r < 0)
1238 return r;
1239
1240 options = mount_options_from_designator(mount_options, PARTITION_ROOT);
1241 if (options) {
1242 o = strdup(options);
1243 if (!o)
1244 return -ENOMEM;
1245 }
1246
1247 assert(generic_nr >= 0);
1248 m->partitions[PARTITION_ROOT] = (DissectedPartition) {
1249 .found = true,
1250 .rw = generic_rw,
1251 .growfs = generic_growfs,
1252 .partno = generic_nr,
1253 .architecture = _ARCHITECTURE_INVALID,
1254 .node = TAKE_PTR(n),
1255 .uuid = generic_uuid,
1256 .mount_options = TAKE_PTR(o),
1257 .mount_node_fd = TAKE_FD(mount_node_fd),
1258 .offset = UINT64_MAX,
1259 .size = UINT64_MAX,
1260 };
1261 }
1262 }
1263
1264 /* Check if we have a root fs if we are told to do check. /usr alone is fine too, but only if appropriate flag for that is set too */
1265 if (FLAGS_SET(flags, DISSECT_IMAGE_REQUIRE_ROOT) &&
1266 !(m->partitions[PARTITION_ROOT].found || (m->partitions[PARTITION_USR].found && FLAGS_SET(flags, DISSECT_IMAGE_USR_NO_ROOT))))
1267 return -ENXIO;
1268
1269 if (m->partitions[PARTITION_ROOT_VERITY].found) {
1270 /* We only support one verity partition per image, i.e. can't do for both /usr and root fs */
1271 if (m->partitions[PARTITION_USR_VERITY].found)
1272 return -ENOTUNIQ;
1273
1274 /* We don't support verity enabled root with a split out /usr. Neither with nor without
1275 * verity there. (Note that we do support verity-less root with verity-full /usr, though.) */
1276 if (m->partitions[PARTITION_USR].found)
1277 return -EADDRNOTAVAIL;
1278 }
1279
1280 if (verity) {
1281 /* If a verity designator is specified, then insist that the matching partition exists */
1282 if (verity->designator >= 0 && !m->partitions[verity->designator].found)
1283 return -EADDRNOTAVAIL;
1284
1285 bool have_verity_sig_partition =
1286 m->partitions[verity->designator == PARTITION_USR ? PARTITION_USR_VERITY_SIG : PARTITION_ROOT_VERITY_SIG].found;
1287
1288 if (verity->root_hash) {
1289 /* If we have an explicit root hash and found the partitions for it, then we are ready to use
1290 * Verity, set things up for it */
1291
1292 if (verity->designator < 0 || verity->designator == PARTITION_ROOT) {
1293 if (!m->partitions[PARTITION_ROOT_VERITY].found || !m->partitions[PARTITION_ROOT].found)
1294 return -EADDRNOTAVAIL;
1295
1296 /* If we found a verity setup, then the root partition is necessarily read-only. */
1297 m->partitions[PARTITION_ROOT].rw = false;
1298 m->verity_ready = true;
1299
1300 } else {
1301 assert(verity->designator == PARTITION_USR);
1302
1303 if (!m->partitions[PARTITION_USR_VERITY].found || !m->partitions[PARTITION_USR].found)
1304 return -EADDRNOTAVAIL;
1305
1306 m->partitions[PARTITION_USR].rw = false;
1307 m->verity_ready = true;
1308 }
1309
1310 if (m->verity_ready)
1311 m->verity_sig_ready = verity->root_hash_sig || have_verity_sig_partition;
1312
1313 } else if (have_verity_sig_partition) {
1314
1315 /* If we found an embedded signature partition, we are ready, too. */
1316
1317 m->verity_ready = m->verity_sig_ready = true;
1318 m->partitions[verity->designator == PARTITION_USR ? PARTITION_USR : PARTITION_ROOT].rw = false;
1319 }
1320 }
1321
1322 r = dissected_image_probe_filesystems(m, fd);
1323 if (r < 0)
1324 return r;
1325
1326 return 0;
1327 }
1328 #endif
1329
1330 int dissect_image_file(
1331 const char *path,
1332 const VeritySettings *verity,
1333 const MountOptions *mount_options,
1334 DissectImageFlags flags,
1335 DissectedImage **ret) {
1336
1337 #if HAVE_BLKID
1338 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
1339 _cleanup_close_ int fd = -EBADF;
1340 int r;
1341
1342 assert(path);
1343 assert(ret);
1344
1345 fd = open(path, O_RDONLY|O_CLOEXEC|O_NONBLOCK|O_NOCTTY);
1346 if (fd < 0)
1347 return -errno;
1348
1349 r = fd_verify_regular(fd);
1350 if (r < 0)
1351 return r;
1352
1353 r = dissected_image_new(path, &m);
1354 if (r < 0)
1355 return r;
1356
1357 r = probe_sector_size(fd, &m->sector_size);
1358 if (r < 0)
1359 return r;
1360
1361 r = dissect_image(m, fd, path, verity, mount_options, flags);
1362 if (r < 0)
1363 return r;
1364
1365 *ret = TAKE_PTR(m);
1366 return 0;
1367 #else
1368 return -EOPNOTSUPP;
1369 #endif
1370 }
1371
1372 DissectedImage* dissected_image_unref(DissectedImage *m) {
1373 if (!m)
1374 return NULL;
1375
1376 /* First, clear dissected partitions. */
1377 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++)
1378 dissected_partition_done(m->partitions + i);
1379
1380 /* Second, free decrypted images. This must be after dissected_partition_done(), as freeing
1381 * DecryptedImage may try to deactivate partitions. */
1382 decrypted_image_unref(m->decrypted_image);
1383
1384 /* Third, unref LoopDevice. This must be called after the above two, as freeing LoopDevice may try to
1385 * remove existing partitions on the loopback block device. */
1386 loop_device_unref(m->loop);
1387
1388 free(m->image_name);
1389 free(m->hostname);
1390 strv_free(m->machine_info);
1391 strv_free(m->os_release);
1392 strv_free(m->initrd_release);
1393 strv_free(m->extension_release);
1394
1395 return mfree(m);
1396 }
1397
1398 static int is_loop_device(const char *path) {
1399 char s[SYS_BLOCK_PATH_MAX("/../loop/")];
1400 struct stat st;
1401
1402 assert(path);
1403
1404 if (stat(path, &st) < 0)
1405 return -errno;
1406
1407 if (!S_ISBLK(st.st_mode))
1408 return -ENOTBLK;
1409
1410 xsprintf_sys_block_path(s, "/loop/", st.st_dev);
1411 if (access(s, F_OK) < 0) {
1412 if (errno != ENOENT)
1413 return -errno;
1414
1415 /* The device itself isn't a loop device, but maybe it's a partition and its parent is? */
1416 xsprintf_sys_block_path(s, "/../loop/", st.st_dev);
1417 if (access(s, F_OK) < 0)
1418 return errno == ENOENT ? false : -errno;
1419 }
1420
1421 return true;
1422 }
1423
1424 static int run_fsck(int node_fd, const char *fstype) {
1425 int r, exit_status;
1426 pid_t pid;
1427
1428 assert(node_fd >= 0);
1429 assert(fstype);
1430
1431 r = fsck_exists_for_fstype(fstype);
1432 if (r < 0) {
1433 log_debug_errno(r, "Couldn't determine whether fsck for %s exists, proceeding anyway.", fstype);
1434 return 0;
1435 }
1436 if (r == 0) {
1437 log_debug("Not checking partition %s, as fsck for %s does not exist.", FORMAT_PROC_FD_PATH(node_fd), fstype);
1438 return 0;
1439 }
1440
1441 r = safe_fork_full(
1442 "(fsck)",
1443 NULL,
1444 &node_fd, 1, /* Leave the node fd open */
1445 FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_RLIMIT_NOFILE_SAFE|FORK_DEATHSIG|FORK_REARRANGE_STDIO|FORK_CLOEXEC_OFF,
1446 &pid);
1447 if (r < 0)
1448 return log_debug_errno(r, "Failed to fork off fsck: %m");
1449 if (r == 0) {
1450 /* Child */
1451 execl("/sbin/fsck", "/sbin/fsck", "-aT", FORMAT_PROC_FD_PATH(node_fd), NULL);
1452 log_open();
1453 log_debug_errno(errno, "Failed to execl() fsck: %m");
1454 _exit(FSCK_OPERATIONAL_ERROR);
1455 }
1456
1457 exit_status = wait_for_terminate_and_check("fsck", pid, 0);
1458 if (exit_status < 0)
1459 return log_debug_errno(exit_status, "Failed to fork off /sbin/fsck: %m");
1460
1461 if ((exit_status & ~FSCK_ERROR_CORRECTED) != FSCK_SUCCESS) {
1462 log_debug("fsck failed with exit status %i.", exit_status);
1463
1464 if ((exit_status & (FSCK_SYSTEM_SHOULD_REBOOT|FSCK_ERRORS_LEFT_UNCORRECTED)) != 0)
1465 return log_debug_errno(SYNTHETIC_ERRNO(EUCLEAN), "File system is corrupted, refusing.");
1466
1467 log_debug("Ignoring fsck error.");
1468 }
1469
1470 return 0;
1471 }
1472
1473 static int fs_grow(const char *node_path, const char *mount_path) {
1474 _cleanup_close_ int mount_fd = -EBADF, node_fd = -EBADF;
1475 uint64_t size, newsize;
1476 int r;
1477
1478 node_fd = open(node_path, O_RDONLY|O_CLOEXEC|O_NONBLOCK|O_NOCTTY);
1479 if (node_fd < 0)
1480 return log_debug_errno(errno, "Failed to open node device %s: %m", node_path);
1481
1482 if (ioctl(node_fd, BLKGETSIZE64, &size) != 0)
1483 return log_debug_errno(errno, "Failed to get block device size of %s: %m", node_path);
1484
1485 mount_fd = open(mount_path, O_RDONLY|O_DIRECTORY|O_CLOEXEC);
1486 if (mount_fd < 0)
1487 return log_debug_errno(errno, "Failed to open mountd file system %s: %m", mount_path);
1488
1489 log_debug("Resizing \"%s\" to %"PRIu64" bytes...", mount_path, size);
1490 r = resize_fs(mount_fd, size, &newsize);
1491 if (r < 0)
1492 return log_debug_errno(r, "Failed to resize \"%s\" to %"PRIu64" bytes: %m", mount_path, size);
1493
1494 if (newsize == size)
1495 log_debug("Successfully resized \"%s\" to %s bytes.",
1496 mount_path, FORMAT_BYTES(newsize));
1497 else {
1498 assert(newsize < size);
1499 log_debug("Successfully resized \"%s\" to %s bytes (%"PRIu64" bytes lost due to blocksize).",
1500 mount_path, FORMAT_BYTES(newsize), size - newsize);
1501 }
1502
1503 return 0;
1504 }
1505
1506 int partition_pick_mount_options(
1507 PartitionDesignator d,
1508 const char *fstype,
1509 bool rw,
1510 bool discard,
1511 char **ret_options,
1512 unsigned long *ret_ms_flags) {
1513
1514 _cleanup_free_ char *options = NULL;
1515
1516 assert(ret_options);
1517
1518 /* Selects a baseline of bind mount flags, that should always apply.
1519 *
1520 * Firstly, we set MS_NODEV universally on all mounts, since we don't want to allow device nodes outside of /dev/.
1521 *
1522 * On /var/tmp/ we'll also set MS_NOSUID, same as we set for /tmp/ on the host.
1523 *
1524 * On the ESP and XBOOTLDR partitions we'll also disable symlinks, and execution. These file systems
1525 * are generally untrusted (i.e. not encrypted or authenticated), and typically VFAT hence we should
1526 * be as restrictive as possible, and this shouldn't hurt, since the functionality is not available
1527 * there anyway. */
1528
1529 unsigned long flags = MS_NODEV;
1530
1531 if (!rw)
1532 flags |= MS_RDONLY;
1533
1534 switch (d) {
1535
1536 case PARTITION_ESP:
1537 case PARTITION_XBOOTLDR:
1538 flags |= MS_NOSUID|MS_NOEXEC|ms_nosymfollow_supported();
1539
1540 if (!fstype || streq(fstype, "vfat"))
1541 if (!strextend_with_separator(&options, ",", "umask=0077"))
1542 return -ENOMEM;
1543 break;
1544
1545 case PARTITION_TMP:
1546 flags |= MS_NOSUID;
1547 break;
1548
1549 default:
1550 break;
1551 }
1552
1553 /* So, when you request MS_RDONLY from ext4, then this means nothing. It happily still writes to the
1554 * backing storage. What's worse, the BLKRO[GS]ET flag and (in case of loopback devices)
1555 * LO_FLAGS_READ_ONLY don't mean anything, they affect userspace accesses only, and write accesses
1556 * from the upper file system still get propagated through to the underlying file system,
1557 * unrestricted. To actually get ext4/xfs/btrfs to stop writing to the device we need to specify
1558 * "norecovery" as mount option, in addition to MS_RDONLY. Yes, this sucks, since it means we need to
1559 * carry a per file system table here.
1560 *
1561 * Note that this means that we might not be able to mount corrupted file systems as read-only
1562 * anymore (since in some cases the kernel implementations will refuse mounting when corrupted,
1563 * read-only and "norecovery" is specified). But I think for the case of automatically determined
1564 * mount options for loopback devices this is the right choice, since otherwise using the same
1565 * loopback file twice even in read-only mode, is going to fail badly sooner or later. The usecase of
1566 * making reuse of the immutable images "just work" is more relevant to us than having read-only
1567 * access that actually modifies stuff work on such image files. Or to say this differently: if
1568 * people want their file systems to be fixed up they should just open them in writable mode, where
1569 * all these problems don't exist. */
1570 if (!rw && STRPTR_IN_SET(fstype, "ext3", "ext4", "xfs", "btrfs"))
1571 if (!strextend_with_separator(&options, ",", "norecovery"))
1572 return -ENOMEM;
1573
1574 if (discard && fstype && fstype_can_discard(fstype))
1575 if (!strextend_with_separator(&options, ",", "discard"))
1576 return -ENOMEM;
1577
1578 if (!ret_ms_flags) /* Fold flags into option string if ret_flags specified as NULL */
1579 if (!strextend_with_separator(&options, ",",
1580 FLAGS_SET(flags, MS_RDONLY) ? "ro" : "rw",
1581 FLAGS_SET(flags, MS_NODEV) ? "nodev" : "dev",
1582 FLAGS_SET(flags, MS_NOSUID) ? "nosuid" : "suid",
1583 FLAGS_SET(flags, MS_NOEXEC) ? "noexec" : "exec",
1584 FLAGS_SET(flags, MS_NOSYMFOLLOW) ? "nosymfollow" : NULL))
1585 /* NB: we suppress 'symfollow' here, since it's the default, and old /bin/mount might not know it */
1586 return -ENOMEM;
1587
1588 if (ret_ms_flags)
1589 *ret_ms_flags = flags;
1590
1591 *ret_options = TAKE_PTR(options);
1592 return 0;
1593 }
1594
1595 static int mount_partition(
1596 PartitionDesignator d,
1597 DissectedPartition *m,
1598 const char *where,
1599 const char *directory,
1600 uid_t uid_shift,
1601 uid_t uid_range,
1602 DissectImageFlags flags) {
1603
1604 _cleanup_free_ char *chased = NULL, *options = NULL;
1605 bool rw, discard, remap_uid_gid = false;
1606 const char *p, *node, *fstype;
1607 unsigned long ms_flags;
1608 int r;
1609
1610 assert(m);
1611 assert(where);
1612
1613 if (m->mount_node_fd < 0)
1614 return 0;
1615
1616 /* Use decrypted node and matching fstype if available, otherwise use the original device */
1617 node = FORMAT_PROC_FD_PATH(m->mount_node_fd);
1618 fstype = dissected_partition_fstype(m);
1619
1620 if (!fstype)
1621 return -EAFNOSUPPORT;
1622 r = dissect_fstype_ok(fstype);
1623 if (r < 0)
1624 return r;
1625 if (!r)
1626 return -EIDRM; /* Recognizable error */
1627
1628 /* We are looking at an encrypted partition? This either means stacked encryption, or the caller
1629 * didn't call dissected_image_decrypt() beforehand. Let's return a recognizable error for this
1630 * case. */
1631 if (streq(fstype, "crypto_LUKS"))
1632 return -EUNATCH;
1633
1634 rw = m->rw && !(flags & DISSECT_IMAGE_MOUNT_READ_ONLY);
1635
1636 discard = ((flags & DISSECT_IMAGE_DISCARD) ||
1637 ((flags & DISSECT_IMAGE_DISCARD_ON_LOOP) && is_loop_device(m->node) > 0));
1638
1639 if (FLAGS_SET(flags, DISSECT_IMAGE_FSCK) && rw) {
1640 r = run_fsck(m->mount_node_fd, fstype);
1641 if (r < 0)
1642 return r;
1643 }
1644
1645 if (directory) {
1646 /* Automatically create missing mount points inside the image, if necessary. */
1647 r = mkdir_p_root(where, directory, uid_shift, (gid_t) uid_shift, 0755);
1648 if (r < 0 && r != -EROFS)
1649 return r;
1650
1651 r = chase_symlinks(directory, where, CHASE_PREFIX_ROOT, &chased, NULL);
1652 if (r < 0)
1653 return r;
1654
1655 p = chased;
1656 } else {
1657 /* Create top-level mount if missing – but only if this is asked for. This won't modify the
1658 * image (as the branch above does) but the host hierarchy, and the created directory might
1659 * survive our mount in the host hierarchy hence. */
1660 if (FLAGS_SET(flags, DISSECT_IMAGE_MKDIR)) {
1661 r = mkdir_p(where, 0755);
1662 if (r < 0)
1663 return r;
1664 }
1665
1666 p = where;
1667 }
1668
1669 r = partition_pick_mount_options(d, dissected_partition_fstype(m), rw, discard, &options, &ms_flags);
1670 if (r < 0)
1671 return r;
1672
1673 if (uid_is_valid(uid_shift) && uid_shift != 0) {
1674
1675 if (fstype_can_uid_gid(fstype)) {
1676 _cleanup_free_ char *uid_option = NULL;
1677
1678 if (asprintf(&uid_option, "uid=" UID_FMT ",gid=" GID_FMT, uid_shift, (gid_t) uid_shift) < 0)
1679 return -ENOMEM;
1680
1681 if (!strextend_with_separator(&options, ",", uid_option))
1682 return -ENOMEM;
1683 } else if (FLAGS_SET(flags, DISSECT_IMAGE_MOUNT_IDMAPPED))
1684 remap_uid_gid = true;
1685 }
1686
1687 if (!isempty(m->mount_options))
1688 if (!strextend_with_separator(&options, ",", m->mount_options))
1689 return -ENOMEM;
1690
1691 r = mount_nofollow_verbose(LOG_DEBUG, node, p, fstype, ms_flags, options);
1692 if (r < 0)
1693 return r;
1694
1695 if (rw && m->growfs && FLAGS_SET(flags, DISSECT_IMAGE_GROWFS))
1696 (void) fs_grow(node, p);
1697
1698 if (remap_uid_gid) {
1699 r = remount_idmap(p, uid_shift, uid_range, UID_INVALID, REMOUNT_IDMAPPING_HOST_ROOT);
1700 if (r < 0)
1701 return r;
1702 }
1703
1704 return 1;
1705 }
1706
1707 static int mount_root_tmpfs(const char *where, uid_t uid_shift, DissectImageFlags flags) {
1708 _cleanup_free_ char *options = NULL;
1709 int r;
1710
1711 assert(where);
1712
1713 /* For images that contain /usr/ but no rootfs, let's mount rootfs as tmpfs */
1714
1715 if (FLAGS_SET(flags, DISSECT_IMAGE_MKDIR)) {
1716 r = mkdir_p(where, 0755);
1717 if (r < 0)
1718 return r;
1719 }
1720
1721 if (uid_is_valid(uid_shift)) {
1722 if (asprintf(&options, "uid=" UID_FMT ",gid=" GID_FMT, uid_shift, (gid_t) uid_shift) < 0)
1723 return -ENOMEM;
1724 }
1725
1726 r = mount_nofollow_verbose(LOG_DEBUG, "rootfs", where, "tmpfs", MS_NODEV, options);
1727 if (r < 0)
1728 return r;
1729
1730 return 1;
1731 }
1732
1733 int dissected_image_mount(
1734 DissectedImage *m,
1735 const char *where,
1736 uid_t uid_shift,
1737 uid_t uid_range,
1738 DissectImageFlags flags) {
1739
1740 int r, xbootldr_mounted;
1741
1742 assert(m);
1743 assert(where);
1744
1745 /* Returns:
1746 *
1747 * -ENXIO → No root partition found
1748 * -EMEDIUMTYPE → DISSECT_IMAGE_VALIDATE_OS set but no os-release/extension-release file found
1749 * -EUNATCH → Encrypted partition found for which no dm-crypt was set up yet
1750 * -EUCLEAN → fsck for file system failed
1751 * -EBUSY → File system already mounted/used elsewhere (kernel)
1752 * -EAFNOSUPPORT → File system type not supported or not known
1753 * -EIDRM → File system is not among allowlisted "common" file systems
1754 */
1755
1756 if (!(m->partitions[PARTITION_ROOT].found ||
1757 (m->partitions[PARTITION_USR].found && FLAGS_SET(flags, DISSECT_IMAGE_USR_NO_ROOT))))
1758 return -ENXIO; /* Require a root fs or at least a /usr/ fs (the latter is subject to a flag of its own) */
1759
1760 if ((flags & DISSECT_IMAGE_MOUNT_NON_ROOT_ONLY) == 0) {
1761
1762 /* First mount the root fs. If there's none we use a tmpfs. */
1763 if (m->partitions[PARTITION_ROOT].found)
1764 r = mount_partition(PARTITION_ROOT, m->partitions + PARTITION_ROOT, where, NULL, uid_shift, uid_range, flags);
1765 else
1766 r = mount_root_tmpfs(where, uid_shift, flags);
1767 if (r < 0)
1768 return r;
1769
1770 /* For us mounting root always means mounting /usr as well */
1771 r = mount_partition(PARTITION_USR, m->partitions + PARTITION_USR, where, "/usr", uid_shift, uid_range, flags);
1772 if (r < 0)
1773 return r;
1774
1775 if ((flags & (DISSECT_IMAGE_VALIDATE_OS|DISSECT_IMAGE_VALIDATE_OS_EXT)) != 0) {
1776 /* If either one of the validation flags are set, ensure that the image qualifies
1777 * as one or the other (or both). */
1778 bool ok = false;
1779
1780 if (FLAGS_SET(flags, DISSECT_IMAGE_VALIDATE_OS)) {
1781 r = path_is_os_tree(where);
1782 if (r < 0)
1783 return r;
1784 if (r > 0)
1785 ok = true;
1786 }
1787 if (!ok && FLAGS_SET(flags, DISSECT_IMAGE_VALIDATE_OS_EXT)) {
1788 r = path_is_extension_tree(where, m->image_name, FLAGS_SET(flags, DISSECT_IMAGE_RELAX_SYSEXT_CHECK));
1789 if (r < 0)
1790 return r;
1791 if (r > 0)
1792 ok = true;
1793 }
1794
1795 if (!ok)
1796 return -ENOMEDIUM;
1797 }
1798 }
1799
1800 if (flags & DISSECT_IMAGE_MOUNT_ROOT_ONLY)
1801 return 0;
1802
1803 r = mount_partition(PARTITION_HOME, m->partitions + PARTITION_HOME, where, "/home", uid_shift, uid_range, flags);
1804 if (r < 0)
1805 return r;
1806
1807 r = mount_partition(PARTITION_SRV, m->partitions + PARTITION_SRV, where, "/srv", uid_shift, uid_range, flags);
1808 if (r < 0)
1809 return r;
1810
1811 r = mount_partition(PARTITION_VAR, m->partitions + PARTITION_VAR, where, "/var", uid_shift, uid_range, flags);
1812 if (r < 0)
1813 return r;
1814
1815 r = mount_partition(PARTITION_TMP, m->partitions + PARTITION_TMP, where, "/var/tmp", uid_shift, uid_range, flags);
1816 if (r < 0)
1817 return r;
1818
1819 xbootldr_mounted = mount_partition(PARTITION_XBOOTLDR, m->partitions + PARTITION_XBOOTLDR, where, "/boot", uid_shift, uid_range, flags);
1820 if (xbootldr_mounted < 0)
1821 return xbootldr_mounted;
1822
1823 if (m->partitions[PARTITION_ESP].found) {
1824 int esp_done = false;
1825
1826 /* Mount the ESP to /efi if it exists. If it doesn't exist, use /boot instead, but only if it
1827 * exists and is empty, and we didn't already mount the XBOOTLDR partition into it. */
1828
1829 r = chase_symlinks("/efi", where, CHASE_PREFIX_ROOT, NULL, NULL);
1830 if (r < 0) {
1831 if (r != -ENOENT)
1832 return r;
1833
1834 /* /efi doesn't exist. Let's see if /boot is suitable then */
1835
1836 if (!xbootldr_mounted) {
1837 _cleanup_free_ char *p = NULL;
1838
1839 r = chase_symlinks("/boot", where, CHASE_PREFIX_ROOT, &p, NULL);
1840 if (r < 0) {
1841 if (r != -ENOENT)
1842 return r;
1843 } else if (dir_is_empty(p, /* ignore_hidden_or_backup= */ false) > 0) {
1844 /* It exists and is an empty directory. Let's mount the ESP there. */
1845 r = mount_partition(PARTITION_ESP, m->partitions + PARTITION_ESP, where, "/boot", uid_shift, uid_range, flags);
1846 if (r < 0)
1847 return r;
1848
1849 esp_done = true;
1850 }
1851 }
1852 }
1853
1854 if (!esp_done) {
1855 /* OK, let's mount the ESP now to /efi (possibly creating the dir if missing) */
1856
1857 r = mount_partition(PARTITION_ESP, m->partitions + PARTITION_ESP, where, "/efi", uid_shift, uid_range, flags);
1858 if (r < 0)
1859 return r;
1860 }
1861 }
1862
1863 return 0;
1864 }
1865
1866 int dissected_image_mount_and_warn(
1867 DissectedImage *m,
1868 const char *where,
1869 uid_t uid_shift,
1870 uid_t uid_range,
1871 DissectImageFlags flags) {
1872
1873 int r;
1874
1875 assert(m);
1876 assert(where);
1877
1878 r = dissected_image_mount(m, where, uid_shift, uid_range, flags);
1879 if (r == -ENXIO)
1880 return log_error_errno(r, "Not root file system found in image.");
1881 if (r == -EMEDIUMTYPE)
1882 return log_error_errno(r, "No suitable os-release/extension-release file in image found.");
1883 if (r == -EUNATCH)
1884 return log_error_errno(r, "Encrypted file system discovered, but decryption not requested.");
1885 if (r == -EUCLEAN)
1886 return log_error_errno(r, "File system check on image failed.");
1887 if (r == -EBUSY)
1888 return log_error_errno(r, "File system already mounted elsewhere.");
1889 if (r == -EAFNOSUPPORT)
1890 return log_error_errno(r, "File system type not supported or not known.");
1891 if (r == -EIDRM)
1892 return log_error_errno(r, "File system is too uncommon, refused.");
1893 if (r < 0)
1894 return log_error_errno(r, "Failed to mount image: %m");
1895
1896 return r;
1897 }
1898
1899 #if HAVE_LIBCRYPTSETUP
1900 struct DecryptedPartition {
1901 struct crypt_device *device;
1902 char *name;
1903 bool relinquished;
1904 };
1905 #endif
1906
1907 typedef struct DecryptedPartition DecryptedPartition;
1908
1909 struct DecryptedImage {
1910 unsigned n_ref;
1911 DecryptedPartition *decrypted;
1912 size_t n_decrypted;
1913 };
1914
1915 static DecryptedImage* decrypted_image_free(DecryptedImage *d) {
1916 #if HAVE_LIBCRYPTSETUP
1917 int r;
1918
1919 if (!d)
1920 return NULL;
1921
1922 for (size_t i = 0; i < d->n_decrypted; i++) {
1923 DecryptedPartition *p = d->decrypted + i;
1924
1925 if (p->device && p->name && !p->relinquished) {
1926 _cleanup_free_ char *node = NULL;
1927
1928 node = path_join("/dev/mapper", p->name);
1929 if (node) {
1930 r = btrfs_forget_device(node);
1931 if (r < 0 && r != -ENOENT)
1932 log_debug_errno(r, "Failed to forget btrfs device %s, ignoring: %m", node);
1933 } else
1934 log_oom_debug();
1935
1936 /* Let's deactivate lazily, as the dm volume may be already/still used by other processes. */
1937 r = sym_crypt_deactivate_by_name(p->device, p->name, CRYPT_DEACTIVATE_DEFERRED);
1938 if (r < 0)
1939 log_debug_errno(r, "Failed to deactivate encrypted partition %s", p->name);
1940 }
1941
1942 if (p->device)
1943 sym_crypt_free(p->device);
1944 free(p->name);
1945 }
1946
1947 free(d->decrypted);
1948 free(d);
1949 #endif
1950 return NULL;
1951 }
1952
1953 DEFINE_TRIVIAL_REF_UNREF_FUNC(DecryptedImage, decrypted_image, decrypted_image_free);
1954
1955 #if HAVE_LIBCRYPTSETUP
1956 static int decrypted_image_new(DecryptedImage **ret) {
1957 _cleanup_(decrypted_image_unrefp) DecryptedImage *d = NULL;
1958
1959 assert(ret);
1960
1961 d = new(DecryptedImage, 1);
1962 if (!d)
1963 return -ENOMEM;
1964
1965 *d = (DecryptedImage) {
1966 .n_ref = 1,
1967 };
1968
1969 *ret = TAKE_PTR(d);
1970 return 0;
1971 }
1972
1973 static int make_dm_name_and_node(const void *original_node, const char *suffix, char **ret_name, char **ret_node) {
1974 _cleanup_free_ char *name = NULL, *node = NULL;
1975 const char *base;
1976
1977 assert(original_node);
1978 assert(suffix);
1979 assert(ret_name);
1980 assert(ret_node);
1981
1982 base = strrchr(original_node, '/');
1983 if (!base)
1984 base = original_node;
1985 else
1986 base++;
1987 if (isempty(base))
1988 return -EINVAL;
1989
1990 name = strjoin(base, suffix);
1991 if (!name)
1992 return -ENOMEM;
1993 if (!filename_is_valid(name))
1994 return -EINVAL;
1995
1996 node = path_join(sym_crypt_get_dir(), name);
1997 if (!node)
1998 return -ENOMEM;
1999
2000 *ret_name = TAKE_PTR(name);
2001 *ret_node = TAKE_PTR(node);
2002
2003 return 0;
2004 }
2005
2006 static int decrypt_partition(
2007 DissectedPartition *m,
2008 const char *passphrase,
2009 DissectImageFlags flags,
2010 DecryptedImage *d) {
2011
2012 _cleanup_free_ char *node = NULL, *name = NULL;
2013 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
2014 _cleanup_close_ int fd = -EBADF;
2015 int r;
2016
2017 assert(m);
2018 assert(d);
2019
2020 if (!m->found || !m->node || !m->fstype)
2021 return 0;
2022
2023 if (!streq(m->fstype, "crypto_LUKS"))
2024 return 0;
2025
2026 if (!passphrase)
2027 return -ENOKEY;
2028
2029 r = dlopen_cryptsetup();
2030 if (r < 0)
2031 return r;
2032
2033 r = make_dm_name_and_node(m->node, "-decrypted", &name, &node);
2034 if (r < 0)
2035 return r;
2036
2037 if (!GREEDY_REALLOC0(d->decrypted, d->n_decrypted + 1))
2038 return -ENOMEM;
2039
2040 r = sym_crypt_init(&cd, m->node);
2041 if (r < 0)
2042 return log_debug_errno(r, "Failed to initialize dm-crypt: %m");
2043
2044 cryptsetup_enable_logging(cd);
2045
2046 r = sym_crypt_load(cd, CRYPT_LUKS, NULL);
2047 if (r < 0)
2048 return log_debug_errno(r, "Failed to load LUKS metadata: %m");
2049
2050 r = sym_crypt_activate_by_passphrase(cd, name, CRYPT_ANY_SLOT, passphrase, strlen(passphrase),
2051 ((flags & DISSECT_IMAGE_DEVICE_READ_ONLY) ? CRYPT_ACTIVATE_READONLY : 0) |
2052 ((flags & DISSECT_IMAGE_DISCARD_ON_CRYPTO) ? CRYPT_ACTIVATE_ALLOW_DISCARDS : 0));
2053 if (r < 0) {
2054 log_debug_errno(r, "Failed to activate LUKS device: %m");
2055 return r == -EPERM ? -EKEYREJECTED : r;
2056 }
2057
2058 fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY);
2059 if (fd < 0)
2060 return log_debug_errno(errno, "Failed to open %s: %m", node);
2061
2062 d->decrypted[d->n_decrypted++] = (DecryptedPartition) {
2063 .name = TAKE_PTR(name),
2064 .device = TAKE_PTR(cd),
2065 };
2066
2067 m->decrypted_node = TAKE_PTR(node);
2068 close_and_replace(m->mount_node_fd, fd);
2069
2070 return 0;
2071 }
2072
2073 static int verity_can_reuse(
2074 const VeritySettings *verity,
2075 const char *name,
2076 struct crypt_device **ret_cd) {
2077
2078 /* If the same volume was already open, check that the root hashes match, and reuse it if they do */
2079 _cleanup_free_ char *root_hash_existing = NULL;
2080 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
2081 struct crypt_params_verity crypt_params = {};
2082 size_t root_hash_existing_size;
2083 int r;
2084
2085 assert(verity);
2086 assert(name);
2087 assert(ret_cd);
2088
2089 r = sym_crypt_init_by_name(&cd, name);
2090 if (r < 0)
2091 return log_debug_errno(r, "Error opening verity device, crypt_init_by_name failed: %m");
2092
2093 cryptsetup_enable_logging(cd);
2094
2095 r = sym_crypt_get_verity_info(cd, &crypt_params);
2096 if (r < 0)
2097 return log_debug_errno(r, "Error opening verity device, crypt_get_verity_info failed: %m");
2098
2099 root_hash_existing_size = verity->root_hash_size;
2100 root_hash_existing = malloc0(root_hash_existing_size);
2101 if (!root_hash_existing)
2102 return -ENOMEM;
2103
2104 r = sym_crypt_volume_key_get(cd, CRYPT_ANY_SLOT, root_hash_existing, &root_hash_existing_size, NULL, 0);
2105 if (r < 0)
2106 return log_debug_errno(r, "Error opening verity device, crypt_volume_key_get failed: %m");
2107 if (verity->root_hash_size != root_hash_existing_size ||
2108 memcmp(root_hash_existing, verity->root_hash, verity->root_hash_size) != 0)
2109 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Error opening verity device, it already exists but root hashes are different.");
2110
2111 #if HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY
2112 /* Ensure that, if signatures are supported, we only reuse the device if the previous mount used the
2113 * same settings, so that a previous unsigned mount will not be reused if the user asks to use
2114 * signing for the new one, and vice versa. */
2115 if (!!verity->root_hash_sig != !!(crypt_params.flags & CRYPT_VERITY_ROOT_HASH_SIGNATURE))
2116 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Error opening verity device, it already exists but signature settings are not the same.");
2117 #endif
2118
2119 *ret_cd = TAKE_PTR(cd);
2120 return 0;
2121 }
2122
2123 static inline char* dm_deferred_remove_clean(char *name) {
2124 if (!name)
2125 return NULL;
2126
2127 (void) sym_crypt_deactivate_by_name(NULL, name, CRYPT_DEACTIVATE_DEFERRED);
2128 return mfree(name);
2129 }
2130 DEFINE_TRIVIAL_CLEANUP_FUNC(char *, dm_deferred_remove_clean);
2131
2132 static int validate_signature_userspace(const VeritySettings *verity) {
2133 #if HAVE_OPENSSL
2134 _cleanup_(sk_X509_free_allp) STACK_OF(X509) *sk = NULL;
2135 _cleanup_strv_free_ char **certs = NULL;
2136 _cleanup_(PKCS7_freep) PKCS7 *p7 = NULL;
2137 _cleanup_free_ char *s = NULL;
2138 _cleanup_(BIO_freep) BIO *bio = NULL; /* 'bio' must be freed first, 's' second, hence keep this order
2139 * of declaration in place, please */
2140 const unsigned char *d;
2141 int r;
2142
2143 assert(verity);
2144 assert(verity->root_hash);
2145 assert(verity->root_hash_sig);
2146
2147 /* Because installing a signature certificate into the kernel chain is so messy, let's optionally do
2148 * userspace validation. */
2149
2150 r = conf_files_list_nulstr(&certs, ".crt", NULL, CONF_FILES_REGULAR|CONF_FILES_FILTER_MASKED, CONF_PATHS_NULSTR("verity.d"));
2151 if (r < 0)
2152 return log_debug_errno(r, "Failed to enumerate certificates: %m");
2153 if (strv_isempty(certs)) {
2154 log_debug("No userspace dm-verity certificates found.");
2155 return 0;
2156 }
2157
2158 d = verity->root_hash_sig;
2159 p7 = d2i_PKCS7(NULL, &d, (long) verity->root_hash_sig_size);
2160 if (!p7)
2161 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to parse PKCS7 DER signature data.");
2162
2163 s = hexmem(verity->root_hash, verity->root_hash_size);
2164 if (!s)
2165 return log_oom_debug();
2166
2167 bio = BIO_new_mem_buf(s, strlen(s));
2168 if (!bio)
2169 return log_oom_debug();
2170
2171 sk = sk_X509_new_null();
2172 if (!sk)
2173 return log_oom_debug();
2174
2175 STRV_FOREACH(i, certs) {
2176 _cleanup_(X509_freep) X509 *c = NULL;
2177 _cleanup_fclose_ FILE *f = NULL;
2178
2179 f = fopen(*i, "re");
2180 if (!f) {
2181 log_debug_errno(errno, "Failed to open '%s', ignoring: %m", *i);
2182 continue;
2183 }
2184
2185 c = PEM_read_X509(f, NULL, NULL, NULL);
2186 if (!c) {
2187 log_debug("Failed to load X509 certificate '%s', ignoring.", *i);
2188 continue;
2189 }
2190
2191 if (sk_X509_push(sk, c) == 0)
2192 return log_oom_debug();
2193
2194 TAKE_PTR(c);
2195 }
2196
2197 r = PKCS7_verify(p7, sk, NULL, bio, NULL, PKCS7_NOINTERN|PKCS7_NOVERIFY);
2198 if (r)
2199 log_debug("Userspace PKCS#7 validation succeeded.");
2200 else
2201 log_debug("Userspace PKCS#7 validation failed: %s", ERR_error_string(ERR_get_error(), NULL));
2202
2203 return r;
2204 #else
2205 log_debug("Not doing client-side validation of dm-verity root hash signatures, OpenSSL support disabled.");
2206 return 0;
2207 #endif
2208 }
2209
2210 static int do_crypt_activate_verity(
2211 struct crypt_device *cd,
2212 const char *name,
2213 const VeritySettings *verity) {
2214
2215 bool check_signature;
2216 int r;
2217
2218 assert(cd);
2219 assert(name);
2220 assert(verity);
2221
2222 if (verity->root_hash_sig) {
2223 r = getenv_bool_secure("SYSTEMD_DISSECT_VERITY_SIGNATURE");
2224 if (r < 0 && r != -ENXIO)
2225 log_debug_errno(r, "Failed to parse $SYSTEMD_DISSECT_VERITY_SIGNATURE");
2226
2227 check_signature = r != 0;
2228 } else
2229 check_signature = false;
2230
2231 if (check_signature) {
2232
2233 #if HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY
2234 /* First, if we have support for signed keys in the kernel, then try that first. */
2235 r = sym_crypt_activate_by_signed_key(
2236 cd,
2237 name,
2238 verity->root_hash,
2239 verity->root_hash_size,
2240 verity->root_hash_sig,
2241 verity->root_hash_sig_size,
2242 CRYPT_ACTIVATE_READONLY);
2243 if (r >= 0)
2244 return r;
2245
2246 log_debug("Validation of dm-verity signature failed via the kernel, trying userspace validation instead.");
2247 #else
2248 log_debug("Activation of verity device with signature requested, but not supported via the kernel by %s due to missing crypt_activate_by_signed_key(), trying userspace validation instead.",
2249 program_invocation_short_name);
2250 #endif
2251
2252 /* So this didn't work via the kernel, then let's try userspace validation instead. If that
2253 * works we'll try to activate without telling the kernel the signature. */
2254
2255 r = validate_signature_userspace(verity);
2256 if (r < 0)
2257 return r;
2258 if (r == 0)
2259 return log_debug_errno(SYNTHETIC_ERRNO(ENOKEY),
2260 "Activation of signed Verity volume worked neither via the kernel nor in userspace, can't activate.");
2261 }
2262
2263 return sym_crypt_activate_by_volume_key(
2264 cd,
2265 name,
2266 verity->root_hash,
2267 verity->root_hash_size,
2268 CRYPT_ACTIVATE_READONLY);
2269 }
2270
2271 static usec_t verity_timeout(void) {
2272 usec_t t = 100 * USEC_PER_MSEC;
2273 const char *e;
2274 int r;
2275
2276 /* On slower machines, like non-KVM vm, setting up device may take a long time.
2277 * Let's make the timeout configurable. */
2278
2279 e = getenv("SYSTEMD_DISSECT_VERITY_TIMEOUT_SEC");
2280 if (!e)
2281 return t;
2282
2283 r = parse_sec(e, &t);
2284 if (r < 0)
2285 log_debug_errno(r,
2286 "Failed to parse timeout specified in $SYSTEMD_DISSECT_VERITY_TIMEOUT_SEC, "
2287 "using the default timeout (%s).",
2288 FORMAT_TIMESPAN(t, USEC_PER_MSEC));
2289
2290 return t;
2291 }
2292
2293 static int verity_partition(
2294 PartitionDesignator designator,
2295 DissectedPartition *m,
2296 DissectedPartition *v,
2297 const VeritySettings *verity,
2298 DissectImageFlags flags,
2299 DecryptedImage *d) {
2300
2301 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
2302 _cleanup_(dm_deferred_remove_cleanp) char *restore_deferred_remove = NULL;
2303 _cleanup_free_ char *node = NULL, *name = NULL;
2304 _cleanup_close_ int mount_node_fd = -EBADF;
2305 int r;
2306
2307 assert(m);
2308 assert(v || (verity && verity->data_path));
2309
2310 if (!verity || !verity->root_hash)
2311 return 0;
2312 if (!((verity->designator < 0 && designator == PARTITION_ROOT) ||
2313 (verity->designator == designator)))
2314 return 0;
2315
2316 if (!m->found || !m->node || !m->fstype)
2317 return 0;
2318 if (!verity->data_path) {
2319 if (!v->found || !v->node || !v->fstype)
2320 return 0;
2321
2322 if (!streq(v->fstype, "DM_verity_hash"))
2323 return 0;
2324 }
2325
2326 r = dlopen_cryptsetup();
2327 if (r < 0)
2328 return r;
2329
2330 if (FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE)) {
2331 /* Use the roothash, which is unique per volume, as the device node name, so that it can be reused */
2332 _cleanup_free_ char *root_hash_encoded = NULL;
2333
2334 root_hash_encoded = hexmem(verity->root_hash, verity->root_hash_size);
2335 if (!root_hash_encoded)
2336 return -ENOMEM;
2337
2338 r = make_dm_name_and_node(root_hash_encoded, "-verity", &name, &node);
2339 } else
2340 r = make_dm_name_and_node(m->node, "-verity", &name, &node);
2341 if (r < 0)
2342 return r;
2343
2344 r = sym_crypt_init(&cd, verity->data_path ?: v->node);
2345 if (r < 0)
2346 return r;
2347
2348 cryptsetup_enable_logging(cd);
2349
2350 r = sym_crypt_load(cd, CRYPT_VERITY, NULL);
2351 if (r < 0)
2352 return r;
2353
2354 r = sym_crypt_set_data_device(cd, m->node);
2355 if (r < 0)
2356 return r;
2357
2358 if (!GREEDY_REALLOC0(d->decrypted, d->n_decrypted + 1))
2359 return -ENOMEM;
2360
2361 /* If activating fails because the device already exists, check the metadata and reuse it if it matches.
2362 * In case of ENODEV/ENOENT, which can happen if another process is activating at the exact same time,
2363 * retry a few times before giving up. */
2364 for (unsigned i = 0; i < N_DEVICE_NODE_LIST_ATTEMPTS; i++) {
2365 _cleanup_(sym_crypt_freep) struct crypt_device *existing_cd = NULL;
2366 _cleanup_close_ int fd = -EBADF;
2367
2368 /* First, check if the device already exists. */
2369 fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY);
2370 if (fd < 0 && !ERRNO_IS_DEVICE_ABSENT(errno))
2371 return log_debug_errno(errno, "Failed to open verity device %s: %m", node);
2372 if (fd >= 0)
2373 goto check; /* The device already exists. Let's check it. */
2374
2375 /* The symlink to the device node does not exist yet. Assume not activated, and let's activate it. */
2376 r = do_crypt_activate_verity(cd, name, verity);
2377 if (r >= 0)
2378 goto try_open; /* The device is activated. Let's open it. */
2379 /* libdevmapper can return EINVAL when the device is already in the activation stage.
2380 * There's no way to distinguish this situation from a genuine error due to invalid
2381 * parameters, so immediately fall back to activating the device with a unique name.
2382 * Improvements in libcrypsetup can ensure this never happens:
2383 * https://gitlab.com/cryptsetup/cryptsetup/-/merge_requests/96 */
2384 if (r == -EINVAL && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
2385 break;
2386 if (r == -ENODEV) /* Volume is being opened but not ready, crypt_init_by_name would fail, try to open again */
2387 goto try_again;
2388 if (!IN_SET(r,
2389 -EEXIST, /* Volume has already been opened and ready to be used. */
2390 -EBUSY /* Volume is being opened but not ready, crypt_init_by_name() can fetch details. */))
2391 return log_debug_errno(r, "Failed to activate verity device %s: %m", node);
2392
2393 check:
2394 if (!restore_deferred_remove){
2395 /* To avoid races, disable automatic removal on umount while setting up the new device. Restore it on failure. */
2396 r = dm_deferred_remove_cancel(name);
2397 /* -EBUSY and -ENXIO: the device has already been removed or being removed. We cannot
2398 * use the device, try to open again. See target_message() in drivers/md/dm-ioctl.c
2399 * and dm_cancel_deferred_remove() in drivers/md/dm.c */
2400 if (IN_SET(r, -EBUSY, -ENXIO))
2401 goto try_again;
2402 if (r < 0)
2403 return log_debug_errno(r, "Failed to disable automated deferred removal for verity device %s: %m", node);
2404
2405 restore_deferred_remove = strdup(name);
2406 if (!restore_deferred_remove)
2407 return log_oom_debug();
2408 }
2409
2410 r = verity_can_reuse(verity, name, &existing_cd);
2411 /* Same as above, -EINVAL can randomly happen when it actually means -EEXIST */
2412 if (r == -EINVAL && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
2413 break;
2414 if (IN_SET(r,
2415 -ENOENT, /* Removed?? */
2416 -EBUSY, /* Volume is being opened but not ready, crypt_init_by_name() can fetch details. */
2417 -ENODEV /* Volume is being opened but not ready, crypt_init_by_name() would fail, try to open again. */ ))
2418 goto try_again;
2419 if (r < 0)
2420 return log_debug_errno(r, "Failed to check if existing verity device %s can be reused: %m", node);
2421
2422 if (fd < 0) {
2423 /* devmapper might say that the device exists, but the devlink might not yet have been
2424 * created. Check and wait for the udev event in that case. */
2425 r = device_wait_for_devlink(node, "block", verity_timeout(), NULL);
2426 /* Fallback to activation with a unique device if it's taking too long */
2427 if (r == -ETIMEDOUT && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
2428 break;
2429 if (r < 0)
2430 return log_debug_errno(r, "Failed to wait device node symlink %s: %m", node);
2431 }
2432
2433 try_open:
2434 if (fd < 0) {
2435 /* Now, the device is activated and devlink is created. Let's open it. */
2436 fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOCTTY);
2437 if (fd < 0) {
2438 if (!ERRNO_IS_DEVICE_ABSENT(errno))
2439 return log_debug_errno(errno, "Failed to open verity device %s: %m", node);
2440
2441 /* The device has already been removed?? */
2442 goto try_again;
2443 }
2444 }
2445
2446 mount_node_fd = TAKE_FD(fd);
2447 if (existing_cd)
2448 crypt_free_and_replace(cd, existing_cd);
2449
2450 goto success;
2451
2452 try_again:
2453 /* Device is being removed by another process. Let's wait for a while. */
2454 (void) usleep(2 * USEC_PER_MSEC);
2455 }
2456
2457 /* All trials failed or a conflicting verity device exists. Let's try to activate with a unique name. */
2458 if (FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE)) {
2459 /* Before trying to activate with unique name, we need to free crypt_device object.
2460 * Otherwise, we get error from libcryptsetup like the following:
2461 * ------
2462 * systemd[1234]: Cannot use device /dev/loop5 which is in use (already mapped or mounted).
2463 * ------
2464 */
2465 sym_crypt_free(cd);
2466 cd = NULL;
2467 return verity_partition(designator, m, v, verity, flags & ~DISSECT_IMAGE_VERITY_SHARE, d);
2468 }
2469
2470 return log_debug_errno(SYNTHETIC_ERRNO(EBUSY), "All attempts to activate verity device %s failed.", name);
2471
2472 success:
2473 /* Everything looks good and we'll be able to mount the device, so deferred remove will be re-enabled at that point. */
2474 restore_deferred_remove = mfree(restore_deferred_remove);
2475
2476 d->decrypted[d->n_decrypted++] = (DecryptedPartition) {
2477 .name = TAKE_PTR(name),
2478 .device = TAKE_PTR(cd),
2479 };
2480
2481 m->decrypted_node = TAKE_PTR(node);
2482 close_and_replace(m->mount_node_fd, mount_node_fd);
2483
2484 return 0;
2485 }
2486 #endif
2487
2488 int dissected_image_decrypt(
2489 DissectedImage *m,
2490 const char *passphrase,
2491 const VeritySettings *verity,
2492 DissectImageFlags flags) {
2493
2494 #if HAVE_LIBCRYPTSETUP
2495 _cleanup_(decrypted_image_unrefp) DecryptedImage *d = NULL;
2496 int r;
2497 #endif
2498
2499 assert(m);
2500 assert(!verity || verity->root_hash || verity->root_hash_size == 0);
2501
2502 /* Returns:
2503 *
2504 * = 0 → There was nothing to decrypt
2505 * > 0 → Decrypted successfully
2506 * -ENOKEY → There's something to decrypt but no key was supplied
2507 * -EKEYREJECTED → Passed key was not correct
2508 */
2509
2510 if (verity && verity->root_hash && verity->root_hash_size < sizeof(sd_id128_t))
2511 return -EINVAL;
2512
2513 if (!m->encrypted && !m->verity_ready)
2514 return 0;
2515
2516 #if HAVE_LIBCRYPTSETUP
2517 r = decrypted_image_new(&d);
2518 if (r < 0)
2519 return r;
2520
2521 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
2522 DissectedPartition *p = m->partitions + i;
2523 PartitionDesignator k;
2524
2525 if (!p->found)
2526 continue;
2527
2528 r = decrypt_partition(p, passphrase, flags, d);
2529 if (r < 0)
2530 return r;
2531
2532 k = partition_verity_of(i);
2533 if (k >= 0) {
2534 r = verity_partition(i, p, m->partitions + k, verity, flags | DISSECT_IMAGE_VERITY_SHARE, d);
2535 if (r < 0)
2536 return r;
2537 }
2538
2539 if (!p->decrypted_fstype && p->mount_node_fd >= 0 && p->decrypted_node) {
2540 r = probe_filesystem_full(p->mount_node_fd, p->decrypted_node, 0, UINT64_MAX, &p->decrypted_fstype);
2541 if (r < 0 && r != -EUCLEAN)
2542 return r;
2543 }
2544 }
2545
2546 m->decrypted_image = TAKE_PTR(d);
2547
2548 return 1;
2549 #else
2550 return -EOPNOTSUPP;
2551 #endif
2552 }
2553
2554 int dissected_image_decrypt_interactively(
2555 DissectedImage *m,
2556 const char *passphrase,
2557 const VeritySettings *verity,
2558 DissectImageFlags flags) {
2559
2560 _cleanup_strv_free_erase_ char **z = NULL;
2561 int n = 3, r;
2562
2563 if (passphrase)
2564 n--;
2565
2566 for (;;) {
2567 r = dissected_image_decrypt(m, passphrase, verity, flags);
2568 if (r >= 0)
2569 return r;
2570 if (r == -EKEYREJECTED)
2571 log_error_errno(r, "Incorrect passphrase, try again!");
2572 else if (r != -ENOKEY)
2573 return log_error_errno(r, "Failed to decrypt image: %m");
2574
2575 if (--n < 0)
2576 return log_error_errno(SYNTHETIC_ERRNO(EKEYREJECTED),
2577 "Too many retries.");
2578
2579 z = strv_free(z);
2580
2581 r = ask_password_auto("Please enter image passphrase:", NULL, "dissect", "dissect", "dissect.passphrase", USEC_INFINITY, 0, &z);
2582 if (r < 0)
2583 return log_error_errno(r, "Failed to query for passphrase: %m");
2584
2585 passphrase = z[0];
2586 }
2587 }
2588
2589 static int decrypted_image_relinquish(DecryptedImage *d) {
2590 assert(d);
2591
2592 /* Turns on automatic removal after the last use ended for all DM devices of this image, and sets a
2593 * boolean so that we don't clean it up ourselves either anymore */
2594
2595 #if HAVE_LIBCRYPTSETUP
2596 int r;
2597
2598 for (size_t i = 0; i < d->n_decrypted; i++) {
2599 DecryptedPartition *p = d->decrypted + i;
2600
2601 if (p->relinquished)
2602 continue;
2603
2604 r = sym_crypt_deactivate_by_name(NULL, p->name, CRYPT_DEACTIVATE_DEFERRED);
2605 if (r < 0)
2606 return log_debug_errno(r, "Failed to mark %s for auto-removal: %m", p->name);
2607
2608 p->relinquished = true;
2609 }
2610 #endif
2611
2612 return 0;
2613 }
2614
2615 int dissected_image_relinquish(DissectedImage *m) {
2616 int r;
2617
2618 assert(m);
2619
2620 if (m->decrypted_image) {
2621 r = decrypted_image_relinquish(m->decrypted_image);
2622 if (r < 0)
2623 return r;
2624 }
2625
2626 if (m->loop)
2627 loop_device_relinquish(m->loop);
2628
2629 return 0;
2630 }
2631
2632 static char *build_auxiliary_path(const char *image, const char *suffix) {
2633 const char *e;
2634 char *n;
2635
2636 assert(image);
2637 assert(suffix);
2638
2639 e = endswith(image, ".raw");
2640 if (!e)
2641 return strjoin(e, suffix);
2642
2643 n = new(char, e - image + strlen(suffix) + 1);
2644 if (!n)
2645 return NULL;
2646
2647 strcpy(mempcpy(n, image, e - image), suffix);
2648 return n;
2649 }
2650
2651 void verity_settings_done(VeritySettings *v) {
2652 assert(v);
2653
2654 v->root_hash = mfree(v->root_hash);
2655 v->root_hash_size = 0;
2656
2657 v->root_hash_sig = mfree(v->root_hash_sig);
2658 v->root_hash_sig_size = 0;
2659
2660 v->data_path = mfree(v->data_path);
2661 }
2662
2663 int verity_settings_load(
2664 VeritySettings *verity,
2665 const char *image,
2666 const char *root_hash_path,
2667 const char *root_hash_sig_path) {
2668
2669 _cleanup_free_ void *root_hash = NULL, *root_hash_sig = NULL;
2670 size_t root_hash_size = 0, root_hash_sig_size = 0;
2671 _cleanup_free_ char *verity_data_path = NULL;
2672 PartitionDesignator designator;
2673 int r;
2674
2675 assert(verity);
2676 assert(image);
2677 assert(verity->designator < 0 || IN_SET(verity->designator, PARTITION_ROOT, PARTITION_USR));
2678
2679 /* If we are asked to load the root hash for a device node, exit early */
2680 if (is_device_path(image))
2681 return 0;
2682
2683 r = getenv_bool_secure("SYSTEMD_DISSECT_VERITY_SIDECAR");
2684 if (r < 0 && r != -ENXIO)
2685 log_debug_errno(r, "Failed to parse $SYSTEMD_DISSECT_VERITY_SIDECAR, ignoring: %m");
2686 if (r == 0)
2687 return 0;
2688
2689 designator = verity->designator;
2690
2691 /* We only fill in what isn't already filled in */
2692
2693 if (!verity->root_hash) {
2694 _cleanup_free_ char *text = NULL;
2695
2696 if (root_hash_path) {
2697 /* If explicitly specified it takes precedence */
2698 r = read_one_line_file(root_hash_path, &text);
2699 if (r < 0)
2700 return r;
2701
2702 if (designator < 0)
2703 designator = PARTITION_ROOT;
2704 } else {
2705 /* Otherwise look for xattr and separate file, and first for the data for root and if
2706 * that doesn't exist for /usr */
2707
2708 if (designator < 0 || designator == PARTITION_ROOT) {
2709 r = getxattr_malloc(image, "user.verity.roothash", &text);
2710 if (r < 0) {
2711 _cleanup_free_ char *p = NULL;
2712
2713 if (r != -ENOENT && !ERRNO_IS_XATTR_ABSENT(r))
2714 return r;
2715
2716 p = build_auxiliary_path(image, ".roothash");
2717 if (!p)
2718 return -ENOMEM;
2719
2720 r = read_one_line_file(p, &text);
2721 if (r < 0 && r != -ENOENT)
2722 return r;
2723 }
2724
2725 if (text)
2726 designator = PARTITION_ROOT;
2727 }
2728
2729 if (!text && (designator < 0 || designator == PARTITION_USR)) {
2730 /* So in the "roothash" xattr/file name above the "root" of course primarily
2731 * refers to the root of the Verity Merkle tree. But coincidentally it also
2732 * is the hash for the *root* file system, i.e. the "root" neatly refers to
2733 * two distinct concepts called "root". Taking benefit of this happy
2734 * coincidence we call the file with the root hash for the /usr/ file system
2735 * `usrhash`, because `usrroothash` or `rootusrhash` would just be too
2736 * confusing. We thus drop the reference to the root of the Merkle tree, and
2737 * just indicate which file system it's about. */
2738 r = getxattr_malloc(image, "user.verity.usrhash", &text);
2739 if (r < 0) {
2740 _cleanup_free_ char *p = NULL;
2741
2742 if (r != -ENOENT && !ERRNO_IS_XATTR_ABSENT(r))
2743 return r;
2744
2745 p = build_auxiliary_path(image, ".usrhash");
2746 if (!p)
2747 return -ENOMEM;
2748
2749 r = read_one_line_file(p, &text);
2750 if (r < 0 && r != -ENOENT)
2751 return r;
2752 }
2753
2754 if (text)
2755 designator = PARTITION_USR;
2756 }
2757 }
2758
2759 if (text) {
2760 r = unhexmem(text, strlen(text), &root_hash, &root_hash_size);
2761 if (r < 0)
2762 return r;
2763 if (root_hash_size < sizeof(sd_id128_t))
2764 return -EINVAL;
2765 }
2766 }
2767
2768 if ((root_hash || verity->root_hash) && !verity->root_hash_sig) {
2769 if (root_hash_sig_path) {
2770 r = read_full_file(root_hash_sig_path, (char**) &root_hash_sig, &root_hash_sig_size);
2771 if (r < 0 && r != -ENOENT)
2772 return r;
2773
2774 if (designator < 0)
2775 designator = PARTITION_ROOT;
2776 } else {
2777 if (designator < 0 || designator == PARTITION_ROOT) {
2778 _cleanup_free_ char *p = NULL;
2779
2780 /* Follow naming convention recommended by the relevant RFC:
2781 * https://tools.ietf.org/html/rfc5751#section-3.2.1 */
2782 p = build_auxiliary_path(image, ".roothash.p7s");
2783 if (!p)
2784 return -ENOMEM;
2785
2786 r = read_full_file(p, (char**) &root_hash_sig, &root_hash_sig_size);
2787 if (r < 0 && r != -ENOENT)
2788 return r;
2789 if (r >= 0)
2790 designator = PARTITION_ROOT;
2791 }
2792
2793 if (!root_hash_sig && (designator < 0 || designator == PARTITION_USR)) {
2794 _cleanup_free_ char *p = NULL;
2795
2796 p = build_auxiliary_path(image, ".usrhash.p7s");
2797 if (!p)
2798 return -ENOMEM;
2799
2800 r = read_full_file(p, (char**) &root_hash_sig, &root_hash_sig_size);
2801 if (r < 0 && r != -ENOENT)
2802 return r;
2803 if (r >= 0)
2804 designator = PARTITION_USR;
2805 }
2806 }
2807
2808 if (root_hash_sig && root_hash_sig_size == 0) /* refuse empty size signatures */
2809 return -EINVAL;
2810 }
2811
2812 if (!verity->data_path) {
2813 _cleanup_free_ char *p = NULL;
2814
2815 p = build_auxiliary_path(image, ".verity");
2816 if (!p)
2817 return -ENOMEM;
2818
2819 if (access(p, F_OK) < 0) {
2820 if (errno != ENOENT)
2821 return -errno;
2822 } else
2823 verity_data_path = TAKE_PTR(p);
2824 }
2825
2826 if (root_hash) {
2827 verity->root_hash = TAKE_PTR(root_hash);
2828 verity->root_hash_size = root_hash_size;
2829 }
2830
2831 if (root_hash_sig) {
2832 verity->root_hash_sig = TAKE_PTR(root_hash_sig);
2833 verity->root_hash_sig_size = root_hash_sig_size;
2834 }
2835
2836 if (verity_data_path)
2837 verity->data_path = TAKE_PTR(verity_data_path);
2838
2839 if (verity->designator < 0)
2840 verity->designator = designator;
2841
2842 return 1;
2843 }
2844
2845 int dissected_image_load_verity_sig_partition(
2846 DissectedImage *m,
2847 int fd,
2848 VeritySettings *verity) {
2849
2850 _cleanup_free_ void *root_hash = NULL, *root_hash_sig = NULL;
2851 _cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
2852 size_t root_hash_size, root_hash_sig_size;
2853 _cleanup_free_ char *buf = NULL;
2854 PartitionDesignator d;
2855 DissectedPartition *p;
2856 JsonVariant *rh, *sig;
2857 ssize_t n;
2858 char *e;
2859 int r;
2860
2861 assert(m);
2862 assert(fd >= 0);
2863 assert(verity);
2864
2865 if (verity->root_hash && verity->root_hash_sig) /* Already loaded? */
2866 return 0;
2867
2868 r = getenv_bool_secure("SYSTEMD_DISSECT_VERITY_EMBEDDED");
2869 if (r < 0 && r != -ENXIO)
2870 log_debug_errno(r, "Failed to parse $SYSTEMD_DISSECT_VERITY_EMBEDDED, ignoring: %m");
2871 if (r == 0)
2872 return 0;
2873
2874 d = partition_verity_sig_of(verity->designator < 0 ? PARTITION_ROOT : verity->designator);
2875 assert(d >= 0);
2876
2877 p = m->partitions + d;
2878 if (!p->found)
2879 return 0;
2880 if (p->offset == UINT64_MAX || p->size == UINT64_MAX)
2881 return -EINVAL;
2882
2883 if (p->size > 4*1024*1024) /* Signature data cannot possible be larger than 4M, refuse that */
2884 return -EFBIG;
2885
2886 buf = new(char, p->size+1);
2887 if (!buf)
2888 return -ENOMEM;
2889
2890 n = pread(fd, buf, p->size, p->offset);
2891 if (n < 0)
2892 return -ENOMEM;
2893 if ((uint64_t) n != p->size)
2894 return -EIO;
2895
2896 e = memchr(buf, 0, p->size);
2897 if (e) {
2898 /* If we found a NUL byte then the rest of the data must be NUL too */
2899 if (!memeqzero(e, p->size - (e - buf)))
2900 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Signature data contains embedded NUL byte.");
2901 } else
2902 buf[p->size] = 0;
2903
2904 r = json_parse(buf, 0, &v, NULL, NULL);
2905 if (r < 0)
2906 return log_debug_errno(r, "Failed to parse signature JSON data: %m");
2907
2908 rh = json_variant_by_key(v, "rootHash");
2909 if (!rh)
2910 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Signature JSON object lacks 'rootHash' field.");
2911 if (!json_variant_is_string(rh))
2912 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "'rootHash' field of signature JSON object is not a string.");
2913
2914 r = unhexmem(json_variant_string(rh), SIZE_MAX, &root_hash, &root_hash_size);
2915 if (r < 0)
2916 return log_debug_errno(r, "Failed to parse root hash field: %m");
2917
2918 /* Check if specified root hash matches if it is specified */
2919 if (verity->root_hash &&
2920 memcmp_nn(verity->root_hash, verity->root_hash_size, root_hash, root_hash_size) != 0) {
2921 _cleanup_free_ char *a = NULL, *b = NULL;
2922
2923 a = hexmem(root_hash, root_hash_size);
2924 b = hexmem(verity->root_hash, verity->root_hash_size);
2925
2926 return log_debug_errno(r, "Root hash in signature JSON data (%s) doesn't match configured hash (%s).", strna(a), strna(b));
2927 }
2928
2929 sig = json_variant_by_key(v, "signature");
2930 if (!sig)
2931 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Signature JSON object lacks 'signature' field.");
2932 if (!json_variant_is_string(sig))
2933 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "'signature' field of signature JSON object is not a string.");
2934
2935 r = unbase64mem(json_variant_string(sig), SIZE_MAX, &root_hash_sig, &root_hash_sig_size);
2936 if (r < 0)
2937 return log_debug_errno(r, "Failed to parse signature field: %m");
2938
2939 free_and_replace(verity->root_hash, root_hash);
2940 verity->root_hash_size = root_hash_size;
2941
2942 free_and_replace(verity->root_hash_sig, root_hash_sig);
2943 verity->root_hash_sig_size = root_hash_sig_size;
2944
2945 return 1;
2946 }
2947
2948 int dissected_image_acquire_metadata(DissectedImage *m, DissectImageFlags extra_flags) {
2949
2950 enum {
2951 META_HOSTNAME,
2952 META_MACHINE_ID,
2953 META_MACHINE_INFO,
2954 META_OS_RELEASE,
2955 META_INITRD_RELEASE,
2956 META_EXTENSION_RELEASE,
2957 META_HAS_INIT_SYSTEM,
2958 _META_MAX,
2959 };
2960
2961 static const char *const paths[_META_MAX] = {
2962 [META_HOSTNAME] = "/etc/hostname\0",
2963 [META_MACHINE_ID] = "/etc/machine-id\0",
2964 [META_MACHINE_INFO] = "/etc/machine-info\0",
2965 [META_OS_RELEASE] = ("/etc/os-release\0"
2966 "/usr/lib/os-release\0"),
2967 [META_INITRD_RELEASE] = ("/etc/initrd-release\0"
2968 "/usr/lib/initrd-release\0"),
2969 [META_EXTENSION_RELEASE] = "extension-release\0", /* Used only for logging. */
2970 [META_HAS_INIT_SYSTEM] = "has-init-system\0", /* ditto */
2971 };
2972
2973 _cleanup_strv_free_ char **machine_info = NULL, **os_release = NULL, **initrd_release = NULL, **extension_release = NULL;
2974 _cleanup_close_pair_ int error_pipe[2] = PIPE_EBADF;
2975 _cleanup_(rmdir_and_freep) char *t = NULL;
2976 _cleanup_(sigkill_waitp) pid_t child = 0;
2977 sd_id128_t machine_id = SD_ID128_NULL;
2978 _cleanup_free_ char *hostname = NULL;
2979 unsigned n_meta_initialized = 0;
2980 int fds[2 * _META_MAX], r, v;
2981 int has_init_system = -1;
2982 ssize_t n;
2983
2984 BLOCK_SIGNALS(SIGCHLD);
2985
2986 assert(m);
2987
2988 for (; n_meta_initialized < _META_MAX; n_meta_initialized ++) {
2989 if (!paths[n_meta_initialized]) {
2990 fds[2*n_meta_initialized] = fds[2*n_meta_initialized+1] = -EBADF;
2991 continue;
2992 }
2993
2994 if (pipe2(fds + 2*n_meta_initialized, O_CLOEXEC) < 0) {
2995 r = -errno;
2996 goto finish;
2997 }
2998 }
2999
3000 r = mkdtemp_malloc("/tmp/dissect-XXXXXX", &t);
3001 if (r < 0)
3002 goto finish;
3003
3004 if (pipe2(error_pipe, O_CLOEXEC) < 0) {
3005 r = -errno;
3006 goto finish;
3007 }
3008
3009 r = safe_fork("(sd-dissect)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE, &child);
3010 if (r < 0)
3011 goto finish;
3012 if (r == 0) {
3013 /* Child in a new mount namespace */
3014 error_pipe[0] = safe_close(error_pipe[0]);
3015
3016 r = dissected_image_mount(
3017 m,
3018 t,
3019 UID_INVALID,
3020 UID_INVALID,
3021 extra_flags |
3022 DISSECT_IMAGE_READ_ONLY |
3023 DISSECT_IMAGE_MOUNT_ROOT_ONLY |
3024 DISSECT_IMAGE_USR_NO_ROOT);
3025 if (r < 0) {
3026 log_debug_errno(r, "Failed to mount dissected image: %m");
3027 goto inner_fail;
3028 }
3029
3030 for (unsigned k = 0; k < _META_MAX; k++) {
3031 _cleanup_close_ int fd = -ENOENT;
3032
3033 if (!paths[k])
3034 continue;
3035
3036 fds[2*k] = safe_close(fds[2*k]);
3037
3038 switch (k) {
3039
3040 case META_EXTENSION_RELEASE:
3041 /* As per the os-release spec, if the image is an extension it will have a file
3042 * named after the image name in extension-release.d/ - we use the image name
3043 * and try to resolve it with the extension-release helpers, as sometimes
3044 * the image names are mangled on deployment and do not match anymore.
3045 * Unlike other paths this is not fixed, and the image name
3046 * can be mangled on deployment, so by calling into the helper
3047 * we allow a fallback that matches on the first extension-release
3048 * file found in the directory, if one named after the image cannot
3049 * be found first. */
3050 r = open_extension_release(t, m->image_name, /* relax_extension_release_check= */ false, NULL, &fd);
3051 if (r < 0)
3052 fd = r; /* Propagate the error. */
3053 break;
3054
3055 case META_HAS_INIT_SYSTEM: {
3056 bool found = false;
3057
3058 FOREACH_STRING(init,
3059 "/usr/lib/systemd/systemd", /* systemd on /usr merged system */
3060 "/lib/systemd/systemd", /* systemd on /usr non-merged systems */
3061 "/sbin/init") { /* traditional path the Linux kernel invokes */
3062
3063 r = chase_symlinks(init, t, CHASE_PREFIX_ROOT, NULL, NULL);
3064 if (r < 0) {
3065 if (r != -ENOENT)
3066 log_debug_errno(r, "Failed to resolve %s, ignoring: %m", init);
3067 } else {
3068 found = true;
3069 break;
3070 }
3071 }
3072
3073 r = loop_write(fds[2*k+1], &found, sizeof(found), false);
3074 if (r < 0)
3075 goto inner_fail;
3076
3077 continue;
3078 }
3079
3080 default:
3081 NULSTR_FOREACH(p, paths[k]) {
3082 fd = chase_symlinks_and_open(p, t, CHASE_PREFIX_ROOT, O_RDONLY|O_CLOEXEC|O_NOCTTY, NULL);
3083 if (fd >= 0)
3084 break;
3085 }
3086 }
3087
3088 if (fd < 0) {
3089 log_debug_errno(fd, "Failed to read %s file of image, ignoring: %m", paths[k]);
3090 fds[2*k+1] = safe_close(fds[2*k+1]);
3091 continue;
3092 }
3093
3094 r = copy_bytes(fd, fds[2*k+1], UINT64_MAX, 0);
3095 if (r < 0)
3096 goto inner_fail;
3097
3098 fds[2*k+1] = safe_close(fds[2*k+1]);
3099 }
3100
3101 _exit(EXIT_SUCCESS);
3102
3103 inner_fail:
3104 /* Let parent know the error */
3105 (void) write(error_pipe[1], &r, sizeof(r));
3106 _exit(EXIT_FAILURE);
3107 }
3108
3109 error_pipe[1] = safe_close(error_pipe[1]);
3110
3111 for (unsigned k = 0; k < _META_MAX; k++) {
3112 _cleanup_fclose_ FILE *f = NULL;
3113
3114 if (!paths[k])
3115 continue;
3116
3117 fds[2*k+1] = safe_close(fds[2*k+1]);
3118
3119 f = take_fdopen(&fds[2*k], "r");
3120 if (!f) {
3121 r = -errno;
3122 goto finish;
3123 }
3124
3125 switch (k) {
3126
3127 case META_HOSTNAME:
3128 r = read_etc_hostname_stream(f, &hostname);
3129 if (r < 0)
3130 log_debug_errno(r, "Failed to read /etc/hostname of image: %m");
3131
3132 break;
3133
3134 case META_MACHINE_ID: {
3135 _cleanup_free_ char *line = NULL;
3136
3137 r = read_line(f, LONG_LINE_MAX, &line);
3138 if (r < 0)
3139 log_debug_errno(r, "Failed to read /etc/machine-id of image: %m");
3140 else if (r == 33) {
3141 r = sd_id128_from_string(line, &machine_id);
3142 if (r < 0)
3143 log_debug_errno(r, "Image contains invalid /etc/machine-id: %s", line);
3144 } else if (r == 0)
3145 log_debug("/etc/machine-id file of image is empty.");
3146 else if (streq(line, "uninitialized"))
3147 log_debug("/etc/machine-id file of image is uninitialized (likely aborted first boot).");
3148 else
3149 log_debug("/etc/machine-id file of image has unexpected length %i.", r);
3150
3151 break;
3152 }
3153
3154 case META_MACHINE_INFO:
3155 r = load_env_file_pairs(f, "machine-info", &machine_info);
3156 if (r < 0)
3157 log_debug_errno(r, "Failed to read /etc/machine-info of image: %m");
3158
3159 break;
3160
3161 case META_OS_RELEASE:
3162 r = load_env_file_pairs(f, "os-release", &os_release);
3163 if (r < 0)
3164 log_debug_errno(r, "Failed to read OS release file of image: %m");
3165
3166 break;
3167
3168 case META_INITRD_RELEASE:
3169 r = load_env_file_pairs(f, "initrd-release", &initrd_release);
3170 if (r < 0)
3171 log_debug_errno(r, "Failed to read initrd release file of image: %m");
3172
3173 break;
3174
3175 case META_EXTENSION_RELEASE:
3176 r = load_env_file_pairs(f, "extension-release", &extension_release);
3177 if (r < 0)
3178 log_debug_errno(r, "Failed to read extension release file of image: %m");
3179
3180 break;
3181
3182 case META_HAS_INIT_SYSTEM: {
3183 bool b = false;
3184 size_t nr;
3185
3186 errno = 0;
3187 nr = fread(&b, 1, sizeof(b), f);
3188 if (nr != sizeof(b))
3189 log_debug_errno(errno_or_else(EIO), "Failed to read has-init-system boolean: %m");
3190 else
3191 has_init_system = b;
3192
3193 break;
3194 }}
3195 }
3196
3197 r = wait_for_terminate_and_check("(sd-dissect)", child, 0);
3198 child = 0;
3199 if (r < 0)
3200 return r;
3201
3202 n = read(error_pipe[0], &v, sizeof(v));
3203 if (n < 0)
3204 return -errno;
3205 if (n == sizeof(v))
3206 return v; /* propagate error sent to us from child */
3207 if (n != 0)
3208 return -EIO;
3209
3210 if (r != EXIT_SUCCESS)
3211 return -EPROTO;
3212
3213 free_and_replace(m->hostname, hostname);
3214 m->machine_id = machine_id;
3215 strv_free_and_replace(m->machine_info, machine_info);
3216 strv_free_and_replace(m->os_release, os_release);
3217 strv_free_and_replace(m->initrd_release, initrd_release);
3218 strv_free_and_replace(m->extension_release, extension_release);
3219 m->has_init_system = has_init_system;
3220
3221 finish:
3222 for (unsigned k = 0; k < n_meta_initialized; k++)
3223 safe_close_pair(fds + 2*k);
3224
3225 return r;
3226 }
3227
3228 Architecture dissected_image_architecture(DissectedImage *img) {
3229 assert(img);
3230
3231 if (img->partitions[PARTITION_ROOT].found &&
3232 img->partitions[PARTITION_ROOT].architecture >= 0)
3233 return img->partitions[PARTITION_ROOT].architecture;
3234
3235 if (img->partitions[PARTITION_USR].found &&
3236 img->partitions[PARTITION_USR].architecture >= 0)
3237 return img->partitions[PARTITION_USR].architecture;
3238
3239 return _ARCHITECTURE_INVALID;
3240 }
3241
3242 int dissect_loop_device(
3243 LoopDevice *loop,
3244 const VeritySettings *verity,
3245 const MountOptions *mount_options,
3246 DissectImageFlags flags,
3247 DissectedImage **ret) {
3248
3249 #if HAVE_BLKID
3250 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
3251 int r;
3252
3253 assert(loop);
3254 assert(ret);
3255
3256 r = dissected_image_new(loop->backing_file ?: loop->node, &m);
3257 if (r < 0)
3258 return r;
3259
3260 m->loop = loop_device_ref(loop);
3261 m->sector_size = m->loop->sector_size;
3262
3263 r = dissect_image(m, loop->fd, loop->node, verity, mount_options, flags);
3264 if (r < 0)
3265 return r;
3266
3267 *ret = TAKE_PTR(m);
3268 return 0;
3269 #else
3270 return -EOPNOTSUPP;
3271 #endif
3272 }
3273
3274 int dissect_loop_device_and_warn(
3275 LoopDevice *loop,
3276 const VeritySettings *verity,
3277 const MountOptions *mount_options,
3278 DissectImageFlags flags,
3279 DissectedImage **ret) {
3280
3281 const char *name;
3282 int r;
3283
3284 assert(loop);
3285 assert(loop->fd >= 0);
3286
3287 name = ASSERT_PTR(loop->backing_file ?: loop->node);
3288
3289 r = dissect_loop_device(loop, verity, mount_options, flags, ret);
3290 switch (r) {
3291
3292 case -EOPNOTSUPP:
3293 return log_error_errno(r, "Dissecting images is not supported, compiled without blkid support.");
3294
3295 case -ENOPKG:
3296 return log_error_errno(r, "%s: Couldn't identify a suitable partition table or file system.", name);
3297
3298 case -ENOMEDIUM:
3299 return log_error_errno(r, "%s: The image does not pass validation.", name);
3300
3301 case -EADDRNOTAVAIL:
3302 return log_error_errno(r, "%s: No root partition for specified root hash found.", name);
3303
3304 case -ENOTUNIQ:
3305 return log_error_errno(r, "%s: Multiple suitable root partitions found in image.", name);
3306
3307 case -ENXIO:
3308 return log_error_errno(r, "%s: No suitable root partition found in image.", name);
3309
3310 case -EPROTONOSUPPORT:
3311 return log_error_errno(r, "Device '%s' is loopback block device with partition scanning turned off, please turn it on.", name);
3312
3313 case -ENOTBLK:
3314 return log_error_errno(r, "%s: Image is not a block device.", name);
3315
3316 case -EBADR:
3317 return log_error_errno(r,
3318 "Combining partitioned images (such as '%s') with external Verity data (such as '%s') not supported. "
3319 "(Consider setting $SYSTEMD_DISSECT_VERITY_SIDECAR=0 to disable automatic discovery of external Verity data.)",
3320 name, strna(verity ? verity->data_path : NULL));
3321
3322 default:
3323 if (r < 0)
3324 return log_error_errno(r, "Failed to dissect image '%s': %m", name);
3325
3326 return r;
3327 }
3328 }
3329
3330 bool dissected_image_verity_candidate(const DissectedImage *image, PartitionDesignator partition_designator) {
3331 assert(image);
3332
3333 /* Checks if this partition could theoretically do Verity. For non-partitioned images this only works
3334 * if there's an external verity file supplied, for which we can consult .has_verity. For partitioned
3335 * images we only check the partition type.
3336 *
3337 * This call is used to decide whether to suppress or show a verity column in tabular output of the
3338 * image. */
3339
3340 if (image->single_file_system)
3341 return partition_designator == PARTITION_ROOT && image->has_verity;
3342
3343 return partition_verity_of(partition_designator) >= 0;
3344 }
3345
3346 bool dissected_image_verity_ready(const DissectedImage *image, PartitionDesignator partition_designator) {
3347 PartitionDesignator k;
3348
3349 assert(image);
3350
3351 /* Checks if this partition has verity data available that we can activate. For non-partitioned this
3352 * works for the root partition, for others only if the associated verity partition was found. */
3353
3354 if (!image->verity_ready)
3355 return false;
3356
3357 if (image->single_file_system)
3358 return partition_designator == PARTITION_ROOT;
3359
3360 k = partition_verity_of(partition_designator);
3361 return k >= 0 && image->partitions[k].found;
3362 }
3363
3364 bool dissected_image_verity_sig_ready(const DissectedImage *image, PartitionDesignator partition_designator) {
3365 PartitionDesignator k;
3366
3367 assert(image);
3368
3369 /* Checks if this partition has verity signature data available that we can use. */
3370
3371 if (!image->verity_sig_ready)
3372 return false;
3373
3374 if (image->single_file_system)
3375 return partition_designator == PARTITION_ROOT;
3376
3377 k = partition_verity_sig_of(partition_designator);
3378 return k >= 0 && image->partitions[k].found;
3379 }
3380
3381 MountOptions* mount_options_free_all(MountOptions *options) {
3382 MountOptions *m;
3383
3384 while ((m = options)) {
3385 LIST_REMOVE(mount_options, options, m);
3386 free(m->options);
3387 free(m);
3388 }
3389
3390 return NULL;
3391 }
3392
3393 const char* mount_options_from_designator(const MountOptions *options, PartitionDesignator designator) {
3394 LIST_FOREACH(mount_options, m, options)
3395 if (designator == m->partition_designator && !isempty(m->options))
3396 return m->options;
3397
3398 return NULL;
3399 }
3400
3401 int mount_image_privately_interactively(
3402 const char *image,
3403 DissectImageFlags flags,
3404 char **ret_directory,
3405 int *ret_dir_fd,
3406 LoopDevice **ret_loop_device) {
3407
3408 _cleanup_(verity_settings_done) VeritySettings verity = VERITY_SETTINGS_DEFAULT;
3409 _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
3410 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
3411 _cleanup_(rmdir_and_freep) char *created_dir = NULL;
3412 _cleanup_free_ char *temp = NULL;
3413 int r;
3414
3415 /* Mounts an OS image at a temporary place, inside a newly created mount namespace of our own. This
3416 * is used by tools such as systemd-tmpfiles or systemd-firstboot to operate on some disk image
3417 * easily. */
3418
3419 assert(image);
3420 assert(ret_directory);
3421 assert(ret_loop_device);
3422
3423 /* We intend to mount this right-away, hence add the partitions if needed and pin them. */
3424 flags |= DISSECT_IMAGE_ADD_PARTITION_DEVICES |
3425 DISSECT_IMAGE_PIN_PARTITION_DEVICES;
3426
3427 r = verity_settings_load(&verity, image, NULL, NULL);
3428 if (r < 0)
3429 return log_error_errno(r, "Failed to load root hash data: %m");
3430
3431 r = tempfn_random_child(NULL, program_invocation_short_name, &temp);
3432 if (r < 0)
3433 return log_error_errno(r, "Failed to generate temporary mount directory: %m");
3434
3435 r = loop_device_make_by_path(
3436 image,
3437 FLAGS_SET(flags, DISSECT_IMAGE_DEVICE_READ_ONLY) ? O_RDONLY : O_RDWR,
3438 /* sector_size= */ UINT32_MAX,
3439 FLAGS_SET(flags, DISSECT_IMAGE_NO_PARTITION_TABLE) ? 0 : LO_FLAGS_PARTSCAN,
3440 LOCK_SH,
3441 &d);
3442 if (r < 0)
3443 return log_error_errno(r, "Failed to set up loopback device for %s: %m", image);
3444
3445 r = dissect_loop_device_and_warn(d, &verity, NULL, flags, &dissected_image);
3446 if (r < 0)
3447 return r;
3448
3449 r = dissected_image_load_verity_sig_partition(dissected_image, d->fd, &verity);
3450 if (r < 0)
3451 return r;
3452
3453 r = dissected_image_decrypt_interactively(dissected_image, NULL, &verity, flags);
3454 if (r < 0)
3455 return r;
3456
3457 r = detach_mount_namespace();
3458 if (r < 0)
3459 return log_error_errno(r, "Failed to detach mount namespace: %m");
3460
3461 r = mkdir_p(temp, 0700);
3462 if (r < 0)
3463 return log_error_errno(r, "Failed to create mount point: %m");
3464
3465 created_dir = TAKE_PTR(temp);
3466
3467 r = dissected_image_mount_and_warn(dissected_image, created_dir, UID_INVALID, UID_INVALID, flags);
3468 if (r < 0)
3469 return r;
3470
3471 r = loop_device_flock(d, LOCK_UN);
3472 if (r < 0)
3473 return r;
3474
3475 r = dissected_image_relinquish(dissected_image);
3476 if (r < 0)
3477 return log_error_errno(r, "Failed to relinquish DM and loopback block devices: %m");
3478
3479 if (ret_dir_fd) {
3480 _cleanup_close_ int dir_fd = -EBADF;
3481
3482 dir_fd = open(created_dir, O_CLOEXEC|O_DIRECTORY);
3483 if (dir_fd < 0)
3484 return log_error_errno(errno, "Failed to open mount point directory: %m");
3485
3486 *ret_dir_fd = TAKE_FD(dir_fd);
3487 }
3488
3489 *ret_directory = TAKE_PTR(created_dir);
3490 *ret_loop_device = TAKE_PTR(d);
3491
3492 return 0;
3493 }
3494
3495 static bool mount_options_relax_extension_release_checks(const MountOptions *options) {
3496 if (!options)
3497 return false;
3498
3499 return string_contains_word(mount_options_from_designator(options, PARTITION_ROOT), ",", "x-systemd.relax-extension-release-check") ||
3500 string_contains_word(mount_options_from_designator(options, PARTITION_USR), ",", "x-systemd.relax-extension-release-check") ||
3501 string_contains_word(options->options, ",", "x-systemd.relax-extension-release-check");
3502 }
3503
3504 int verity_dissect_and_mount(
3505 int src_fd,
3506 const char *src,
3507 const char *dest,
3508 const MountOptions *options,
3509 const char *required_host_os_release_id,
3510 const char *required_host_os_release_version_id,
3511 const char *required_host_os_release_sysext_level,
3512 const char *required_sysext_scope) {
3513
3514 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
3515 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
3516 _cleanup_(verity_settings_done) VeritySettings verity = VERITY_SETTINGS_DEFAULT;
3517 DissectImageFlags dissect_image_flags;
3518 bool relax_extension_release_check;
3519 int r;
3520
3521 assert(src);
3522 assert(dest);
3523
3524 relax_extension_release_check = mount_options_relax_extension_release_checks(options);
3525
3526 /* We might get an FD for the image, but we use the original path to look for the dm-verity files */
3527 r = verity_settings_load(&verity, src, NULL, NULL);
3528 if (r < 0)
3529 return log_debug_errno(r, "Failed to load root hash: %m");
3530
3531 dissect_image_flags = (verity.data_path ? DISSECT_IMAGE_NO_PARTITION_TABLE : 0) |
3532 (relax_extension_release_check ? DISSECT_IMAGE_RELAX_SYSEXT_CHECK : 0) |
3533 DISSECT_IMAGE_ADD_PARTITION_DEVICES |
3534 DISSECT_IMAGE_PIN_PARTITION_DEVICES;
3535
3536 /* Note that we don't use loop_device_make here, as the FD is most likely O_PATH which would not be
3537 * accepted by LOOP_CONFIGURE, so just let loop_device_make_by_path reopen it as a regular FD. */
3538 r = loop_device_make_by_path(
3539 src_fd >= 0 ? FORMAT_PROC_FD_PATH(src_fd) : src,
3540 /* open_flags= */ -1,
3541 /* sector_size= */ UINT32_MAX,
3542 verity.data_path ? 0 : LO_FLAGS_PARTSCAN,
3543 LOCK_SH,
3544 &loop_device);
3545 if (r < 0)
3546 return log_debug_errno(r, "Failed to create loop device for image: %m");
3547
3548 r = dissect_loop_device(
3549 loop_device,
3550 &verity,
3551 options,
3552 dissect_image_flags,
3553 &dissected_image);
3554 /* No partition table? Might be a single-filesystem image, try again */
3555 if (!verity.data_path && r == -ENOPKG)
3556 r = dissect_loop_device(
3557 loop_device,
3558 &verity,
3559 options,
3560 dissect_image_flags | DISSECT_IMAGE_NO_PARTITION_TABLE,
3561 &dissected_image);
3562 if (r < 0)
3563 return log_debug_errno(r, "Failed to dissect image: %m");
3564
3565 r = dissected_image_load_verity_sig_partition(dissected_image, loop_device->fd, &verity);
3566 if (r < 0)
3567 return r;
3568
3569 r = dissected_image_decrypt(
3570 dissected_image,
3571 NULL,
3572 &verity,
3573 dissect_image_flags);
3574 if (r < 0)
3575 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
3576
3577 r = mkdir_p_label(dest, 0755);
3578 if (r < 0)
3579 return log_debug_errno(r, "Failed to create destination directory %s: %m", dest);
3580 r = umount_recursive(dest, 0);
3581 if (r < 0)
3582 return log_debug_errno(r, "Failed to umount under destination directory %s: %m", dest);
3583
3584 r = dissected_image_mount(dissected_image, dest, UID_INVALID, UID_INVALID, dissect_image_flags);
3585 if (r < 0)
3586 return log_debug_errno(r, "Failed to mount image: %m");
3587
3588 r = loop_device_flock(loop_device, LOCK_UN);
3589 if (r < 0)
3590 return log_debug_errno(r, "Failed to unlock loopback device: %m");
3591
3592 /* If we got os-release values from the caller, then we need to match them with the image's
3593 * extension-release.d/ content. Return -EINVAL if there's any mismatch.
3594 * First, check the distro ID. If that matches, then check the new SYSEXT_LEVEL value if
3595 * available, or else fallback to VERSION_ID. If neither is present (eg: rolling release),
3596 * then a simple match on the ID will be performed. */
3597 if (required_host_os_release_id) {
3598 _cleanup_strv_free_ char **extension_release = NULL;
3599
3600 assert(!isempty(required_host_os_release_id));
3601
3602 r = load_extension_release_pairs(dest, dissected_image->image_name, relax_extension_release_check, &extension_release);
3603 if (r < 0)
3604 return log_debug_errno(r, "Failed to parse image %s extension-release metadata: %m", dissected_image->image_name);
3605
3606 r = extension_release_validate(
3607 dissected_image->image_name,
3608 required_host_os_release_id,
3609 required_host_os_release_version_id,
3610 required_host_os_release_sysext_level,
3611 required_sysext_scope,
3612 extension_release);
3613 if (r == 0)
3614 return log_debug_errno(SYNTHETIC_ERRNO(ESTALE), "Image %s extension-release metadata does not match the root's", dissected_image->image_name);
3615 if (r < 0)
3616 return log_debug_errno(r, "Failed to compare image %s extension-release metadata with the root's os-release: %m", dissected_image->image_name);
3617 }
3618
3619 r = dissected_image_relinquish(dissected_image);
3620 if (r < 0)
3621 return log_debug_errno(r, "Failed to relinquish dissected image: %m");
3622
3623 return 0;
3624 }