]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/boot/bootctl.c
Merge pull request #16519 from yuwata/networkctl-altnames
[thirdparty/systemd.git] / src / boot / bootctl.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <ctype.h>
4 #include <errno.h>
5 #include <ftw.h>
6 #include <getopt.h>
7 #include <limits.h>
8 #include <linux/magic.h>
9 #include <stdbool.h>
10 #include <stdlib.h>
11 #include <sys/mman.h>
12 #include <unistd.h>
13
14 #include "sd-id128.h"
15
16 #include "alloc-util.h"
17 #include "blkid-util.h"
18 #include "bootspec.h"
19 #include "copy.h"
20 #include "dirent-util.h"
21 #include "efi-loader.h"
22 #include "efivars.h"
23 #include "env-util.h"
24 #include "escape.h"
25 #include "fd-util.h"
26 #include "fileio.h"
27 #include "fs-util.h"
28 #include "locale-util.h"
29 #include "main-func.h"
30 #include "mkdir.h"
31 #include "pager.h"
32 #include "parse-util.h"
33 #include "pretty-print.h"
34 #include "random-util.h"
35 #include "rm-rf.h"
36 #include "stat-util.h"
37 #include "stdio-util.h"
38 #include "string-util.h"
39 #include "strv.h"
40 #include "terminal-util.h"
41 #include "tmpfile-util.h"
42 #include "umask-util.h"
43 #include "utf8.h"
44 #include "util.h"
45 #include "verbs.h"
46 #include "virt.h"
47
48 static char *arg_esp_path = NULL;
49 static char *arg_xbootldr_path = NULL;
50 static bool arg_print_esp_path = false;
51 static bool arg_print_dollar_boot_path = false;
52 static bool arg_touch_variables = true;
53 static PagerFlags arg_pager_flags = 0;
54 static bool arg_graceful = false;
55
56 STATIC_DESTRUCTOR_REGISTER(arg_esp_path, freep);
57 STATIC_DESTRUCTOR_REGISTER(arg_xbootldr_path, freep);
58
59 static const char *arg_dollar_boot_path(void) {
60 /* $BOOT shall be the XBOOTLDR partition if it exists, and otherwise the ESP */
61 return arg_xbootldr_path ?: arg_esp_path;
62 }
63
64 static int acquire_esp(
65 bool unprivileged_mode,
66 uint32_t *ret_part,
67 uint64_t *ret_pstart,
68 uint64_t *ret_psize,
69 sd_id128_t *ret_uuid) {
70
71 char *np;
72 int r;
73
74 /* Find the ESP, and log about errors. Note that find_esp_and_warn() will log in all error cases on
75 * its own, except for ENOKEY (which is good, we want to show our own message in that case,
76 * suggesting use of --esp-path=) and EACCESS (only when we request unprivileged mode; in this case
77 * we simply eat up the error here, so that --list and --status work too, without noise about
78 * this). */
79
80 r = find_esp_and_warn(arg_esp_path, unprivileged_mode, &np, ret_part, ret_pstart, ret_psize, ret_uuid);
81 if (r == -ENOKEY)
82 return log_error_errno(r,
83 "Couldn't find EFI system partition. It is recommended to mount it to /boot or /efi.\n"
84 "Alternatively, use --esp-path= to specify path to mount point.");
85 if (r < 0)
86 return r;
87
88 free_and_replace(arg_esp_path, np);
89 log_debug("Using EFI System Partition at %s.", arg_esp_path);
90
91 return 1;
92 }
93
94 static int acquire_xbootldr(bool unprivileged_mode, sd_id128_t *ret_uuid) {
95 char *np;
96 int r;
97
98 r = find_xbootldr_and_warn(arg_xbootldr_path, unprivileged_mode, &np, ret_uuid);
99 if (r == -ENOKEY) {
100 log_debug_errno(r, "Didn't find an XBOOTLDR partition, using the ESP as $BOOT.");
101 if (ret_uuid)
102 *ret_uuid = SD_ID128_NULL;
103 arg_xbootldr_path = mfree(arg_xbootldr_path);
104 return 0;
105 }
106 if (r < 0)
107 return r;
108
109 free_and_replace(arg_xbootldr_path, np);
110 log_debug("Using XBOOTLDR partition at %s as $BOOT.", arg_xbootldr_path);
111
112 return 1;
113 }
114
115 /* search for "#### LoaderInfo: systemd-boot 218 ####" string inside the binary */
116 static int get_file_version(int fd, char **v) {
117 struct stat st;
118 char *buf;
119 const char *s, *e;
120 char *x = NULL;
121 int r = 0;
122
123 assert(fd >= 0);
124 assert(v);
125
126 if (fstat(fd, &st) < 0)
127 return log_error_errno(errno, "Failed to stat EFI binary: %m");
128
129 r = stat_verify_regular(&st);
130 if (r < 0)
131 return log_error_errno(r, "EFI binary is not a regular file: %m");
132
133 if (st.st_size < 27) {
134 *v = NULL;
135 return 0;
136 }
137
138 buf = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
139 if (buf == MAP_FAILED)
140 return log_error_errno(errno, "Failed to memory map EFI binary: %m");
141
142 s = memmem(buf, st.st_size - 8, "#### LoaderInfo: ", 17);
143 if (!s)
144 goto finish;
145 s += 17;
146
147 e = memmem(s, st.st_size - (s - buf), " ####", 5);
148 if (!e || e - s < 3) {
149 r = log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Malformed version string.");
150 goto finish;
151 }
152
153 x = strndup(s, e - s);
154 if (!x) {
155 r = log_oom();
156 goto finish;
157 }
158 r = 1;
159
160 finish:
161 (void) munmap(buf, st.st_size);
162 *v = x;
163 return r;
164 }
165
166 static int enumerate_binaries(const char *esp_path, const char *path, const char *prefix) {
167 _cleanup_closedir_ DIR *d = NULL;
168 struct dirent *de;
169 const char *p;
170 int c = 0, r;
171
172 assert(esp_path);
173 assert(path);
174
175 p = prefix_roota(esp_path, path);
176 d = opendir(p);
177 if (!d) {
178 if (errno == ENOENT)
179 return 0;
180
181 return log_error_errno(errno, "Failed to read \"%s\": %m", p);
182 }
183
184 FOREACH_DIRENT(de, d, break) {
185 _cleanup_free_ char *v = NULL;
186 _cleanup_close_ int fd = -1;
187
188 if (!endswith_no_case(de->d_name, ".efi"))
189 continue;
190
191 if (prefix && !startswith_no_case(de->d_name, prefix))
192 continue;
193
194 fd = openat(dirfd(d), de->d_name, O_RDONLY|O_CLOEXEC);
195 if (fd < 0)
196 return log_error_errno(errno, "Failed to open \"%s/%s\" for reading: %m", p, de->d_name);
197
198 r = get_file_version(fd, &v);
199 if (r < 0)
200 return r;
201 if (r > 0)
202 printf(" File: %s/%s/%s (%s%s%s)\n", special_glyph(SPECIAL_GLYPH_TREE_RIGHT), path, de->d_name, ansi_highlight(), v, ansi_normal());
203 else
204 printf(" File: %s/%s/%s\n", special_glyph(SPECIAL_GLYPH_TREE_RIGHT), path, de->d_name);
205
206 c++;
207 }
208
209 return c;
210 }
211
212 static int status_binaries(const char *esp_path, sd_id128_t partition) {
213 int r;
214
215 printf("Available Boot Loaders on ESP:\n");
216
217 if (!esp_path) {
218 printf(" ESP: Cannot find or access mount point of ESP.\n\n");
219 return -ENOENT;
220 }
221
222 printf(" ESP: %s", esp_path);
223 if (!sd_id128_is_null(partition))
224 printf(" (/dev/disk/by-partuuid/" SD_ID128_UUID_FORMAT_STR ")", SD_ID128_FORMAT_VAL(partition));
225 printf("\n");
226
227 r = enumerate_binaries(esp_path, "EFI/systemd", NULL);
228 if (r < 0)
229 goto finish;
230 if (r == 0)
231 log_info("systemd-boot not installed in ESP.");
232
233 r = enumerate_binaries(esp_path, "EFI/BOOT", "boot");
234 if (r < 0)
235 goto finish;
236 if (r == 0)
237 log_info("No default/fallback boot loader installed in ESP.");
238
239 r = 0;
240
241 finish:
242 printf("\n");
243 return r;
244 }
245
246 static int print_efi_option(uint16_t id, bool in_order) {
247 _cleanup_free_ char *title = NULL;
248 _cleanup_free_ char *path = NULL;
249 sd_id128_t partition;
250 bool active;
251 int r = 0;
252
253 r = efi_get_boot_option(id, &title, &partition, &path, &active);
254 if (r < 0)
255 return r;
256
257 /* print only configured entries with partition information */
258 if (!path || sd_id128_is_null(partition))
259 return 0;
260
261 efi_tilt_backslashes(path);
262
263 printf(" Title: %s%s%s\n", ansi_highlight(), strna(title), ansi_normal());
264 printf(" ID: 0x%04X\n", id);
265 printf(" Status: %sactive%s\n", active ? "" : "in", in_order ? ", boot-order" : "");
266 printf(" Partition: /dev/disk/by-partuuid/" SD_ID128_UUID_FORMAT_STR "\n",
267 SD_ID128_FORMAT_VAL(partition));
268 printf(" File: %s%s\n", special_glyph(SPECIAL_GLYPH_TREE_RIGHT), path);
269 printf("\n");
270
271 return 0;
272 }
273
274 static int status_variables(void) {
275 _cleanup_free_ uint16_t *options = NULL, *order = NULL;
276 int n_options, n_order, i;
277
278 n_options = efi_get_boot_options(&options);
279 if (n_options == -ENOENT)
280 return log_error_errno(n_options,
281 "Failed to access EFI variables, efivarfs"
282 " needs to be available at /sys/firmware/efi/efivars/.");
283 if (n_options < 0)
284 return log_error_errno(n_options, "Failed to read EFI boot entries: %m");
285
286 n_order = efi_get_boot_order(&order);
287 if (n_order == -ENOENT)
288 n_order = 0;
289 else if (n_order < 0)
290 return log_error_errno(n_order, "Failed to read EFI boot order: %m");
291
292 /* print entries in BootOrder first */
293 printf("Boot Loaders Listed in EFI Variables:\n");
294 for (i = 0; i < n_order; i++)
295 print_efi_option(order[i], true);
296
297 /* print remaining entries */
298 for (i = 0; i < n_options; i++) {
299 int j;
300
301 for (j = 0; j < n_order; j++)
302 if (options[i] == order[j])
303 goto next_option;
304
305 print_efi_option(options[i], false);
306
307 next_option:
308 continue;
309 }
310
311 return 0;
312 }
313
314 static int boot_entry_file_check(const char *root, const char *p) {
315 _cleanup_free_ char *path;
316
317 path = path_join(root, p);
318 if (!path)
319 return log_oom();
320
321 if (access(path, F_OK) < 0)
322 return -errno;
323
324 return 0;
325 }
326
327 static void boot_entry_file_list(const char *field, const char *root, const char *p, int *ret_status) {
328 int status = boot_entry_file_check(root, p);
329
330 printf("%13s%s ", strempty(field), field ? ":" : " ");
331 if (status < 0) {
332 errno = -status;
333 printf("%s%s%s (%m)\n", ansi_highlight_red(), p, ansi_normal());
334 } else
335 printf("%s\n", p);
336
337 if (*ret_status == 0 && status < 0)
338 *ret_status = status;
339 }
340
341 static int boot_entry_show(const BootEntry *e, bool show_as_default) {
342 int status = 0;
343
344 /* Returns 0 on success, negative on processing error, and positive if something is wrong with the
345 boot entry itself. */
346
347 assert(e);
348
349 printf(" title: %s%s%s" "%s%s%s\n",
350 ansi_highlight(), boot_entry_title(e), ansi_normal(),
351 ansi_highlight_green(), show_as_default ? " (default)" : "", ansi_normal());
352
353 if (e->id)
354 printf(" id: %s\n", e->id);
355 if (e->path) {
356 _cleanup_free_ char *link = NULL;
357
358 /* Let's urlify the link to make it easy to view in an editor, but only if it is a text
359 * file. Unified images are binary ELFs, and EFI variables are not pure text either. */
360 if (e->type == BOOT_ENTRY_CONF)
361 (void) terminal_urlify_path(e->path, NULL, &link);
362
363 printf(" source: %s\n", link ?: e->path);
364 }
365 if (e->version)
366 printf(" version: %s\n", e->version);
367 if (e->machine_id)
368 printf(" machine-id: %s\n", e->machine_id);
369 if (e->architecture)
370 printf(" architecture: %s\n", e->architecture);
371 if (e->kernel)
372 boot_entry_file_list("linux", e->root, e->kernel, &status);
373
374 char **s;
375 STRV_FOREACH(s, e->initrd)
376 boot_entry_file_list(s == e->initrd ? "initrd" : NULL,
377 e->root,
378 *s,
379 &status);
380 if (!strv_isempty(e->options)) {
381 _cleanup_free_ char *t = NULL, *t2 = NULL;
382 _cleanup_strv_free_ char **ts = NULL;
383
384 t = strv_join(e->options, " ");
385 if (!t)
386 return log_oom();
387
388 ts = strv_split_newlines(t);
389 if (!ts)
390 return log_oom();
391
392 t2 = strv_join(ts, "\n ");
393 if (!t2)
394 return log_oom();
395
396 printf(" options: %s\n", t2);
397 }
398 if (e->device_tree)
399 boot_entry_file_list("devicetree", e->root, e->device_tree, &status);
400
401 return -status;
402 }
403
404 static int status_entries(
405 const char *esp_path,
406 sd_id128_t esp_partition_uuid,
407 const char *xbootldr_path,
408 sd_id128_t xbootldr_partition_uuid) {
409
410 _cleanup_(boot_config_free) BootConfig config = {};
411 sd_id128_t dollar_boot_partition_uuid;
412 const char *dollar_boot_path;
413 int r;
414
415 assert(esp_path || xbootldr_path);
416
417 if (xbootldr_path) {
418 dollar_boot_path = xbootldr_path;
419 dollar_boot_partition_uuid = xbootldr_partition_uuid;
420 } else {
421 dollar_boot_path = esp_path;
422 dollar_boot_partition_uuid = esp_partition_uuid;
423 }
424
425 printf("Boot Loader Entries:\n"
426 " $BOOT: %s", dollar_boot_path);
427 if (!sd_id128_is_null(dollar_boot_partition_uuid))
428 printf(" (/dev/disk/by-partuuid/" SD_ID128_UUID_FORMAT_STR ")",
429 SD_ID128_FORMAT_VAL(dollar_boot_partition_uuid));
430 printf("\n\n");
431
432 r = boot_entries_load_config(esp_path, xbootldr_path, &config);
433 if (r < 0)
434 return r;
435
436 if (config.default_entry < 0)
437 printf("%zu entries, no entry could be determined as default.\n", config.n_entries);
438 else {
439 printf("Default Boot Loader Entry:\n");
440
441 r = boot_entry_show(config.entries + config.default_entry, false);
442 if (r > 0)
443 /* < 0 is already logged by the function itself, let's just emit an extra warning if
444 the default entry is broken */
445 printf("\nWARNING: default boot entry is broken\n");
446 }
447
448 return 0;
449 }
450
451 static int compare_product(const char *a, const char *b) {
452 size_t x, y;
453
454 assert(a);
455 assert(b);
456
457 x = strcspn(a, " ");
458 y = strcspn(b, " ");
459 if (x != y)
460 return x < y ? -1 : x > y ? 1 : 0;
461
462 return strncmp(a, b, x);
463 }
464
465 static int compare_version(const char *a, const char *b) {
466 assert(a);
467 assert(b);
468
469 a += strcspn(a, " ");
470 a += strspn(a, " ");
471 b += strcspn(b, " ");
472 b += strspn(b, " ");
473
474 return strverscmp(a, b);
475 }
476
477 static int version_check(int fd_from, const char *from, int fd_to, const char *to) {
478 _cleanup_free_ char *a = NULL, *b = NULL;
479 int r;
480
481 assert(fd_from >= 0);
482 assert(from);
483 assert(fd_to >= 0);
484 assert(to);
485
486 r = get_file_version(fd_from, &a);
487 if (r < 0)
488 return r;
489 if (r == 0)
490 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
491 "Source file \"%s\" does not carry version information!",
492 from);
493
494 r = get_file_version(fd_to, &b);
495 if (r < 0)
496 return r;
497 if (r == 0 || compare_product(a, b) != 0)
498 return log_notice_errno(SYNTHETIC_ERRNO(EEXIST),
499 "Skipping \"%s\", since it's owned by another boot loader.",
500 to);
501
502 if (compare_version(a, b) < 0)
503 return log_warning_errno(SYNTHETIC_ERRNO(ESTALE), "Skipping \"%s\", since a newer boot loader version exists already.", to);
504
505 return 0;
506 }
507
508 static int copy_file_with_version_check(const char *from, const char *to, bool force) {
509 _cleanup_close_ int fd_from = -1, fd_to = -1;
510 _cleanup_free_ char *t = NULL;
511 int r;
512
513 fd_from = open(from, O_RDONLY|O_CLOEXEC|O_NOCTTY);
514 if (fd_from < 0)
515 return log_error_errno(errno, "Failed to open \"%s\" for reading: %m", from);
516
517 if (!force) {
518 fd_to = open(to, O_RDONLY|O_CLOEXEC|O_NOCTTY);
519 if (fd_to < 0) {
520 if (errno != ENOENT)
521 return log_error_errno(errno, "Failed to open \"%s\" for reading: %m", to);
522 } else {
523 r = version_check(fd_from, from, fd_to, to);
524 if (r < 0)
525 return r;
526
527 if (lseek(fd_from, 0, SEEK_SET) == (off_t) -1)
528 return log_error_errno(errno, "Failed to seek in \"%s\": %m", from);
529
530 fd_to = safe_close(fd_to);
531 }
532 }
533
534 r = tempfn_random(to, NULL, &t);
535 if (r < 0)
536 return log_oom();
537
538 RUN_WITH_UMASK(0000) {
539 fd_to = open(t, O_WRONLY|O_CREAT|O_CLOEXEC|O_EXCL|O_NOFOLLOW, 0644);
540 if (fd_to < 0)
541 return log_error_errno(errno, "Failed to open \"%s\" for writing: %m", t);
542 }
543
544 r = copy_bytes(fd_from, fd_to, (uint64_t) -1, COPY_REFLINK);
545 if (r < 0) {
546 (void) unlink(t);
547 return log_error_errno(r, "Failed to copy data from \"%s\" to \"%s\": %m", from, t);
548 }
549
550 (void) copy_times(fd_from, fd_to, 0);
551
552 if (fsync(fd_to) < 0) {
553 (void) unlink_noerrno(t);
554 return log_error_errno(errno, "Failed to copy data from \"%s\" to \"%s\": %m", from, t);
555 }
556
557 (void) fsync_directory_of_file(fd_to);
558
559 if (renameat(AT_FDCWD, t, AT_FDCWD, to) < 0) {
560 (void) unlink_noerrno(t);
561 return log_error_errno(errno, "Failed to rename \"%s\" to \"%s\": %m", t, to);
562 }
563
564 log_info("Copied \"%s\" to \"%s\".", from, to);
565
566 return 0;
567 }
568
569 static int mkdir_one(const char *prefix, const char *suffix) {
570 _cleanup_free_ char *p = NULL;
571
572 p = path_join(prefix, suffix);
573 if (mkdir(p, 0700) < 0) {
574 if (errno != EEXIST)
575 return log_error_errno(errno, "Failed to create \"%s\": %m", p);
576 } else
577 log_info("Created \"%s\".", p);
578
579 return 0;
580 }
581
582 static const char *const esp_subdirs[] = {
583 /* The directories to place in the ESP */
584 "EFI",
585 "EFI/systemd",
586 "EFI/BOOT",
587 "loader",
588 NULL
589 };
590
591 static const char *const dollar_boot_subdirs[] = {
592 /* The directories to place in the XBOOTLDR partition or the ESP, depending what exists */
593 "loader",
594 "loader/entries", /* Type #1 entries */
595 "EFI",
596 "EFI/Linux", /* Type #2 entries */
597 NULL
598 };
599
600 static int create_subdirs(const char *root, const char * const *subdirs) {
601 const char *const *i;
602 int r;
603
604 STRV_FOREACH(i, subdirs) {
605 r = mkdir_one(root, *i);
606 if (r < 0)
607 return r;
608 }
609
610 return 0;
611 }
612
613 static int copy_one_file(const char *esp_path, const char *name, bool force) {
614 const char *e;
615 char *p, *q;
616 int r;
617
618 p = strjoina(BOOTLIBDIR "/", name);
619 q = strjoina(esp_path, "/EFI/systemd/", name);
620 r = copy_file_with_version_check(p, q, force);
621
622 e = startswith(name, "systemd-boot");
623 if (e) {
624 int k;
625 char *v;
626
627 /* Create the EFI default boot loader name (specified for removable devices) */
628 v = strjoina(esp_path, "/EFI/BOOT/BOOT", e);
629 ascii_strupper(strrchr(v, '/') + 1);
630
631 k = copy_file_with_version_check(p, v, force);
632 if (k < 0 && r == 0)
633 r = k;
634 }
635
636 return r;
637 }
638
639 static int install_binaries(const char *esp_path, bool force) {
640 struct dirent *de;
641 _cleanup_closedir_ DIR *d = NULL;
642 int r = 0;
643
644 d = opendir(BOOTLIBDIR);
645 if (!d)
646 return log_error_errno(errno, "Failed to open \""BOOTLIBDIR"\": %m");
647
648 FOREACH_DIRENT(de, d, return log_error_errno(errno, "Failed to read \""BOOTLIBDIR"\": %m")) {
649 int k;
650
651 if (!endswith_no_case(de->d_name, ".efi"))
652 continue;
653
654 k = copy_one_file(esp_path, de->d_name, force);
655 if (k < 0 && r == 0)
656 r = k;
657 }
658
659 return r;
660 }
661
662 static bool same_entry(uint16_t id, sd_id128_t uuid, const char *path) {
663 _cleanup_free_ char *opath = NULL;
664 sd_id128_t ouuid;
665 int r;
666
667 r = efi_get_boot_option(id, NULL, &ouuid, &opath, NULL);
668 if (r < 0)
669 return false;
670 if (!sd_id128_equal(uuid, ouuid))
671 return false;
672 if (!streq_ptr(path, opath))
673 return false;
674
675 return true;
676 }
677
678 static int find_slot(sd_id128_t uuid, const char *path, uint16_t *id) {
679 _cleanup_free_ uint16_t *options = NULL;
680 int n, i;
681
682 n = efi_get_boot_options(&options);
683 if (n < 0)
684 return n;
685
686 /* find already existing systemd-boot entry */
687 for (i = 0; i < n; i++)
688 if (same_entry(options[i], uuid, path)) {
689 *id = options[i];
690 return 1;
691 }
692
693 /* find free slot in the sorted BootXXXX variable list */
694 for (i = 0; i < n; i++)
695 if (i != options[i]) {
696 *id = i;
697 return 1;
698 }
699
700 /* use the next one */
701 if (i == 0xffff)
702 return -ENOSPC;
703 *id = i;
704 return 0;
705 }
706
707 static int insert_into_order(uint16_t slot, bool first) {
708 _cleanup_free_ uint16_t *order = NULL;
709 uint16_t *t;
710 int n, i;
711
712 n = efi_get_boot_order(&order);
713 if (n <= 0)
714 /* no entry, add us */
715 return efi_set_boot_order(&slot, 1);
716
717 /* are we the first and only one? */
718 if (n == 1 && order[0] == slot)
719 return 0;
720
721 /* are we already in the boot order? */
722 for (i = 0; i < n; i++) {
723 if (order[i] != slot)
724 continue;
725
726 /* we do not require to be the first one, all is fine */
727 if (!first)
728 return 0;
729
730 /* move us to the first slot */
731 memmove(order + 1, order, i * sizeof(uint16_t));
732 order[0] = slot;
733 return efi_set_boot_order(order, n);
734 }
735
736 /* extend array */
737 t = reallocarray(order, n + 1, sizeof(uint16_t));
738 if (!t)
739 return -ENOMEM;
740 order = t;
741
742 /* add us to the top or end of the list */
743 if (first) {
744 memmove(order + 1, order, n * sizeof(uint16_t));
745 order[0] = slot;
746 } else
747 order[n] = slot;
748
749 return efi_set_boot_order(order, n + 1);
750 }
751
752 static int remove_from_order(uint16_t slot) {
753 _cleanup_free_ uint16_t *order = NULL;
754 int n, i;
755
756 n = efi_get_boot_order(&order);
757 if (n <= 0)
758 return n;
759
760 for (i = 0; i < n; i++) {
761 if (order[i] != slot)
762 continue;
763
764 if (i + 1 < n)
765 memmove(order + i, order + i+1, (n - i) * sizeof(uint16_t));
766 return efi_set_boot_order(order, n - 1);
767 }
768
769 return 0;
770 }
771
772 static int install_variables(const char *esp_path,
773 uint32_t part, uint64_t pstart, uint64_t psize,
774 sd_id128_t uuid, const char *path,
775 bool first) {
776 const char *p;
777 uint16_t slot;
778 int r;
779
780 if (!is_efi_boot()) {
781 log_warning("Not booted with EFI, skipping EFI variable setup.");
782 return 0;
783 }
784
785 p = prefix_roota(esp_path, path);
786 if (access(p, F_OK) < 0) {
787 if (errno == ENOENT)
788 return 0;
789
790 return log_error_errno(errno, "Cannot access \"%s\": %m", p);
791 }
792
793 r = find_slot(uuid, path, &slot);
794 if (r < 0)
795 return log_error_errno(r,
796 r == -ENOENT ?
797 "Failed to access EFI variables. Is the \"efivarfs\" filesystem mounted?" :
798 "Failed to determine current boot order: %m");
799
800 if (first || r == 0) {
801 r = efi_add_boot_option(slot, "Linux Boot Manager",
802 part, pstart, psize,
803 uuid, path);
804 if (r < 0)
805 return log_error_errno(r, "Failed to create EFI Boot variable entry: %m");
806
807 log_info("Created EFI boot entry \"Linux Boot Manager\".");
808 }
809
810 return insert_into_order(slot, first);
811 }
812
813 static int remove_boot_efi(const char *esp_path) {
814 _cleanup_closedir_ DIR *d = NULL;
815 struct dirent *de;
816 const char *p;
817 int r, c = 0;
818
819 p = prefix_roota(esp_path, "/EFI/BOOT");
820 d = opendir(p);
821 if (!d) {
822 if (errno == ENOENT)
823 return 0;
824
825 return log_error_errno(errno, "Failed to open directory \"%s\": %m", p);
826 }
827
828 FOREACH_DIRENT(de, d, break) {
829 _cleanup_close_ int fd = -1;
830 _cleanup_free_ char *v = NULL;
831
832 if (!endswith_no_case(de->d_name, ".efi"))
833 continue;
834
835 if (!startswith_no_case(de->d_name, "boot"))
836 continue;
837
838 fd = openat(dirfd(d), de->d_name, O_RDONLY|O_CLOEXEC);
839 if (fd < 0)
840 return log_error_errno(errno, "Failed to open \"%s/%s\" for reading: %m", p, de->d_name);
841
842 r = get_file_version(fd, &v);
843 if (r < 0)
844 return r;
845 if (r > 0 && startswith(v, "systemd-boot ")) {
846 r = unlinkat(dirfd(d), de->d_name, 0);
847 if (r < 0)
848 return log_error_errno(errno, "Failed to remove \"%s/%s\": %m", p, de->d_name);
849
850 log_info("Removed \"%s/%s\".", p, de->d_name);
851 }
852
853 c++;
854 }
855
856 return c;
857 }
858
859 static int rmdir_one(const char *prefix, const char *suffix) {
860 const char *p;
861
862 p = prefix_roota(prefix, suffix);
863 if (rmdir(p) < 0) {
864 bool ignore = IN_SET(errno, ENOENT, ENOTEMPTY);
865
866 log_full_errno(ignore ? LOG_DEBUG : LOG_ERR, errno,
867 "Failed to remove directory \"%s\": %m", p);
868 if (!ignore)
869 return -errno;
870 } else
871 log_info("Removed \"%s\".", p);
872
873 return 0;
874 }
875
876 static int remove_subdirs(const char *root, const char *const *subdirs) {
877 int r, q;
878
879 /* We use recursion here to destroy the directories in reverse order. Which should be safe given how
880 * short the array is. */
881
882 if (!subdirs[0]) /* A the end of the list */
883 return 0;
884
885 r = remove_subdirs(root, subdirs + 1);
886 q = rmdir_one(root, subdirs[0]);
887
888 return r < 0 ? r : q;
889 }
890
891 static int remove_machine_id_directory(const char *root, sd_id128_t machine_id) {
892 char buf[SD_ID128_STRING_MAX];
893
894 assert(root);
895
896 return rmdir_one(root, sd_id128_to_string(machine_id, buf));
897 }
898
899 static int remove_binaries(const char *esp_path) {
900 const char *p;
901 int r, q;
902
903 p = prefix_roota(esp_path, "/EFI/systemd");
904 r = rm_rf(p, REMOVE_ROOT|REMOVE_PHYSICAL);
905
906 q = remove_boot_efi(esp_path);
907 if (q < 0 && r == 0)
908 r = q;
909
910 return r;
911 }
912
913 static int remove_file(const char *root, const char *file) {
914 const char *p;
915
916 assert(root);
917 assert(file);
918
919 p = prefix_roota(root, file);
920 if (unlink(p) < 0) {
921 log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_ERR, errno,
922 "Failed to unlink file \"%s\": %m", p);
923
924 return errno == ENOENT ? 0 : -errno;
925 }
926
927 log_info("Removed \"%s\".", p);
928 return 1;
929 }
930
931 static int remove_variables(sd_id128_t uuid, const char *path, bool in_order) {
932 uint16_t slot;
933 int r;
934
935 if (!is_efi_boot())
936 return 0;
937
938 r = find_slot(uuid, path, &slot);
939 if (r != 1)
940 return 0;
941
942 r = efi_remove_boot_option(slot);
943 if (r < 0)
944 return r;
945
946 if (in_order)
947 return remove_from_order(slot);
948
949 return 0;
950 }
951
952 static int remove_loader_variables(void) {
953 const char *p;
954 int r = 0;
955
956 /* Remove all persistent loader variables we define */
957
958 FOREACH_STRING(p,
959 "LoaderConfigTimeout",
960 "LoaderConfigTimeoutOneShot",
961 "LoaderEntryDefault",
962 "LoaderEntryOneShot",
963 "LoaderSystemToken") {
964
965 int q;
966
967 q = efi_set_variable(EFI_VENDOR_LOADER, p, NULL, 0);
968 if (q == -ENOENT)
969 continue;
970 if (q < 0) {
971 log_warning_errno(q, "Failed to remove %s variable: %m", p);
972 if (r >= 0)
973 r = q;
974 } else
975 log_info("Removed EFI variable %s.", p);
976 }
977
978 return r;
979 }
980
981 static int install_loader_config(const char *esp_path, sd_id128_t machine_id) {
982 char machine_string[SD_ID128_STRING_MAX];
983 _cleanup_(unlink_and_freep) char *t = NULL;
984 _cleanup_fclose_ FILE *f = NULL;
985 _cleanup_close_ int fd = -1;
986 const char *p;
987 int r;
988
989 p = prefix_roota(esp_path, "/loader/loader.conf");
990 if (access(p, F_OK) >= 0) /* Silently skip creation if the file already exists (early check) */
991 return 0;
992
993 fd = open_tmpfile_linkable(p, O_WRONLY|O_CLOEXEC, &t);
994 if (fd < 0)
995 return log_error_errno(fd, "Failed to open \"%s\" for writing: %m", p);
996
997 f = take_fdopen(&fd, "w");
998 if (!f)
999 return log_oom();
1000
1001 fprintf(f, "#timeout 3\n"
1002 "#console-mode keep\n"
1003 "default %s-*\n", sd_id128_to_string(machine_id, machine_string));
1004
1005 r = fflush_sync_and_check(f);
1006 if (r < 0)
1007 return log_error_errno(r, "Failed to write \"%s\": %m", p);
1008
1009 r = link_tmpfile(fileno(f), t, p);
1010 if (r == -EEXIST)
1011 return 0; /* Silently skip creation if the file exists now (recheck) */
1012 if (r < 0)
1013 return log_error_errno(r, "Failed to move \"%s\" into place: %m", p);
1014
1015 t = mfree(t);
1016 return 1;
1017 }
1018
1019 static int install_machine_id_directory(const char *root, sd_id128_t machine_id) {
1020 char buf[SD_ID128_STRING_MAX];
1021
1022 assert(root);
1023
1024 return mkdir_one(root, sd_id128_to_string(machine_id, buf));
1025 }
1026
1027 static int help(int argc, char *argv[], void *userdata) {
1028 _cleanup_free_ char *link = NULL;
1029 int r;
1030
1031 r = terminal_urlify_man("bootctl", "1", &link);
1032 if (r < 0)
1033 return log_oom();
1034
1035 printf("%s [OPTIONS...] COMMAND ...\n"
1036 "\n%sInstall/update/remove the systemd-boot EFI boot manager and list/select entries.%s\n"
1037 "\nBoot Loader Commands:\n"
1038 " status Show status of installed systemd-boot and EFI variables\n"
1039 " install Install systemd-boot to the ESP and EFI variables\n"
1040 " update Update systemd-boot in the ESP and EFI variables\n"
1041 " remove Remove systemd-boot from the ESP and EFI variables\n"
1042 " is-installed Test whether systemd-boot is installed in the ESP\n"
1043 " random-seed Initialize random seed in ESP and EFI variables\n"
1044 " systemd-efi-options [STRING]\n"
1045 " Query or set system options string in EFI variable\n"
1046 " reboot-to-firmware [BOOL]\n"
1047 " Query or set reboot-to-firmware EFI flag\n"
1048 "\nBoot Loader Entries Commands:\n"
1049 " list List boot loader entries\n"
1050 " set-default ID Set default boot loader entry\n"
1051 " set-oneshot ID Set default boot loader entry, for next boot only\n"
1052 "\nOptions:\n"
1053 " -h --help Show this help\n"
1054 " --version Print version\n"
1055 " --esp-path=PATH Path to the EFI System Partition (ESP)\n"
1056 " --boot-path=PATH Path to the $BOOT partition\n"
1057 " -p --print-esp-path Print path to the EFI System Partition\n"
1058 " -x --print-boot-path Print path to the $BOOT partition\n"
1059 " --no-variables Don't touch EFI variables\n"
1060 " --no-pager Do not pipe output into a pager\n"
1061 " --graceful Don't fail when the ESP cannot be found or EFI\n"
1062 " variables cannot be written\n"
1063 "\nSee the %s for details.\n"
1064 , program_invocation_short_name
1065 , ansi_highlight()
1066 , ansi_normal()
1067 , link);
1068
1069 return 0;
1070 }
1071
1072 static int parse_argv(int argc, char *argv[]) {
1073 enum {
1074 ARG_ESP_PATH = 0x100,
1075 ARG_BOOT_PATH,
1076 ARG_VERSION,
1077 ARG_NO_VARIABLES,
1078 ARG_NO_PAGER,
1079 ARG_GRACEFUL,
1080 };
1081
1082 static const struct option options[] = {
1083 { "help", no_argument, NULL, 'h' },
1084 { "version", no_argument, NULL, ARG_VERSION },
1085 { "esp-path", required_argument, NULL, ARG_ESP_PATH },
1086 { "path", required_argument, NULL, ARG_ESP_PATH }, /* Compatibility alias */
1087 { "boot-path", required_argument, NULL, ARG_BOOT_PATH },
1088 { "print-esp-path", no_argument, NULL, 'p' },
1089 { "print-path", no_argument, NULL, 'p' }, /* Compatibility alias */
1090 { "print-boot-path", no_argument, NULL, 'x' },
1091 { "no-variables", no_argument, NULL, ARG_NO_VARIABLES },
1092 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
1093 { "graceful", no_argument, NULL, ARG_GRACEFUL },
1094 {}
1095 };
1096
1097 int c, r;
1098
1099 assert(argc >= 0);
1100 assert(argv);
1101
1102 while ((c = getopt_long(argc, argv, "hpx", options, NULL)) >= 0)
1103 switch (c) {
1104
1105 case 'h':
1106 help(0, NULL, NULL);
1107 return 0;
1108
1109 case ARG_VERSION:
1110 return version();
1111
1112 case ARG_ESP_PATH:
1113 r = free_and_strdup(&arg_esp_path, optarg);
1114 if (r < 0)
1115 return log_oom();
1116 break;
1117
1118 case ARG_BOOT_PATH:
1119 r = free_and_strdup(&arg_xbootldr_path, optarg);
1120 if (r < 0)
1121 return log_oom();
1122 break;
1123
1124 case 'p':
1125 if (arg_print_dollar_boot_path)
1126 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1127 "--print-boot-path/-x cannot be combined with --print-esp-path/-p");
1128 arg_print_esp_path = true;
1129 break;
1130
1131 case 'x':
1132 if (arg_print_esp_path)
1133 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1134 "--print-boot-path/-x cannot be combined with --print-esp-path/-p");
1135 arg_print_dollar_boot_path = true;
1136 break;
1137
1138 case ARG_NO_VARIABLES:
1139 arg_touch_variables = false;
1140 break;
1141
1142 case ARG_NO_PAGER:
1143 arg_pager_flags |= PAGER_DISABLE;
1144 break;
1145
1146 case ARG_GRACEFUL:
1147 arg_graceful = true;
1148 break;
1149
1150 case '?':
1151 return -EINVAL;
1152
1153 default:
1154 assert_not_reached("Unknown option");
1155 }
1156
1157 return 1;
1158 }
1159
1160 static void read_loader_efi_var(const char *name, char **var) {
1161 int r;
1162
1163 r = efi_get_variable_string(EFI_VENDOR_LOADER, name, var);
1164 if (r < 0 && r != -ENOENT)
1165 log_warning_errno(r, "Failed to read EFI variable %s: %m", name);
1166 }
1167
1168 static void print_yes_no_line(bool first, bool good, const char *name) {
1169 printf("%s%s%s%s %s\n",
1170 first ? " Features: " : " ",
1171 good ? ansi_highlight_green() : ansi_highlight_red(),
1172 good ? special_glyph(SPECIAL_GLYPH_CHECK_MARK) : special_glyph(SPECIAL_GLYPH_CROSS_MARK),
1173 ansi_normal(),
1174 name);
1175 }
1176
1177 static int verb_status(int argc, char *argv[], void *userdata) {
1178 sd_id128_t esp_uuid = SD_ID128_NULL, xbootldr_uuid = SD_ID128_NULL;
1179 int r, k;
1180
1181 r = acquire_esp(geteuid() != 0, NULL, NULL, NULL, &esp_uuid);
1182 if (arg_print_esp_path) {
1183 if (r == -EACCES) /* If we couldn't acquire the ESP path, log about access errors (which is the only
1184 * error the find_esp_and_warn() won't log on its own) */
1185 return log_error_errno(r, "Failed to determine ESP location: %m");
1186 if (r < 0)
1187 return r;
1188
1189 puts(arg_esp_path);
1190 }
1191
1192 r = acquire_xbootldr(geteuid() != 0, &xbootldr_uuid);
1193 if (arg_print_dollar_boot_path) {
1194 if (r == -EACCES)
1195 return log_error_errno(r, "Failed to determine XBOOTLDR location: %m");
1196 if (r < 0)
1197 return r;
1198
1199 const char *path = arg_dollar_boot_path();
1200 if (!path)
1201 return log_error_errno(SYNTHETIC_ERRNO(EACCES), "Failed to determine XBOOTLDR location: %m");
1202
1203 puts(path);
1204 }
1205
1206 if (arg_print_esp_path || arg_print_dollar_boot_path)
1207 return 0;
1208
1209 r = 0; /* If we couldn't determine the path, then don't consider that a problem from here on, just show what we
1210 * can show */
1211
1212 (void) pager_open(arg_pager_flags);
1213
1214 if (is_efi_boot()) {
1215 static const struct {
1216 uint64_t flag;
1217 const char *name;
1218 } flags[] = {
1219 { EFI_LOADER_FEATURE_BOOT_COUNTING, "Boot counting" },
1220 { EFI_LOADER_FEATURE_CONFIG_TIMEOUT, "Menu timeout control" },
1221 { EFI_LOADER_FEATURE_CONFIG_TIMEOUT_ONE_SHOT, "One-shot menu timeout control" },
1222 { EFI_LOADER_FEATURE_ENTRY_DEFAULT, "Default entry control" },
1223 { EFI_LOADER_FEATURE_ENTRY_ONESHOT, "One-shot entry control" },
1224 { EFI_LOADER_FEATURE_XBOOTLDR, "Support for XBOOTLDR partition" },
1225 { EFI_LOADER_FEATURE_RANDOM_SEED, "Support for passing random seed to OS" },
1226 };
1227
1228 _cleanup_free_ char *fw_type = NULL, *fw_info = NULL, *loader = NULL, *loader_path = NULL, *stub = NULL;
1229 sd_id128_t loader_part_uuid = SD_ID128_NULL;
1230 uint64_t loader_features = 0;
1231 size_t i;
1232
1233 read_loader_efi_var("LoaderFirmwareType", &fw_type);
1234 read_loader_efi_var("LoaderFirmwareInfo", &fw_info);
1235 read_loader_efi_var("LoaderInfo", &loader);
1236 read_loader_efi_var("StubInfo", &stub);
1237 read_loader_efi_var("LoaderImageIdentifier", &loader_path);
1238 (void) efi_loader_get_features(&loader_features);
1239
1240 if (loader_path)
1241 efi_tilt_backslashes(loader_path);
1242
1243 k = efi_loader_get_device_part_uuid(&loader_part_uuid);
1244 if (k < 0 && k != -ENOENT)
1245 r = log_warning_errno(k, "Failed to read EFI variable LoaderDevicePartUUID: %m");
1246
1247 printf("System:\n");
1248 printf(" Firmware: %s%s (%s)%s\n", ansi_highlight(), strna(fw_type), strna(fw_info), ansi_normal());
1249 printf(" Secure Boot: %sd\n", enable_disable(is_efi_secure_boot()));
1250 printf(" Setup Mode: %s\n", is_efi_secure_boot_setup_mode() ? "setup" : "user");
1251
1252 r = efi_get_reboot_to_firmware();
1253 if (r > 0)
1254 printf(" Boot into FW: %sactive%s\n", ansi_highlight_yellow(), ansi_normal());
1255 else if (r == 0)
1256 printf(" Boot into FW: supported\n");
1257 else if (r == -EOPNOTSUPP)
1258 printf(" Boot into FW: not supported\n");
1259 else {
1260 errno = -r;
1261 printf(" Boot into FW: %sfailed%s (%m)\n", ansi_highlight_red(), ansi_normal());
1262 }
1263 printf("\n");
1264
1265 printf("Current Boot Loader:\n");
1266 printf(" Product: %s%s%s\n", ansi_highlight(), strna(loader), ansi_normal());
1267
1268 for (i = 0; i < ELEMENTSOF(flags); i++)
1269 print_yes_no_line(i == 0, FLAGS_SET(loader_features, flags[i].flag), flags[i].name);
1270
1271 sd_id128_t bootloader_esp_uuid;
1272 bool have_bootloader_esp_uuid = efi_loader_get_device_part_uuid(&bootloader_esp_uuid) >= 0;
1273
1274 print_yes_no_line(false, have_bootloader_esp_uuid, "Boot loader sets ESP partition information");
1275 if (have_bootloader_esp_uuid && !sd_id128_equal(esp_uuid, bootloader_esp_uuid))
1276 printf("WARNING: The boot loader reports different ESP UUID then detected!\n");
1277
1278 if (stub)
1279 printf(" Stub: %s\n", stub);
1280 if (!sd_id128_is_null(loader_part_uuid))
1281 printf(" ESP: /dev/disk/by-partuuid/" SD_ID128_UUID_FORMAT_STR "\n",
1282 SD_ID128_FORMAT_VAL(loader_part_uuid));
1283 else
1284 printf(" ESP: n/a\n");
1285 printf(" File: %s%s\n", special_glyph(SPECIAL_GLYPH_TREE_RIGHT), strna(loader_path));
1286 printf("\n");
1287
1288 printf("Random Seed:\n");
1289 printf(" Passed to OS: %s\n", yes_no(access("/sys/firmware/efi/efivars/LoaderRandomSeed-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f", F_OK) >= 0));
1290 printf(" System Token: %s\n", access("/sys/firmware/efi/efivars/LoaderSystemToken-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f", F_OK) >= 0 ? "set" : "not set");
1291
1292 if (arg_esp_path) {
1293 _cleanup_free_ char *p = NULL;
1294
1295 p = path_join(arg_esp_path, "/loader/random-seed");
1296 if (!p)
1297 return log_oom();
1298
1299 printf(" Exists: %s\n", yes_no(access(p, F_OK) >= 0));
1300 }
1301
1302 printf("\n");
1303 } else
1304 printf("System:\n Not booted with EFI\n\n");
1305
1306 if (arg_esp_path) {
1307 k = status_binaries(arg_esp_path, esp_uuid);
1308 if (k < 0)
1309 r = k;
1310 }
1311
1312 if (is_efi_boot()) {
1313 k = status_variables();
1314 if (k < 0)
1315 r = k;
1316 }
1317
1318 if (arg_esp_path || arg_xbootldr_path) {
1319 k = status_entries(arg_esp_path, esp_uuid, arg_xbootldr_path, xbootldr_uuid);
1320 if (k < 0)
1321 r = k;
1322 }
1323
1324 return r;
1325 }
1326
1327 static int verb_list(int argc, char *argv[], void *userdata) {
1328 _cleanup_(boot_config_free) BootConfig config = {};
1329 _cleanup_strv_free_ char **efi_entries = NULL;
1330 int r;
1331
1332 /* If we lack privileges we invoke find_esp_and_warn() in "unprivileged mode" here, which does two things: turn
1333 * off logging about access errors and turn off potentially privileged device probing. Here we're interested in
1334 * the latter but not the former, hence request the mode, and log about EACCES. */
1335
1336 r = acquire_esp(geteuid() != 0, NULL, NULL, NULL, NULL);
1337 if (r == -EACCES) /* We really need the ESP path for this call, hence also log about access errors */
1338 return log_error_errno(r, "Failed to determine ESP: %m");
1339 if (r < 0)
1340 return r;
1341
1342 r = acquire_xbootldr(geteuid() != 0, NULL);
1343 if (r == -EACCES)
1344 return log_error_errno(r, "Failed to determine XBOOTLDR partition: %m");
1345 if (r < 0)
1346 return r;
1347
1348 r = boot_entries_load_config(arg_esp_path, arg_xbootldr_path, &config);
1349 if (r < 0)
1350 return r;
1351
1352 r = efi_loader_get_entries(&efi_entries);
1353 if (r == -ENOENT || ERRNO_IS_NOT_SUPPORTED(r))
1354 log_debug_errno(r, "Boot loader reported no entries.");
1355 else if (r < 0)
1356 log_warning_errno(r, "Failed to determine entries reported by boot loader, ignoring: %m");
1357 else
1358 (void) boot_entries_augment_from_loader(&config, efi_entries, false);
1359
1360 if (config.n_entries == 0)
1361 log_info("No boot loader entries found.");
1362 else {
1363 size_t n;
1364
1365 (void) pager_open(arg_pager_flags);
1366
1367 printf("Boot Loader Entries:\n");
1368
1369 for (n = 0; n < config.n_entries; n++) {
1370 r = boot_entry_show(config.entries + n, n == (size_t) config.default_entry);
1371 if (r < 0)
1372 return r;
1373
1374 if (n+1 < config.n_entries)
1375 putchar('\n');
1376 }
1377 }
1378
1379 return 0;
1380 }
1381
1382 static int install_random_seed(const char *esp) {
1383 _cleanup_(unlink_and_freep) char *tmp = NULL;
1384 _cleanup_free_ void *buffer = NULL;
1385 _cleanup_free_ char *path = NULL;
1386 _cleanup_close_ int fd = -1;
1387 size_t sz, token_size;
1388 ssize_t n;
1389 int r;
1390
1391 assert(esp);
1392
1393 path = path_join(esp, "/loader/random-seed");
1394 if (!path)
1395 return log_oom();
1396
1397 sz = random_pool_size();
1398
1399 buffer = malloc(sz);
1400 if (!buffer)
1401 return log_oom();
1402
1403 r = genuine_random_bytes(buffer, sz, RANDOM_BLOCK);
1404 if (r < 0)
1405 return log_error_errno(r, "Failed to acquire random seed: %m");
1406
1407 /* Normally create_subdirs() should already have created everything we need, but in case "bootctl
1408 * random-seed" is called we want to just create the minimum we need for it, and not the full
1409 * list. */
1410 r = mkdir_parents(path, 0755);
1411 if (r < 0)
1412 return log_error_errno(r, "Failed to create parent directory for %s: %m", path);
1413
1414 r = tempfn_random(path, "bootctl", &tmp);
1415 if (r < 0)
1416 return log_oom();
1417
1418 fd = open(tmp, O_CREAT|O_EXCL|O_NOFOLLOW|O_NOCTTY|O_WRONLY|O_CLOEXEC, 0600);
1419 if (fd < 0) {
1420 tmp = mfree(tmp);
1421 return log_error_errno(fd, "Failed to open random seed file for writing: %m");
1422 }
1423
1424 n = write(fd, buffer, sz);
1425 if (n < 0)
1426 return log_error_errno(errno, "Failed to write random seed file: %m");
1427 if ((size_t) n != sz)
1428 return log_error_errno(SYNTHETIC_ERRNO(EIO), "Short write while writing random seed file.");
1429
1430 if (rename(tmp, path) < 0)
1431 return log_error_errno(r, "Failed to move random seed file into place: %m");
1432
1433 tmp = mfree(tmp);
1434
1435 log_info("Random seed file %s successfully written (%zu bytes).", path, sz);
1436
1437 if (!arg_touch_variables)
1438 return 0;
1439
1440 if (!is_efi_boot()) {
1441 log_notice("Not booted with EFI, skipping EFI variable setup.");
1442 return 0;
1443 }
1444
1445 r = getenv_bool("SYSTEMD_WRITE_SYSTEM_TOKEN");
1446 if (r < 0) {
1447 if (r != -ENXIO)
1448 log_warning_errno(r, "Failed to parse $SYSTEMD_WRITE_SYSTEM_TOKEN, ignoring.");
1449
1450 if (detect_vm() > 0) {
1451 /* Let's not write a system token if we detect we are running in a VM
1452 * environment. Why? Our default security model for the random seed uses the system
1453 * token as a mechanism to ensure we are not vulnerable to golden master sloppiness
1454 * issues, i.e. that people initialize the random seed file, then copy the image to
1455 * many systems and end up with the same random seed in each that is assumed to be
1456 * valid but in reality is the same for all machines. By storing a system token in
1457 * the EFI variable space we can make sure that even though the random seeds on disk
1458 * are all the same they will be different on each system under the assumption that
1459 * the EFI variable space is maintained separate from the random seed storage. That
1460 * is generally the case on physical systems, as the ESP is stored on persistent
1461 * storage, and the EFI variables in NVRAM. However in virtualized environments this
1462 * is generally not true: the EFI variable set is typically stored along with the
1463 * disk image itself. For example, using the OVMF EFI firmware the EFI variables are
1464 * stored in a file in the ESP itself. */
1465
1466 log_notice("Not installing system token, since we are running in a virtualized environment.");
1467 return 0;
1468 }
1469 } else if (r == 0) {
1470 log_notice("Not writing system token, because $SYSTEMD_WRITE_SYSTEM_TOKEN is set to false.");
1471 return 0;
1472 }
1473
1474 r = efi_get_variable(EFI_VENDOR_LOADER, "LoaderSystemToken", NULL, NULL, &token_size);
1475 if (r < 0) {
1476 if (r != -ENOENT)
1477 return log_error_errno(r, "Failed to test system token validity: %m");
1478 } else {
1479 if (token_size >= sz) {
1480 /* Let's avoid writes if we can, and initialize this only once. */
1481 log_debug("System token already written, not updating.");
1482 return 0;
1483 }
1484
1485 log_debug("Existing system token size (%zu) does not match our expectations (%zu), replacing.", token_size, sz);
1486 }
1487
1488 r = genuine_random_bytes(buffer, sz, RANDOM_BLOCK);
1489 if (r < 0)
1490 return log_error_errno(r, "Failed to acquire random seed: %m");
1491
1492 /* Let's write this variable with an umask in effect, so that unprivileged users can't see the token
1493 * and possibly get identification information or too much insight into the kernel's entropy pool
1494 * state. */
1495 RUN_WITH_UMASK(0077) {
1496 r = efi_set_variable(EFI_VENDOR_LOADER, "LoaderSystemToken", buffer, sz);
1497 if (r < 0) {
1498 if (!arg_graceful)
1499 return log_error_errno(r, "Failed to write 'LoaderSystemToken' EFI variable: %m");
1500
1501 if (r == -EINVAL)
1502 log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable (firmware problem?), ignoring: %m");
1503 else
1504 log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable, ignoring: %m");
1505 } else
1506 log_info("Successfully initialized system token in EFI variable with %zu bytes.", sz);
1507 }
1508
1509 return 0;
1510 }
1511
1512 static int sync_everything(void) {
1513 int ret = 0, k;
1514
1515 if (arg_esp_path) {
1516 k = syncfs_path(AT_FDCWD, arg_esp_path);
1517 if (k < 0)
1518 ret = log_error_errno(k, "Failed to synchronize the ESP '%s': %m", arg_esp_path);
1519 }
1520
1521 if (arg_xbootldr_path) {
1522 k = syncfs_path(AT_FDCWD, arg_xbootldr_path);
1523 if (k < 0)
1524 ret = log_error_errno(k, "Failed to synchronize $BOOT '%s': %m", arg_xbootldr_path);
1525 }
1526
1527 return ret;
1528 }
1529
1530 static int verb_install(int argc, char *argv[], void *userdata) {
1531 sd_id128_t uuid = SD_ID128_NULL;
1532 uint64_t pstart = 0, psize = 0;
1533 uint32_t part = 0;
1534 sd_id128_t machine_id;
1535 bool install;
1536 int r;
1537
1538 r = acquire_esp(false, &part, &pstart, &psize, &uuid);
1539 if (r < 0)
1540 return r;
1541
1542 r = acquire_xbootldr(false, NULL);
1543 if (r < 0)
1544 return r;
1545
1546 r = sd_id128_get_machine(&machine_id);
1547 if (r < 0)
1548 return log_error_errno(r, "Failed to get machine id: %m");
1549
1550 install = streq(argv[0], "install");
1551
1552 RUN_WITH_UMASK(0002) {
1553 if (install) {
1554 /* Don't create any of these directories when we are just updating. When we update
1555 * we'll drop-in our files (unless there are newer ones already), but we won't create
1556 * the directories for them in the first place. */
1557 r = create_subdirs(arg_esp_path, esp_subdirs);
1558 if (r < 0)
1559 return r;
1560
1561 r = create_subdirs(arg_dollar_boot_path(), dollar_boot_subdirs);
1562 if (r < 0)
1563 return r;
1564 }
1565
1566 r = install_binaries(arg_esp_path, install);
1567 if (r < 0)
1568 return r;
1569
1570 if (install) {
1571 r = install_loader_config(arg_esp_path, machine_id);
1572 if (r < 0)
1573 return r;
1574
1575 r = install_machine_id_directory(arg_dollar_boot_path(), machine_id);
1576 if (r < 0)
1577 return r;
1578
1579 r = install_random_seed(arg_esp_path);
1580 if (r < 0)
1581 return r;
1582 }
1583 }
1584
1585 (void) sync_everything();
1586
1587 if (arg_touch_variables)
1588 r = install_variables(arg_esp_path,
1589 part, pstart, psize, uuid,
1590 "/EFI/systemd/systemd-boot" EFI_MACHINE_TYPE_NAME ".efi",
1591 install);
1592
1593 return r;
1594 }
1595
1596 static int verb_remove(int argc, char *argv[], void *userdata) {
1597 sd_id128_t uuid = SD_ID128_NULL, machine_id;
1598 int r, q;
1599
1600 r = acquire_esp(false, NULL, NULL, NULL, &uuid);
1601 if (r < 0)
1602 return r;
1603
1604 r = acquire_xbootldr(false, NULL);
1605 if (r < 0)
1606 return r;
1607
1608 r = sd_id128_get_machine(&machine_id);
1609 if (r < 0)
1610 return log_error_errno(r, "Failed to get machine id: %m");
1611
1612 r = remove_binaries(arg_esp_path);
1613
1614 q = remove_file(arg_esp_path, "/loader/loader.conf");
1615 if (q < 0 && r >= 0)
1616 r = q;
1617
1618 q = remove_file(arg_esp_path, "/loader/random-seed");
1619 if (q < 0 && r >= 0)
1620 r = q;
1621
1622 q = remove_subdirs(arg_esp_path, esp_subdirs);
1623 if (q < 0 && r >= 0)
1624 r = q;
1625
1626 q = remove_subdirs(arg_esp_path, dollar_boot_subdirs);
1627 if (q < 0 && r >= 0)
1628 r = q;
1629
1630 q = remove_machine_id_directory(arg_esp_path, machine_id);
1631 if (q < 0 && r >= 0)
1632 r = 1;
1633
1634 if (arg_xbootldr_path) {
1635 /* Remove the latter two also in the XBOOTLDR partition if it exists */
1636 q = remove_subdirs(arg_xbootldr_path, dollar_boot_subdirs);
1637 if (q < 0 && r >= 0)
1638 r = q;
1639
1640 q = remove_machine_id_directory(arg_xbootldr_path, machine_id);
1641 if (q < 0 && r >= 0)
1642 r = q;
1643 }
1644
1645 (void) sync_everything();
1646
1647 if (!arg_touch_variables)
1648 return r;
1649
1650 q = remove_variables(uuid, "/EFI/systemd/systemd-boot" EFI_MACHINE_TYPE_NAME ".efi", true);
1651 if (q < 0 && r >= 0)
1652 r = q;
1653
1654 q = remove_loader_variables();
1655 if (q < 0 && r >= 0)
1656 r = q;
1657
1658 return r;
1659 }
1660
1661 static int verb_is_installed(int argc, char *argv[], void *userdata) {
1662 _cleanup_free_ char *p = NULL;
1663 int r;
1664
1665 r = acquire_esp(false, NULL, NULL, NULL, NULL);
1666 if (r < 0)
1667 return r;
1668
1669 /* Tests whether systemd-boot is installed. It's not obvious what to use as check here: we could
1670 * check EFI variables, we could check what binary /EFI/BOOT/BOOT*.EFI points to, or whether the
1671 * loader entries directory exists. Here we opted to check whether /EFI/systemd/ is non-empty, which
1672 * should be a suitable and very minimal check for a number of reasons:
1673 *
1674 * → The check is architecture independent (i.e. we check if any systemd-boot loader is installed, not a
1675 * specific one.)
1676 *
1677 * → It doesn't assume we are the only boot loader (i.e doesn't check if we own the main
1678 * /EFI/BOOT/BOOT*.EFI fallback binary.
1679 *
1680 * → It specifically checks for systemd-boot, not for other boot loaders (which a check for
1681 * /boot/loader/entries would do). */
1682
1683 p = path_join(arg_esp_path, "/EFI/systemd/");
1684 if (!p)
1685 return log_oom();
1686
1687 r = dir_is_empty(p);
1688 if (r > 0 || r == -ENOENT) {
1689 puts("no");
1690 return EXIT_FAILURE;
1691 }
1692 if (r < 0)
1693 return log_error_errno(r, "Failed to detect whether systemd-boot is installed: %m");
1694
1695 puts("yes");
1696 return EXIT_SUCCESS;
1697 }
1698
1699 static int verb_set_default(int argc, char *argv[], void *userdata) {
1700 const char *name;
1701 int r;
1702
1703 if (!is_efi_boot())
1704 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
1705 "Not booted with UEFI.");
1706
1707 if (access("/sys/firmware/efi/efivars/LoaderInfo-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f", F_OK) < 0) {
1708 if (errno == ENOENT) {
1709 log_error_errno(errno, "Not booted with a supported boot loader.");
1710 return -EOPNOTSUPP;
1711 }
1712
1713 return log_error_errno(errno, "Failed to detect whether boot loader supports '%s' operation: %m", argv[0]);
1714 }
1715
1716 if (detect_container() > 0)
1717 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
1718 "'%s' operation not supported in a container.",
1719 argv[0]);
1720
1721 if (!arg_touch_variables)
1722 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1723 "'%s' operation cannot be combined with --touch-variables=no.",
1724 argv[0]);
1725
1726 name = streq(argv[0], "set-default") ? "LoaderEntryDefault" : "LoaderEntryOneShot";
1727
1728 if (isempty(argv[1])) {
1729 r = efi_set_variable(EFI_VENDOR_LOADER, name, NULL, 0);
1730 if (r < 0 && r != -ENOENT)
1731 return log_error_errno(r, "Failed to remove EFI variale: %m");
1732 } else {
1733 _cleanup_free_ char16_t *encoded = NULL;
1734
1735 encoded = utf8_to_utf16(argv[1], strlen(argv[1]));
1736 if (!encoded)
1737 return log_oom();
1738
1739 r = efi_set_variable(EFI_VENDOR_LOADER, name, encoded, char16_strlen(encoded) * 2 + 2);
1740 if (r < 0)
1741 return log_error_errno(r, "Failed to update EFI variable: %m");
1742 }
1743
1744 return 0;
1745 }
1746
1747 static int verb_random_seed(int argc, char *argv[], void *userdata) {
1748 int r;
1749
1750 r = find_esp_and_warn(arg_esp_path, false, &arg_esp_path, NULL, NULL, NULL, NULL);
1751 if (r == -ENOKEY) {
1752 /* find_esp_and_warn() doesn't warn about ENOKEY, so let's do that on our own */
1753 if (!arg_graceful)
1754 return log_error_errno(r, "Unable to find ESP.");
1755
1756 log_notice("No ESP found, not initializing random seed.");
1757 return 0;
1758 }
1759 if (r < 0)
1760 return r;
1761
1762 r = install_random_seed(arg_esp_path);
1763 if (r < 0)
1764 return r;
1765
1766 (void) sync_everything();
1767 return 0;
1768 }
1769
1770 static int verb_systemd_efi_options(int argc, char *argv[], void *userdata) {
1771 int r;
1772
1773 if (argc == 1) {
1774 _cleanup_free_ char *line = NULL;
1775
1776 r = systemd_efi_options_variable(&line);
1777 if (r < 0)
1778 return log_error_errno(r, "Failed to query SystemdOptions EFI variable: %m");
1779
1780 puts(line);
1781
1782 } else {
1783 r = efi_set_variable_string(EFI_VENDOR_SYSTEMD, "SystemdOptions", argv[1]);
1784 if (r < 0)
1785 return log_error_errno(r, "Failed to set SystemdOptions EFI variable: %m");
1786 }
1787
1788 return 0;
1789 }
1790
1791 static int verb_reboot_to_firmware(int argc, char *argv[], void *userdata) {
1792 int r;
1793
1794 if (argc < 2) {
1795 r = efi_get_reboot_to_firmware();
1796 if (r > 0) {
1797 puts("active");
1798 return EXIT_SUCCESS; /* success */
1799 }
1800 if (r == 0) {
1801 puts("supported");
1802 return 1; /* recognizable error #1 */
1803 }
1804 if (r == -EOPNOTSUPP) {
1805 puts("not supported");
1806 return 2; /* recognizable error #2 */
1807 }
1808
1809 log_error_errno(r, "Failed to query reboot-to-firmware state: %m");
1810 return 3; /* other kind of error */
1811 } else {
1812 r = parse_boolean(argv[1]);
1813 if (r < 0)
1814 return log_error_errno(r, "Failed to parse argument: %s", argv[1]);
1815
1816 r = efi_set_reboot_to_firmware(r);
1817 if (r < 0)
1818 return log_error_errno(r, "Failed to set reboot-to-firmware option: %m");
1819
1820 return 0;
1821 }
1822 }
1823
1824 static int bootctl_main(int argc, char *argv[]) {
1825 static const Verb verbs[] = {
1826 { "help", VERB_ANY, VERB_ANY, 0, help },
1827 { "status", VERB_ANY, 1, VERB_DEFAULT, verb_status },
1828 { "install", VERB_ANY, 1, 0, verb_install },
1829 { "update", VERB_ANY, 1, 0, verb_install },
1830 { "remove", VERB_ANY, 1, 0, verb_remove },
1831 { "is-installed", VERB_ANY, 1, 0, verb_is_installed },
1832 { "list", VERB_ANY, 1, 0, verb_list },
1833 { "set-default", 2, 2, 0, verb_set_default },
1834 { "set-oneshot", 2, 2, 0, verb_set_default },
1835 { "random-seed", VERB_ANY, 1, 0, verb_random_seed },
1836 { "systemd-efi-options", VERB_ANY, 2, 0, verb_systemd_efi_options },
1837 { "reboot-to-firmware", VERB_ANY, 2, 0, verb_reboot_to_firmware },
1838 {}
1839 };
1840
1841 return dispatch_verb(argc, argv, verbs, NULL);
1842 }
1843
1844 static int run(int argc, char *argv[]) {
1845 int r;
1846
1847 log_parse_environment();
1848 log_open();
1849
1850 /* If we run in a container, automatically turn off EFI file system access */
1851 if (detect_container() > 0)
1852 arg_touch_variables = false;
1853
1854 r = parse_argv(argc, argv);
1855 if (r <= 0)
1856 return r;
1857
1858 return bootctl_main(argc, argv);
1859 }
1860
1861 DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);