(top-level): Don't require cl when compiling.
[emacs.git] / src / sysdep.c
blobf4922944ba4029c609c8628d8eeb9dbd26fe12e9
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
25 #include <signal.h>
26 #include <stdio.h>
27 #include <setjmp.h>
28 #ifdef HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #include "lisp.h"
32 /* Including stdlib.h isn't necessarily enough to get srandom
33 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
34 #ifdef HAVE_RANDOM
35 #if 0 /* Don't prototype srandom; it takes an unsigned argument on
36 some systems, and an unsigned long on others, like FreeBSD
37 4.1. */
38 extern void srandom P_ ((unsigned int));
39 #endif
40 #endif
42 /* The w32 build defines select stuff in w32.h, which is included by
43 sys/select.h (included below). */
44 #ifndef WINDOWSNT
45 #include "sysselect.h"
46 #endif
48 #include "blockinput.h"
50 #ifdef WINDOWSNT
51 #define read sys_read
52 #define write sys_write
53 #include <windows.h>
54 #ifndef NULL
55 #define NULL 0
56 #endif
57 #endif /* not WINDOWSNT */
59 /* Does anyone other than VMS need this? */
60 #ifndef fwrite
61 #define sys_fwrite fwrite
62 #else
63 #undef fwrite
64 #endif
66 #include <sys/types.h>
67 #include <sys/stat.h>
68 #include <errno.h>
70 #ifdef HAVE_SETPGID
71 #if !defined (USG) || defined (BSD_PGRPS)
72 #undef setpgrp
73 #define setpgrp setpgid
74 #endif
75 #endif
77 /* Get SI_SRPC_DOMAIN, if it is available. */
78 #ifdef HAVE_SYS_SYSTEMINFO_H
79 #include <sys/systeminfo.h>
80 #endif
82 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
83 #include <dos.h>
84 #include "dosfns.h"
85 #include "msdos.h"
86 #include <sys/param.h>
88 #if __DJGPP__ > 1
89 extern int etext;
90 extern unsigned start __asm__ ("start");
91 #endif
92 #endif
94 #ifndef USE_CRT_DLL
95 #ifndef errno
96 extern int errno;
97 #endif
98 #endif
100 #ifdef VMS
101 #include <rms.h>
102 #include <ttdef.h>
103 #include <tt2def.h>
104 #include <iodef.h>
105 #include <ssdef.h>
106 #include <descrip.h>
107 #include <fibdef.h>
108 #include <atrdef.h>
109 #include <ctype.h>
110 #include <string.h>
111 #ifdef __GNUC__
112 #include <sys/file.h>
113 #else
114 #include <file.h>
115 #endif
116 #undef F_SETFL
117 #ifndef RAB$C_BID
118 #include <rab.h>
119 #endif
120 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
121 #endif /* VMS */
123 #ifndef VMS
124 #include <sys/file.h>
125 #endif /* not VMS */
127 #ifdef HAVE_FCNTL_H
128 #include <fcntl.h>
129 #endif
131 #ifndef MSDOS
132 #include <sys/ioctl.h>
133 #endif
135 #include "systty.h"
136 #include "syswait.h"
138 #ifdef BROKEN_TIOCGWINSZ
139 #undef TIOCGWINSZ
140 #undef TIOCSWINSZ
141 #endif
143 #if defined (USG)
144 #include <sys/utsname.h>
145 #include <memory.h>
146 #if defined (TIOCGWINSZ)
147 #ifdef NEED_SIOCTL
148 #include <sys/sioctl.h>
149 #endif
150 #ifdef NEED_PTEM_H
151 #include <sys/stream.h>
152 #include <sys/ptem.h>
153 #endif
154 #endif /* TIOCGWINSZ */
155 #endif /* USG */
157 extern int quit_char;
159 #include "keyboard.h"
160 #include "frame.h"
161 #include "window.h"
162 #include "termhooks.h"
163 #include "termchar.h"
164 #include "termopts.h"
165 #include "dispextern.h"
166 #include "process.h"
167 #include "cm.h" /* for reset_sys_modes */
169 #ifdef WINDOWSNT
170 #include <direct.h>
171 /* In process.h which conflicts with the local copy. */
172 #define _P_WAIT 0
173 int _CRTAPI1 _spawnlp (int, const char *, const char *, ...);
174 int _CRTAPI1 _getpid (void);
175 extern char *getwd (char *);
176 #endif
178 #ifdef NONSYSTEM_DIR_LIBRARY
179 #include "ndir.h"
180 #endif /* NONSYSTEM_DIR_LIBRARY */
182 #include "syssignal.h"
183 #include "systime.h"
184 #ifdef HAVE_UTIME_H
185 #include <utime.h>
186 #endif
188 #ifndef HAVE_UTIMES
189 #ifndef HAVE_STRUCT_UTIMBUF
190 /* We want to use utime rather than utimes, but we couldn't find the
191 structure declaration. We'll use the traditional one. */
192 struct utimbuf {
193 long actime;
194 long modtime;
196 #endif
197 #endif
199 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
200 #ifndef LPASS8
201 #define LPASS8 0
202 #endif
204 #ifdef BSD4_1
205 #define LNOFLSH 0100000
206 #endif
208 static int baud_convert[] =
209 #ifdef BAUD_CONVERT
210 BAUD_CONVERT;
211 #else
213 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
214 1800, 2400, 4800, 9600, 19200, 38400
216 #endif
218 #ifdef HAVE_SPEED_T
219 #include <termios.h>
220 #else
221 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
222 #else
223 #if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
224 #include <termios.h>
225 #endif
226 #endif
227 #endif
229 int emacs_ospeed;
231 void croak P_ ((char *)) NO_RETURN;
233 #ifdef AIXHFT
234 void hft_init P_ ((struct tty_display_info *));
235 void hft_reset P_ ((struct tty_display_info *));
236 #endif
238 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
240 SIGMASKTYPE sigprocmask_set;
243 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
245 /* Return the current working directory. Returns NULL on errors.
246 Any other returned value must be freed with free. This is used
247 only when get_current_dir_name is not defined on the system. */
248 char*
249 get_current_dir_name ()
251 char *buf;
252 char *pwd;
253 struct stat dotstat, pwdstat;
254 /* If PWD is accurate, use it instead of calling getwd. PWD is
255 sometimes a nicer name, and using it may avoid a fatal error if a
256 parent directory is searchable but not readable. */
257 if ((pwd = getenv ("PWD")) != 0
258 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
259 && stat (pwd, &pwdstat) == 0
260 && stat (".", &dotstat) == 0
261 && dotstat.st_ino == pwdstat.st_ino
262 && dotstat.st_dev == pwdstat.st_dev
263 #ifdef MAXPATHLEN
264 && strlen (pwd) < MAXPATHLEN
265 #endif
268 buf = (char *) malloc (strlen (pwd) + 1);
269 if (!buf)
270 return NULL;
271 strcpy (buf, pwd);
273 #ifdef HAVE_GETCWD
274 else
276 size_t buf_size = 1024;
277 buf = (char *) malloc (buf_size);
278 if (!buf)
279 return NULL;
280 for (;;)
282 if (getcwd (buf, buf_size) == buf)
283 break;
284 if (errno != ERANGE)
286 int tmp_errno = errno;
287 free (buf);
288 errno = tmp_errno;
289 return NULL;
291 buf_size *= 2;
292 buf = (char *) realloc (buf, buf_size);
293 if (!buf)
294 return NULL;
297 #else
298 else
300 /* We need MAXPATHLEN here. */
301 buf = (char *) malloc (MAXPATHLEN + 1);
302 if (!buf)
303 return NULL;
304 if (getwd (buf) == NULL)
306 int tmp_errno = errno;
307 free (buf);
308 errno = tmp_errno;
309 return NULL;
312 #endif
313 return buf;
315 #endif
318 /* Discard pending input on all input descriptors. */
320 void
321 discard_tty_input ()
323 #ifndef WINDOWSNT
324 struct emacs_tty buf;
326 if (noninteractive)
327 return;
329 #ifdef VMS
330 end_kbd_input ();
331 SYS$QIOW (0, fileno (CURTTY()->input), IO$_READVBLK|IO$M_PURGE, input_iosb, 0, 0,
332 &buf.main, 0, 0, terminator_mask, 0, 0);
333 queue_kbd_input ();
334 #else /* not VMS */
335 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
336 while (dos_keyread () != -1)
338 #else /* not MSDOS */
340 struct tty_display_info *tty;
341 for (tty = tty_list; tty; tty = tty->next)
343 if (tty->input) /* Is the device suspended? */
345 EMACS_GET_TTY (fileno (tty->input), &buf);
346 EMACS_SET_TTY (fileno (tty->input), &buf, 0);
350 #endif /* not MSDOS */
351 #endif /* not VMS */
352 #endif /* not WINDOWSNT */
356 #ifdef SIGTSTP
358 /* Arrange for character C to be read as the next input from
359 the terminal.
360 XXX What if we have multiple ttys?
363 void
364 stuff_char (char c)
366 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
367 return;
369 /* Should perhaps error if in batch mode */
370 #ifdef TIOCSTI
371 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
372 #else /* no TIOCSTI */
373 error ("Cannot stuff terminal input characters in this version of Unix");
374 #endif /* no TIOCSTI */
377 #endif /* SIGTSTP */
379 void
380 init_baud_rate (int fd)
382 if (noninteractive)
383 emacs_ospeed = 0;
384 else
386 #ifdef DOS_NT
387 emacs_ospeed = 15;
388 #else /* not DOS_NT */
389 #ifdef VMS
390 struct sensemode sg;
392 SYS$QIOW (0, fd, IO$_SENSEMODE, &sg, 0, 0,
393 &sg.class, 12, 0, 0, 0, 0 );
394 emacs_ospeed = sg.xmit_baud;
395 #else /* not VMS */
396 #ifdef HAVE_TERMIOS
397 struct termios sg;
399 sg.c_cflag = B9600;
400 tcgetattr (fd, &sg);
401 emacs_ospeed = cfgetospeed (&sg);
402 #else /* neither VMS nor TERMIOS */
403 #ifdef HAVE_TERMIO
404 struct termio sg;
406 sg.c_cflag = B9600;
407 #ifdef HAVE_TCATTR
408 tcgetattr (fd, &sg);
409 #else
410 ioctl (fd, TCGETA, &sg);
411 #endif
412 emacs_ospeed = sg.c_cflag & CBAUD;
413 #else /* neither VMS nor TERMIOS nor TERMIO */
414 struct sgttyb sg;
416 sg.sg_ospeed = B9600;
417 if (ioctl (fd, TIOCGETP, &sg) < 0)
418 abort ();
419 emacs_ospeed = sg.sg_ospeed;
420 #endif /* not HAVE_TERMIO */
421 #endif /* not HAVE_TERMIOS */
422 #endif /* not VMS */
423 #endif /* not DOS_NT */
426 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
427 ? baud_convert[emacs_ospeed] : 9600);
428 if (baud_rate == 0)
429 baud_rate = 1200;
433 /*ARGSUSED*/
434 void
435 set_exclusive_use (fd)
436 int fd;
438 #ifdef FIOCLEX
439 ioctl (fd, FIOCLEX, 0);
440 #endif
441 /* Ok to do nothing if this feature does not exist */
444 #ifndef subprocesses
446 wait_without_blocking ()
448 #ifdef BSD_SYSTEM
449 wait3 (0, WNOHANG | WUNTRACED, 0);
450 #else
451 croak ("wait_without_blocking");
452 #endif
453 synch_process_alive = 0;
456 #endif /* not subprocesses */
458 int wait_debugging; /* Set nonzero to make following function work under dbx
459 (at least for bsd). */
461 SIGTYPE
462 wait_for_termination_signal ()
465 /* Wait for subprocess with process id `pid' to terminate and
466 make sure it will get eliminated (not remain forever as a zombie) */
468 void
469 wait_for_termination (pid)
470 int pid;
472 while (1)
474 #ifdef subprocesses
475 #ifdef VMS
476 int status;
478 status = SYS$FORCEX (&pid, 0, 0);
479 break;
480 #else /* not VMS */
481 #if defined (BSD_SYSTEM) || (defined (HPUX) && !defined (HPUX_5))
482 /* Note that kill returns -1 even if the process is just a zombie now.
483 But inevitably a SIGCHLD interrupt should be generated
484 and child_sig will do wait3 and make the process go away. */
485 /* There is some indication that there is a bug involved with
486 termination of subprocesses, perhaps involving a kernel bug too,
487 but no idea what it is. Just as a hunch we signal SIGCHLD to see
488 if that causes the problem to go away or get worse. */
489 sigsetmask (sigmask (SIGCHLD));
490 if (0 > kill (pid, 0))
492 sigsetmask (SIGEMPTYMASK);
493 kill (getpid (), SIGCHLD);
494 break;
496 if (wait_debugging)
497 sleep (1);
498 else
499 sigpause (SIGEMPTYMASK);
500 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
501 #ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
502 sigblock (sigmask (SIGCHLD));
503 errno = 0;
504 if (kill (pid, 0) == -1 && errno == ESRCH)
506 sigunblock (sigmask (SIGCHLD));
507 break;
510 sigsuspend (&empty_mask);
511 #else /* not POSIX_SIGNALS */
512 #ifdef HAVE_SYSV_SIGPAUSE
513 sighold (SIGCHLD);
514 if (0 > kill (pid, 0))
516 sigrelse (SIGCHLD);
517 break;
519 sigpause (SIGCHLD);
520 #else /* not HAVE_SYSV_SIGPAUSE */
521 #ifdef WINDOWSNT
522 wait (0);
523 break;
524 #else /* not WINDOWSNT */
525 if (0 > kill (pid, 0))
526 break;
527 /* Using sleep instead of pause avoids timing error.
528 If the inferior dies just before the sleep,
529 we lose just one second. */
530 sleep (1);
531 #endif /* not WINDOWSNT */
532 #endif /* not HAVE_SYSV_SIGPAUSE */
533 #endif /* not POSIX_SIGNALS */
534 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
535 #endif /* not VMS */
536 #else /* not subprocesses */
537 #if __DJGPP__ > 1
538 break;
539 #else /* not __DJGPP__ > 1 */
540 #ifndef BSD4_1
541 if (kill (pid, 0) < 0)
542 break;
543 wait (0);
544 #else /* BSD4_1 */
545 int status;
546 status = wait (0);
547 if (status == pid || status == -1)
548 break;
549 #endif /* BSD4_1 */
550 #endif /* not __DJGPP__ > 1*/
551 #endif /* not subprocesses */
555 #ifdef subprocesses
558 * flush any pending output
559 * (may flush input as well; it does not matter the way we use it)
562 void
563 flush_pending_output (channel)
564 int channel;
566 #ifdef HAVE_TERMIOS
567 /* If we try this, we get hit with SIGTTIN, because
568 the child's tty belongs to the child's pgrp. */
569 #else
570 #ifdef TCFLSH
571 ioctl (channel, TCFLSH, 1);
572 #else
573 #ifdef TIOCFLUSH
574 int zero = 0;
575 /* 3rd arg should be ignored
576 but some 4.2 kernels actually want the address of an int
577 and nonzero means something different. */
578 ioctl (channel, TIOCFLUSH, &zero);
579 #endif
580 #endif
581 #endif
584 #ifndef VMS
585 /* Set up the terminal at the other end of a pseudo-terminal that
586 we will be controlling an inferior through.
587 It should not echo or do line-editing, since that is done
588 in Emacs. No padding needed for insertion into an Emacs buffer. */
590 void
591 child_setup_tty (out)
592 int out;
594 #ifndef DOS_NT
595 struct emacs_tty s;
597 EMACS_GET_TTY (out, &s);
599 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
600 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
601 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
602 #ifdef NLDLY
603 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
604 /* No output delays */
605 #endif
606 s.main.c_lflag &= ~ECHO; /* Disable echo */
607 s.main.c_lflag |= ISIG; /* Enable signals */
608 #if 0 /* This causes bugs in (for instance) telnet to certain sites. */
609 s.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
610 #ifdef INLCR /* Just being cautious, since I can't check how
611 widespread INLCR is--rms. */
612 s.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
613 #endif
614 #endif
615 #ifdef IUCLC
616 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
617 #endif
618 #ifdef ISTRIP
619 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
620 #endif
621 #ifdef OLCUC
622 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
623 #endif
624 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
625 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
626 #if 0
627 /* Said to be unnecessary: */
628 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */
629 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */
630 #endif
632 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
633 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */
634 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
635 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
637 #ifdef HPUX
638 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
639 #endif /* HPUX */
641 #ifdef SIGNALS_VIA_CHARACTERS
642 /* the QUIT and INTR character are used in process_send_signal
643 so set them here to something useful. */
644 if (s.main.c_cc[VQUIT] == CDISABLE)
645 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
646 if (s.main.c_cc[VINTR] == CDISABLE)
647 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
648 #endif /* not SIGNALS_VIA_CHARACTERS */
650 #ifdef AIX
651 /* AIX enhanced edit loses NULs, so disable it */
652 #ifndef IBMR2AIX
653 s.main.c_line = 0;
654 s.main.c_iflag &= ~ASCEDIT;
655 #endif
656 /* Also, PTY overloads NUL and BREAK.
657 don't ignore break, but don't signal either, so it looks like NUL. */
658 s.main.c_iflag &= ~IGNBRK;
659 s.main.c_iflag &= ~BRKINT;
660 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
661 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
662 would force it to 0377. That looks like duplicated code. */
663 #ifndef SIGNALS_VIA_CHARACTERS
664 /* QUIT and INTR work better as signals, so disable character forms */
665 s.main.c_cc[VQUIT] = CDISABLE;
666 s.main.c_cc[VINTR] = CDISABLE;
667 s.main.c_lflag &= ~ISIG;
668 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
669 s.main.c_cc[VEOL] = CDISABLE;
670 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
671 #endif /* AIX */
673 #else /* not HAVE_TERMIO */
675 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
676 | CBREAK | TANDEM);
677 s.main.sg_flags |= LPASS8;
678 s.main.sg_erase = 0377;
679 s.main.sg_kill = 0377;
680 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
682 #endif /* not HAVE_TERMIO */
684 EMACS_SET_TTY (out, &s, 0);
686 #ifdef BSD4_1
687 if (interrupt_input)
688 reset_sigio (0);
689 #endif /* BSD4_1 */
690 #endif /* not DOS_NT */
692 #endif /* not VMS */
694 #endif /* subprocesses */
696 /* Record a signal code and the handler for it. */
697 struct save_signal
699 int code;
700 SIGTYPE (*handler) P_ ((int));
703 static void save_signal_handlers P_ ((struct save_signal *));
704 static void restore_signal_handlers P_ ((struct save_signal *));
706 /* Suspend the Emacs process; give terminal to its superior. */
708 void
709 sys_suspend ()
711 #ifdef VMS
712 /* "Foster" parentage allows emacs to return to a subprocess that attached
713 to the current emacs as a cheaper than starting a whole new process. This
714 is set up by KEPTEDITOR.COM. */
715 unsigned long parent_id, foster_parent_id;
716 char *fpid_string;
718 fpid_string = getenv ("EMACS_PARENT_PID");
719 if (fpid_string != NULL)
721 sscanf (fpid_string, "%x", &foster_parent_id);
722 if (foster_parent_id != 0)
723 parent_id = foster_parent_id;
724 else
725 parent_id = getppid ();
727 else
728 parent_id = getppid ();
730 xfree (fpid_string); /* On VMS, this was malloc'd */
732 if (parent_id && parent_id != 0xffffffff)
734 SIGTYPE (*oldsig)() = (int) signal (SIGINT, SIG_IGN);
735 int status = LIB$ATTACH (&parent_id) & 1;
736 signal (SIGINT, oldsig);
737 return status;
739 else
741 struct {
742 int l;
743 char *a;
744 } d_prompt;
745 d_prompt.l = sizeof ("Emacs: "); /* Our special prompt */
746 d_prompt.a = "Emacs: "; /* Just a reminder */
747 LIB$SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt, 0);
748 return 1;
750 return -1;
751 #else
752 #if defined (SIGTSTP) && !defined (MSDOS)
755 int pgrp = EMACS_GETPGRP (0);
756 EMACS_KILLPG (pgrp, SIGTSTP);
759 #else /* No SIGTSTP */
760 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
761 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
762 kill (getpid (), SIGQUIT);
764 #else /* No SIGTSTP or USG_JOBCTRL */
766 /* On a system where suspending is not implemented,
767 instead fork a subshell and let it talk directly to the terminal
768 while we wait. */
769 sys_subshell ();
771 #endif /* no USG_JOBCTRL */
772 #endif /* no SIGTSTP */
773 #endif /* not VMS */
776 /* Fork a subshell. */
778 void
779 sys_subshell ()
781 #ifndef VMS
782 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
783 int st;
784 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
785 #endif
786 int pid;
787 struct save_signal saved_handlers[5];
788 Lisp_Object dir;
789 unsigned char *str = 0;
790 int len;
792 saved_handlers[0].code = SIGINT;
793 saved_handlers[1].code = SIGQUIT;
794 saved_handlers[2].code = SIGTERM;
795 #ifdef SIGIO
796 saved_handlers[3].code = SIGIO;
797 saved_handlers[4].code = 0;
798 #else
799 saved_handlers[3].code = 0;
800 #endif
802 /* Mentioning current_buffer->buffer would mean including buffer.h,
803 which somehow wedges the hp compiler. So instead... */
805 dir = intern ("default-directory");
806 if (NILP (Fboundp (dir)))
807 goto xyzzy;
808 dir = Fsymbol_value (dir);
809 if (!STRINGP (dir))
810 goto xyzzy;
812 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
813 str = (unsigned char *) alloca (SCHARS (dir) + 2);
814 len = SCHARS (dir);
815 bcopy (SDATA (dir), str, len);
816 if (str[len - 1] != '/') str[len++] = '/';
817 str[len] = 0;
818 xyzzy:
820 #ifdef DOS_NT
821 pid = 0;
822 #if __DJGPP__ > 1
823 save_signal_handlers (saved_handlers);
824 synch_process_alive = 1;
825 #endif /* __DJGPP__ > 1 */
826 #else
827 pid = vfork ();
828 if (pid == -1)
829 error ("Can't spawn subshell");
830 #endif
832 if (pid == 0)
834 char *sh = 0;
836 #ifdef DOS_NT /* MW, Aug 1993 */
837 getwd (oldwd);
838 if (sh == 0)
839 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
840 #endif
841 if (sh == 0)
842 sh = (char *) egetenv ("SHELL");
843 if (sh == 0)
844 sh = "sh";
846 /* Use our buffer's default directory for the subshell. */
847 if (str)
848 chdir ((char *) str);
850 #ifdef subprocesses
851 close_process_descs (); /* Close Emacs's pipes/ptys */
852 #endif
854 #ifdef SET_EMACS_PRIORITY
856 extern EMACS_INT emacs_priority;
858 if (emacs_priority < 0)
859 nice (-emacs_priority);
861 #endif
863 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
865 char *epwd = getenv ("PWD");
866 char old_pwd[MAXPATHLEN+1+4];
868 /* If PWD is set, pass it with corrected value. */
869 if (epwd)
871 strcpy (old_pwd, epwd);
872 if (str[len - 1] == '/')
873 str[len - 1] = '\0';
874 setenv ("PWD", str, 1);
876 st = system (sh);
877 chdir (oldwd);
878 if (epwd)
879 putenv (old_pwd); /* restore previous value */
881 #if 0 /* This is also reported if last command executed in subshell failed, KFS */
882 if (st)
883 report_file_error ("Can't execute subshell", Fcons (build_string (sh), Qnil));
884 #endif
885 #else /* not MSDOS */
886 #ifdef WINDOWSNT
887 /* Waits for process completion */
888 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
889 chdir (oldwd);
890 if (pid == -1)
891 write (1, "Can't execute subshell", 22);
892 #else /* not WINDOWSNT */
893 execlp (sh, sh, (char *) 0);
894 write (1, "Can't execute subshell", 22);
895 _exit (1);
896 #endif /* not WINDOWSNT */
897 #endif /* not MSDOS */
900 /* Do this now if we did not do it before. */
901 #if !defined (MSDOS) || __DJGPP__ == 1
902 save_signal_handlers (saved_handlers);
903 synch_process_alive = 1;
904 #endif
906 #ifndef DOS_NT
907 wait_for_termination (pid);
908 #endif
909 restore_signal_handlers (saved_handlers);
910 synch_process_alive = 0;
911 #endif /* !VMS */
914 static void
915 save_signal_handlers (saved_handlers)
916 struct save_signal *saved_handlers;
918 while (saved_handlers->code)
920 saved_handlers->handler
921 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers->code, SIG_IGN);
922 saved_handlers++;
926 static void
927 restore_signal_handlers (saved_handlers)
928 struct save_signal *saved_handlers;
930 while (saved_handlers->code)
932 signal (saved_handlers->code, saved_handlers->handler);
933 saved_handlers++;
937 #ifndef SIGIO
938 /* If SIGIO is broken, don't do anything. */
939 void
940 init_sigio (int fd)
944 void
945 reset_sigio (int fd)
949 void
950 request_sigio (void)
954 void
955 unrequest_sigio (void)
959 #else
960 #ifdef F_SETFL
962 int old_fcntl_flags[MAXDESC];
964 void
965 init_sigio (fd)
966 int fd;
968 #ifdef FASYNC
969 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
970 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
971 #endif
972 interrupts_deferred = 0;
975 void
976 reset_sigio (fd)
977 int fd;
979 #ifdef FASYNC
980 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
981 #endif
984 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
985 /* XXX Uhm, FASYNC is not used anymore here. */
986 /* XXX Yeah, but you need it for SIGIO, don't you? */
988 void
989 request_sigio ()
991 if (noninteractive)
992 return;
994 #ifdef SIGWINCH
995 sigunblock (sigmask (SIGWINCH));
996 #endif
997 sigunblock (sigmask (SIGIO));
999 interrupts_deferred = 0;
1002 void
1003 unrequest_sigio (void)
1005 if (noninteractive)
1006 return;
1008 #if 0 /* XXX What's wrong with blocking SIGIO under X? */
1009 if (x_display_list)
1010 return;
1011 #endif
1013 #ifdef SIGWINCH
1014 sigblock (sigmask (SIGWINCH));
1015 #endif
1016 sigblock (sigmask (SIGIO));
1017 interrupts_deferred = 1;
1020 #else /* no FASYNC */
1021 #ifndef MSDOS
1023 void
1024 request_sigio ()
1026 if (noninteractive || read_socket_hook)
1027 return;
1029 croak ("request_sigio");
1032 void
1033 unrequest_sigio ()
1035 if (noninteractive || read_socket_hook)
1036 return;
1038 croak ("unrequest_sigio");
1041 #endif /* MSDOS */
1042 #endif /* FASYNC */
1043 #endif /* F_SETFL */
1044 #endif /* SIGIO */
1046 /* Saving and restoring the process group of Emacs's terminal. */
1048 #ifdef BSD_PGRPS
1050 /* The process group of which Emacs was a member when it initially
1051 started.
1053 If Emacs was in its own process group (i.e. inherited_pgroup ==
1054 getpid ()), then we know we're running under a shell with job
1055 control (Emacs would never be run as part of a pipeline).
1056 Everything is fine.
1058 If Emacs was not in its own process group, then we know we're
1059 running under a shell (or a caller) that doesn't know how to
1060 separate itself from Emacs (like sh). Emacs must be in its own
1061 process group in order to receive SIGIO correctly. In this
1062 situation, we put ourselves in our own pgroup, forcibly set the
1063 tty's pgroup to our pgroup, and make sure to restore and reinstate
1064 the tty's pgroup just like any other terminal setting. If
1065 inherited_group was not the tty's pgroup, then we'll get a
1066 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1067 it goes foreground in the future, which is what should happen.
1069 This variable is initialized in emacs.c. */
1070 int inherited_pgroup;
1072 /* Split off the foreground process group to Emacs alone. When we are
1073 in the foreground, but not started in our own process group,
1074 redirect the tty device handle FD to point to our own process
1075 group. We need to be in our own process group to receive SIGIO
1076 properly. */
1077 static void
1078 narrow_foreground_group (int fd)
1080 int me = getpid ();
1082 setpgrp (0, inherited_pgroup);
1083 #if 0
1084 /* XXX inherited_pgroup should not be zero here, but GTK seems to
1085 mess this up. */
1086 if (! inherited_pgroup)
1087 abort (); /* Should not happen. */
1088 #endif
1089 if (inherited_pgroup != me)
1090 EMACS_SET_TTY_PGRP (fd, &me); /* XXX This only works on the controlling tty. */
1091 setpgrp (0, me);
1094 /* Set the tty to our original foreground group. */
1095 static void
1096 widen_foreground_group (int fd)
1098 if (inherited_pgroup != getpid ())
1099 EMACS_SET_TTY_PGRP (fd, &inherited_pgroup);
1100 setpgrp (0, inherited_pgroup);
1103 #endif /* BSD_PGRPS */
1105 /* Getting and setting emacs_tty structures. */
1107 /* Set *TC to the parameters associated with the terminal FD.
1108 Return zero if all's well, or -1 if we ran into an error we
1109 couldn't deal with. */
1111 emacs_get_tty (fd, settings)
1112 int fd;
1113 struct emacs_tty *settings;
1115 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1116 #ifdef HAVE_TCATTR
1117 /* We have those nifty POSIX tcmumbleattr functions. */
1118 bzero (&settings->main, sizeof (settings->main));
1119 if (tcgetattr (fd, &settings->main) < 0)
1120 return -1;
1122 #else
1123 #ifdef HAVE_TERMIO
1124 /* The SYSV-style interface? */
1125 if (ioctl (fd, TCGETA, &settings->main) < 0)
1126 return -1;
1128 #else
1129 #ifdef VMS
1130 /* Vehemently Monstrous System? :-) */
1131 if (! (SYS$QIOW (0, fd, IO$_SENSEMODE, settings, 0, 0,
1132 &settings->main.class, 12, 0, 0, 0, 0)
1133 & 1))
1134 return -1;
1136 #else
1137 #ifndef DOS_NT
1138 /* I give up - I hope you have the BSD ioctls. */
1139 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
1140 return -1;
1141 #endif /* not DOS_NT */
1142 #endif
1143 #endif
1144 #endif
1146 /* Suivant - Do we have to get struct ltchars data? */
1147 #ifdef HAVE_LTCHARS
1148 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
1149 return -1;
1150 #endif
1152 /* How about a struct tchars and a wordful of lmode bits? */
1153 #ifdef HAVE_TCHARS
1154 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
1155 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
1156 return -1;
1157 #endif
1159 /* We have survived the tempest. */
1160 return 0;
1164 /* Set the parameters of the tty on FD according to the contents of
1165 *SETTINGS. If FLUSHP is non-zero, we discard input.
1166 Return 0 if all went well, and -1 if anything failed. */
1169 emacs_set_tty (fd, settings, flushp)
1170 int fd;
1171 struct emacs_tty *settings;
1172 int flushp;
1174 /* Set the primary parameters - baud rate, character size, etcetera. */
1175 #ifdef HAVE_TCATTR
1176 int i;
1177 /* We have those nifty POSIX tcmumbleattr functions.
1178 William J. Smith <wjs@wiis.wang.com> writes:
1179 "POSIX 1003.1 defines tcsetattr to return success if it was
1180 able to perform any of the requested actions, even if some
1181 of the requested actions could not be performed.
1182 We must read settings back to ensure tty setup properly.
1183 AIX requires this to keep tty from hanging occasionally." */
1184 /* This make sure that we don't loop indefinitely in here. */
1185 for (i = 0 ; i < 10 ; i++)
1186 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
1188 if (errno == EINTR)
1189 continue;
1190 else
1191 return -1;
1193 else
1195 struct termios new;
1197 bzero (&new, sizeof (new));
1198 /* Get the current settings, and see if they're what we asked for. */
1199 tcgetattr (fd, &new);
1200 /* We cannot use memcmp on the whole structure here because under
1201 * aix386 the termios structure has some reserved field that may
1202 * not be filled in.
1204 if ( new.c_iflag == settings->main.c_iflag
1205 && new.c_oflag == settings->main.c_oflag
1206 && new.c_cflag == settings->main.c_cflag
1207 && new.c_lflag == settings->main.c_lflag
1208 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
1209 break;
1210 else
1211 continue;
1214 #else
1215 #ifdef HAVE_TERMIO
1216 /* The SYSV-style interface? */
1217 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
1218 return -1;
1220 #else
1221 #ifdef VMS
1222 /* Vehemently Monstrous System? :-) */
1223 if (! (SYS$QIOW (0, fd, IO$_SETMODE, &input_iosb, 0, 0,
1224 &settings->main.class, 12, 0, 0, 0, 0)
1225 & 1))
1226 return -1;
1228 #else
1229 #ifndef DOS_NT
1230 /* I give up - I hope you have the BSD ioctls. */
1231 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
1232 return -1;
1233 #endif /* not DOS_NT */
1235 #endif
1236 #endif
1237 #endif
1239 /* Suivant - Do we have to get struct ltchars data? */
1240 #ifdef HAVE_LTCHARS
1241 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
1242 return -1;
1243 #endif
1245 /* How about a struct tchars and a wordful of lmode bits? */
1246 #ifdef HAVE_TCHARS
1247 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
1248 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
1249 return -1;
1250 #endif
1252 /* We have survived the tempest. */
1253 return 0;
1258 #ifdef BSD4_1
1259 /* BSD 4.1 needs to keep track of the lmode bits in order to start
1260 sigio. */
1261 int lmode;
1262 #endif
1264 #ifdef F_SETOWN
1265 int old_fcntl_owner[MAXDESC];
1266 #endif /* F_SETOWN */
1268 /* This may also be defined in stdio,
1269 but if so, this does no harm,
1270 and using the same name avoids wasting the other one's space. */
1272 #ifdef nec_ews_svr4
1273 extern char *_sobuf ;
1274 #else
1275 #if defined (USG) || defined (DGUX)
1276 unsigned char _sobuf[BUFSIZ+8];
1277 #else
1278 char _sobuf[BUFSIZ];
1279 #endif
1280 #endif
1282 #ifdef HAVE_LTCHARS
1283 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
1284 #endif
1285 #ifdef HAVE_TCHARS
1286 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
1287 #endif
1289 /* Initialize the terminal mode on all tty devices that are currently
1290 open. */
1292 void
1293 init_all_sys_modes (void)
1295 struct tty_display_info *tty;
1296 for (tty = tty_list; tty; tty = tty->next)
1297 init_sys_modes (tty);
1300 /* Initialize the terminal mode on the given tty device. */
1302 void
1303 init_sys_modes (tty_out)
1304 struct tty_display_info *tty_out;
1306 struct emacs_tty tty;
1308 #ifdef VMS
1309 #if 0
1310 static int oob_chars[2] = {0, 1 << 7}; /* catch C-g's */
1311 extern int (*interrupt_signal) ();
1312 #endif
1313 #endif
1315 Vtty_erase_char = Qnil;
1317 if (noninteractive)
1318 return;
1320 if (!tty_out->output)
1321 return; /* The tty is suspended. */
1323 #ifdef VMS
1324 if (!input_ef)
1325 input_ef = get_kbd_event_flag ();
1326 /* LIB$GET_EF (&input_ef); */
1327 SYS$CLREF (input_ef);
1328 waiting_for_ast = 0;
1329 if (!timer_ef)
1330 timer_ef = get_timer_event_flag ();
1331 /* LIB$GET_EF (&timer_ef); */
1332 SYS$CLREF (timer_ef);
1333 #if 0
1334 if (!process_ef)
1336 LIB$GET_EF (&process_ef);
1337 SYS$CLREF (process_ef);
1339 if (input_ef / 32 != process_ef / 32)
1340 croak ("Input and process event flags in different clusters.");
1341 #endif
1342 if (input_ef / 32 != timer_ef / 32)
1343 croak ("Input and timer event flags in different clusters.");
1344 #if 0
1345 input_eflist = ((unsigned) 1 << (input_ef % 32)) |
1346 ((unsigned) 1 << (process_ef % 32));
1347 #endif
1348 timer_eflist = ((unsigned) 1 << (input_ef % 32)) |
1349 ((unsigned) 1 << (timer_ef % 32));
1350 #ifndef VMS4_4
1351 sys_access_reinit ();
1352 #endif
1353 #endif /* VMS */
1355 #ifdef BSD_PGRPS
1356 #if 0
1357 /* read_socket_hook is not global anymore. I think doing this
1358 unconditionally will not cause any problems. */
1359 if (! read_socket_hook && EQ (Vinitial_window_system, Qnil))
1360 #endif
1361 narrow_foreground_group (fileno (tty_out->input));
1362 #endif
1364 if (! tty_out->old_tty)
1365 tty_out->old_tty = (struct emacs_tty *) xmalloc (sizeof (struct emacs_tty));
1367 EMACS_GET_TTY (fileno (tty_out->input), tty_out->old_tty);
1369 tty = *tty_out->old_tty;
1371 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1372 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
1374 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
1375 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
1376 #ifdef INLCR /* I'm just being cautious,
1377 since I can't check how widespread INLCR is--rms. */
1378 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
1379 #endif
1380 #ifdef ISTRIP
1381 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
1382 #endif
1383 tty.main.c_lflag &= ~ECHO; /* Disable echo */
1384 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
1385 #ifdef IEXTEN
1386 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
1387 #endif
1388 tty.main.c_lflag |= ISIG; /* Enable signals */
1389 if (tty_out->flow_control)
1391 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
1392 #ifdef IXANY
1393 tty.main.c_iflag &= ~IXANY;
1394 #endif /* IXANY */
1396 else
1397 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
1398 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
1399 on output */
1400 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1401 #ifdef CS8
1402 if (tty_out->meta_key)
1404 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
1405 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
1407 #endif
1408 if (tty_out->input == stdin)
1410 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
1411 /* Set up C-g for both SIGQUIT and SIGINT.
1412 We don't know which we will get, but we handle both alike
1413 so which one it really gives us does not matter. */
1414 tty.main.c_cc[VQUIT] = quit_char;
1416 else
1418 /* We normally don't get interrupt or quit signals from tty
1419 devices other than our controlling terminal; therefore,
1420 we must handle C-g as normal input. Unfortunately, this
1421 means that the interrupt and quit feature must be
1422 disabled on secondary ttys, or we would not even see the
1423 keypress.
1425 Note that even though emacsclient could have special code
1426 to pass SIGINT to Emacs, we should _not_ enable
1427 interrupt/quit keys for emacsclient frames. This means
1428 that we can't break out of loops in C code from a
1429 secondary tty frame, but we can always decide what
1430 display the C-g came from, which is more important from a
1431 usability point of view. (Consider the case when two
1432 people work together using the same Emacs instance.) */
1433 tty.main.c_cc[VINTR] = CDISABLE;
1434 tty.main.c_cc[VQUIT] = CDISABLE;
1436 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1437 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
1438 #ifdef VSWTCH
1439 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
1440 of C-z */
1441 #endif /* VSWTCH */
1443 #if defined (mips) || defined (HAVE_TCATTR)
1444 #ifdef VSUSP
1445 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */
1446 #endif /* VSUSP */
1447 #ifdef V_DSUSP
1448 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */
1449 #endif /* V_DSUSP */
1450 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1451 tty.main.c_cc[VDSUSP] = CDISABLE;
1452 #endif /* VDSUSP */
1453 #ifdef VLNEXT
1454 tty.main.c_cc[VLNEXT] = CDISABLE;
1455 #endif /* VLNEXT */
1456 #ifdef VREPRINT
1457 tty.main.c_cc[VREPRINT] = CDISABLE;
1458 #endif /* VREPRINT */
1459 #ifdef VWERASE
1460 tty.main.c_cc[VWERASE] = CDISABLE;
1461 #endif /* VWERASE */
1462 #ifdef VDISCARD
1463 tty.main.c_cc[VDISCARD] = CDISABLE;
1464 #endif /* VDISCARD */
1466 if (tty_out->flow_control)
1468 #ifdef VSTART
1469 tty.main.c_cc[VSTART] = '\021';
1470 #endif /* VSTART */
1471 #ifdef VSTOP
1472 tty.main.c_cc[VSTOP] = '\023';
1473 #endif /* VSTOP */
1475 else
1477 #ifdef VSTART
1478 tty.main.c_cc[VSTART] = CDISABLE;
1479 #endif /* VSTART */
1480 #ifdef VSTOP
1481 tty.main.c_cc[VSTOP] = CDISABLE;
1482 #endif /* VSTOP */
1484 #endif /* mips or HAVE_TCATTR */
1486 #ifdef SET_LINE_DISCIPLINE
1487 /* Need to explicitly request TERMIODISC line discipline or
1488 Ultrix's termios does not work correctly. */
1489 tty.main.c_line = SET_LINE_DISCIPLINE;
1490 #endif
1491 #ifdef AIX
1492 #ifndef IBMR2AIX
1493 /* AIX enhanced edit loses NULs, so disable it. */
1494 tty.main.c_line = 0;
1495 tty.main.c_iflag &= ~ASCEDIT;
1496 #else
1497 tty.main.c_cc[VSTRT] = CDISABLE;
1498 tty.main.c_cc[VSTOP] = CDISABLE;
1499 tty.main.c_cc[VSUSP] = CDISABLE;
1500 tty.main.c_cc[VDSUSP] = CDISABLE;
1501 #endif /* IBMR2AIX */
1502 if (tty_out->flow_control)
1504 #ifdef VSTART
1505 tty.main.c_cc[VSTART] = '\021';
1506 #endif /* VSTART */
1507 #ifdef VSTOP
1508 tty.main.c_cc[VSTOP] = '\023';
1509 #endif /* VSTOP */
1511 /* Also, PTY overloads NUL and BREAK.
1512 don't ignore break, but don't signal either, so it looks like NUL.
1513 This really serves a purpose only if running in an XTERM window
1514 or via TELNET or the like, but does no harm elsewhere. */
1515 tty.main.c_iflag &= ~IGNBRK;
1516 tty.main.c_iflag &= ~BRKINT;
1517 #endif
1518 #else /* if not HAVE_TERMIO */
1519 #ifdef VMS
1520 tty.main.tt_char |= TT$M_NOECHO;
1521 if (meta_key)
1522 tty.main.tt_char |= TT$M_EIGHTBIT;
1523 if (tty_out->flow_control)
1524 tty.main.tt_char |= TT$M_TTSYNC;
1525 else
1526 tty.main.tt_char &= ~TT$M_TTSYNC;
1527 tty.main.tt2_char |= TT2$M_PASTHRU | TT2$M_XON;
1528 #else /* not VMS (BSD, that is) */
1529 #ifndef DOS_NT
1530 XSETINT (Vtty_erase_char, tty.main.sg_erase);
1531 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
1532 if (meta_key)
1533 tty.main.sg_flags |= ANYP;
1534 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK;
1535 #endif /* not DOS_NT */
1536 #endif /* not VMS (BSD, that is) */
1537 #endif /* not HAVE_TERMIO */
1539 /* If going to use CBREAK mode, we must request C-g to interrupt
1540 and turn off start and stop chars, etc. If not going to use
1541 CBREAK mode, do this anyway so as to turn off local flow
1542 control for user coming over network on 4.2; in this case,
1543 only t_stopc and t_startc really matter. */
1544 #ifndef HAVE_TERMIO
1545 #ifdef HAVE_TCHARS
1546 /* Note: if not using CBREAK mode, it makes no difference how we
1547 set this */
1548 tty.tchars = new_tchars;
1549 tty.tchars.t_intrc = quit_char;
1550 if (tty_out->flow_control)
1552 tty.tchars.t_startc = '\021';
1553 tty.tchars.t_stopc = '\023';
1556 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | tty_out->old_tty.lmode;
1557 #ifdef ultrix
1558 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1559 anything, and leaving it in breaks the meta key. Go figure. */
1560 tty.lmode &= ~LLITOUT;
1561 #endif
1563 #ifdef BSD4_1
1564 lmode = tty.lmode;
1565 #endif
1567 #endif /* HAVE_TCHARS */
1568 #endif /* not HAVE_TERMIO */
1570 #ifdef HAVE_LTCHARS
1571 tty.ltchars = new_ltchars;
1572 #endif /* HAVE_LTCHARS */
1573 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1574 if (!tty_out->term_initted)
1575 internal_terminal_init ();
1576 dos_ttraw ();
1577 #endif
1579 EMACS_SET_TTY (fileno (tty_out->input), &tty, 0);
1581 /* This code added to insure that, if flow-control is not to be used,
1582 we have an unlocked terminal at the start. */
1584 #ifdef TCXONC
1585 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1586 #endif
1587 #ifdef TIOCSTART
1588 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1589 #endif
1591 #if defined (HAVE_TERMIOS) || defined (HPUX9)
1592 #ifdef TCOON
1593 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1594 #endif
1595 #endif
1597 #ifdef AIXHFT
1598 hft_init (tty_out);
1599 #ifdef IBMR2AIX
1601 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1602 to be only LF. This is the way that is done. */
1603 struct termio tty;
1605 if (ioctl (1, HFTGETID, &tty) != -1)
1606 write (1, "\033[20l", 5);
1608 #endif
1609 #endif /* AIXHFT */
1611 #ifdef VMS
1612 /* Appears to do nothing when in PASTHRU mode.
1613 SYS$QIOW (0, fileno (tty_out->input), IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1614 interrupt_signal, oob_chars, 0, 0, 0, 0);
1616 queue_kbd_input (0);
1617 #endif /* VMS */
1619 #ifdef F_SETFL
1620 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1621 if (interrupt_input)
1623 old_fcntl_owner[fileno (tty_out->input)] =
1624 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1625 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1626 init_sigio (fileno (tty_out->input));
1627 #ifdef HAVE_GPM
1628 if (gpm_tty == tty_out)
1630 /* Arrange for mouse events to give us SIGIO signals. */
1631 fcntl (gpm_fd, F_SETOWN, getpid ());
1632 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1633 init_sigio (gpm_fd);
1635 #endif /* HAVE_GPM */
1637 #endif /* F_GETOWN */
1638 #endif /* F_SETFL */
1640 #ifdef BSD4_1
1641 if (interrupt_input)
1642 init_sigio (fileno (tty_out->input));
1643 #endif
1645 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1646 #undef _IOFBF
1647 #endif
1648 #ifdef _IOFBF
1649 /* This symbol is defined on recent USG systems.
1650 Someone says without this call USG won't really buffer the file
1651 even with a call to setbuf. */
1652 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1653 #else
1654 setbuf (tty_out->output, (char *) _sobuf);
1655 #endif
1657 if (tty_out->terminal->set_terminal_modes_hook)
1658 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1660 if (!tty_out->term_initted)
1662 Lisp_Object tail, frame;
1663 FOR_EACH_FRAME (tail, frame)
1665 /* XXX This needs to be revised. */
1666 if (FRAME_TERMCAP_P (XFRAME (frame))
1667 && FRAME_TTY (XFRAME (frame)) == tty_out)
1668 init_frame_faces (XFRAME (frame));
1672 if (tty_out->term_initted && no_redraw_on_reenter)
1674 /* XXX This seems wrong on multi-tty. */
1675 if (display_completed)
1676 direct_output_forward_char (0);
1678 else
1680 Lisp_Object tail, frame;
1681 frame_garbaged = 1;
1682 FOR_EACH_FRAME (tail, frame)
1684 if (FRAME_TERMCAP_P (XFRAME (frame))
1685 && FRAME_TTY (XFRAME (frame)) == tty_out)
1686 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1690 tty_out->term_initted = 1;
1693 /* Return nonzero if safe to use tabs in output.
1694 At the time this is called, init_sys_modes has not been done yet. */
1697 tabs_safe_p (int fd)
1699 struct emacs_tty etty;
1701 EMACS_GET_TTY (fd, &etty);
1702 return EMACS_TTY_TABS_OK (&etty);
1705 /* Get terminal size from system.
1706 Store number of lines into *HEIGHTP and width into *WIDTHP.
1707 We store 0 if there's no valid information. */
1709 void
1710 get_tty_size (int fd, int *widthp, int *heightp)
1713 #ifdef TIOCGWINSZ
1715 /* BSD-style. */
1716 struct winsize size;
1718 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1719 *widthp = *heightp = 0;
1720 else
1722 *widthp = size.ws_col;
1723 *heightp = size.ws_row;
1726 #else
1727 #ifdef TIOCGSIZE
1729 /* SunOS - style. */
1730 struct ttysize size;
1732 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1733 *widthp = *heightp = 0;
1734 else
1736 *widthp = size.ts_cols;
1737 *heightp = size.ts_lines;
1740 #else
1741 #ifdef VMS
1743 /* Use a fresh channel since the current one may have stale info
1744 (for example, from prior to a suspend); and to avoid a dependency
1745 in the init sequence. */
1746 int chan;
1747 struct sensemode tty;
1749 SYS$ASSIGN (&input_dsc, &chan, 0, 0);
1750 SYS$QIOW (0, chan, IO$_SENSEMODE, &tty, 0, 0,
1751 &tty.class, 12, 0, 0, 0, 0);
1752 SYS$DASSGN (chan);
1753 *widthp = tty.scr_wid;
1754 *heightp = tty.scr_len;
1756 #else
1757 #ifdef MSDOS
1758 *widthp = ScreenCols ();
1759 *heightp = ScreenRows ();
1760 #else /* system doesn't know size */
1761 *widthp = 0;
1762 *heightp = 0;
1763 #endif
1764 #endif /* not VMS */
1765 #endif /* not SunOS-style */
1766 #endif /* not BSD-style */
1769 /* Set the logical window size associated with descriptor FD
1770 to HEIGHT and WIDTH. This is used mainly with ptys. */
1773 set_window_size (fd, height, width)
1774 int fd, height, width;
1776 #ifdef TIOCSWINSZ
1778 /* BSD-style. */
1779 struct winsize size;
1780 size.ws_row = height;
1781 size.ws_col = width;
1783 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1784 return 0; /* error */
1785 else
1786 return 1;
1788 #else
1789 #ifdef TIOCSSIZE
1791 /* SunOS - style. */
1792 struct ttysize size;
1793 size.ts_lines = height;
1794 size.ts_cols = width;
1796 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1797 return 0;
1798 else
1799 return 1;
1800 #else
1801 return -1;
1802 #endif /* not SunOS-style */
1803 #endif /* not BSD-style */
1808 /* Prepare all terminal devices for exiting Emacs. */
1810 void
1811 reset_all_sys_modes (void)
1813 struct tty_display_info *tty;
1814 for (tty = tty_list; tty; tty = tty->next)
1815 reset_sys_modes (tty);
1818 /* Prepare the terminal for closing it; move the cursor to the
1819 bottom of the frame, turn off interrupt-driven I/O, etc. */
1821 void
1822 reset_sys_modes (tty_out)
1823 struct tty_display_info *tty_out;
1825 if (noninteractive)
1827 fflush (stdout);
1828 return;
1830 if (!tty_out->term_initted)
1831 return;
1833 if (!tty_out->output)
1834 return; /* The tty is suspended. */
1836 /* Go to and clear the last line of the terminal. */
1838 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1840 /* Code adapted from tty_clear_end_of_line. */
1841 if (tty_out->TS_clr_line)
1843 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1845 else
1846 { /* have to do it the hard way */
1847 int i;
1848 tty_turn_off_insert (tty_out);
1850 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1852 fputc (' ', tty_out->output);
1856 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1857 fflush (tty_out->output);
1859 #if defined (IBMR2AIX) && defined (AIXHFT)
1861 /* HFT devices normally use ^J as a LF/CR. We forced it to
1862 do the LF only. Now, we need to reset it. */
1863 struct termio tty;
1865 if (ioctl (1, HFTGETID, &tty) != -1)
1866 write (1, "\033[20h", 5);
1868 #endif
1870 if (tty_out->terminal->reset_terminal_modes_hook)
1871 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1873 #ifdef BSD_SYSTEM
1874 #ifndef BSD4_1
1875 /* Avoid possible loss of output when changing terminal modes. */
1876 fsync (fileno (tty_out->output));
1877 #endif
1878 #endif
1880 #ifdef F_SETFL
1881 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1882 if (interrupt_input)
1884 reset_sigio (fileno (tty_out->input));
1885 fcntl (fileno (tty_out->input), F_SETOWN,
1886 old_fcntl_owner[fileno (tty_out->input)]);
1888 #endif /* F_SETOWN */
1889 #ifdef O_NDELAY
1890 fcntl (fileno (tty_out->input), F_SETFL,
1891 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
1892 #endif
1893 #endif /* F_SETFL */
1894 #ifdef BSD4_1
1895 if (interrupt_input)
1896 reset_sigio (fileno (tty_out->input));
1897 #endif /* BSD4_1 */
1899 if (tty_out->old_tty)
1900 while (EMACS_SET_TTY (fileno (tty_out->input),
1901 tty_out->old_tty, 0) < 0 && errno == EINTR)
1904 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1905 dos_ttcooked ();
1906 #endif
1908 #ifdef SET_LINE_DISCIPLINE
1909 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1910 A different old line discipline is therefore not restored, yet.
1911 Restore the old line discipline by hand. */
1912 ioctl (0, TIOCSETD, &tty_out->old_tty.main.c_line);
1913 #endif
1915 #ifdef AIXHFT
1916 hft_reset ();
1917 #endif
1919 #ifdef BSD_PGRPS
1920 widen_foreground_group (fileno (tty_out->input));
1921 #endif
1924 #ifdef HAVE_PTYS
1926 /* Set up the proper status flags for use of a pty. */
1928 void
1929 setup_pty (fd)
1930 int fd;
1932 /* I'm told that TOICREMOTE does not mean control chars
1933 "can't be sent" but rather that they don't have
1934 input-editing or signaling effects.
1935 That should be good, because we have other ways
1936 to do those things in Emacs.
1937 However, telnet mode seems not to work on 4.2.
1938 So TIOCREMOTE is turned off now. */
1940 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1941 will hang. In particular, the "timeout" feature (which
1942 causes a read to return if there is no data available)
1943 does this. Also it is known that telnet mode will hang
1944 in such a way that Emacs must be stopped (perhaps this
1945 is the same problem).
1947 If TIOCREMOTE is turned off, then there is a bug in
1948 hp-ux which sometimes loses data. Apparently the
1949 code which blocks the master process when the internal
1950 buffer fills up does not work. Other than this,
1951 though, everything else seems to work fine.
1953 Since the latter lossage is more benign, we may as well
1954 lose that way. -- cph */
1955 #ifdef FIONBIO
1956 #if defined(SYSV_PTYS) || defined(UNIX98_PTYS)
1958 int on = 1;
1959 ioctl (fd, FIONBIO, &on);
1961 #endif
1962 #endif
1964 #endif /* HAVE_PTYS */
1966 #ifdef VMS
1968 /* Assigning an input channel is done at the start of Emacs execution.
1969 This is called each time Emacs is resumed, also, but does nothing
1970 because input_chain is no longer zero. */
1972 void
1973 init_vms_input ()
1975 int status;
1977 if (fileno (CURTTY ()->input)) == 0)
1979 status = SYS$ASSIGN (&input_dsc, &fileno (CURTTY ()->input)), 0, 0);
1980 if (! (status & 1))
1981 LIB$STOP (status);
1985 /* Deassigning the input channel is done before exiting. */
1987 void
1988 stop_vms_input ()
1990 return SYS$DASSGN (fileno (CURTTY ()->input)));
1993 short input_buffer;
1995 /* Request reading one character into the keyboard buffer.
1996 This is done as soon as the buffer becomes empty. */
1998 void
1999 queue_kbd_input ()
2001 int status;
2002 extern kbd_input_ast ();
2004 waiting_for_ast = 0;
2005 stop_input = 0;
2006 status = SYS$QIO (0, fileno (CURTTY()->input), IO$_READVBLK,
2007 &input_iosb, kbd_input_ast, 1,
2008 &input_buffer, 1, 0, terminator_mask, 0, 0);
2011 int input_count;
2013 /* Ast routine that is called when keyboard input comes in
2014 in accord with the SYS$QIO above. */
2016 void
2017 kbd_input_ast ()
2019 register int c = -1;
2020 int old_errno = errno;
2021 extern EMACS_TIME *input_available_clear_time;
2023 if (waiting_for_ast)
2024 SYS$SETEF (input_ef);
2025 waiting_for_ast = 0;
2026 input_count++;
2027 #ifdef ASTDEBUG
2028 if (input_count == 25)
2029 exit (1);
2030 printf ("Ast # %d,", input_count);
2031 printf (" iosb = %x, %x, %x, %x",
2032 input_iosb.offset, input_iosb.status, input_iosb.termlen,
2033 input_iosb.term);
2034 #endif
2035 if (input_iosb.offset)
2037 c = input_buffer;
2038 #ifdef ASTDEBUG
2039 printf (", char = 0%o", c);
2040 #endif
2042 #ifdef ASTDEBUG
2043 printf ("\n");
2044 fflush (stdout);
2045 sleep (1);
2046 #endif
2047 if (! stop_input)
2048 queue_kbd_input ();
2049 if (c >= 0)
2051 struct input_event e;
2052 EVENT_INIT (e);
2054 e.kind = ASCII_KEYSTROKE_EVENT;
2055 XSETINT (e.code, c);
2056 e.frame_or_window = selected_frame;
2057 kbd_buffer_store_event (&e);
2059 if (input_available_clear_time)
2060 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
2061 errno = old_errno;
2064 /* Wait until there is something in kbd_buffer. */
2066 void
2067 wait_for_kbd_input ()
2069 extern int have_process_input, process_exited;
2071 /* If already something, avoid doing system calls. */
2072 if (detect_input_pending ())
2074 return;
2076 /* Clear a flag, and tell ast routine above to set it. */
2077 SYS$CLREF (input_ef);
2078 waiting_for_ast = 1;
2079 /* Check for timing error: ast happened while we were doing that. */
2080 if (!detect_input_pending ())
2082 /* No timing error: wait for flag to be set. */
2083 set_waiting_for_input (0);
2084 SYS$WFLOR (input_ef, input_eflist);
2085 clear_waiting_for_input ();
2086 if (!detect_input_pending ())
2087 /* Check for subprocess input availability */
2089 int dsp = have_process_input || process_exited;
2091 SYS$CLREF (process_ef);
2092 if (have_process_input)
2093 process_command_input ();
2094 if (process_exited)
2095 process_exit ();
2096 if (dsp)
2098 update_mode_lines++;
2099 prepare_menu_bars ();
2100 redisplay_preserve_echo_area (18);
2104 waiting_for_ast = 0;
2107 /* Get rid of any pending QIO, when we are about to suspend
2108 or when we want to throw away pending input.
2109 We wait for a positive sign that the AST routine has run
2110 and therefore there is no I/O request queued when we return.
2111 SYS$SETAST is used to avoid a timing error. */
2113 void
2114 end_kbd_input ()
2116 #ifdef ASTDEBUG
2117 printf ("At end_kbd_input.\n");
2118 fflush (stdout);
2119 sleep (1);
2120 #endif
2121 if (LIB$AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
2123 SYS$CANCEL (fileno (CURTTY()->input));
2124 return;
2127 SYS$SETAST (0);
2128 /* Clear a flag, and tell ast routine above to set it. */
2129 SYS$CLREF (input_ef);
2130 waiting_for_ast = 1;
2131 stop_input = 1;
2132 SYS$CANCEL (fileno (CURTTY()->input));
2133 SYS$SETAST (1);
2134 SYS$WAITFR (input_ef);
2135 waiting_for_ast = 0;
2138 /* Wait for either input available or time interval expiry. */
2140 void
2141 input_wait_timeout (timeval)
2142 int timeval; /* Time to wait, in seconds */
2144 int time [2];
2145 static int zero = 0;
2146 static int large = -10000000;
2148 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
2150 /* If already something, avoid doing system calls. */
2151 if (detect_input_pending ())
2153 return;
2155 /* Clear a flag, and tell ast routine above to set it. */
2156 SYS$CLREF (input_ef);
2157 waiting_for_ast = 1;
2158 /* Check for timing error: ast happened while we were doing that. */
2159 if (!detect_input_pending ())
2161 /* No timing error: wait for flag to be set. */
2162 SYS$CANTIM (1, 0);
2163 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2164 SYS$WFLOR (timer_ef, timer_eflist); /* Wait for timer expiry or input */
2166 waiting_for_ast = 0;
2169 /* The standard `sleep' routine works some other way
2170 and it stops working if you have ever quit out of it.
2171 This one continues to work. */
2173 sys_sleep (timeval)
2174 int timeval;
2176 int time [2];
2177 static int zero = 0;
2178 static int large = -10000000;
2180 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
2182 SYS$CANTIM (1, 0);
2183 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2184 SYS$WAITFR (timer_ef); /* Wait for timer expiry only */
2187 void
2188 init_sigio (fd)
2189 int fd;
2191 request_sigio ();
2194 reset_sigio (fd)
2195 int fd;
2197 unrequest_sigio ();
2200 void
2201 request_sigio ()
2203 if (noninteractive)
2204 return;
2205 croak ("request sigio");
2208 void
2209 unrequest_sigio ()
2211 if (noninteractive)
2212 return;
2213 croak ("unrequest sigio");
2216 #endif /* VMS */
2218 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2219 #ifndef CANNOT_DUMP
2220 #define NEED_STARTS
2221 #endif
2223 #ifndef SYSTEM_MALLOC
2224 #ifndef NEED_STARTS
2225 #define NEED_STARTS
2226 #endif
2227 #endif
2229 #ifdef NEED_STARTS
2230 /* Some systems that cannot dump also cannot implement these. */
2233 * Return the address of the start of the text segment prior to
2234 * doing an unexec. After unexec the return value is undefined.
2235 * See crt0.c for further explanation and _start.
2239 #if !(defined (__NetBSD__) && defined (__ELF__))
2240 #ifndef HAVE_TEXT_START
2241 char *
2242 start_of_text ()
2244 #ifdef TEXT_START
2245 return ((char *) TEXT_START);
2246 #else
2247 extern int _start ();
2248 return ((char *) _start);
2249 #endif /* TEXT_START */
2251 #endif /* not HAVE_TEXT_START */
2252 #endif
2255 * Return the address of the start of the data segment prior to
2256 * doing an unexec. After unexec the return value is undefined.
2257 * See crt0.c for further information and definition of data_start.
2259 * Apparently, on BSD systems this is etext at startup. On
2260 * USG systems (swapping) this is highly mmu dependent and
2261 * is also dependent on whether or not the program is running
2262 * with shared text. Generally there is a (possibly large)
2263 * gap between end of text and start of data with shared text.
2265 * On Uniplus+ systems with shared text, data starts at a
2266 * fixed address. Each port (from a given oem) is generally
2267 * different, and the specific value of the start of data can
2268 * be obtained via the UniPlus+ specific "uvar" system call,
2269 * however the method outlined in crt0.c seems to be more portable.
2271 * Probably what will have to happen when a USG unexec is available,
2272 * at least on UniPlus, is temacs will have to be made unshared so
2273 * that text and data are contiguous. Then once loadup is complete,
2274 * unexec will produce a shared executable where the data can be
2275 * at the normal shared text boundary and the startofdata variable
2276 * will be patched by unexec to the correct value.
2280 #ifndef start_of_data
2281 char *
2282 start_of_data ()
2284 #ifdef DATA_START
2285 return ((char *) DATA_START);
2286 #else
2287 #ifdef ORDINARY_LINK
2289 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2290 * data_start isn't defined. We take the address of environ, which
2291 * is known to live at or near the start of the system crt0.c, and
2292 * we don't sweat the handful of bytes that might lose.
2294 extern char **environ;
2296 return ((char *) &environ);
2297 #else
2298 extern int data_start;
2299 return ((char *) &data_start);
2300 #endif /* ORDINARY_LINK */
2301 #endif /* DATA_START */
2303 #endif /* start_of_data */
2304 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2306 /* init_system_name sets up the string for the Lisp function
2307 system-name to return. */
2309 #ifdef BSD4_1
2310 #include <whoami.h>
2311 #endif
2313 extern Lisp_Object Vsystem_name;
2315 #ifndef BSD4_1
2316 #ifndef VMS
2317 #ifdef HAVE_SOCKETS
2318 #include <sys/socket.h>
2319 #include <netdb.h>
2320 #endif /* HAVE_SOCKETS */
2321 #endif /* not VMS */
2322 #endif /* not BSD4_1 */
2324 #ifdef TRY_AGAIN
2325 #ifndef HAVE_H_ERRNO
2326 extern int h_errno;
2327 #endif
2328 #endif /* TRY_AGAIN */
2330 void
2331 init_system_name ()
2333 #ifdef BSD4_1
2334 Vsystem_name = build_string (sysname);
2335 #else
2336 #ifdef VMS
2337 char *sp, *end;
2338 if ((sp = egetenv ("SYS$NODE")) == 0)
2339 Vsystem_name = build_string ("vax-vms");
2340 else if ((end = index (sp, ':')) == 0)
2341 Vsystem_name = build_string (sp);
2342 else
2343 Vsystem_name = make_string (sp, end - sp);
2344 #else
2345 #ifndef HAVE_GETHOSTNAME
2346 struct utsname uts;
2347 uname (&uts);
2348 Vsystem_name = build_string (uts.nodename);
2349 #else /* HAVE_GETHOSTNAME */
2350 unsigned int hostname_size = 256;
2351 char *hostname = (char *) alloca (hostname_size);
2353 /* Try to get the host name; if the buffer is too short, try
2354 again. Apparently, the only indication gethostname gives of
2355 whether the buffer was large enough is the presence or absence
2356 of a '\0' in the string. Eech. */
2357 for (;;)
2359 gethostname (hostname, hostname_size - 1);
2360 hostname[hostname_size - 1] = '\0';
2362 /* Was the buffer large enough for the '\0'? */
2363 if (strlen (hostname) < hostname_size - 1)
2364 break;
2366 hostname_size <<= 1;
2367 hostname = (char *) alloca (hostname_size);
2369 #ifdef HAVE_SOCKETS
2370 /* Turn the hostname into the official, fully-qualified hostname.
2371 Don't do this if we're going to dump; this can confuse system
2372 libraries on some machines and make the dumped emacs core dump. */
2373 #ifndef CANNOT_DUMP
2374 if (initialized)
2375 #endif /* not CANNOT_DUMP */
2376 if (! index (hostname, '.'))
2378 int count;
2379 #ifdef HAVE_GETADDRINFO
2380 struct addrinfo *res;
2381 struct addrinfo hints;
2382 int ret;
2384 memset (&hints, 0, sizeof(hints));
2385 hints.ai_socktype = SOCK_STREAM;
2386 hints.ai_flags = AI_CANONNAME;
2388 for (count = 0;; count++)
2390 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
2391 || ret != EAI_AGAIN)
2392 break;
2394 if (count >= 5)
2395 break;
2396 Fsleep_for (make_number (1), Qnil);
2399 if (ret == 0)
2401 struct addrinfo *it = res;
2402 while (it)
2404 char *fqdn = it->ai_canonname;
2405 if (fqdn && index (fqdn, '.')
2406 && strcmp (fqdn, "localhost.localdomain") != 0)
2407 break;
2408 it = it->ai_next;
2410 if (it)
2412 hostname = alloca (strlen (it->ai_canonname) + 1);
2413 strcpy (hostname, it->ai_canonname);
2415 freeaddrinfo (res);
2417 #else /* !HAVE_GETADDRINFO */
2418 struct hostent *hp;
2419 for (count = 0;; count++)
2422 #ifdef TRY_AGAIN
2423 h_errno = 0;
2424 #endif
2425 hp = gethostbyname (hostname);
2426 #ifdef TRY_AGAIN
2427 if (! (hp == 0 && h_errno == TRY_AGAIN))
2428 #endif
2430 break;
2432 if (count >= 5)
2433 break;
2434 Fsleep_for (make_number (1), Qnil);
2437 if (hp)
2439 char *fqdn = (char *) hp->h_name;
2440 #if 0
2441 char *p;
2442 #endif
2444 if (!index (fqdn, '.'))
2446 /* We still don't have a fully qualified domain name.
2447 Try to find one in the list of alternate names */
2448 char **alias = hp->h_aliases;
2449 while (*alias
2450 && (!index (*alias, '.')
2451 || !strcmp (*alias, "localhost.localdomain")))
2452 alias++;
2453 if (*alias)
2454 fqdn = *alias;
2456 hostname = fqdn;
2457 #if 0
2458 /* Convert the host name to lower case. */
2459 /* Using ctype.h here would introduce a possible locale
2460 dependence that is probably wrong for hostnames. */
2461 p = hostname;
2462 while (*p)
2464 if (*p >= 'A' && *p <= 'Z')
2465 *p += 'a' - 'A';
2466 p++;
2468 #endif
2470 #endif /* !HAVE_GETADDRINFO */
2472 #endif /* HAVE_SOCKETS */
2473 /* We used to try using getdomainname here,
2474 but NIIBE Yutaka <gniibe@etl.go.jp> says that
2475 getdomainname gets the NIS/YP domain which often is not the same
2476 as in Internet domain name. */
2477 #if 0 /* Turned off because sysinfo is not really likely to return the
2478 correct Internet domain. */
2479 #if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN))
2480 if (! index (hostname, '.'))
2482 /* The hostname is not fully qualified. Append the domain name. */
2484 int hostlen = strlen (hostname);
2485 int domain_size = 256;
2487 for (;;)
2489 char *domain = (char *) alloca (domain_size + 1);
2490 char *fqdn = (char *) alloca (hostlen + 1 + domain_size + 1);
2491 int sys_domain_size = sysinfo (SI_SRPC_DOMAIN, domain, domain_size);
2492 if (sys_domain_size <= 0)
2493 break;
2494 if (domain_size < sys_domain_size)
2496 domain_size = sys_domain_size;
2497 continue;
2499 strcpy (fqdn, hostname);
2500 if (domain[0] == '.')
2501 strcpy (fqdn + hostlen, domain);
2502 else if (domain[0] != 0)
2504 fqdn[hostlen] = '.';
2505 strcpy (fqdn + hostlen + 1, domain);
2507 hostname = fqdn;
2508 break;
2511 #endif /* HAVE_SYSINFO && defined (SI_SRPC_DOMAIN) */
2512 #endif /* 0 */
2513 Vsystem_name = build_string (hostname);
2514 #endif /* HAVE_GETHOSTNAME */
2515 #endif /* VMS */
2516 #endif /* BSD4_1 */
2518 unsigned char *p;
2519 for (p = SDATA (Vsystem_name); *p; p++)
2520 if (*p == ' ' || *p == '\t')
2521 *p = '-';
2525 #ifndef MSDOS
2526 #ifndef VMS
2527 #if !defined (HAVE_SELECT)
2529 #include "sysselect.h"
2530 #undef select
2532 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2533 /* Cause explanatory error message at compile time,
2534 since the select emulation is not good enough for X. */
2535 int *x = &x_windows_lose_if_no_select_system_call;
2536 #endif
2538 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2539 * Only checks read descriptors.
2541 /* How long to wait between checking fds in select */
2542 #define SELECT_PAUSE 1
2543 int select_alarmed;
2545 /* For longjmp'ing back to read_input_waiting. */
2547 jmp_buf read_alarm_throw;
2549 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2550 The read_socket_hook function sets this to 1 while it is waiting. */
2552 int read_alarm_should_throw;
2554 SIGTYPE
2555 select_alarm ()
2557 select_alarmed = 1;
2558 #ifdef BSD4_1
2559 sigrelse (SIGALRM);
2560 #else /* not BSD4_1 */
2561 signal (SIGALRM, SIG_IGN);
2562 #endif /* not BSD4_1 */
2563 SIGNAL_THREAD_CHECK (SIGALRM);
2564 if (read_alarm_should_throw)
2565 longjmp (read_alarm_throw, 1);
2568 #ifndef WINDOWSNT
2569 /* Only rfds are checked. */
2571 sys_select (nfds, rfds, wfds, efds, timeout)
2572 int nfds;
2573 SELECT_TYPE *rfds, *wfds, *efds;
2574 EMACS_TIME *timeout;
2576 /* XXX This needs to be updated for multi-tty support. Is there
2577 anybody who needs to emulate select these days? */
2578 int ravail = 0;
2579 SELECT_TYPE orfds;
2580 int timeoutval;
2581 int *local_timeout;
2582 extern int proc_buffered_char[];
2583 #ifndef subprocesses
2584 int process_tick = 0, update_tick = 0;
2585 #else
2586 extern int process_tick, update_tick;
2587 #endif
2588 unsigned char buf;
2590 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2591 /* If we're using X, then the native select will work; we only need the
2592 emulation for non-X usage. */
2593 if (!NILP (Vinitial_window_system))
2594 return select (nfds, rfds, wfds, efds, timeout);
2595 #endif
2596 timeoutval = timeout ? EMACS_SECS (*timeout) : 100000;
2597 local_timeout = &timeoutval;
2598 FD_ZERO (&orfds);
2599 if (rfds)
2601 orfds = *rfds;
2602 FD_ZERO (rfds);
2604 if (wfds)
2605 FD_ZERO (wfds);
2606 if (efds)
2607 FD_ZERO (efds);
2609 /* If we are looking only for the terminal, with no timeout,
2610 just read it and wait -- that's more efficient. */
2611 if (*local_timeout == 100000 && process_tick == update_tick
2612 && FD_ISSET (0, &orfds))
2614 int fd;
2615 for (fd = 1; fd < nfds; ++fd)
2616 if (FD_ISSET (fd, &orfds))
2617 goto hardway;
2618 if (! detect_input_pending ())
2619 read_input_waiting ();
2620 FD_SET (0, rfds);
2621 return 1;
2624 hardway:
2625 /* Once a second, till the timer expires, check all the flagged read
2626 * descriptors to see if any input is available. If there is some then
2627 * set the corresponding bit in the return copy of rfds.
2629 while (1)
2631 register int to_check, fd;
2633 if (rfds)
2635 for (to_check = nfds, fd = 0; --to_check >= 0; fd++)
2637 if (FD_ISSET (fd, &orfds))
2639 int avail = 0, status = 0;
2641 if (fd == 0)
2642 avail = detect_input_pending (); /* Special keyboard handler */
2643 else
2645 #ifdef FIONREAD
2646 status = ioctl (fd, FIONREAD, &avail);
2647 #else /* no FIONREAD */
2648 /* Hoping it will return -1 if nothing available
2649 or 0 if all 0 chars requested are read. */
2650 if (proc_buffered_char[fd] >= 0)
2651 avail = 1;
2652 else
2654 avail = read (fd, &buf, 1);
2655 if (avail > 0)
2656 proc_buffered_char[fd] = buf;
2658 #endif /* no FIONREAD */
2660 if (status >= 0 && avail > 0)
2662 FD_SET (fd, rfds);
2663 ravail++;
2668 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
2669 break;
2671 turn_on_atimers (0);
2672 signal (SIGALRM, select_alarm);
2673 select_alarmed = 0;
2674 alarm (SELECT_PAUSE);
2676 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2677 while (select_alarmed == 0 && *local_timeout != 0
2678 && process_tick == update_tick)
2680 /* If we are interested in terminal input,
2681 wait by reading the terminal.
2682 That makes instant wakeup for terminal input at least. */
2683 if (FD_ISSET (0, &orfds))
2685 read_input_waiting ();
2686 if (detect_input_pending ())
2687 select_alarmed = 1;
2689 else
2690 pause ();
2692 (*local_timeout) -= SELECT_PAUSE;
2694 /* Reset the old alarm if there was one. */
2695 turn_on_atimers (1);
2697 if (*local_timeout == 0) /* Stop on timer being cleared */
2698 break;
2700 return ravail;
2702 #endif /* not WINDOWSNT */
2704 /* Read keyboard input into the standard buffer,
2705 waiting for at least one character. */
2707 void
2708 read_input_waiting ()
2710 /* XXX This needs to be updated for multi-tty support. Is there
2711 anybody who needs to emulate select these days? */
2712 int nread, i;
2713 extern int quit_char;
2715 if (read_socket_hook)
2717 struct input_event hold_quit;
2719 EVENT_INIT (hold_quit);
2720 hold_quit.kind = NO_EVENT;
2722 read_alarm_should_throw = 0;
2723 if (! setjmp (read_alarm_throw))
2724 nread = (*read_socket_hook) (0, 1, &hold_quit);
2725 else
2726 nread = -1;
2728 if (hold_quit.kind != NO_EVENT)
2729 kbd_buffer_store_event (&hold_quit);
2731 else
2733 struct input_event e;
2734 char buf[3];
2735 nread = read (fileno (stdin), buf, 1);
2736 EVENT_INIT (e);
2738 /* Scan the chars for C-g and store them in kbd_buffer. */
2739 e.kind = ASCII_KEYSTROKE_EVENT;
2740 e.frame_or_window = selected_frame;
2741 e.modifiers = 0;
2742 for (i = 0; i < nread; i++)
2744 /* Convert chars > 0177 to meta events if desired.
2745 We do this under the same conditions that read_avail_input does. */
2746 if (read_socket_hook == 0)
2748 /* If the user says she has a meta key, then believe her. */
2749 if (meta_key == 1 && (buf[i] & 0x80))
2750 e.modifiers = meta_modifier;
2751 if (meta_key != 2)
2752 buf[i] &= ~0x80;
2755 XSETINT (e.code, buf[i]);
2756 kbd_buffer_store_event (&e);
2757 /* Don't look at input that follows a C-g too closely.
2758 This reduces lossage due to autorepeat on C-g. */
2759 if (buf[i] == quit_char)
2760 break;
2765 #if !defined (HAVE_SELECT)
2766 #define select sys_select
2767 #endif
2769 #endif /* not HAVE_SELECT */
2770 #endif /* not VMS */
2771 #endif /* not MSDOS */
2773 #ifdef BSD4_1
2774 void
2775 init_sigio (fd)
2776 int fd;
2778 if (noninteractive)
2779 return;
2780 lmode = LINTRUP | lmode;
2781 ioctl (fd, TIOCLSET, &lmode);
2784 void
2785 reset_sigio (fd)
2786 int fd;
2788 if (noninteractive)
2789 return;
2790 lmode = ~LINTRUP & lmode;
2791 ioctl (fd, TIOCLSET, &lmode);
2794 void
2795 request_sigio ()
2797 if (noninteractive)
2798 return;
2799 sigrelse (SIGTINT);
2801 interrupts_deferred = 0;
2804 void
2805 unrequest_sigio ()
2807 if (noninteractive)
2808 return;
2809 sighold (SIGTINT);
2811 interrupts_deferred = 1;
2814 /* still inside #ifdef BSD4_1 */
2815 #ifdef subprocesses
2817 int sigheld; /* Mask of held signals */
2819 void
2820 sigholdx (signum)
2821 int signum;
2823 sigheld |= sigbit (signum);
2824 sighold (signum);
2827 void
2828 sigisheld (signum)
2829 int signum;
2831 sigheld |= sigbit (signum);
2834 void
2835 sigunhold (signum)
2836 int signum;
2838 sigheld &= ~sigbit (signum);
2839 sigrelse (signum);
2842 void
2843 sigfree () /* Free all held signals */
2845 int i;
2846 for (i = 0; i < NSIG; i++)
2847 if (sigheld & sigbit (i))
2848 sigrelse (i);
2849 sigheld = 0;
2853 sigbit (i)
2855 return 1 << (i - 1);
2857 #endif /* subprocesses */
2858 #endif /* BSD4_1 */
2860 /* POSIX signals support - DJB */
2861 /* Anyone with POSIX signals should have ANSI C declarations */
2863 #ifdef POSIX_SIGNALS
2865 sigset_t empty_mask, full_mask;
2867 signal_handler_t
2868 sys_signal (int signal_number, signal_handler_t action)
2870 struct sigaction new_action, old_action;
2871 sigemptyset (&new_action.sa_mask);
2872 new_action.sa_handler = action;
2873 #if defined (SA_RESTART) && ! defined (BROKEN_SA_RESTART) && !defined(SYNC_INPUT)
2874 /* Emacs mostly works better with restartable system services. If this
2875 flag exists, we probably want to turn it on here.
2876 However, on some systems this resets the timeout of `select'
2877 which means that `select' never finishes if it keeps getting signals.
2878 BROKEN_SA_RESTART is defined on those systems. */
2879 /* It's not clear why the comment above says "mostly works better". --Stef
2880 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
2881 for pending input so we need long-running syscalls to be interrupted
2882 after a signal that sets the interrupt_input_pending flag. */
2883 new_action.sa_flags = SA_RESTART;
2884 #else
2885 new_action.sa_flags = 0;
2886 #endif
2887 sigaction (signal_number, &new_action, &old_action);
2888 return (old_action.sa_handler);
2891 #ifndef __GNUC__
2892 /* If we're compiling with GCC, we don't need this function, since it
2893 can be written as a macro. */
2894 sigset_t
2895 sys_sigmask (int sig)
2897 sigset_t mask;
2898 sigemptyset (&mask);
2899 sigaddset (&mask, sig);
2900 return mask;
2902 #endif
2904 /* I'd like to have these guys return pointers to the mask storage in here,
2905 but there'd be trouble if the code was saving multiple masks. I'll be
2906 safe and pass the structure. It normally won't be more than 2 bytes
2907 anyhow. - DJB */
2909 sigset_t
2910 sys_sigblock (sigset_t new_mask)
2912 sigset_t old_mask;
2913 sigprocmask (SIG_BLOCK, &new_mask, &old_mask);
2914 return (old_mask);
2917 sigset_t
2918 sys_sigunblock (sigset_t new_mask)
2920 sigset_t old_mask;
2921 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask);
2922 return (old_mask);
2925 sigset_t
2926 sys_sigsetmask (sigset_t new_mask)
2928 sigset_t old_mask;
2929 sigprocmask (SIG_SETMASK, &new_mask, &old_mask);
2930 return (old_mask);
2933 #endif /* POSIX_SIGNALS */
2935 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2936 static char *my_sys_siglist[NSIG];
2937 # ifdef sys_siglist
2938 # undef sys_siglist
2939 # endif
2940 # define sys_siglist my_sys_siglist
2941 #endif
2943 void
2944 init_signals ()
2946 #ifdef POSIX_SIGNALS
2947 sigemptyset (&empty_mask);
2948 sigfillset (&full_mask);
2949 #endif
2951 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2952 if (! initialized)
2954 # ifdef SIGABRT
2955 sys_siglist[SIGABRT] = "Aborted";
2956 # endif
2957 # ifdef SIGAIO
2958 sys_siglist[SIGAIO] = "LAN I/O interrupt";
2959 # endif
2960 # ifdef SIGALRM
2961 sys_siglist[SIGALRM] = "Alarm clock";
2962 # endif
2963 # ifdef SIGBUS
2964 sys_siglist[SIGBUS] = "Bus error";
2965 # endif
2966 # ifdef SIGCLD
2967 sys_siglist[SIGCLD] = "Child status changed";
2968 # endif
2969 # ifdef SIGCHLD
2970 sys_siglist[SIGCHLD] = "Child status changed";
2971 # endif
2972 # ifdef SIGCONT
2973 sys_siglist[SIGCONT] = "Continued";
2974 # endif
2975 # ifdef SIGDANGER
2976 sys_siglist[SIGDANGER] = "Swap space dangerously low";
2977 # endif
2978 # ifdef SIGDGNOTIFY
2979 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
2980 # endif
2981 # ifdef SIGEMT
2982 sys_siglist[SIGEMT] = "Emulation trap";
2983 # endif
2984 # ifdef SIGFPE
2985 sys_siglist[SIGFPE] = "Arithmetic exception";
2986 # endif
2987 # ifdef SIGFREEZE
2988 sys_siglist[SIGFREEZE] = "SIGFREEZE";
2989 # endif
2990 # ifdef SIGGRANT
2991 sys_siglist[SIGGRANT] = "Monitor mode granted";
2992 # endif
2993 # ifdef SIGHUP
2994 sys_siglist[SIGHUP] = "Hangup";
2995 # endif
2996 # ifdef SIGILL
2997 sys_siglist[SIGILL] = "Illegal instruction";
2998 # endif
2999 # ifdef SIGINT
3000 sys_siglist[SIGINT] = "Interrupt";
3001 # endif
3002 # ifdef SIGIO
3003 sys_siglist[SIGIO] = "I/O possible";
3004 # endif
3005 # ifdef SIGIOINT
3006 sys_siglist[SIGIOINT] = "I/O intervention required";
3007 # endif
3008 # ifdef SIGIOT
3009 sys_siglist[SIGIOT] = "IOT trap";
3010 # endif
3011 # ifdef SIGKILL
3012 sys_siglist[SIGKILL] = "Killed";
3013 # endif
3014 # ifdef SIGLOST
3015 sys_siglist[SIGLOST] = "Resource lost";
3016 # endif
3017 # ifdef SIGLWP
3018 sys_siglist[SIGLWP] = "SIGLWP";
3019 # endif
3020 # ifdef SIGMSG
3021 sys_siglist[SIGMSG] = "Monitor mode data available";
3022 # endif
3023 # ifdef SIGPHONE
3024 sys_siglist[SIGWIND] = "SIGPHONE";
3025 # endif
3026 # ifdef SIGPIPE
3027 sys_siglist[SIGPIPE] = "Broken pipe";
3028 # endif
3029 # ifdef SIGPOLL
3030 sys_siglist[SIGPOLL] = "Pollable event occurred";
3031 # endif
3032 # ifdef SIGPROF
3033 sys_siglist[SIGPROF] = "Profiling timer expired";
3034 # endif
3035 # ifdef SIGPTY
3036 sys_siglist[SIGPTY] = "PTY I/O interrupt";
3037 # endif
3038 # ifdef SIGPWR
3039 sys_siglist[SIGPWR] = "Power-fail restart";
3040 # endif
3041 # ifdef SIGQUIT
3042 sys_siglist[SIGQUIT] = "Quit";
3043 # endif
3044 # ifdef SIGRETRACT
3045 sys_siglist[SIGRETRACT] = "Need to relinguish monitor mode";
3046 # endif
3047 # ifdef SIGSAK
3048 sys_siglist[SIGSAK] = "Secure attention";
3049 # endif
3050 # ifdef SIGSEGV
3051 sys_siglist[SIGSEGV] = "Segmentation violation";
3052 # endif
3053 # ifdef SIGSOUND
3054 sys_siglist[SIGSOUND] = "Sound completed";
3055 # endif
3056 # ifdef SIGSTOP
3057 sys_siglist[SIGSTOP] = "Stopped (signal)";
3058 # endif
3059 # ifdef SIGSTP
3060 sys_siglist[SIGSTP] = "Stopped (user)";
3061 # endif
3062 # ifdef SIGSYS
3063 sys_siglist[SIGSYS] = "Bad argument to system call";
3064 # endif
3065 # ifdef SIGTERM
3066 sys_siglist[SIGTERM] = "Terminated";
3067 # endif
3068 # ifdef SIGTHAW
3069 sys_siglist[SIGTHAW] = "SIGTHAW";
3070 # endif
3071 # ifdef SIGTRAP
3072 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
3073 # endif
3074 # ifdef SIGTSTP
3075 sys_siglist[SIGTSTP] = "Stopped (user)";
3076 # endif
3077 # ifdef SIGTTIN
3078 sys_siglist[SIGTTIN] = "Stopped (tty input)";
3079 # endif
3080 # ifdef SIGTTOU
3081 sys_siglist[SIGTTOU] = "Stopped (tty output)";
3082 # endif
3083 # ifdef SIGURG
3084 sys_siglist[SIGURG] = "Urgent I/O condition";
3085 # endif
3086 # ifdef SIGUSR1
3087 sys_siglist[SIGUSR1] = "User defined signal 1";
3088 # endif
3089 # ifdef SIGUSR2
3090 sys_siglist[SIGUSR2] = "User defined signal 2";
3091 # endif
3092 # ifdef SIGVTALRM
3093 sys_siglist[SIGVTALRM] = "Virtual timer expired";
3094 # endif
3095 # ifdef SIGWAITING
3096 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
3097 # endif
3098 # ifdef SIGWINCH
3099 sys_siglist[SIGWINCH] = "Window size changed";
3100 # endif
3101 # ifdef SIGWIND
3102 sys_siglist[SIGWIND] = "SIGWIND";
3103 # endif
3104 # ifdef SIGXCPU
3105 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
3106 # endif
3107 # ifdef SIGXFSZ
3108 sys_siglist[SIGXFSZ] = "File size limit exceeded";
3109 # endif
3111 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
3114 #ifndef HAVE_RANDOM
3115 #ifdef random
3116 #define HAVE_RANDOM
3117 #endif
3118 #endif
3120 /* Figure out how many bits the system's random number generator uses.
3121 `random' and `lrand48' are assumed to return 31 usable bits.
3122 BSD `rand' returns a 31 bit value but the low order bits are unusable;
3123 so we'll shift it and treat it like the 15-bit USG `rand'. */
3125 #ifndef RAND_BITS
3126 # ifdef HAVE_RANDOM
3127 # define RAND_BITS 31
3128 # else /* !HAVE_RANDOM */
3129 # ifdef HAVE_LRAND48
3130 # define RAND_BITS 31
3131 # define random lrand48
3132 # else /* !HAVE_LRAND48 */
3133 # define RAND_BITS 15
3134 # if RAND_MAX == 32767
3135 # define random rand
3136 # else /* RAND_MAX != 32767 */
3137 # if RAND_MAX == 2147483647
3138 # define random() (rand () >> 16)
3139 # else /* RAND_MAX != 2147483647 */
3140 # ifdef USG
3141 # define random rand
3142 # else
3143 # define random() (rand () >> 16)
3144 # endif /* !USG */
3145 # endif /* RAND_MAX != 2147483647 */
3146 # endif /* RAND_MAX != 32767 */
3147 # endif /* !HAVE_LRAND48 */
3148 # endif /* !HAVE_RANDOM */
3149 #endif /* !RAND_BITS */
3151 void
3152 seed_random (arg)
3153 long arg;
3155 #ifdef HAVE_RANDOM
3156 srandom ((unsigned int)arg);
3157 #else
3158 # ifdef HAVE_LRAND48
3159 srand48 (arg);
3160 # else
3161 srand ((unsigned int)arg);
3162 # endif
3163 #endif
3167 * Build a full Emacs-sized word out of whatever we've got.
3168 * This suffices even for a 64-bit architecture with a 15-bit rand.
3170 long
3171 get_random ()
3173 long val = random ();
3174 #if VALBITS > RAND_BITS
3175 val = (val << RAND_BITS) ^ random ();
3176 #if VALBITS > 2*RAND_BITS
3177 val = (val << RAND_BITS) ^ random ();
3178 #if VALBITS > 3*RAND_BITS
3179 val = (val << RAND_BITS) ^ random ();
3180 #if VALBITS > 4*RAND_BITS
3181 val = (val << RAND_BITS) ^ random ();
3182 #endif /* need at least 5 */
3183 #endif /* need at least 4 */
3184 #endif /* need at least 3 */
3185 #endif /* need at least 2 */
3186 return val & ((1L << VALBITS) - 1);
3189 #ifdef VMS
3191 #ifdef getenv
3192 /* If any place else asks for the TERM variable,
3193 allow it to be overridden with the EMACS_TERM variable
3194 before attempting to translate the logical name TERM. As a last
3195 resort, ask for VAX C's special idea of the TERM variable. */
3196 #undef getenv
3197 char *
3198 sys_getenv (name)
3199 char *name;
3201 register char *val;
3202 static char buf[256];
3203 static struct dsc$descriptor_s equiv
3204 = {sizeof (buf), DSC$K_DTYPE_T, DSC$K_CLASS_S, buf};
3205 static struct dsc$descriptor_s d_name
3206 = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
3207 short eqlen;
3209 if (!strcmp (name, "TERM"))
3211 val = (char *) getenv ("EMACS_TERM");
3212 if (val)
3213 return val;
3216 d_name.dsc$w_length = strlen (name);
3217 d_name.dsc$a_pointer = name;
3218 if (LIB$SYS_TRNLOG (&d_name, &eqlen, &equiv) == 1)
3220 char *str = (char *) xmalloc (eqlen + 1);
3221 bcopy (buf, str, eqlen);
3222 str[eqlen] = '\0';
3223 /* This is a storage leak, but a pain to fix. With luck,
3224 no one will ever notice. */
3225 return str;
3227 return (char *) getenv (name);
3229 #endif /* getenv */
3231 #ifdef abort
3232 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
3233 to force a call on the debugger from within the image. */
3234 #undef abort
3235 sys_abort ()
3237 reset_all_sys_modes ();
3238 LIB$SIGNAL (SS$_DEBUG);
3240 #endif /* abort */
3241 #endif /* VMS */
3243 #ifdef VMS
3244 #ifdef LINK_CRTL_SHARE
3245 #ifdef SHARABLE_LIB_BUG
3246 /* Variables declared noshare and initialized in sharable libraries
3247 cannot be shared. The VMS linker incorrectly forces you to use a private
3248 version which is uninitialized... If not for this "feature", we
3249 could use the C library definition of sys_nerr and sys_errlist. */
3250 int sys_nerr = 35;
3251 char *sys_errlist[] =
3253 "error 0",
3254 "not owner",
3255 "no such file or directory",
3256 "no such process",
3257 "interrupted system call",
3258 "i/o error",
3259 "no such device or address",
3260 "argument list too long",
3261 "exec format error",
3262 "bad file number",
3263 "no child process",
3264 "no more processes",
3265 "not enough memory",
3266 "permission denied",
3267 "bad address",
3268 "block device required",
3269 "mount devices busy",
3270 "file exists",
3271 "cross-device link",
3272 "no such device",
3273 "not a directory",
3274 "is a directory",
3275 "invalid argument",
3276 "file table overflow",
3277 "too many open files",
3278 "not a typewriter",
3279 "text file busy",
3280 "file too big",
3281 "no space left on device",
3282 "illegal seek",
3283 "read-only file system",
3284 "too many links",
3285 "broken pipe",
3286 "math argument",
3287 "result too large",
3288 "I/O stream empty",
3289 "vax/vms specific error code nontranslatable error"
3291 #endif /* SHARABLE_LIB_BUG */
3292 #endif /* LINK_CRTL_SHARE */
3293 #endif /* VMS */
3295 #ifndef HAVE_STRERROR
3296 #ifndef WINDOWSNT
3297 char *
3298 strerror (errnum)
3299 int errnum;
3301 extern char *sys_errlist[];
3302 extern int sys_nerr;
3304 if (errnum >= 0 && errnum < sys_nerr)
3305 return sys_errlist[errnum];
3306 return (char *) "Unknown error";
3308 #endif /* not WINDOWSNT */
3309 #endif /* ! HAVE_STRERROR */
3312 emacs_open (path, oflag, mode)
3313 const char *path;
3314 int oflag, mode;
3316 register int rtnval;
3318 #ifdef BSD4_1
3319 if (oflag & O_CREAT)
3320 return creat (path, mode);
3321 #endif
3323 while ((rtnval = open (path, oflag, mode)) == -1
3324 && (errno == EINTR))
3325 QUIT;
3326 return (rtnval);
3330 emacs_close (fd)
3331 int fd;
3333 int did_retry = 0;
3334 register int rtnval;
3336 #if defined (MAC_OSX) && defined (HAVE_CARBON)
3338 extern int mac_try_close_socket P_ ((int));
3340 if (mac_try_close_socket (fd))
3341 return 0;
3343 #endif
3345 while ((rtnval = close (fd)) == -1
3346 && (errno == EINTR))
3347 did_retry = 1;
3349 /* If close is interrupted SunOS 4.1 may or may not have closed the
3350 file descriptor. If it did the second close will fail with
3351 errno = EBADF. That means we have succeeded. */
3352 if (rtnval == -1 && did_retry && errno == EBADF)
3353 return 0;
3355 return rtnval;
3359 emacs_read (fildes, buf, nbyte)
3360 int fildes;
3361 char *buf;
3362 unsigned int nbyte;
3364 register int rtnval;
3366 while ((rtnval = read (fildes, buf, nbyte)) == -1
3367 && (errno == EINTR))
3368 QUIT;
3369 return (rtnval);
3373 emacs_write (fildes, buf, nbyte)
3374 int fildes;
3375 const char *buf;
3376 unsigned int nbyte;
3378 register int rtnval, bytes_written;
3380 bytes_written = 0;
3382 while (nbyte > 0)
3384 rtnval = write (fildes, buf, nbyte);
3386 if (rtnval == -1)
3388 if (errno == EINTR)
3390 #ifdef SYNC_INPUT
3391 /* I originally used `QUIT' but that might causes files to
3392 be truncated if you hit C-g in the middle of it. --Stef */
3393 if (interrupt_input_pending)
3394 handle_async_input ();
3395 if (pending_atimers)
3396 do_pending_atimers ();
3397 #endif
3398 continue;
3400 else
3401 return (bytes_written ? bytes_written : -1);
3404 buf += rtnval;
3405 nbyte -= rtnval;
3406 bytes_written += rtnval;
3408 return (bytes_written);
3411 #ifdef USG
3413 * All of the following are for USG.
3415 * On USG systems the system calls are INTERRUPTIBLE by signals
3416 * that the user program has elected to catch. Thus the system call
3417 * must be retried in these cases. To handle this without massive
3418 * changes in the source code, we remap the standard system call names
3419 * to names for our own functions in sysdep.c that do the system call
3420 * with retries. Actually, for portability reasons, it is good
3421 * programming practice, as this example shows, to limit all actual
3422 * system calls to a single occurrence in the source. Sure, this
3423 * adds an extra level of function call overhead but it is almost
3424 * always negligible. Fred Fish, Unisoft Systems Inc.
3428 * Warning, this function may not duplicate 4.2 action properly
3429 * under error conditions.
3432 #ifndef MAXPATHLEN
3433 /* In 4.1, param.h fails to define this. */
3434 #define MAXPATHLEN 1024
3435 #endif
3437 #ifndef HAVE_GETWD
3439 char *
3440 getwd (pathname)
3441 char *pathname;
3443 char *npath, *spath;
3444 extern char *getcwd ();
3446 BLOCK_INPUT; /* getcwd uses malloc */
3447 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
3448 if (spath == 0)
3450 UNBLOCK_INPUT;
3451 return spath;
3453 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3454 up to first slash. Should be harmless on other systems. */
3455 while (*npath && *npath != '/')
3456 npath++;
3457 strcpy (pathname, npath);
3458 free (spath); /* getcwd uses malloc */
3459 UNBLOCK_INPUT;
3460 return pathname;
3463 #endif /* HAVE_GETWD */
3466 * Emulate rename using unlink/link. Note that this is
3467 * only partially correct. Also, doesn't enforce restriction
3468 * that files be of same type (regular->regular, dir->dir, etc).
3471 #ifndef HAVE_RENAME
3473 rename (from, to)
3474 const char *from;
3475 const char *to;
3477 if (access (from, 0) == 0)
3479 unlink (to);
3480 if (link (from, to) == 0)
3481 if (unlink (from) == 0)
3482 return (0);
3484 return (-1);
3487 #endif
3490 #ifdef HPUX
3491 #ifndef HAVE_PERROR
3493 /* HPUX curses library references perror, but as far as we know
3494 it won't be called. Anyway this definition will do for now. */
3496 perror ()
3500 #endif /* not HAVE_PERROR */
3501 #endif /* HPUX */
3503 #ifndef HAVE_DUP2
3506 * Emulate BSD dup2. First close newd if it already exists.
3507 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3508 * until we are, then close the unsuccessful ones.
3511 dup2 (oldd, newd)
3512 int oldd;
3513 int newd;
3515 register int fd, ret;
3517 emacs_close (newd);
3519 #ifdef F_DUPFD
3520 return fcntl (oldd, F_DUPFD, newd);
3521 #else
3522 fd = dup (old);
3523 if (fd == -1)
3524 return -1;
3525 if (fd == new)
3526 return new;
3527 ret = dup2 (old,new);
3528 emacs_close (fd);
3529 return ret;
3530 #endif
3533 #endif /* not HAVE_DUP2 */
3536 * Gettimeofday. Simulate as much as possible. Only accurate
3537 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3538 * Only needed when subprocesses are defined.
3541 #ifdef subprocesses
3542 #ifndef VMS
3543 #ifndef HAVE_GETTIMEOFDAY
3544 #ifdef HAVE_TIMEVAL
3546 /* ARGSUSED */
3548 gettimeofday (tp, tzp)
3549 struct timeval *tp;
3550 struct timezone *tzp;
3552 extern long time ();
3554 tp->tv_sec = time ((long *)0);
3555 tp->tv_usec = 0;
3556 if (tzp != 0)
3557 tzp->tz_minuteswest = -1;
3558 return 0;
3561 #endif
3562 #endif
3563 #endif
3564 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3567 * This function will go away as soon as all the stubs fixed. (fnf)
3570 void
3571 croak (badfunc)
3572 char *badfunc;
3574 printf ("%s not yet implemented\r\n", badfunc);
3575 reset_all_sys_modes ();
3576 exit (1);
3579 #endif /* USG */
3581 /* Directory routines for systems that don't have them. */
3583 #ifdef SYSV_SYSTEM_DIR
3585 #include <dirent.h>
3587 #if defined (BROKEN_CLOSEDIR) || !defined (HAVE_CLOSEDIR)
3590 closedir (dirp)
3591 register DIR *dirp; /* stream from opendir */
3593 int rtnval;
3595 rtnval = emacs_close (dirp->dd_fd);
3597 /* Some systems (like Solaris) allocate the buffer and the DIR all
3598 in one block. Why in the world are we freeing this ourselves
3599 anyway? */
3600 #if ! (defined (sun) && defined (USG5_4))
3601 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
3602 #endif
3603 xfree ((char *) dirp);
3605 return rtnval;
3607 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3608 #endif /* SYSV_SYSTEM_DIR */
3610 #ifdef NONSYSTEM_DIR_LIBRARY
3612 DIR *
3613 opendir (filename)
3614 char *filename; /* name of directory */
3616 register DIR *dirp; /* -> malloc'ed storage */
3617 register int fd; /* file descriptor for read */
3618 struct stat sbuf; /* result of fstat */
3620 fd = emacs_open (filename, O_RDONLY, 0);
3621 if (fd < 0)
3622 return 0;
3624 BLOCK_INPUT;
3625 if (fstat (fd, &sbuf) < 0
3626 || (sbuf.st_mode & S_IFMT) != S_IFDIR
3627 || (dirp = (DIR *) xmalloc (sizeof (DIR))) == 0)
3629 emacs_close (fd);
3630 UNBLOCK_INPUT;
3631 return 0; /* bad luck today */
3633 UNBLOCK_INPUT;
3635 dirp->dd_fd = fd;
3636 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */
3638 return dirp;
3641 void
3642 closedir (dirp)
3643 register DIR *dirp; /* stream from opendir */
3645 emacs_close (dirp->dd_fd);
3646 xfree ((char *) dirp);
3650 #ifndef VMS
3651 #define DIRSIZ 14
3652 struct olddir
3654 ino_t od_ino; /* inode */
3655 char od_name[DIRSIZ]; /* filename */
3657 #endif /* not VMS */
3659 struct direct dir_static; /* simulated directory contents */
3661 /* ARGUSED */
3662 struct direct *
3663 readdir (dirp)
3664 register DIR *dirp; /* stream from opendir */
3666 #ifndef VMS
3667 register struct olddir *dp; /* -> directory data */
3668 #else /* VMS */
3669 register struct dir$_name *dp; /* -> directory data */
3670 register struct dir$_version *dv; /* -> version data */
3671 #endif /* VMS */
3673 for (; ;)
3675 if (dirp->dd_loc >= dirp->dd_size)
3676 dirp->dd_loc = dirp->dd_size = 0;
3678 if (dirp->dd_size == 0 /* refill buffer */
3679 && (dirp->dd_size = emacs_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3680 return 0;
3682 #ifndef VMS
3683 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
3684 dirp->dd_loc += sizeof (struct olddir);
3686 if (dp->od_ino != 0) /* not deleted entry */
3688 dir_static.d_ino = dp->od_ino;
3689 strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
3690 dir_static.d_name[DIRSIZ] = '\0';
3691 dir_static.d_namlen = strlen (dir_static.d_name);
3692 dir_static.d_reclen = sizeof (struct direct)
3693 - MAXNAMLEN + 3
3694 + dir_static.d_namlen - dir_static.d_namlen % 4;
3695 return &dir_static; /* -> simulated structure */
3697 #else /* VMS */
3698 dp = (struct dir$_name *) dirp->dd_buf;
3699 if (dirp->dd_loc == 0)
3700 dirp->dd_loc = (dp->dir$b_namecount&1) ? dp->dir$b_namecount + 1
3701 : dp->dir$b_namecount;
3702 dv = (struct dir$_version *)&dp->dir$t_name[dirp->dd_loc];
3703 dir_static.d_ino = dv->dir$w_fid_num;
3704 dir_static.d_namlen = dp->dir$b_namecount;
3705 dir_static.d_reclen = sizeof (struct direct)
3706 - MAXNAMLEN + 3
3707 + dir_static.d_namlen - dir_static.d_namlen % 4;
3708 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3709 dir_static.d_name[dir_static.d_namlen] = '\0';
3710 dirp->dd_loc = dirp->dd_size; /* only one record at a time */
3711 return &dir_static;
3712 #endif /* VMS */
3716 #ifdef VMS
3717 /* readdirver is just like readdir except it returns all versions of a file
3718 as separate entries. */
3720 /* ARGUSED */
3721 struct direct *
3722 readdirver (dirp)
3723 register DIR *dirp; /* stream from opendir */
3725 register struct dir$_name *dp; /* -> directory data */
3726 register struct dir$_version *dv; /* -> version data */
3728 if (dirp->dd_loc >= dirp->dd_size - sizeof (struct dir$_name))
3729 dirp->dd_loc = dirp->dd_size = 0;
3731 if (dirp->dd_size == 0 /* refill buffer */
3732 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3733 return 0;
3735 dp = (struct dir$_name *) dirp->dd_buf;
3736 if (dirp->dd_loc == 0)
3737 dirp->dd_loc = (dp->dir$b_namecount & 1) ? dp->dir$b_namecount + 1
3738 : dp->dir$b_namecount;
3739 dv = (struct dir$_version *) &dp->dir$t_name[dirp->dd_loc];
3740 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3741 sprintf (&dir_static.d_name[dp->dir$b_namecount], ";%d", dv->dir$w_version);
3742 dir_static.d_namlen = strlen (dir_static.d_name);
3743 dir_static.d_ino = dv->dir$w_fid_num;
3744 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3
3745 + dir_static.d_namlen - dir_static.d_namlen % 4;
3746 dirp->dd_loc = ((char *) (++dv) - dp->dir$t_name);
3747 return &dir_static;
3750 #endif /* VMS */
3752 #endif /* NONSYSTEM_DIR_LIBRARY */
3756 set_file_times (filename, atime, mtime)
3757 const char *filename;
3758 EMACS_TIME atime, mtime;
3760 #ifdef HAVE_UTIMES
3761 struct timeval tv[2];
3762 tv[0] = atime;
3763 tv[1] = mtime;
3764 return utimes (filename, tv);
3765 #else /* not HAVE_UTIMES */
3766 struct utimbuf utb;
3767 utb.actime = EMACS_SECS (atime);
3768 utb.modtime = EMACS_SECS (mtime);
3769 return utime (filename, &utb);
3770 #endif /* not HAVE_UTIMES */
3773 /* mkdir and rmdir functions, for systems which don't have them. */
3775 #ifndef HAVE_MKDIR
3777 * Written by Robert Rother, Mariah Corporation, August 1985.
3779 * If you want it, it's yours. All I ask in return is that if you
3780 * figure out how to do this in a Bourne Shell script you send me
3781 * a copy.
3782 * sdcsvax!rmr or rmr@uscd
3784 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3785 * subroutine. 11Mar86; hoptoad!gnu
3787 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3788 * subroutine didn't return EEXIST. It does now.
3792 * Make a directory.
3794 #ifdef MKDIR_PROTOTYPE
3795 MKDIR_PROTOTYPE
3796 #else
3798 mkdir (dpath, dmode)
3799 char *dpath;
3800 int dmode;
3801 #endif
3803 int cpid, status, fd;
3804 struct stat statbuf;
3806 if (stat (dpath, &statbuf) == 0)
3808 errno = EEXIST; /* Stat worked, so it already exists */
3809 return -1;
3812 /* If stat fails for a reason other than non-existence, return error */
3813 if (errno != ENOENT)
3814 return -1;
3816 synch_process_alive = 1;
3817 switch (cpid = fork ())
3820 case -1: /* Error in fork */
3821 return (-1); /* Errno is set already */
3823 case 0: /* Child process */
3825 * Cheap hack to set mode of new directory. Since this
3826 * child process is going away anyway, we zap its umask.
3827 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3828 * directory. Does anybody care?
3830 status = umask (0); /* Get current umask */
3831 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
3832 fd = emacs_open ("/dev/null", O_RDWR, 0);
3833 if (fd >= 0)
3835 dup2 (fd, 0);
3836 dup2 (fd, 1);
3837 dup2 (fd, 2);
3839 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
3840 _exit (-1); /* Can't exec /bin/mkdir */
3842 default: /* Parent process */
3843 wait_for_termination (cpid);
3846 if (synch_process_death != 0 || synch_process_retcode != 0
3847 || synch_process_termsig != 0)
3849 errno = EIO; /* We don't know why, but */
3850 return -1; /* /bin/mkdir failed */
3853 return 0;
3855 #endif /* not HAVE_MKDIR */
3857 #ifndef HAVE_RMDIR
3859 rmdir (dpath)
3860 char *dpath;
3862 int cpid, status, fd;
3863 struct stat statbuf;
3865 if (stat (dpath, &statbuf) != 0)
3867 /* Stat just set errno. We don't have to */
3868 return -1;
3871 synch_process_alive = 1;
3872 switch (cpid = fork ())
3875 case -1: /* Error in fork */
3876 return (-1); /* Errno is set already */
3878 case 0: /* Child process */
3879 fd = emacs_open ("/dev/null", O_RDWR, 0);
3880 if (fd >= 0)
3882 dup2 (fd, 0);
3883 dup2 (fd, 1);
3884 dup2 (fd, 2);
3886 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
3887 _exit (-1); /* Can't exec /bin/rmdir */
3889 default: /* Parent process */
3890 wait_for_termination (cpid);
3893 if (synch_process_death != 0 || synch_process_retcode != 0
3894 || synch_process_termsig != 0)
3896 errno = EIO; /* We don't know why, but */
3897 return -1; /* /bin/rmdir failed */
3900 return 0;
3902 #endif /* !HAVE_RMDIR */
3906 /* Functions for VMS */
3907 #ifdef VMS
3908 #include <acldef.h>
3909 #include <chpdef.h>
3910 #include <jpidef.h>
3912 /* Return as a string the VMS error string pertaining to STATUS.
3913 Reuses the same static buffer each time it is called. */
3915 char *
3916 vmserrstr (status)
3917 int status; /* VMS status code */
3919 int bufadr[2];
3920 short len;
3921 static char buf[257];
3923 bufadr[0] = sizeof buf - 1;
3924 bufadr[1] = (int) buf;
3925 if (! (SYS$GETMSG (status, &len, bufadr, 0x1, 0) & 1))
3926 return "untranslatable VMS error status";
3927 buf[len] = '\0';
3928 return buf;
3931 #ifdef access
3932 #undef access
3934 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3935 * not work correctly. (It also doesn't work well in version 2.3.)
3938 #ifdef VMS4_4
3940 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3941 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3943 typedef union {
3944 struct {
3945 unsigned short s_buflen;
3946 unsigned short s_code;
3947 char *s_bufadr;
3948 unsigned short *s_retlenadr;
3949 } s;
3950 int end;
3951 } item;
3952 #define buflen s.s_buflen
3953 #define code s.s_code
3954 #define bufadr s.s_bufadr
3955 #define retlenadr s.s_retlenadr
3957 #define R_OK 4 /* test for read permission */
3958 #define W_OK 2 /* test for write permission */
3959 #define X_OK 1 /* test for execute (search) permission */
3960 #define F_OK 0 /* test for presence of file */
3963 sys_access (path, mode)
3964 char *path;
3965 int mode;
3967 static char *user = NULL;
3968 char dir_fn[512];
3970 /* translate possible directory spec into .DIR file name, so brain-dead
3971 * access can treat the directory like a file. */
3972 if (directory_file_name (path, dir_fn))
3973 path = dir_fn;
3975 if (mode == F_OK)
3976 return access (path, mode);
3977 if (user == NULL && (user = (char *) getenv ("USER")) == NULL)
3978 return -1;
3980 int stat;
3981 int flags;
3982 int acces;
3983 unsigned short int dummy;
3984 item itemlst[3];
3985 static int constant = ACL$C_FILE;
3986 DESCRIPTOR (path_desc, path);
3987 DESCRIPTOR (user_desc, user);
3989 flags = 0;
3990 acces = 0;
3991 if ((mode & X_OK) && ((stat = access (path, mode)) < 0 || mode == X_OK))
3992 return stat;
3993 if (mode & R_OK)
3994 acces |= CHP$M_READ;
3995 if (mode & W_OK)
3996 acces |= CHP$M_WRITE;
3997 itemlst[0].buflen = sizeof (int);
3998 itemlst[0].code = CHP$_FLAGS;
3999 itemlst[0].bufadr = (char *) &flags;
4000 itemlst[0].retlenadr = &dummy;
4001 itemlst[1].buflen = sizeof (int);
4002 itemlst[1].code = CHP$_ACCESS;
4003 itemlst[1].bufadr = (char *) &acces;
4004 itemlst[1].retlenadr = &dummy;
4005 itemlst[2].end = CHP$_END;
4006 stat = SYS$CHECK_ACCESS (&constant, &path_desc, &user_desc, itemlst);
4007 return stat == SS$_NORMAL ? 0 : -1;
4011 #else /* not VMS4_4 */
4013 #include <prvdef.h>
4014 #define ACE$M_WRITE 2
4015 #define ACE$C_KEYID 1
4017 static unsigned short memid, grpid;
4018 static unsigned int uic;
4020 /* Called from init_sys_modes, so it happens not very often
4021 but at least each time Emacs is loaded. */
4022 void
4023 sys_access_reinit ()
4025 uic = 0;
4029 sys_access (filename, type)
4030 char * filename;
4031 int type;
4033 struct FAB fab;
4034 struct XABPRO xab;
4035 int status, size, i, typecode, acl_controlled;
4036 unsigned int *aclptr, *aclend, aclbuf[60];
4037 union prvdef prvmask;
4039 /* Get UIC and GRP values for protection checking. */
4040 if (uic == 0)
4042 status = LIB$GETJPI (&JPI$_UIC, 0, 0, &uic, 0, 0);
4043 if (! (status & 1))
4044 return -1;
4045 memid = uic & 0xFFFF;
4046 grpid = uic >> 16;
4049 if (type != 2) /* not checking write access */
4050 return access (filename, type);
4052 /* Check write protection. */
4054 #define CHECKPRIV(bit) (prvmask.bit)
4055 #define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
4057 /* Find privilege bits */
4058 status = SYS$SETPRV (0, 0, 0, prvmask);
4059 if (! (status & 1))
4060 error ("Unable to find privileges: %s", vmserrstr (status));
4061 if (CHECKPRIV (PRV$V_BYPASS))
4062 return 0; /* BYPASS enabled */
4063 fab = cc$rms_fab;
4064 fab.fab$b_fac = FAB$M_GET;
4065 fab.fab$l_fna = filename;
4066 fab.fab$b_fns = strlen (filename);
4067 fab.fab$l_xab = &xab;
4068 xab = cc$rms_xabpro;
4069 xab.xab$l_aclbuf = aclbuf;
4070 xab.xab$w_aclsiz = sizeof (aclbuf);
4071 status = SYS$OPEN (&fab, 0, 0);
4072 if (! (status & 1))
4073 return -1;
4074 SYS$CLOSE (&fab, 0, 0);
4075 /* Check system access */
4076 if (CHECKPRIV (PRV$V_SYSPRV) && WRITABLE (XAB$V_SYS))
4077 return 0;
4078 /* Check ACL entries, if any */
4079 acl_controlled = 0;
4080 if (xab.xab$w_acllen > 0)
4082 aclptr = aclbuf;
4083 aclend = &aclbuf[xab.xab$w_acllen / 4];
4084 while (*aclptr && aclptr < aclend)
4086 size = (*aclptr & 0xff) / 4;
4087 typecode = (*aclptr >> 8) & 0xff;
4088 if (typecode == ACE$C_KEYID)
4089 for (i = size - 1; i > 1; i--)
4090 if (aclptr[i] == uic)
4092 acl_controlled = 1;
4093 if (aclptr[1] & ACE$M_WRITE)
4094 return 0; /* Write access through ACL */
4096 aclptr = &aclptr[size];
4098 if (acl_controlled) /* ACL specified, prohibits write access */
4099 return -1;
4101 /* No ACL entries specified, check normal protection */
4102 if (WRITABLE (XAB$V_WLD)) /* World writable */
4103 return 0;
4104 if (WRITABLE (XAB$V_GRP) &&
4105 (unsigned short) (xab.xab$l_uic >> 16) == grpid)
4106 return 0; /* Group writable */
4107 if (WRITABLE (XAB$V_OWN) &&
4108 (xab.xab$l_uic & 0xFFFF) == memid)
4109 return 0; /* Owner writable */
4111 return -1; /* Not writable */
4113 #endif /* not VMS4_4 */
4114 #endif /* access */
4116 static char vtbuf[NAM$C_MAXRSS+1];
4118 /* translate a vms file spec to a unix path */
4119 char *
4120 sys_translate_vms (vfile)
4121 char * vfile;
4123 char * p;
4124 char * targ;
4126 if (!vfile)
4127 return 0;
4129 targ = vtbuf;
4131 /* leading device or logical name is a root directory */
4132 if (p = strchr (vfile, ':'))
4134 *targ++ = '/';
4135 while (vfile < p)
4136 *targ++ = *vfile++;
4137 vfile++;
4138 *targ++ = '/';
4140 p = vfile;
4141 if (*p == '[' || *p == '<')
4143 while (*++vfile != *p + 2)
4144 switch (*vfile)
4146 case '.':
4147 if (vfile[-1] == *p)
4148 *targ++ = '.';
4149 *targ++ = '/';
4150 break;
4152 case '-':
4153 *targ++ = '.';
4154 *targ++ = '.';
4155 break;
4157 default:
4158 *targ++ = *vfile;
4159 break;
4161 vfile++;
4162 *targ++ = '/';
4164 while (*vfile)
4165 *targ++ = *vfile++;
4167 return vtbuf;
4170 static char utbuf[NAM$C_MAXRSS+1];
4172 /* translate a unix path to a VMS file spec */
4173 char *
4174 sys_translate_unix (ufile)
4175 char * ufile;
4177 int slash_seen = 0;
4178 char *p;
4179 char * targ;
4181 if (!ufile)
4182 return 0;
4184 targ = utbuf;
4186 if (*ufile == '/')
4188 ufile++;
4191 while (*ufile)
4193 switch (*ufile)
4195 case '/':
4196 if (slash_seen)
4197 if (index (&ufile[1], '/'))
4198 *targ++ = '.';
4199 else
4200 *targ++ = ']';
4201 else
4203 *targ++ = ':';
4204 if (index (&ufile[1], '/'))
4205 *targ++ = '[';
4206 slash_seen = 1;
4208 break;
4210 case '.':
4211 if (strncmp (ufile, "./", 2) == 0)
4213 if (!slash_seen)
4215 *targ++ = '[';
4216 slash_seen = 1;
4218 ufile++; /* skip the dot */
4219 if (index (&ufile[1], '/'))
4220 *targ++ = '.';
4221 else
4222 *targ++ = ']';
4224 else if (strncmp (ufile, "../", 3) == 0)
4226 if (!slash_seen)
4228 *targ++ = '[';
4229 slash_seen = 1;
4231 *targ++ = '-';
4232 ufile += 2; /* skip the dots */
4233 if (index (&ufile[1], '/'))
4234 *targ++ = '.';
4235 else
4236 *targ++ = ']';
4238 else
4239 *targ++ = *ufile;
4240 break;
4242 default:
4243 *targ++ = *ufile;
4244 break;
4246 ufile++;
4248 *targ = '\0';
4250 return utbuf;
4253 char *
4254 getwd (pathname)
4255 char *pathname;
4257 char *ptr, *val;
4258 extern char *getcwd ();
4260 #define MAXPATHLEN 1024
4262 ptr = xmalloc (MAXPATHLEN);
4263 val = getcwd (ptr, MAXPATHLEN);
4264 if (val == 0)
4266 xfree (ptr);
4267 return val;
4269 strcpy (pathname, ptr);
4270 xfree (ptr);
4272 return pathname;
4276 getppid ()
4278 long item_code = JPI$_OWNER;
4279 unsigned long parent_id;
4280 int status;
4282 if (((status = LIB$GETJPI (&item_code, 0, 0, &parent_id)) & 1) == 0)
4284 errno = EVMSERR;
4285 vaxc$errno = status;
4286 return -1;
4288 return parent_id;
4291 #undef getuid
4292 unsigned
4293 sys_getuid ()
4295 return (getgid () << 16) | getuid ();
4298 #undef read
4300 sys_read (fildes, buf, nbyte)
4301 int fildes;
4302 char *buf;
4303 unsigned int nbyte;
4305 return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE));
4308 #if 0
4310 sys_write (fildes, buf, nbyte)
4311 int fildes;
4312 char *buf;
4313 unsigned int nbyte;
4315 register int nwrote, rtnval = 0;
4317 while (nbyte > MAXIOSIZE && (nwrote = write (fildes, buf, MAXIOSIZE)) > 0) {
4318 nbyte -= nwrote;
4319 buf += nwrote;
4320 rtnval += nwrote;
4322 if (nwrote < 0)
4323 return rtnval ? rtnval : -1;
4324 if ((nwrote = write (fildes, buf, nbyte)) < 0)
4325 return rtnval ? rtnval : -1;
4326 return (rtnval + nwrote);
4328 #endif /* 0 */
4331 * VAX/VMS VAX C RTL really loses. It insists that records
4332 * end with a newline (carriage return) character, and if they
4333 * don't it adds one (nice of it isn't it!)
4335 * Thus we do this stupidity below.
4338 #undef write
4340 sys_write (fildes, buf, nbytes)
4341 int fildes;
4342 char *buf;
4343 unsigned int nbytes;
4345 register char *p;
4346 register char *e;
4347 int sum = 0;
4348 struct stat st;
4350 fstat (fildes, &st);
4351 p = buf;
4352 while (nbytes > 0)
4354 int len, retval;
4356 /* Handle fixed-length files with carriage control. */
4357 if (st.st_fab_rfm == FAB$C_FIX
4358 && ((st.st_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
4360 len = st.st_fab_mrs;
4361 retval = write (fildes, p, min (len, nbytes));
4362 if (retval != len)
4363 return -1;
4364 retval++; /* This skips the implied carriage control */
4366 else
4368 e = p + min (MAXIOSIZE, nbytes) - 1;
4369 while (*e != '\n' && e > p) e--;
4370 if (p == e) /* Ok.. so here we add a newline... sigh. */
4371 e = p + min (MAXIOSIZE, nbytes) - 1;
4372 len = e + 1 - p;
4373 retval = write (fildes, p, len);
4374 if (retval != len)
4375 return -1;
4377 p += retval;
4378 sum += retval;
4379 nbytes -= retval;
4381 return sum;
4384 /* Create file NEW copying its attributes from file OLD. If
4385 OLD is 0 or does not exist, create based on the value of
4386 vms_stmlf_recfm. */
4388 /* Protection value the file should ultimately have.
4389 Set by create_copy_attrs, and use by rename_sansversions. */
4390 static unsigned short int fab_final_pro;
4393 creat_copy_attrs (old, new)
4394 char *old, *new;
4396 struct FAB fab = cc$rms_fab;
4397 struct XABPRO xabpro;
4398 char aclbuf[256]; /* Choice of size is arbitrary. See below. */
4399 extern int vms_stmlf_recfm;
4401 if (old)
4403 fab.fab$b_fac = FAB$M_GET;
4404 fab.fab$l_fna = old;
4405 fab.fab$b_fns = strlen (old);
4406 fab.fab$l_xab = (char *) &xabpro;
4407 xabpro = cc$rms_xabpro;
4408 xabpro.xab$l_aclbuf = aclbuf;
4409 xabpro.xab$w_aclsiz = sizeof aclbuf;
4410 /* Call $OPEN to fill in the fab & xabpro fields. */
4411 if (SYS$OPEN (&fab, 0, 0) & 1)
4413 SYS$CLOSE (&fab, 0, 0);
4414 fab.fab$l_alq = 0; /* zero the allocation quantity */
4415 if (xabpro.xab$w_acllen > 0)
4417 if (xabpro.xab$w_acllen > sizeof aclbuf)
4418 /* If the acl buffer was too short, redo open with longer one.
4419 Wouldn't need to do this if there were some system imposed
4420 limit on the size of an ACL, but I can't find any such. */
4422 xabpro.xab$l_aclbuf = (char *) alloca (xabpro.xab$w_acllen);
4423 xabpro.xab$w_aclsiz = xabpro.xab$w_acllen;
4424 if (SYS$OPEN (&fab, 0, 0) & 1)
4425 SYS$CLOSE (&fab, 0, 0);
4426 else
4427 old = 0;
4430 else
4431 xabpro.xab$l_aclbuf = 0;
4433 else
4434 old = 0;
4436 fab.fab$l_fna = new;
4437 fab.fab$b_fns = strlen (new);
4438 if (!old)
4440 fab.fab$l_xab = 0;
4441 fab.fab$b_rfm = vms_stmlf_recfm ? FAB$C_STMLF : FAB$C_VAR;
4442 fab.fab$b_rat = FAB$M_CR;
4445 /* Set the file protections such that we will be able to manipulate
4446 this file. Once we are done writing and renaming it, we will set
4447 the protections back. */
4448 if (old)
4449 fab_final_pro = xabpro.xab$w_pro;
4450 else
4451 SYS$SETDFPROT (0, &fab_final_pro);
4452 xabpro.xab$w_pro &= 0xff0f; /* set O:rewd for now. This is set back later. */
4454 /* Create the new file with either default attrs or attrs copied
4455 from old file. */
4456 if (!(SYS$CREATE (&fab, 0, 0) & 1))
4457 return -1;
4458 SYS$CLOSE (&fab, 0, 0);
4459 /* As this is a "replacement" for creat, return a file descriptor
4460 opened for writing. */
4461 return open (new, O_WRONLY);
4464 #ifdef creat
4465 #undef creat
4466 #include <varargs.h>
4467 #ifdef __GNUC__
4468 #ifndef va_count
4469 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4470 #endif
4471 #endif
4474 sys_creat (va_alist)
4475 va_dcl
4477 va_list list_incrementer;
4478 char *name;
4479 int mode;
4480 int rfd; /* related file descriptor */
4481 int fd; /* Our new file descriptor */
4482 int count;
4483 struct stat st_buf;
4484 char rfm[12];
4485 char rat[15];
4486 char mrs[13];
4487 char fsz[13];
4488 extern int vms_stmlf_recfm;
4490 va_count (count);
4491 va_start (list_incrementer);
4492 name = va_arg (list_incrementer, char *);
4493 mode = va_arg (list_incrementer, int);
4494 if (count > 2)
4495 rfd = va_arg (list_incrementer, int);
4496 va_end (list_incrementer);
4497 if (count > 2)
4499 /* Use information from the related file descriptor to set record
4500 format of the newly created file. */
4501 fstat (rfd, &st_buf);
4502 switch (st_buf.st_fab_rfm)
4504 case FAB$C_FIX:
4505 strcpy (rfm, "rfm = fix");
4506 sprintf (mrs, "mrs = %d", st_buf.st_fab_mrs);
4507 strcpy (rat, "rat = ");
4508 if (st_buf.st_fab_rat & FAB$M_CR)
4509 strcat (rat, "cr");
4510 else if (st_buf.st_fab_rat & FAB$M_FTN)
4511 strcat (rat, "ftn");
4512 else if (st_buf.st_fab_rat & FAB$M_PRN)
4513 strcat (rat, "prn");
4514 if (st_buf.st_fab_rat & FAB$M_BLK)
4515 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4516 strcat (rat, ", blk");
4517 else
4518 strcat (rat, "blk");
4519 return creat (name, 0, rfm, rat, mrs);
4521 case FAB$C_VFC:
4522 strcpy (rfm, "rfm = vfc");
4523 sprintf (fsz, "fsz = %d", st_buf.st_fab_fsz);
4524 strcpy (rat, "rat = ");
4525 if (st_buf.st_fab_rat & FAB$M_CR)
4526 strcat (rat, "cr");
4527 else if (st_buf.st_fab_rat & FAB$M_FTN)
4528 strcat (rat, "ftn");
4529 else if (st_buf.st_fab_rat & FAB$M_PRN)
4530 strcat (rat, "prn");
4531 if (st_buf.st_fab_rat & FAB$M_BLK)
4532 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4533 strcat (rat, ", blk");
4534 else
4535 strcat (rat, "blk");
4536 return creat (name, 0, rfm, rat, fsz);
4538 case FAB$C_STM:
4539 strcpy (rfm, "rfm = stm");
4540 break;
4542 case FAB$C_STMCR:
4543 strcpy (rfm, "rfm = stmcr");
4544 break;
4546 case FAB$C_STMLF:
4547 strcpy (rfm, "rfm = stmlf");
4548 break;
4550 case FAB$C_UDF:
4551 strcpy (rfm, "rfm = udf");
4552 break;
4554 case FAB$C_VAR:
4555 strcpy (rfm, "rfm = var");
4556 break;
4558 strcpy (rat, "rat = ");
4559 if (st_buf.st_fab_rat & FAB$M_CR)
4560 strcat (rat, "cr");
4561 else if (st_buf.st_fab_rat & FAB$M_FTN)
4562 strcat (rat, "ftn");
4563 else if (st_buf.st_fab_rat & FAB$M_PRN)
4564 strcat (rat, "prn");
4565 if (st_buf.st_fab_rat & FAB$M_BLK)
4566 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4567 strcat (rat, ", blk");
4568 else
4569 strcat (rat, "blk");
4571 else
4573 strcpy (rfm, vms_stmlf_recfm ? "rfm = stmlf" : "rfm=var");
4574 strcpy (rat, "rat=cr");
4576 /* Until the VAX C RTL fixes the many bugs with modes, always use
4577 mode 0 to get the user's default protection. */
4578 fd = creat (name, 0, rfm, rat);
4579 if (fd < 0 && errno == EEXIST)
4581 if (unlink (name) < 0)
4582 report_file_error ("delete", build_string (name));
4583 fd = creat (name, 0, rfm, rat);
4585 return fd;
4587 #endif /* creat */
4589 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4591 sys_fwrite (ptr, size, num, fp)
4592 register char * ptr;
4593 FILE * fp;
4595 register int tot = num * size;
4597 while (tot--)
4598 fputc (*ptr++, fp);
4599 return num;
4603 * The VMS C library routine creat actually creates a new version of an
4604 * existing file rather than truncating the old version. There are times
4605 * when this is not the desired behavior, for instance, when writing an
4606 * auto save file (you only want one version), or when you don't have
4607 * write permission in the directory containing the file (but the file
4608 * itself is writable). Hence this routine, which is equivalent to
4609 * "close (creat (fn, 0));" on Unix if fn already exists.
4612 vms_truncate (fn)
4613 char *fn;
4615 struct FAB xfab = cc$rms_fab;
4616 struct RAB xrab = cc$rms_rab;
4617 int status;
4619 xfab.fab$l_fop = FAB$M_TEF; /* free allocated but unused blocks on close */
4620 xfab.fab$b_fac = FAB$M_TRN | FAB$M_GET; /* allow truncate and get access */
4621 xfab.fab$b_shr = FAB$M_NIL; /* allow no sharing - file must be locked */
4622 xfab.fab$l_fna = fn;
4623 xfab.fab$b_fns = strlen (fn);
4624 xfab.fab$l_dna = ";0"; /* default to latest version of the file */
4625 xfab.fab$b_dns = 2;
4626 xrab.rab$l_fab = &xfab;
4628 /* This gibberish opens the file, positions to the first record, and
4629 deletes all records from there until the end of file. */
4630 if ((SYS$OPEN (&xfab) & 01) == 01)
4632 if ((SYS$CONNECT (&xrab) & 01) == 01 &&
4633 (SYS$FIND (&xrab) & 01) == 01 &&
4634 (SYS$TRUNCATE (&xrab) & 01) == 01)
4635 status = 0;
4636 else
4637 status = -1;
4639 else
4640 status = -1;
4641 SYS$CLOSE (&xfab);
4642 return status;
4645 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4646 SYSPRV or a readable SYSUAF.DAT. */
4648 #ifdef READ_SYSUAF
4650 * getuaf.c
4652 * Routine to read the VMS User Authorization File and return
4653 * a specific user's record.
4656 static struct UAF retuaf;
4658 struct UAF *
4659 get_uaf_name (uname)
4660 char * uname;
4662 register status;
4663 struct FAB uaf_fab;
4664 struct RAB uaf_rab;
4666 uaf_fab = cc$rms_fab;
4667 uaf_rab = cc$rms_rab;
4668 /* initialize fab fields */
4669 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4670 uaf_fab.fab$b_fns = 21;
4671 uaf_fab.fab$b_fac = FAB$M_GET;
4672 uaf_fab.fab$b_org = FAB$C_IDX;
4673 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4674 /* initialize rab fields */
4675 uaf_rab.rab$l_fab = &uaf_fab;
4676 /* open the User Authorization File */
4677 status = SYS$OPEN (&uaf_fab);
4678 if (!(status&1))
4680 errno = EVMSERR;
4681 vaxc$errno = status;
4682 return 0;
4684 status = SYS$CONNECT (&uaf_rab);
4685 if (!(status&1))
4687 errno = EVMSERR;
4688 vaxc$errno = status;
4689 return 0;
4691 /* read the requested record - index is in uname */
4692 uaf_rab.rab$l_kbf = uname;
4693 uaf_rab.rab$b_ksz = strlen (uname);
4694 uaf_rab.rab$b_rac = RAB$C_KEY;
4695 uaf_rab.rab$l_ubf = (char *)&retuaf;
4696 uaf_rab.rab$w_usz = sizeof retuaf;
4697 status = SYS$GET (&uaf_rab);
4698 if (!(status&1))
4700 errno = EVMSERR;
4701 vaxc$errno = status;
4702 return 0;
4704 /* close the User Authorization File */
4705 status = SYS$DISCONNECT (&uaf_rab);
4706 if (!(status&1))
4708 errno = EVMSERR;
4709 vaxc$errno = status;
4710 return 0;
4712 status = SYS$CLOSE (&uaf_fab);
4713 if (!(status&1))
4715 errno = EVMSERR;
4716 vaxc$errno = status;
4717 return 0;
4719 return &retuaf;
4722 struct UAF *
4723 get_uaf_uic (uic)
4724 unsigned long uic;
4726 register status;
4727 struct FAB uaf_fab;
4728 struct RAB uaf_rab;
4730 uaf_fab = cc$rms_fab;
4731 uaf_rab = cc$rms_rab;
4732 /* initialize fab fields */
4733 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4734 uaf_fab.fab$b_fns = 21;
4735 uaf_fab.fab$b_fac = FAB$M_GET;
4736 uaf_fab.fab$b_org = FAB$C_IDX;
4737 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4738 /* initialize rab fields */
4739 uaf_rab.rab$l_fab = &uaf_fab;
4740 /* open the User Authorization File */
4741 status = SYS$OPEN (&uaf_fab);
4742 if (!(status&1))
4744 errno = EVMSERR;
4745 vaxc$errno = status;
4746 return 0;
4748 status = SYS$CONNECT (&uaf_rab);
4749 if (!(status&1))
4751 errno = EVMSERR;
4752 vaxc$errno = status;
4753 return 0;
4755 /* read the requested record - index is in uic */
4756 uaf_rab.rab$b_krf = 1; /* 1st alternate key */
4757 uaf_rab.rab$l_kbf = (char *) &uic;
4758 uaf_rab.rab$b_ksz = sizeof uic;
4759 uaf_rab.rab$b_rac = RAB$C_KEY;
4760 uaf_rab.rab$l_ubf = (char *)&retuaf;
4761 uaf_rab.rab$w_usz = sizeof retuaf;
4762 status = SYS$GET (&uaf_rab);
4763 if (!(status&1))
4765 errno = EVMSERR;
4766 vaxc$errno = status;
4767 return 0;
4769 /* close the User Authorization File */
4770 status = SYS$DISCONNECT (&uaf_rab);
4771 if (!(status&1))
4773 errno = EVMSERR;
4774 vaxc$errno = status;
4775 return 0;
4777 status = SYS$CLOSE (&uaf_fab);
4778 if (!(status&1))
4780 errno = EVMSERR;
4781 vaxc$errno = status;
4782 return 0;
4784 return &retuaf;
4787 static struct passwd retpw;
4789 struct passwd *
4790 cnv_uaf_pw (up)
4791 struct UAF * up;
4793 char * ptr;
4795 /* copy these out first because if the username is 32 chars, the next
4796 section will overwrite the first byte of the UIC */
4797 retpw.pw_uid = up->uaf$w_mem;
4798 retpw.pw_gid = up->uaf$w_grp;
4800 /* I suppose this is not the best style, to possibly overwrite one
4801 byte beyond the end of the field, but what the heck... */
4802 ptr = &up->uaf$t_username[UAF$S_USERNAME];
4803 while (ptr[-1] == ' ')
4804 ptr--;
4805 *ptr = '\0';
4806 strcpy (retpw.pw_name, up->uaf$t_username);
4808 /* the rest of these are counted ascii strings */
4809 strncpy (retpw.pw_gecos, &up->uaf$t_owner[1], up->uaf$t_owner[0]);
4810 retpw.pw_gecos[up->uaf$t_owner[0]] = '\0';
4811 strncpy (retpw.pw_dir, &up->uaf$t_defdev[1], up->uaf$t_defdev[0]);
4812 retpw.pw_dir[up->uaf$t_defdev[0]] = '\0';
4813 strncat (retpw.pw_dir, &up->uaf$t_defdir[1], up->uaf$t_defdir[0]);
4814 retpw.pw_dir[up->uaf$t_defdev[0] + up->uaf$t_defdir[0]] = '\0';
4815 strncpy (retpw.pw_shell, &up->uaf$t_defcli[1], up->uaf$t_defcli[0]);
4816 retpw.pw_shell[up->uaf$t_defcli[0]] = '\0';
4818 return &retpw;
4820 #else /* not READ_SYSUAF */
4821 static struct passwd retpw;
4822 #endif /* not READ_SYSUAF */
4824 struct passwd *
4825 getpwnam (name)
4826 char * name;
4828 #ifdef READ_SYSUAF
4829 struct UAF *up;
4830 #else
4831 char * user;
4832 char * dir;
4833 unsigned char * full;
4834 #endif /* READ_SYSUAF */
4835 char *ptr = name;
4837 while (*ptr)
4839 if ('a' <= *ptr && *ptr <= 'z')
4840 *ptr -= 040;
4841 ptr++;
4843 #ifdef READ_SYSUAF
4844 if (!(up = get_uaf_name (name)))
4845 return 0;
4846 return cnv_uaf_pw (up);
4847 #else
4848 if (strcmp (name, getenv ("USER")) == 0)
4850 retpw.pw_uid = getuid ();
4851 retpw.pw_gid = getgid ();
4852 strcpy (retpw.pw_name, name);
4853 if (full = egetenv ("FULLNAME"))
4854 strcpy (retpw.pw_gecos, full);
4855 else
4856 *retpw.pw_gecos = '\0';
4857 strcpy (retpw.pw_dir, egetenv ("HOME"));
4858 *retpw.pw_shell = '\0';
4859 return &retpw;
4861 else
4862 return 0;
4863 #endif /* not READ_SYSUAF */
4866 struct passwd *
4867 getpwuid (uid)
4868 unsigned long uid;
4870 #ifdef READ_SYSUAF
4871 struct UAF * up;
4873 if (!(up = get_uaf_uic (uid)))
4874 return 0;
4875 return cnv_uaf_pw (up);
4876 #else
4877 if (uid == sys_getuid ())
4878 return getpwnam (egetenv ("USER"));
4879 else
4880 return 0;
4881 #endif /* not READ_SYSUAF */
4884 /* return total address space available to the current process. This is
4885 the sum of the current p0 size, p1 size and free page table entries
4886 available. */
4888 vlimit ()
4890 int item_code;
4891 unsigned long free_pages;
4892 unsigned long frep0va;
4893 unsigned long frep1va;
4894 register status;
4896 item_code = JPI$_FREPTECNT;
4897 if (((status = LIB$GETJPI (&item_code, 0, 0, &free_pages)) & 1) == 0)
4899 errno = EVMSERR;
4900 vaxc$errno = status;
4901 return -1;
4903 free_pages *= 512;
4905 item_code = JPI$_FREP0VA;
4906 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep0va)) & 1) == 0)
4908 errno = EVMSERR;
4909 vaxc$errno = status;
4910 return -1;
4912 item_code = JPI$_FREP1VA;
4913 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep1va)) & 1) == 0)
4915 errno = EVMSERR;
4916 vaxc$errno = status;
4917 return -1;
4920 return free_pages + frep0va + (0x7fffffff - frep1va);
4924 define_logical_name (varname, string)
4925 char *varname;
4926 char *string;
4928 struct dsc$descriptor_s strdsc =
4929 {strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string};
4930 struct dsc$descriptor_s envdsc =
4931 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
4932 struct dsc$descriptor_s lnmdsc =
4933 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
4935 return LIB$SET_LOGICAL (&envdsc, &strdsc, &lnmdsc, 0, 0);
4939 delete_logical_name (varname)
4940 char *varname;
4942 struct dsc$descriptor_s envdsc =
4943 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
4944 struct dsc$descriptor_s lnmdsc =
4945 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
4947 return LIB$DELETE_LOGICAL (&envdsc, &lnmdsc);
4951 ulimit ()
4953 return 0;
4957 setpgrp ()
4959 return 0;
4963 execvp ()
4965 error ("execvp system call not implemented");
4966 return -1;
4970 rename (from, to)
4971 char *from, *to;
4973 int status;
4974 struct FAB from_fab = cc$rms_fab, to_fab = cc$rms_fab;
4975 struct NAM from_nam = cc$rms_nam, to_nam = cc$rms_nam;
4976 char from_esn[NAM$C_MAXRSS];
4977 char to_esn[NAM$C_MAXRSS];
4979 from_fab.fab$l_fna = from;
4980 from_fab.fab$b_fns = strlen (from);
4981 from_fab.fab$l_nam = &from_nam;
4982 from_fab.fab$l_fop = FAB$M_NAM;
4984 from_nam.nam$l_esa = from_esn;
4985 from_nam.nam$b_ess = sizeof from_esn;
4987 to_fab.fab$l_fna = to;
4988 to_fab.fab$b_fns = strlen (to);
4989 to_fab.fab$l_nam = &to_nam;
4990 to_fab.fab$l_fop = FAB$M_NAM;
4992 to_nam.nam$l_esa = to_esn;
4993 to_nam.nam$b_ess = sizeof to_esn;
4995 status = SYS$RENAME (&from_fab, 0, 0, &to_fab);
4997 if (status & 1)
4998 return 0;
4999 else
5001 if (status == RMS$_DEV)
5002 errno = EXDEV;
5003 else
5004 errno = EVMSERR;
5005 vaxc$errno = status;
5006 return -1;
5010 /* This function renames a file like `rename', but it strips
5011 the version number from the "to" filename, such that the "to" file is
5012 will always be a new version. It also sets the file protection once it is
5013 finished. The protection that we will use is stored in fab_final_pro,
5014 and was set when we did a creat_copy_attrs to create the file that we
5015 are renaming.
5017 We could use the chmod function, but Eunichs uses 3 bits per user category
5018 to describe the protection, and VMS uses 4 (write and delete are separate
5019 bits). To maintain portability, the VMS implementation of `chmod' wires
5020 the W and D bits together. */
5023 static struct fibdef fib; /* We need this initialized to zero */
5024 char vms_file_written[NAM$C_MAXRSS];
5027 rename_sans_version (from,to)
5028 char *from, *to;
5030 short int chan;
5031 int stat;
5032 short int iosb[4];
5033 int status;
5034 struct FAB to_fab = cc$rms_fab;
5035 struct NAM to_nam = cc$rms_nam;
5036 struct dsc$descriptor fib_d ={sizeof (fib),0,0,(char*) &fib};
5037 struct dsc$descriptor fib_attr[2]
5038 = {{sizeof (fab_final_pro),ATR$C_FPRO,0,(char*) &fab_final_pro},{0,0,0,0}};
5039 char to_esn[NAM$C_MAXRSS];
5041 $DESCRIPTOR (disk,to_esn);
5043 to_fab.fab$l_fna = to;
5044 to_fab.fab$b_fns = strlen (to);
5045 to_fab.fab$l_nam = &to_nam;
5046 to_fab.fab$l_fop = FAB$M_NAM;
5048 to_nam.nam$l_esa = to_esn;
5049 to_nam.nam$b_ess = sizeof to_esn;
5051 status = SYS$PARSE (&to_fab, 0, 0); /* figure out the full file name */
5053 if (to_nam.nam$l_fnb && NAM$M_EXP_VER)
5054 *(to_nam.nam$l_ver) = '\0';
5056 stat = rename (from, to_esn);
5057 if (stat < 0)
5058 return stat;
5060 strcpy (vms_file_written, to_esn);
5062 to_fab.fab$l_fna = vms_file_written; /* this points to the versionless name */
5063 to_fab.fab$b_fns = strlen (vms_file_written);
5065 /* Now set the file protection to the correct value */
5066 SYS$OPEN (&to_fab, 0, 0); /* This fills in the nam$w_fid fields */
5068 /* Copy these fields into the fib */
5069 fib.fib$r_fid_overlay.fib$w_fid[0] = to_nam.nam$w_fid[0];
5070 fib.fib$r_fid_overlay.fib$w_fid[1] = to_nam.nam$w_fid[1];
5071 fib.fib$r_fid_overlay.fib$w_fid[2] = to_nam.nam$w_fid[2];
5073 SYS$CLOSE (&to_fab, 0, 0);
5075 stat = SYS$ASSIGN (&disk, &chan, 0, 0); /* open a channel to the disk */
5076 if (!stat)
5077 LIB$SIGNAL (stat);
5078 stat = SYS$QIOW (0, chan, IO$_MODIFY, iosb, 0, 0, &fib_d,
5079 0, 0, 0, &fib_attr, 0);
5080 if (!stat)
5081 LIB$SIGNAL (stat);
5082 stat = SYS$DASSGN (chan);
5083 if (!stat)
5084 LIB$SIGNAL (stat);
5085 strcpy (vms_file_written, to_esn); /* We will write this to the terminal*/
5086 return 0;
5090 link (file, new)
5091 char * file, * new;
5093 register status;
5094 struct FAB fab;
5095 struct NAM nam;
5096 unsigned short fid[3];
5097 char esa[NAM$C_MAXRSS];
5099 fab = cc$rms_fab;
5100 fab.fab$l_fop = FAB$M_OFP;
5101 fab.fab$l_fna = file;
5102 fab.fab$b_fns = strlen (file);
5103 fab.fab$l_nam = &nam;
5105 nam = cc$rms_nam;
5106 nam.nam$l_esa = esa;
5107 nam.nam$b_ess = NAM$C_MAXRSS;
5109 status = SYS$PARSE (&fab);
5110 if ((status & 1) == 0)
5112 errno = EVMSERR;
5113 vaxc$errno = status;
5114 return -1;
5116 status = SYS$SEARCH (&fab);
5117 if ((status & 1) == 0)
5119 errno = EVMSERR;
5120 vaxc$errno = status;
5121 return -1;
5124 fid[0] = nam.nam$w_fid[0];
5125 fid[1] = nam.nam$w_fid[1];
5126 fid[2] = nam.nam$w_fid[2];
5128 fab.fab$l_fna = new;
5129 fab.fab$b_fns = strlen (new);
5131 status = SYS$PARSE (&fab);
5132 if ((status & 1) == 0)
5134 errno = EVMSERR;
5135 vaxc$errno = status;
5136 return -1;
5139 nam.nam$w_fid[0] = fid[0];
5140 nam.nam$w_fid[1] = fid[1];
5141 nam.nam$w_fid[2] = fid[2];
5143 nam.nam$l_esa = nam.nam$l_name;
5144 nam.nam$b_esl = nam.nam$b_name + nam.nam$b_type + nam.nam$b_ver;
5146 status = SYS$ENTER (&fab);
5147 if ((status & 1) == 0)
5149 errno = EVMSERR;
5150 vaxc$errno = status;
5151 return -1;
5154 return 0;
5157 void
5158 croak (badfunc)
5159 char *badfunc;
5161 printf ("%s not yet implemented\r\n", badfunc);
5162 reset_all_sys_modes ();
5163 exit (1);
5166 long
5167 random ()
5169 /* Arrange to return a range centered on zero. */
5170 return rand () - (1 << 30);
5173 void
5174 srandom (seed)
5176 srand (seed);
5178 #endif /* VMS */
5180 #ifdef AIXHFT
5182 /* Called from init_sys_modes. */
5183 void
5184 hft_init (struct tty_display_info *tty_out)
5186 int junk;
5188 /* If we're not on an HFT we shouldn't do any of this. We determine
5189 if we are on an HFT by trying to get an HFT error code. If this
5190 call fails, we're not on an HFT. */
5191 #ifdef IBMR2AIX
5192 if (ioctl (0, HFQERROR, &junk) < 0)
5193 return;
5194 #else /* not IBMR2AIX */
5195 if (ioctl (0, HFQEIO, 0) < 0)
5196 return;
5197 #endif /* not IBMR2AIX */
5199 /* On AIX the default hft keyboard mapping uses backspace rather than delete
5200 as the rubout key's ASCII code. Here this is changed. The bug is that
5201 there's no way to determine the old mapping, so in reset_sys_modes
5202 we need to assume that the normal map had been present. Of course, this
5203 code also doesn't help if on a terminal emulator which doesn't understand
5204 HFT VTD's. */
5206 struct hfbuf buf;
5207 struct hfkeymap keymap;
5209 buf.hf_bufp = (char *)&keymap;
5210 buf.hf_buflen = sizeof (keymap);
5211 keymap.hf_nkeys = 2;
5212 keymap.hfkey[0].hf_kpos = 15;
5213 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
5214 #ifdef IBMR2AIX
5215 keymap.hfkey[0].hf_keyidh = '<';
5216 #else /* not IBMR2AIX */
5217 keymap.hfkey[0].hf_page = '<';
5218 #endif /* not IBMR2AIX */
5219 keymap.hfkey[0].hf_char = 127;
5220 keymap.hfkey[1].hf_kpos = 15;
5221 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
5222 #ifdef IBMR2AIX
5223 keymap.hfkey[1].hf_keyidh = '<';
5224 #else /* not IBMR2AIX */
5225 keymap.hfkey[1].hf_page = '<';
5226 #endif /* not IBMR2AIX */
5227 keymap.hfkey[1].hf_char = 127;
5228 hftctl (0, HFSKBD, &buf);
5232 /* Reset the rubout key to backspace. */
5234 void
5235 hft_reset (struct tty_display_info *tty_out)
5237 struct hfbuf buf;
5238 struct hfkeymap keymap;
5239 int junk;
5241 #ifdef IBMR2AIX
5242 if (ioctl (0, HFQERROR, &junk) < 0)
5243 return;
5244 #else /* not IBMR2AIX */
5245 if (ioctl (0, HFQEIO, 0) < 0)
5246 return;
5247 #endif /* not IBMR2AIX */
5249 buf.hf_bufp = (char *)&keymap;
5250 buf.hf_buflen = sizeof (keymap);
5251 keymap.hf_nkeys = 2;
5252 keymap.hfkey[0].hf_kpos = 15;
5253 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
5254 #ifdef IBMR2AIX
5255 keymap.hfkey[0].hf_keyidh = '<';
5256 #else /* not IBMR2AIX */
5257 keymap.hfkey[0].hf_page = '<';
5258 #endif /* not IBMR2AIX */
5259 keymap.hfkey[0].hf_char = 8;
5260 keymap.hfkey[1].hf_kpos = 15;
5261 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
5262 #ifdef IBMR2AIX
5263 keymap.hfkey[1].hf_keyidh = '<';
5264 #else /* not IBMR2AIX */
5265 keymap.hfkey[1].hf_page = '<';
5266 #endif /* not IBMR2AIX */
5267 keymap.hfkey[1].hf_char = 8;
5268 hftctl (0, HFSKBD, &buf);
5271 #endif /* AIXHFT */
5274 #ifndef BSTRING
5276 #ifndef bzero
5278 void
5279 bzero (b, length)
5280 register char *b;
5281 register int length;
5283 #ifdef VMS
5284 short zero = 0;
5285 long max_str = 65535;
5287 while (length > max_str) {
5288 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5289 length -= max_str;
5290 b += max_str;
5292 max_str = length;
5293 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5294 #else
5295 while (length-- > 0)
5296 *b++ = 0;
5297 #endif /* not VMS */
5300 #endif /* no bzero */
5301 #endif /* BSTRING */
5303 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5304 #undef bcopy
5306 /* Saying `void' requires a declaration, above, where bcopy is used
5307 and that declaration causes pain for systems where bcopy is a macro. */
5308 bcopy (b1, b2, length)
5309 register char *b1;
5310 register char *b2;
5311 register int length;
5313 #ifdef VMS
5314 long max_str = 65535;
5316 while (length > max_str) {
5317 (void) LIB$MOVC3 (&max_str, b1, b2);
5318 length -= max_str;
5319 b1 += max_str;
5320 b2 += max_str;
5322 max_str = length;
5323 (void) LIB$MOVC3 (&length, b1, b2);
5324 #else
5325 while (length-- > 0)
5326 *b2++ = *b1++;
5327 #endif /* not VMS */
5329 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5331 #ifndef BSTRING
5332 #ifndef bcmp
5334 bcmp (b1, b2, length) /* This could be a macro! */
5335 register char *b1;
5336 register char *b2;
5337 register int length;
5339 #ifdef VMS
5340 struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1};
5341 struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2};
5343 return STR$COMPARE (&src1, &src2);
5344 #else
5345 while (length-- > 0)
5346 if (*b1++ != *b2++)
5347 return 1;
5349 return 0;
5350 #endif /* not VMS */
5352 #endif /* no bcmp */
5353 #endif /* not BSTRING */
5355 #ifndef HAVE_STRSIGNAL
5356 char *
5357 strsignal (code)
5358 int code;
5360 char *signame = 0;
5362 if (0 <= code && code < NSIG)
5364 #ifdef VMS
5365 signame = sys_errlist[code];
5366 #else
5367 /* Cast to suppress warning if the table has const char *. */
5368 signame = (char *) sys_siglist[code];
5369 #endif
5372 return signame;
5374 #endif /* HAVE_STRSIGNAL */
5376 /* arch-tag: edb43589-4e09-4544-b325-978b5b121dcf
5377 (do not change this comment) */