]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/main.c
Ich hab mal ein bisschen die Arbeit vom Cuebernommen :D
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / 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
7 * Contains main entry point, and misc functions.
8 *
d6aaa55d 9 */
10bc6f06 10
d6aaa55d 11#include "install.h"
72d80898
MT
12#define _GNU_SOURCE
13
d6aaa55d
MT
14#define CDROM_INSTALL 0
15#define URL_INSTALL 1
72d80898 16#define DISK_INSTALL 2
b4e381a8 17#define INST_FILECOUNT 6600
33634aa8 18#define UNATTENDED_CONF "/cdrom/boot/unattended.conf"
d6aaa55d
MT
19
20int raid_disk = 0;
21FILE *flog = NULL;
22char *mylog;
10bc6f06 23
d6aaa55d
MT
24char **ctr;
25
26char *pcmcia = NULL;
27extern char url[STRING_SIZE];
28
10bc6f06 29extern char *en_tr[];
10bc6f06 30extern char *de_tr[];
d6aaa55d 31
72d80898
MT
32int detect_smp() {
33 FILE *fd = NULL;
34 char line[STRING_SIZE];
35 int cpu_count = 0;
36
37 if ((fd = fopen("/proc/cpuinfo", "r")) == NULL) {
38 return 0;
39 }
40 while (fgets(line, STRING_SIZE, fd) != NULL) {
41 if (strstr(line, "processor") == line) {
42 cpu_count++;
43 }
44 }
45 (void)fclose(fd);
46 return (cpu_count > 1);
47}
48
49int generate_packages_list(char *packages, const char *rpmdir, const char *source) {
50
51 FILE *fd=NULL;
52 char buffer[STRING_SIZE];
53 bzero(buffer, sizeof(buffer));
54
55 if ((fd = fopen(source, "r")) == NULL) {
56 (void) fprintf(flog, "Packages file %s not found\n", source);
57 return -1;
58 }
59 while (fgets(buffer, sizeof(buffer), fd) != NULL) {
60 int length = -1;
61 length = strlen(buffer)-1;
62 if (length<=0) {
63 continue;
64 }
65 if (buffer[length] == '\n') {
66 buffer[length]='\0';
67 }
68 length = snprintf(packages, STRING_SIZE, "%s %s/%s", strdup(packages), rpmdir, buffer);
69 if ((length <0) || (length >STRING_SIZE)) {
70 (void) fprintf(flog, "rpm command line too long: %d\n%s", length, packages);
71 return -1;
72 }
73 }
74 if (ferror(fd)) {
75 (void) fprintf(flog, "Error reading file\n");
76 (void) fclose(fd);
77 return -1;
78 }
79 (void) fclose(fd);
80 return 0;
81}
82
83long calc_swapsize(long memory, long disk) {
84 if (memory < 128) {
85 return 256;
86 }
87 if (memory > 1024) {
88 return 512;
89 }
90
91 return memory*2;
92}
93
94int unattended_setup(struct keyvalue *unattendedkv) {
95 struct keyvalue *mainsettings = initkeyvalues();
96 struct keyvalue *ethernetkv = initkeyvalues();
97 FILE *file, *hosts;
98 char commandstring[STRING_SIZE];
99
100 char domainname[STRING_SIZE];
101 char hostname[STRING_SIZE];
102 char keymap[STRING_SIZE];
103 char language[STRING_SIZE];
104 char timezone[STRING_SIZE];
105 char green_address[STRING_SIZE];
106 char green_netmask[STRING_SIZE];
107 char green_netaddress[STRING_SIZE];
108 char green_broadcast[STRING_SIZE];
109 char root_password[STRING_SIZE];
110 char admin_password[STRING_SIZE];
72d80898
MT
111
112 findkey(unattendedkv, "DOMAINNAME", domainname);
113 findkey(unattendedkv, "HOSTNAME", hostname);
114 findkey(unattendedkv, "KEYMAP", keymap);
115 findkey(unattendedkv, "LANGUAGE", language);
116 findkey(unattendedkv, "TIMEZONE", timezone);
117 findkey(unattendedkv, "GREEN_ADDRESS", green_address);
118 findkey(unattendedkv, "GREEN_NETMASK", green_netmask);
119 findkey(unattendedkv, "GREEN_NETADDRESS", green_netaddress);
120 findkey(unattendedkv, "GREEN_BROADCAST", green_broadcast);
121 findkey(unattendedkv, "ROOT_PASSWORD", root_password);
122 findkey(unattendedkv, "ADMIN_PASSWORD", admin_password);
72d80898
MT
123
124 /* write main/settings. */
125 replacekeyvalue(mainsettings, "DOMAINNAME", domainname);
126 replacekeyvalue(mainsettings, "HOSTNAME", hostname);
127 replacekeyvalue(mainsettings, "KEYMAP", keymap);
128 replacekeyvalue(mainsettings, "LANGUAGE", language);
129 replacekeyvalue(mainsettings, "TIMEZONE", timezone);
130 writekeyvalues(mainsettings, "/harddisk" CONFIG_ROOT "/main/settings");
131 freekeyvalues(mainsettings);
132
133 /* do setup stuff */
134 fprintf(flog, "unattended: Starting setup\n");
135
136 /* network */
72d80898
MT
137 fprintf(flog, "unattended: setting up network configuration\n");
138
139 (void) readkeyvalues(ethernetkv, "/harddisk" CONFIG_ROOT "/ethernet/settings");
140 replacekeyvalue(ethernetkv, "GREEN_ADDRESS", green_address);
141 replacekeyvalue(ethernetkv, "GREEN_NETMASK", green_netmask);
142 replacekeyvalue(ethernetkv, "GREEN_NETADDRESS", green_netaddress);
143 replacekeyvalue(ethernetkv, "GREEN_BROADCAST", green_broadcast);
144 replacekeyvalue(ethernetkv, "CONFIG_TYPE", "0");
8e2e5cf3 145 replacekeyvalue(ethernetkv, "GREEN_DEV", "eth0");
72d80898
MT
146 write_ethernet_configs(ethernetkv);
147 freekeyvalues(ethernetkv);
148
149 /* timezone */
150 unlink("/harddisk/etc/localtime");
151 snprintf(commandstring, STRING_SIZE, "/harddisk/%s", timezone);
152 link(commandstring, "/harddisk/etc/localtime");
153
154 /* hostname */
155 fprintf(flog, "unattended: writing hostname.conf\n");
156 if (!(file = fopen("/harddisk" CONFIG_ROOT "/main/hostname.conf", "w")))
157 {
158 errorbox("unattended: ERROR writing hostname.conf");
159 return 0;
160 }
161 fprintf(file, "ServerName %s\n", hostname);
3a1019f6 162 fclose(file);
72d80898
MT
163
164 fprintf(flog, "unattended: writing hosts\n");
165 if (!(hosts = fopen("/harddisk/etc/hosts", "w")))
166 {
167 errorbox("unattended: ERROR writing hosts");
168 return 0;
169 }
170 fprintf(hosts, "127.0.0.1\tlocalhost\n");
171 fprintf(hosts, "%s\t%s.%s\t%s\n", green_address, hostname, domainname, hostname);
3a1019f6 172 fclose(hosts);
72d80898
MT
173
174 fprintf(flog, "unattended: writing hosts.allow\n");
175 if (!(file = fopen("/harddisk/etc/hosts.allow", "w")))
176 {
177 errorbox("unattended: ERROR writing hosts.allow");
edd536b6 178 return 0;
72d80898
MT
179 }
180 fprintf(file, "sshd : ALL\n");
181 fprintf(file, "ALL : localhost\n");
182 fprintf(file, "ALL : %s/%s\n", green_netaddress, green_netmask);
183 fclose(file);
184
185 fprintf(flog, "unattended: writing hosts.deny\n");
186 if (!(file = fopen("/harddisk/etc/hosts.deny", "w")))
187 {
188 errorbox("unattended: ERROR writing hosts.deny");
189 return 0;
190 }
191 fprintf(file, "ALL : ALL\n");
192 fclose(file);
193
72d80898
MT
194 /* set root password */
195 fprintf(flog, "unattended: setting root password\n");
72d80898 196 snprintf(commandstring, STRING_SIZE,
532a3663 197 "/sbin/chroot /harddisk /bin/sh -c \"echo 'root:%s' | /usr/sbin/chpasswd\"", root_password);
72d80898
MT
198 if (mysystem(commandstring)) {
199 errorbox("unattended: ERROR setting root password");
200 return 0;
201 }
3a1019f6 202
72d80898
MT
203 /* set admin password */
204 fprintf(flog, "unattended: setting admin password\n");
205 snprintf(commandstring, STRING_SIZE,
3a1019f6 206 "/sbin/chroot /harddisk /usr/sbin/htpasswd -c -m -b " CONFIG_ROOT "/auth/users admin '%s'", admin_password);
72d80898
MT
207 if (mysystem(commandstring)) {
208 errorbox("unattended: ERROR setting admin password");
3a1019f6 209 return 0;
72d80898 210 }
3a1019f6 211 return 1;
72d80898
MT
212}
213
d6aaa55d
MT
214int main(int argc, char *argv[])
215{
b4e3cd7f
HS
216 char *langnames[] = { "Deutsch", "English", NULL };
217 char *shortlangnames[] = { "de", "en", NULL };
218 char **langtrs[] = { de_tr, en_tr, NULL };
d6aaa55d 219 char hdletter, cdletter;
72d80898
MT
220 char harddrive[5], sourcedrive[5]; /* Device holder. */
221 struct devparams hdparams, cdromparams; /* Params for CDROM and HD */
222 int cdmounted = 0; /* Loop flag for inserting a cd. */
223 int rc = 0;
d6aaa55d 224 char commandstring[STRING_SIZE];
10bc6f06 225 char *installtypes[] = { "CDROM", "HTTP/FTP", NULL };
72d80898 226 int installtype = CDROM_INSTALL;
d6aaa55d
MT
227 char insertmessage[STRING_SIZE];
228 char insertdevnode[STRING_SIZE];
229 int choice;
230 char shortlangname[10];
231 char message[1000];
232 char title[STRING_SIZE];
233 int allok = 0;
10bc6f06 234 int allok_fastexit=0;
d6aaa55d
MT
235 int unmount_before=0;
236 struct keyvalue *ethernetkv = initkeyvalues();
237 FILE *handle, *cmdfile;
238 char line[STRING_SIZE];
239 char string[STRING_SIZE];
72d80898
MT
240 long maximum_free = 0, current_free;
241 long memory = 0;
8e2e5cf3 242 long system_partition, boot_partition, root_partition, swap_file;
d6aaa55d
MT
243 int scsi_disk = 0;
244 int pcmcia_disk = 0;
245 int pcmcia_cdrom = 0;
246 int scsi_cdrom = 0;
247 int ide_cdrom = 0;
248 int fdisk = 0;
72d80898
MT
249 int hardyn = 0;
250 char *yesnoharddisk[] = { "NO", "YES", NULL };
251 char *yesno[] = { "NO", "YES", NULL };
252 char green[STRING_SIZE];
253 int unattended = 0;
254 struct keyvalue *unattendedkv = initkeyvalues();
255 char packages[STRING_SIZE];
256 int serial_console = 0;
257 char megabridge[STRING_SIZE];
d6aaa55d
MT
258
259 setlocale (LC_ALL, "");
10bc6f06 260 sethostname( SNAME , 10);
72d80898 261
d6aaa55d
MT
262 memset(&hdparams, 0, sizeof(struct devparams));
263 memset(&cdromparams, 0, sizeof(struct devparams));
264
265 /* Log file/terminal stuff. */
266 if (argc >= 2)
267 {
268 if (!(flog = fopen(argv[1], "w+")))
269 return 0;
270 }
271 else
272 return 0;
273
274 mylog = argv[1];
275
276 fprintf(flog, "Install program started.\n");
277
278 newtInit();
279 newtCls();
280
281 /* Do usb detection first for usb keyboard */
282 if (! (cmdfile = fopen("/proc/cmdline", "r")))
283 {
284 fprintf(flog, "Couldn't open commandline: /proc/cmdline\n");
285 } else {
286 fgets(line, STRING_SIZE, cmdfile);
287 if (strstr (line, "fdisk") != NULL) {
288 fprintf(flog, "Manual FDISK selected.\n");
289 fdisk = 1;
290 }
d6aaa55d
MT
291 if (strstr (line, "nousb") == NULL) {
292 fprintf(flog, "Initializing USB controllers.\n");
293 initialize_usb();
294 } else {
295 fprintf(flog, "Skipping USB detection.\n");
296 }
72d80898
MT
297 // check if we have to make an unattended install
298 if (strstr (line, "unattended") != NULL) {
299 unattended = 1;
300 }
d6aaa55d 301 }
72d80898
MT
302
303 // make some beeps before wiping the system :)
304 if (unattended) {
33634aa8 305 runcommandwithstatus("/bin/sleep 10", "WARNING: Unattended installation will start in 10 seconds...");
72d80898 306 }
d6aaa55d 307
72d80898 308 /* German is the default */
d6aaa55d
MT
309 for (choice = 0; langnames[choice]; choice++)
310 {
b4e3cd7f 311 if (strcmp(langnames[choice], "Deutsch") == 0)
d6aaa55d
MT
312 break;
313 }
314 if (!langnames[choice])
315 goto EXIT;
316
72d80898
MT
317 if (!unattended) {
318 rc = newtWinMenu("Language selection",
319 "Select the language you wish to use for the " NAME ".", 50, 5, 5, 8,
320 langnames, &choice, "Ok", NULL);
321 }
322
d6aaa55d
MT
323 ctr = langtrs[choice];
324 strcpy(shortlangname, shortlangnames[choice]);
3d6e1202
MT
325
326 mysystem("/bin/setfont lat0-16");
72d80898 327
33634aa8 328 newtDrawRootText(14, 0, NAME " " VERSION " - " SLOGAN );
d6aaa55d
MT
329 newtPushHelpLine(ctr[TR_HELPLINE]);
330
72d80898
MT
331 if (!unattended) {
332 sprintf(message, ctr[TR_WELCOME], NAME);
333 sprintf (title, "%s %s - %s", NAME, VERSION, SLOGAN);
334 newtWinMessage(title, ctr[TR_OK], message);
335
336 sprintf(message, ctr[TR_SELECT_INSTALLATION_MEDIA_LONG], NAME);
337 rc = newtWinMenu(ctr[TR_SELECT_INSTALLATION_MEDIA], message,
338 50, 5, 5, 6, installtypes, &installtype, ctr[TR_OK],
339 ctr[TR_CANCEL], NULL);
340 }
341 else {
342 rc = 1;
343 installtype = CDROM_INSTALL;
344 }
345
346 if (rc == 2)
347 goto EXIT;
348
349 // Starting hardware detection
350 runcommandwithstatus("/bin/probehw.sh", ctr[TR_PROBING_HARDWARE]);
351
9607771a
MT
352 /* CDROM INSTALL */
353 if (installtype == CDROM_INSTALL) {
72d80898 354
9607771a
MT
355 switch (mysystem("/bin/mountsource.sh")) {
356 case 0:
357 installtype = CDROM_INSTALL;
358 cdmounted = 1;
359 break;
360 case 1:
361 installtype = DISK_INSTALL;
362 break;
363 case 10:
364 errorbox(ctr[TR_NO_CDROM]);
365 goto EXIT;
366 }
367
368 /* read source drive letter */
369 if ((handle = fopen("/source_device", "r")) == NULL) {
33634aa8
MT
370 errorbox(ctr[TR_ERROR_PROBING_CDROM]);
371 goto EXIT;
9607771a
MT
372 }
373 fgets(sourcedrive, 5, handle);
374 fprintf(flog, "Source drive: %s\n", sourcedrive);
375 fclose(handle);
376
377 snprintf(cdromparams.devnode, STRING_SIZE, "/dev/%s", sourcedrive);
378 cdromparams.module = 0;
379 fprintf(flog, "Source device: %s\n", cdromparams.devnode);
72d80898 380 }
9607771a
MT
381
382 /* Configure the network now! */
383 if (installtype == URL_INSTALL) {
384 /* Network driver and params. */
385 if (!(networkmenu(ethernetkv))) {
386 errorbox(ctr[TR_NETWORK_SETUP_FAILED]);
387 goto EXIT;
388 }
389
390 /* Check for ipcop-<VERSION>.tbz2 */
391 if (checktarball(SNAME "-" VERSION ".tbz2", ctr[TR_ENTER_URL])) {
392 errorbox(ctr[TR_NO_IPCOP_TARBALL_FOUND]);
393 goto EXIT;
394 }
72d80898
MT
395 }
396
397 /* Get device for the HD. This has to succeed. */
398 if (!(hdletter = findidetype(IDE_HD)))
399 {
400 /* Need to clean this up at some point */
401 if (!try_scsi("sda") || strstr(sourcedrive, "sda") != NULL) {
402 if (!try_scsi("ida/c0d0")) {
403 if (!try_scsi("cciss/c0d0")) {
404 if (!try_scsi("rd/c0d0")) {
405 if (!try_scsi("ataraid/d0")) {
406 errorbox(ctr[TR_NO_HARDDISK]);
407 goto EXIT;
408 } else {
409 raid_disk = 1;
410 sprintf(harddrive, "ataraid/d0");
411 }
412 } else {
413 raid_disk = 1;
414 sprintf(harddrive, "rd/c0d0");
415 }
416 } else {
417 raid_disk = 1;
418 sprintf(harddrive, "cciss/c0d0");
419 }
420 } else {
421 raid_disk = 1;
422 sprintf(harddrive, "ida/c0d0");
423 }
424 } else {
425 if (strstr(sourcedrive, "sda") != NULL) {
426 // probably installing from usb stick, try sdb
427 if (try_scsi("sdb")) {
428 sprintf(harddrive, "sdb");
429 }
430 else {
431 errorbox(ctr[TR_NO_HARDDISK]);
432 goto EXIT;
433 }
434 }
435 else {
436 sprintf(harddrive, "sda");
437 }
438 }
439 scsi_disk = 1;
440 } else
441 sprintf(harddrive, "hd%c", hdletter);
442
9607771a 443 fprintf(flog, "Destination drive: %s\n", harddrive);
d6aaa55d 444
72d80898
MT
445 /* load unattended configuration */
446 if (unattended) {
447 fprintf(flog, "unattended: Reading unattended.conf\n");
448
449 (void) readkeyvalues(unattendedkv, UNATTENDED_CONF);
450 }
451
452 /* Make the hdparms struct and print the contents. */
453 snprintf(hdparams.devnode, STRING_SIZE, "/dev/%s", harddrive);
454 hdparams.module = 0;
455
456 sprintf(message, ctr[TR_PREPARE_HARDDISK], hdparams.devnode);
457
458 if (unattended) {
459 hardyn = 1;
460 }
461
462 while (! hardyn) {
463 rc = newtWinMenu(title, message,
464 50, 5, 5, 6, yesnoharddisk,
465 &hardyn, ctr[TR_OK],
466 ctr[TR_CANCEL], NULL);
467 if (rc == 2)
468 goto EXIT;
469 }
5433e2c9
MT
470
471 if (rc == 2)
472 goto EXIT;
72d80898
MT
473
474 /* Calculate amount of memory in machine */
475 if ((handle = fopen("/proc/meminfo", "r")))
476 {
477 while (fgets(line, STRING_SIZE-1, handle)) {
478 if (sscanf (line, "MemTotal: %s kB", string)) {
479 memory = atoi(string) / 1024 ;
480 }
481 }
482 fclose(handle);
483 }
484
485 /* Partition, mkswp, mkfs.
486 * before partitioning, first determine the sizes of each
487 * partition. In order to do that we need to know the size of
488 * the disk.
489 */
490 /* Don't use mysystem here so we can redirect output */
491 sprintf(commandstring, "/bin/sfdisk -s /dev/%s > /disksize 2> /dev/null", harddrive);
492 system(commandstring);
493
494 /* Calculate amount of disk space */
495 if ((handle = fopen("/disksize", "r")))
496 {
497 fgets(line, STRING_SIZE-1, handle);
498 if (sscanf (line, "%s", string)) {
499 maximum_free = atoi(string) / 1024;
500 }
501 fclose(handle);
502 }
503
504 fprintf(flog, "maximum_free = %ld, memory = %ld",
505 maximum_free, memory);
506
507 swap_file = calc_swapsize(memory, maximum_free);
508
509 if (maximum_free < 512 + swap_file ) {
510 if (maximum_free < 512) {
511 errorbox(ctr[TR_DISK_TOO_SMALL]);
512 goto EXIT;
513 }
514
515 if (!unattended) {
516 rc = newtWinChoice(title, ctr[TR_OK], ctr[TR_CANCEL], ctr[TR_CONTINUE_NO_SWAP]);
517 }
518 else {
519 rc = 1;
520 }
521
522 if (rc != 1)
523 goto EXIT;
524 swap_file = 0;
525 }
526
8e2e5cf3 527 boot_partition = 20; /* in MB */
72d80898
MT
528 current_free = maximum_free - boot_partition - swap_file;
529
8e2e5cf3
MT
530 root_partition = 2048 ;
531 if (current_free < 512) {
72d80898
MT
532 errorbox(ctr[TR_DISK_TOO_SMALL]);
533 goto EXIT;
534 }
535
536 current_free = current_free - root_partition;
537 if (!swap_file) {
538 root_partition = root_partition + swap_file;
539 }
540
8e2e5cf3 541 system_partition = current_free;
72d80898
MT
542
543 fprintf(flog, "boot = %ld, swap = %ld, mylog = %ld, root = %ld\n",
8e2e5cf3 544 boot_partition, swap_file, system_partition, root_partition);
72d80898
MT
545
546 handle = fopen("/tmp/partitiontable", "w");
547
72d80898
MT
548 /* Make swapfile */
549 if (swap_file) {
9607771a 550 fprintf(handle, ",%ld,L,*\n,%ld,S,\n,%ld,L,\n,,L,\n",
72d80898
MT
551 boot_partition, swap_file, root_partition);
552 } else {
9607771a 553 fprintf(handle, ",%ld,L,*\n,0,0,\n,%ld,L,\n,,L,\n",
72d80898
MT
554 boot_partition, root_partition);
555 }
556
557 fclose(handle);
558
559 snprintf(commandstring, STRING_SIZE, "/bin/sfdisk -L -uM %s < /tmp/partitiontable", hdparams.devnode);
560 if (runcommandwithstatus(commandstring, ctr[TR_PARTITIONING_DISK]))
561 {
562 errorbox(ctr[TR_UNABLE_TO_PARTITION]);
563 goto EXIT;
564 }
565
532a3663 566 mysystem("/sbin/udevstart");
72d80898
MT
567
568 if (raid_disk)
8e2e5cf3 569 snprintf(commandstring, STRING_SIZE, "/bin/mke2fs -T ext2 -c %sp1", hdparams.devnode);
72d80898 570 else
8e2e5cf3 571 snprintf(commandstring, STRING_SIZE, "/bin/mke2fs -T ext2 -c %s1", hdparams.devnode);
72d80898
MT
572 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_BOOT_FILESYSTEM]))
573 {
574 errorbox(ctr[TR_UNABLE_TO_MAKE_BOOT_FILESYSTEM]);
575 goto EXIT;
576 }
577
578 if (swap_file) {
579 if (raid_disk)
532a3663 580 snprintf(commandstring, STRING_SIZE, "/sbin/mkswap %sp2", hdparams.devnode);
72d80898 581 else
532a3663 582 snprintf(commandstring, STRING_SIZE, "/sbin/mkswap %s2", hdparams.devnode);
72d80898
MT
583 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_SWAPSPACE]))
584 {
585 errorbox(ctr[TR_UNABLE_TO_MAKE_SWAPSPACE]);
586 goto EXIT;
587 }
588 }
589
590 if (raid_disk)
8e2e5cf3 591 snprintf(commandstring, STRING_SIZE, "/bin/mkreiserfs -f %sp3", hdparams.devnode);
72d80898 592 else
8e2e5cf3 593 snprintf(commandstring, STRING_SIZE, "/bin/mkreiserfs -f %s3", hdparams.devnode);
72d80898
MT
594
595 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_ROOT_FILESYSTEM]))
596 {
597 errorbox(ctr[TR_UNABLE_TO_MAKE_ROOT_FILESYSTEM]);
598 goto EXIT;
599 }
600
9607771a 601 if (raid_disk)
8e2e5cf3 602 snprintf(commandstring, STRING_SIZE, "/bin/mkreiserfs -f %sp4", hdparams.devnode);
72d80898 603 else
8e2e5cf3 604 snprintf(commandstring, STRING_SIZE, "/bin/mkreiserfs -f %s4", hdparams.devnode);
72d80898
MT
605
606 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_LOG_FILESYSTEM]))
607 {
608 errorbox(ctr[TR_UNABLE_TO_MAKE_ROOT_FILESYSTEM]);
609 goto EXIT;
9607771a 610 }
72d80898
MT
611
612 /* Mount harddisk. */
613 if (raid_disk)
532a3663 614 snprintf(commandstring, STRING_SIZE, "/bin/mount %sp3 /harddisk", hdparams.devnode);
72d80898 615 else
532a3663 616 snprintf(commandstring, STRING_SIZE, "/bin/mount %s3 /harddisk", hdparams.devnode);
72d80898
MT
617 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_ROOT_FILESYSTEM]))
618 {
619 errorbox(ctr[TR_UNABLE_TO_MOUNT_ROOT_FILESYSTEM]);
620 goto EXIT;
621 }
622
623 mkdir("/harddisk/boot", S_IRWXU|S_IRWXG|S_IRWXO);
624 mkdir("/harddisk/var", S_IRWXU|S_IRWXG|S_IRWXO);
625 mkdir("/harddisk/var/log", S_IRWXU|S_IRWXG|S_IRWXO);
626
627 if (raid_disk)
532a3663 628 snprintf(commandstring, STRING_SIZE, "/bin/mount %sp1 /harddisk/boot", hdparams.devnode);
72d80898 629 else
532a3663 630 snprintf(commandstring, STRING_SIZE, "/bin/mount %s1 /harddisk/boot", hdparams.devnode);
72d80898
MT
631
632 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_BOOT_FILESYSTEM]))
633 {
634 errorbox(ctr[TR_UNABLE_TO_MOUNT_BOOT_FILESYSTEM]);
635 goto EXIT;
636 }
637 if (swap_file) {
638 if (raid_disk)
532a3663 639 snprintf(commandstring, STRING_SIZE, "/sbin/swapon %sp2", hdparams.devnode);
72d80898 640 else
532a3663 641 snprintf(commandstring, STRING_SIZE, "/sbin/swapon %s2", hdparams.devnode);
72d80898
MT
642 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_SWAP_PARTITION]))
643 {
644 errorbox(ctr[TR_UNABLE_TO_MOUNT_SWAP_PARTITION]);
645 goto EXIT;
646 }
647 }
9607771a 648 if (raid_disk)
532a3663 649 snprintf(commandstring, STRING_SIZE, "/bin/mount %sp4 /harddisk/var", hdparams.devnode);
72d80898 650 else
532a3663 651 snprintf(commandstring, STRING_SIZE, "/bin/mount %s4 /harddisk/var", hdparams.devnode);
72d80898
MT
652 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_LOG_FILESYSTEM]))
653 {
654 errorbox(ctr[TR_UNABLE_TO_MOUNT_LOG_FILESYSTEM]);
655 goto EXIT;
9607771a 656 }
10bc6f06 657
8e2e5cf3 658 snprintf(commandstring, STRING_SIZE, "/bin/tar -C /harddisk -xvjf /cdrom/" SNAME "-" VERSION ".tbz2");
d6aaa55d 659
edd536b6
MT
660 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
661 ctr[TR_INSTALLING_FILES]))
d6aaa55d
MT
662 {
663 errorbox(ctr[TR_UNABLE_TO_INSTALL_FILES]);
664 goto EXIT;
665 }
e57bc1fd 666
d6aaa55d
MT
667 /* Save USB controller type to modules.conf */
668 write_usb_modules_conf();
669
670 /* touch the modules.dep files */
10bc6f06 671 snprintf(commandstring, STRING_SIZE,
532a3663 672 "/sbin/chroot /harddisk /usr/bin/touch /lib/modules/%s/modules.dep",
10bc6f06
MT
673 KERNEL_VERSION);
674 mysystem(commandstring);
10bc6f06 675 snprintf(commandstring, STRING_SIZE,
532a3663 676 "/sbin/chroot /harddisk /usr/bin/touch /lib/modules/%s-smp/modules.dep",
10bc6f06
MT
677 KERNEL_VERSION);
678 mysystem(commandstring);
d6aaa55d
MT
679
680 /* Rename uname */
681 rename ("/harddisk/bin/uname.bak", "/harddisk/bin/uname");
682
d6aaa55d
MT
683 /* *always* write disk configuration */
684 if (!(write_disk_configs(&hdparams))){
10bc6f06
MT
685 errorbox(ctr[TR_ERROR_WRITING_CONFIG]);
686 goto EXIT;
d6aaa55d
MT
687 }
688
9607771a
MT
689 /* mount proc filesystem */
690 mysystem("mkdir /harddisk/proc");
691 mysystem("/bin/mount -t proc none /harddisk/proc");
692 mysystem("/bin/mount --bind /dev /harddisk/dev");
693
73d9a908
MT
694
695
22b9e405 696 /* if we detected SCSI then fixup */
73d9a908
MT
697 /* doesn't really work cause it sometimes creates a ramdisk on ide systems */
698/* mysystem("/bin/probecntrl.sh");
9607771a 699 if ((handle = fopen("/cntrldriver", "r")))
22b9e405
MT
700 {
701 char *driver;
702 fgets(line, STRING_SIZE-1, handle);
703 fclose(handle);
704 line[strlen(line) - 1] = 0;
705 driver = strtok(line, ".");
706 fprintf(flog, "Detected SCSI driver %s\n",driver);
707 if (strlen(driver) > 1) {
708 fprintf(flog, "Fixing up ipfirerd.img\n");
532a3663 709 mysystem("/sbin/chroot /harddisk /sbin/modprobe loop");
22b9e405 710 mkdir("/harddisk/initrd", S_IRWXU|S_IRWXG|S_IRWXO);
532a3663 711 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitrd --with=scsi_mod --with=%s --with=sd_mod --with=sr_mod --with=libata /boot/ipfirerd.img %s", driver, KERNEL_VERSION);
22b9e405 712 runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
532a3663 713 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitrd --with=scsi_mod --with=%s --with=sd_mod --with=sr_mod --with=libata /boot/ipfirerd-smp.img %s-smp", driver, KERNEL_VERSION);
22b9e405 714 runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
532a3663 715 mysystem("/sbin/chroot /harddisk /bin/mv /boot/grub/scsigrub.conf /boot/grub/grub.conf");
9607771a 716 }
73d9a908 717 } */
22b9e405 718
9607771a 719 /* Build cache lang file */
532a3663 720 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
9607771a
MT
721 if (runcommandwithstatus(commandstring, ctr[TR_INSTALLING_LANG_CACHE]))
722 {
723 errorbox(ctr[TR_UNABLE_TO_INSTALL_LANG_CACHE]);
724 goto EXIT;
725 }
edd536b6
MT
726
727 if (raid_disk)
728 sprintf(string, "root=%sp3", hdparams.devnode);
729 else
730 sprintf(string, "root=%s3", hdparams.devnode);
731 replace( "/harddisk/boot/grub/grub.conf", "root=ROOT", string);
edd536b6 732 replace( "/harddisk/boot/grub/grubbatch", "DEVICE", hdparams.devnode);
fd0763dc 733
edd536b6
MT
734 /* restore permissions */
735 chmod("/harddisk/boot/grub/grubbatch", S_IXUSR | S_IRUSR | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH);
736
edd536b6 737 snprintf(commandstring, STRING_SIZE,
532a3663 738 "/sbin/chroot /harddisk /boot/grub/grubbatch");
edd536b6
MT
739 if (runcommandwithstatus(commandstring, ctr[TR_INSTALLING_GRUB])) {
740 errorbox(ctr[TR_UNABLE_TO_INSTALL_GRUB]);
741 goto EXIT;
742 }
743
73d9a908
MT
744 /* Update /etc/fstab */
745 replace( "/harddisk/etc/fstab", "DEVICE", hdparams.devnode);
746
22b9e405
MT
747 /* Install bootsplash */
748 mysystem("/bin/installbootsplash.sh");
749
750 mysystem("ln -s grub.conf /harddisk/boot/grub/menu.lst");
751 mysystem("umount /harddisk/proc");
752 mysystem("umount /harddisk/dev");
753
73d9a908
MT
754 if (!unattended) {
755 sprintf(message, ctr[TR_CONGRATULATIONS_LONG],
756 NAME, SNAME, SNAME, NAME, NAME, NAME);
757 newtWinMessage(ctr[TR_CONGRATULATIONS], ctr[TR_OK], message);
758 }
22b9e405
MT
759
760 allok = 1;
edd536b6 761
d6aaa55d 762EXIT:
10bc6f06 763 fprintf(flog, "Install program ended.\n");
d6aaa55d
MT
764 fflush(flog);
765 fclose(flog);
766
10bc6f06 767 if (!(allok))
d6aaa55d 768 newtWinMessage(title, ctr[TR_OK], ctr[TR_PRESS_OK_TO_REBOOT]);
10bc6f06 769
d6aaa55d 770 newtFinished();
10bc6f06 771
d6aaa55d 772 freekeyvalues(ethernetkv);
d6aaa55d 773
10bc6f06 774 if (allok && !allok_fastexit)
d6aaa55d
MT
775 {
776 /* /proc is needed by the module checker. We have to mount it
777 * so it can be seen by setup, which is run chrooted. */
532a3663 778 if (system("/bin/mount proc -t proc /harddisk/proc"))
d6aaa55d
MT
779 printf("Unable to mount proc in /harddisk.");
780 else
781 {
3a1019f6
MT
782
783 if (!unattended) {
069680ac 784 if (system("/sbin/chroot /harddisk /usr/local/sbin/setup /dev/tty2 INSTALL"))
3a1019f6
MT
785 printf("Unable to run setup.\n");
786 }
787 else {
788 fprintf(flog, "Entering unattended setup\n");
789 unattended_setup(unattendedkv);
790 snprintf(commandstring, STRING_SIZE, "/bin/sleep 10");
791 runcommandwithstatus(commandstring, "Unattended installation finished, system will reboot");
792 }
793
532a3663 794 if (system("/bin/umount /harddisk/proc"))
d6aaa55d
MT
795 printf("Unable to umount /harddisk/proc.\n");
796 }
797 }
798
799 fcloseall();
800
3a1019f6
MT
801 if (swap_file) {
802 if (raid_disk)
803 snprintf(commandstring, STRING_SIZE, "/bin/swapoff %sp2", hdparams.devnode);
804 else
805 snprintf(commandstring, STRING_SIZE, "/bin/swapoff %s2", hdparams.devnode);
806 }
807
808 newtFinished();
809
532a3663
MT
810 system("/bin/umount /harddisk/var");
811 system("/bin/umount /harddisk/boot");
812 system("/bin/umount /harddisk");
10bc6f06 813
d6aaa55d
MT
814 system("/etc/halt");
815
816 return 0;
817}