POSIX says mprotect(2)'s first argument shall not be const.
[dragonfly.git] / games / rogue / machdep.c
blobc3d2f23ada8dec4c6696f9a5ff25bd1ab3f7d2ff
1 /*-
2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Timothy C. Stoehr.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
32 * @(#)machdep.c 8.1 (Berkeley) 5/31/93
33 * $FreeBSD: src/games/rogue/machdep.c,v 1.6.2.1 2001/12/17 12:43:23 phantom Exp $
34 * $DragonFly: src/games/rogue/machdep.c,v 1.4 2006/09/09 02:21:49 pavalos Exp $
38 * machdep.c
40 * This source herein may be modified and/or distributed by anybody who
41 * so desires, with the following restrictions:
42 * 1.) No portion of this notice shall be removed.
43 * 2.) Credit shall not be taken for the creation of this source.
44 * 3.) This code is not to be traded, sold, or used for personal
45 * gain or profit.
49 /* Included in this file are all system dependent routines. Extensive use
50 * of #ifdef's will be used to compile the appropriate code on each system:
52 * UNIX: all UNIX systems.
53 * UNIX_BSD4_2: UNIX BSD 4.2 and later, UTEK, (4.1 BSD too?)
54 * UNIX_SYSV: UNIX system V
55 * UNIX_V7: UNIX version 7
57 * All UNIX code should be included between the single "#ifdef UNIX" at the
58 * top of this file, and the "#endif" at the bottom.
60 * To change a routine to include a new UNIX system, simply #ifdef the
61 * existing routine, as in the following example:
63 * To make a routine compatible with UNIX system 5, change the first
64 * function to the second:
66 * md_function()
67 * {
68 * code;
69 * }
71 * md_function()
72 * {
73 * #ifdef UNIX_SYSV
74 * sys5code;
75 * #else
76 * code;
77 * #endif
78 * }
80 * Appropriate variations of this are of course acceptible.
81 * The use of "#elseif" is discouraged because of non-portability.
82 * If the correct #define doesn't exist, "UNIX_SYSV" in this case, make it up
83 * and insert it in the list at the top of the file. Alter the CFLAGS
84 * in you Makefile appropriately.
88 #ifdef UNIX
90 #include <stdio.h>
91 #include <sys/types.h>
92 #include <sys/file.h>
93 #include <sys/stat.h>
94 #include <sys/wait.h>
95 #include <pwd.h>
96 #include <time.h>
98 #ifdef UNIX_BSD4_2
99 #include <sys/time.h>
100 #endif
102 #ifdef UNIX_SYSV
103 #include <time.h>
104 #endif
106 #include <signal.h>
107 #include <stdlib.h>
108 #include <termios.h>
109 #include <unistd.h>
110 #include "rogue.h"
111 #include "pathnames.h"
113 /* md_slurp:
115 * This routine throws away all keyboard input that has not
116 * yet been read. It is used to get rid of input that the user may have
117 * typed-ahead.
119 * This function is not necessary, so it may be stubbed. The might cause
120 * message-line output to flash by because the game has continued to read
121 * input without waiting for the user to read the message. Not such a
122 * big deal.
125 void
126 md_slurp(void)
128 fpurge(stdin);
131 /* md_control_keybord():
133 * This routine is much like md_cbreak_no_echo_nonl() below. It sets up the
134 * keyboard for appropriate input. Specifically, it prevents the tty driver
135 * from stealing characters. For example, ^Y is needed as a command
136 * character, but the tty driver intercepts it for another purpose. Any
137 * such behavior should be stopped. This routine could be avoided if
138 * we used RAW mode instead of CBREAK. But RAW mode does not allow the
139 * generation of keyboard signals, which the program uses.
141 * The parameter 'mode' when true, indicates that the keyboard should
142 * be set up to play rogue. When false, it should be restored if
143 * necessary.
145 * This routine is not strictly necessary and may be stubbed. This may
146 * cause certain command characters to be unavailable.
149 void
150 md_control_keybord(boolean mode)
152 static boolean called_before = 0;
153 #ifdef UNIX_BSD4_2
154 static struct ltchars ltc_orig;
155 static struct tchars tc_orig;
156 struct ltchars ltc_temp;
157 struct tchars tc_temp;
158 #endif
159 #ifdef UNIX_SYSV
160 static struct termio _oldtty;
161 struct termio _tty;
162 #endif
164 if (!called_before) {
165 called_before = 1;
166 #ifdef UNIX_BSD4_2
167 ioctl(0, TIOCGETC, &tc_orig);
168 ioctl(0, TIOCGLTC, &ltc_orig);
169 #endif
170 #ifdef UNIX_SYSV
171 ioctl(0, TCGETA, &_oldtty);
172 #endif
174 #ifdef UNIX_BSD4_2
175 ltc_temp = ltc_orig;
176 tc_temp = tc_orig;
177 #endif
178 #ifdef UNIX_SYSV
179 _tty = _oldtty;
180 #endif
182 if (!mode) {
183 #ifdef UNIX_BSD4_2
184 ltc_temp.t_suspc = ltc_temp.t_dsuspc = -1;
185 ltc_temp.t_rprntc = ltc_temp.t_flushc = -1;
186 ltc_temp.t_werasc = ltc_temp.t_lnextc = -1;
187 tc_temp.t_startc = tc_temp.t_stopc = -1;
188 #endif
189 #ifdef UNIX_SYSV
190 _tty.c_cc[VSWTCH] = CNSWTCH;
191 #endif
193 #ifdef UNIX_BSD4_2
194 ioctl(0, TIOCSETC, &tc_temp);
195 ioctl(0, TIOCSLTC, &ltc_temp);
196 #endif
197 #ifdef UNIX_SYSV
198 ioctl(0, TCSETA, &_tty);
199 #endif
202 /* md_heed_signals():
204 * This routine tells the program to call particular routines when
205 * certain interrupts/events occur:
207 * SIGINT: call onintr() to interrupt fight with monster or long rest.
208 * SIGQUIT: call byebye() to check for game termination.
209 * SIGHUP: call error_save() to save game when terminal hangs up.
211 * On VMS, SIGINT and SIGQUIT correspond to ^C and ^Y.
213 * This routine is not strictly necessary and can be stubbed. This will
214 * mean that the game cannot be interrupted properly with keyboard
215 * input, this is not usually critical.
218 void
219 md_heed_signals(void)
221 signal(SIGINT, (sig_t)onintr);
222 signal(SIGQUIT, (sig_t)byebye);
223 signal(SIGHUP, (sig_t)error_save);
226 /* md_ignore_signals():
228 * This routine tells the program to completely ignore the events mentioned
229 * in md_heed_signals() above. The event handlers will later be turned on
230 * by a future call to md_heed_signals(), so md_heed_signals() and
231 * md_ignore_signals() need to work together.
233 * This function should be implemented or the user risks interrupting
234 * critical sections of code, which could cause score file, or saved-game
235 * file, corruption.
238 void
239 md_ignore_signals(void)
241 signal(SIGQUIT, SIG_IGN);
242 signal(SIGINT, SIG_IGN);
243 signal(SIGHUP, SIG_IGN);
246 /* md_get_file_id():
248 * This function returns an integer that uniquely identifies the specified
249 * file. It need not check for the file's existence. In UNIX, the inode
250 * number is used.
252 * This function is used to identify saved-game files.
256 md_get_file_id(const char *fname)
258 struct stat sbuf;
260 if (stat(fname, &sbuf)) {
261 return(-1);
263 return((int)sbuf.st_ino);
266 /* md_link_count():
268 * This routine returns the number of hard links to the specified file.
270 * This function is not strictly necessary. On systems without hard links
271 * this routine can be stubbed by just returning 1.
275 md_link_count(const char *fname)
277 struct stat sbuf;
279 stat(fname, &sbuf);
280 return((int)sbuf.st_nlink);
283 /* md_gct(): (Get Current Time)
285 * This function returns the current year, month(1-12), day(1-31), hour(0-23),
286 * minute(0-59), and second(0-59). This is used for identifying the time
287 * at which a game is saved.
289 * This function is not strictly necessary. It can be stubbed by returning
290 * zeros instead of the correct year, month, etc. If your operating
291 * system doesn't provide all of the time units requested here, then you
292 * can provide only those that it does, and return zeros for the others.
293 * If you cannot provide good time values, then users may be able to copy
294 * saved-game files and play them.
297 void
298 md_gct(struct rogue_time *rt_buf)
300 struct tm *t;
301 time_t seconds;
303 time(&seconds);
304 t = localtime(&seconds);
306 rt_buf->year = t->tm_year;
307 rt_buf->month = t->tm_mon + 1;
308 rt_buf->day = t->tm_mday;
309 rt_buf->hour = t->tm_hour;
310 rt_buf->minute = t->tm_min;
311 rt_buf->second = t->tm_sec;
314 /* md_gfmt: (Get File Modification Time)
316 * This routine returns a file's date of last modification in the same format
317 * as md_gct() above.
319 * This function is not strictly necessary. It is used to see if saved-game
320 * files have been modified since they were saved. If you have stubbed the
321 * routine md_gct() above by returning constant values, then you may do
322 * exactly the same here.
323 * Or if md_gct() is implemented correctly, but your system does not provide
324 * file modification dates, you may return some date far in the past so
325 * that the program will never know that a saved-game file being modified.
326 * You may also do this if you wish to be able to restore games from
327 * saved-games that have been modified.
330 void
331 md_gfmt(const char *fname, struct rogue_time *rt_buf)
333 struct stat sbuf;
334 time_t seconds;
335 struct tm *t;
337 stat(fname, &sbuf);
338 seconds = sbuf.st_mtime;
339 t = localtime(&seconds);
341 rt_buf->year = t->tm_year;
342 rt_buf->month = t->tm_mon + 1;
343 rt_buf->day = t->tm_mday;
344 rt_buf->hour = t->tm_hour;
345 rt_buf->minute = t->tm_min;
346 rt_buf->second = t->tm_sec;
349 /* md_df: (Delete File)
351 * This function deletes the specified file, and returns true (1) if the
352 * operation was successful. This is used to delete saved-game files
353 * after restoring games from them.
355 * Again, this function is not strictly necessary, and can be stubbed
356 * by simply returning 1. In this case, saved-game files will not be
357 * deleted and can be replayed.
360 boolean
361 md_df(const char *fname)
363 if (unlink(fname)) {
364 return(0);
366 return(1);
369 /* md_gln: (Get login name)
371 * This routine returns the login name of the user. This string is
372 * used mainly for identifying users in score files.
374 * A dummy string may be returned if you are unable to implement this
375 * function, but then the score file would only have one name in it.
378 const char *
379 md_gln(void)
381 struct passwd *p;
382 char *s;
384 if ((s = getlogin()))
385 return (s);
386 if (!(p = getpwuid(getuid())))
387 return (NULL);
388 return (p->pw_name);
391 /* md_sleep:
393 * This routine causes the game to pause for the specified number of
394 * seconds.
396 * This routine is not particularly necessary at all. It is used for
397 * delaying execution, which is useful to this program at some times.
400 void
401 md_sleep(int nsecs)
403 sleep(nsecs);
406 /* md_getenv()
408 * This routine gets certain values from the user's environment. These
409 * values are strings, and each string is identified by a name. The names
410 * of the values needed, and their use, is as follows:
412 * ROGUEOPTS
413 * A string containing the various game options. This need not be
414 * defined.
415 * HOME
416 * The user's home directory. This is only used when the user specifies
417 * '~' as the first character of a saved-game file. This string need
418 * not be defined.
419 * SHELL
420 * The user's favorite shell. If not found, "/bin/sh" is assumed.
424 char *
425 md_getenv(const char *name)
427 char *value;
429 value = getenv(name);
431 return(value);
434 /* md_malloc()
436 * This routine allocates, and returns a pointer to, the specified number
437 * of bytes. This routines absolutely MUST be implemented for your
438 * particular system or the program will not run at all. Return zero
439 * when no more memory can be allocated.
442 char *
443 md_malloc(int n)
445 char *t;
447 t = malloc(n);
448 return(t);
451 /* md_gseed() (Get Seed)
453 * This function returns a seed for the random number generator (RNG). This
454 * seed causes the RNG to begin generating numbers at some point in its
455 * sequence. Without a random seed, the RNG will generate the same set
456 * of numbers, and every game will start out exactly the same way. A good
457 * number to use is the process id, given by getpid() on most UNIX systems.
459 * You need to find some single random integer, such as:
460 * process id.
461 * current time (minutes + seconds) returned from md_gct(), if implemented.
463 * It will not help to return "get_rand()" or "rand()" or the return value of
464 * any pseudo-RNG. If you don't have a random number, you can just return 1,
465 * but this means your games will ALWAYS start the same way, and will play
466 * exactly the same way given the same input.
470 md_gseed(void)
472 time_t seconds;
474 time(&seconds);
475 return((int)seconds);
478 /* md_exit():
480 * This function causes the program to discontinue execution and exit.
481 * This function must be implemented or the program will continue to
482 * hang when it should quit.
485 void
486 md_exit(int status)
488 exit(status);
491 /* md_lock():
493 * This function is intended to give the user exclusive access to the score
494 * file. It does so by flock'ing the score file. The full path name of the
495 * score file should be defined for any particular site in rogue.h. The
496 * constants _PATH_SCOREFILE defines this file name.
498 * When the parameter 'l' is non-zero (true), a lock is requested. Otherwise
499 * the lock is released.
502 void
503 md_lock(boolean l)
505 static int fd;
506 short tries;
508 if (l) {
509 if ((fd = open(_PATH_SCOREFILE, O_RDONLY)) < 1) {
510 message("cannot lock score file", 0);
511 return;
513 for (tries = 0; tries < 5; tries++)
514 if (!flock(fd, LOCK_EX|LOCK_NB))
515 return;
516 } else {
517 flock(fd, LOCK_NB);
518 close(fd);
522 /* md_shell():
524 * This function spawns a shell for the user to use. When this shell is
525 * terminated, the game continues. Since this program may often be run
526 * setuid to gain access to privileged files, care is taken that the shell
527 * is run with the user's REAL user id, and not the effective user id.
528 * The effective user id is restored after the shell completes.
531 void
532 md_shell(const char *shell)
534 int w;
535 pid_t pid;
537 pid = fork();
538 switch (pid) {
539 case -1:
540 break;
541 case 0:
542 /* revoke */
543 setgid(getgid());
544 execl(shell, shell, NULL);
545 _exit(255);
546 default:
547 waitpid(pid, &w, 0);
548 break;
552 #endif /* UNIX */