]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/cryptsetup/cryptsetup-generator.c
cryptsetup-generator: add detached LUKS header support
[thirdparty/systemd.git] / src / cryptsetup / cryptsetup-generator.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
e23a0ce8 2
e23a0ce8 3#include <errno.h>
ca78ad1d 4#include <fcntl.h>
ca78ad1d
ZJS
5#include <sys/stat.h>
6#include <sys/types.h>
e23a0ce8 7
b5efdb8a 8#include "alloc-util.h"
0fa9e53d 9#include "dropin.h"
7949dfa7 10#include "escape.h"
3ffd4af2 11#include "fd-util.h"
0d39fa9c 12#include "fileio.h"
07630cea 13#include "fstab-util.h"
0fa9e53d
JJ
14#include "generator.h"
15#include "hashmap.h"
7949dfa7 16#include "id128-util.h"
e23a0ce8 17#include "log.h"
49e942b2 18#include "mkdir.h"
6bedfcbb 19#include "parse-util.h"
bde29068 20#include "path-util.h"
4e731273 21#include "proc-cmdline.h"
98bad05e 22#include "specifier.h"
07630cea 23#include "string-util.h"
0fa9e53d
JJ
24#include "strv.h"
25#include "unit-name.h"
26#include "util.h"
27
28typedef struct crypto_device {
29 char *uuid;
6cd5b12a 30 char *keyfile;
70f5f48e 31 char *keydev;
a8574d00
OK
32 char *headerdev;
33 char *datadev;
baade8cc 34 char *name;
0fa9e53d
JJ
35 char *options;
36 bool create;
37} crypto_device;
e23a0ce8 38
7a44c7e3 39static const char *arg_dest = NULL;
66a78c2b
LP
40static bool arg_enabled = true;
41static bool arg_read_crypttab = true;
a6c57e74 42static const char *arg_crypttab = NULL;
3f5ac303 43static const char *arg_runtime_directory = NULL;
6b000af4 44static bool arg_allow_list = false;
0fa9e53d
JJ
45static Hashmap *arg_disks = NULL;
46static char *arg_default_options = NULL;
47static char *arg_default_keyfile = NULL;
141a79f4 48
a4a90e65
YW
49STATIC_DESTRUCTOR_REGISTER(arg_disks, hashmap_freep);
50STATIC_DESTRUCTOR_REGISTER(arg_default_options, freep);
51STATIC_DESTRUCTOR_REGISTER(arg_default_keyfile, freep);
52
fc6f1ad1
OK
53static int split_locationspec(const char *locationspec, char **ret_file, char **ret_device) {
54 _cleanup_free_ char *file = NULL, *device = NULL;
f4ea8432 55 const char *c;
50d2eba2 56
fc6f1ad1
OK
57 assert(ret_file);
58 assert(ret_device);
50d2eba2 59
fc6f1ad1
OK
60 if (!locationspec) {
61 *ret_file = *ret_device = NULL;
fef716b2
ZJS
62 return 0;
63 }
64
fc6f1ad1 65 c = strrchr(locationspec, ':');
50d2eba2 66 if (c) {
fc6f1ad1 67 /* The device part has to be either an absolute path to device node (/dev/something,
32c6237a 68 * /dev/foo/something, or even possibly /dev/foo/something:part), or a fstab device
fc6f1ad1 69 * specification starting with LABEL= or similar. The file part has the same syntax.
32c6237a 70 *
fc6f1ad1 71 * Let's try to guess if the second part looks like a device specification, or just part of a
32c6237a
ZJS
72 * filename with a colon. fstab_node_to_udev_node() will convert the fstab device syntax to
73 * an absolute path. If we didn't get an absolute path, assume that it is just part of the
fc6f1ad1 74 * first file argument. */
32c6237a 75
fc6f1ad1
OK
76 device = fstab_node_to_udev_node(c + 1);
77 if (!device)
50d2eba2 78 return log_oom();
32c6237a 79
fc6f1ad1
OK
80 if (path_is_absolute(device))
81 file = strndup(locationspec, c-locationspec);
32c6237a 82 else {
fc6f1ad1 83 log_debug("Location specification argument contains a colon, but \"%s\" doesn't look like a device specification.\n"
32c6237a 84 "Assuming that \"%s\" is a single device specification.",
fc6f1ad1
OK
85 c + 1, locationspec);
86 device = mfree(device);
32c6237a
ZJS
87 c = NULL;
88 }
89 }
90
91 if (!c)
fc6f1ad1
OK
92 /* No device specified */
93 file = strdup(locationspec);
32c6237a 94
fc6f1ad1 95 if (!file)
32c6237a 96 return log_oom();
50d2eba2 97
fc6f1ad1
OK
98 *ret_file = TAKE_PTR(file);
99 *ret_device = TAKE_PTR(device);
50d2eba2 100
101 return 0;
102}
103
eb7d9aa3 104static int generate_device_mount(
49685fb3 105 const char *name,
eb7d9aa3
OK
106 const char *device,
107 const char *type_prefix, /* "keydev" or "headerdev" */
108 const char *device_timeout,
49685fb3 109 bool canfail,
eb7d9aa3 110 bool readonly,
49685fb3
LP
111 char **unit,
112 char **mount) {
113
32c6237a 114 _cleanup_free_ char *u = NULL, *where = NULL, *name_escaped = NULL, *device_unit = NULL;
70f5f48e
MS
115 _cleanup_fclose_ FILE *f = NULL;
116 int r;
50d2eba2 117 usec_t timeout_us;
70f5f48e
MS
118
119 assert(name);
eb7d9aa3 120 assert(device);
70f5f48e
MS
121 assert(unit);
122 assert(mount);
123
3f5ac303 124 r = mkdir_parents(arg_runtime_directory, 0755);
70f5f48e
MS
125 if (r < 0)
126 return r;
127
3f5ac303 128 r = mkdir(arg_runtime_directory, 0700);
579875bc
MS
129 if (r < 0 && errno != EEXIST)
130 return -errno;
70f5f48e 131
7949dfa7
MS
132 name_escaped = cescape(name);
133 if (!name_escaped)
134 return -ENOMEM;
135
eb7d9aa3 136 where = strjoin(arg_runtime_directory, "/", type_prefix, "-", name_escaped);
70f5f48e
MS
137 if (!where)
138 return -ENOMEM;
139
140 r = mkdir(where, 0700);
579875bc
MS
141 if (r < 0 && errno != EEXIST)
142 return -errno;
70f5f48e
MS
143
144 r = unit_name_from_path(where, ".mount", &u);
145 if (r < 0)
146 return r;
147
148 r = generator_open_unit_file(arg_dest, NULL, u, &f);
149 if (r < 0)
150 return r;
151
70f5f48e
MS
152 fprintf(f,
153 "[Unit]\n"
154 "DefaultDependencies=no\n\n"
155 "[Mount]\n"
156 "What=%s\n"
157 "Where=%s\n"
eb7d9aa3 158 "Options=%s%s\n", device, where, readonly ? "ro" : "rw", canfail ? ",nofail" : "");
50d2eba2 159
eb7d9aa3
OK
160 if (device_timeout) {
161 r = parse_sec_fix_0(device_timeout, &timeout_us);
50d2eba2 162 if (r >= 0) {
eb7d9aa3 163 r = unit_name_from_path(device, ".device", &device_unit);
50d2eba2 164 if (r < 0)
165 return log_error_errno(r, "Failed to generate unit name: %m");
166
167 r = write_drop_in_format(arg_dest, device_unit, 90, "device-timeout",
168 "# Automatically generated by systemd-cryptsetup-generator \n\n"
eb7d9aa3 169 "[Unit]\nJobRunningTimeoutSec=%s", device_timeout);
50d2eba2 170 if (r < 0)
171 return log_error_errno(r, "Failed to write device drop-in: %m");
172
173 } else
eb7d9aa3 174 log_warning_errno(r, "Failed to parse %s, ignoring: %m", device_timeout);
50d2eba2 175
176 }
70f5f48e
MS
177
178 r = fflush_and_check(f);
179 if (r < 0)
180 return r;
181
182 *unit = TAKE_PTR(u);
183 *mount = TAKE_PTR(where);
184
185 return 0;
186}
187
eb7d9aa3
OK
188static int generate_device_umount(const char *name,
189 const char *device_mount,
190 const char *type_prefix, /* "keydev" or "headerdev" */
882f5f42
MS
191 char **ret_umount_unit) {
192 _cleanup_fclose_ FILE *f = NULL;
193 _cleanup_free_ char *u = NULL, *name_escaped = NULL, *mount = NULL;
194 int r;
195
196 assert(name);
197 assert(ret_umount_unit);
198
199 name_escaped = cescape(name);
200 if (!name_escaped)
201 return -ENOMEM;
202
eb7d9aa3 203 u = strjoin(type_prefix, "-", name_escaped, "-umount.service");
882f5f42
MS
204 if (!u)
205 return -ENOMEM;
206
eb7d9aa3 207 r = unit_name_from_path(device_mount, ".mount", &mount);
882f5f42
MS
208 if (r < 0)
209 return r;
210
211 r = generator_open_unit_file(arg_dest, NULL, u, &f);
212 if (r < 0)
213 return r;
214
215 fprintf(f,
216 "[Unit]\n"
217 "DefaultDependencies=no\n"
218 "After=%s\n\n"
219 "[Service]\n"
eb7d9aa3 220 "ExecStart=-" UMOUNT_PATH " %s\n\n", mount, device_mount);
882f5f42
MS
221
222 r = fflush_and_check(f);
223 if (r < 0)
224 return r;
225
226 *ret_umount_unit = TAKE_PTR(u);
227 return 0;
228}
229
38ab1ec9
RS
230static int print_dependencies(FILE *f, const char* device_path) {
231 int r;
232
233 if (STR_IN_SET(device_path, "-", "none"))
234 /* None, nothing to do */
235 return 0;
236
c6b1d7d1
LP
237 if (PATH_IN_SET(device_path,
238 "/dev/urandom",
239 "/dev/random",
240 "/dev/hw_random",
241 "/dev/hwrng")) {
38ab1ec9
RS
242 /* RNG device, add random dep */
243 fputs("After=systemd-random-seed.service\n", f);
244 return 0;
245 }
246
247 _cleanup_free_ char *udev_node = fstab_node_to_udev_node(device_path);
248 if (!udev_node)
249 return log_oom();
250
251 if (path_equal(udev_node, "/dev/null"))
252 return 0;
253
254 if (path_startswith(udev_node, "/dev/")) {
162392b7 255 /* We are dealing with a block device, add dependency for corresponding unit */
38ab1ec9
RS
256 _cleanup_free_ char *unit = NULL;
257
258 r = unit_name_from_path(udev_node, ".device", &unit);
259 if (r < 0)
260 return log_error_errno(r, "Failed to generate unit name: %m");
261
c6b1d7d1
LP
262 fprintf(f,
263 "After=%1$s\n"
264 "Requires=%1$s\n", unit);
38ab1ec9
RS
265 } else {
266 /* Regular file, add mount dependency */
267 _cleanup_free_ char *escaped_path = specifier_escape(device_path);
268 if (!escaped_path)
269 return log_oom();
270
271 fprintf(f, "RequiresMountsFor=%s\n", escaped_path);
272 }
273
274 return 0;
275}
276
e23a0ce8
LP
277static int create_disk(
278 const char *name,
279 const char *device,
280 const char *password,
50d2eba2 281 const char *keydev,
a8574d00 282 const char *headerdev,
62ca7d3b
JL
283 const char *options,
284 const char *source) {
e23a0ce8 285
fb883e75 286 _cleanup_free_ char *n = NULL, *d = NULL, *u = NULL, *e = NULL,
a7e88558 287 *keydev_mount = NULL, *keyfile_timeout_value = NULL,
53ac130b 288 *filtered = NULL, *u_escaped = NULL, *name_escaped = NULL, *header_path = NULL, *password_buffer = NULL,
a8574d00 289 *tmp_fstype = NULL, *filtered_header = NULL, *headerdev_mount = NULL;
7fd1b19b 290 _cleanup_fclose_ FILE *f = NULL;
b559616f 291 const char *dmname;
53ac130b
LP
292 bool noauto, nofail, swap, netdev, attach_in_initrd;
293 int r, detached_header, keyfile_can_timeout, tmp;
e23a0ce8
LP
294
295 assert(name);
296 assert(device);
297
b9f111b9
ZJS
298 noauto = fstab_test_yes_no_option(options, "noauto\0" "auto\0");
299 nofail = fstab_test_yes_no_option(options, "nofail\0" "fail\0");
a6dba978 300 swap = fstab_test_option(options, "swap\0");
b001ad61 301 netdev = fstab_test_option(options, "_netdev\0");
1dc85eff 302 attach_in_initrd = fstab_test_option(options, "x-initrd.attach\0");
8c11d3c1 303
50d2eba2 304 keyfile_can_timeout = fstab_filter_options(options, "keyfile-timeout\0", NULL, &keyfile_timeout_value, NULL);
305 if (keyfile_can_timeout < 0)
306 return log_error_errno(keyfile_can_timeout, "Failed to parse keyfile-timeout= option value: %m");
307
a8574d00
OK
308 detached_header = fstab_filter_options(
309 options,
310 "header\0",
311 NULL,
312 &header_path,
313 headerdev ? &filtered_header : NULL);
38ab1ec9
RS
314 if (detached_header < 0)
315 return log_error_errno(detached_header, "Failed to parse header= option value: %m");
316
53ac130b
LP
317 tmp = fstab_filter_options(options, "tmp\0", NULL, &tmp_fstype, NULL);
318 if (tmp < 0)
319 return log_error_errno(tmp, "Failed to parse tmp= option value: %m");
320
baaa35ad
ZJS
321 if (tmp && swap)
322 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
323 "Device '%s' cannot be both 'tmp' and 'swap'. Ignoring.",
324 name);
155da457 325
98bad05e
LP
326 name_escaped = specifier_escape(name);
327 if (!name_escaped)
328 return log_oom();
329
744198e9
LP
330 e = unit_name_escape(name);
331 if (!e)
332 return log_oom();
333
f7f21d33 334 u = fstab_node_to_udev_node(device);
24a988e9
HH
335 if (!u)
336 return log_oom();
e23a0ce8 337
fb883e75
ZJS
338 r = unit_name_build("systemd-cryptsetup", e, ".service", &n);
339 if (r < 0)
340 return log_error_errno(r, "Failed to generate unit name: %m");
341
98bad05e
LP
342 u_escaped = specifier_escape(u);
343 if (!u_escaped)
344 return log_oom();
345
7410616c
LP
346 r = unit_name_from_path(u, ".device", &d);
347 if (r < 0)
348 return log_error_errno(r, "Failed to generate unit name: %m");
e23a0ce8 349
baaa35ad
ZJS
350 if (keydev && !password)
351 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
352 "Key device is specified, but path to the password file is missing.");
70f5f48e 353
fb883e75
ZJS
354 r = generator_open_unit_file(arg_dest, NULL, n, &f);
355 if (r < 0)
356 return r;
0d536673 357
62ca7d3b 358 r = generator_write_cryptsetup_unit_section(f, source);
a7e88558
LP
359 if (r < 0)
360 return r;
6bbd539e
LP
361
362 if (netdev)
363 fprintf(f, "After=remote-fs-pre.target\n");
e23a0ce8 364
1dc85eff
FB
365 /* If initrd takes care of attaching the disk then it should also detach it during shutdown. */
366 if (!attach_in_initrd)
367 fprintf(f, "Conflicts=umount.target\n");
368
70f5f48e 369 if (keydev) {
882f5f42 370 _cleanup_free_ char *unit = NULL, *umount_unit = NULL;
70f5f48e 371
eb7d9aa3
OK
372 r = generate_device_mount(
373 name,
374 keydev,
375 "keydev",
376 keyfile_timeout_value,
377 /* canfail = */ keyfile_can_timeout > 0,
378 /* readonly= */ true,
379 &unit,
380 &keydev_mount);
70f5f48e
MS
381 if (r < 0)
382 return log_error_errno(r, "Failed to generate keydev mount unit: %m");
383
eb7d9aa3 384 r = generate_device_umount(name, keydev_mount, "keydev", &umount_unit);
882f5f42
MS
385 if (r < 0)
386 return log_error_errno(r, "Failed to generate keydev umount unit: %m");
387
a7e88558
LP
388 password_buffer = path_join(keydev_mount, password);
389 if (!password_buffer)
70f5f48e
MS
390 return log_oom();
391
a7e88558 392 password = password_buffer;
50d2eba2 393
394 fprintf(f, "After=%s\n", unit);
395 if (keyfile_can_timeout > 0)
396 fprintf(f, "Wants=%s\n", unit);
397 else
398 fprintf(f, "Requires=%s\n", unit);
882f5f42
MS
399
400 if (umount_unit) {
401 fprintf(f,
402 "Wants=%s\n"
403 "Before=%s\n",
404 umount_unit,
405 umount_unit
406 );
407 }
70f5f48e
MS
408 }
409
a8574d00
OK
410 if (headerdev) {
411 _cleanup_free_ char *unit = NULL, *umount_unit = NULL, *p = NULL;
412
413 r = generate_device_mount(
414 name,
415 headerdev,
416 "headerdev",
417 NULL,
418 /* canfail= */ false, /* header is always necessary */
419 /* readonly= */ false, /* LUKS2 recovery requires rw header access */
420 &unit,
421 &headerdev_mount);
422 if (r < 0)
423 return log_error_errno(r, "Failed to generate header device mount unit: %m");
424
425 r = generate_device_umount(name, headerdev_mount, "headerdev", &umount_unit);
426 if (r < 0)
427 return log_error_errno(r, "Failed to generate header device umount unit: %m");
428
429 p = path_join(headerdev_mount, header_path);
430 if (!p)
431 return log_oom();
432
433 free_and_replace(header_path, p);
434
435 if (isempty(filtered_header))
436 p = strjoin("header=", header_path);
437 else
438 p = strjoin(filtered_header, ",header=", header_path);
439
440 if (!p)
441 return log_oom();
442
443 free_and_replace(filtered_header, p);
444 options = filtered_header;
445
446 fprintf(f, "After=%s\n"
447 "Requires=%s\n", unit, unit);
448
449 if (umount_unit) {
450 fprintf(f,
451 "Wants=%s\n"
452 "Before=%s\n",
453 umount_unit,
454 umount_unit
455 );
456 }
457 }
458
155da457
LP
459 if (!nofail)
460 fprintf(f,
b001ad61
ZJS
461 "Before=%s\n",
462 netdev ? "remote-cryptsetup.target" : "cryptsetup.target");
155da457 463
50d2eba2 464 if (password && !keydev) {
38ab1ec9
RS
465 r = print_dependencies(f, password);
466 if (r < 0)
467 return r;
468 }
bde29068 469
38ab1ec9 470 /* Check if a header option was specified */
a8574d00 471 if (detached_header > 0 && !headerdev) {
38ab1ec9
RS
472 r = print_dependencies(f, header_path);
473 if (r < 0)
474 return r;
ceca9501 475 }
e23a0ce8 476
a7e88558 477 if (path_startswith(u, "/dev/"))
9ece938a
TW
478 fprintf(f,
479 "BindsTo=%s\n"
480 "After=%s\n"
481 "Before=umount.target\n",
482 d, d);
a7e88558 483 else
b90cbe66
LHS
484 /* For loopback devices, add systemd-tmpfiles-setup-dev.service
485 dependency to ensure that loopback support is available in
486 the kernel (/dev/loop-control needs to exist) */
9ece938a 487 fprintf(f,
b90cbe66
LHS
488 "RequiresMountsFor=%s\n"
489 "Requires=systemd-tmpfiles-setup-dev.service\n"
490 "After=systemd-tmpfiles-setup-dev.service\n",
98bad05e
LP
491 u_escaped);
492
8eea8687
ZJS
493 r = generator_write_timeouts(arg_dest, device, name, options, &filtered);
494 if (r < 0)
7cecc563 495 log_warning_errno(r, "Failed to write device timeout drop-in: %m");
8eea8687 496
a7e88558
LP
497 r = generator_write_cryptsetup_service_section(f, name, u, password, filtered);
498 if (r < 0)
499 return r;
e23a0ce8 500
53ac130b
LP
501 if (tmp) {
502 _cleanup_free_ char *tmp_fstype_escaped = NULL;
503
504 if (tmp_fstype) {
505 tmp_fstype_escaped = specifier_escape(tmp_fstype);
506 if (!tmp_fstype_escaped)
507 return log_oom();
508 }
509
e23a0ce8 510 fprintf(f,
53ac130b
LP
511 "ExecStartPost=" ROOTLIBEXECDIR "/systemd-makefs '%s' '/dev/mapper/%s'\n",
512 tmp_fstype_escaped ?: "ext4", name_escaped);
513 }
e23a0ce8 514
8c11d3c1 515 if (swap)
e23a0ce8 516 fprintf(f,
db2c56b0 517 "ExecStartPost=" ROOTLIBEXECDIR "/systemd-makefs swap '/dev/mapper/%s'\n",
98bad05e 518 name_escaped);
e23a0ce8 519
4652c56c
ZJS
520 r = fflush_and_check(f);
521 if (r < 0)
fb883e75 522 return log_error_errno(r, "Failed to write unit file %s: %m", n);
e23a0ce8 523
155da457 524 if (!noauto) {
b001ad61
ZJS
525 r = generator_add_symlink(arg_dest,
526 netdev ? "remote-cryptsetup.target" : "cryptsetup.target",
b559616f
ZJS
527 nofail ? "wants" : "requires", n);
528 if (r < 0)
529 return r;
f7f21d33 530 }
74715b82 531
b559616f
ZJS
532 dmname = strjoina("dev-mapper-", e, ".device");
533 r = generator_add_symlink(arg_dest, dmname, "requires", n);
534 if (r < 0)
535 return r;
74715b82 536
68395007 537 if (!noauto && !nofail) {
7cecc563
ZJS
538 r = write_drop_in(arg_dest, dmname, 40, "device-timeout",
539 "# Automatically generated by systemd-cryptsetup-generator\n\n"
8eea8687 540 "[Unit]\nJobTimeoutSec=0");
23bbb0de 541 if (r < 0)
7cecc563 542 log_warning_errno(r, "Failed to write device timeout drop-in: %m");
68395007
HH
543 }
544
24a988e9 545 return 0;
e23a0ce8
LP
546}
547
a4a90e65
YW
548static crypto_device* crypt_device_free(crypto_device *d) {
549 if (!d)
550 return NULL;
551
6dd1c368
ZJS
552 free(d->uuid);
553 free(d->keyfile);
70f5f48e 554 free(d->keydev);
6dd1c368
ZJS
555 free(d->name);
556 free(d->options);
a4a90e65 557 return mfree(d);
0fa9e53d
JJ
558}
559
560static crypto_device *get_crypto_device(const char *uuid) {
561 int r;
562 crypto_device *d;
563
564 assert(uuid);
565
566 d = hashmap_get(arg_disks, uuid);
567 if (!d) {
568 d = new0(struct crypto_device, 1);
569 if (!d)
570 return NULL;
571
0fa9e53d 572 d->uuid = strdup(uuid);
6b430fdb
ZJS
573 if (!d->uuid)
574 return mfree(d);
0fa9e53d
JJ
575
576 r = hashmap_put(arg_disks, d->uuid, d);
577 if (r < 0) {
578 free(d->uuid);
6b430fdb 579 return mfree(d);
0fa9e53d
JJ
580 }
581 }
582
583 return d;
584}
585
c3ee5b34
OK
586static bool warn_uuid_invalid(const char *uuid, const char *key) {
587 assert(key);
588
589 if (!id128_is_valid(uuid)) {
590 log_warning("Failed to parse %s= kernel command line switch. UUID is invalid, ignoring.", key);
591 return true;
592 }
593
594 return false;
595}
596
a8574d00
OK
597static int filter_header_device(const char *options,
598 char **ret_headerdev,
599 char **ret_filtered_headerdev_options) {
600 int r;
601 _cleanup_free_ char *headerfile = NULL, *headerdev = NULL, *headerspec = NULL,
602 *filtered_headerdev = NULL, *filtered_headerspec = NULL;
603
604 assert(ret_headerdev);
605 assert(ret_filtered_headerdev_options);
606
607 r = fstab_filter_options(options, "header\0", NULL, &headerspec, &filtered_headerspec);
608 if (r < 0)
609 return log_error_errno(r, "Failed to parse header= option value: %m");
610
611 if (r > 0) {
612 r = split_locationspec(headerspec, &headerfile, &headerdev);
613 if (r < 0)
614 return r;
615
616 if (isempty(filtered_headerspec))
617 filtered_headerdev = strjoin("header=", headerfile);
618 else
619 filtered_headerdev = strjoin(filtered_headerspec, ",header=", headerfile);
620
621 if (!filtered_headerdev)
622 return log_oom();
623 } else
624 filtered_headerdev = TAKE_PTR(filtered_headerspec);
625
626 *ret_filtered_headerdev_options = TAKE_PTR(filtered_headerdev);
627 *ret_headerdev = TAKE_PTR(headerdev);
628
629 return 0;
630}
631
96287a49 632static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
0fa9e53d 633 _cleanup_free_ char *uuid = NULL, *uuid_value = NULL;
1d84ad94
LP
634 crypto_device *d;
635 int r;
66a78c2b 636
1d84ad94 637 if (streq(key, "luks")) {
059cb385 638
1d84ad94 639 r = value ? parse_boolean(value) : 1;
141a79f4 640 if (r < 0)
1d84ad94 641 log_warning("Failed to parse luks= kernel command line switch %s. Ignoring.", value);
141a79f4
ZJS
642 else
643 arg_enabled = r;
66a78c2b 644
1d84ad94 645 } else if (streq(key, "luks.crypttab")) {
66a78c2b 646
1d84ad94 647 r = value ? parse_boolean(value) : 1;
141a79f4 648 if (r < 0)
1d84ad94 649 log_warning("Failed to parse luks.crypttab= kernel command line switch %s. Ignoring.", value);
141a79f4
ZJS
650 else
651 arg_read_crypttab = r;
66a78c2b 652
1d84ad94
LP
653 } else if (streq(key, "luks.uuid")) {
654
655 if (proc_cmdline_value_missing(key, value))
656 return 0;
66a78c2b 657
263a7964 658 d = get_crypto_device(startswith(value, "luks-") ?: value);
0fa9e53d 659 if (!d)
141a79f4 660 return log_oom();
66a78c2b 661
6b000af4 662 d->create = arg_allow_list = true;
0fa9e53d 663
1d84ad94 664 } else if (streq(key, "luks.options")) {
a8574d00 665 _cleanup_free_ char *headerdev = NULL, *filtered_headerdev_options = NULL;
1d84ad94
LP
666
667 if (proc_cmdline_value_missing(key, value))
668 return 0;
66a78c2b 669
0fa9e53d 670 r = sscanf(value, "%m[0-9a-fA-F-]=%ms", &uuid, &uuid_value);
a8574d00
OK
671 if (r != 2)
672 return free_and_strdup(&arg_default_options, value) < 0 ? log_oom() : 0;
0fa9e53d 673
a8574d00
OK
674 if (warn_uuid_invalid(uuid, key))
675 return 0;
676
677 d = get_crypto_device(uuid);
678 if (!d)
141a79f4 679 return log_oom();
66a78c2b 680
a8574d00
OK
681 r = filter_header_device(uuid_value, &headerdev, &filtered_headerdev_options);
682 if (r < 0)
683 return r;
684
685 free_and_replace(d->options, filtered_headerdev_options);
686 free_and_replace(d->headerdev, headerdev);
1d84ad94 687 } else if (streq(key, "luks.key")) {
7949dfa7
MS
688 size_t n;
689 _cleanup_free_ char *keyfile = NULL, *keydev = NULL;
7949dfa7 690 const char *keyspec;
1d84ad94
LP
691
692 if (proc_cmdline_value_missing(key, value))
693 return 0;
66a78c2b 694
008fd4f9 695 n = strspn(value, ALPHANUMERICAL "-");
7949dfa7
MS
696 if (value[n] != '=') {
697 if (free_and_strdup(&arg_default_keyfile, value) < 0)
698 return log_oom();
699 return 0;
700 }
70f5f48e 701
7949dfa7
MS
702 uuid = strndup(value, n);
703 if (!uuid)
704 return log_oom();
6cd5b12a 705
c3ee5b34 706 if (warn_uuid_invalid(uuid, key))
7949dfa7 707 return 0;
7949dfa7
MS
708
709 d = get_crypto_device(uuid);
710 if (!d)
711 return log_oom();
70f5f48e 712
7949dfa7 713 keyspec = value + n + 1;
fc6f1ad1 714 r = split_locationspec(keyspec, &keyfile, &keydev);
50d2eba2 715 if (r < 0)
716 return r;
70f5f48e 717
7949dfa7
MS
718 free_and_replace(d->keyfile, keyfile);
719 free_and_replace(d->keydev, keydev);
a8574d00
OK
720 } else if (streq(key, "luks.data")) {
721 size_t n;
722 _cleanup_free_ char *datadev = NULL;
723
724 if (proc_cmdline_value_missing(key, value))
725 return 0;
726
727 n = strspn(value, ALPHANUMERICAL "-");
728 if (value[n] != '=') {
729 log_warning("Failed to parse luks.data= kernel command line switch. UUID is invalid, ignoring.");
730 return 0;
731 }
732
733 uuid = strndup(value, n);
734 if (!uuid)
735 return log_oom();
736
737 if (warn_uuid_invalid(uuid, key))
738 return 0;
739
740 d = get_crypto_device(uuid);
741 if (!d)
742 return log_oom();
743
744 datadev = fstab_node_to_udev_node(value + n + 1);
745 if (!datadev)
746 return log_oom();
50d2eba2 747
a8574d00 748 free_and_replace(d->datadev, datadev);
1d84ad94
LP
749 } else if (streq(key, "luks.name")) {
750
751 if (proc_cmdline_value_missing(key, value))
752 return 0;
baade8cc
JJ
753
754 r = sscanf(value, "%m[0-9a-fA-F-]=%ms", &uuid, &uuid_value);
755 if (r == 2) {
756 d = get_crypto_device(uuid);
757 if (!d)
758 return log_oom();
759
6b000af4 760 d->create = arg_allow_list = true;
baade8cc 761
f9ecfd3b 762 free_and_replace(d->name, uuid_value);
baade8cc
JJ
763 } else
764 log_warning("Failed to parse luks name switch %s. Ignoring.", value);
85013844 765 }
66a78c2b 766
24a988e9 767 return 0;
66a78c2b
LP
768}
769
0fa9e53d 770static int add_crypttab_devices(void) {
7fd1b19b 771 _cleanup_fclose_ FILE *f = NULL;
b42674a1
LP
772 unsigned crypttab_line = 0;
773 struct stat st;
774 int r;
e23a0ce8 775
0fa9e53d
JJ
776 if (!arg_read_crypttab)
777 return 0;
778
a6c57e74 779 r = fopen_unlocked(arg_crypttab, "re", &f);
fdeea3f4 780 if (r < 0) {
0fa9e53d 781 if (errno != ENOENT)
a6c57e74 782 log_error_errno(errno, "Failed to open %s: %m", arg_crypttab);
0fa9e53d 783 return 0;
e23a0ce8
LP
784 }
785
0fa9e53d 786 if (fstat(fileno(f), &st) < 0) {
a6c57e74 787 log_error_errno(errno, "Failed to stat %s: %m", arg_crypttab);
0fa9e53d
JJ
788 return 0;
789 }
e23a0ce8 790
0fa9e53d 791 for (;;) {
fef716b2 792 _cleanup_free_ char *line = NULL, *name = NULL, *device = NULL, *keyspec = NULL, *options = NULL, *keyfile = NULL, *keydev = NULL;
0fa9e53d 793 crypto_device *d = NULL;
b42674a1
LP
794 char *l, *uuid;
795 int k;
4c12626c 796
b42674a1
LP
797 r = read_line(f, LONG_LINE_MAX, &line);
798 if (r < 0)
a6c57e74 799 return log_error_errno(r, "Failed to read %s: %m", arg_crypttab);
b42674a1 800 if (r == 0)
0fa9e53d 801 break;
66a78c2b 802
0fa9e53d 803 crypttab_line++;
141a79f4 804
0fa9e53d 805 l = strstrip(line);
b42674a1 806 if (IN_SET(l[0], 0, '#'))
0fa9e53d 807 continue;
66a78c2b 808
50d2eba2 809 k = sscanf(l, "%ms %ms %ms %ms", &name, &device, &keyspec, &options);
0fa9e53d 810 if (k < 2 || k > 4) {
a6c57e74 811 log_error("Failed to parse %s:%u, ignoring.", arg_crypttab, crypttab_line);
0fa9e53d
JJ
812 continue;
813 }
66a78c2b 814
844d5a87 815 uuid = startswith(device, "UUID=");
0fa9e53d
JJ
816 if (!uuid)
817 uuid = path_startswith(device, "/dev/disk/by-uuid/");
844d5a87
LR
818 if (!uuid)
819 uuid = startswith(name, "luks-");
0fa9e53d
JJ
820 if (uuid)
821 d = hashmap_get(arg_disks, uuid);
8973790e 822
6b000af4 823 if (arg_allow_list && !d) {
0fa9e53d
JJ
824 log_info("Not creating device '%s' because it was not specified on the kernel command line.", name);
825 continue;
8973790e
LP
826 }
827
fc6f1ad1 828 r = split_locationspec(keyspec, &keyfile, &keydev);
50d2eba2 829 if (r < 0)
830 return r;
831
a8574d00 832 r = create_disk(name, device, keyfile, keydev, d ? d->headerdev : NULL, (d && d->options) ? d->options : options, arg_crypttab);
0fa9e53d
JJ
833 if (r < 0)
834 return r;
8973790e 835
0fa9e53d
JJ
836 if (d)
837 d->create = false;
838 }
8973790e 839
0fa9e53d
JJ
840 return 0;
841}
66a78c2b 842
0fa9e53d
JJ
843static int add_proc_cmdline_devices(void) {
844 int r;
0fa9e53d 845 crypto_device *d;
66a78c2b 846
90e74a66 847 HASHMAP_FOREACH(d, arg_disks) {
baade8cc 848 _cleanup_free_ char *device = NULL;
66a78c2b 849
0fa9e53d
JJ
850 if (!d->create)
851 continue;
e23a0ce8 852
baade8cc 853 if (!d->name) {
b910cc72 854 d->name = strjoin("luks-", d->uuid);
baade8cc
JJ
855 if (!d->name)
856 return log_oom();
857 }
e23a0ce8 858
b910cc72 859 device = strjoin("UUID=", d->uuid);
0fa9e53d
JJ
860 if (!device)
861 return log_oom();
7ab064a6 862
7cecc563 863 r = create_disk(d->name,
a8574d00 864 d->datadev ?: device,
7cecc563
ZJS
865 d->keyfile ?: arg_default_keyfile,
866 d->keydev,
a8574d00 867 d->headerdev,
62ca7d3b
JL
868 d->options ?: arg_default_options,
869 "/proc/cmdline");
0fa9e53d
JJ
870 if (r < 0)
871 return r;
e23a0ce8
LP
872 }
873
0fa9e53d
JJ
874 return 0;
875}
e23a0ce8 876
a4a90e65
YW
877DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(crypt_device_hash_ops, char, string_hash_func, string_compare_func,
878 crypto_device, crypt_device_free);
879
7a44c7e3 880static int run(const char *dest, const char *dest_early, const char *dest_late) {
5f4bfe56 881 int r;
e23a0ce8 882
7a44c7e3 883 assert_se(arg_dest = dest);
e23a0ce8 884
a6c57e74 885 arg_crypttab = getenv("SYSTEMD_CRYPTTAB") ?: "/etc/crypttab";
3f5ac303 886 arg_runtime_directory = getenv("RUNTIME_DIRECTORY") ?: "/run/systemd/cryptsetup";
a6c57e74 887
a4a90e65
YW
888 arg_disks = hashmap_new(&crypt_device_hash_ops);
889 if (!arg_disks)
890 return log_oom();
7ab064a6 891
1d84ad94 892 r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_STRIP_RD_PREFIX);
a4a90e65
YW
893 if (r < 0)
894 return log_warning_errno(r, "Failed to parse kernel command line: %m");
7ab064a6 895
a4a90e65
YW
896 if (!arg_enabled)
897 return 0;
e23a0ce8 898
5f4bfe56
LP
899 r = add_crypttab_devices();
900 if (r < 0)
a4a90e65 901 return r;
0fa9e53d 902
5f4bfe56
LP
903 r = add_proc_cmdline_devices();
904 if (r < 0)
a4a90e65 905 return r;
141a79f4 906
a4a90e65 907 return 0;
e23a0ce8 908}
a4a90e65 909
7a44c7e3 910DEFINE_MAIN_GENERATOR_FUNCTION(run);