main.c revision 55390
1/*
2 * The new sysinstall program.
3 *
4 * This is probably the last attempt in the `sysinstall' line, the next
5 * generation being slated for what's essentially a complete rewrite.
6 *
7 * $FreeBSD: head/usr.sbin/sade/main.c 55390 2000-01-04 04:31:29Z jkh $
8 *
9 * Copyright (c) 1995
10 *	Jordan Hubbard.  All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 *    notice, this list of conditions and the following disclaimer,
17 *    verbatim and that no modifications are made prior to this
18 *    point in the file.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 *    notice, this list of conditions and the following disclaimer in the
21 *    documentation and/or other materials provided with the distribution.
22 *
23 * THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 */
36
37#include "sysinstall.h"
38#include "pccard_conf.h"
39#include <sys/signal.h>
40#include <sys/fcntl.h>
41
42static void
43screech(int sig)
44{
45    msgDebug("\007Signal %d caught!  That's bad!\n", sig);
46    longjmp(BailOut, sig);
47}
48
49int
50main(int argc, char **argv)
51{
52    int choice, scroll, curr, max, status;
53
54    /* Catch fatal signals and complain about them if running as init */
55    if (getpid() == 1) {
56	signal(SIGBUS, screech);
57	signal(SIGSEGV, screech);
58    }
59    signal(SIGPIPE, SIG_IGN);
60
61    /* We don't work too well when running as non-root anymore */
62    if (geteuid() != 0) {
63	fprintf(stderr, "Error: This utility should only be run as root.\n");
64	return 1;
65    }
66
67    /* Set up whatever things need setting up */
68    systemInitialize(argc, argv);
69
70    /* Set default flag and variable values */
71    installVarDefaults(NULL);
72    /* only when multi-user is it reasonable to do this here */
73    if (!RunningAsInit)
74	installEnvironment();
75
76    if (argc > 1 && !strcmp(argv[1], "-fake")) {
77	variable_set2(VAR_DEBUG, "YES", 0);
78	Fake = TRUE;
79	msgConfirm("I'll be just faking it from here on out, OK?");
80    }
81
82    /* Try to preserve our scroll-back buffer */
83    if (OnVTY) {
84	for (curr = 0; curr < 25; curr++)
85	    putchar('\n');
86    }
87    /* Move stderr aside */
88    if (DebugFD)
89	dup2(DebugFD, 2);
90
91#ifdef PCCARD
92    /* Initialize PC-card */
93    pccardInitialize();
94#endif
95
96    /* Probe for all relevant devices on the system */
97    deviceGetAll();
98
99    /* First, see if we have any arguments to process (and argv[0] counts if it's not "sysinstall") */
100    if (!RunningAsInit) {
101	int i, start_arg;
102
103	if (!strstr(argv[0], "sysinstall"))
104	    start_arg = 0;
105	else if (Fake)
106	    start_arg = 2;
107	else
108	    start_arg = 1;
109	for (i = start_arg; i < argc; i++) {
110	    if (DITEM_STATUS(dispatchCommand(argv[i])) != DITEM_SUCCESS)
111		systemShutdown(1);
112	}
113	if (argc > start_arg)
114	    systemShutdown(0);
115    }
116    else
117	dispatch_load_file_int(TRUE);
118
119    status = setjmp(BailOut);
120    if (status) {
121	msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
122		   "If you can reproduce the problem, please turn Debug on in\n"
123		   "the Options menu for the extra information it provides in\n"
124		   "debugging problems like this.", status);
125	systemShutdown(status);
126    }
127
128    /* Begin user dialog at outer menu */
129    dialog_clear();
130    while (1) {
131	choice = scroll = curr = max = 0;
132	dmenuOpen(&MenuInitial, &choice, &scroll, &curr, &max, TRUE);
133	if (getpid() != 1
134#ifdef __alpha__
135	    || !msgYesNo("Are you sure you wish to exit?  The system will halt.")
136#else
137	    || !msgYesNo("Are you sure you wish to exit?  The system will reboot\n"
138		         "(be sure to remove any floppies from the drives).")
139#endif
140	    )
141	    break;
142    }
143
144    /* Say goodnight, Gracie */
145    systemShutdown(0);
146
147    return 0; /* We should never get here */
148}
149