-/* $NetBSD: main.c,v 1.3 1995/04/22 10:37:01 cgd Exp $ */
+/* $NetBSD: main.c,v 1.21 2003/08/07 09:37:43 agc Exp $ */
/*
* Copyright (c) 1983, 1993
* 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.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
#ifndef lint
-static char copyright[] =
-"@(#) Copyright (c) 1983, 1993\n\
- The Regents of the University of California. All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
+ The Regents of the University of California. All rights reserved.\n");
#endif /* not lint */
#ifndef lint
#if 0
-static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
+static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/28/95";
#else
-static char rcsid[] = "$NetBSD: main.c,v 1.3 1995/04/22 10:37:01 cgd Exp $";
+__RCSID("$NetBSD: main.c,v 1.21 2003/08/07 09:37:43 agc Exp $");
#endif
#endif /* not lint */
-#include "externs.h"
+#include <fcntl.h>
+#include <setjmp.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <unistd.h>
+#include "extern.h"
+#include "restart.h"
-/*ARGSUSED*/
-main(argc, argv)
- int argc;
- register char **argv;
+int
+main(int argc, char **argv)
{
- register char *p;
- int i;
+ char *p;
+ int a,i;
+ int fd;
- (void) srand(getpid());
- issetuid = getuid() != geteuid();
- if (p = rindex(*argv, '/'))
+ gid = getgid();
+ egid = getegid();
+ setegid(gid);
+
+ fd = open("/dev/null", O_RDONLY);
+ if (fd < 3)
+ exit(1);
+ close(fd);
+
+ srandom((u_long)time(NULL));
+
+ if ((p = strrchr(*argv, '/')) != NULL)
p++;
else
p = *argv;
+
if (strcmp(p, "driver") == 0 || strcmp(p, "saildriver") == 0)
mode = MODE_DRIVER;
else if (strcmp(p, "sail.log") == 0)
mode = MODE_LOGGER;
else
mode = MODE_PLAYER;
- while ((p = *++argv) && *p == '-')
- switch (p[1]) {
+
+ while ((a = getopt(argc, argv, "dsxlb")) != -1)
+ switch (a) {
case 'd':
mode = MODE_DRIVER;
break;
case 's':
mode = MODE_LOGGER;
break;
- case 'D':
- debug++;
- break;
case 'x':
- randomize;
+ randomize++;
break;
case 'l':
longfmt++;
fprintf(stderr, "SAIL: Unknown flag %s.\n", p);
exit(1);
}
+
+ argc -= optind;
+ argv += optind;
+
if (*argv)
game = atoi(*argv);
else
game = -1;
- if (i = setjmp(restart))
+
+ if ((i = setjmp(restart)) != 0)
mode = i;
+
switch (mode) {
case MODE_PLAYER:
return pl_main();