]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/firstboot/firstboot.c
Merge pull request #8417 from brauner/2018-03-09/add_bind_mount_fallback_to_private_d...
[thirdparty/systemd.git] / src / firstboot / firstboot.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2014 Lennart Poettering
6 ***/
7
8 #include <fcntl.h>
9 #include <getopt.h>
10 #include <unistd.h>
11
12 #ifdef HAVE_CRYPT_H
13 /* libxcrypt is a replacement for glibc's libcrypt, and libcrypt might be
14 * removed from glibc at some point. As part of the removal, defines for
15 * crypt(3) are dropped from unistd.h, and we must include crypt.h instead.
16 *
17 * Newer versions of glibc (v2.0+) already ship crypt.h with a definition
18 * of crypt(3) as well, so we simply include it if it is present. MariaDB,
19 * MySQL, PostgreSQL, Perl and some other wide-spread packages do it the
20 * same way since ages without any problems.
21 */
22 # include <crypt.h>
23 #endif
24
25 #include "sd-id128.h"
26
27 #include "alloc-util.h"
28 #include "ask-password-api.h"
29 #include "copy.h"
30 #include "fd-util.h"
31 #include "fileio.h"
32 #include "fs-util.h"
33 #include "hostname-util.h"
34 #include "locale-util.h"
35 #include "mkdir.h"
36 #include "parse-util.h"
37 #include "path-util.h"
38 #include "proc-cmdline.h"
39 #include "random-util.h"
40 #include "string-util.h"
41 #include "strv.h"
42 #include "terminal-util.h"
43 #include "time-util.h"
44 #include "umask-util.h"
45 #include "user-util.h"
46
47 static char *arg_root = NULL;
48 static char *arg_locale = NULL; /* $LANG */
49 static char *arg_keymap = NULL;
50 static char *arg_locale_messages = NULL; /* $LC_MESSAGES */
51 static char *arg_timezone = NULL;
52 static char *arg_hostname = NULL;
53 static sd_id128_t arg_machine_id = {};
54 static char *arg_root_password = NULL;
55 static bool arg_prompt_locale = false;
56 static bool arg_prompt_keymap = false;
57 static bool arg_prompt_timezone = false;
58 static bool arg_prompt_hostname = false;
59 static bool arg_prompt_root_password = false;
60 static bool arg_copy_locale = false;
61 static bool arg_copy_keymap = false;
62 static bool arg_copy_timezone = false;
63 static bool arg_copy_root_password = false;
64
65 static bool press_any_key(void) {
66 char k = 0;
67 bool need_nl = true;
68
69 printf("-- Press any key to proceed --");
70 fflush(stdout);
71
72 (void) read_one_char(stdin, &k, USEC_INFINITY, &need_nl);
73
74 if (need_nl)
75 putchar('\n');
76
77 return k != 'q';
78 }
79
80 static void print_welcome(void) {
81 _cleanup_free_ char *pretty_name = NULL;
82 const char *os_release = NULL;
83 static bool done = false;
84 int r;
85
86 if (done)
87 return;
88
89 os_release = prefix_roota(arg_root, "/etc/os-release");
90 r = parse_env_file(os_release, NEWLINE,
91 "PRETTY_NAME", &pretty_name,
92 NULL);
93 if (r == -ENOENT) {
94
95 os_release = prefix_roota(arg_root, "/usr/lib/os-release");
96 r = parse_env_file(os_release, NEWLINE,
97 "PRETTY_NAME", &pretty_name,
98 NULL);
99 }
100
101 if (r < 0 && r != -ENOENT)
102 log_warning_errno(r, "Failed to read os-release file: %m");
103
104 printf("\nWelcome to your new installation of %s!\nPlease configure a few basic system settings:\n\n",
105 isempty(pretty_name) ? "Linux" : pretty_name);
106
107 press_any_key();
108
109 done = true;
110 }
111
112 static int show_menu(char **x, unsigned n_columns, unsigned width, unsigned percentage) {
113 unsigned n, per_column, i, j;
114 unsigned break_lines, break_modulo;
115
116 assert(n_columns > 0);
117
118 n = strv_length(x);
119 per_column = DIV_ROUND_UP(n, n_columns);
120
121 break_lines = lines();
122 if (break_lines > 2)
123 break_lines--;
124
125 /* The first page gets two extra lines, since we want to show
126 * a title */
127 break_modulo = break_lines;
128 if (break_modulo > 3)
129 break_modulo -= 3;
130
131 for (i = 0; i < per_column; i++) {
132
133 for (j = 0; j < n_columns; j ++) {
134 _cleanup_free_ char *e = NULL;
135
136 if (j * per_column + i >= n)
137 break;
138
139 e = ellipsize(x[j * per_column + i], width, percentage);
140 if (!e)
141 return log_oom();
142
143 printf("%4u) %-*s", j * per_column + i + 1, width, e);
144 }
145
146 putchar('\n');
147
148 /* on the first screen we reserve 2 extra lines for the title */
149 if (i % break_lines == break_modulo) {
150 if (!press_any_key())
151 return 0;
152 }
153 }
154
155 return 0;
156 }
157
158 static int prompt_loop(const char *text, char **l, bool (*is_valid)(const char *name), char **ret) {
159 int r;
160
161 assert(text);
162 assert(is_valid);
163 assert(ret);
164
165 for (;;) {
166 _cleanup_free_ char *p = NULL;
167 unsigned u;
168
169 r = ask_string(&p, "%s %s (empty to skip): ", special_glyph(TRIANGULAR_BULLET), text);
170 if (r < 0)
171 return log_error_errno(r, "Failed to query user: %m");
172
173 if (isempty(p)) {
174 log_warning("No data entered, skipping.");
175 return 0;
176 }
177
178 r = safe_atou(p, &u);
179 if (r >= 0) {
180 char *c;
181
182 if (u <= 0 || u > strv_length(l)) {
183 log_error("Specified entry number out of range.");
184 continue;
185 }
186
187 log_info("Selected '%s'.", l[u-1]);
188
189 c = strdup(l[u-1]);
190 if (!c)
191 return log_oom();
192
193 free(*ret);
194 *ret = c;
195 return 0;
196 }
197
198 if (!is_valid(p)) {
199 log_error("Entered data invalid.");
200 continue;
201 }
202
203 free(*ret);
204 *ret = p;
205 p = 0;
206 return 0;
207 }
208 }
209
210 static int prompt_locale(void) {
211 _cleanup_strv_free_ char **locales = NULL;
212 int r;
213
214 if (arg_locale || arg_locale_messages)
215 return 0;
216
217 if (!arg_prompt_locale)
218 return 0;
219
220 r = get_locales(&locales);
221 if (r < 0)
222 return log_error_errno(r, "Cannot query locales list: %m");
223
224 print_welcome();
225
226 printf("\nAvailable Locales:\n\n");
227 r = show_menu(locales, 3, 22, 60);
228 if (r < 0)
229 return r;
230
231 putchar('\n');
232
233 r = prompt_loop("Please enter system locale name or number", locales, locale_is_valid, &arg_locale);
234 if (r < 0)
235 return r;
236
237 if (isempty(arg_locale))
238 return 0;
239
240 r = prompt_loop("Please enter system message locale name or number", locales, locale_is_valid, &arg_locale_messages);
241 if (r < 0)
242 return r;
243
244 return 0;
245 }
246
247 static int process_locale(void) {
248 const char *etc_localeconf;
249 char* locales[3];
250 unsigned i = 0;
251 int r;
252
253 etc_localeconf = prefix_roota(arg_root, "/etc/locale.conf");
254 if (laccess(etc_localeconf, F_OK) >= 0)
255 return 0;
256
257 if (arg_copy_locale && arg_root) {
258
259 mkdir_parents(etc_localeconf, 0755);
260 r = copy_file("/etc/locale.conf", etc_localeconf, 0, 0644, 0, COPY_REFLINK);
261 if (r != -ENOENT) {
262 if (r < 0)
263 return log_error_errno(r, "Failed to copy %s: %m", etc_localeconf);
264
265 log_info("%s copied.", etc_localeconf);
266 return 0;
267 }
268 }
269
270 r = prompt_locale();
271 if (r < 0)
272 return r;
273
274 if (!isempty(arg_locale))
275 locales[i++] = strjoina("LANG=", arg_locale);
276 if (!isempty(arg_locale_messages) && !streq(arg_locale_messages, arg_locale))
277 locales[i++] = strjoina("LC_MESSAGES=", arg_locale_messages);
278
279 if (i == 0)
280 return 0;
281
282 locales[i] = NULL;
283
284 mkdir_parents(etc_localeconf, 0755);
285 r = write_env_file(etc_localeconf, locales);
286 if (r < 0)
287 return log_error_errno(r, "Failed to write %s: %m", etc_localeconf);
288
289 log_info("%s written.", etc_localeconf);
290 return 0;
291 }
292
293 static int prompt_keymap(void) {
294 _cleanup_strv_free_ char **kmaps = NULL;
295 int r;
296
297 if (arg_keymap)
298 return 0;
299
300 if (!arg_prompt_keymap)
301 return 0;
302
303 r = get_keymaps(&kmaps);
304 if (r == -ENOENT) /* no keymaps installed */
305 return r;
306 if (r < 0)
307 return log_error_errno(r, "Failed to read keymaps: %m");
308
309 print_welcome();
310
311 printf("\nAvailable keymaps:\n\n");
312 r = show_menu(kmaps, 3, 22, 60);
313 if (r < 0)
314 return r;
315
316 putchar('\n');
317
318 return prompt_loop("Please enter system keymap name or number",
319 kmaps, keymap_is_valid, &arg_keymap);
320 }
321
322 static int process_keymap(void) {
323 const char *etc_vconsoleconf;
324 char **keymap;
325 int r;
326
327 etc_vconsoleconf = prefix_roota(arg_root, "/etc/vconsole.conf");
328 if (laccess(etc_vconsoleconf, F_OK) >= 0)
329 return 0;
330
331 if (arg_copy_keymap && arg_root) {
332
333 mkdir_parents(etc_vconsoleconf, 0755);
334 r = copy_file("/etc/vconsole.conf", etc_vconsoleconf, 0, 0644, 0, COPY_REFLINK);
335 if (r != -ENOENT) {
336 if (r < 0)
337 return log_error_errno(r, "Failed to copy %s: %m", etc_vconsoleconf);
338
339 log_info("%s copied.", etc_vconsoleconf);
340 return 0;
341 }
342 }
343
344 r = prompt_keymap();
345 if (r == -ENOENT)
346 return 0; /* don't fail if no keymaps are installed */
347 if (r < 0)
348 return r;
349
350 if (isempty(arg_keymap))
351 return 0;
352
353 keymap = STRV_MAKE(strjoina("KEYMAP=", arg_keymap));
354
355 r = mkdir_parents(etc_vconsoleconf, 0755);
356 if (r < 0)
357 return log_error_errno(r, "Failed to create the parent directory of %s: %m", etc_vconsoleconf);
358
359 r = write_env_file(etc_vconsoleconf, keymap);
360 if (r < 0)
361 return log_error_errno(r, "Failed to write %s: %m", etc_vconsoleconf);
362
363 log_info("%s written.", etc_vconsoleconf);
364 return 0;
365 }
366
367 static int prompt_timezone(void) {
368 _cleanup_strv_free_ char **zones = NULL;
369 int r;
370
371 if (arg_timezone)
372 return 0;
373
374 if (!arg_prompt_timezone)
375 return 0;
376
377 r = get_timezones(&zones);
378 if (r < 0)
379 return log_error_errno(r, "Cannot query timezone list: %m");
380
381 print_welcome();
382
383 printf("\nAvailable Time Zones:\n\n");
384 r = show_menu(zones, 3, 22, 30);
385 if (r < 0)
386 return r;
387
388 putchar('\n');
389
390 r = prompt_loop("Please enter timezone name or number", zones, timezone_is_valid, &arg_timezone);
391 if (r < 0)
392 return r;
393
394 return 0;
395 }
396
397 static int process_timezone(void) {
398 const char *etc_localtime, *e;
399 int r;
400
401 etc_localtime = prefix_roota(arg_root, "/etc/localtime");
402 if (laccess(etc_localtime, F_OK) >= 0)
403 return 0;
404
405 if (arg_copy_timezone && arg_root) {
406 _cleanup_free_ char *p = NULL;
407
408 r = readlink_malloc("/etc/localtime", &p);
409 if (r != -ENOENT) {
410 if (r < 0)
411 return log_error_errno(r, "Failed to read host timezone: %m");
412
413 mkdir_parents(etc_localtime, 0755);
414 if (symlink(p, etc_localtime) < 0)
415 return log_error_errno(errno, "Failed to create %s symlink: %m", etc_localtime);
416
417 log_info("%s copied.", etc_localtime);
418 return 0;
419 }
420 }
421
422 r = prompt_timezone();
423 if (r < 0)
424 return r;
425
426 if (isempty(arg_timezone))
427 return 0;
428
429 e = strjoina("../usr/share/zoneinfo/", arg_timezone);
430
431 mkdir_parents(etc_localtime, 0755);
432 if (symlink(e, etc_localtime) < 0)
433 return log_error_errno(errno, "Failed to create %s symlink: %m", etc_localtime);
434
435 log_info("%s written", etc_localtime);
436 return 0;
437 }
438
439 static int prompt_hostname(void) {
440 int r;
441
442 if (arg_hostname)
443 return 0;
444
445 if (!arg_prompt_hostname)
446 return 0;
447
448 print_welcome();
449 putchar('\n');
450
451 for (;;) {
452 _cleanup_free_ char *h = NULL;
453
454 r = ask_string(&h, "%s Please enter hostname for new system (empty to skip): ", special_glyph(TRIANGULAR_BULLET));
455 if (r < 0)
456 return log_error_errno(r, "Failed to query hostname: %m");
457
458 if (isempty(h)) {
459 log_warning("No hostname entered, skipping.");
460 break;
461 }
462
463 if (!hostname_is_valid(h, true)) {
464 log_error("Specified hostname invalid.");
465 continue;
466 }
467
468 /* Get rid of the trailing dot that we allow, but don't want to see */
469 arg_hostname = hostname_cleanup(h);
470 h = NULL;
471 break;
472 }
473
474 return 0;
475 }
476
477 static int process_hostname(void) {
478 const char *etc_hostname;
479 int r;
480
481 etc_hostname = prefix_roota(arg_root, "/etc/hostname");
482 if (laccess(etc_hostname, F_OK) >= 0)
483 return 0;
484
485 r = prompt_hostname();
486 if (r < 0)
487 return r;
488
489 if (isempty(arg_hostname))
490 return 0;
491
492 mkdir_parents(etc_hostname, 0755);
493 r = write_string_file(etc_hostname, arg_hostname,
494 WRITE_STRING_FILE_CREATE | WRITE_STRING_FILE_SYNC);
495 if (r < 0)
496 return log_error_errno(r, "Failed to write %s: %m", etc_hostname);
497
498 log_info("%s written.", etc_hostname);
499 return 0;
500 }
501
502 static int process_machine_id(void) {
503 const char *etc_machine_id;
504 char id[SD_ID128_STRING_MAX];
505 int r;
506
507 etc_machine_id = prefix_roota(arg_root, "/etc/machine-id");
508 if (laccess(etc_machine_id, F_OK) >= 0)
509 return 0;
510
511 if (sd_id128_is_null(arg_machine_id))
512 return 0;
513
514 mkdir_parents(etc_machine_id, 0755);
515 r = write_string_file(etc_machine_id, sd_id128_to_string(arg_machine_id, id),
516 WRITE_STRING_FILE_CREATE | WRITE_STRING_FILE_SYNC);
517 if (r < 0)
518 return log_error_errno(r, "Failed to write machine id: %m");
519
520 log_info("%s written.", etc_machine_id);
521 return 0;
522 }
523
524 static int prompt_root_password(void) {
525 const char *msg1, *msg2, *etc_shadow;
526 int r;
527
528 if (arg_root_password)
529 return 0;
530
531 if (!arg_prompt_root_password)
532 return 0;
533
534 etc_shadow = prefix_roota(arg_root, "/etc/shadow");
535 if (laccess(etc_shadow, F_OK) >= 0)
536 return 0;
537
538 print_welcome();
539 putchar('\n');
540
541 msg1 = strjoina(special_glyph(TRIANGULAR_BULLET), " Please enter a new root password (empty to skip): ");
542 msg2 = strjoina(special_glyph(TRIANGULAR_BULLET), " Please enter new root password again: ");
543
544 for (;;) {
545 _cleanup_string_free_erase_ char *a = NULL, *b = NULL;
546
547 r = ask_password_tty(-1, msg1, NULL, 0, 0, NULL, &a);
548 if (r < 0)
549 return log_error_errno(r, "Failed to query root password: %m");
550
551 if (isempty(a)) {
552 log_warning("No password entered, skipping.");
553 break;
554 }
555
556 r = ask_password_tty(-1, msg2, NULL, 0, 0, NULL, &b);
557 if (r < 0)
558 return log_error_errno(r, "Failed to query root password: %m");
559
560 if (!streq(a, b)) {
561 log_error("Entered passwords did not match, please try again.");
562 continue;
563 }
564
565 arg_root_password = TAKE_PTR(a);
566 break;
567 }
568
569 return 0;
570 }
571
572 static int write_root_shadow(const char *path, const struct spwd *p) {
573 _cleanup_fclose_ FILE *f = NULL;
574 int r;
575
576 assert(path);
577 assert(p);
578
579 RUN_WITH_UMASK(0777)
580 f = fopen(path, "wex");
581 if (!f)
582 return -errno;
583
584 r = putspent_sane(p, f);
585 if (r < 0)
586 return r;
587
588 return fflush_sync_and_check(f);
589 }
590
591 static int process_root_password(void) {
592
593 static const char table[] =
594 "abcdefghijklmnopqrstuvwxyz"
595 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
596 "0123456789"
597 "./";
598
599 struct spwd item = {
600 .sp_namp = (char*) "root",
601 .sp_min = -1,
602 .sp_max = -1,
603 .sp_warn = -1,
604 .sp_inact = -1,
605 .sp_expire = -1,
606 .sp_flag = (unsigned long) -1, /* this appears to be what everybody does ... */
607 };
608
609 _cleanup_close_ int lock = -1;
610 char salt[3+16+1+1];
611 uint8_t raw[16];
612 unsigned i;
613 char *j;
614
615 const char *etc_shadow;
616 int r;
617
618 etc_shadow = prefix_roota(arg_root, "/etc/shadow");
619 if (laccess(etc_shadow, F_OK) >= 0)
620 return 0;
621
622 mkdir_parents(etc_shadow, 0755);
623
624 lock = take_etc_passwd_lock(arg_root);
625 if (lock < 0)
626 return log_error_errno(lock, "Failed to take a lock: %m");
627
628 if (arg_copy_root_password && arg_root) {
629 struct spwd *p;
630
631 errno = 0;
632 p = getspnam("root");
633 if (p || errno != ENOENT) {
634 if (!p) {
635 if (!errno)
636 errno = EIO;
637
638 return log_error_errno(errno, "Failed to find shadow entry for root: %m");
639 }
640
641 r = write_root_shadow(etc_shadow, p);
642 if (r < 0)
643 return log_error_errno(r, "Failed to write %s: %m", etc_shadow);
644
645 log_info("%s copied.", etc_shadow);
646 return 0;
647 }
648 }
649
650 r = prompt_root_password();
651 if (r < 0)
652 return r;
653
654 if (!arg_root_password)
655 return 0;
656
657 r = acquire_random_bytes(raw, 16, true);
658 if (r < 0)
659 return log_error_errno(r, "Failed to get salt: %m");
660
661 /* We only bother with SHA512 hashed passwords, the rest is legacy, and we don't do legacy. */
662 assert_cc(sizeof(table) == 64 + 1);
663 j = stpcpy(salt, "$6$");
664 for (i = 0; i < 16; i++)
665 j[i] = table[raw[i] & 63];
666 j[i++] = '$';
667 j[i] = 0;
668
669 errno = 0;
670 item.sp_pwdp = crypt(arg_root_password, salt);
671 if (!item.sp_pwdp) {
672 if (!errno)
673 errno = EINVAL;
674
675 return log_error_errno(errno, "Failed to encrypt password: %m");
676 }
677
678 item.sp_lstchg = (long) (now(CLOCK_REALTIME) / USEC_PER_DAY);
679
680 r = write_root_shadow(etc_shadow, &item);
681 if (r < 0)
682 return log_error_errno(r, "Failed to write %s: %m", etc_shadow);
683
684 log_info("%s written.", etc_shadow);
685 return 0;
686 }
687
688 static void help(void) {
689 printf("%s [OPTIONS...]\n\n"
690 "Configures basic settings of the system.\n\n"
691 " -h --help Show this help\n"
692 " --version Show package version\n"
693 " --root=PATH Operate on an alternate filesystem root\n"
694 " --locale=LOCALE Set primary locale (LANG=)\n"
695 " --locale-messages=LOCALE Set message locale (LC_MESSAGES=)\n"
696 " --keymap=KEYMAP Set keymap\n"
697 " --timezone=TIMEZONE Set timezone\n"
698 " --hostname=NAME Set host name\n"
699 " --machine-ID=ID Set machine ID\n"
700 " --root-password=PASSWORD Set root password\n"
701 " --root-password-file=FILE Set root password from file\n"
702 " --prompt-locale Prompt the user for locale settings\n"
703 " --prompt-keymap Prompt the user for keymap settings\n"
704 " --prompt-timezone Prompt the user for timezone\n"
705 " --prompt-hostname Prompt the user for hostname\n"
706 " --prompt-root-password Prompt the user for root password\n"
707 " --prompt Prompt for all of the above\n"
708 " --copy-locale Copy locale from host\n"
709 " --copy-keymap Copy keymap from host\n"
710 " --copy-timezone Copy timezone from host\n"
711 " --copy-root-password Copy root password from host\n"
712 " --copy Copy locale, keymap, timezone, root password\n"
713 " --setup-machine-id Generate a new random machine ID\n"
714 , program_invocation_short_name);
715 }
716
717 static int parse_argv(int argc, char *argv[]) {
718
719 enum {
720 ARG_VERSION = 0x100,
721 ARG_ROOT,
722 ARG_LOCALE,
723 ARG_LOCALE_MESSAGES,
724 ARG_KEYMAP,
725 ARG_TIMEZONE,
726 ARG_HOSTNAME,
727 ARG_MACHINE_ID,
728 ARG_ROOT_PASSWORD,
729 ARG_ROOT_PASSWORD_FILE,
730 ARG_PROMPT,
731 ARG_PROMPT_LOCALE,
732 ARG_PROMPT_KEYMAP,
733 ARG_PROMPT_TIMEZONE,
734 ARG_PROMPT_HOSTNAME,
735 ARG_PROMPT_ROOT_PASSWORD,
736 ARG_COPY,
737 ARG_COPY_LOCALE,
738 ARG_COPY_KEYMAP,
739 ARG_COPY_TIMEZONE,
740 ARG_COPY_ROOT_PASSWORD,
741 ARG_SETUP_MACHINE_ID,
742 };
743
744 static const struct option options[] = {
745 { "help", no_argument, NULL, 'h' },
746 { "version", no_argument, NULL, ARG_VERSION },
747 { "root", required_argument, NULL, ARG_ROOT },
748 { "locale", required_argument, NULL, ARG_LOCALE },
749 { "locale-messages", required_argument, NULL, ARG_LOCALE_MESSAGES },
750 { "keymap", required_argument, NULL, ARG_KEYMAP },
751 { "timezone", required_argument, NULL, ARG_TIMEZONE },
752 { "hostname", required_argument, NULL, ARG_HOSTNAME },
753 { "machine-id", required_argument, NULL, ARG_MACHINE_ID },
754 { "root-password", required_argument, NULL, ARG_ROOT_PASSWORD },
755 { "root-password-file", required_argument, NULL, ARG_ROOT_PASSWORD_FILE },
756 { "prompt", no_argument, NULL, ARG_PROMPT },
757 { "prompt-locale", no_argument, NULL, ARG_PROMPT_LOCALE },
758 { "prompt-keymap", no_argument, NULL, ARG_PROMPT_KEYMAP },
759 { "prompt-timezone", no_argument, NULL, ARG_PROMPT_TIMEZONE },
760 { "prompt-hostname", no_argument, NULL, ARG_PROMPT_HOSTNAME },
761 { "prompt-root-password", no_argument, NULL, ARG_PROMPT_ROOT_PASSWORD },
762 { "copy", no_argument, NULL, ARG_COPY },
763 { "copy-locale", no_argument, NULL, ARG_COPY_LOCALE },
764 { "copy-keymap", no_argument, NULL, ARG_COPY_KEYMAP },
765 { "copy-timezone", no_argument, NULL, ARG_COPY_TIMEZONE },
766 { "copy-root-password", no_argument, NULL, ARG_COPY_ROOT_PASSWORD },
767 { "setup-machine-id", no_argument, NULL, ARG_SETUP_MACHINE_ID },
768 {}
769 };
770
771 int r, c;
772
773 assert(argc >= 0);
774 assert(argv);
775
776 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
777
778 switch (c) {
779
780 case 'h':
781 help();
782 return 0;
783
784 case ARG_VERSION:
785 return version();
786
787 case ARG_ROOT:
788 r = parse_path_argument_and_warn(optarg, true, &arg_root);
789 if (r < 0)
790 return r;
791 break;
792
793 case ARG_LOCALE:
794 if (!locale_is_valid(optarg)) {
795 log_error("Locale %s is not valid.", optarg);
796 return -EINVAL;
797 }
798
799 r = free_and_strdup(&arg_locale, optarg);
800 if (r < 0)
801 return log_oom();
802
803 break;
804
805 case ARG_LOCALE_MESSAGES:
806 if (!locale_is_valid(optarg)) {
807 log_error("Locale %s is not valid.", optarg);
808 return -EINVAL;
809 }
810
811 r = free_and_strdup(&arg_locale_messages, optarg);
812 if (r < 0)
813 return log_oom();
814
815 break;
816
817 case ARG_KEYMAP:
818 if (!keymap_is_valid(optarg)) {
819 log_error("Keymap %s is not valid.", optarg);
820 return -EINVAL;
821 }
822
823 r = free_and_strdup(&arg_keymap, optarg);
824 if (r < 0)
825 return log_oom();
826
827 break;
828
829 case ARG_TIMEZONE:
830 if (!timezone_is_valid(optarg)) {
831 log_error("Timezone %s is not valid.", optarg);
832 return -EINVAL;
833 }
834
835 r = free_and_strdup(&arg_timezone, optarg);
836 if (r < 0)
837 return log_oom();
838
839 break;
840
841 case ARG_ROOT_PASSWORD:
842 r = free_and_strdup(&arg_root_password, optarg);
843 if (r < 0)
844 return log_oom();
845 break;
846
847 case ARG_ROOT_PASSWORD_FILE:
848 arg_root_password = mfree(arg_root_password);
849
850 r = read_one_line_file(optarg, &arg_root_password);
851 if (r < 0)
852 return log_error_errno(r, "Failed to read %s: %m", optarg);
853
854 break;
855
856 case ARG_HOSTNAME:
857 if (!hostname_is_valid(optarg, true)) {
858 log_error("Host name %s is not valid.", optarg);
859 return -EINVAL;
860 }
861
862 hostname_cleanup(optarg);
863 r = free_and_strdup(&arg_hostname, optarg);
864 if (r < 0)
865 return log_oom();
866
867 break;
868
869 case ARG_MACHINE_ID:
870 if (sd_id128_from_string(optarg, &arg_machine_id) < 0) {
871 log_error("Failed to parse machine id %s.", optarg);
872 return -EINVAL;
873 }
874
875 break;
876
877 case ARG_PROMPT:
878 arg_prompt_locale = arg_prompt_keymap = arg_prompt_timezone = arg_prompt_hostname = arg_prompt_root_password = true;
879 break;
880
881 case ARG_PROMPT_LOCALE:
882 arg_prompt_locale = true;
883 break;
884
885 case ARG_PROMPT_KEYMAP:
886 arg_prompt_keymap = true;
887 break;
888
889 case ARG_PROMPT_TIMEZONE:
890 arg_prompt_timezone = true;
891 break;
892
893 case ARG_PROMPT_HOSTNAME:
894 arg_prompt_hostname = true;
895 break;
896
897 case ARG_PROMPT_ROOT_PASSWORD:
898 arg_prompt_root_password = true;
899 break;
900
901 case ARG_COPY:
902 arg_copy_locale = arg_copy_keymap = arg_copy_timezone = arg_copy_root_password = true;
903 break;
904
905 case ARG_COPY_LOCALE:
906 arg_copy_locale = true;
907 break;
908
909 case ARG_COPY_KEYMAP:
910 arg_copy_keymap = true;
911 break;
912
913 case ARG_COPY_TIMEZONE:
914 arg_copy_timezone = true;
915 break;
916
917 case ARG_COPY_ROOT_PASSWORD:
918 arg_copy_root_password = true;
919 break;
920
921 case ARG_SETUP_MACHINE_ID:
922
923 r = sd_id128_randomize(&arg_machine_id);
924 if (r < 0)
925 return log_error_errno(r, "Failed to generate randomized machine ID: %m");
926
927 break;
928
929 case '?':
930 return -EINVAL;
931
932 default:
933 assert_not_reached("Unhandled option");
934 }
935
936 return 1;
937 }
938
939 int main(int argc, char *argv[]) {
940 bool enabled;
941 int r;
942
943 r = parse_argv(argc, argv);
944 if (r <= 0)
945 goto finish;
946
947 log_set_target(LOG_TARGET_AUTO);
948 log_parse_environment();
949 log_open();
950
951 umask(0022);
952
953 r = proc_cmdline_get_bool("systemd.firstboot", &enabled);
954 if (r < 0) {
955 log_error_errno(r, "Failed to parse systemd.firstboot= kernel command line argument, ignoring.");
956 goto finish;
957 }
958 if (r > 0 && !enabled) {
959 r = 0; /* disabled */
960 goto finish;
961 }
962
963 r = process_locale();
964 if (r < 0)
965 goto finish;
966
967 r = process_keymap();
968 if (r < 0)
969 goto finish;
970
971 r = process_timezone();
972 if (r < 0)
973 goto finish;
974
975 r = process_hostname();
976 if (r < 0)
977 goto finish;
978
979 r = process_machine_id();
980 if (r < 0)
981 goto finish;
982
983 r = process_root_password();
984 if (r < 0)
985 goto finish;
986
987 finish:
988 free(arg_root);
989 free(arg_locale);
990 free(arg_locale_messages);
991 free(arg_keymap);
992 free(arg_timezone);
993 free(arg_hostname);
994 string_erase(arg_root_password);
995 free(arg_root_password);
996
997 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
998 }