main.c revision 55942
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 55942 2000-01-14 02:17:57Z hosokawa $
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 <sys/signal.h>
39#include <sys/fcntl.h>
40
41static void
42screech(int sig)
43{
44    msgDebug("\007Signal %d caught!  That's bad!\n", sig);
45    longjmp(BailOut, sig);
46}
47
48int
49main(int argc, char **argv)
50{
51    int choice, scroll, curr, max, status;
52
53    /* Catch fatal signals and complain about them if running as init */
54    if (getpid() == 1) {
55	signal(SIGBUS, screech);
56	signal(SIGSEGV, screech);
57    }
58    signal(SIGPIPE, SIG_IGN);
59
60    /* We don't work too well when running as non-root anymore */
61    if (geteuid() != 0) {
62	fprintf(stderr, "Error: This utility should only be run as root.\n");
63	return 1;
64    }
65
66    /* Set up whatever things need setting up */
67    systemInitialize(argc, argv);
68
69    /* Set default flag and variable values */
70    installVarDefaults(NULL);
71    /* only when multi-user is it reasonable to do this here */
72    if (!RunningAsInit)
73	installEnvironment();
74
75    if (argc > 1 && !strcmp(argv[1], "-fake")) {
76	variable_set2(VAR_DEBUG, "YES", 0);
77	Fake = TRUE;
78	msgConfirm("I'll be just faking it from here on out, OK?");
79    }
80
81    /* Try to preserve our scroll-back buffer */
82    if (OnVTY) {
83	for (curr = 0; curr < 25; curr++)
84	    putchar('\n');
85    }
86    /* Move stderr aside */
87    if (DebugFD)
88	dup2(DebugFD, 2);
89
90    /* Initialize PC-card */
91    pccardInitialize();
92
93    /* Probe for all relevant devices on the system */
94    deviceGetAll();
95
96    /* First, see if we have any arguments to process (and argv[0] counts if it's not "sysinstall") */
97    if (!RunningAsInit) {
98	int i, start_arg;
99
100	if (!strstr(argv[0], "sysinstall"))
101	    start_arg = 0;
102	else if (Fake)
103	    start_arg = 2;
104	else
105	    start_arg = 1;
106	for (i = start_arg; i < argc; i++) {
107	    if (DITEM_STATUS(dispatchCommand(argv[i])) != DITEM_SUCCESS)
108		systemShutdown(1);
109	}
110	if (argc > start_arg)
111	    systemShutdown(0);
112    }
113    else
114	dispatch_load_file_int(TRUE);
115
116    status = setjmp(BailOut);
117    if (status) {
118	msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
119		   "If you can reproduce the problem, please turn Debug on in\n"
120		   "the Options menu for the extra information it provides in\n"
121		   "debugging problems like this.", status);
122	systemShutdown(status);
123    }
124
125    /* Begin user dialog at outer menu */
126    dialog_clear();
127    while (1) {
128	choice = scroll = curr = max = 0;
129	dmenuOpen(&MenuInitial, &choice, &scroll, &curr, &max, TRUE);
130	if (getpid() != 1
131#ifdef __alpha__
132	    || !msgYesNo("Are you sure you wish to exit?  The system will halt.")
133#else
134	    || !msgYesNo("Are you sure you wish to exit?  The system will reboot\n"
135		         "(be sure to remove any floppies from the drives).")
136#endif
137	    )
138	    break;
139    }
140
141    /* Say goodnight, Gracie */
142    systemShutdown(0);
143
144    return 0; /* We should never get here */
145}
146