]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/cryptsetup/cryptsetup-generator.c
Merge pull request #4392 from keszybz/running-timers
[thirdparty/systemd.git] / src / cryptsetup / cryptsetup-generator.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21
22 #include "alloc-util.h"
23 #include "dropin.h"
24 #include "fd-util.h"
25 #include "fileio.h"
26 #include "fstab-util.h"
27 #include "generator.h"
28 #include "hashmap.h"
29 #include "log.h"
30 #include "mkdir.h"
31 #include "parse-util.h"
32 #include "path-util.h"
33 #include "proc-cmdline.h"
34 #include "string-util.h"
35 #include "strv.h"
36 #include "unit-name.h"
37 #include "util.h"
38
39 typedef struct crypto_device {
40 char *uuid;
41 char *keyfile;
42 char *name;
43 char *options;
44 bool create;
45 } crypto_device;
46
47 static const char *arg_dest = "/tmp";
48 static bool arg_enabled = true;
49 static bool arg_read_crypttab = true;
50 static bool arg_whitelist = false;
51 static Hashmap *arg_disks = NULL;
52 static char *arg_default_options = NULL;
53 static char *arg_default_keyfile = NULL;
54
55 static int create_disk(
56 const char *name,
57 const char *device,
58 const char *password,
59 const char *options) {
60
61 _cleanup_free_ char *p = NULL, *n = NULL, *d = NULL, *u = NULL, *to = NULL, *e = NULL,
62 *filtered = NULL;
63 _cleanup_fclose_ FILE *f = NULL;
64 bool noauto, nofail, tmp, swap;
65 char *from;
66 int r;
67
68 assert(name);
69 assert(device);
70
71 noauto = fstab_test_yes_no_option(options, "noauto\0" "auto\0");
72 nofail = fstab_test_yes_no_option(options, "nofail\0" "fail\0");
73 tmp = fstab_test_option(options, "tmp\0");
74 swap = fstab_test_option(options, "swap\0");
75
76 if (tmp && swap) {
77 log_error("Device '%s' cannot be both 'tmp' and 'swap'. Ignoring.", name);
78 return -EINVAL;
79 }
80
81 e = unit_name_escape(name);
82 if (!e)
83 return log_oom();
84
85 r = unit_name_build("systemd-cryptsetup", e, ".service", &n);
86 if (r < 0)
87 return log_error_errno(r, "Failed to generate unit name: %m");
88
89 p = strjoin(arg_dest, "/", n, NULL);
90 if (!p)
91 return log_oom();
92
93 u = fstab_node_to_udev_node(device);
94 if (!u)
95 return log_oom();
96
97 r = unit_name_from_path(u, ".device", &d);
98 if (r < 0)
99 return log_error_errno(r, "Failed to generate unit name: %m");
100
101 f = fopen(p, "wxe");
102 if (!f)
103 return log_error_errno(errno, "Failed to create unit file %s: %m", p);
104
105 fputs(
106 "# Automatically generated by systemd-cryptsetup-generator\n\n"
107 "[Unit]\n"
108 "Description=Cryptography Setup for %I\n"
109 "Documentation=man:crypttab(5) man:systemd-cryptsetup-generator(8) man:systemd-cryptsetup@.service(8)\n"
110 "SourcePath=/etc/crypttab\n"
111 "DefaultDependencies=no\n"
112 "Conflicts=umount.target\n"
113 "BindsTo=dev-mapper-%i.device\n"
114 "IgnoreOnIsolate=true\n"
115 "After=cryptsetup-pre.target\n",
116 f);
117
118 if (!nofail)
119 fprintf(f,
120 "Before=cryptsetup.target\n");
121
122 if (password) {
123 if (STR_IN_SET(password, "/dev/urandom", "/dev/random", "/dev/hw_random"))
124 fputs("After=systemd-random-seed.service\n", f);
125 else if (!streq(password, "-") && !streq(password, "none")) {
126 _cleanup_free_ char *uu;
127
128 uu = fstab_node_to_udev_node(password);
129 if (!uu)
130 return log_oom();
131
132 if (!path_equal(uu, "/dev/null")) {
133
134 if (is_device_path(uu)) {
135 _cleanup_free_ char *dd = NULL;
136
137 r = unit_name_from_path(uu, ".device", &dd);
138 if (r < 0)
139 return log_error_errno(r, "Failed to generate unit name: %m");
140
141 fprintf(f, "After=%1$s\nRequires=%1$s\n", dd);
142 } else
143 fprintf(f, "RequiresMountsFor=%s\n", password);
144 }
145 }
146 }
147
148 if (is_device_path(u))
149 fprintf(f,
150 "BindsTo=%s\n"
151 "After=%s\n"
152 "Before=umount.target\n",
153 d, d);
154 else
155 fprintf(f,
156 "RequiresMountsFor=%s\n",
157 u);
158
159 r = generator_write_timeouts(arg_dest, device, name, options, &filtered);
160 if (r < 0)
161 return r;
162
163 fprintf(f,
164 "\n[Service]\n"
165 "Type=oneshot\n"
166 "RemainAfterExit=yes\n"
167 "TimeoutSec=0\n" /* the binary handles timeouts anyway */
168 "ExecStart=" SYSTEMD_CRYPTSETUP_PATH " attach '%s' '%s' '%s' '%s'\n"
169 "ExecStop=" SYSTEMD_CRYPTSETUP_PATH " detach '%s'\n",
170 name, u, strempty(password), strempty(filtered),
171 name);
172
173 if (tmp)
174 fprintf(f,
175 "ExecStartPost=/sbin/mke2fs '/dev/mapper/%s'\n",
176 name);
177
178 if (swap)
179 fprintf(f,
180 "ExecStartPost=/sbin/mkswap '/dev/mapper/%s'\n",
181 name);
182
183 r = fflush_and_check(f);
184 if (r < 0)
185 return log_error_errno(r, "Failed to write file %s: %m", p);
186
187 from = strjoina("../", n);
188
189 if (!noauto) {
190
191 to = strjoin(arg_dest, "/", d, ".wants/", n, NULL);
192 if (!to)
193 return log_oom();
194
195 mkdir_parents_label(to, 0755);
196 if (symlink(from, to) < 0)
197 return log_error_errno(errno, "Failed to create symlink %s: %m", to);
198
199 free(to);
200 if (!nofail)
201 to = strjoin(arg_dest, "/cryptsetup.target.requires/", n, NULL);
202 else
203 to = strjoin(arg_dest, "/cryptsetup.target.wants/", n, NULL);
204 if (!to)
205 return log_oom();
206
207 mkdir_parents_label(to, 0755);
208 if (symlink(from, to) < 0)
209 return log_error_errno(errno, "Failed to create symlink %s: %m", to);
210 }
211
212 free(to);
213 to = strjoin(arg_dest, "/dev-mapper-", e, ".device.requires/", n, NULL);
214 if (!to)
215 return log_oom();
216
217 mkdir_parents_label(to, 0755);
218 if (symlink(from, to) < 0)
219 return log_error_errno(errno, "Failed to create symlink %s: %m", to);
220
221 if (!noauto && !nofail) {
222 _cleanup_free_ char *dmname;
223 dmname = strjoin("dev-mapper-", e, ".device", NULL);
224 if (!dmname)
225 return log_oom();
226
227 r = write_drop_in(arg_dest, dmname, 90, "device-timeout",
228 "# Automatically generated by systemd-cryptsetup-generator \n\n"
229 "[Unit]\nJobTimeoutSec=0");
230 if (r < 0)
231 return log_error_errno(r, "Failed to write device drop-in: %m");
232 }
233
234 return 0;
235 }
236
237 static void free_arg_disks(void) {
238 crypto_device *d;
239
240 while ((d = hashmap_steal_first(arg_disks))) {
241 free(d->uuid);
242 free(d->keyfile);
243 free(d->name);
244 free(d->options);
245 free(d);
246 }
247
248 hashmap_free(arg_disks);
249 }
250
251 static crypto_device *get_crypto_device(const char *uuid) {
252 int r;
253 crypto_device *d;
254
255 assert(uuid);
256
257 d = hashmap_get(arg_disks, uuid);
258 if (!d) {
259 d = new0(struct crypto_device, 1);
260 if (!d)
261 return NULL;
262
263 d->create = false;
264 d->keyfile = d->options = d->name = NULL;
265
266 d->uuid = strdup(uuid);
267 if (!d->uuid)
268 return mfree(d);
269
270 r = hashmap_put(arg_disks, d->uuid, d);
271 if (r < 0) {
272 free(d->uuid);
273 return mfree(d);
274 }
275 }
276
277 return d;
278 }
279
280 static int parse_proc_cmdline_item(const char *key, const char *value) {
281 int r;
282 crypto_device *d;
283 _cleanup_free_ char *uuid = NULL, *uuid_value = NULL;
284
285 if (STR_IN_SET(key, "luks", "rd.luks") && value) {
286
287 r = parse_boolean(value);
288 if (r < 0)
289 log_warning("Failed to parse luks switch %s. Ignoring.", value);
290 else
291 arg_enabled = r;
292
293 } else if (STR_IN_SET(key, "luks.crypttab", "rd.luks.crypttab") && value) {
294
295 r = parse_boolean(value);
296 if (r < 0)
297 log_warning("Failed to parse luks crypttab switch %s. Ignoring.", value);
298 else
299 arg_read_crypttab = r;
300
301 } else if (STR_IN_SET(key, "luks.uuid", "rd.luks.uuid") && value) {
302
303 d = get_crypto_device(startswith(value, "luks-") ? value+5 : value);
304 if (!d)
305 return log_oom();
306
307 d->create = arg_whitelist = true;
308
309 } else if (STR_IN_SET(key, "luks.options", "rd.luks.options") && value) {
310
311 r = sscanf(value, "%m[0-9a-fA-F-]=%ms", &uuid, &uuid_value);
312 if (r == 2) {
313 d = get_crypto_device(uuid);
314 if (!d)
315 return log_oom();
316
317 free(d->options);
318 d->options = uuid_value;
319 uuid_value = NULL;
320 } else if (free_and_strdup(&arg_default_options, value) < 0)
321 return log_oom();
322
323 } else if (STR_IN_SET(key, "luks.key", "rd.luks.key") && value) {
324
325 r = sscanf(value, "%m[0-9a-fA-F-]=%ms", &uuid, &uuid_value);
326 if (r == 2) {
327 d = get_crypto_device(uuid);
328 if (!d)
329 return log_oom();
330
331 free(d->keyfile);
332 d->keyfile = uuid_value;
333 uuid_value = NULL;
334 } else if (free_and_strdup(&arg_default_keyfile, value) < 0)
335 return log_oom();
336
337 } else if (STR_IN_SET(key, "luks.name", "rd.luks.name") && value) {
338
339 r = sscanf(value, "%m[0-9a-fA-F-]=%ms", &uuid, &uuid_value);
340 if (r == 2) {
341 d = get_crypto_device(uuid);
342 if (!d)
343 return log_oom();
344
345 d->create = arg_whitelist = true;
346
347 free(d->name);
348 d->name = uuid_value;
349 uuid_value = NULL;
350 } else
351 log_warning("Failed to parse luks name switch %s. Ignoring.", value);
352
353 }
354
355 return 0;
356 }
357
358 static int add_crypttab_devices(void) {
359 struct stat st;
360 unsigned crypttab_line = 0;
361 _cleanup_fclose_ FILE *f = NULL;
362
363 if (!arg_read_crypttab)
364 return 0;
365
366 f = fopen("/etc/crypttab", "re");
367 if (!f) {
368 if (errno != ENOENT)
369 log_error_errno(errno, "Failed to open /etc/crypttab: %m");
370 return 0;
371 }
372
373 if (fstat(fileno(f), &st) < 0) {
374 log_error_errno(errno, "Failed to stat /etc/crypttab: %m");
375 return 0;
376 }
377
378 for (;;) {
379 int r, k;
380 char line[LINE_MAX], *l, *uuid;
381 crypto_device *d = NULL;
382 _cleanup_free_ char *name = NULL, *device = NULL, *keyfile = NULL, *options = NULL;
383
384 if (!fgets(line, sizeof(line), f))
385 break;
386
387 crypttab_line++;
388
389 l = strstrip(line);
390 if (*l == '#' || *l == 0)
391 continue;
392
393 k = sscanf(l, "%ms %ms %ms %ms", &name, &device, &keyfile, &options);
394 if (k < 2 || k > 4) {
395 log_error("Failed to parse /etc/crypttab:%u, ignoring.", crypttab_line);
396 continue;
397 }
398
399 uuid = startswith(device, "UUID=");
400 if (!uuid)
401 uuid = path_startswith(device, "/dev/disk/by-uuid/");
402 if (!uuid)
403 uuid = startswith(name, "luks-");
404 if (uuid)
405 d = hashmap_get(arg_disks, uuid);
406
407 if (arg_whitelist && !d) {
408 log_info("Not creating device '%s' because it was not specified on the kernel command line.", name);
409 continue;
410 }
411
412 r = create_disk(name, device, keyfile, (d && d->options) ? d->options : options);
413 if (r < 0)
414 return r;
415
416 if (d)
417 d->create = false;
418 }
419
420 return 0;
421 }
422
423 static int add_proc_cmdline_devices(void) {
424 int r;
425 Iterator i;
426 crypto_device *d;
427
428 HASHMAP_FOREACH(d, arg_disks, i) {
429 const char *options;
430 _cleanup_free_ char *device = NULL;
431
432 if (!d->create)
433 continue;
434
435 if (!d->name) {
436 d->name = strappend("luks-", d->uuid);
437 if (!d->name)
438 return log_oom();
439 }
440
441 device = strappend("UUID=", d->uuid);
442 if (!device)
443 return log_oom();
444
445 if (d->options)
446 options = d->options;
447 else if (arg_default_options)
448 options = arg_default_options;
449 else
450 options = "timeout=0";
451
452 r = create_disk(d->name, device, d->keyfile ?: arg_default_keyfile, options);
453 if (r < 0)
454 return r;
455 }
456
457 return 0;
458 }
459
460 int main(int argc, char *argv[]) {
461 int r = EXIT_FAILURE;
462
463 if (argc > 1 && argc != 4) {
464 log_error("This program takes three or no arguments.");
465 return EXIT_FAILURE;
466 }
467
468 if (argc > 1)
469 arg_dest = argv[1];
470
471 log_set_target(LOG_TARGET_SAFE);
472 log_parse_environment();
473 log_open();
474
475 umask(0022);
476
477 arg_disks = hashmap_new(&string_hash_ops);
478 if (!arg_disks)
479 goto cleanup;
480
481 r = parse_proc_cmdline(parse_proc_cmdline_item);
482 if (r < 0) {
483 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
484 r = EXIT_FAILURE;
485 }
486
487 if (!arg_enabled) {
488 r = EXIT_SUCCESS;
489 goto cleanup;
490 }
491
492 if (add_crypttab_devices() < 0)
493 goto cleanup;
494
495 if (add_proc_cmdline_devices() < 0)
496 goto cleanup;
497
498 r = EXIT_SUCCESS;
499
500 cleanup:
501 free_arg_disks();
502 free(arg_default_options);
503 free(arg_default_keyfile);
504
505 return r;
506 }