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.
|
|
|
|
*
|
1997-06-05 09:48:03 +00:00
|
|
|
* $Id: main.c,v 1.45 1997/04/20 16:46:31 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-12-07 10:34:59 +00:00
|
|
|
#include <sys/signal.h>
|
1996-09-26 21:03:35 +00:00
|
|
|
#include <sys/fcntl.h>
|
1995-12-07 10:34:59 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
screech(int sig)
|
|
|
|
{
|
1997-02-20 16:29:12 +00:00
|
|
|
msgDebug("\007Signal %d caught! That's bad!\n", sig);
|
1997-04-20 16:46:36 +00:00
|
|
|
longjmp(BailOut, sig);
|
1995-12-07 10:34:59 +00:00
|
|
|
}
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
1997-04-20 16:46:36 +00:00
|
|
|
int choice, scroll, curr, max, status;
|
1995-04-27 12:50:35 +00:00
|
|
|
|
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);
|
1997-02-15 15:24:14 +00:00
|
|
|
installEnvironment();
|
1997-02-14 20:59:07 +00:00
|
|
|
|
1996-04-28 20:54:11 +00:00
|
|
|
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 */
|
1996-12-12 08:23:51 +00:00
|
|
|
if (OnVTY) {
|
1995-06-11 19:33:05 +00:00
|
|
|
for (curr = 0; curr < 25; curr++)
|
|
|
|
putchar('\n');
|
1996-12-12 08:23:51 +00:00
|
|
|
}
|
1997-01-29 21:45:30 +00:00
|
|
|
/* Move stderr aside */
|
|
|
|
if (DebugFD)
|
|
|
|
dup2(DebugFD, 2);
|
1995-06-11 19:33:05 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
1997-01-17 10:57:26 +00:00
|
|
|
else {
|
1996-12-11 09:35:06 +00:00
|
|
|
FILE *fp;
|
1997-01-16 10:24:09 +00:00
|
|
|
char buf[BUFSIZ];
|
1996-09-26 21:03:35 +00:00
|
|
|
|
1996-12-11 09:35:06 +00:00
|
|
|
fp = fopen("install.cfg", "r");
|
|
|
|
if (fp) {
|
1996-09-26 21:03:35 +00:00
|
|
|
msgNotify("Loading pre-configuration file");
|
1997-06-05 09:48:03 +00:00
|
|
|
variable_set2(VAR_NONINTERACTIVE, "YES");
|
1997-01-16 10:24:09 +00:00
|
|
|
while (fgets(buf, sizeof buf, fp)) {
|
|
|
|
if (DITEM_STATUS(dispatchCommand(buf)) != DITEM_SUCCESS) {
|
|
|
|
msgDebug("Command `%s' failed - rest of script aborted.\n", buf);
|
|
|
|
break;
|
|
|
|
}
|
1996-09-26 21:03:35 +00:00
|
|
|
}
|
1996-12-11 09:35:06 +00:00
|
|
|
fclose(fp);
|
1997-06-05 09:48:03 +00:00
|
|
|
variable_unset(VAR_NONINTERACTIVE);
|
1996-09-26 21:03:35 +00:00
|
|
|
}
|
|
|
|
}
|
1997-04-20 16:46:36 +00:00
|
|
|
|
|
|
|
status = setjmp(BailOut);
|
|
|
|
if (status) {
|
|
|
|
msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
|
|
|
|
"this thing down! Please report this unfortunate incident\n"
|
|
|
|
"to jkh@FreeBSD.org. If you can reproduce the problem, please\n"
|
|
|
|
"also turn Debug on in the Options menu for the extra information\n"
|
|
|
|
"it provides in debugging problems like this. Thanks!", status);
|
|
|
|
systemShutdown(status);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|