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