]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/dissect-image.c
hwdb: Chuwi Hi12 (#17042)
[thirdparty/systemd.git] / src / shared / dissect-image.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
8c1be37e 2
10c1b188
LP
3#if HAVE_VALGRIND_MEMCHECK_H
4#include <valgrind/memcheck.h>
5#endif
6
01234e1f
YW
7#include <linux/dm-ioctl.h>
8#include <linux/loop.h>
8c1be37e 9#include <sys/mount.h>
3b925504
LP
10#include <sys/prctl.h>
11#include <sys/wait.h>
f5ea63a5 12#include <sysexits.h>
8c1be37e 13
3c1f2cee 14#include "sd-device.h"
dccca82b
LP
15#include "sd-id128.h"
16
8c1be37e 17#include "architecture.h"
18b5886e 18#include "ask-password-api.h"
8c1be37e 19#include "blkid-util.h"
18c528e9 20#include "blockdev-util.h"
3b925504 21#include "copy.h"
1e2f3230 22#include "cryptsetup-util.h"
3b925504 23#include "def.h"
553e15f2 24#include "device-nodes.h"
8437c059 25#include "device-util.h"
8c1be37e 26#include "dissect-image.h"
a709a315 27#include "dm-util.h"
686d13b9 28#include "env-file.h"
18b5886e 29#include "fd-util.h"
78ebe980 30#include "fileio.h"
2eedfd2d 31#include "fs-util.h"
cf32c486 32#include "fsck-util.h"
8c1be37e 33#include "gpt.h"
78ebe980 34#include "hexdecoct.h"
3b925504
LP
35#include "hostname-util.h"
36#include "id128-util.h"
6aa05ebd 37#include "mkdir.h"
8c1be37e 38#include "mount-util.h"
e4de7287 39#include "mountpoint-util.h"
6aa05ebd 40#include "namespace-util.h"
d8b4d14d 41#include "nulstr-util.h"
d58ad743 42#include "os-util.h"
8c1be37e 43#include "path-util.h"
3b925504
LP
44#include "process-util.h"
45#include "raw-clone.h"
46#include "signal-util.h"
8c1be37e 47#include "stat-util.h"
18b5886e 48#include "stdio-util.h"
8c1be37e
LP
49#include "string-table.h"
50#include "string-util.h"
2eedfd2d 51#include "strv.h"
e4de7287 52#include "tmpfile-util.h"
a8040b6d 53#include "udev-util.h"
2d3a5a73 54#include "user-util.h"
41488e1f 55#include "xattr-util.h"
8c1be37e 56
28e2641a
FF
57/* how many times to wait for the device nodes to appear */
58#define N_DEVICE_NODE_LIST_ATTEMPTS 10
59
c34b75a1 60int probe_filesystem(const char *node, char **ret_fstype) {
7cc84b2c 61 /* Try to find device content type and return it in *ret_fstype. If nothing is found,
5238e957 62 * 0/NULL will be returned. -EUCLEAN will be returned for ambiguous results, and an
7cc84b2c
ZJS
63 * different error otherwise. */
64
349cc4a5 65#if HAVE_BLKID
8e766630 66 _cleanup_(blkid_free_probep) blkid_probe b = NULL;
18b5886e
LP
67 const char *fstype;
68 int r;
69
995fa2e5 70 errno = 0;
18b5886e
LP
71 b = blkid_new_probe_from_filename(node);
72 if (!b)
66855de7 73 return errno_or_else(ENOMEM);
18b5886e
LP
74
75 blkid_probe_enable_superblocks(b, 1);
76 blkid_probe_set_superblocks_flags(b, BLKID_SUBLKS_TYPE);
77
78 errno = 0;
79 r = blkid_do_safeprobe(b);
7cc84b2c
ZJS
80 if (r == 1) {
81 log_debug("No type detected on partition %s", node);
18b5886e
LP
82 goto not_found;
83 }
58dfbfbd
LP
84 if (r == -2)
85 return log_debug_errno(SYNTHETIC_ERRNO(EUCLEAN),
86 "Results ambiguous for partition %s", node);
b382db9f 87 if (r != 0)
66855de7 88 return errno_or_else(EIO);
18b5886e
LP
89
90 (void) blkid_probe_lookup_value(b, "TYPE", &fstype, NULL);
91
92 if (fstype) {
93 char *t;
94
95 t = strdup(fstype);
96 if (!t)
97 return -ENOMEM;
98
99 *ret_fstype = t;
100 return 1;
101 }
102
103not_found:
104 *ret_fstype = NULL;
105 return 0;
d1c536f5
ZJS
106#else
107 return -EOPNOTSUPP;
a75e27eb 108#endif
d1c536f5 109}
18b5886e 110
40c10d3f 111#if HAVE_BLKID
cde942f6
JPRV
112/* Detect RPMB and Boot partitions, which are not listed by blkid.
113 * See https://github.com/systemd/systemd/issues/5806. */
3c1f2cee 114static bool device_is_mmc_special_partition(sd_device *d) {
aae22eb3
LP
115 const char *sysname;
116
f70e7f70
LP
117 assert(d);
118
3c1f2cee
YW
119 if (sd_device_get_sysname(d, &sysname) < 0)
120 return false;
121
122 return startswith(sysname, "mmcblk") &&
0cfa78dd 123 (endswith(sysname, "rpmb") || endswith(sysname, "boot0") || endswith(sysname, "boot1"));
cde942f6
JPRV
124}
125
3c1f2cee 126static bool device_is_block(sd_device *d) {
aae22eb3
LP
127 const char *ss;
128
f70e7f70
LP
129 assert(d);
130
3c1f2cee 131 if (sd_device_get_subsystem(d, &ss) < 0)
aae22eb3
LP
132 return false;
133
134 return streq(ss, "block");
135}
ea887be0
ZJS
136
137static int enumerator_for_parent(sd_device *d, sd_device_enumerator **ret) {
138 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
139 int r;
140
f70e7f70
LP
141 assert(d);
142 assert(ret);
143
ea887be0
ZJS
144 r = sd_device_enumerator_new(&e);
145 if (r < 0)
146 return r;
147
148 r = sd_device_enumerator_allow_uninitialized(e);
149 if (r < 0)
150 return r;
151
152 r = sd_device_enumerator_add_match_parent(e, d);
153 if (r < 0)
154 return r;
155
156 *ret = TAKE_PTR(e);
157 return 0;
158}
159
ea887be0
ZJS
160static int wait_for_partitions_to_appear(
161 int fd,
162 sd_device *d,
163 unsigned num_partitions,
052eaf5c 164 DissectImageFlags flags,
ea887be0
ZJS
165 sd_device_enumerator **ret_enumerator) {
166
167 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
168 sd_device *q;
169 unsigned n;
170 int r;
171
f70e7f70
LP
172 assert(fd >= 0);
173 assert(d);
174 assert(ret_enumerator);
175
ea887be0
ZJS
176 r = enumerator_for_parent(d, &e);
177 if (r < 0)
178 return r;
179
180 /* Count the partitions enumerated by the kernel */
181 n = 0;
182 FOREACH_DEVICE(e, q) {
183 if (sd_device_get_devnum(q, NULL) < 0)
184 continue;
185 if (!device_is_block(q))
186 continue;
187 if (device_is_mmc_special_partition(q))
188 continue;
189
052eaf5c 190 if (!FLAGS_SET(flags, DISSECT_IMAGE_NO_UDEV)) {
1b47436e 191 r = device_wait_for_initialization(q, "block", USEC_INFINITY, NULL);
052eaf5c
LP
192 if (r < 0)
193 return r;
194 }
a8040b6d 195
ea887be0
ZJS
196 n++;
197 }
198
199 if (n == num_partitions + 1) {
200 *ret_enumerator = TAKE_PTR(e);
201 return 0; /* success! */
202 }
203 if (n > num_partitions + 1)
204 return log_debug_errno(SYNTHETIC_ERRNO(EIO),
205 "blkid and kernel partition lists do not match.");
206
207 /* The kernel has probed fewer partitions than blkid? Maybe the kernel prober is still running or it
208 * got EBUSY because udev already opened the device. Let's reprobe the device, which is a synchronous
209 * call that waits until probing is complete. */
210
211 for (unsigned j = 0; ; j++) {
212 if (j++ > 20)
213 return -EBUSY;
214
215 if (ioctl(fd, BLKRRPART, 0) >= 0)
216 break;
217 r = -errno;
218 if (r == -EINVAL) {
834c15ec
LP
219 /* If we are running on a block device that has partition scanning off, return an
220 * explicit recognizable error about this, so that callers can generate a proper
221 * message explaining the situation. */
ea887be0 222
834c15ec
LP
223 r = blockdev_partscan_enabled(fd);
224 if (r < 0)
225 return r;
226 if (r == 0)
227 return log_debug_errno(EPROTONOSUPPORT,
228 "Device is a loop device and partition scanning is off!");
10c1b188 229
834c15ec 230 return -EINVAL; /* original error */
ea887be0
ZJS
231 }
232 if (r != -EBUSY)
233 return r;
234
235 /* If something else has the device open, such as an udev rule, the ioctl will return
236 * EBUSY. Since there's no way to wait until it isn't busy anymore, let's just wait a bit,
237 * and try again.
238 *
239 * This is really something they should fix in the kernel! */
240 (void) usleep(50 * USEC_PER_MSEC);
241
242 }
243
244 return -EAGAIN; /* no success yet, try again */
245}
246
247static int loop_wait_for_partitions_to_appear(
248 int fd,
249 sd_device *d,
250 unsigned num_partitions,
052eaf5c 251 DissectImageFlags flags,
ea887be0 252 sd_device_enumerator **ret_enumerator) {
a8040b6d 253 _cleanup_(sd_device_unrefp) sd_device *device = NULL;
ea887be0
ZJS
254 int r;
255
f70e7f70
LP
256 assert(fd >= 0);
257 assert(d);
258 assert(ret_enumerator);
259
b887c8b8
ZJS
260 log_debug("Waiting for device (parent + %d partitions) to appear...", num_partitions);
261
052eaf5c 262 if (!FLAGS_SET(flags, DISSECT_IMAGE_NO_UDEV)) {
1b47436e 263 r = device_wait_for_initialization(d, "block", USEC_INFINITY, &device);
052eaf5c
LP
264 if (r < 0)
265 return r;
266 } else
267 device = sd_device_ref(d);
a8040b6d 268
ea887be0 269 for (unsigned i = 0; i < N_DEVICE_NODE_LIST_ATTEMPTS; i++) {
052eaf5c 270 r = wait_for_partitions_to_appear(fd, device, num_partitions, flags, ret_enumerator);
ea887be0
ZJS
271 if (r != -EAGAIN)
272 return r;
273 }
274
275 return log_debug_errno(SYNTHETIC_ERRNO(ENXIO),
276 "Kernel partitions dit not appear within %d attempts",
277 N_DEVICE_NODE_LIST_ATTEMPTS);
278}
279
0f7c9a3d
LP
280static void check_partition_flags(
281 const char *node,
282 unsigned long long pflags,
283 unsigned long long supported) {
284
285 assert(node);
286
287 /* Mask away all flags supported by this partition's type and the three flags the UEFI spec defines generically */
288 pflags &= ~(supported | GPT_FLAG_REQUIRED_PARTITION | GPT_FLAG_NO_BLOCK_IO_PROTOCOL | GPT_FLAG_LEGACY_BIOS_BOOTABLE);
289
290 if (pflags == 0)
291 return;
292
293 /* If there are other bits set, then log about it, to make things discoverable */
294 for (unsigned i = 0; i < sizeof(pflags) * 8; i++) {
295 unsigned long long bit = 1ULL << i;
296 if (!FLAGS_SET(pflags, bit))
297 continue;
298
299 log_debug("Unexpected partition flag %llu set on %s!", bit, node);
300 }
301}
302
40c10d3f 303#endif
aae22eb3 304
4526113f
LP
305int dissect_image(
306 int fd,
89e62e0b 307 const VeritySettings *verity,
18d73705 308 const MountOptions *mount_options,
4526113f
LP
309 DissectImageFlags flags,
310 DissectedImage **ret) {
8c1be37e 311
349cc4a5 312#if HAVE_BLKID
4623e8e6 313 sd_id128_t root_uuid = SD_ID128_NULL, verity_uuid = SD_ID128_NULL;
3c1f2cee 314 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
8c1be37e 315 bool is_gpt, is_mbr, generic_rw, multiple_generic = false;
3c1f2cee 316 _cleanup_(sd_device_unrefp) sd_device *d = NULL;
8c1be37e 317 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
8e766630 318 _cleanup_(blkid_free_probep) blkid_probe b = NULL;
8c1be37e 319 _cleanup_free_ char *generic_node = NULL;
be30ad41 320 sd_id128_t generic_uuid = SD_ID128_NULL;
9b6deb03 321 const char *pttype = NULL;
8c1be37e
LP
322 blkid_partlist pl;
323 int r, generic_nr;
324 struct stat st;
3c1f2cee 325 sd_device *q;
8c1be37e
LP
326
327 assert(fd >= 0);
328 assert(ret);
89e62e0b 329 assert(!verity || verity->root_hash || verity->root_hash_size == 0);
e7cbe5cb 330 assert(!((flags & DISSECT_IMAGE_GPT_ONLY) && (flags & DISSECT_IMAGE_NO_PARTITION_TABLE)));
8c1be37e
LP
331
332 /* Probes a disk image, and returns information about what it found in *ret.
333 *
4623e8e6
LP
334 * Returns -ENOPKG if no suitable partition table or file system could be found.
335 * Returns -EADDRNOTAVAIL if a root hash was specified but no matching root/verity partitions found. */
336
89e62e0b 337 if (verity && verity->root_hash) {
4623e8e6
LP
338 /* If a root hash is supplied, then we use the root partition that has a UUID that match the first
339 * 128bit of the root hash. And we use the verity partition that has a UUID that match the final
340 * 128bit. */
341
89e62e0b 342 if (verity->root_hash_size < sizeof(sd_id128_t))
4623e8e6
LP
343 return -EINVAL;
344
89e62e0b
LP
345 memcpy(&root_uuid, verity->root_hash, sizeof(sd_id128_t));
346 memcpy(&verity_uuid, (const uint8_t*) verity->root_hash + verity->root_hash_size - sizeof(sd_id128_t), sizeof(sd_id128_t));
4623e8e6
LP
347
348 if (sd_id128_is_null(root_uuid))
349 return -EINVAL;
350 if (sd_id128_is_null(verity_uuid))
351 return -EINVAL;
352 }
8c1be37e
LP
353
354 if (fstat(fd, &st) < 0)
355 return -errno;
356
357 if (!S_ISBLK(st.st_mode))
358 return -ENOTBLK;
359
360 b = blkid_new_probe();
361 if (!b)
362 return -ENOMEM;
363
364 errno = 0;
365 r = blkid_probe_set_device(b, fd, 0, 0);
b382db9f 366 if (r != 0)
66855de7 367 return errno_or_else(ENOMEM);
8c1be37e 368
9b6deb03
LP
369 if ((flags & DISSECT_IMAGE_GPT_ONLY) == 0) {
370 /* Look for file system superblocks, unless we only shall look for GPT partition tables */
371 blkid_probe_enable_superblocks(b, 1);
372 blkid_probe_set_superblocks_flags(b, BLKID_SUBLKS_TYPE|BLKID_SUBLKS_USAGE);
373 }
374
8c1be37e
LP
375 blkid_probe_enable_partitions(b, 1);
376 blkid_probe_set_partitions_flags(b, BLKID_PARTS_ENTRY_DETAILS);
377
378 errno = 0;
379 r = blkid_do_safeprobe(b);
59ba6d0c
LP
380 if (IN_SET(r, -2, 1))
381 return log_debug_errno(SYNTHETIC_ERRNO(ENOPKG), "Failed to identify any partition table.");
b382db9f 382 if (r != 0)
66855de7 383 return errno_or_else(EIO);
8c1be37e
LP
384
385 m = new0(DissectedImage, 1);
386 if (!m)
387 return -ENOMEM;
388
b887c8b8
ZJS
389 r = sd_device_new_from_devnum(&d, 'b', st.st_rdev);
390 if (r < 0)
391 return r;
392
e7cbe5cb
LB
393 if ((!(flags & DISSECT_IMAGE_GPT_ONLY) &&
394 (flags & DISSECT_IMAGE_REQUIRE_ROOT)) ||
395 (flags & DISSECT_IMAGE_NO_PARTITION_TABLE)) {
9b6deb03 396 const char *usage = NULL;
8c1be37e 397
9b6deb03
LP
398 (void) blkid_probe_lookup_value(b, "USAGE", &usage, NULL);
399 if (STRPTR_IN_SET(usage, "filesystem", "crypto")) {
18d73705
LB
400 _cleanup_free_ char *t = NULL, *n = NULL, *o = NULL;
401 const char *fstype = NULL, *options = NULL;
8c1be37e 402
9b6deb03
LP
403 /* OK, we have found a file system, that's our root partition then. */
404 (void) blkid_probe_lookup_value(b, "TYPE", &fstype, NULL);
8c1be37e 405
9b6deb03
LP
406 if (fstype) {
407 t = strdup(fstype);
408 if (!t)
409 return -ENOMEM;
410 }
411
54b22b26
LP
412 r = device_path_make_major_minor(st.st_mode, st.st_rdev, &n);
413 if (r < 0)
414 return r;
8c1be37e 415
e7cbe5cb 416 m->single_file_system = true;
89e62e0b
LP
417 m->verity = verity && verity->root_hash && verity->data_path;
418 m->can_verity = verity && verity->data_path;
e7cbe5cb 419
f5215bc8 420 options = mount_options_from_designator(mount_options, PARTITION_ROOT);
18d73705
LB
421 if (options) {
422 o = strdup(options);
423 if (!o)
424 return -ENOMEM;
425 }
426
9b6deb03
LP
427 m->partitions[PARTITION_ROOT] = (DissectedPartition) {
428 .found = true,
e7cbe5cb 429 .rw = !m->verity,
9b6deb03
LP
430 .partno = -1,
431 .architecture = _ARCHITECTURE_INVALID,
1cc6c93a
YW
432 .fstype = TAKE_PTR(t),
433 .node = TAKE_PTR(n),
18d73705 434 .mount_options = TAKE_PTR(o),
9b6deb03 435 };
8c1be37e 436
4db1879a 437 m->encrypted = streq_ptr(fstype, "crypto_LUKS");
18b5886e 438
b1806441
LB
439 /* Even on a single partition we need to wait for udev to create the
440 * /dev/block/X:Y symlink to /dev/loopZ */
441 r = loop_wait_for_partitions_to_appear(fd, d, 0, flags, &e);
442 if (r < 0)
443 return r;
1cc6c93a 444 *ret = TAKE_PTR(m);
8c1be37e 445
9b6deb03
LP
446 return 0;
447 }
8c1be37e
LP
448 }
449
450 (void) blkid_probe_lookup_value(b, "PTTYPE", &pttype, NULL);
451 if (!pttype)
452 return -ENOPKG;
453
454 is_gpt = streq_ptr(pttype, "gpt");
455 is_mbr = streq_ptr(pttype, "dos");
456
9b6deb03 457 if (!is_gpt && ((flags & DISSECT_IMAGE_GPT_ONLY) || !is_mbr))
8c1be37e
LP
458 return -ENOPKG;
459
460 errno = 0;
461 pl = blkid_probe_get_partitions(b);
b382db9f 462 if (!pl)
66855de7 463 return errno_or_else(ENOMEM);
8c1be37e 464
052eaf5c 465 r = loop_wait_for_partitions_to_appear(fd, d, blkid_partlist_numof_partitions(pl), flags, &e);
ea887be0
ZJS
466 if (r < 0)
467 return r;
8c1be37e 468
8437c059 469 FOREACH_DEVICE(e, q) {
9b6deb03 470 unsigned long long pflags;
8c1be37e 471 blkid_partition pp;
cde942f6 472 const char *node;
8c1be37e
LP
473 dev_t qn;
474 int nr;
475
3c1f2cee
YW
476 r = sd_device_get_devnum(q, &qn);
477 if (r < 0)
8c1be37e
LP
478 continue;
479
480 if (st.st_rdev == qn)
481 continue;
482
aae22eb3
LP
483 if (!device_is_block(q))
484 continue;
485
cde942f6 486 if (device_is_mmc_special_partition(q))
7be1420f
LP
487 continue;
488
3c1f2cee
YW
489 r = sd_device_get_devname(q, &node);
490 if (r < 0)
8c1be37e
LP
491 continue;
492
493 pp = blkid_partlist_devno_to_partition(pl, qn);
494 if (!pp)
495 continue;
496
9b6deb03 497 pflags = blkid_partition_get_flags(pp);
8c1be37e
LP
498
499 nr = blkid_partition_get_partno(pp);
500 if (nr < 0)
501 continue;
502
503 if (is_gpt) {
569a0e42
LP
504 PartitionDesignator designator = _PARTITION_DESIGNATOR_INVALID;
505 int architecture = _ARCHITECTURE_INVALID;
4623e8e6
LP
506 const char *stype, *sid, *fstype = NULL;
507 sd_id128_t type_id, id;
8c1be37e
LP
508 bool rw = true;
509
4623e8e6
LP
510 sid = blkid_partition_get_uuid(pp);
511 if (!sid)
512 continue;
513 if (sd_id128_from_string(sid, &id) < 0)
514 continue;
515
8c1be37e
LP
516 stype = blkid_partition_get_type_string(pp);
517 if (!stype)
518 continue;
8c1be37e
LP
519 if (sd_id128_from_string(stype, &type_id) < 0)
520 continue;
521
522 if (sd_id128_equal(type_id, GPT_HOME)) {
a48dd347 523
0f7c9a3d
LP
524 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
525
a48dd347
LP
526 if (pflags & GPT_FLAG_NO_AUTO)
527 continue;
528
8c1be37e 529 designator = PARTITION_HOME;
9b6deb03 530 rw = !(pflags & GPT_FLAG_READ_ONLY);
8c1be37e 531 } else if (sd_id128_equal(type_id, GPT_SRV)) {
a48dd347 532
0f7c9a3d
LP
533 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
534
a48dd347
LP
535 if (pflags & GPT_FLAG_NO_AUTO)
536 continue;
537
8c1be37e 538 designator = PARTITION_SRV;
9b6deb03 539 rw = !(pflags & GPT_FLAG_READ_ONLY);
8c1be37e 540 } else if (sd_id128_equal(type_id, GPT_ESP)) {
a48dd347
LP
541
542 /* Note that we don't check the GPT_FLAG_NO_AUTO flag for the ESP, as it is not defined
543 * there. We instead check the GPT_FLAG_NO_BLOCK_IO_PROTOCOL, as recommended by the
544 * UEFI spec (See "12.3.3 Number and Location of System Partitions"). */
545
546 if (pflags & GPT_FLAG_NO_BLOCK_IO_PROTOCOL)
547 continue;
548
8c1be37e
LP
549 designator = PARTITION_ESP;
550 fstype = "vfat";
a8c47660
LP
551
552 } else if (sd_id128_equal(type_id, GPT_XBOOTLDR)) {
553
0f7c9a3d
LP
554 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
555
a8c47660
LP
556 if (pflags & GPT_FLAG_NO_AUTO)
557 continue;
558
559 designator = PARTITION_XBOOTLDR;
560 rw = !(pflags & GPT_FLAG_READ_ONLY);
8c1be37e
LP
561 }
562#ifdef GPT_ROOT_NATIVE
563 else if (sd_id128_equal(type_id, GPT_ROOT_NATIVE)) {
4623e8e6 564
0f7c9a3d
LP
565 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
566
a48dd347
LP
567 if (pflags & GPT_FLAG_NO_AUTO)
568 continue;
569
4623e8e6
LP
570 /* If a root ID is specified, ignore everything but the root id */
571 if (!sd_id128_is_null(root_uuid) && !sd_id128_equal(root_uuid, id))
572 continue;
573
8c1be37e
LP
574 designator = PARTITION_ROOT;
575 architecture = native_architecture();
9b6deb03 576 rw = !(pflags & GPT_FLAG_READ_ONLY);
4f8b86e3 577 } else if (sd_id128_equal(type_id, GPT_ROOT_NATIVE_VERITY)) {
4623e8e6 578
0f7c9a3d
LP
579 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
580
a48dd347
LP
581 if (pflags & GPT_FLAG_NO_AUTO)
582 continue;
583
4623e8e6
LP
584 m->can_verity = true;
585
586 /* Ignore verity unless a root hash is specified */
587 if (sd_id128_is_null(verity_uuid) || !sd_id128_equal(verity_uuid, id))
588 continue;
589
590 designator = PARTITION_ROOT_VERITY;
591 fstype = "DM_verity_hash";
592 architecture = native_architecture();
593 rw = false;
594 }
595#endif
8c1be37e
LP
596#ifdef GPT_ROOT_SECONDARY
597 else if (sd_id128_equal(type_id, GPT_ROOT_SECONDARY)) {
4623e8e6 598
0f7c9a3d
LP
599 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
600
a48dd347
LP
601 if (pflags & GPT_FLAG_NO_AUTO)
602 continue;
603
4623e8e6
LP
604 /* If a root ID is specified, ignore everything but the root id */
605 if (!sd_id128_is_null(root_uuid) && !sd_id128_equal(root_uuid, id))
606 continue;
607
8c1be37e
LP
608 designator = PARTITION_ROOT_SECONDARY;
609 architecture = SECONDARY_ARCHITECTURE;
9b6deb03 610 rw = !(pflags & GPT_FLAG_READ_ONLY);
4f8b86e3 611 } else if (sd_id128_equal(type_id, GPT_ROOT_SECONDARY_VERITY)) {
a48dd347 612
0f7c9a3d
LP
613 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
614
a48dd347
LP
615 if (pflags & GPT_FLAG_NO_AUTO)
616 continue;
617
4623e8e6
LP
618 m->can_verity = true;
619
620 /* Ignore verity unless root has is specified */
621 if (sd_id128_is_null(verity_uuid) || !sd_id128_equal(verity_uuid, id))
622 continue;
623
624 designator = PARTITION_ROOT_SECONDARY_VERITY;
625 fstype = "DM_verity_hash";
626 architecture = SECONDARY_ARCHITECTURE;
627 rw = false;
628 }
8c1be37e
LP
629#endif
630 else if (sd_id128_equal(type_id, GPT_SWAP)) {
a48dd347 631
0f7c9a3d
LP
632 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO);
633
a48dd347
LP
634 if (pflags & GPT_FLAG_NO_AUTO)
635 continue;
636
8c1be37e
LP
637 designator = PARTITION_SWAP;
638 fstype = "swap";
639 } else if (sd_id128_equal(type_id, GPT_LINUX_GENERIC)) {
640
0f7c9a3d
LP
641 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
642
a48dd347
LP
643 if (pflags & GPT_FLAG_NO_AUTO)
644 continue;
645
8c1be37e
LP
646 if (generic_node)
647 multiple_generic = true;
648 else {
649 generic_nr = nr;
9b6deb03 650 generic_rw = !(pflags & GPT_FLAG_READ_ONLY);
be30ad41 651 generic_uuid = id;
8c1be37e
LP
652 generic_node = strdup(node);
653 if (!generic_node)
654 return -ENOMEM;
655 }
d4dffb85
LP
656
657 } else if (sd_id128_equal(type_id, GPT_TMP)) {
658
0f7c9a3d
LP
659 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
660
d4dffb85
LP
661 if (pflags & GPT_FLAG_NO_AUTO)
662 continue;
663
664 designator = PARTITION_TMP;
665 rw = !(pflags & GPT_FLAG_READ_ONLY);
666
667 } else if (sd_id128_equal(type_id, GPT_VAR)) {
668
0f7c9a3d
LP
669 check_partition_flags(node, pflags, GPT_FLAG_NO_AUTO|GPT_FLAG_READ_ONLY);
670
d4dffb85
LP
671 if (pflags & GPT_FLAG_NO_AUTO)
672 continue;
673
674 if (!FLAGS_SET(flags, DISSECT_IMAGE_RELAX_VAR_CHECK)) {
675 sd_id128_t var_uuid;
676
677 /* For /var we insist that the uuid of the partition matches the
678 * HMAC-SHA256 of the /var GPT partition type uuid, keyed by machine
679 * ID. Why? Unlike the other partitions /var is inherently
680 * installation specific, hence we need to be careful not to mount it
681 * in the wrong installation. By hashing the partition UUID from
682 * /etc/machine-id we can securely bind the partition to the
683 * installation. */
684
685 r = sd_id128_get_machine_app_specific(GPT_VAR, &var_uuid);
686 if (r < 0)
687 return r;
688
689 if (!sd_id128_equal(var_uuid, id)) {
690 log_debug("Found a /var/ partition, but its UUID didn't match our expectations, ignoring.");
691 continue;
692 }
693 }
694
695 designator = PARTITION_VAR;
696 rw = !(pflags & GPT_FLAG_READ_ONLY);
8c1be37e
LP
697 }
698
699 if (designator != _PARTITION_DESIGNATOR_INVALID) {
18d73705
LB
700 _cleanup_free_ char *t = NULL, *n = NULL, *o = NULL;
701 const char *options = NULL;
8c1be37e
LP
702
703 /* First one wins */
704 if (m->partitions[designator].found)
705 continue;
706
707 if (fstype) {
708 t = strdup(fstype);
709 if (!t)
710 return -ENOMEM;
711 }
712
713 n = strdup(node);
714 if (!n)
715 return -ENOMEM;
716
f5215bc8 717 options = mount_options_from_designator(mount_options, designator);
18d73705
LB
718 if (options) {
719 o = strdup(options);
720 if (!o)
721 return -ENOMEM;
722 }
723
8c1be37e
LP
724 m->partitions[designator] = (DissectedPartition) {
725 .found = true,
726 .partno = nr,
727 .rw = rw,
728 .architecture = architecture,
1cc6c93a
YW
729 .node = TAKE_PTR(n),
730 .fstype = TAKE_PTR(t),
be30ad41 731 .uuid = id,
18d73705 732 .mount_options = TAKE_PTR(o),
8c1be37e 733 };
8c1be37e
LP
734 }
735
736 } else if (is_mbr) {
737
a8c47660 738 switch (blkid_partition_get_type(pp)) {
8c1be37e 739
a8c47660
LP
740 case 0x83: /* Linux partition */
741
742 if (pflags != 0x80) /* Bootable flag */
743 continue;
8c1be37e 744
a8c47660
LP
745 if (generic_node)
746 multiple_generic = true;
747 else {
748 generic_nr = nr;
749 generic_rw = true;
750 generic_node = strdup(node);
751 if (!generic_node)
752 return -ENOMEM;
753 }
754
755 break;
756
757 case 0xEA: { /* Boot Loader Spec extended $BOOT partition */
18d73705 758 _cleanup_free_ char *n = NULL, *o = NULL;
a8c47660 759 sd_id128_t id = SD_ID128_NULL;
18d73705 760 const char *sid, *options = NULL;
a8c47660
LP
761
762 /* First one wins */
763 if (m->partitions[PARTITION_XBOOTLDR].found)
764 continue;
765
766 sid = blkid_partition_get_uuid(pp);
767 if (sid)
768 (void) sd_id128_from_string(sid, &id);
769
770 n = strdup(node);
771 if (!n)
8c1be37e 772 return -ENOMEM;
a8c47660 773
f5215bc8 774 options = mount_options_from_designator(mount_options, PARTITION_XBOOTLDR);
18d73705
LB
775 if (options) {
776 o = strdup(options);
777 if (!o)
778 return -ENOMEM;
779 }
780
a8c47660
LP
781 m->partitions[PARTITION_XBOOTLDR] = (DissectedPartition) {
782 .found = true,
783 .partno = nr,
784 .rw = true,
785 .architecture = _ARCHITECTURE_INVALID,
786 .node = TAKE_PTR(n),
787 .uuid = id,
18d73705 788 .mount_options = TAKE_PTR(o),
a8c47660
LP
789 };
790
791 break;
792 }}
8c1be37e
LP
793 }
794 }
795
796 if (!m->partitions[PARTITION_ROOT].found) {
797 /* No root partition found? Then let's see if ther's one for the secondary architecture. And if not
798 * either, then check if there's a single generic one, and use that. */
799
4623e8e6 800 if (m->partitions[PARTITION_ROOT_VERITY].found)
e0f9e7bd 801 return -EADDRNOTAVAIL;
4623e8e6 802
8c1be37e
LP
803 if (m->partitions[PARTITION_ROOT_SECONDARY].found) {
804 m->partitions[PARTITION_ROOT] = m->partitions[PARTITION_ROOT_SECONDARY];
805 zero(m->partitions[PARTITION_ROOT_SECONDARY]);
4623e8e6
LP
806
807 m->partitions[PARTITION_ROOT_VERITY] = m->partitions[PARTITION_ROOT_SECONDARY_VERITY];
808 zero(m->partitions[PARTITION_ROOT_SECONDARY_VERITY]);
809
e0f9e7bd 810 } else if (flags & DISSECT_IMAGE_REQUIRE_ROOT) {
18d73705
LB
811 _cleanup_free_ char *o = NULL;
812 const char *options = NULL;
e0f9e7bd 813
2aed63f4
ZJS
814 /* If the root hash was set, then we won't fall back to a generic node, because the
815 * root hash decides. */
89e62e0b 816 if (verity && verity->root_hash)
e0f9e7bd 817 return -EADDRNOTAVAIL;
8c1be37e 818
e0f9e7bd
LP
819 /* If we didn't find a generic node, then we can't fix this up either */
820 if (!generic_node)
821 return -ENXIO;
822
823 /* If we didn't find a properly marked root partition, but we did find a single suitable
824 * generic Linux partition, then use this as root partition, if the caller asked for it. */
8c1be37e
LP
825 if (multiple_generic)
826 return -ENOTUNIQ;
827
f5215bc8 828 options = mount_options_from_designator(mount_options, PARTITION_ROOT);
18d73705
LB
829 if (options) {
830 o = strdup(options);
831 if (!o)
832 return -ENOMEM;
833 }
834
8c1be37e
LP
835 m->partitions[PARTITION_ROOT] = (DissectedPartition) {
836 .found = true,
837 .rw = generic_rw,
838 .partno = generic_nr,
839 .architecture = _ARCHITECTURE_INVALID,
1cc6c93a 840 .node = TAKE_PTR(generic_node),
be30ad41 841 .uuid = generic_uuid,
18d73705 842 .mount_options = TAKE_PTR(o),
8c1be37e 843 };
e0f9e7bd 844 }
8c1be37e
LP
845 }
846
89e62e0b 847 if (verity && verity->root_hash) {
e0f9e7bd 848 if (!m->partitions[PARTITION_ROOT_VERITY].found || !m->partitions[PARTITION_ROOT].found)
4623e8e6
LP
849 return -EADDRNOTAVAIL;
850
851 /* If we found the primary root with the hash, then we definitely want to suppress any secondary root
852 * (which would be weird, after all the root hash should only be assigned to one pair of
853 * partitions... */
854 m->partitions[PARTITION_ROOT_SECONDARY].found = false;
855 m->partitions[PARTITION_ROOT_SECONDARY_VERITY].found = false;
856
857 /* If we found a verity setup, then the root partition is necessarily read-only. */
858 m->partitions[PARTITION_ROOT].rw = false;
859
860 m->verity = true;
861 }
862
18b5886e
LP
863 blkid_free_probe(b);
864 b = NULL;
865
8c1be37e 866 /* Fill in file system types if we don't know them yet. */
569a0e42 867 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
18b5886e 868 DissectedPartition *p = m->partitions + i;
8c1be37e 869
18b5886e 870 if (!p->found)
8c1be37e
LP
871 continue;
872
18b5886e
LP
873 if (!p->fstype && p->node) {
874 r = probe_filesystem(p->node, &p->fstype);
7cc84b2c 875 if (r < 0 && r != -EUCLEAN)
18b5886e 876 return r;
8c1be37e
LP
877 }
878
18b5886e
LP
879 if (streq_ptr(p->fstype, "crypto_LUKS"))
880 m->encrypted = true;
896f937f
LP
881
882 if (p->fstype && fstype_is_ro(p->fstype))
883 p->rw = false;
8c1be37e
LP
884 }
885
1cc6c93a 886 *ret = TAKE_PTR(m);
8c1be37e
LP
887
888 return 0;
889#else
890 return -EOPNOTSUPP;
891#endif
892}
893
894DissectedImage* dissected_image_unref(DissectedImage *m) {
8c1be37e
LP
895 if (!m)
896 return NULL;
897
569a0e42 898 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
8c1be37e
LP
899 free(m->partitions[i].fstype);
900 free(m->partitions[i].node);
18b5886e
LP
901 free(m->partitions[i].decrypted_fstype);
902 free(m->partitions[i].decrypted_node);
18d73705 903 free(m->partitions[i].mount_options);
8c1be37e
LP
904 }
905
3b925504
LP
906 free(m->hostname);
907 strv_free(m->machine_info);
908 strv_free(m->os_release);
909
5fecf46d 910 return mfree(m);
8c1be37e
LP
911}
912
18b5886e 913static int is_loop_device(const char *path) {
553e15f2 914 char s[SYS_BLOCK_PATH_MAX("/../loop/")];
18b5886e
LP
915 struct stat st;
916
917 assert(path);
918
919 if (stat(path, &st) < 0)
920 return -errno;
921
922 if (!S_ISBLK(st.st_mode))
923 return -ENOTBLK;
924
553e15f2 925 xsprintf_sys_block_path(s, "/loop/", st.st_dev);
18b5886e
LP
926 if (access(s, F_OK) < 0) {
927 if (errno != ENOENT)
928 return -errno;
929
930 /* The device itself isn't a loop device, but maybe it's a partition and its parent is? */
553e15f2 931 xsprintf_sys_block_path(s, "/../loop/", st.st_dev);
18b5886e
LP
932 if (access(s, F_OK) < 0)
933 return errno == ENOENT ? false : -errno;
934 }
935
936 return true;
937}
938
cf32c486
LP
939static int run_fsck(const char *node, const char *fstype) {
940 int r, exit_status;
941 pid_t pid;
942
943 assert(node);
944 assert(fstype);
945
946 r = fsck_exists(fstype);
947 if (r < 0) {
948 log_debug_errno(r, "Couldn't determine whether fsck for %s exists, proceeding anyway.", fstype);
949 return 0;
950 }
951 if (r == 0) {
952 log_debug("Not checking partition %s, as fsck for %s does not exist.", node, fstype);
953 return 0;
954 }
955
956 r = safe_fork("(fsck)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_RLIMIT_NOFILE_SAFE|FORK_DEATHSIG|FORK_NULL_STDIO, &pid);
957 if (r < 0)
958 return log_debug_errno(r, "Failed to fork off fsck: %m");
959 if (r == 0) {
960 /* Child */
961 execl("/sbin/fsck", "/sbin/fsck", "-aT", node, NULL);
962 log_debug_errno(errno, "Failed to execl() fsck: %m");
963 _exit(FSCK_OPERATIONAL_ERROR);
964 }
965
966 exit_status = wait_for_terminate_and_check("fsck", pid, 0);
967 if (exit_status < 0)
968 return log_debug_errno(exit_status, "Failed to fork off /sbin/fsck: %m");
969
970 if ((exit_status & ~FSCK_ERROR_CORRECTED) != FSCK_SUCCESS) {
971 log_debug("fsck failed with exit status %i.", exit_status);
972
973 if ((exit_status & (FSCK_SYSTEM_SHOULD_REBOOT|FSCK_ERRORS_LEFT_UNCORRECTED)) != 0)
974 return log_debug_errno(SYNTHETIC_ERRNO(EUCLEAN), "File system is corrupted, refusing.");
975
976 log_debug("Ignoring fsck error.");
977 }
978
979 return 0;
980}
981
18b5886e
LP
982static int mount_partition(
983 DissectedPartition *m,
984 const char *where,
985 const char *directory,
2d3a5a73 986 uid_t uid_shift,
18b5886e
LP
987 DissectImageFlags flags) {
988
2d3a5a73
LP
989 _cleanup_free_ char *chased = NULL, *options = NULL;
990 const char *p, *node, *fstype;
8c1be37e 991 bool rw;
2eedfd2d 992 int r;
8c1be37e
LP
993
994 assert(m);
995 assert(where);
996
4dc28665 997 /* Use decrypted node and matching fstype if available, otherwise use the original device */
18b5886e 998 node = m->decrypted_node ?: m->node;
4dc28665 999 fstype = m->decrypted_node ? m->decrypted_fstype: m->fstype;
18b5886e 1000
4dc28665 1001 if (!m->found || !node)
8c1be37e 1002 return 0;
4dc28665
LP
1003 if (!fstype)
1004 return -EAFNOSUPPORT;
8c1be37e 1005
fa45d12c 1006 /* We are looking at an encrypted partition? This either means stacked encryption, or the caller didn't call dissected_image_decrypt() beforehand. Let's return a recognizable error for this case. */
4dc28665 1007 if (streq(fstype, "crypto_LUKS"))
fa45d12c 1008 return -EUNATCH;
18b5886e
LP
1009
1010 rw = m->rw && !(flags & DISSECT_IMAGE_READ_ONLY);
8c1be37e 1011
cf32c486
LP
1012 if (FLAGS_SET(flags, DISSECT_IMAGE_FSCK) && rw) {
1013 r = run_fsck(node, fstype);
1014 if (r < 0)
1015 return r;
1016 }
1017
2eedfd2d 1018 if (directory) {
1f0f82f1
LP
1019 if (!FLAGS_SET(flags, DISSECT_IMAGE_READ_ONLY)) {
1020 /* Automatically create missing mount points, if necessary. */
1021 r = mkdir_p_root(where, directory, uid_shift, (gid_t) uid_shift, 0755);
1022 if (r < 0)
1023 return r;
1024 }
1025
a5648b80 1026 r = chase_symlinks(directory, where, CHASE_PREFIX_ROOT, &chased, NULL);
2eedfd2d
LP
1027 if (r < 0)
1028 return r;
1029
1030 p = chased;
1031 } else
8c1be37e
LP
1032 p = where;
1033
18b5886e 1034 /* If requested, turn on discard support. */
154d2269 1035 if (fstype_can_discard(fstype) &&
18b5886e 1036 ((flags & DISSECT_IMAGE_DISCARD) ||
2d3a5a73
LP
1037 ((flags & DISSECT_IMAGE_DISCARD_ON_LOOP) && is_loop_device(m->node)))) {
1038 options = strdup("discard");
1039 if (!options)
1040 return -ENOMEM;
1041 }
1042
1043 if (uid_is_valid(uid_shift) && uid_shift != 0 && fstype_can_uid_gid(fstype)) {
1044 _cleanup_free_ char *uid_option = NULL;
1045
1046 if (asprintf(&uid_option, "uid=" UID_FMT ",gid=" GID_FMT, uid_shift, (gid_t) uid_shift) < 0)
1047 return -ENOMEM;
1048
1049 if (!strextend_with_separator(&options, ",", uid_option, NULL))
1050 return -ENOMEM;
1051 }
8c1be37e 1052
18d73705
LB
1053 if (!isempty(m->mount_options))
1054 if (!strextend_with_separator(&options, ",", m->mount_options, NULL))
1055 return -ENOMEM;
1056
5c05f062
LP
1057 if (FLAGS_SET(flags, DISSECT_IMAGE_MKDIR)) {
1058 r = mkdir_p(p, 0755);
1059 if (r < 0)
1060 return r;
1061 }
1062
d9223c07
LP
1063 r = mount_verbose(LOG_DEBUG, node, p, fstype, MS_NODEV|(rw ? 0 : MS_RDONLY), options);
1064 if (r < 0)
1065 return r;
1066
1067 return 1;
8c1be37e
LP
1068}
1069
2d3a5a73 1070int dissected_image_mount(DissectedImage *m, const char *where, uid_t uid_shift, DissectImageFlags flags) {
1f0f82f1 1071 int r, xbootldr_mounted;
8c1be37e
LP
1072
1073 assert(m);
1074 assert(where);
1075
fa45d12c
LP
1076 /* Returns:
1077 *
1078 * -ENXIO → No root partition found
1079 * -EMEDIUMTYPE → DISSECT_IMAGE_VALIDATE_OS set but no os-release file found
1080 * -EUNATCH → Encrypted partition found for which no dm-crypt was set up yet
1081 * -EUCLEAN → fsck for file system failed
1082 * -EBUSY → File system already mounted/used elsewhere (kernel)
4dc28665 1083 * -EAFNOSUPPORT → File system type not supported or not known
fa45d12c
LP
1084 */
1085
8c1be37e
LP
1086 if (!m->partitions[PARTITION_ROOT].found)
1087 return -ENXIO;
1088
2d3a5a73
LP
1089 if ((flags & DISSECT_IMAGE_MOUNT_NON_ROOT_ONLY) == 0) {
1090 r = mount_partition(m->partitions + PARTITION_ROOT, where, NULL, uid_shift, flags);
1091 if (r < 0)
1092 return r;
03bcb6d4
LP
1093
1094 if (flags & DISSECT_IMAGE_VALIDATE_OS) {
1095 r = path_is_os_tree(where);
1096 if (r < 0)
1097 return r;
1098 if (r == 0)
1099 return -EMEDIUMTYPE;
1100 }
2d3a5a73
LP
1101 }
1102
705727fd 1103 if (flags & DISSECT_IMAGE_MOUNT_ROOT_ONLY)
2d3a5a73 1104 return 0;
8c1be37e 1105
5c05f062
LP
1106 /* Mask DISSECT_IMAGE_MKDIR for all subdirs: the idea is that only the top-level mount point is
1107 * created if needed, but the image itself not modified. */
1108 flags &= ~DISSECT_IMAGE_MKDIR;
1109
2d3a5a73 1110 r = mount_partition(m->partitions + PARTITION_HOME, where, "/home", uid_shift, flags);
8c1be37e
LP
1111 if (r < 0)
1112 return r;
1113
2d3a5a73 1114 r = mount_partition(m->partitions + PARTITION_SRV, where, "/srv", uid_shift, flags);
8c1be37e
LP
1115 if (r < 0)
1116 return r;
1117
d4dffb85
LP
1118 r = mount_partition(m->partitions + PARTITION_VAR, where, "/var", uid_shift, flags);
1119 if (r < 0)
1120 return r;
1121
1122 r = mount_partition(m->partitions + PARTITION_TMP, where, "/var/tmp", uid_shift, flags);
1123 if (r < 0)
1124 return r;
1125
1f0f82f1
LP
1126 xbootldr_mounted = mount_partition(m->partitions + PARTITION_XBOOTLDR, where, "/boot", uid_shift, flags);
1127 if (xbootldr_mounted < 0)
1128 return xbootldr_mounted;
d9223c07 1129
8c1be37e 1130 if (m->partitions[PARTITION_ESP].found) {
1f0f82f1
LP
1131 int esp_done = false;
1132
d9223c07
LP
1133 /* Mount the ESP to /efi if it exists. If it doesn't exist, use /boot instead, but only if it
1134 * exists and is empty, and we didn't already mount the XBOOTLDR partition into it. */
8c1be37e 1135
a5648b80 1136 r = chase_symlinks("/efi", where, CHASE_PREFIX_ROOT, NULL, NULL);
1f0f82f1
LP
1137 if (r < 0) {
1138 if (r != -ENOENT)
d9223c07 1139 return r;
8c1be37e 1140
1f0f82f1
LP
1141 /* /efi doesn't exist. Let's see if /boot is suitable then */
1142
1143 if (!xbootldr_mounted) {
1144 _cleanup_free_ char *p = NULL;
2eedfd2d 1145
1f0f82f1
LP
1146 r = chase_symlinks("/boot", where, CHASE_PREFIX_ROOT, &p, NULL);
1147 if (r < 0) {
1148 if (r != -ENOENT)
1149 return r;
1150 } else if (dir_is_empty(p) > 0) {
1151 /* It exists and is an empty directory. Let's mount the ESP there. */
1152 r = mount_partition(m->partitions + PARTITION_ESP, where, "/boot", uid_shift, flags);
1153 if (r < 0)
1154 return r;
1155
1156 esp_done = true;
1157 }
2eedfd2d 1158 }
8c1be37e 1159 }
1f0f82f1
LP
1160
1161 if (!esp_done) {
1162 /* OK, let's mount the ESP now to /efi (possibly creating the dir if missing) */
1163
1164 r = mount_partition(m->partitions + PARTITION_ESP, where, "/efi", uid_shift, flags);
1165 if (r < 0)
1166 return r;
1167 }
8c1be37e
LP
1168 }
1169
1170 return 0;
1171}
1172
af187ab2
LP
1173int dissected_image_mount_and_warn(DissectedImage *m, const char *where, uid_t uid_shift, DissectImageFlags flags) {
1174 int r;
1175
1176 assert(m);
1177 assert(where);
1178
1179 r = dissected_image_mount(m, where, uid_shift, flags);
1180 if (r == -ENXIO)
1181 return log_error_errno(r, "Not root file system found in image.");
1182 if (r == -EMEDIUMTYPE)
1183 return log_error_errno(r, "No suitable os-release file in image found.");
1184 if (r == -EUNATCH)
1185 return log_error_errno(r, "Encrypted file system discovered, but decryption not requested.");
1186 if (r == -EUCLEAN)
1187 return log_error_errno(r, "File system check on image failed.");
1188 if (r == -EBUSY)
1189 return log_error_errno(r, "File system already mounted elsewhere.");
4dc28665
LP
1190 if (r == -EAFNOSUPPORT)
1191 return log_error_errno(r, "File system type not supported or not known.");
af187ab2
LP
1192 if (r < 0)
1193 return log_error_errno(r, "Failed to mount image: %m");
1194
1195 return r;
1196}
1197
349cc4a5 1198#if HAVE_LIBCRYPTSETUP
18b5886e
LP
1199typedef struct DecryptedPartition {
1200 struct crypt_device *device;
1201 char *name;
1202 bool relinquished;
1203} DecryptedPartition;
1204
1205struct DecryptedImage {
1206 DecryptedPartition *decrypted;
1207 size_t n_decrypted;
1208 size_t n_allocated;
1209};
1210#endif
1211
1212DecryptedImage* decrypted_image_unref(DecryptedImage* d) {
349cc4a5 1213#if HAVE_LIBCRYPTSETUP
18b5886e
LP
1214 size_t i;
1215 int r;
1216
1217 if (!d)
1218 return NULL;
1219
1220 for (i = 0; i < d->n_decrypted; i++) {
1221 DecryptedPartition *p = d->decrypted + i;
1222
1223 if (p->device && p->name && !p->relinquished) {
0d12936d 1224 r = sym_crypt_deactivate_by_name(p->device, p->name, 0);
18b5886e
LP
1225 if (r < 0)
1226 log_debug_errno(r, "Failed to deactivate encrypted partition %s", p->name);
1227 }
1228
1229 if (p->device)
0d12936d 1230 sym_crypt_free(p->device);
18b5886e
LP
1231 free(p->name);
1232 }
1233
1234 free(d);
1235#endif
1236 return NULL;
1237}
1238
349cc4a5 1239#if HAVE_LIBCRYPTSETUP
4623e8e6
LP
1240
1241static int make_dm_name_and_node(const void *original_node, const char *suffix, char **ret_name, char **ret_node) {
1242 _cleanup_free_ char *name = NULL, *node = NULL;
1243 const char *base;
1244
1245 assert(original_node);
1246 assert(suffix);
1247 assert(ret_name);
1248 assert(ret_node);
1249
1250 base = strrchr(original_node, '/');
1251 if (!base)
ac1f3ad0
LB
1252 base = original_node;
1253 else
1254 base++;
4623e8e6
LP
1255 if (isempty(base))
1256 return -EINVAL;
1257
1258 name = strjoin(base, suffix);
1259 if (!name)
1260 return -ENOMEM;
1261 if (!filename_is_valid(name))
1262 return -EINVAL;
1263
0d12936d 1264 node = path_join(sym_crypt_get_dir(), name);
4623e8e6
LP
1265 if (!node)
1266 return -ENOMEM;
1267
1cc6c93a
YW
1268 *ret_name = TAKE_PTR(name);
1269 *ret_node = TAKE_PTR(node);
4623e8e6 1270
4623e8e6
LP
1271 return 0;
1272}
1273
18b5886e
LP
1274static int decrypt_partition(
1275 DissectedPartition *m,
1276 const char *passphrase,
1277 DissectImageFlags flags,
1278 DecryptedImage *d) {
1279
1280 _cleanup_free_ char *node = NULL, *name = NULL;
0d12936d 1281 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
18b5886e
LP
1282 int r;
1283
1284 assert(m);
1285 assert(d);
1286
1287 if (!m->found || !m->node || !m->fstype)
1288 return 0;
1289
1290 if (!streq(m->fstype, "crypto_LUKS"))
1291 return 0;
1292
bdd73ac5
ZJS
1293 if (!passphrase)
1294 return -ENOKEY;
1295
0d12936d
LP
1296 r = dlopen_cryptsetup();
1297 if (r < 0)
1298 return r;
1299
4623e8e6
LP
1300 r = make_dm_name_and_node(m->node, "-decrypted", &name, &node);
1301 if (r < 0)
1302 return r;
18b5886e
LP
1303
1304 if (!GREEDY_REALLOC0(d->decrypted, d->n_allocated, d->n_decrypted + 1))
1305 return -ENOMEM;
1306
0d12936d 1307 r = sym_crypt_init(&cd, m->node);
18b5886e 1308 if (r < 0)
715cbb81 1309 return log_debug_errno(r, "Failed to initialize dm-crypt: %m");
18b5886e 1310
efc3b12f 1311 cryptsetup_enable_logging(cd);
1887032f 1312
0d12936d 1313 r = sym_crypt_load(cd, CRYPT_LUKS, NULL);
294bd454
ZJS
1314 if (r < 0)
1315 return log_debug_errno(r, "Failed to load LUKS metadata: %m");
18b5886e 1316
0d12936d
LP
1317 r = sym_crypt_activate_by_passphrase(cd, name, CRYPT_ANY_SLOT, passphrase, strlen(passphrase),
1318 ((flags & DISSECT_IMAGE_READ_ONLY) ? CRYPT_ACTIVATE_READONLY : 0) |
1319 ((flags & DISSECT_IMAGE_DISCARD_ON_CRYPTO) ? CRYPT_ACTIVATE_ALLOW_DISCARDS : 0));
294bd454 1320 if (r < 0) {
715cbb81 1321 log_debug_errno(r, "Failed to activate LUKS device: %m");
294bd454 1322 return r == -EPERM ? -EKEYREJECTED : r;
18b5886e 1323 }
18b5886e 1324
1cc6c93a
YW
1325 d->decrypted[d->n_decrypted].name = TAKE_PTR(name);
1326 d->decrypted[d->n_decrypted].device = TAKE_PTR(cd);
18b5886e
LP
1327 d->n_decrypted++;
1328
1cc6c93a 1329 m->decrypted_node = TAKE_PTR(node);
18b5886e
LP
1330
1331 return 0;
4623e8e6
LP
1332}
1333
89e62e0b
LP
1334static int verity_can_reuse(
1335 const VeritySettings *verity,
1336 const char *name,
1337 struct crypt_device **ret_cd) {
1338
ac1f3ad0
LB
1339 /* If the same volume was already open, check that the root hashes match, and reuse it if they do */
1340 _cleanup_free_ char *root_hash_existing = NULL;
0d12936d 1341 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
ac1f3ad0 1342 struct crypt_params_verity crypt_params = {};
89e62e0b 1343 size_t root_hash_existing_size;
ac1f3ad0
LB
1344 int r;
1345
89e62e0b
LP
1346 assert(verity);
1347 assert(name);
ac1f3ad0
LB
1348 assert(ret_cd);
1349
0d12936d 1350 r = sym_crypt_init_by_name(&cd, name);
ac1f3ad0
LB
1351 if (r < 0)
1352 return log_debug_errno(r, "Error opening verity device, crypt_init_by_name failed: %m");
0d12936d
LP
1353
1354 r = sym_crypt_get_verity_info(cd, &crypt_params);
ac1f3ad0
LB
1355 if (r < 0)
1356 return log_debug_errno(r, "Error opening verity device, crypt_get_verity_info failed: %m");
0d12936d 1357
89e62e0b
LP
1358 root_hash_existing_size = verity->root_hash_size;
1359 root_hash_existing = malloc0(root_hash_existing_size);
ac1f3ad0
LB
1360 if (!root_hash_existing)
1361 return -ENOMEM;
0d12936d
LP
1362
1363 r = sym_crypt_volume_key_get(cd, CRYPT_ANY_SLOT, root_hash_existing, &root_hash_existing_size, NULL, 0);
ac1f3ad0
LB
1364 if (r < 0)
1365 return log_debug_errno(r, "Error opening verity device, crypt_volume_key_get failed: %m");
89e62e0b
LP
1366 if (verity->root_hash_size != root_hash_existing_size ||
1367 memcmp(root_hash_existing, verity->root_hash, verity->root_hash_size) != 0)
ac1f3ad0 1368 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Error opening verity device, it already exists but root hashes are different.");
89e62e0b 1369
ac1f3ad0 1370#if HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY
89e62e0b
LP
1371 /* Ensure that, if signatures are supported, we only reuse the device if the previous mount used the
1372 * same settings, so that a previous unsigned mount will not be reused if the user asks to use
1373 * signing for the new one, and viceversa. */
1374 if (!!verity->root_hash_sig != !!(crypt_params.flags & CRYPT_VERITY_ROOT_HASH_SIGNATURE))
ac1f3ad0
LB
1375 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Error opening verity device, it already exists but signature settings are not the same.");
1376#endif
1377
1378 *ret_cd = TAKE_PTR(cd);
1379 return 0;
1380}
1381
1382static inline void dm_deferred_remove_clean(char *name) {
1383 if (!name)
1384 return;
0d12936d
LP
1385
1386 (void) sym_crypt_deactivate_by_name(NULL, name, CRYPT_DEACTIVATE_DEFERRED);
ac1f3ad0
LB
1387 free(name);
1388}
1389DEFINE_TRIVIAL_CLEANUP_FUNC(char *, dm_deferred_remove_clean);
1390
4623e8e6
LP
1391static int verity_partition(
1392 DissectedPartition *m,
1393 DissectedPartition *v,
89e62e0b 1394 const VeritySettings *verity,
4623e8e6
LP
1395 DissectImageFlags flags,
1396 DecryptedImage *d) {
1397
0d12936d 1398 _cleanup_(sym_crypt_freep) struct crypt_device *cd = NULL;
ac1f3ad0 1399 _cleanup_(dm_deferred_remove_cleanp) char *restore_deferred_remove = NULL;
89e62e0b 1400 _cleanup_free_ char *node = NULL, *name = NULL;
4623e8e6
LP
1401 int r;
1402
1403 assert(m);
89e62e0b 1404 assert(v || (verity && verity->data_path));
4623e8e6 1405
89e62e0b 1406 if (!verity || !verity->root_hash)
4623e8e6
LP
1407 return 0;
1408
1409 if (!m->found || !m->node || !m->fstype)
1410 return 0;
89e62e0b 1411 if (!verity->data_path) {
e7cbe5cb
LB
1412 if (!v->found || !v->node || !v->fstype)
1413 return 0;
4623e8e6 1414
e7cbe5cb
LB
1415 if (!streq(v->fstype, "DM_verity_hash"))
1416 return 0;
1417 }
4623e8e6 1418
0d12936d
LP
1419 r = dlopen_cryptsetup();
1420 if (r < 0)
1421 return r;
1422
ac1f3ad0
LB
1423 if (FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE)) {
1424 /* Use the roothash, which is unique per volume, as the device node name, so that it can be reused */
1425 _cleanup_free_ char *root_hash_encoded = NULL;
0d12936d 1426
89e62e0b 1427 root_hash_encoded = hexmem(verity->root_hash, verity->root_hash_size);
ac1f3ad0 1428 if (!root_hash_encoded)
0d12936d 1429
ac1f3ad0
LB
1430 return -ENOMEM;
1431 r = make_dm_name_and_node(root_hash_encoded, "-verity", &name, &node);
1432 } else
1433 r = make_dm_name_and_node(m->node, "-verity", &name, &node);
4623e8e6
LP
1434 if (r < 0)
1435 return r;
1436
89e62e0b 1437 r = sym_crypt_init(&cd, verity->data_path ?: v->node);
4623e8e6
LP
1438 if (r < 0)
1439 return r;
1440
efc3b12f 1441 cryptsetup_enable_logging(cd);
1887032f 1442
0d12936d 1443 r = sym_crypt_load(cd, CRYPT_VERITY, NULL);
4623e8e6 1444 if (r < 0)
294bd454 1445 return r;
4623e8e6 1446
0d12936d 1447 r = sym_crypt_set_data_device(cd, m->node);
4623e8e6 1448 if (r < 0)
294bd454 1449 return r;
4623e8e6 1450
ac1f3ad0
LB
1451 if (!GREEDY_REALLOC0(d->decrypted, d->n_allocated, d->n_decrypted + 1))
1452 return -ENOMEM;
1453
1454 /* If activating fails because the device already exists, check the metadata and reuse it if it matches.
1455 * In case of ENODEV/ENOENT, which can happen if another process is activating at the exact same time,
1456 * retry a few times before giving up. */
1457 for (unsigned i = 0; i < N_DEVICE_NODE_LIST_ATTEMPTS; i++) {
89e62e0b 1458 if (verity->root_hash_sig) {
c2923fdc 1459#if HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY
89e62e0b
LP
1460 r = sym_crypt_activate_by_signed_key(
1461 cd,
1462 name,
1463 verity->root_hash,
1464 verity->root_hash_size,
1465 verity->root_hash_sig,
1466 verity->root_hash_sig_size,
1467 CRYPT_ACTIVATE_READONLY);
ac1f3ad0
LB
1468#else
1469 r = log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "activation of verity device with signature requested, but not supported by cryptsetup due to missing crypt_activate_by_signed_key()");
1470#endif
1471 } else
89e62e0b
LP
1472 r = sym_crypt_activate_by_volume_key(
1473 cd,
1474 name,
1475 verity->root_hash,
1476 verity->root_hash_size,
1477 CRYPT_ACTIVATE_READONLY);
ac1f3ad0
LB
1478 /* libdevmapper can return EINVAL when the device is already in the activation stage.
1479 * There's no way to distinguish this situation from a genuine error due to invalid
2aed63f4 1480 * parameters, so immediately fall back to activating the device with a unique name.
89e62e0b
LP
1481 * Improvements in libcrypsetup can ensure this never happens:
1482 * https://gitlab.com/cryptsetup/cryptsetup/-/merge_requests/96 */
ac1f3ad0 1483 if (r == -EINVAL && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
89e62e0b 1484 return verity_partition(m, v, verity, flags & ~DISSECT_IMAGE_VERITY_SHARE, d);
9ecb5c10
LB
1485 if (!IN_SET(r,
1486 0, /* Success */
1487 -EEXIST, /* Volume is already open and ready to be used */
1488 -EBUSY, /* Volume is being opened but not ready, crypt_init_by_name can fetch details */
1489 -ENODEV /* Volume is being opened but not ready, crypt_init_by_name would fail, try to open again */))
ac1f3ad0 1490 return r;
9ecb5c10 1491 if (IN_SET(r, -EEXIST, -EBUSY)) {
ac1f3ad0 1492 struct crypt_device *existing_cd = NULL;
c2923fdc 1493
ac1f3ad0
LB
1494 if (!restore_deferred_remove){
1495 /* To avoid races, disable automatic removal on umount while setting up the new device. Restore it on failure. */
1496 r = dm_deferred_remove_cancel(name);
9ecb5c10
LB
1497 /* If activation returns EBUSY there might be no deferred removal to cancel, that's fine */
1498 if (r < 0 && r != -ENXIO)
ac1f3ad0 1499 return log_debug_errno(r, "Disabling automated deferred removal for verity device %s failed: %m", node);
9ecb5c10
LB
1500 if (r == 0) {
1501 restore_deferred_remove = strdup(name);
1502 if (!restore_deferred_remove)
1503 return -ENOMEM;
1504 }
ac1f3ad0 1505 }
c2923fdc 1506
89e62e0b 1507 r = verity_can_reuse(verity, name, &existing_cd);
ac1f3ad0
LB
1508 /* Same as above, -EINVAL can randomly happen when it actually means -EEXIST */
1509 if (r == -EINVAL && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
89e62e0b 1510 return verity_partition(m, v, verity, flags & ~DISSECT_IMAGE_VERITY_SHARE, d);
9ecb5c10 1511 if (!IN_SET(r, 0, -ENODEV, -ENOENT, -EBUSY))
ac1f3ad0
LB
1512 return log_debug_errno(r, "Checking whether existing verity device %s can be reused failed: %m", node);
1513 if (r == 0) {
c419b6f0
LB
1514 /* devmapper might say that the device exists, but the devlink might not yet have been
1515 * created. Check and wait for the udev event in that case. */
1516 r = device_wait_for_devlink(node, "block", 100 * USEC_PER_MSEC, NULL);
1517 /* Fallback to activation with a unique device if it's taking too long */
1518 if (r == -ETIMEDOUT)
1519 break;
1520 if (r < 0)
1521 return r;
1522
ac1f3ad0 1523 if (cd)
0d12936d 1524 sym_crypt_free(cd);
ac1f3ad0
LB
1525 cd = existing_cd;
1526 }
c2923fdc 1527 }
ac1f3ad0
LB
1528 if (r == 0)
1529 break;
ecab4c47
LB
1530
1531 /* Device is being opened by another process, but it has not finished yet, yield for 2ms */
1532 (void) usleep(2 * USEC_PER_MSEC);
ac1f3ad0
LB
1533 }
1534
ac1f3ad0
LB
1535 /* An existing verity device was reported by libcryptsetup/libdevmapper, but we can't use it at this time.
1536 * Fall back to activating it with a unique device name. */
1537 if (r != 0 && FLAGS_SET(flags, DISSECT_IMAGE_VERITY_SHARE))
89e62e0b 1538 return verity_partition(m, v, verity, flags & ~DISSECT_IMAGE_VERITY_SHARE, d);
ac1f3ad0
LB
1539
1540 /* Everything looks good and we'll be able to mount the device, so deferred remove will be re-enabled at that point. */
1541 restore_deferred_remove = mfree(restore_deferred_remove);
4623e8e6 1542
1cc6c93a
YW
1543 d->decrypted[d->n_decrypted].name = TAKE_PTR(name);
1544 d->decrypted[d->n_decrypted].device = TAKE_PTR(cd);
4623e8e6
LP
1545 d->n_decrypted++;
1546
1cc6c93a 1547 m->decrypted_node = TAKE_PTR(node);
4623e8e6
LP
1548
1549 return 0;
18b5886e
LP
1550}
1551#endif
1552
1553int dissected_image_decrypt(
1554 DissectedImage *m,
1555 const char *passphrase,
89e62e0b 1556 const VeritySettings *verity,
18b5886e
LP
1557 DissectImageFlags flags,
1558 DecryptedImage **ret) {
1559
349cc4a5 1560#if HAVE_LIBCRYPTSETUP
49b5b3b4 1561 _cleanup_(decrypted_image_unrefp) DecryptedImage *d = NULL;
18b5886e
LP
1562 int r;
1563#endif
1564
1565 assert(m);
89e62e0b 1566 assert(!verity || verity->root_hash || verity->root_hash_size == 0);
18b5886e
LP
1567
1568 /* Returns:
1569 *
1570 * = 0 → There was nothing to decrypt
1571 * > 0 → Decrypted successfully
d1c536f5 1572 * -ENOKEY → There's something to decrypt but no key was supplied
18b5886e
LP
1573 * -EKEYREJECTED → Passed key was not correct
1574 */
1575
89e62e0b 1576 if (verity && verity->root_hash && verity->root_hash_size < sizeof(sd_id128_t))
4623e8e6
LP
1577 return -EINVAL;
1578
1579 if (!m->encrypted && !m->verity) {
18b5886e
LP
1580 *ret = NULL;
1581 return 0;
1582 }
1583
349cc4a5 1584#if HAVE_LIBCRYPTSETUP
18b5886e
LP
1585 d = new0(DecryptedImage, 1);
1586 if (!d)
1587 return -ENOMEM;
1588
569a0e42 1589 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
18b5886e 1590 DissectedPartition *p = m->partitions + i;
4623e8e6 1591 int k;
18b5886e
LP
1592
1593 if (!p->found)
1594 continue;
1595
1596 r = decrypt_partition(p, passphrase, flags, d);
1597 if (r < 0)
1598 return r;
1599
4623e8e6
LP
1600 k = PARTITION_VERITY_OF(i);
1601 if (k >= 0) {
89e62e0b 1602 r = verity_partition(p, m->partitions + k, verity, flags | DISSECT_IMAGE_VERITY_SHARE, d);
4623e8e6
LP
1603 if (r < 0)
1604 return r;
1605 }
1606
18b5886e
LP
1607 if (!p->decrypted_fstype && p->decrypted_node) {
1608 r = probe_filesystem(p->decrypted_node, &p->decrypted_fstype);
7cc84b2c 1609 if (r < 0 && r != -EUCLEAN)
18b5886e
LP
1610 return r;
1611 }
1612 }
1613
1cc6c93a 1614 *ret = TAKE_PTR(d);
18b5886e
LP
1615
1616 return 1;
1617#else
1618 return -EOPNOTSUPP;
1619#endif
1620}
1621
1622int dissected_image_decrypt_interactively(
1623 DissectedImage *m,
1624 const char *passphrase,
89e62e0b 1625 const VeritySettings *verity,
18b5886e
LP
1626 DissectImageFlags flags,
1627 DecryptedImage **ret) {
1628
1629 _cleanup_strv_free_erase_ char **z = NULL;
1630 int n = 3, r;
1631
1632 if (passphrase)
1633 n--;
1634
1635 for (;;) {
89e62e0b 1636 r = dissected_image_decrypt(m, passphrase, verity, flags, ret);
18b5886e
LP
1637 if (r >= 0)
1638 return r;
1639 if (r == -EKEYREJECTED)
1640 log_error_errno(r, "Incorrect passphrase, try again!");
fc95c359
YW
1641 else if (r != -ENOKEY)
1642 return log_error_errno(r, "Failed to decrypt image: %m");
18b5886e 1643
baaa35ad
ZJS
1644 if (--n < 0)
1645 return log_error_errno(SYNTHETIC_ERRNO(EKEYREJECTED),
1646 "Too many retries.");
18b5886e
LP
1647
1648 z = strv_free(z);
1649
a1c111c2 1650 r = ask_password_auto("Please enter image passphrase:", NULL, "dissect", "dissect", USEC_INFINITY, 0, &z);
18b5886e
LP
1651 if (r < 0)
1652 return log_error_errno(r, "Failed to query for passphrase: %m");
1653
1654 passphrase = z[0];
1655 }
1656}
1657
18b5886e
LP
1658int decrypted_image_relinquish(DecryptedImage *d) {
1659
349cc4a5 1660#if HAVE_LIBCRYPTSETUP
18b5886e
LP
1661 size_t i;
1662 int r;
1663#endif
1664
1665 assert(d);
1666
1667 /* Turns on automatic removal after the last use ended for all DM devices of this image, and sets a boolean so
1668 * that we don't clean it up ourselves either anymore */
1669
349cc4a5 1670#if HAVE_LIBCRYPTSETUP
18b5886e
LP
1671 for (i = 0; i < d->n_decrypted; i++) {
1672 DecryptedPartition *p = d->decrypted + i;
1673
1674 if (p->relinquished)
1675 continue;
1676
0d12936d 1677 r = sym_crypt_deactivate_by_name(NULL, p->name, CRYPT_DEACTIVATE_DEFERRED);
18b5886e
LP
1678 if (r < 0)
1679 return log_debug_errno(r, "Failed to mark %s for auto-removal: %m", p->name);
1680
1681 p->relinquished = true;
1682 }
1683#endif
1684
1685 return 0;
1686}
1687
89e62e0b
LP
1688static char *build_auxiliary_path(const char *image, const char *suffix) {
1689 const char *e;
1690 char *n;
1691
1692 assert(image);
1693 assert(suffix);
1694
1695 e = endswith(image, ".raw");
1696 if (!e)
1697 return strjoin(e, suffix);
1698
1699 n = new(char, e - image + strlen(suffix) + 1);
1700 if (!n)
1701 return NULL;
1702
1703 strcpy(mempcpy(n, image, e - image), suffix);
1704 return n;
1705}
1706
1707void verity_settings_done(VeritySettings *v) {
1708 assert(v);
1709
1710 v->root_hash = mfree(v->root_hash);
1711 v->root_hash_size = 0;
1712
1713 v->root_hash_sig = mfree(v->root_hash_sig);
1714 v->root_hash_sig_size = 0;
1715
1716 v->data_path = mfree(v->data_path);
1717}
1718
1719int verity_settings_load(
1720 VeritySettings *verity,
f5ea63a5
LP
1721 const char *image,
1722 const char *root_hash_path,
89e62e0b
LP
1723 const char *root_hash_sig_path) {
1724
1725 _cleanup_free_ void *root_hash = NULL, *root_hash_sig = NULL;
1726 size_t root_hash_size = 0, root_hash_sig_size = 0;
1727 _cleanup_free_ char *verity_data_path = NULL;
78ebe980
LP
1728 int r;
1729
89e62e0b 1730 assert(verity);
78ebe980 1731 assert(image);
78ebe980 1732
89e62e0b
LP
1733 /* If we are asked to load the root hash for a device node, exit early */
1734 if (is_device_path(image))
78ebe980 1735 return 0;
78ebe980 1736
89e62e0b 1737 /* We only fill in what isn't already filled in */
c2923fdc 1738
89e62e0b 1739 if (!verity->root_hash) {
e7cbe5cb 1740 _cleanup_free_ char *text = NULL;
e7cbe5cb 1741
0389f4fa 1742 if (root_hash_path) {
0389f4fa
LB
1743 r = read_one_line_file(root_hash_path, &text);
1744 if (r < 0)
e7cbe5cb 1745 return r;
0389f4fa
LB
1746 } else {
1747 r = getxattr_malloc(image, "user.verity.roothash", &text, true);
1748 if (r < 0) {
89e62e0b 1749 _cleanup_free_ char *p = NULL;
0389f4fa 1750
89e62e0b 1751 if (!IN_SET(r, -ENODATA, -ENOENT) && !ERRNO_IS_NOT_SUPPORTED(r))
0389f4fa 1752 return r;
78ebe980 1753
89e62e0b
LP
1754 p = build_auxiliary_path(image, ".roothash");
1755 if (!p)
1756 return -ENOMEM;
e7cbe5cb 1757
89e62e0b 1758 r = read_one_line_file(p, &text);
0389f4fa
LB
1759 if (r < 0 && r != -ENOENT)
1760 return r;
1761 }
e7cbe5cb
LB
1762 }
1763
1764 if (text) {
89e62e0b 1765 r = unhexmem(text, strlen(text), &root_hash, &root_hash_size);
e7cbe5cb
LB
1766 if (r < 0)
1767 return r;
89e62e0b 1768 if (root_hash_size < sizeof(sd_id128_t))
e7cbe5cb
LB
1769 return -EINVAL;
1770 }
1771 }
1772
89e62e0b
LP
1773 if (!verity->root_hash_sig) {
1774 _cleanup_free_ char *p = NULL;
1775
1776 if (!root_hash_sig_path) {
1777 /* Follow naming convention recommended by the relevant RFC:
1778 * https://tools.ietf.org/html/rfc5751#section-3.2.1 */
1779 p = build_auxiliary_path(image, ".roothash.p7s");
1780 if (!p)
1781 return -ENOMEM;
1782
1783 root_hash_sig_path = p;
1784 }
1785
1786 r = read_full_file_full(AT_FDCWD, root_hash_sig_path, 0, (char**) &root_hash_sig, &root_hash_sig_size);
1787 if (r < 0) {
1788 if (r != -ENOENT)
1789 return r;
1790 } else if (root_hash_sig_size == 0) /* refuse empty size signatures */
1791 return -EINVAL;
1792 }
1793
1794 if (!verity->data_path) {
1795 _cleanup_free_ char *p = NULL;
1796
1797 p = build_auxiliary_path(image, ".verity");
1798 if (!p)
1799 return -ENOMEM;
1800
1801 if (access(p, F_OK) < 0) {
1802 if (errno != ENOENT)
1803 return -errno;
1804 } else
1805 verity_data_path = TAKE_PTR(p);
1806 }
1807
1808 if (root_hash) {
1809 verity->root_hash = TAKE_PTR(root_hash);
1810 verity->root_hash_size = root_hash_size;
1811 }
1812
1813 if (root_hash_sig) {
1814 verity->root_hash_sig = TAKE_PTR(root_hash_sig);
1815 verity->root_hash_sig_size = root_hash_sig_size;
e7cbe5cb 1816 }
89e62e0b
LP
1817
1818 if (verity_data_path)
1819 verity->data_path = TAKE_PTR(verity_data_path);
78ebe980 1820
78ebe980
LP
1821 return 1;
1822}
1823
3b925504
LP
1824int dissected_image_acquire_metadata(DissectedImage *m) {
1825
1826 enum {
1827 META_HOSTNAME,
1828 META_MACHINE_ID,
1829 META_MACHINE_INFO,
1830 META_OS_RELEASE,
1831 _META_MAX,
1832 };
1833
1834 static const char *const paths[_META_MAX] = {
1835 [META_HOSTNAME] = "/etc/hostname\0",
1836 [META_MACHINE_ID] = "/etc/machine-id\0",
1837 [META_MACHINE_INFO] = "/etc/machine-info\0",
d4dffb85
LP
1838 [META_OS_RELEASE] = "/etc/os-release\0"
1839 "/usr/lib/os-release\0",
3b925504
LP
1840 };
1841
1842 _cleanup_strv_free_ char **machine_info = NULL, **os_release = NULL;
af8219d5 1843 _cleanup_close_pair_ int error_pipe[2] = { -1, -1 };
3b925504
LP
1844 _cleanup_(rmdir_and_freep) char *t = NULL;
1845 _cleanup_(sigkill_waitp) pid_t child = 0;
1846 sd_id128_t machine_id = SD_ID128_NULL;
1847 _cleanup_free_ char *hostname = NULL;
1848 unsigned n_meta_initialized = 0, k;
af8219d5
LP
1849 int fds[2 * _META_MAX], r, v;
1850 ssize_t n;
3b925504
LP
1851
1852 BLOCK_SIGNALS(SIGCHLD);
1853
1854 assert(m);
1855
1856 for (; n_meta_initialized < _META_MAX; n_meta_initialized ++)
1857 if (pipe2(fds + 2*n_meta_initialized, O_CLOEXEC) < 0) {
1858 r = -errno;
1859 goto finish;
1860 }
1861
1862 r = mkdtemp_malloc("/tmp/dissect-XXXXXX", &t);
1863 if (r < 0)
1864 goto finish;
1865
af8219d5
LP
1866 if (pipe2(error_pipe, O_CLOEXEC) < 0) {
1867 r = -errno;
1868 goto finish;
1869 }
1870
e2047ba9 1871 r = safe_fork("(sd-dissect)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE, &child);
be39f6ee 1872 if (r < 0)
3b925504 1873 goto finish;
be39f6ee 1874 if (r == 0) {
af8219d5
LP
1875 error_pipe[0] = safe_close(error_pipe[0]);
1876
03bcb6d4 1877 r = dissected_image_mount(m, t, UID_INVALID, DISSECT_IMAGE_READ_ONLY|DISSECT_IMAGE_MOUNT_ROOT_ONLY|DISSECT_IMAGE_VALIDATE_OS);
429d4e41 1878 if (r < 0) {
af8219d5
LP
1879 /* Let parent know the error */
1880 (void) write(error_pipe[1], &r, sizeof(r));
1881
429d4e41 1882 log_debug_errno(r, "Failed to mount dissected image: %m");
3b925504 1883 _exit(EXIT_FAILURE);
429d4e41 1884 }
3b925504
LP
1885
1886 for (k = 0; k < _META_MAX; k++) {
37e44c3f 1887 _cleanup_close_ int fd = -ENOENT;
3b925504
LP
1888 const char *p;
1889
1890 fds[2*k] = safe_close(fds[2*k]);
1891
1892 NULSTR_FOREACH(p, paths[k]) {
36952d19 1893 fd = chase_symlinks_and_open(p, t, CHASE_PREFIX_ROOT, O_RDONLY|O_CLOEXEC|O_NOCTTY, NULL);
3b925504
LP
1894 if (fd >= 0)
1895 break;
1896 }
36952d19
LP
1897 if (fd < 0) {
1898 log_debug_errno(fd, "Failed to read %s file of image, ignoring: %m", paths[k]);
37e44c3f 1899 fds[2*k+1] = safe_close(fds[2*k+1]);
3b925504 1900 continue;
36952d19 1901 }
3b925504
LP
1902
1903 r = copy_bytes(fd, fds[2*k+1], (uint64_t) -1, 0);
af8219d5
LP
1904 if (r < 0) {
1905 (void) write(error_pipe[1], &r, sizeof(r));
3b925504 1906 _exit(EXIT_FAILURE);
af8219d5 1907 }
3b925504
LP
1908
1909 fds[2*k+1] = safe_close(fds[2*k+1]);
1910 }
1911
1912 _exit(EXIT_SUCCESS);
1913 }
1914
af8219d5
LP
1915 error_pipe[1] = safe_close(error_pipe[1]);
1916
3b925504
LP
1917 for (k = 0; k < _META_MAX; k++) {
1918 _cleanup_fclose_ FILE *f = NULL;
1919
1920 fds[2*k+1] = safe_close(fds[2*k+1]);
1921
4fa744a3 1922 f = take_fdopen(&fds[2*k], "r");
3b925504
LP
1923 if (!f) {
1924 r = -errno;
1925 goto finish;
1926 }
1927
3b925504
LP
1928 switch (k) {
1929
1930 case META_HOSTNAME:
1931 r = read_etc_hostname_stream(f, &hostname);
1932 if (r < 0)
1933 log_debug_errno(r, "Failed to read /etc/hostname: %m");
1934
1935 break;
1936
1937 case META_MACHINE_ID: {
1938 _cleanup_free_ char *line = NULL;
1939
1940 r = read_line(f, LONG_LINE_MAX, &line);
1941 if (r < 0)
1942 log_debug_errno(r, "Failed to read /etc/machine-id: %m");
1943 else if (r == 33) {
1944 r = sd_id128_from_string(line, &machine_id);
1945 if (r < 0)
1946 log_debug_errno(r, "Image contains invalid /etc/machine-id: %s", line);
1947 } else if (r == 0)
1948 log_debug("/etc/machine-id file is empty.");
1949 else
1950 log_debug("/etc/machine-id has unexpected length %i.", r);
1951
1952 break;
1953 }
1954
1955 case META_MACHINE_INFO:
aa8fbc74 1956 r = load_env_file_pairs(f, "machine-info", &machine_info);
3b925504
LP
1957 if (r < 0)
1958 log_debug_errno(r, "Failed to read /etc/machine-info: %m");
1959
1960 break;
1961
1962 case META_OS_RELEASE:
aa8fbc74 1963 r = load_env_file_pairs(f, "os-release", &os_release);
3b925504
LP
1964 if (r < 0)
1965 log_debug_errno(r, "Failed to read OS release file: %m");
1966
1967 break;
1968 }
1969 }
1970
2e87a1fd 1971 r = wait_for_terminate_and_check("(sd-dissect)", child, 0);
3b925504 1972 child = 0;
2e87a1fd 1973 if (r < 0)
af8219d5
LP
1974 return r;
1975
1976 n = read(error_pipe[0], &v, sizeof(v));
1977 if (n < 0)
1978 return -errno;
1979 if (n == sizeof(v))
1980 return v; /* propagate error sent to us from child */
1981 if (n != 0)
1982 return -EIO;
1983
2e87a1fd
LP
1984 if (r != EXIT_SUCCESS)
1985 return -EPROTO;
3b925504
LP
1986
1987 free_and_replace(m->hostname, hostname);
1988 m->machine_id = machine_id;
1989 strv_free_and_replace(m->machine_info, machine_info);
1990 strv_free_and_replace(m->os_release, os_release);
1991
1992finish:
1993 for (k = 0; k < n_meta_initialized; k++)
1994 safe_close_pair(fds + 2*k);
1995
1996 return r;
1997}
1998
4526113f
LP
1999int dissect_image_and_warn(
2000 int fd,
2001 const char *name,
89e62e0b 2002 const VeritySettings *verity,
18d73705 2003 const MountOptions *mount_options,
4526113f
LP
2004 DissectImageFlags flags,
2005 DissectedImage **ret) {
2006
2007 _cleanup_free_ char *buffer = NULL;
2008 int r;
2009
2010 if (!name) {
2011 r = fd_get_path(fd, &buffer);
2012 if (r < 0)
2013 return r;
2014
2015 name = buffer;
2016 }
2017
89e62e0b 2018 r = dissect_image(fd, verity, mount_options, flags, ret);
4526113f
LP
2019
2020 switch (r) {
2021
2022 case -EOPNOTSUPP:
2023 return log_error_errno(r, "Dissecting images is not supported, compiled without blkid support.");
2024
2025 case -ENOPKG:
2026 return log_error_errno(r, "Couldn't identify a suitable partition table or file system in '%s'.", name);
2027
2028 case -EADDRNOTAVAIL:
2029 return log_error_errno(r, "No root partition for specified root hash found in '%s'.", name);
2030
2031 case -ENOTUNIQ:
2032 return log_error_errno(r, "Multiple suitable root partitions found in image '%s'.", name);
2033
2034 case -ENXIO:
2035 return log_error_errno(r, "No suitable root partition found in image '%s'.", name);
2036
2037 case -EPROTONOSUPPORT:
2038 return log_error_errno(r, "Device '%s' is loopback block device with partition scanning turned off, please turn it on.", name);
2039
2040 default:
2041 if (r < 0)
2042 return log_error_errno(r, "Failed to dissect image '%s': %m", name);
2043
2044 return r;
2045 }
2046}
2047
569a0e42 2048bool dissected_image_can_do_verity(const DissectedImage *image, PartitionDesignator partition_designator) {
e7cbe5cb
LB
2049 if (image->single_file_system)
2050 return partition_designator == PARTITION_ROOT && image->can_verity;
2051
2052 return PARTITION_VERITY_OF(partition_designator) >= 0;
2053}
2054
569a0e42 2055bool dissected_image_has_verity(const DissectedImage *image, PartitionDesignator partition_designator) {
e7cbe5cb
LB
2056 int k;
2057
2058 if (image->single_file_system)
2059 return partition_designator == PARTITION_ROOT && image->verity;
2060
2061 k = PARTITION_VERITY_OF(partition_designator);
2062 return k >= 0 && image->partitions[k].found;
2063}
2064
18d73705
LB
2065MountOptions* mount_options_free_all(MountOptions *options) {
2066 MountOptions *m;
2067
2068 while ((m = options)) {
2069 LIST_REMOVE(mount_options, options, m);
2070 free(m->options);
2071 free(m);
2072 }
2073
2074 return NULL;
2075}
2076
569a0e42 2077const char* mount_options_from_designator(const MountOptions *options, PartitionDesignator designator) {
f5215bc8 2078 const MountOptions *m;
18d73705 2079
f5215bc8 2080 LIST_FOREACH(mount_options, m, options)
9ece6444 2081 if (designator == m->partition_designator && !isempty(m->options))
18d73705 2082 return m->options;
6aa05ebd 2083
18d73705
LB
2084 return NULL;
2085}
2086
6aa05ebd
LP
2087int mount_image_privately_interactively(
2088 const char *image,
2089 DissectImageFlags flags,
2090 char **ret_directory,
2091 LoopDevice **ret_loop_device,
2092 DecryptedImage **ret_decrypted_image) {
2093
2094 _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
2095 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
2096 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
2097 _cleanup_(rmdir_and_freep) char *created_dir = NULL;
2098 _cleanup_free_ char *temp = NULL;
2099 int r;
2100
2101 /* Mounts an OS image at a temporary place, inside a newly created mount namespace of our own. This
2102 * is used by tools such as systemd-tmpfiles or systemd-firstboot to operate on some disk image
2103 * easily. */
2104
2105 assert(image);
2106 assert(ret_directory);
2107 assert(ret_loop_device);
2108 assert(ret_decrypted_image);
2109
2110 r = tempfn_random_child(NULL, program_invocation_short_name, &temp);
2111 if (r < 0)
2112 return log_error_errno(r, "Failed to generate temporary mount directory: %m");
2113
2114 r = loop_device_make_by_path(
2115 image,
2116 FLAGS_SET(flags, DISSECT_IMAGE_READ_ONLY) ? O_RDONLY : O_RDWR,
2117 FLAGS_SET(flags, DISSECT_IMAGE_NO_PARTITION_TABLE) ? 0 : LO_FLAGS_PARTSCAN,
2118 &d);
2119 if (r < 0)
2120 return log_error_errno(r, "Failed to set up loopback device: %m");
2121
89e62e0b 2122 r = dissect_image_and_warn(d->fd, image, NULL, NULL, flags, &dissected_image);
6aa05ebd
LP
2123 if (r < 0)
2124 return r;
2125
89e62e0b 2126 r = dissected_image_decrypt_interactively(dissected_image, NULL, NULL, flags, &decrypted_image);
6aa05ebd
LP
2127 if (r < 0)
2128 return r;
2129
2130 r = detach_mount_namespace();
2131 if (r < 0)
2132 return log_error_errno(r, "Failed to detach mount namespace: %m");
2133
2134 r = mkdir_p(temp, 0700);
2135 if (r < 0)
2136 return log_error_errno(r, "Failed to create mount point: %m");
2137
2138 created_dir = TAKE_PTR(temp);
2139
af187ab2 2140 r = dissected_image_mount_and_warn(dissected_image, created_dir, UID_INVALID, flags);
6aa05ebd 2141 if (r < 0)
af187ab2 2142 return r;
6aa05ebd
LP
2143
2144 if (decrypted_image) {
2145 r = decrypted_image_relinquish(decrypted_image);
2146 if (r < 0)
2147 return log_error_errno(r, "Failed to relinquish DM devices: %m");
2148 }
2149
2150 loop_device_relinquish(d);
2151
2152 *ret_directory = TAKE_PTR(created_dir);
2153 *ret_loop_device = TAKE_PTR(d);
2154 *ret_decrypted_image = TAKE_PTR(decrypted_image);
2155
2156 return 0;
2157}
2158
8c1be37e
LP
2159static const char *const partition_designator_table[] = {
2160 [PARTITION_ROOT] = "root",
2161 [PARTITION_ROOT_SECONDARY] = "root-secondary",
2162 [PARTITION_HOME] = "home",
2163 [PARTITION_SRV] = "srv",
2164 [PARTITION_ESP] = "esp",
a8c47660 2165 [PARTITION_XBOOTLDR] = "xbootldr",
8c1be37e 2166 [PARTITION_SWAP] = "swap",
4623e8e6
LP
2167 [PARTITION_ROOT_VERITY] = "root-verity",
2168 [PARTITION_ROOT_SECONDARY_VERITY] = "root-secondary-verity",
d4dffb85
LP
2169 [PARTITION_TMP] = "tmp",
2170 [PARTITION_VAR] = "var",
8c1be37e
LP
2171};
2172
569a0e42 2173DEFINE_STRING_TABLE_LOOKUP(partition_designator, PartitionDesignator);