1995-04-27 12:50:35 +00:00
|
|
|
/*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-04-27 12:50:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
2006-08-07 23:35:49 +00:00
|
|
|
* Jordan Hubbard. All rights reserved.
|
1995-04-27 12:50:35 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-08-07 23:35:49 +00:00
|
|
|
#include "sade.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
|
|
|
|
2000-10-29 09:57:50 +00:00
|
|
|
const char *StartName; /* Initial contents of argv[0] */
|
2008-05-11 17:23:57 +00:00
|
|
|
const char *ProgName = "sade";
|
2000-10-29 09:57:50 +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;
|
2000-10-29 09:57:50 +00:00
|
|
|
|
|
|
|
/* Record name to be able to restart */
|
|
|
|
StartName = argv[0];
|
1995-04-27 12:50:35 +00:00
|
|
|
|
2000-01-04 04:31:29 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
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
|
|
|
|
2000-06-05 13:17:23 +00:00
|
|
|
#ifdef PC98
|
|
|
|
{
|
|
|
|
/* XXX */
|
|
|
|
char *p = getenv("TERM");
|
|
|
|
if (p && strcmp(p, "cons25") == 0)
|
2007-07-04 00:00:41 +00:00
|
|
|
setenv("TERM", "cons25w", 1);
|
2000-06-05 13:17:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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-14 20:59:07 +00:00
|
|
|
|
1996-04-28 20:54:11 +00:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "-fake")) {
|
1999-02-05 22:15:52 +00:00
|
|
|
variable_set2(VAR_DEBUG, "YES", 0);
|
1996-04-28 20:54:11 +00:00
|
|
|
Fake = TRUE;
|
|
|
|
msgConfirm("I'll be just faking it from here on out, OK?");
|
|
|
|
}
|
2001-10-12 07:36:34 +00:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "-restart"))
|
|
|
|
Restarting = TRUE;
|
1996-04-28 20:54:11 +00:00
|
|
|
|
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
|
|
|
|
2001-09-24 10:16:23 +00:00
|
|
|
/* Initialize driver modules, if we haven't already done so (ie,
|
|
|
|
the user hit Ctrl-C -> Restart. */
|
|
|
|
if (!pvariable_get("modulesInitialize")) {
|
|
|
|
pvariable_set("modulesInitialize=1");
|
|
|
|
}
|
2000-10-31 07:39:07 +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") */
|
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"
|
2001-03-29 19:56:20 +00:00
|
|
|
"down. If you can reproduce the problem, please turn Debug on\n"
|
|
|
|
"in the Options menu for the extra information it provides\n"
|
|
|
|
"in debugging problems like this.", status);
|
2006-08-07 23:35:49 +00:00
|
|
|
;
|
1997-04-20 16:46:36 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2006-08-07 23:35:49 +00:00
|
|
|
dmenuOpen(&MenuMain, &choice, &scroll, &curr, &max, FALSE);
|
1999-01-08 00:14:22 +00:00
|
|
|
if (getpid() != 1
|
2006-08-07 23:35:49 +00:00
|
|
|
|| !msgNoYes("Are you sure you wish to exit?")
|
1999-01-08 00:14:22 +00:00
|
|
|
)
|
1995-05-04 19:48:19 +00:00
|
|
|
break;
|
|
|
|
}
|
1995-05-28 09:31:44 +00:00
|
|
|
|
2006-08-08 07:51:58 +00:00
|
|
|
/* Shut down curses */
|
|
|
|
endwin();
|
|
|
|
|
|
|
|
return 0;
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|