]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/main.c
installer: Update translations
[ipfire-2.x.git] / src / installer / main.c
CommitLineData
d6aaa55d
MT
1/* SmoothWall install program.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 * (c) Lawrence Manning, 2001
f9cc0d70 7 * Contains main entry point, and misc functions.6
d6aaa55d 8 *
d6aaa55d 9 */
335c5bd1 10#define _GNU_SOURCE
10bc6f06 11
f0fa1795
MT
12#include <assert.h>
13#include <errno.h>
07d6f947 14#include <libsmooth.h>
b83b8f70 15#include <stdio.h>
f0fa1795
MT
16#include <stdlib.h>
17#include <string.h>
18#include <sys/mount.h>
19
20#include "hw.h"
5315fae6
MT
21
22// Translation
23#include <libintl.h>
24#define _(x) dgettext("installer", x)
25
68561214 26#define INST_FILECOUNT 21000
918546e2 27#define LICENSE_FILE "/cdrom/COPYING"
3e1145e1 28#define SOURCE_TEMPFILE "/tmp/downloads/image.iso"
d6aaa55d 29
d6aaa55d
MT
30extern char url[STRING_SIZE];
31
d7dd283b
MT
32static int newtChecklist(const char* title, const char* message,
33 unsigned int width, unsigned int height, unsigned int num_entries,
34 const char** entries, int* states) {
35 int ret;
36 const int list_height = 4;
37
38 char cbstates[num_entries];
39
40 for (unsigned int i = 0; i < num_entries; i++) {
41 cbstates[i] = states[i] ? '*' : ' ';
42 }
43
44 newtCenteredWindow(width, height, title);
45
46 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6 - list_height,
47 NEWT_FLAG_WRAP);
48 newtTextboxSetText(textbox, message);
49
50 int top = newtTextboxGetNumLines(textbox) + 2;
51
52 newtComponent form = newtForm(NULL, NULL, 0);
53
54 newtComponent sb = NULL;
55 if (list_height < num_entries) {
56 sb = newtVerticalScrollbar(
57 width - 4, top + 1, list_height,
58 NEWT_COLORSET_CHECKBOX, NEWT_COLORSET_ACTCHECKBOX);
59
60 newtFormAddComponent(form, sb);
61 }
62
63 newtComponent subform = newtForm(sb, NULL, 0);
64 newtFormSetBackground(subform, NEWT_COLORSET_CHECKBOX);
65
66 newtFormSetHeight(subform, list_height);
67 newtFormSetWidth(subform, width - 10);
68
69 for (unsigned int i = 0; i < num_entries; i++) {
70 newtComponent cb = newtCheckbox(4, top + i, entries[i], cbstates[i],
71 NULL, &cbstates[i]);
72
73 newtFormAddComponent(subform, cb);
74 }
75
76 newtFormAddComponents(form, textbox, subform, NULL);
77
5315fae6
MT
78 newtComponent btn_okay = newtButton((width - 18) / 3, height - 4, _("OK"));
79 newtComponent btn_cancel = newtButton((width - 18) / 3 * 2 + 9, height - 4, _("Cancel"));
d7dd283b
MT
80 newtFormAddComponents(form, btn_okay, btn_cancel, NULL);
81
82 newtComponent answer = newtRunForm(form);
83
84 if ((answer == NULL) || (answer == btn_cancel)) {
85 ret = -1;
86 } else {
87 ret = 0;
88
89 for (unsigned int i = 0; i < num_entries; i++) {
90 states[i] = (cbstates[i] != ' ');
91
92 if (states[i])
93 ret++;
94 }
95 }
96
97 newtFormDestroy(form);
98 newtPopWindow();
99
100 return ret;
101}
102
103static int newtWinOkCancel(const char* title, const char* message, int width, int height,
104 const char* btn_txt_ok, const char* btn_txt_cancel) {
105 int ret = 1;
106
8f6e4298
MT
107 unsigned int btn_width_ok = strlen(btn_txt_ok);
108 unsigned int btn_width_cancel = strlen(btn_txt_cancel);
109
110 // Maybe make the box wider to fix both buttons inside
111 unsigned int min_width = btn_width_ok + btn_width_cancel + 5;
112 if (width < min_width)
113 width = min_width;
114
115 unsigned int btn_pos_ok = (width / 3) - (btn_width_ok / 2) - 1;
116 unsigned int btn_pos_cancel = (width * 2 / 3) - (btn_width_cancel / 2) - 1;
117
118 // Move buttons a bit if they overlap
119 while ((btn_pos_ok + btn_width_ok + 5) > btn_pos_cancel) {
120 // Move the cancel button to the right if there is enough space left
121 if ((btn_pos_cancel + btn_width_cancel + 2) < width) {
122 ++btn_pos_cancel;
123 continue;
124 }
125
126 // Move the OK button to the left if possible
127 if (btn_pos_ok > 1) {
128 --btn_pos_ok;
129 continue;
130 }
131
132 // If they still overlap, we cannot fix the situtation
133 // and break. Should actually never get here, because we
134 // adjust the width of the window earlier.
135 break;
136 }
137
d7dd283b
MT
138 newtCenteredWindow(width, height, title);
139
140 newtComponent form = newtForm(NULL, NULL, 0);
141
142 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6, NEWT_FLAG_WRAP);
143 newtTextboxSetText(textbox, message);
144 newtFormAddComponent(form, textbox);
145
8f6e4298
MT
146 newtComponent btn_ok = newtButton(btn_pos_ok, height - 4, btn_txt_ok);
147 newtComponent btn_cancel = newtButton(btn_pos_cancel, height - 4, btn_txt_cancel);
d7dd283b
MT
148
149 newtFormAddComponents(form, btn_ok, btn_cancel, NULL);
150
151 newtComponent answer = newtRunForm(form);
152
153 if (answer == btn_ok) {
154 ret = 0;
155 }
156
157 newtFormDestroy(form);
158 newtPopWindow();
159
160 return ret;
161}
162
bd5e7c29
MT
163static int newtLicenseBox(const char* title, const char* text, int width, int height) {
164 int ret = 1;
165
166 newtCenteredWindow(width, height, title);
167
168 newtComponent form = newtForm(NULL, NULL, 0);
169
170 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 7,
171 NEWT_FLAG_WRAP|NEWT_FLAG_SCROLL);
172 newtTextboxSetText(textbox, text);
173 newtFormAddComponent(form, textbox);
174
175 char choice;
5315fae6 176 newtComponent checkbox = newtCheckbox(3, height - 3, _("I accept this license"),
bd5e7c29
MT
177 ' ', " *", &choice);
178
5315fae6 179 newtComponent btn = newtButton(width - 15, height - 4, _("OK"));
bd5e7c29
MT
180
181 newtFormAddComponents(form, checkbox, btn, NULL);
182
183 newtComponent answer = newtRunForm(form);
184 if (answer == btn && choice == '*')
185 ret = 0;
186
187 newtFormDestroy(form);
188 newtPopWindow();
189
190 return ret;
191}
192
335c5bd1 193int write_lang_configs(char* lang) {
5315fae6
MT
194 struct keyvalue *kv = initkeyvalues();
195
196 /* default stuff for main/settings. */
197 replacekeyvalue(kv, "LANGUAGE", lang);
198 replacekeyvalue(kv, "HOSTNAME", SNAME);
199 replacekeyvalue(kv, "THEME", "ipfire");
200 writekeyvalues(kv, "/harddisk" CONFIG_ROOT "/main/settings");
201 freekeyvalues(kv);
202
203 return 1;
204}
205
b83b8f70
MT
206static char* get_system_release() {
207 char system_release[STRING_SIZE] = "\0";
208
209 FILE* f = fopen("/etc/system-release", "r");
210 if (f) {
211 fgets(system_release, sizeof(system_release), f);
212 fclose(f);
213 }
214
215 return strdup(system_release);
216}
217
218static char* center_string(const char* str, int width) {
219 unsigned int str_len = strlen(str);
220
221 unsigned int indent_length = (width - str_len) / 2;
222 char indent[indent_length + 1];
223
224 for (unsigned int i = 0; i < indent_length; i++) {
225 indent[i] = ' ';
226 }
227 indent[indent_length] = '\0';
228
229 char* string = NULL;
230 if (asprintf(&string, "%s%s", indent, str) < 0)
231 return NULL;
232
233 return string;
234}
235
b097fdd6 236#define DEFAULT_LANG "en_US.utf8"
8cc7ba90 237#define NUM_LANGS 13
37f3421a
MT
238
239static struct lang {
240 const char* code;
241 char* name;
242} languages[NUM_LANGS + 1] = {
8cc7ba90
MT
243 { "fa.utf8", "فارسی (Persian)" },
244 { "da.utf8", "Dansk (Danish)" },
245 { "es.utf8", "Español (Spanish)" },
246 { "en.utf8", "English" },
247 { "fr.utf8", "Français (French)" },
248 { "hr.utf8", "Hrvatski (Croatian)" },
249 { "it.utf8", "Italiano (Italian)" },
250 { "de.utf8", "Deutsch (German)" },
251 { "nl.utf8", "Nederlands (Dutch)" },
252 { "pl.utf8", "Polski (Polish)" },
253 { "pt.utf8", "Portuguese (Brasil)" },
254 { "ru.utf8", "Русский (Russian)" },
255 { "tr.utf8", "Türkçe (Turkish)" },
37f3421a
MT
256 { NULL, NULL },
257};
258
211c7984 259static struct config {
2404450b 260 int unattended;
211c7984
MT
261 int serial_console;
262 int require_networking;
c0511f3a 263 int perform_download;
a8fca245 264 int disable_swap;
c0511f3a 265 char download_url[STRING_SIZE];
681c9bbe 266 char postinstall[STRING_SIZE];
b097fdd6 267 char* language;
211c7984 268} config = {
2404450b 269 .unattended = 0,
211c7984
MT
270 .serial_console = 0,
271 .require_networking = 0,
c0511f3a 272 .perform_download = 0,
a8fca245 273 .disable_swap = 0,
c0511f3a 274 .download_url = DOWNLOAD_URL,
681c9bbe 275 .postinstall = "\0",
b097fdd6 276 .language = DEFAULT_LANG,
211c7984
MT
277};
278
2404450b 279static void parse_command_line(struct config* c) {
c0511f3a 280 char buffer[STRING_SIZE];
2404450b
MT
281 char cmdline[STRING_SIZE];
282
283 FILE* f = fopen("/proc/cmdline", "r");
284 if (!f)
285 return;
286
287 int r = fread(&cmdline, 1, sizeof(cmdline) - 1, f);
288 if (r > 0) {
c0511f3a 289 char* token = strtok(cmdline, " ");
2404450b
MT
290
291 while (token) {
c0511f3a 292 strncpy(buffer, token, sizeof(buffer));
335c5bd1 293 char* val = buffer;
c0511f3a
MT
294 char* key = strsep(&val, "=");
295
2404450b 296 // serial console
bb75bc3b 297 if ((strcmp(key, "console") == 0) && (strncmp(val, "ttyS", 4) == 0))
2404450b
MT
298 c->serial_console = 1;
299
300 // enable networking?
301 else if (strcmp(token, "installer.net") == 0)
302 c->require_networking = 1;
303
304 // unattended mode
305 else if (strcmp(token, "installer.unattended") == 0)
306 c->unattended = 1;
307
a8fca245
MT
308 // disable swap
309 else if (strcmp(token, "installer.disable-swap") == 0)
310 c->disable_swap = 1;
311
c0511f3a
MT
312 // download url
313 else if (strcmp(key, "installer.download-url") == 0) {
335c5bd1 314 strncpy(c->download_url, val, sizeof(c->download_url));
c0511f3a
MT
315 c->perform_download = 1;
316
681c9bbe
MT
317 // Require networking for the download
318 c->require_networking = 1;
319
320 // postinstall script
321 } else if (strcmp(key, "installer.postinstall") == 0) {
322 strncpy(c->postinstall, val, sizeof(c->postinstall));
323
c0511f3a
MT
324 // Require networking for the download
325 c->require_networking = 1;
326 }
327
2404450b
MT
328 token = strtok(NULL, " ");
329 }
330 }
331
332 fclose(f);
333}
334
f0fa1795
MT
335int main(int argc, char *argv[]) {
336 struct hw* hw = hw_init();
46b56e20 337 const char* logfile = NULL;
e0bbaf87 338
b83b8f70
MT
339 // Read /etc/system-release
340 char* system_release = get_system_release();
341
e0bbaf87
AF
342 char discl_msg[40000] = "Disclaimer\n";
343
f0fa1795 344 char* sourcedrive = NULL;
72d80898 345 int rc = 0;
d6aaa55d 346 char commandstring[STRING_SIZE];
d6aaa55d 347 int choice;
d7dd283b 348 char message[STRING_SIZE];
d6aaa55d
MT
349 char title[STRING_SIZE];
350 int allok = 0;
335c5bd1
MT
351 FILE *copying;
352
353 setlocale(LC_ALL, "");
354 sethostname(SNAME, 10);
72d80898 355
d6aaa55d 356 /* Log file/terminal stuff. */
46b56e20
MT
357 FILE* flog = NULL;
358 if (argc >= 2) {
359 logfile = argv[1];
360
361 if (!(flog = fopen(logfile, "w+")))
d6aaa55d 362 return 0;
46b56e20 363 } else {
d6aaa55d 364 return 0;
46b56e20
MT
365 }
366
d6aaa55d
MT
367 fprintf(flog, "Install program started.\n");
368
369 newtInit();
370 newtCls();
371
b83b8f70
MT
372 // Determine the size of the screen
373 int screen_cols = 0;
374 int screen_rows = 0;
375
376 newtGetScreenSize(&screen_cols, &screen_rows);
377
378 // Draw title
379 char* roottext = center_string(system_release, screen_cols);
380 newtDrawRootText(0, 0, roottext);
381
ae5edf16 382 snprintf(title, sizeof(title), "%s - %s", NAME, SLOGAN);
7ea444c8 383
2404450b
MT
384 // Parse parameters from the kernel command line
385 parse_command_line(&config);
a3e135c8 386
2404450b
MT
387 if (config.unattended) {
388 splashWindow(title, _("Warning: Unattended installation will start in 10 seconds..."), 10);
d6aaa55d 389 }
0db33b56 390
7ea444c8 391 // Load common modules
46b56e20
MT
392 mysystem(logfile, "/sbin/modprobe vfat"); // USB key
393 hw_stop_all_raid_arrays(logfile);
4a0d9bef 394
2404450b 395 if (!config.unattended) {
37f3421a
MT
396 // Language selection
397 char* langnames[NUM_LANGS + 1];
72d80898 398
37f3421a 399 for (unsigned int i = 0; i < NUM_LANGS; i++) {
b097fdd6 400 if (strcmp(languages[i].code, DEFAULT_LANG) == 0)
37f3421a
MT
401 choice = i;
402
403 langnames[i] = languages[i].name;
404 }
405 langnames[NUM_LANGS] = NULL;
406
a3e135c8 407 rc = newtWinMenu(_("Language selection"), _("Select the language you wish to use for the installation."),
37f3421a
MT
408 50, 5, 5, 8, langnames, &choice, _("OK"), NULL);
409
410 assert(choice <= NUM_LANGS);
411
412 fprintf(flog, "Selected language: %s (%s)\n", languages[choice].name, languages[choice].code);
b097fdd6 413 config.language = languages[choice].code;
d04d4d58 414
b097fdd6
MT
415 setlocale(LC_ALL, config.language);
416 setenv("LANGUAGE", config.language, 1);
37f3421a 417 }
3d6e1202 418
6a91a5a7
MT
419 // Set helpline
420 char* helpline = NULL;
421 if (config.unattended)
422 helpline = center_string(_("Unattended mode"), screen_cols);
423 else
424 helpline = center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols);
425
b83b8f70 426 newtPushHelpLine(helpline);
0db33b56 427
2404450b 428 if (!config.unattended) {
5315fae6 429 snprintf(message, sizeof(message),
ae5edf16 430 _("Welcome to the %s installation program.\n\n"
5315fae6
MT
431 "Selecting Cancel on any of the following screens will reboot the computer."), NAME);
432 newtWinMessage(title, _("Start installation"), message);
e0bbaf87
AF
433 }
434
f0fa1795
MT
435 /* Search for a source drive that holds the right
436 * version of the image we are going to install. */
c0511f3a
MT
437 if (!config.perform_download) {
438 sourcedrive = hw_find_source_medium(hw);
439 fprintf(flog, "Source drive: %s\n", sourcedrive);
440 }
7d114284
MT
441
442 /* If we could not find a source drive, we will try
443 * downloading the install image */
c0511f3a
MT
444 if (!sourcedrive)
445 config.perform_download = 1;
446
447 if (config.perform_download) {
2404450b 448 if (!config.unattended) {
35853bb4
MT
449 // Show the right message to the user
450 char reason[STRING_SIZE];
c0511f3a 451 if (config.perform_download) {
35853bb4
MT
452 snprintf(reason, sizeof(reason),
453 _("The installer will now try downloading the installation image."));
454 } else {
455 snprintf(reason, sizeof(reason),
456 _("No source drive could be found.\n\n"
457 "You can try downloading the required installation image."));
458 }
459 snprintf(message, sizeof(message), "%s %s", reason,
460 _("Please make sure to connect your machine to a network and "
461 "the installer will try connect to acquire an IP address."));
462
463 rc = newtWinOkCancel(title, message, 55, 12,
464 _("Download installation image"), _("Cancel"));
7d114284
MT
465
466 if (rc != 0)
467 goto EXIT;
468 }
35853bb4 469
c0511f3a 470 // Make sure that we enable networking before download
211c7984 471 config.require_networking = 1;
7d114284
MT
472 }
473
474 // Try starting the networking if we require it
211c7984 475 if (config.require_networking) {
35853bb4
MT
476 while (1) {
477 statuswindow(60, 4, title, _("Trying to start networking (DHCP)..."));
7d114284 478
35853bb4
MT
479 rc = hw_start_networking(logfile);
480 newtPopWindow();
7d114284 481
35853bb4
MT
482 // Networking was successfully started
483 if (rc == 0) {
484 break;
485
486 // An error happened, ask the user what to do
487 } else {
488 rc = newtWinOkCancel(title, _("Networking could not be started "
489 "but is required to go on with the installation.\n\n"
490 "Please connect your machine to a network with a "
491 "DHCP server and retry."), 50, 10, _("Retry"), _("Cancel"));
492
493 if (rc)
494 goto EXIT;
495 }
0f680bcc 496 }
f0fa1795 497
7d114284 498 // Download the image if required
c0511f3a
MT
499 if (config.perform_download) {
500 fprintf(flog, "Download URL: %s\n", config.download_url);
501 snprintf(commandstring, sizeof(commandstring), "/usr/bin/downloadsource.sh %s %s",
502 SOURCE_TEMPFILE, config.download_url);
503
504 while (!sourcedrive) {
505 rc = runcommandwithstatus(commandstring, title, _("Downloading installation image..."), logfile);
506
507 FILE* f = fopen(SOURCE_TEMPFILE, "r");
508 if (f) {
3e1145e1 509 sourcedrive = strdup(SOURCE_TEMPFILE);
c0511f3a
MT
510 fclose(f);
511 } else {
512 char reason[STRING_SIZE] = "-";
513 if (rc == 2)
514 snprintf(reason, sizeof(STRING_SIZE), _("MD5 checksum mismatch"));
515
516 snprintf(message, sizeof(message),
517 _("The installation image could not be downloaded.\n Reason: %s\n\n%s"),
518 reason, config.download_url);
519
520 rc = newtWinOkCancel(title, message, 75, 12, _("Retry"), _("Cancel"));
521 if (rc)
522 goto EXIT;
523 }
7d114284 524 }
7d114284 525 }
72d80898 526 }
0f680bcc 527
f0fa1795
MT
528 assert(sourcedrive);
529
25fcce25 530 int r = hw_mount(sourcedrive, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
f0fa1795 531 if (r) {
c0511f3a
MT
532 snprintf(message, sizeof(message), _("Could not mount %s to %s:\n %s\n"),
533 sourcedrive, SOURCE_MOUNT_PATH, strerror(errno));
534 errorbox(message);
535 goto EXIT;
f0fa1795 536 }
918546e2 537
2404450b 538 if (!config.unattended) {
918546e2
MT
539 // Read the license file.
540 if (!(copying = fopen(LICENSE_FILE, "r"))) {
541 sprintf(discl_msg, "Could not open license file: %s\n", LICENSE_FILE);
335c5bd1 542 fprintf(flog, "%s", discl_msg);
918546e2
MT
543 } else {
544 fread(discl_msg, 1, 40000, copying);
545 fclose(copying);
546
ae5edf16 547 if (newtLicenseBox(_("License Agreement"), discl_msg, 75, 20)) {
5315fae6 548 errorbox(_("License not accepted!"));
bd5e7c29 549
918546e2
MT
550 goto EXIT;
551 }
552 }
553 }
554
d7dd283b 555 int part_type = HW_PART_TYPE_NORMAL;
ee78a5ef 556
d7dd283b 557 // Scan for disks to install on.
ee00d203 558 struct hw_disk** disks = hw_find_disks(hw, sourcedrive);
d7dd283b
MT
559
560 struct hw_disk** selected_disks = NULL;
561 unsigned int num_selected_disks = 0;
562
563 // Check how many disks have been found and what
564 // we can do with them.
335c5bd1 565 unsigned int num_disks = hw_count_disks((const struct hw_disk**)disks);
d7dd283b
MT
566
567 while (1) {
568 // no harddisks found
569 if (num_disks == 0) {
5315fae6 570 errorbox(_("No hard disk found."));
d7dd283b
MT
571 goto EXIT;
572
573 // exactly one disk has been found
a3e135c8
MT
574 // or if we are running in unattended mode, we will select
575 // the first disk and go with that one
2404450b 576 } else if ((num_disks == 1) || (config.unattended && num_disks >= 1)) {
335c5bd1 577 selected_disks = hw_select_first_disk((const struct hw_disk**)disks);
d7dd283b
MT
578
579 // more than one usable disk has been found and
580 // the user needs to choose what to do with them
581 } else {
582 const char* disk_names[num_disks];
583 int disk_selection[num_disks];
584
585 for (unsigned int i = 0; i < num_disks; i++) {
335c5bd1 586 disk_names[i] = disks[i]->description;
d7dd283b
MT
587 disk_selection[i] = 0;
588 }
589
590 while (!selected_disks) {
5315fae6
MT
591 rc = newtChecklist(_("Disk Selection"),
592 _("Select the disk(s) you want to install IPFire on. "
593 "First those will be partitioned, and then the partitions will have a filesystem put on them.\n\n"
594 "ALL DATA ON THE DISK WILL BE DESTROYED."),
d7dd283b
MT
595 50, 20, num_disks, disk_names, disk_selection);
596
597 // Error
598 if (rc < 0) {
599 goto EXIT;
600
601 // Nothing has been selected
602 } else if (rc == 0) {
5315fae6
MT
603 errorbox(_("No disk has been selected.\n\n"
604 "Please select one or more disks you want to install IPFire on."));
d7dd283b
MT
605
606 } else {
607 selected_disks = hw_select_disks(disks, disk_selection);
608 }
609 }
610 }
611
a3e135c8
MT
612 // Don't print the auto-selected harddisk setup in
613 // unattended mode.
2404450b 614 if (config.unattended)
a3e135c8
MT
615 break;
616
335c5bd1 617 num_selected_disks = hw_count_disks((const struct hw_disk**)selected_disks);
d7dd283b
MT
618
619 if (num_selected_disks == 1) {
5315fae6
MT
620 snprintf(message, sizeof(message),
621 _("The installation program will now prepare the chosen harddisk:\n\n %s\n\n"
622 "Do you agree to continue?"), (*selected_disks)->description);
623 rc = newtWinOkCancel(_("Disk Setup"), message, 50, 10,
624 _("Delete all data"), _("Cancel"));
d7dd283b
MT
625
626 if (rc == 0)
56b548f1 627 break;
d7dd283b
MT
628
629 } else if (num_selected_disks == 2) {
5315fae6
MT
630 snprintf(message, sizeof(message),
631 _("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
5a3b3718 632 "Do you agree to continue?"), selected_disks[0]->description, selected_disks[1]->description);
5315fae6
MT
633 rc = newtWinOkCancel(_("RAID Setup"), message, 50, 14,
634 _("Delete all data"), _("Cancel"));
d7dd283b
MT
635
636 if (rc == 0) {
637 part_type = HW_PART_TYPE_RAID1;
638
ee78a5ef 639 break;
d7dd283b
MT
640 }
641
642 // Currently not supported
643 } else {
77192e97 644 errorbox(_("Your disk configuration is currently not supported."));
ee43f517 645 fprintf(flog, "Num disks selected: %d\n", num_selected_disks);
aee3027d 646 }
ee78a5ef 647
d7dd283b
MT
648 if (selected_disks) {
649 hw_free_disks(selected_disks);
650 selected_disks = NULL;
651 }
212cab4f 652 }
212cab4f 653
d7dd283b 654 hw_free_disks(disks);
72d80898 655
a8fca245 656 struct hw_destination* destination = hw_make_destination(part_type, selected_disks, config.disable_swap);
5057b611 657
25fcce25 658 if (!destination) {
5315fae6 659 errorbox(_("Your harddisk is too small."));
cd8dd8dd 660 goto EXIT;
25fcce25 661 }
cd8dd8dd 662
25fcce25 663 fprintf(flog, "Destination drive: %s\n", destination->path);
48d6a112
MT
664 fprintf(flog, " bootldr: %s (%lluMB)\n", destination->part_bootldr, BYTES2MB(destination->size_bootldr));
665 fprintf(flog, " boot : %s (%lluMB)\n", destination->part_boot, BYTES2MB(destination->size_boot));
666 fprintf(flog, " swap : %s (%lluMB)\n", destination->part_swap, BYTES2MB(destination->size_swap));
667 fprintf(flog, " root : %s (%lluMB)\n", destination->part_root, BYTES2MB(destination->size_root));
668 fprintf(flog, " data : %s (%lluMB)\n", destination->part_data, BYTES2MB(destination->size_data));
5be66d81 669 fprintf(flog, "Memory : %lluMB\n", BYTES2MB(hw_memory()));
72d80898 670
25fcce25 671 // Warn the user if there is not enough space to create a swap partition
a8fca245
MT
672 if (!config.unattended) {
673 if (!config.disable_swap && !*destination->part_swap) {
674 rc = newtWinChoice(title, _("OK"), _("Cancel"),
675 _("Your harddisk is very small, but you can continue without a swap partition."));
4f26ff7f 676
a8fca245
MT
677 if (rc != 1)
678 goto EXIT;
679 }
72d80898 680 }
9a3d3d95 681
25fcce25 682 // Filesystem selection
2404450b 683 if (!config.unattended) {
25fcce25
MT
684 struct filesystems {
685 int fstype;
a8fca245 686 char* description;
25fcce25 687 } filesystems[] = {
5315fae6
MT
688 { HW_FS_EXT4, _("ext4 Filesystem") },
689 { HW_FS_EXT4_WO_JOURNAL, _("ext4 Filesystem without journal") },
690 { HW_FS_XFS, _("XFS Filesystem") },
691 { HW_FS_REISERFS, _("ReiserFS Filesystem") },
25fcce25
MT
692 { 0, NULL },
693 };
694 unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
695
696 char* fs_names[num_filesystems];
697 int fs_choice = 0;
698 for (unsigned int i = 0; i < num_filesystems; i++) {
699 if (HW_FS_DEFAULT == filesystems[i].fstype)
700 fs_choice = i;
701
a8fca245 702 fs_names[i] = filesystems[i].description;
25fcce25 703 }
72d80898 704
5315fae6
MT
705 rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
706 50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
25fcce25 707
eb3ff46e 708 if (rc == 2)
72d80898 709 goto EXIT;
139cb500
MT
710
711 destination->filesystem = filesystems[fs_choice].fstype;
72d80898
MT
712 }
713
4a0d9bef
MT
714 // Setting up RAID if needed.
715 if (destination->is_raid) {
5315fae6 716 statuswindow(60, 4, title, _("Building RAID..."));
4a0d9bef 717
46b56e20 718 rc = hw_setup_raid(destination, logfile);
4a0d9bef 719 if (rc) {
5315fae6 720 errorbox(_("Unable to build the RAID."));
4a0d9bef
MT
721 goto EXIT;
722 }
723
724 newtPopWindow();
d78fffa0
MT
725 } else {
726 // We will have to destroy all RAID setups that may have
727 // been on the devices that we want to use now.
728 hw_destroy_raid_superblocks(destination, logfile);
4a0d9bef
MT
729 }
730
25fcce25 731 // Execute the partitioning...
5315fae6 732 statuswindow(60, 4, title, _("Partitioning disk..."));
72d80898 733
46b56e20 734 rc = hw_create_partitions(destination, logfile);
25fcce25 735 if (rc) {
5315fae6 736 errorbox(_("Unable to partition the disk."));
72d80898 737 goto EXIT;
9607771a 738 }
72d80898 739
25fcce25 740 newtPopWindow();
72d80898 741
25fcce25 742 // Execute the formatting...
5315fae6 743 statuswindow(60, 4, title, _("Creating filesystems..."));
b8e2d108 744
46b56e20 745 rc = hw_create_filesystems(destination, logfile);
25fcce25 746 if (rc) {
5315fae6 747 errorbox(_("Unable to create filesystems."));
72d80898
MT
748 goto EXIT;
749 }
25fcce25
MT
750
751 rc = hw_mount_filesystems(destination, DESTINATION_MOUNT_PATH);
752 if (rc) {
5315fae6 753 errorbox(_("Unable to mount filesystems."));
72d80898 754 goto EXIT;
9607771a 755 }
c78a77eb 756
25fcce25
MT
757 newtPopWindow();
758
759 // Extract files...
03d956be 760 snprintf(commandstring, STRING_SIZE,
5315fae6
MT
761 "/bin/tar -C /harddisk -xvf /cdrom/distro.img --lzma 2>/dev/null");
762
edd536b6 763 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
46b56e20 764 _("Installing the system..."), logfile)) {
5315fae6 765 errorbox(_("Unable to install the system."));
d6aaa55d
MT
766 goto EXIT;
767 }
7f69d8a4
MT
768
769 // Write fstab
770 rc = hw_write_fstab(destination);
771 if (rc) {
772 fprintf(flog, "Could not write /etc/fstab\n");
773 goto EXIT;
774 }
775
406f019f 776 /* Save language und local settings */
b097fdd6 777 write_lang_configs(config.language);
d6aaa55d 778
330345c2 779 /* Build cache lang file */
6cf9e770 780 snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
46b56e20 781 if (runcommandwithstatus(commandstring, title, _("Installing the language cache..."), logfile)) {
5315fae6 782 errorbox(_("Unable to install the language cache."));
330345c2
MT
783 goto EXIT;
784 }
785
f5007e9c 786 // Installing bootloader...
5315fae6 787 statuswindow(60, 4, title, _("Installing the bootloader..."));
423400cf 788
5faa66cf 789 /* Serial console ? */
211c7984 790 if (config.serial_console) {
5faa66cf 791 /* grub */
9dd16c6d
MT
792 FILE* f = fopen(DESTINATION_MOUNT_PATH "/etc/default/grub", "a");
793 if (!f) {
794 errorbox(_("Unable to open /etc/default/grub for writing."));
795 goto EXIT;
796 }
5faa66cf 797
7f6e0425 798 fprintf(f, "GRUB_TERMINAL=\"serial\"\n");
9dd16c6d
MT
799 fprintf(f, "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=%d\"\n", SERIAL_BAUDRATE);
800 fclose(f);
801
802 replace(DESTINATION_MOUNT_PATH "/etc/default/grub", "panic=10", "panic=10 console=ttyS0,115200n8");
803
804 /* inittab */
5faa66cf
AF
805 replace("/harddisk/etc/inittab", "1:2345:respawn:", "#1:2345:respawn:");
806 replace("/harddisk/etc/inittab", "2:2345:respawn:", "#2:2345:respawn:");
807 replace("/harddisk/etc/inittab", "3:2345:respawn:", "#3:2345:respawn:");
808 replace("/harddisk/etc/inittab", "4:2345:respawn:", "#4:2345:respawn:");
809 replace("/harddisk/etc/inittab", "5:2345:respawn:", "#5:2345:respawn:");
810 replace("/harddisk/etc/inittab", "6:2345:respawn:", "#6:2345:respawn:");
811 replace("/harddisk/etc/inittab", "#7:2345:respawn:", "7:2345:respawn:");
812 }
813
9dd16c6d
MT
814 rc = hw_install_bootloader(destination, logfile);
815 if (rc) {
816 errorbox(_("Unable to install the bootloader."));
817 goto EXIT;
818 }
819
820 newtPopWindow();
821
dfa59dbd 822 /* Set marker that the user has already accepted the gpl */
46b56e20 823 mysystem(logfile, "/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
dfa59dbd 824
c25a0343 825 /* Copy restore file from cdrom */
38c6822d
MT
826 char* backup_file = hw_find_backup_file(logfile, SOURCE_MOUNT_PATH);
827 if (backup_file) {
828 rc = 0;
2404450b 829 if (!config.unattended) {
38c6822d
MT
830 rc = newtWinOkCancel(title, _("A backup file has been found on the installation image.\n\n"
831 "Do you want to restore the backup?"), 50, 10, _("Yes"), _("No"));
832 }
833
834 if (rc == 0) {
835 rc = hw_restore_backup(logfile, backup_file, DESTINATION_MOUNT_PATH);
836
837 if (rc) {
838 errorbox(_("An error occured when the backup file was restored."));
839 goto EXIT;
840 }
841 }
842
843 free(backup_file);
c25a0343 844 }
2c9c458c 845
ade96ba8
MT
846 // Download and execute the postinstall script
847 if (*config.postinstall) {
848 snprintf(commandstring, sizeof(commandstring),
849 "/usr/bin/execute-postinstall.sh %s %s", DESTINATION_MOUNT_PATH, config.postinstall);
850
851 if (runcommandwithstatus(commandstring, title, _("Running post-install script..."), logfile)) {
852 errorbox(_("Post-install script failed."));
853 goto EXIT;
854 }
855 }
856
ddd32a5c 857 // Umount the destination drive
ade96ba8 858 statuswindow(60, 4, title, _("Umounting filesystems..."));
ddd32a5c 859
ade96ba8
MT
860 rc = hw_umount_filesystems(destination, DESTINATION_MOUNT_PATH);
861 if (rc) {
862 // Show an error message if filesystems could not be umounted properly
863 snprintf(message, sizeof(message),
864 _("Could not umount all filesystems successfully:\n\n %s"), strerror(errno));
865 errorbox(message);
866 goto EXIT;
867 }
ddd32a5c 868
2c9c458c
MT
869 // Umount source drive and eject
870 hw_umount(SOURCE_MOUNT_PATH);
871
3e1145e1
MT
872 // Free downloaded ISO image
873 if (strcmp(sourcedrive, SOURCE_TEMPFILE) == 0) {
874 rc = unlink(sourcedrive);
875 if (rc)
876 fprintf(flog, "Could not free downloaded ISO image: %s\n", sourcedrive);
877
878 // or eject real images
879 } else {
880 snprintf(commandstring, STRING_SIZE, "/usr/bin/eject %s", sourcedrive);
881 mysystem(logfile, commandstring);
882 }
ade96ba8 883 newtPopWindow();
3e1145e1 884
ade96ba8
MT
885 // Stop the RAID array if we are using RAID
886 if (destination->is_raid)
887 hw_stop_all_raid_arrays(logfile);
681c9bbe 888
ade96ba8
MT
889 // Show a short message that the installation went well and
890 // wait a moment so that all disk caches get flushed.
891 if (config.unattended) {
892 splashWindow(title, _("Unattended installation has finished. The system will be shutting down in a moment..."), 5);
681c9bbe 893
ade96ba8 894 } else {
ae5edf16
MT
895 snprintf(message, sizeof(message), _(
896 "%s was successfully installed!\n\n"
897 "Please remove any installation mediums from this system and hit the reboot button. "
898 "Once the system has restarted you will be asked to setup networking and system passwords. "
899 "After that, you should point your web browser at https://%s:444 (or what ever you name "
900 "your %s) for the web configuration console."), NAME, SNAME, NAME);
5315fae6 901 newtWinMessage(_("Congratulations!"), _("Reboot"), message);
73d9a908 902 }
cd8dd8dd 903
22b9e405 904 allok = 1;
edd536b6 905
d6aaa55d 906EXIT:
46b56e20 907 fprintf(flog, "Install program ended.\n");
ae5edf16
MT
908 fflush(flog);
909 fclose(flog);
d6aaa55d 910
ae5edf16
MT
911 if (!allok)
912 newtWinMessage(title, _("OK"), _("Setup has failed. Press Ok to reboot."));
3a1019f6
MT
913
914 newtFinished();
915
f0fa1795 916 // Free resources
3e1145e1
MT
917 if (system_release)
918 free(system_release);
919
920 if (roottext)
921 free(roottext);
922
923 if (helpline)
924 free(helpline);
925
926 if (sourcedrive)
927 free(sourcedrive);
b83b8f70 928
3e1145e1
MT
929 if (destination)
930 free(destination);
d7dd283b 931
46b56e20 932 hw_stop_all_raid_arrays(logfile);
4a0d9bef 933
d7dd283b
MT
934 if (selected_disks)
935 hw_free_disks(selected_disks);
936
3e1145e1
MT
937 if (hw)
938 hw_free(hw);
f0fa1795 939
25fcce25
MT
940 fcloseall();
941
f0a61a0a
MT
942 if (allok == 1)
943 return 0;
25fcce25 944
f0a61a0a 945 return 1;
d6aaa55d 946}