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