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