1995-04-27 12:50:35 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last attempt in the `sysinstall' line, the next
|
|
|
|
* generation being slated for what's essentially a complete rewrite.
|
|
|
|
*
|
1996-09-15 23:55:23 +00:00
|
|
|
* $Id: main.c,v 1.26 1996/09/08 01:39:24 jkh Exp $
|
1995-04-27 12:50:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
1995-05-30 08:29:07 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
1995-04-27 12:50:35 +00:00
|
|
|
* point in the file.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sysinstall.h"
|
1995-06-11 19:33:05 +00:00
|
|
|
#include <stdio.h>
|
1995-12-07 10:34:59 +00:00
|
|
|
#include <sys/signal.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
screech(int sig)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "\007Fatal signal %d caught! I'm dead..\n", sig);
|
1996-06-26 09:09:30 +00:00
|
|
|
if (RunningAsInit)
|
|
|
|
pause();
|
|
|
|
else
|
|
|
|
exit(1);
|
1995-12-07 10:34:59 +00:00
|
|
|
}
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int choice, scroll, curr, max;
|
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
/* Catch fatal signals and complain about them if running as init */
|
1995-12-07 10:34:59 +00:00
|
|
|
if (getpid() == 1) {
|
|
|
|
signal(SIGBUS, screech);
|
|
|
|
signal(SIGSEGV, screech);
|
|
|
|
}
|
1996-04-07 03:52:36 +00:00
|
|
|
|
|
|
|
/* We don't work too well when running as non-root anymore */
|
1995-05-04 03:51:22 +00:00
|
|
|
if (geteuid() != 0) {
|
1996-04-07 03:52:36 +00:00
|
|
|
fprintf(stderr, "Error: This utility should only be run as root.\n");
|
|
|
|
return 1;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1996-04-07 03:52:36 +00:00
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Set up whatever things need setting up */
|
|
|
|
systemInitialize(argc, argv);
|
|
|
|
|
1996-04-28 20:54:11 +00:00
|
|
|
/* Set default flag and variable values */
|
|
|
|
installVarDefaults(NULL);
|
|
|
|
|
|
|
|
if (argc > 1 && !strcmp(argv[1], "-fake")) {
|
|
|
|
variable_set2(VAR_DEBUG, "YES");
|
|
|
|
Fake = TRUE;
|
|
|
|
msgConfirm("I'll be just faking it from here on out, OK?");
|
|
|
|
}
|
|
|
|
|
1995-06-11 19:33:05 +00:00
|
|
|
/* Try to preserve our scroll-back buffer */
|
|
|
|
if (OnVTY)
|
|
|
|
for (curr = 0; curr < 25; curr++)
|
|
|
|
putchar('\n');
|
|
|
|
|
1995-05-16 11:37:27 +00:00
|
|
|
/* Probe for all relevant devices on the system */
|
|
|
|
deviceGetAll();
|
|
|
|
|
1996-06-26 09:09:30 +00:00
|
|
|
/* First, see if we have any arguments to process (and argv[0] counts if it's not "sysinstall") */
|
|
|
|
if (!RunningAsInit) {
|
|
|
|
int i, start_arg;
|
|
|
|
|
1996-07-12 11:14:15 +00:00
|
|
|
/* Try to set ourselves up as a CDROM if we can do that first */
|
|
|
|
if (DITEM_STATUS(mediaSetCDROM(NULL)) == DITEM_SUCCESS) {
|
|
|
|
/* If we can't initialize it, it's probably not a FreeBSD CDROM so punt on it */
|
|
|
|
if (!mediaDevice->init(mediaDevice))
|
|
|
|
mediaDevice = NULL;
|
|
|
|
}
|
|
|
|
|
1996-06-26 09:09:30 +00:00
|
|
|
if (!strstr(argv[0], "sysinstall"))
|
|
|
|
start_arg = 0;
|
1996-07-22 18:43:21 +00:00
|
|
|
else if (Fake)
|
|
|
|
start_arg = 2;
|
1996-06-26 09:09:30 +00:00
|
|
|
else
|
|
|
|
start_arg = 1;
|
|
|
|
for (i = start_arg; i < argc; i++) {
|
1996-05-16 11:47:46 +00:00
|
|
|
if (DITEM_STATUS(dispatchCommand(argv[i])) != DITEM_SUCCESS)
|
|
|
|
systemShutdown(1);
|
1996-06-26 09:09:30 +00:00
|
|
|
}
|
|
|
|
if (argc > start_arg)
|
|
|
|
systemShutdown(0);
|
1996-05-16 11:47:46 +00:00
|
|
|
}
|
|
|
|
|
1996-09-08 01:39:25 +00:00
|
|
|
/* If we have a compiled-in startup config file name, look for it and try to load it on startup */
|
|
|
|
#if defined(LOAD_CONFIG_FILE)
|
|
|
|
else {
|
1996-09-15 23:55:23 +00:00
|
|
|
extern char *distWanted;
|
|
|
|
|
|
|
|
distWanted = (char *)1; /* Tell mediaSetFloppy() to try floppy now */
|
1996-09-08 01:39:25 +00:00
|
|
|
/* Try to open the floppy drive if we can do that first */
|
|
|
|
if (DITEM_STATUS(mediaSetFloppy(NULL)) != DITEM_FAILURE && mediaDevice->init(mediaDevice)) {
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = mediaDevice->get(mediaDevice, LOAD_CONFIG_FILE, TRUE);
|
|
|
|
if (fd > 0) {
|
|
|
|
Attribs attrs[512]; /* Don't have more than this many attrs in one file, ok? :-) */
|
|
|
|
|
|
|
|
msgNotify("Loading %s pre-configuration file", LOAD_CONFIG_FILE);
|
|
|
|
if (DITEM_STATUS(attr_parse(attrs, fd)) == DITEM_SUCCESS) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; attrs[i].name; i++)
|
|
|
|
variable_set2(attrs[i].name, attrs[i].value);
|
|
|
|
}
|
|
|
|
mediaDevice->close(mediaDevice, fd);
|
|
|
|
}
|
|
|
|
mediaDevice->shutdown(mediaDevice);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Begin user dialog at outer menu */
|
1996-09-08 01:39:25 +00:00
|
|
|
dialog_clear();
|
1995-05-04 19:48:19 +00:00
|
|
|
while (1) {
|
|
|
|
choice = scroll = curr = max = 0;
|
1996-07-02 01:03:55 +00:00
|
|
|
dmenuOpen(&MenuInitial, &choice, &scroll, &curr, &max, TRUE);
|
1995-12-07 10:34:59 +00:00
|
|
|
if (getpid() != 1 || !msgYesNo("Are you sure you wish to exit? The system will reboot\n"
|
|
|
|
"(be sure to remove any floppies from the drives)."))
|
1995-05-04 19:48:19 +00:00
|
|
|
break;
|
|
|
|
}
|
1995-05-28 09:31:44 +00:00
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Say goodnight, Gracie */
|
1996-05-16 11:47:46 +00:00
|
|
|
systemShutdown(0);
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1996-05-16 11:47:46 +00:00
|
|
|
return 0; /* We should never get here */
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|