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