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