]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/dissect/dissect.c
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / dissect / dissect.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
a2ea3b2f
LP
2
3#include <fcntl.h>
a2ea3b2f 4#include <getopt.h>
e08f94ac
LP
5#include <linux/loop.h>
6#include <stdio.h>
16b74592
LP
7#include <sys/ioctl.h>
8#include <sys/mount.h>
a2ea3b2f
LP
9
10#include "architecture.h"
33973b84 11#include "copy.h"
a2ea3b2f 12#include "dissect-image.h"
33973b84 13#include "fd-util.h"
89e62e0b 14#include "fileio.h"
89d00f2e 15#include "format-table.h"
16b74592 16#include "format-util.h"
33973b84 17#include "fs-util.h"
4623e8e6 18#include "hexdecoct.h"
a2ea3b2f
LP
19#include "log.h"
20#include "loop-util.h"
149afb45 21#include "main-func.h"
33973b84
LP
22#include "mkdir.h"
23#include "mount-util.h"
24#include "namespace-util.h"
e475f729 25#include "parse-util.h"
e7cbe5cb 26#include "path-util.h"
5c05f062 27#include "pretty-print.h"
33973b84 28#include "stat-util.h"
a2ea3b2f 29#include "string-util.h"
a1edd22e 30#include "strv.h"
5c05f062 31#include "terminal-util.h"
33973b84 32#include "tmpfile-util.h"
2d3a5a73 33#include "user-util.h"
a2ea3b2f
LP
34#include "util.h"
35
36static enum {
37 ACTION_DISSECT,
38 ACTION_MOUNT,
33973b84
LP
39 ACTION_COPY_FROM,
40 ACTION_COPY_TO,
a2ea3b2f
LP
41} arg_action = ACTION_DISSECT;
42static const char *arg_image = NULL;
43static const char *arg_path = NULL;
33973b84
LP
44static const char *arg_source = NULL;
45static const char *arg_target = NULL;
e475f729 46static DissectImageFlags arg_flags = DISSECT_IMAGE_REQUIRE_ROOT|DISSECT_IMAGE_DISCARD_ON_LOOP|DISSECT_IMAGE_RELAX_VAR_CHECK|DISSECT_IMAGE_FSCK;
aee36b4e 47static VeritySettings arg_verity_settings = VERITY_SETTINGS_DEFAULT;
de8231b0
LP
48static bool arg_json = false;
49static JsonFormatFlags arg_json_format_flags = 0;
a2ea3b2f 50
89e62e0b 51STATIC_DESTRUCTOR_REGISTER(arg_verity_settings, verity_settings_done);
149afb45 52
5c05f062
LP
53static int help(void) {
54 _cleanup_free_ char *link = NULL;
55 int r;
56
57 r = terminal_urlify_man("systemd-dissect", "1", &link);
58 if (r < 0)
59 return log_oom();
60
61 printf("%1$s [OPTIONS...] IMAGE\n"
33973b84
LP
62 "%1$s [OPTIONS...] --mount IMAGE PATH\n"
63 "%1$s [OPTIONS...] --copy-from IMAGE PATH [TARGET]\n"
64 "%1$s [OPTIONS...] --copy-to IMAGE [SOURCE] PATH\n\n"
5c05f062
LP
65 "%5$sDissect a file system OS image.%6$s\n\n"
66 "%3$sOptions:%4$s\n"
e7cbe5cb
LB
67 " -r --read-only Mount read-only\n"
68 " --fsck=BOOL Run fsck before mounting\n"
5c05f062 69 " --mkdir Make mount directory before mounting, if missing\n"
e7cbe5cb
LB
70 " --discard=MODE Choose 'discard' mode (disabled, loop, all, crypto)\n"
71 " --root-hash=HASH Specify root hash for verity\n"
c2923fdc
LB
72 " --root-hash-sig=SIG Specify pkcs7 signature of root hash for verity\n"
73 " as a DER encoded PKCS7, either as a path to a file\n"
74 " or as an ASCII base64 encoded string prefixed by\n"
75 " 'base64:'\n"
e7cbe5cb 76 " --verity-data=PATH Specify data file with hash tree for verity if it is\n"
5c05f062 77 " not embedded in IMAGE\n"
de8231b0
LP
78 " --json=pretty|short|off\n"
79 " Generate JSON output\n"
5c05f062
LP
80 "\n%3$sCommands:%4$s\n"
81 " -h --help Show this help\n"
82 " --version Show package version\n"
83 " -m --mount Mount the image to the specified directory\n"
84 " -M Shortcut for --mount --mkdir\n"
33973b84
LP
85 " -x --copy-from Copy files from image to host\n"
86 " -a --copy-to Copy files from host to image\n"
5c05f062
LP
87 "\nSee the %2$s for details.\n"
88 , program_invocation_short_name
89 , link
90 , ansi_underline(), ansi_normal()
91 , ansi_highlight(), ansi_normal());
92
93 return 0;
a2ea3b2f
LP
94}
95
96static int parse_argv(int argc, char *argv[]) {
97
98 enum {
99 ARG_VERSION = 0x100,
18b5886e 100 ARG_DISCARD,
e475f729 101 ARG_FSCK,
89e62e0b 102 ARG_ROOT_HASH,
c2923fdc 103 ARG_ROOT_HASH_SIG,
89e62e0b 104 ARG_VERITY_DATA,
5c05f062 105 ARG_MKDIR,
de8231b0 106 ARG_JSON,
a2ea3b2f
LP
107 };
108
109 static const struct option options[] = {
c2923fdc
LB
110 { "help", no_argument, NULL, 'h' },
111 { "version", no_argument, NULL, ARG_VERSION },
112 { "mount", no_argument, NULL, 'm' },
113 { "read-only", no_argument, NULL, 'r' },
114 { "discard", required_argument, NULL, ARG_DISCARD },
c2923fdc 115 { "fsck", required_argument, NULL, ARG_FSCK },
89e62e0b 116 { "root-hash", required_argument, NULL, ARG_ROOT_HASH },
c2923fdc 117 { "root-hash-sig", required_argument, NULL, ARG_ROOT_HASH_SIG },
89e62e0b 118 { "verity-data", required_argument, NULL, ARG_VERITY_DATA },
5c05f062 119 { "mkdir", no_argument, NULL, ARG_MKDIR },
33973b84
LP
120 { "copy-from", no_argument, NULL, 'x' },
121 { "copy-to", no_argument, NULL, 'a' },
de8231b0 122 { "json", required_argument, NULL, ARG_JSON },
a2ea3b2f
LP
123 {}
124 };
125
4623e8e6 126 int c, r;
a2ea3b2f
LP
127
128 assert(argc >= 0);
129 assert(argv);
130
33973b84 131 while ((c = getopt_long(argc, argv, "hmrMxa", options, NULL)) >= 0) {
a2ea3b2f
LP
132
133 switch (c) {
134
135 case 'h':
5c05f062 136 return help();
a2ea3b2f
LP
137
138 case ARG_VERSION:
139 return version();
140
141 case 'm':
142 arg_action = ACTION_MOUNT;
143 break;
144
5c05f062
LP
145 case ARG_MKDIR:
146 arg_flags |= DISSECT_IMAGE_MKDIR;
147 break;
148
149 case 'M':
150 /* Shortcut combination of the above two */
151 arg_action = ACTION_MOUNT;
152 arg_flags |= DISSECT_IMAGE_MKDIR;
153 break;
154
33973b84
LP
155 case 'x':
156 arg_action = ACTION_COPY_FROM;
157 arg_flags |= DISSECT_IMAGE_READ_ONLY;
158 break;
159
160 case 'a':
161 arg_action = ACTION_COPY_TO;
162 break;
163
a2ea3b2f 164 case 'r':
18b5886e
LP
165 arg_flags |= DISSECT_IMAGE_READ_ONLY;
166 break;
167
971e2ef0
ZJS
168 case ARG_DISCARD: {
169 DissectImageFlags flags;
170
18b5886e 171 if (streq(optarg, "disabled"))
971e2ef0 172 flags = 0;
18b5886e 173 else if (streq(optarg, "loop"))
971e2ef0 174 flags = DISSECT_IMAGE_DISCARD_ON_LOOP;
18b5886e 175 else if (streq(optarg, "all"))
971e2ef0 176 flags = DISSECT_IMAGE_DISCARD_ON_LOOP | DISSECT_IMAGE_DISCARD;
18b5886e 177 else if (streq(optarg, "crypt"))
971e2ef0 178 flags = DISSECT_IMAGE_DISCARD_ANY;
140788f7
LP
179 else if (streq(optarg, "list")) {
180 puts("disabled\n"
181 "all\n"
182 "crypt\n"
183 "loop");
184 return 0;
185 } else
baaa35ad
ZJS
186 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
187 "Unknown --discard= parameter: %s",
188 optarg);
971e2ef0 189 arg_flags = (arg_flags & ~DISSECT_IMAGE_DISCARD_ANY) | flags;
18b5886e 190
a2ea3b2f 191 break;
971e2ef0 192 }
a2ea3b2f 193
4623e8e6 194 case ARG_ROOT_HASH: {
89e62e0b 195 _cleanup_free_ void *p = NULL;
4623e8e6
LP
196 size_t l;
197
198 r = unhexmem(optarg, strlen(optarg), &p, &l);
199 if (r < 0)
63cf2d75 200 return log_error_errno(r, "Failed to parse root hash '%s': %m", optarg);
89e62e0b
LP
201 if (l < sizeof(sd_id128_t))
202 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
203 "Root hash must be at least 128bit long: %s", optarg);
4623e8e6 204
89e62e0b
LP
205 free_and_replace(arg_verity_settings.root_hash, p);
206 arg_verity_settings.root_hash_size = l;
4623e8e6
LP
207 break;
208 }
209
c2923fdc
LB
210 case ARG_ROOT_HASH_SIG: {
211 char *value;
89e62e0b
LP
212 size_t l;
213 void *p;
c2923fdc
LB
214
215 if ((value = startswith(optarg, "base64:"))) {
c2923fdc
LB
216 r = unbase64mem(value, strlen(value), &p, &l);
217 if (r < 0)
218 return log_error_errno(r, "Failed to parse root hash signature '%s': %m", optarg);
c2923fdc 219 } else {
89e62e0b 220 r = read_full_file(optarg, (char**) &p, &l);
c2923fdc 221 if (r < 0)
89e62e0b 222 return log_error_errno(r, "Failed to read root hash signature file '%s': %m", optarg);
c2923fdc
LB
223 }
224
89e62e0b
LP
225 free_and_replace(arg_verity_settings.root_hash_sig, p);
226 arg_verity_settings.root_hash_sig_size = l;
c2923fdc
LB
227 break;
228 }
229
89e62e0b
LP
230 case ARG_VERITY_DATA:
231 r = parse_path_argument_and_warn(optarg, false, &arg_verity_settings.data_path);
232 if (r < 0)
233 return r;
234 break;
235
e475f729
LP
236 case ARG_FSCK:
237 r = parse_boolean(optarg);
238 if (r < 0)
239 return log_error_errno(r, "Failed to parse --fsck= parameter: %s", optarg);
240
241 SET_FLAG(arg_flags, DISSECT_IMAGE_FSCK, r);
242 break;
243
de8231b0
LP
244 case ARG_JSON:
245 if (streq(optarg, "pretty")) {
246 arg_json = true;
247 arg_json_format_flags = JSON_FORMAT_PRETTY|JSON_FORMAT_COLOR_AUTO;
248 } else if (streq(optarg, "short")) {
249 arg_json = true;
250 arg_json_format_flags = JSON_FORMAT_NEWLINE;
251 } else if (streq(optarg, "off")) {
252 arg_json = false;
253 arg_json_format_flags = 0;
254 } else if (streq(optarg, "help")) {
255 puts("pretty\n"
256 "short\n"
257 "off");
258 return 0;
259 } else
260 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Unknown argument to --json=: %s", optarg);
261
262 break;
263
a2ea3b2f
LP
264 case '?':
265 return -EINVAL;
266
267 default:
268 assert_not_reached("Unhandled option");
269 }
270
271 }
272
273 switch (arg_action) {
274
275 case ACTION_DISSECT:
baaa35ad
ZJS
276 if (optind + 1 != argc)
277 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
33973b84 278 "Expected an image file path as only argument.");
a2ea3b2f
LP
279
280 arg_image = argv[optind];
18b5886e 281 arg_flags |= DISSECT_IMAGE_READ_ONLY;
a2ea3b2f
LP
282 break;
283
284 case ACTION_MOUNT:
baaa35ad
ZJS
285 if (optind + 2 != argc)
286 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
33973b84 287 "Expected an image file path and mount point path as only arguments.");
a2ea3b2f
LP
288
289 arg_image = argv[optind];
290 arg_path = argv[optind + 1];
291 break;
292
33973b84
LP
293 case ACTION_COPY_FROM:
294 if (argc < optind + 2 || argc > optind + 3)
295 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
296 "Expected an image file path, a source path and an optional destination path as only arguments.");
297
298 arg_image = argv[optind];
299 arg_source = argv[optind + 1];
300 arg_target = argc > optind + 2 ? argv[optind + 2] : "-" /* this means stdout */ ;
301
302 arg_flags |= DISSECT_IMAGE_READ_ONLY;
303 break;
304
305 case ACTION_COPY_TO:
306 if (argc < optind + 2 || argc > optind + 3)
307 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
308 "Expected an image file path, an optional source path and a destination path as only arguments.");
309
310 arg_image = argv[optind];
311
312 if (argc > optind + 2) {
313 arg_source = argv[optind + 1];
314 arg_target = argv[optind + 2];
315 } else {
316 arg_source = "-"; /* this means stdin */
317 arg_target = argv[optind + 1];
318 }
319
320 break;
321
a2ea3b2f
LP
322 default:
323 assert_not_reached("Unknown action.");
324 }
325
326 return 1;
327}
328
de8231b0
LP
329static int strv_pair_to_json(char **l, JsonVariant **ret) {
330 _cleanup_strv_free_ char **jl = NULL;
331 char **a, **b;
332
333 STRV_FOREACH_PAIR(a, b, l) {
334 char *j;
335
336 j = strjoin(*a, "=", *b);
337 if (!j)
338 return log_oom();
339
340 if (strv_consume(&jl, j) < 0)
341 return log_oom();
342 }
343
344 return json_variant_new_array_strv(ret, jl);
345}
346
37e44c3f 347static int action_dissect(DissectedImage *m, LoopDevice *d) {
de8231b0 348 _cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
37e44c3f 349 _cleanup_(table_unrefp) Table *t = NULL;
de8231b0 350 uint64_t size = UINT64_MAX;
a2ea3b2f
LP
351 int r;
352
37e44c3f
LP
353 assert(m);
354 assert(d);
a2ea3b2f 355
de8231b0
LP
356 if (!arg_json)
357 printf(" Name: %s\n", basename(arg_image));
a2ea3b2f 358
37e44c3f
LP
359 if (ioctl(d->fd, BLKGETSIZE64, &size) < 0)
360 log_debug_errno(errno, "Failed to query size of loopback device: %m");
de8231b0 361 else if (!arg_json) {
37e44c3f
LP
362 char s[FORMAT_BYTES_MAX];
363 printf(" Size: %s\n", format_bytes(s, sizeof(s), size));
364 }
a2ea3b2f 365
de8231b0
LP
366 if (!arg_json)
367 putc('\n', stdout);
af8219d5
LP
368
369 r = dissected_image_acquire_metadata(m);
370 if (r == -ENXIO)
371 return log_error_errno(r, "No root partition discovered.");
af8219d5
LP
372 if (r == -EUCLEAN)
373 return log_error_errno(r, "File system check of image failed.");
4f309abb
LP
374 if (r == -EMEDIUMTYPE)
375 log_warning_errno(r, "Not a valid OS image, no os-release file included. Proceeding anyway.");
376 else if (r == -EUNATCH)
af8219d5
LP
377 log_warning_errno(r, "OS image is encrypted, proceeding without showing OS image metadata.");
378 else if (r == -EBUSY)
379 log_warning_errno(r, "OS image is currently in use, proceeding without showing OS image metadata.");
380 else if (r < 0)
381 return log_error_errno(r, "Failed to acquire image metadata: %m");
de8231b0 382 else if (!arg_json) {
af8219d5
LP
383 if (m->hostname)
384 printf(" Hostname: %s\n", m->hostname);
a2ea3b2f 385
af8219d5
LP
386 if (!sd_id128_is_null(m->machine_id))
387 printf("Machine ID: " SD_ID128_FORMAT_STR "\n", SD_ID128_FORMAT_VAL(m->machine_id));
a1edd22e 388
af8219d5
LP
389 if (!strv_isempty(m->machine_info)) {
390 char **p, **q;
16b74592 391
af8219d5
LP
392 STRV_FOREACH_PAIR(p, q, m->machine_info)
393 printf("%s %s=%s\n",
394 p == m->machine_info ? "Mach. Info:" : " ",
395 *p, *q);
396 }
16b74592 397
af8219d5
LP
398 if (!strv_isempty(m->os_release)) {
399 char **p, **q;
a1edd22e 400
af8219d5
LP
401 STRV_FOREACH_PAIR(p, q, m->os_release)
402 printf("%s %s=%s\n",
403 p == m->os_release ? "OS Release:" : " ",
404 *p, *q);
405 }
a1edd22e 406
4f309abb
LP
407 if (m->hostname ||
408 !sd_id128_is_null(m->machine_id) ||
409 !strv_isempty(m->machine_info) ||
410 !strv_isempty(m->os_release))
411 putc('\n', stdout);
412 } else {
de8231b0
LP
413 _cleanup_(json_variant_unrefp) JsonVariant *mi = NULL, *osr = NULL;
414
415 if (!strv_isempty(m->machine_info)) {
416 r = strv_pair_to_json(m->machine_info, &mi);
417 if (r < 0)
418 return log_oom();
419 }
420
421 if (!strv_isempty(m->os_release)) {
422 r = strv_pair_to_json(m->os_release, &osr);
423 if (r < 0)
424 return log_oom();
425 }
426
427 r = json_build(&v, JSON_BUILD_OBJECT(
428 JSON_BUILD_PAIR("name", JSON_BUILD_STRING(basename(arg_image))),
429 JSON_BUILD_PAIR("size", JSON_BUILD_INTEGER(size)),
430 JSON_BUILD_PAIR_CONDITION(m->hostname, "hostname", JSON_BUILD_STRING(m->hostname)),
431 JSON_BUILD_PAIR_CONDITION(!sd_id128_is_null(m->machine_id), "machineId", JSON_BUILD_ID128(m->machine_id)),
432 JSON_BUILD_PAIR_CONDITION(mi, "machineInfo", JSON_BUILD_VARIANT(mi)),
433 JSON_BUILD_PAIR_CONDITION(osr, "osRelease", JSON_BUILD_VARIANT(osr))));
434 if (r < 0)
435 return log_oom();
436 }
437
37e44c3f
LP
438 t = table_new("rw", "designator", "partition uuid", "fstype", "architecture", "verity", "node", "partno");
439 if (!t)
440 return log_oom();
a1edd22e 441
37e44c3f
LP
442 (void) table_set_empty_string(t, "-");
443 (void) table_set_align_percent(t, table_get_cell(t, 0, 7), 100);
a2ea3b2f 444
569a0e42 445 for (PartitionDesignator i = 0; i < _PARTITION_DESIGNATOR_MAX; i++) {
37e44c3f 446 DissectedPartition *p = m->partitions + i;
89d00f2e 447
37e44c3f
LP
448 if (!p->found)
449 continue;
89d00f2e 450
37e44c3f
LP
451 r = table_add_many(
452 t,
453 TABLE_STRING, p->rw ? "rw" : "ro",
454 TABLE_STRING, partition_designator_to_string(i));
455 if (r < 0)
456 return table_log_add_error(r);
89d00f2e 457
37e44c3f
LP
458 if (sd_id128_is_null(p->uuid))
459 r = table_add_cell(t, NULL, TABLE_EMPTY, NULL);
460 else
461 r = table_add_cell(t, NULL, TABLE_UUID, &p->uuid);
462 if (r < 0)
463 return table_log_add_error(r);
89d00f2e 464
37e44c3f
LP
465 r = table_add_many(
466 t,
467 TABLE_STRING, p->fstype,
468 TABLE_STRING, architecture_to_string(p->architecture));
469 if (r < 0)
470 return table_log_add_error(r);
471
89e62e0b 472 if (arg_verity_settings.data_path)
37e44c3f
LP
473 r = table_add_cell(t, NULL, TABLE_STRING, "external");
474 else if (dissected_image_can_do_verity(m, i))
475 r = table_add_cell(t, NULL, TABLE_STRING, yes_no(dissected_image_has_verity(m, i)));
476 else
477 r = table_add_cell(t, NULL, TABLE_EMPTY, NULL);
478 if (r < 0)
479 return table_log_add_error(r);
89d00f2e 480
37e44c3f
LP
481 if (p->partno < 0) /* no partition table, naked file system */ {
482 r = table_add_cell(t, NULL, TABLE_STRING, arg_image);
89d00f2e
LP
483 if (r < 0)
484 return table_log_add_error(r);
485
37e44c3f
LP
486 r = table_add_cell(t, NULL, TABLE_EMPTY, NULL);
487 } else {
488 r = table_add_cell(t, NULL, TABLE_STRING, p->node);
89d00f2e
LP
489 if (r < 0)
490 return table_log_add_error(r);
491
37e44c3f
LP
492 r = table_add_cell(t, NULL, TABLE_INT, &p->partno);
493 }
494 if (r < 0)
495 return table_log_add_error(r);
496 }
89d00f2e 497
de8231b0
LP
498 if (arg_json) {
499 _cleanup_(json_variant_unrefp) JsonVariant *jt = NULL;
500
501 r = table_to_json(t, &jt);
502 if (r < 0)
503 return log_error_errno(r, "Failed to convert table to JSON: %m");
504
505 r = json_variant_set_field(&v, "mounts", jt);
506 if (r < 0)
507 return log_oom();
508
509 json_variant_dump(v, arg_json_format_flags, stdout, NULL);
510 } else {
511 r = table_print(t, stdout);
512 if (r < 0)
513 return log_error_errno(r, "Failed to dump table: %m");
514 }
89d00f2e 515
37e44c3f
LP
516 return 0;
517}
89d00f2e 518
37e44c3f
LP
519static int action_mount(DissectedImage *m, LoopDevice *d) {
520 _cleanup_(decrypted_image_unrefp) DecryptedImage *di = NULL;
521 int r;
89d00f2e 522
37e44c3f
LP
523 assert(m);
524 assert(d);
89d00f2e 525
37e44c3f
LP
526 r = dissected_image_decrypt_interactively(
527 m, NULL,
89e62e0b 528 &arg_verity_settings,
37e44c3f
LP
529 arg_flags,
530 &di);
531 if (r < 0)
532 return r;
89d00f2e 533
af187ab2 534 r = dissected_image_mount_and_warn(m, arg_path, UID_INVALID, arg_flags);
37e44c3f 535 if (r < 0)
af187ab2 536 return r;
89d00f2e 537
37e44c3f
LP
538 if (di) {
539 r = decrypted_image_relinquish(di);
540 if (r < 0)
541 return log_error_errno(r, "Failed to relinquish DM devices: %m");
a2ea3b2f
LP
542 }
543
37e44c3f
LP
544 loop_device_relinquish(d);
545 return 0;
546}
18b5886e 547
37e44c3f
LP
548static int action_copy(DissectedImage *m, LoopDevice *d) {
549 _cleanup_(umount_and_rmdir_and_freep) char *mounted_dir = NULL;
550 _cleanup_(decrypted_image_unrefp) DecryptedImage *di = NULL;
551 _cleanup_(rmdir_and_freep) char *created_dir = NULL;
552 _cleanup_free_ char *temp = NULL;
553 int r;
a2ea3b2f 554
37e44c3f
LP
555 assert(m);
556 assert(d);
18b5886e 557
37e44c3f
LP
558 r = dissected_image_decrypt_interactively(
559 m, NULL,
89e62e0b 560 &arg_verity_settings,
37e44c3f
LP
561 arg_flags,
562 &di);
563 if (r < 0)
564 return r;
a2ea3b2f 565
37e44c3f
LP
566 r = detach_mount_namespace();
567 if (r < 0)
568 return log_error_errno(r, "Failed to detach mount namespace: %m");
33973b84 569
37e44c3f
LP
570 r = tempfn_random_child(NULL, program_invocation_short_name, &temp);
571 if (r < 0)
572 return log_error_errno(r, "Failed to generate temporary mount directory: %m");
33973b84 573
37e44c3f
LP
574 r = mkdir_p(temp, 0700);
575 if (r < 0)
576 return log_error_errno(r, "Failed to create mount point: %m");
33973b84 577
37e44c3f
LP
578 created_dir = TAKE_PTR(temp);
579
af187ab2 580 r = dissected_image_mount_and_warn(m, created_dir, UID_INVALID, arg_flags);
37e44c3f 581 if (r < 0)
af187ab2 582 return r;
33973b84 583
37e44c3f 584 mounted_dir = TAKE_PTR(created_dir);
33973b84 585
37e44c3f
LP
586 if (di) {
587 r = decrypted_image_relinquish(di);
33973b84 588 if (r < 0)
37e44c3f
LP
589 return log_error_errno(r, "Failed to relinquish DM devices: %m");
590 }
591
592 loop_device_relinquish(d);
33973b84 593
37e44c3f
LP
594 if (arg_action == ACTION_COPY_FROM) {
595 _cleanup_close_ int source_fd = -1, target_fd = -1;
33973b84 596
37e44c3f
LP
597 source_fd = chase_symlinks_and_open(arg_source, mounted_dir, CHASE_PREFIX_ROOT|CHASE_WARN, O_RDONLY|O_CLOEXEC|O_NOCTTY, NULL);
598 if (source_fd < 0)
599 return log_error_errno(source_fd, "Failed to open source path '%s' in image '%s': %m", arg_source, arg_image);
600
601 /* Copying to stdout? */
602 if (streq(arg_target, "-")) {
603 r = copy_bytes(source_fd, STDOUT_FILENO, (uint64_t) -1, COPY_REFLINK);
33973b84 604 if (r < 0)
37e44c3f
LP
605 return log_error_errno(r, "Failed to copy bytes from %s in mage '%s' to stdout: %m", arg_source, arg_image);
606
607 /* When we copy to stdou we don't copy any attributes (i.e. no access mode, no ownership, no xattr, no times) */
608 return 0;
33973b84
LP
609 }
610
37e44c3f 611 /* Try to copy as directory? */
dd480f78 612 r = copy_directory_fd(source_fd, arg_target, COPY_REFLINK|COPY_MERGE_EMPTY|COPY_SIGINT|COPY_HARDLINKS);
37e44c3f
LP
613 if (r >= 0)
614 return 0;
615 if (r != -ENOTDIR)
616 return log_error_errno(r, "Failed to copy %s in image '%s' to '%s': %m", arg_source, arg_image, arg_target);
617
618 r = fd_verify_regular(source_fd);
619 if (r == -EISDIR)
620 return log_error_errno(r, "Target '%s' exists already and is not a directory.", arg_target);
621 if (r < 0)
622 return log_error_errno(r, "Source path %s in image '%s' is neither regular file nor directory, refusing: %m", arg_source, arg_image);
33973b84 623
37e44c3f
LP
624 /* Nah, it's a plain file! */
625 target_fd = open(arg_target, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW, 0600);
626 if (target_fd < 0)
627 return log_error_errno(errno, "Failed to create regular file at target path '%s': %m", arg_target);
33973b84 628
37e44c3f
LP
629 r = copy_bytes(source_fd, target_fd, (uint64_t) -1, COPY_REFLINK);
630 if (r < 0)
631 return log_error_errno(r, "Failed to copy bytes from %s in mage '%s' to '%s': %m", arg_source, arg_image, arg_target);
33973b84 632
37e44c3f
LP
633 (void) copy_xattr(source_fd, target_fd);
634 (void) copy_access(source_fd, target_fd);
635 (void) copy_times(source_fd, target_fd, 0);
33973b84 636
37e44c3f 637 /* When this is a regular file we don't copy ownership! */
33973b84 638
37e44c3f
LP
639 } else {
640 _cleanup_close_ int source_fd = -1, target_fd = -1;
641 _cleanup_close_ int dfd = -1;
642 _cleanup_free_ char *dn = NULL;
33973b84 643
37e44c3f
LP
644 assert(arg_action == ACTION_COPY_TO);
645
646 dn = dirname_malloc(arg_target);
647 if (!dn)
648 return log_oom();
649
650 r = chase_symlinks(dn, mounted_dir, CHASE_PREFIX_ROOT|CHASE_WARN, NULL, &dfd);
651 if (r < 0)
652 return log_error_errno(r, "Failed to open '%s': %m", dn);
33973b84 653
37e44c3f
LP
654 /* Are we reading from stdin? */
655 if (streq(arg_source, "-")) {
656 target_fd = openat(dfd, basename(arg_target), O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY|O_EXCL, 0644);
33973b84 657 if (target_fd < 0)
37e44c3f 658 return log_error_errno(errno, "Failed to open target file '%s': %m", arg_target);
33973b84 659
37e44c3f 660 r = copy_bytes(STDIN_FILENO, target_fd, (uint64_t) -1, COPY_REFLINK);
33973b84 661 if (r < 0)
37e44c3f 662 return log_error_errno(r, "Failed to copy bytes from stdin to '%s' in image '%s': %m", arg_target, arg_image);
33973b84 663
37e44c3f
LP
664 /* When we copy from stdin we don't copy any attributes (i.e. no access mode, no ownership, no xattr, no times) */
665 return 0;
666 }
33973b84 667
37e44c3f
LP
668 source_fd = open(arg_source, O_RDONLY|O_CLOEXEC|O_NOCTTY);
669 if (source_fd < 0)
670 return log_error_errno(source_fd, "Failed to open source path '%s': %m", arg_source);
33973b84 671
37e44c3f
LP
672 r = fd_verify_regular(source_fd);
673 if (r < 0) {
674 if (r != -EISDIR)
675 return log_error_errno(r, "Source '%s' is neither regular file nor directory: %m", arg_source);
33973b84 676
37e44c3f 677 /* We are looking at a directory. */
33973b84 678
37e44c3f
LP
679 target_fd = openat(dfd, basename(arg_target), O_RDONLY|O_DIRECTORY|O_CLOEXEC);
680 if (target_fd < 0) {
681 if (errno != ENOENT)
682 return log_error_errno(errno, "Failed to open destination '%s': %m", arg_target);
33973b84 683
dd480f78 684 r = copy_tree_at(source_fd, ".", dfd, basename(arg_target), UID_INVALID, GID_INVALID, COPY_REFLINK|COPY_REPLACE|COPY_SIGINT|COPY_HARDLINKS);
37e44c3f 685 } else
dd480f78 686 r = copy_tree_at(source_fd, ".", target_fd, ".", UID_INVALID, GID_INVALID, COPY_REFLINK|COPY_REPLACE|COPY_SIGINT|COPY_HARDLINKS);
33973b84 687 if (r < 0)
37e44c3f 688 return log_error_errno(r, "Failed to copy '%s' to '%s' in image '%s': %m", arg_source, arg_target, arg_image);
33973b84 689
37e44c3f
LP
690 return 0;
691 }
33973b84 692
37e44c3f
LP
693 /* We area looking at a regular file */
694 target_fd = openat(dfd, basename(arg_target), O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY|O_EXCL, 0600);
695 if (target_fd < 0)
696 return log_error_errno(errno, "Failed to open target file '%s': %m", arg_target);
33973b84 697
37e44c3f
LP
698 r = copy_bytes(source_fd, target_fd, (uint64_t) -1, COPY_REFLINK);
699 if (r < 0)
700 return log_error_errno(r, "Failed to copy bytes from '%s' to '%s' in image '%s': %m", arg_source, arg_target, arg_image);
33973b84 701
37e44c3f
LP
702 (void) copy_xattr(source_fd, target_fd);
703 (void) copy_access(source_fd, target_fd);
704 (void) copy_times(source_fd, target_fd, 0);
33973b84 705
37e44c3f
LP
706 /* When this is a regular file we don't copy ownership! */
707 }
33973b84 708
37e44c3f
LP
709 return 0;
710}
33973b84 711
37e44c3f
LP
712static int run(int argc, char *argv[]) {
713 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
714 _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
715 int r;
33973b84 716
37e44c3f
LP
717 log_parse_environment();
718 log_open();
33973b84 719
37e44c3f
LP
720 r = parse_argv(argc, argv);
721 if (r <= 0)
722 return r;
33973b84 723
89e62e0b
LP
724 r = verity_settings_load(
725 &arg_verity_settings,
726 arg_image, NULL, NULL);
37e44c3f
LP
727 if (r < 0)
728 return log_error_errno(r, "Failed to read verity artifacts for %s: %m", arg_image);
33973b84 729
89e62e0b
LP
730 if (arg_verity_settings.data_path)
731 arg_flags |= DISSECT_IMAGE_NO_PARTITION_TABLE; /* We only support Verity per file system,
732 * hence if there's external Verity data
733 * available we turn off partition table
734 * support */
735
37e44c3f
LP
736 r = loop_device_make_by_path(
737 arg_image,
89e62e0b
LP
738 FLAGS_SET(arg_flags, DISSECT_IMAGE_READ_ONLY) ? O_RDONLY : O_RDWR,
739 FLAGS_SET(arg_flags, DISSECT_IMAGE_NO_PARTITION_TABLE) ? 0 : LO_FLAGS_PARTSCAN,
37e44c3f
LP
740 &d);
741 if (r < 0)
742 return log_error_errno(r, "Failed to set up loopback device: %m");
33973b84 743
37e44c3f
LP
744 r = dissect_image_and_warn(
745 d->fd,
746 arg_image,
89e62e0b 747 &arg_verity_settings,
37e44c3f
LP
748 NULL,
749 arg_flags,
750 &m);
751 if (r < 0)
752 return r;
33973b84 753
37e44c3f 754 switch (arg_action) {
33973b84 755
37e44c3f
LP
756 case ACTION_DISSECT:
757 r = action_dissect(m, d);
758 break;
759
760 case ACTION_MOUNT:
761 r = action_mount(m, d);
762 break;
763
764 case ACTION_COPY_FROM:
765 case ACTION_COPY_TO:
766 r = action_copy(m, d);
33973b84 767 break;
33973b84 768
a2ea3b2f
LP
769 default:
770 assert_not_reached("Unknown action.");
771 }
772
37e44c3f 773 return r;
a2ea3b2f 774}
149afb45
YW
775
776DEFINE_MAIN_FUNCTION(run);