]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/main.c
installer: Allow to disable creation of swap space on command line
[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"
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
335c5bd1 166int write_lang_configs(char* lang) {
5315fae6
MT
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 209#define DEFAULT_LANG "English"
335c5bd1 210#define NUM_LANGS 10
37f3421a
MT
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 229static struct config {
2404450b 230 int unattended;
211c7984
MT
231 int serial_console;
232 int require_networking;
c0511f3a 233 int perform_download;
a8fca245 234 int disable_swap;
c0511f3a 235 char download_url[STRING_SIZE];
211c7984 236} config = {
2404450b 237 .unattended = 0,
211c7984
MT
238 .serial_console = 0,
239 .require_networking = 0,
c0511f3a 240 .perform_download = 0,
a8fca245 241 .disable_swap = 0,
c0511f3a 242 .download_url = DOWNLOAD_URL,
211c7984
MT
243};
244
2404450b 245static void parse_command_line(struct config* c) {
c0511f3a 246 char buffer[STRING_SIZE];
2404450b
MT
247 char cmdline[STRING_SIZE];
248
249 FILE* f = fopen("/proc/cmdline", "r");
250 if (!f)
251 return;
252
253 int r = fread(&cmdline, 1, sizeof(cmdline) - 1, f);
254 if (r > 0) {
c0511f3a 255 char* token = strtok(cmdline, " ");
2404450b
MT
256
257 while (token) {
c0511f3a 258 strncpy(buffer, token, sizeof(buffer));
335c5bd1 259 char* val = buffer;
c0511f3a
MT
260 char* key = strsep(&val, "=");
261
2404450b
MT
262 // serial console
263 if (strcmp(token, "console=ttyS0") == 0)
264 c->serial_console = 1;
265
266 // enable networking?
267 else if (strcmp(token, "installer.net") == 0)
268 c->require_networking = 1;
269
270 // unattended mode
271 else if (strcmp(token, "installer.unattended") == 0)
272 c->unattended = 1;
273
a8fca245
MT
274 // disable swap
275 else if (strcmp(token, "installer.disable-swap") == 0)
276 c->disable_swap = 1;
277
c0511f3a
MT
278 // download url
279 else if (strcmp(key, "installer.download-url") == 0) {
335c5bd1 280 strncpy(c->download_url, val, sizeof(c->download_url));
c0511f3a
MT
281 c->perform_download = 1;
282
283 // Require networking for the download
284 c->require_networking = 1;
285 }
286
2404450b
MT
287 token = strtok(NULL, " ");
288 }
289 }
290
291 fclose(f);
292}
293
f0fa1795
MT
294int main(int argc, char *argv[]) {
295 struct hw* hw = hw_init();
46b56e20 296 const char* logfile = NULL;
e0bbaf87 297
b83b8f70
MT
298 // Read /etc/system-release
299 char* system_release = get_system_release();
300
e0bbaf87
AF
301 char discl_msg[40000] = "Disclaimer\n";
302
f0fa1795 303 char* sourcedrive = NULL;
72d80898 304 int rc = 0;
d6aaa55d 305 char commandstring[STRING_SIZE];
d6aaa55d 306 int choice;
165295ab 307 char language[STRING_SIZE];
d7dd283b 308 char message[STRING_SIZE];
d6aaa55d
MT
309 char title[STRING_SIZE];
310 int allok = 0;
335c5bd1
MT
311 FILE *copying;
312
313 setlocale(LC_ALL, "");
314 sethostname(SNAME, 10);
72d80898 315
d6aaa55d 316 /* Log file/terminal stuff. */
46b56e20
MT
317 FILE* flog = NULL;
318 if (argc >= 2) {
319 logfile = argv[1];
320
321 if (!(flog = fopen(logfile, "w+")))
d6aaa55d 322 return 0;
46b56e20 323 } else {
d6aaa55d 324 return 0;
46b56e20
MT
325 }
326
d6aaa55d
MT
327 fprintf(flog, "Install program started.\n");
328
329 newtInit();
330 newtCls();
331
b83b8f70
MT
332 // Determine the size of the screen
333 int screen_cols = 0;
334 int screen_rows = 0;
335
336 newtGetScreenSize(&screen_cols, &screen_rows);
337
338 // Draw title
339 char* roottext = center_string(system_release, screen_cols);
340 newtDrawRootText(0, 0, roottext);
341
ae5edf16 342 snprintf(title, sizeof(title), "%s - %s", NAME, SLOGAN);
7ea444c8 343
2404450b
MT
344 // Parse parameters from the kernel command line
345 parse_command_line(&config);
a3e135c8 346
2404450b
MT
347 if (config.unattended) {
348 splashWindow(title, _("Warning: Unattended installation will start in 10 seconds..."), 10);
d6aaa55d 349 }
0db33b56 350
7ea444c8 351 // Load common modules
46b56e20
MT
352 mysystem(logfile, "/sbin/modprobe vfat"); // USB key
353 hw_stop_all_raid_arrays(logfile);
4a0d9bef 354
2404450b 355 if (!config.unattended) {
37f3421a
MT
356 // Language selection
357 char* langnames[NUM_LANGS + 1];
72d80898 358
37f3421a
MT
359 for (unsigned int i = 0; i < NUM_LANGS; i++) {
360 if (strcmp(languages[i].name, DEFAULT_LANG) == 0)
361 choice = i;
362
363 langnames[i] = languages[i].name;
364 }
365 langnames[NUM_LANGS] = NULL;
366
a3e135c8 367 rc = newtWinMenu(_("Language selection"), _("Select the language you wish to use for the installation."),
37f3421a
MT
368 50, 5, 5, 8, langnames, &choice, _("OK"), NULL);
369
370 assert(choice <= NUM_LANGS);
371
372 fprintf(flog, "Selected language: %s (%s)\n", languages[choice].name, languages[choice].code);
335c5bd1 373 snprintf(language, sizeof(language), "%s", languages[choice].code);
d04d4d58 374
165295ab
MT
375 setenv("LANGUAGE", language, 1);
376 setlocale(LC_ALL, language);
37f3421a 377 }
3d6e1202 378
b83b8f70
MT
379 char* helpline = center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols);
380 newtPushHelpLine(helpline);
0db33b56 381
2404450b 382 if (!config.unattended) {
5315fae6 383 snprintf(message, sizeof(message),
ae5edf16 384 _("Welcome to the %s installation program.\n\n"
5315fae6
MT
385 "Selecting Cancel on any of the following screens will reboot the computer."), NAME);
386 newtWinMessage(title, _("Start installation"), message);
e0bbaf87
AF
387 }
388
f0fa1795
MT
389 /* Search for a source drive that holds the right
390 * version of the image we are going to install. */
c0511f3a
MT
391 if (!config.perform_download) {
392 sourcedrive = hw_find_source_medium(hw);
393 fprintf(flog, "Source drive: %s\n", sourcedrive);
394 }
7d114284
MT
395
396 /* If we could not find a source drive, we will try
397 * downloading the install image */
c0511f3a
MT
398 if (!sourcedrive)
399 config.perform_download = 1;
400
401 if (config.perform_download) {
2404450b 402 if (!config.unattended) {
35853bb4
MT
403 // Show the right message to the user
404 char reason[STRING_SIZE];
c0511f3a 405 if (config.perform_download) {
35853bb4
MT
406 snprintf(reason, sizeof(reason),
407 _("The installer will now try downloading the installation image."));
408 } else {
409 snprintf(reason, sizeof(reason),
410 _("No source drive could be found.\n\n"
411 "You can try downloading the required installation image."));
412 }
413 snprintf(message, sizeof(message), "%s %s", reason,
414 _("Please make sure to connect your machine to a network and "
415 "the installer will try connect to acquire an IP address."));
416
417 rc = newtWinOkCancel(title, message, 55, 12,
418 _("Download installation image"), _("Cancel"));
7d114284
MT
419
420 if (rc != 0)
421 goto EXIT;
422 }
35853bb4 423
c0511f3a 424 // Make sure that we enable networking before download
211c7984 425 config.require_networking = 1;
7d114284
MT
426 }
427
428 // Try starting the networking if we require it
211c7984 429 if (config.require_networking) {
35853bb4
MT
430 while (1) {
431 statuswindow(60, 4, title, _("Trying to start networking (DHCP)..."));
7d114284 432
35853bb4
MT
433 rc = hw_start_networking(logfile);
434 newtPopWindow();
7d114284 435
35853bb4
MT
436 // Networking was successfully started
437 if (rc == 0) {
438 break;
439
440 // An error happened, ask the user what to do
441 } else {
442 rc = newtWinOkCancel(title, _("Networking could not be started "
443 "but is required to go on with the installation.\n\n"
444 "Please connect your machine to a network with a "
445 "DHCP server and retry."), 50, 10, _("Retry"), _("Cancel"));
446
447 if (rc)
448 goto EXIT;
449 }
0f680bcc 450 }
f0fa1795 451
7d114284 452 // Download the image if required
c0511f3a
MT
453 if (config.perform_download) {
454 fprintf(flog, "Download URL: %s\n", config.download_url);
455 snprintf(commandstring, sizeof(commandstring), "/usr/bin/downloadsource.sh %s %s",
456 SOURCE_TEMPFILE, config.download_url);
457
458 while (!sourcedrive) {
459 rc = runcommandwithstatus(commandstring, title, _("Downloading installation image..."), logfile);
460
461 FILE* f = fopen(SOURCE_TEMPFILE, "r");
462 if (f) {
463 sourcedrive = SOURCE_TEMPFILE;
464 fclose(f);
465 } else {
466 char reason[STRING_SIZE] = "-";
467 if (rc == 2)
468 snprintf(reason, sizeof(STRING_SIZE), _("MD5 checksum mismatch"));
469
470 snprintf(message, sizeof(message),
471 _("The installation image could not be downloaded.\n Reason: %s\n\n%s"),
472 reason, config.download_url);
473
474 rc = newtWinOkCancel(title, message, 75, 12, _("Retry"), _("Cancel"));
475 if (rc)
476 goto EXIT;
477 }
7d114284 478 }
7d114284 479 }
72d80898 480 }
0f680bcc 481
f0fa1795
MT
482 assert(sourcedrive);
483
25fcce25 484 int r = hw_mount(sourcedrive, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
f0fa1795 485 if (r) {
c0511f3a
MT
486 snprintf(message, sizeof(message), _("Could not mount %s to %s:\n %s\n"),
487 sourcedrive, SOURCE_MOUNT_PATH, strerror(errno));
488 errorbox(message);
489 goto EXIT;
f0fa1795 490 }
918546e2 491
2404450b 492 if (!config.unattended) {
918546e2
MT
493 // Read the license file.
494 if (!(copying = fopen(LICENSE_FILE, "r"))) {
495 sprintf(discl_msg, "Could not open license file: %s\n", LICENSE_FILE);
335c5bd1 496 fprintf(flog, "%s", discl_msg);
918546e2
MT
497 } else {
498 fread(discl_msg, 1, 40000, copying);
499 fclose(copying);
500
ae5edf16 501 if (newtLicenseBox(_("License Agreement"), discl_msg, 75, 20)) {
5315fae6 502 errorbox(_("License not accepted!"));
bd5e7c29 503
918546e2
MT
504 goto EXIT;
505 }
506 }
507 }
508
d7dd283b 509 int part_type = HW_PART_TYPE_NORMAL;
ee78a5ef 510
d7dd283b 511 // Scan for disks to install on.
ee00d203 512 struct hw_disk** disks = hw_find_disks(hw, sourcedrive);
d7dd283b
MT
513
514 struct hw_disk** selected_disks = NULL;
515 unsigned int num_selected_disks = 0;
516
517 // Check how many disks have been found and what
518 // we can do with them.
335c5bd1 519 unsigned int num_disks = hw_count_disks((const struct hw_disk**)disks);
d7dd283b
MT
520
521 while (1) {
522 // no harddisks found
523 if (num_disks == 0) {
5315fae6 524 errorbox(_("No hard disk found."));
d7dd283b
MT
525 goto EXIT;
526
527 // exactly one disk has been found
a3e135c8
MT
528 // or if we are running in unattended mode, we will select
529 // the first disk and go with that one
2404450b 530 } else if ((num_disks == 1) || (config.unattended && num_disks >= 1)) {
335c5bd1 531 selected_disks = hw_select_first_disk((const struct hw_disk**)disks);
d7dd283b
MT
532
533 // more than one usable disk has been found and
534 // the user needs to choose what to do with them
535 } else {
536 const char* disk_names[num_disks];
537 int disk_selection[num_disks];
538
539 for (unsigned int i = 0; i < num_disks; i++) {
335c5bd1 540 disk_names[i] = disks[i]->description;
d7dd283b
MT
541 disk_selection[i] = 0;
542 }
543
544 while (!selected_disks) {
5315fae6
MT
545 rc = newtChecklist(_("Disk Selection"),
546 _("Select the disk(s) you want to install IPFire on. "
547 "First those will be partitioned, and then the partitions will have a filesystem put on them.\n\n"
548 "ALL DATA ON THE DISK WILL BE DESTROYED."),
d7dd283b
MT
549 50, 20, num_disks, disk_names, disk_selection);
550
551 // Error
552 if (rc < 0) {
553 goto EXIT;
554
555 // Nothing has been selected
556 } else if (rc == 0) {
5315fae6
MT
557 errorbox(_("No disk has been selected.\n\n"
558 "Please select one or more disks you want to install IPFire on."));
d7dd283b
MT
559
560 } else {
561 selected_disks = hw_select_disks(disks, disk_selection);
562 }
563 }
564 }
565
a3e135c8
MT
566 // Don't print the auto-selected harddisk setup in
567 // unattended mode.
2404450b 568 if (config.unattended)
a3e135c8
MT
569 break;
570
335c5bd1 571 num_selected_disks = hw_count_disks((const struct hw_disk**)selected_disks);
d7dd283b
MT
572
573 if (num_selected_disks == 1) {
5315fae6
MT
574 snprintf(message, sizeof(message),
575 _("The installation program will now prepare the chosen harddisk:\n\n %s\n\n"
576 "Do you agree to continue?"), (*selected_disks)->description);
577 rc = newtWinOkCancel(_("Disk Setup"), message, 50, 10,
578 _("Delete all data"), _("Cancel"));
d7dd283b
MT
579
580 if (rc == 0)
56b548f1 581 break;
d7dd283b
MT
582
583 } else if (num_selected_disks == 2) {
5315fae6
MT
584 snprintf(message, sizeof(message),
585 _("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
5a3b3718 586 "Do you agree to continue?"), selected_disks[0]->description, selected_disks[1]->description);
5315fae6
MT
587 rc = newtWinOkCancel(_("RAID Setup"), message, 50, 14,
588 _("Delete all data"), _("Cancel"));
d7dd283b
MT
589
590 if (rc == 0) {
591 part_type = HW_PART_TYPE_RAID1;
592
ee78a5ef 593 break;
d7dd283b
MT
594 }
595
596 // Currently not supported
597 } else {
77192e97 598 errorbox(_("Your disk configuration is currently not supported."));
ee43f517 599 fprintf(flog, "Num disks selected: %d\n", num_selected_disks);
aee3027d 600 }
ee78a5ef 601
d7dd283b
MT
602 if (selected_disks) {
603 hw_free_disks(selected_disks);
604 selected_disks = NULL;
605 }
212cab4f 606 }
212cab4f 607
d7dd283b 608 hw_free_disks(disks);
72d80898 609
a8fca245 610 struct hw_destination* destination = hw_make_destination(part_type, selected_disks, config.disable_swap);
5057b611 611
25fcce25 612 if (!destination) {
5315fae6 613 errorbox(_("Your harddisk is too small."));
cd8dd8dd 614 goto EXIT;
25fcce25 615 }
cd8dd8dd 616
25fcce25 617 fprintf(flog, "Destination drive: %s\n", destination->path);
48d6a112
MT
618 fprintf(flog, " bootldr: %s (%lluMB)\n", destination->part_bootldr, BYTES2MB(destination->size_bootldr));
619 fprintf(flog, " boot : %s (%lluMB)\n", destination->part_boot, BYTES2MB(destination->size_boot));
620 fprintf(flog, " swap : %s (%lluMB)\n", destination->part_swap, BYTES2MB(destination->size_swap));
621 fprintf(flog, " root : %s (%lluMB)\n", destination->part_root, BYTES2MB(destination->size_root));
622 fprintf(flog, " data : %s (%lluMB)\n", destination->part_data, BYTES2MB(destination->size_data));
5be66d81 623 fprintf(flog, "Memory : %lluMB\n", BYTES2MB(hw_memory()));
72d80898 624
25fcce25 625 // Warn the user if there is not enough space to create a swap partition
a8fca245
MT
626 if (!config.unattended) {
627 if (!config.disable_swap && !*destination->part_swap) {
628 rc = newtWinChoice(title, _("OK"), _("Cancel"),
629 _("Your harddisk is very small, but you can continue without a swap partition."));
4f26ff7f 630
a8fca245
MT
631 if (rc != 1)
632 goto EXIT;
633 }
72d80898 634 }
9a3d3d95 635
25fcce25 636 // Filesystem selection
2404450b 637 if (!config.unattended) {
25fcce25
MT
638 struct filesystems {
639 int fstype;
a8fca245 640 char* description;
25fcce25 641 } filesystems[] = {
5315fae6
MT
642 { HW_FS_EXT4, _("ext4 Filesystem") },
643 { HW_FS_EXT4_WO_JOURNAL, _("ext4 Filesystem without journal") },
644 { HW_FS_XFS, _("XFS Filesystem") },
645 { HW_FS_REISERFS, _("ReiserFS Filesystem") },
25fcce25
MT
646 { 0, NULL },
647 };
648 unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
649
650 char* fs_names[num_filesystems];
651 int fs_choice = 0;
652 for (unsigned int i = 0; i < num_filesystems; i++) {
653 if (HW_FS_DEFAULT == filesystems[i].fstype)
654 fs_choice = i;
655
a8fca245 656 fs_names[i] = filesystems[i].description;
25fcce25 657 }
72d80898 658
5315fae6
MT
659 rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
660 50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
25fcce25 661
eb3ff46e 662 if (rc == 2)
72d80898 663 goto EXIT;
139cb500
MT
664
665 destination->filesystem = filesystems[fs_choice].fstype;
72d80898
MT
666 }
667
4a0d9bef
MT
668 // Setting up RAID if needed.
669 if (destination->is_raid) {
5315fae6 670 statuswindow(60, 4, title, _("Building RAID..."));
4a0d9bef 671
46b56e20 672 rc = hw_setup_raid(destination, logfile);
4a0d9bef 673 if (rc) {
5315fae6 674 errorbox(_("Unable to build the RAID."));
4a0d9bef
MT
675 goto EXIT;
676 }
677
678 newtPopWindow();
d78fffa0
MT
679 } else {
680 // We will have to destroy all RAID setups that may have
681 // been on the devices that we want to use now.
682 hw_destroy_raid_superblocks(destination, logfile);
4a0d9bef
MT
683 }
684
25fcce25 685 // Execute the partitioning...
5315fae6 686 statuswindow(60, 4, title, _("Partitioning disk..."));
72d80898 687
46b56e20 688 rc = hw_create_partitions(destination, logfile);
25fcce25 689 if (rc) {
5315fae6 690 errorbox(_("Unable to partition the disk."));
72d80898 691 goto EXIT;
9607771a 692 }
72d80898 693
25fcce25 694 newtPopWindow();
72d80898 695
25fcce25 696 // Execute the formatting...
5315fae6 697 statuswindow(60, 4, title, _("Creating filesystems..."));
b8e2d108 698
46b56e20 699 rc = hw_create_filesystems(destination, logfile);
25fcce25 700 if (rc) {
5315fae6 701 errorbox(_("Unable to create filesystems."));
72d80898
MT
702 goto EXIT;
703 }
25fcce25
MT
704
705 rc = hw_mount_filesystems(destination, DESTINATION_MOUNT_PATH);
706 if (rc) {
5315fae6 707 errorbox(_("Unable to mount filesystems."));
72d80898 708 goto EXIT;
9607771a 709 }
c78a77eb 710
25fcce25
MT
711 newtPopWindow();
712
713 // Extract files...
03d956be 714 snprintf(commandstring, STRING_SIZE,
5315fae6
MT
715 "/bin/tar -C /harddisk -xvf /cdrom/distro.img --lzma 2>/dev/null");
716
edd536b6 717 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
46b56e20 718 _("Installing the system..."), logfile)) {
5315fae6 719 errorbox(_("Unable to install the system."));
d6aaa55d
MT
720 goto EXIT;
721 }
7f69d8a4
MT
722
723 // Write fstab
724 rc = hw_write_fstab(destination);
725 if (rc) {
726 fprintf(flog, "Could not write /etc/fstab\n");
727 goto EXIT;
728 }
729
406f019f 730 /* Save language und local settings */
165295ab 731 write_lang_configs(language);
d6aaa55d 732
330345c2 733 /* Build cache lang file */
6cf9e770 734 snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
46b56e20 735 if (runcommandwithstatus(commandstring, title, _("Installing the language cache..."), logfile)) {
5315fae6 736 errorbox(_("Unable to install the language cache."));
330345c2
MT
737 goto EXIT;
738 }
739
f5007e9c 740 // Installing bootloader...
5315fae6 741 statuswindow(60, 4, title, _("Installing the bootloader..."));
423400cf 742
5faa66cf 743 /* Serial console ? */
211c7984 744 if (config.serial_console) {
5faa66cf 745 /* grub */
9dd16c6d
MT
746 FILE* f = fopen(DESTINATION_MOUNT_PATH "/etc/default/grub", "a");
747 if (!f) {
748 errorbox(_("Unable to open /etc/default/grub for writing."));
749 goto EXIT;
750 }
5faa66cf 751
7f6e0425 752 fprintf(f, "GRUB_TERMINAL=\"serial\"\n");
9dd16c6d
MT
753 fprintf(f, "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=%d\"\n", SERIAL_BAUDRATE);
754 fclose(f);
755
756 replace(DESTINATION_MOUNT_PATH "/etc/default/grub", "panic=10", "panic=10 console=ttyS0,115200n8");
757
758 /* inittab */
5faa66cf
AF
759 replace("/harddisk/etc/inittab", "1:2345:respawn:", "#1:2345:respawn:");
760 replace("/harddisk/etc/inittab", "2:2345:respawn:", "#2:2345:respawn:");
761 replace("/harddisk/etc/inittab", "3:2345:respawn:", "#3:2345:respawn:");
762 replace("/harddisk/etc/inittab", "4:2345:respawn:", "#4:2345:respawn:");
763 replace("/harddisk/etc/inittab", "5:2345:respawn:", "#5:2345:respawn:");
764 replace("/harddisk/etc/inittab", "6:2345:respawn:", "#6:2345:respawn:");
765 replace("/harddisk/etc/inittab", "#7:2345:respawn:", "7:2345:respawn:");
766 }
767
9dd16c6d
MT
768 rc = hw_install_bootloader(destination, logfile);
769 if (rc) {
770 errorbox(_("Unable to install the bootloader."));
771 goto EXIT;
772 }
773
774 newtPopWindow();
775
dfa59dbd 776 /* Set marker that the user has already accepted the gpl */
46b56e20 777 mysystem(logfile, "/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
dfa59dbd 778
c25a0343 779 /* Copy restore file from cdrom */
38c6822d
MT
780 char* backup_file = hw_find_backup_file(logfile, SOURCE_MOUNT_PATH);
781 if (backup_file) {
782 rc = 0;
2404450b 783 if (!config.unattended) {
38c6822d
MT
784 rc = newtWinOkCancel(title, _("A backup file has been found on the installation image.\n\n"
785 "Do you want to restore the backup?"), 50, 10, _("Yes"), _("No"));
786 }
787
788 if (rc == 0) {
789 rc = hw_restore_backup(logfile, backup_file, DESTINATION_MOUNT_PATH);
790
791 if (rc) {
792 errorbox(_("An error occured when the backup file was restored."));
793 goto EXIT;
794 }
795 }
796
797 free(backup_file);
c25a0343 798 }
2c9c458c 799
ddd32a5c
MT
800 // Umount the destination drive
801 hw_umount_filesystems(destination, DESTINATION_MOUNT_PATH);
802
803 // Stop the RAID array if we are using RAID
804 if (destination->is_raid)
805 hw_stop_all_raid_arrays(logfile);
806
2c9c458c
MT
807 // Umount source drive and eject
808 hw_umount(SOURCE_MOUNT_PATH);
809
810 snprintf(commandstring, STRING_SIZE, "/usr/bin/eject %s", sourcedrive);
46b56e20 811 mysystem(logfile, commandstring);
22b9e405 812
2404450b 813 if (!config.unattended) {
ae5edf16
MT
814 snprintf(message, sizeof(message), _(
815 "%s was successfully installed!\n\n"
816 "Please remove any installation mediums from this system and hit the reboot button. "
817 "Once the system has restarted you will be asked to setup networking and system passwords. "
818 "After that, you should point your web browser at https://%s:444 (or what ever you name "
819 "your %s) for the web configuration console."), NAME, SNAME, NAME);
5315fae6 820 newtWinMessage(_("Congratulations!"), _("Reboot"), message);
73d9a908 821 }
cd8dd8dd 822
22b9e405 823 allok = 1;
edd536b6 824
d6aaa55d 825EXIT:
46b56e20 826 fprintf(flog, "Install program ended.\n");
ae5edf16
MT
827 fflush(flog);
828 fclose(flog);
d6aaa55d 829
ae5edf16
MT
830 if (!allok)
831 newtWinMessage(title, _("OK"), _("Setup has failed. Press Ok to reboot."));
3a1019f6
MT
832
833 newtFinished();
834
f0fa1795 835 // Free resources
b83b8f70
MT
836 free(system_release);
837 free(roottext);
838 free(helpline);
839
f0fa1795 840 free(sourcedrive);
ddd32a5c 841 free(destination);
d7dd283b 842
46b56e20 843 hw_stop_all_raid_arrays(logfile);
4a0d9bef 844
d7dd283b
MT
845 if (selected_disks)
846 hw_free_disks(selected_disks);
847
848 hw_free(hw);
f0fa1795 849
25fcce25
MT
850 fcloseall();
851
f0a61a0a
MT
852 if (allok == 1)
853 return 0;
25fcce25 854
f0a61a0a 855 return 1;
d6aaa55d 856}