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