1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 86,87,88,93,94,95, 1999, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
32 /* Including stdlib.h isn't necessarily enough to get srandom
33 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
35 #if 0 /* It turns out that defining _OSF_SOURCE in osf5-0.h gets
36 random prototyped as returning `int'. It looks to me as
37 though the best way to DTRT is to prefer the rand48 functions
38 (per libc.info). -- fx */
39 extern long int random
P_ ((void));
41 #if 0 /* Don't prototype srandom; it takes an unsigned argument on
42 some systems, and an unsigned long on others, like FreeBSD
44 extern void srandom
P_ ((unsigned int));
48 #include "blockinput.h"
52 /* It is essential to include stdlib.h so that this file picks up
53 the correct definitions of rand, srand, and RAND_MAX.
54 Otherwise random numbers will not work correctly. */
58 /* Nonzero means delete a process right away if it exits (process.c). */
59 static int delete_exited_processes
;
61 #endif /* macintosh */
65 #define write sys_write
70 #endif /* not WINDOWSNT */
72 /* Does anyone other than VMS need this? */
74 #define sys_fwrite fwrite
80 #include <sys/types.h>
84 /* Get _POSIX_VDISABLE, if it is available. */
94 #if !defined (USG) || defined (BSD_PGRPS)
96 #define setpgrp setpgid
100 /* Get SI_SRPC_DOMAIN, if it is available. */
101 #ifdef HAVE_SYS_SYSTEMINFO_H
102 #include <sys/systeminfo.h>
105 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
109 #include <sys/param.h>
113 extern unsigned start
__asm__ ("start");
135 #include <sys/file.h>
143 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
147 #ifdef BSD_SYSTEM /* avoid writing defined (BSD_SYSTEM) || defined (USG)
148 because the vms compiler doesn't grok `defined' */
156 #endif /* not 4.1 bsd */
159 #include <sys/ioctl.h>
165 #ifdef BROKEN_TIOCGWINSZ
170 #if defined (USG) || defined (DGUX)
171 #include <sys/utsname.h>
172 #ifndef MEMORY_IN_STRING_H
175 #if defined (TIOCGWINSZ) || defined (ISC4_0)
177 #include <sys/sioctl.h>
180 #include <sys/stream.h>
181 #include <sys/ptem.h>
183 #endif /* TIOCGWINSZ or ISC4_0 */
184 #endif /* USG or DGUX */
186 extern int quit_char
;
188 #include "keyboard.h"
191 #include "termhooks.h"
192 #include "termchar.h"
193 #include "termopts.h"
194 #include "dispextern.h"
199 /* In process.h which conflicts with the local copy. */
201 int _CRTAPI1
_spawnlp (int, const char *, const char *, ...);
202 int _CRTAPI1
_getpid (void);
205 #ifdef NONSYSTEM_DIR_LIBRARY
207 #endif /* NONSYSTEM_DIR_LIBRARY */
209 #include "syssignal.h"
216 #ifndef HAVE_STRUCT_UTIMBUF
217 /* We want to use utime rather than utimes, but we couldn't find the
218 structure declaration. We'll use the traditional one. */
226 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
232 #define LNOFLSH 0100000
235 static int baud_convert
[] =
240 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
241 1800, 2400, 4800, 9600, 19200, 38400
248 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
250 #if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
258 /* The file descriptor for Emacs's input terminal.
259 Under Unix, this is normally zero except when using X;
260 under VMS, we place the input channel number here. */
263 void croak
P_ ((char *));
270 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
272 SIGMASKTYPE sigprocmask_set
;
275 /* Specify a different file descriptor for further input operations. */
284 /* Discard pending input on descriptor input_fd. */
290 struct emacs_tty buf
;
295 /* Discarding input is not safe when the input could contain
296 replies from the X server. So don't do it. */
297 if (read_socket_hook
)
302 SYS$
QIOW (0, input_fd
, IO$_READVBLK
|IO$M_PURGE
, input_iosb
, 0, 0,
303 &buf
.main
, 0, 0, terminator_mask
, 0, 0);
309 ioctl (input_fd
, TIOCFLUSH
, &zero
);
311 #else /* not Apollo */
312 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
313 while (dos_keyread () != -1)
315 #else /* not MSDOS */
316 EMACS_GET_TTY (input_fd
, &buf
);
317 EMACS_SET_TTY (input_fd
, &buf
, 0);
318 #endif /* not MSDOS */
319 #endif /* not Apollo */
321 #endif /* not WINDOWSNT */
326 /* Arrange for character C to be read as the next input from
333 if (read_socket_hook
)
336 /* Should perhaps error if in batch mode */
338 ioctl (input_fd
, TIOCSTI
, &c
);
339 #else /* no TIOCSTI */
340 error ("Cannot stuff terminal input characters in this version of Unix");
341 #endif /* no TIOCSTI */
353 #ifdef INIT_BAUD_RATE
358 #else /* not DOS_NT */
362 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &sg
, 0, 0,
363 &sg
.class, 12, 0, 0, 0, 0 );
364 emacs_ospeed
= sg
.xmit_baud
;
370 tcgetattr (input_fd
, &sg
);
371 emacs_ospeed
= cfgetospeed (&sg
);
372 #if defined (USE_GETOBAUD) && defined (getobaud)
373 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
374 if (emacs_ospeed
== 0)
375 emacs_ospeed
= getobaud (sg
.c_cflag
);
377 #else /* neither VMS nor TERMIOS */
383 tcgetattr (input_fd
, &sg
);
385 ioctl (input_fd
, TCGETA
, &sg
);
387 emacs_ospeed
= sg
.c_cflag
& CBAUD
;
388 #else /* neither VMS nor TERMIOS nor TERMIO */
391 sg
.sg_ospeed
= B9600
;
392 if (ioctl (input_fd
, TIOCGETP
, &sg
) < 0)
394 emacs_ospeed
= sg
.sg_ospeed
;
395 #endif /* not HAVE_TERMIO */
396 #endif /* not HAVE_TERMIOS */
398 #endif /* not DOS_NT */
399 #endif /* not INIT_BAUD_RATE */
402 baud_rate
= (emacs_ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
403 ? baud_convert
[emacs_ospeed
] : 9600);
410 set_exclusive_use (fd
)
414 ioctl (fd
, FIOCLEX
, 0);
416 /* Ok to do nothing if this feature does not exist */
421 wait_without_blocking ()
424 wait3 (0, WNOHANG
| WUNTRACED
, 0);
426 croak ("wait_without_blocking");
428 synch_process_alive
= 0;
431 #endif /* not subprocesses */
433 int wait_debugging
; /* Set nonzero to make following function work under dbx
434 (at least for bsd). */
437 wait_for_termination_signal ()
440 /* Wait for subprocess with process id `pid' to terminate and
441 make sure it will get eliminated (not remain forever as a zombie) */
444 wait_for_termination (pid
)
453 status
= SYS$
FORCEX (&pid
, 0, 0);
456 #if defined (BSD_SYSTEM) || (defined (HPUX) && !defined (HPUX_5))
457 /* Note that kill returns -1 even if the process is just a zombie now.
458 But inevitably a SIGCHLD interrupt should be generated
459 and child_sig will do wait3 and make the process go away. */
460 /* There is some indication that there is a bug involved with
461 termination of subprocesses, perhaps involving a kernel bug too,
462 but no idea what it is. Just as a hunch we signal SIGCHLD to see
463 if that causes the problem to go away or get worse. */
464 sigsetmask (sigmask (SIGCHLD
));
465 if (0 > kill (pid
, 0))
467 sigsetmask (SIGEMPTYMASK
);
468 kill (getpid (), SIGCHLD
);
474 sigpause (SIGEMPTYMASK
);
475 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
476 #if defined (UNIPLUS)
477 if (0 > kill (pid
, 0))
480 #else /* neither BSD_SYSTEM nor UNIPLUS: random sysV */
481 #ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
482 sigblock (sigmask (SIGCHLD
));
484 if (kill (pid
, 0) == -1 && errno
== ESRCH
)
486 sigunblock (sigmask (SIGCHLD
));
490 /* FIXME: Since sigpause is not POSIX and its use is deprecated,
491 this should probably be `sigsuspend (&empty_mask)', which is
492 POSIX. I'm not making that change right away because the
493 release is nearing. 2001-09-20 gerd. */
494 sigpause (SIGEMPTYMASK
);
495 #else /* not POSIX_SIGNALS */
496 #ifdef HAVE_SYSV_SIGPAUSE
498 if (0 > kill (pid
, 0))
504 #else /* not HAVE_SYSV_SIGPAUSE */
508 #else /* not WINDOWSNT */
509 if (0 > kill (pid
, 0))
511 /* Using sleep instead of pause avoids timing error.
512 If the inferior dies just before the sleep,
513 we lose just one second. */
515 #endif /* not WINDOWSNT */
516 #endif /* not HAVE_SYSV_SIGPAUSE */
517 #endif /* not POSIX_SIGNALS */
518 #endif /* not UNIPLUS */
519 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
521 #else /* not subprocesses */
524 #else /* not __DJGPP__ > 1 */
526 if (kill (pid
, 0) < 0)
532 if (status
== pid
|| status
== -1)
535 #endif /* not __DJGPP__ > 1*/
536 #endif /* not subprocesses */
543 * flush any pending output
544 * (may flush input as well; it does not matter the way we use it)
548 flush_pending_output (channel
)
552 /* If we try this, we get hit with SIGTTIN, because
553 the child's tty belongs to the child's pgrp. */
556 ioctl (channel
, TCFLSH
, 1);
560 /* 3rd arg should be ignored
561 but some 4.2 kernels actually want the address of an int
562 and nonzero means something different. */
563 ioctl (channel
, TIOCFLUSH
, &zero
);
570 /* Set up the terminal at the other end of a pseudo-terminal that
571 we will be controlling an inferior through.
572 It should not echo or do line-editing, since that is done
573 in Emacs. No padding needed for insertion into an Emacs buffer. */
576 child_setup_tty (out
)
582 EMACS_GET_TTY (out
, &s
);
584 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
585 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
586 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
588 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
589 /* No output delays */
591 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
592 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
593 #if 0 /* This causes bugs in (for instance) telnet to certain sites. */
594 s
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
595 #ifdef INLCR /* Just being cautious, since I can't check how
596 widespread INLCR is--rms. */
597 s
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
601 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
604 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
607 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
609 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
610 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
612 /* Said to be unnecessary: */
613 s
.main
.c_cc
[VMIN
] = 1; /* minimum number of characters to accept */
614 s
.main
.c_cc
[VTIME
] = 0; /* wait forever for at least 1 character */
617 s
.main
.c_lflag
|= ICANON
; /* Enable erase/kill and eof processing */
618 s
.main
.c_cc
[VEOF
] = 04; /* insure that EOF is Control-D */
619 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
620 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
623 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
627 /* AIX enhanced edit loses NULs, so disable it */
630 s
.main
.c_iflag
&= ~ASCEDIT
;
632 /* Also, PTY overloads NUL and BREAK.
633 don't ignore break, but don't signal either, so it looks like NUL. */
634 s
.main
.c_iflag
&= ~IGNBRK
;
635 s
.main
.c_iflag
&= ~BRKINT
;
636 /* QUIT and INTR work better as signals, so disable character forms */
637 s
.main
.c_cc
[VINTR
] = 0377;
638 #ifdef SIGNALS_VIA_CHARACTERS
639 /* the QUIT and INTR character are used in process_send_signal
640 so set them here to something useful. */
641 if (s
.main
.c_cc
[VQUIT
] == 0377)
642 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
643 if (s
.main
.c_cc
[VINTR
] == 0377)
644 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
645 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
646 /* QUIT and INTR work better as signals, so disable character forms */
647 s
.main
.c_cc
[VQUIT
] = 0377;
648 s
.main
.c_cc
[VINTR
] = 0377;
649 s
.main
.c_lflag
&= ~ISIG
;
650 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
651 s
.main
.c_cc
[VEOL
] = 0377;
652 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
655 #else /* not HAVE_TERMIO */
657 s
.main
.sg_flags
&= ~(ECHO
| CRMOD
| ANYP
| ALLDELAY
| RAW
| LCASE
659 s
.main
.sg_flags
|= LPASS8
;
660 s
.main
.sg_erase
= 0377;
661 s
.main
.sg_kill
= 0377;
662 s
.lmode
= LLITOUT
| s
.lmode
; /* Don't strip 8th bit */
664 #endif /* not HAVE_TERMIO */
666 EMACS_SET_TTY (out
, &s
, 0);
675 ioctl (out
, FIOASYNC
, &zero
);
678 #endif /* not DOS_NT */
682 #endif /* subprocesses */
684 /* Record a signal code and the handler for it. */
688 SIGTYPE (*handler
) P_ ((int));
691 static void save_signal_handlers
P_ ((struct save_signal
*));
692 static void restore_signal_handlers
P_ ((struct save_signal
*));
694 /* Suspend the Emacs process; give terminal to its superior. */
700 /* "Foster" parentage allows emacs to return to a subprocess that attached
701 to the current emacs as a cheaper than starting a whole new process. This
702 is set up by KEPTEDITOR.COM. */
703 unsigned long parent_id
, foster_parent_id
;
706 fpid_string
= getenv ("EMACS_PARENT_PID");
707 if (fpid_string
!= NULL
)
709 sscanf (fpid_string
, "%x", &foster_parent_id
);
710 if (foster_parent_id
!= 0)
711 parent_id
= foster_parent_id
;
713 parent_id
= getppid ();
716 parent_id
= getppid ();
718 xfree (fpid_string
); /* On VMS, this was malloc'd */
720 if (parent_id
&& parent_id
!= 0xffffffff)
722 SIGTYPE (*oldsig
)() = (int) signal (SIGINT
, SIG_IGN
);
723 int status
= LIB$
ATTACH (&parent_id
) & 1;
724 signal (SIGINT
, oldsig
);
733 d_prompt
.l
= sizeof ("Emacs: "); /* Our special prompt */
734 d_prompt
.a
= "Emacs: "; /* Just a reminder */
735 LIB$
SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt
, 0);
740 #if defined (SIGTSTP) && !defined (MSDOS)
743 int pgrp
= EMACS_GETPGRP (0);
744 EMACS_KILLPG (pgrp
, SIGTSTP
);
747 #else /* No SIGTSTP */
748 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
749 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
750 kill (getpid (), SIGQUIT
);
752 #else /* No SIGTSTP or USG_JOBCTRL */
754 /* On a system where suspending is not implemented,
755 instead fork a subshell and let it talk directly to the terminal
759 #endif /* no USG_JOBCTRL */
760 #endif /* no SIGTSTP */
764 /* Fork a subshell. */
771 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
773 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
776 struct save_signal saved_handlers
[5];
778 unsigned char *str
= 0;
781 saved_handlers
[0].code
= SIGINT
;
782 saved_handlers
[1].code
= SIGQUIT
;
783 saved_handlers
[2].code
= SIGTERM
;
785 saved_handlers
[3].code
= SIGIO
;
786 saved_handlers
[4].code
= 0;
788 saved_handlers
[3].code
= 0;
791 /* Mentioning current_buffer->buffer would mean including buffer.h,
792 which somehow wedges the hp compiler. So instead... */
794 dir
= intern ("default-directory");
795 if (NILP (Fboundp (dir
)))
797 dir
= Fsymbol_value (dir
);
801 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
802 str
= (unsigned char *) alloca (XSTRING (dir
)->size
+ 2);
803 len
= XSTRING (dir
)->size
;
804 bcopy (XSTRING (dir
)->data
, str
, len
);
805 if (str
[len
- 1] != '/') str
[len
++] = '/';
812 save_signal_handlers (saved_handlers
);
813 synch_process_alive
= 1;
814 #endif /* __DJGPP__ > 1 */
818 error ("Can't spawn subshell");
825 #ifdef DOS_NT /* MW, Aug 1993 */
828 sh
= (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
831 sh
= (char *) egetenv ("SHELL");
835 /* Use our buffer's default directory for the subshell. */
837 chdir ((char *) str
);
840 close_process_descs (); /* Close Emacs's pipes/ptys */
843 #ifdef SET_EMACS_PRIORITY
845 extern int emacs_priority
;
847 if (emacs_priority
< 0)
848 nice (-emacs_priority
);
852 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
855 #if 0 /* This is also reported if last command executed in subshell failed, KFS */
857 report_file_error ("Can't execute subshell", Fcons (build_string (sh
), Qnil
));
859 #else /* not MSDOS */
861 /* Waits for process completion */
862 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
865 write (1, "Can't execute subshell", 22);
866 #else /* not WINDOWSNT */
868 write (1, "Can't execute subshell", 22);
870 #endif /* not WINDOWSNT */
871 #endif /* not MSDOS */
874 /* Do this now if we did not do it before. */
875 #if !defined (MSDOS) || __DJGPP__ == 1
876 save_signal_handlers (saved_handlers
);
877 synch_process_alive
= 1;
881 wait_for_termination (pid
);
883 restore_signal_handlers (saved_handlers
);
884 synch_process_alive
= 0;
887 #endif /* !macintosh */
890 save_signal_handlers (saved_handlers
)
891 struct save_signal
*saved_handlers
;
893 while (saved_handlers
->code
)
895 saved_handlers
->handler
896 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers
->code
, SIG_IGN
);
902 restore_signal_handlers (saved_handlers
)
903 struct save_signal
*saved_handlers
;
905 while (saved_handlers
->code
)
907 signal (saved_handlers
->code
, saved_handlers
->handler
);
921 old_fcntl_flags
= fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
922 fcntl (fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
924 interrupts_deferred
= 0;
933 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
938 if (read_socket_hook
)
942 sigunblock (sigmask (SIGWINCH
));
944 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
946 interrupts_deferred
= 0;
952 if (read_socket_hook
)
956 sigblock (sigmask (SIGWINCH
));
958 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
);
959 interrupts_deferred
= 1;
962 #else /* no FASYNC */
963 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
970 if (read_socket_hook
)
973 ioctl (input_fd
, FIOASYNC
, &on
);
974 interrupts_deferred
= 0;
982 if (read_socket_hook
)
985 ioctl (input_fd
, FIOASYNC
, &off
);
986 interrupts_deferred
= 1;
989 #else /* not FASYNC, not STRIDE */
1001 if (read_socket_hook
)
1005 sigaddset (&st
, SIGIO
);
1006 ioctl (input_fd
, FIOASYNC
, &on
);
1007 interrupts_deferred
= 0;
1008 sigprocmask (SIG_UNBLOCK
, &st
, (sigset_t
*)0);
1016 if (read_socket_hook
)
1019 ioctl (input_fd
, FIOASYNC
, &off
);
1020 interrupts_deferred
= 1;
1023 #else /* ! _CX_UX */
1028 if (read_socket_hook
)
1031 croak ("request_sigio");
1037 if (read_socket_hook
)
1040 croak ("unrequest_sigio");
1046 #endif /* F_SETFL */
1048 /* Saving and restoring the process group of Emacs's terminal. */
1052 /* The process group of which Emacs was a member when it initially
1055 If Emacs was in its own process group (i.e. inherited_pgroup ==
1056 getpid ()), then we know we're running under a shell with job
1057 control (Emacs would never be run as part of a pipeline).
1060 If Emacs was not in its own process group, then we know we're
1061 running under a shell (or a caller) that doesn't know how to
1062 separate itself from Emacs (like sh). Emacs must be in its own
1063 process group in order to receive SIGIO correctly. In this
1064 situation, we put ourselves in our own pgroup, forcibly set the
1065 tty's pgroup to our pgroup, and make sure to restore and reinstate
1066 the tty's pgroup just like any other terminal setting. If
1067 inherited_group was not the tty's pgroup, then we'll get a
1068 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1069 it goes foreground in the future, which is what should happen. */
1070 int inherited_pgroup
;
1072 /* Split off the foreground process group to Emacs alone.
1073 When we are in the foreground, but not started in our own process
1074 group, redirect the TTY to point to our own process group. We need
1075 to be in our own process group to receive SIGIO properly. */
1077 narrow_foreground_group ()
1081 setpgrp (0, inherited_pgroup
);
1082 if (inherited_pgroup
!= me
)
1083 EMACS_SET_TTY_PGRP (input_fd
, &me
);
1087 /* Set the tty to our original foreground group. */
1089 widen_foreground_group ()
1091 if (inherited_pgroup
!= getpid ())
1092 EMACS_SET_TTY_PGRP (input_fd
, &inherited_pgroup
);
1093 setpgrp (0, inherited_pgroup
);
1096 #endif /* BSD_PGRPS */
1098 /* Getting and setting emacs_tty structures. */
1100 /* Set *TC to the parameters associated with the terminal FD.
1101 Return zero if all's well, or -1 if we ran into an error we
1102 couldn't deal with. */
1104 emacs_get_tty (fd
, settings
)
1106 struct emacs_tty
*settings
;
1108 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1110 /* We have those nifty POSIX tcmumbleattr functions. */
1111 bzero (&settings
->main
, sizeof (settings
->main
));
1112 if (tcgetattr (fd
, &settings
->main
) < 0)
1117 /* The SYSV-style interface? */
1118 if (ioctl (fd
, TCGETA
, &settings
->main
) < 0)
1123 /* Vehemently Monstrous System? :-) */
1124 if (! (SYS$
QIOW (0, fd
, IO$_SENSEMODE
, settings
, 0, 0,
1125 &settings
->main
.class, 12, 0, 0, 0, 0)
1131 /* I give up - I hope you have the BSD ioctls. */
1132 if (ioctl (fd
, TIOCGETP
, &settings
->main
) < 0)
1134 #endif /* not DOS_NT */
1139 /* Suivant - Do we have to get struct ltchars data? */
1141 if (ioctl (fd
, TIOCGLTC
, &settings
->ltchars
) < 0)
1145 /* How about a struct tchars and a wordful of lmode bits? */
1147 if (ioctl (fd
, TIOCGETC
, &settings
->tchars
) < 0
1148 || ioctl (fd
, TIOCLGET
, &settings
->lmode
) < 0)
1152 /* We have survived the tempest. */
1157 /* Set the parameters of the tty on FD according to the contents of
1158 *SETTINGS. If FLUSHP is non-zero, we discard input.
1159 Return 0 if all went well, and -1 if anything failed. */
1162 emacs_set_tty (fd
, settings
, flushp
)
1164 struct emacs_tty
*settings
;
1167 /* Set the primary parameters - baud rate, character size, etcetera. */
1170 /* We have those nifty POSIX tcmumbleattr functions.
1171 William J. Smith <wjs@wiis.wang.com> writes:
1172 "POSIX 1003.1 defines tcsetattr to return success if it was
1173 able to perform any of the requested actions, even if some
1174 of the requested actions could not be performed.
1175 We must read settings back to ensure tty setup properly.
1176 AIX requires this to keep tty from hanging occasionally." */
1177 /* This make sure that we don't loop indefinitely in here. */
1178 for (i
= 0 ; i
< 10 ; i
++)
1179 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
1190 bzero (&new, sizeof (new));
1191 /* Get the current settings, and see if they're what we asked for. */
1192 tcgetattr (fd
, &new);
1193 /* We cannot use memcmp on the whole structure here because under
1194 * aix386 the termios structure has some reserved field that may
1197 if ( new.c_iflag
== settings
->main
.c_iflag
1198 && new.c_oflag
== settings
->main
.c_oflag
1199 && new.c_cflag
== settings
->main
.c_cflag
1200 && new.c_lflag
== settings
->main
.c_lflag
1201 && memcmp (new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
1209 /* The SYSV-style interface? */
1210 if (ioctl (fd
, flushp
? TCSETAF
: TCSETAW
, &settings
->main
) < 0)
1215 /* Vehemently Monstrous System? :-) */
1216 if (! (SYS$
QIOW (0, fd
, IO$_SETMODE
, &input_iosb
, 0, 0,
1217 &settings
->main
.class, 12, 0, 0, 0, 0)
1223 /* I give up - I hope you have the BSD ioctls. */
1224 if (ioctl (fd
, (flushp
) ? TIOCSETP
: TIOCSETN
, &settings
->main
) < 0)
1226 #endif /* not DOS_NT */
1232 /* Suivant - Do we have to get struct ltchars data? */
1234 if (ioctl (fd
, TIOCSLTC
, &settings
->ltchars
) < 0)
1238 /* How about a struct tchars and a wordful of lmode bits? */
1240 if (ioctl (fd
, TIOCSETC
, &settings
->tchars
) < 0
1241 || ioctl (fd
, TIOCLSET
, &settings
->lmode
) < 0)
1245 /* We have survived the tempest. */
1250 /* The initial tty mode bits */
1251 struct emacs_tty old_tty
;
1253 /* 1 if we have been through init_sys_modes. */
1256 /* 1 if outer tty status has been recorded. */
1260 /* BSD 4.1 needs to keep track of the lmode bits in order to start
1265 #ifndef F_SETOWN_BUG
1267 int old_fcntl_owner
;
1268 #endif /* F_SETOWN */
1269 #endif /* F_SETOWN_BUG */
1271 /* This may also be defined in stdio,
1272 but if so, this does no harm,
1273 and using the same name avoids wasting the other one's space. */
1276 extern char *_sobuf
;
1278 #if defined (USG) || defined (DGUX)
1279 unsigned char _sobuf
[BUFSIZ
+8];
1281 char _sobuf
[BUFSIZ
];
1286 static struct ltchars new_ltchars
= {-1,-1,-1,-1,-1,-1};
1289 static struct tchars new_tchars
= {-1,-1,-1,-1,-1,-1};
1295 struct emacs_tty tty
;
1298 /* cus-start.el complains if delete-exited-processes is not defined */
1299 #ifndef subprocesses
1300 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
1301 doc
: /* *Non-nil means delete processes immediately when they exit.
1302 nil means don't delete them until `list-processes' is run. */);
1303 delete_exited_processes
= 0;
1305 #endif /* not macintosh */
1309 static int oob_chars
[2] = {0, 1 << 7}; /* catch C-g's */
1310 extern int (*interrupt_signal
) ();
1314 Vtty_erase_char
= Qnil
;
1321 input_ef
= get_kbd_event_flag ();
1322 /* LIB$GET_EF (&input_ef); */
1323 SYS$
CLREF (input_ef
);
1324 waiting_for_ast
= 0;
1326 timer_ef
= get_timer_event_flag ();
1327 /* LIB$GET_EF (&timer_ef); */
1328 SYS$
CLREF (timer_ef
);
1332 LIB$
GET_EF (&process_ef
);
1333 SYS$
CLREF (process_ef
);
1335 if (input_ef
/ 32 != process_ef
/ 32)
1336 croak ("Input and process event flags in different clusters.");
1338 if (input_ef
/ 32 != timer_ef
/ 32)
1339 croak ("Input and timer event flags in different clusters.");
1341 input_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1342 ((unsigned) 1 << (process_ef
% 32));
1344 timer_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1345 ((unsigned) 1 << (timer_ef
% 32));
1347 sys_access_reinit ();
1349 #endif /* not VMS */
1352 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1353 narrow_foreground_group ();
1356 #ifdef HAVE_WINDOW_SYSTEM
1357 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1358 needs the initialization code below. */
1359 if (!read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1362 EMACS_GET_TTY (input_fd
, &old_tty
);
1368 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1369 XSETINT (Vtty_erase_char
, old_tty
.main
.c_cc
[VERASE
]);
1372 /* This allows meta to be sent on 8th bit. */
1373 tty
.main
.c_iflag
&= ~INPCK
; /* don't check input for parity */
1375 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
1376 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
1377 #ifdef INLCR /* I'm just being cautious,
1378 since I can't check how widespread INLCR is--rms. */
1379 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
1382 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
1384 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
1385 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
1387 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
1389 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
1392 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
1394 tty
.main
.c_iflag
&= ~IXANY
;
1398 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
1399 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
1401 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
1405 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
1406 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
1409 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
1410 /* Set up C-g for both SIGQUIT and SIGINT.
1411 We don't know which we will get, but we handle both alike
1412 so which one it really gives us does not matter. */
1413 tty
.main
.c_cc
[VQUIT
] = quit_char
;
1414 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1415 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1417 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1421 #if defined (mips) || defined (HAVE_TCATTR)
1423 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off mips handling of C-z. */
1426 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off mips handling of C-y. */
1427 #endif /* V_DSUSP */
1428 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1429 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1432 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1435 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1436 #endif /* VREPRINT */
1438 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1439 #endif /* VWERASE */
1441 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1442 #endif /* VDISCARD */
1447 tty
.main
.c_cc
[VSTART
] = '\021';
1450 tty
.main
.c_cc
[VSTOP
] = '\023';
1456 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1459 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1462 #endif /* mips or HAVE_TCATTR */
1464 #ifdef SET_LINE_DISCIPLINE
1465 /* Need to explicitly request TERMIODISC line discipline or
1466 Ultrix's termios does not work correctly. */
1467 tty
.main
.c_line
= SET_LINE_DISCIPLINE
;
1471 /* AIX enhanced edit loses NULs, so disable it. */
1472 tty
.main
.c_line
= 0;
1473 tty
.main
.c_iflag
&= ~ASCEDIT
;
1475 tty
.main
.c_cc
[VSTRT
] = 255;
1476 tty
.main
.c_cc
[VSTOP
] = 255;
1477 tty
.main
.c_cc
[VSUSP
] = 255;
1478 tty
.main
.c_cc
[VDSUSP
] = 255;
1479 #endif /* IBMR2AIX */
1483 tty
.main
.c_cc
[VSTART
] = '\021';
1486 tty
.main
.c_cc
[VSTOP
] = '\023';
1489 /* Also, PTY overloads NUL and BREAK.
1490 don't ignore break, but don't signal either, so it looks like NUL.
1491 This really serves a purpose only if running in an XTERM window
1492 or via TELNET or the like, but does no harm elsewhere. */
1493 tty
.main
.c_iflag
&= ~IGNBRK
;
1494 tty
.main
.c_iflag
&= ~BRKINT
;
1496 #else /* if not HAVE_TERMIO */
1498 tty
.main
.tt_char
|= TT$M_NOECHO
;
1500 tty
.main
.tt_char
|= TT$M_EIGHTBIT
;
1502 tty
.main
.tt_char
|= TT$M_TTSYNC
;
1504 tty
.main
.tt_char
&= ~TT$M_TTSYNC
;
1505 tty
.main
.tt2_char
|= TT2$M_PASTHRU
| TT2$M_XON
;
1506 #else /* not VMS (BSD, that is) */
1508 XSETINT (Vtty_erase_char
, tty
.main
.sg_erase
);
1509 tty
.main
.sg_flags
&= ~(ECHO
| CRMOD
| XTABS
);
1511 tty
.main
.sg_flags
|= ANYP
;
1512 tty
.main
.sg_flags
|= interrupt_input
? RAW
: CBREAK
;
1513 #endif /* not DOS_NT */
1514 #endif /* not VMS (BSD, that is) */
1515 #endif /* not HAVE_TERMIO */
1517 /* If going to use CBREAK mode, we must request C-g to interrupt
1518 and turn off start and stop chars, etc. If not going to use
1519 CBREAK mode, do this anyway so as to turn off local flow
1520 control for user coming over network on 4.2; in this case,
1521 only t_stopc and t_startc really matter. */
1524 /* Note: if not using CBREAK mode, it makes no difference how we
1526 tty
.tchars
= new_tchars
;
1527 tty
.tchars
.t_intrc
= quit_char
;
1530 tty
.tchars
.t_startc
= '\021';
1531 tty
.tchars
.t_stopc
= '\023';
1534 tty
.lmode
= LDECCTQ
| LLITOUT
| LPASS8
| LNOFLSH
| old_tty
.lmode
;
1536 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1537 anything, and leaving it in breaks the meta key. Go figure. */
1538 tty
.lmode
&= ~LLITOUT
;
1545 #endif /* HAVE_TCHARS */
1546 #endif /* not HAVE_TERMIO */
1549 tty
.ltchars
= new_ltchars
;
1550 #endif /* HAVE_LTCHARS */
1551 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1553 internal_terminal_init ();
1557 EMACS_SET_TTY (input_fd
, &tty
, 0);
1559 /* This code added to insure that, if flow-control is not to be used,
1560 we have an unlocked terminal at the start. */
1563 if (!flow_control
) ioctl (input_fd
, TCXONC
, 1);
1567 if (!flow_control
) ioctl (input_fd
, TIOCSTART
, 0);
1571 #if defined (HAVE_TERMIOS) || defined (HPUX9)
1573 if (!flow_control
) tcflow (input_fd
, TCOON
);
1581 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1582 to be only LF. This is the way that is done. */
1585 if (ioctl (1, HFTGETID
, &tty
) != -1)
1586 write (1, "\033[20l", 5);
1592 /* Appears to do nothing when in PASTHRU mode.
1593 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1594 interrupt_signal, oob_chars, 0, 0, 0, 0);
1596 queue_kbd_input (0);
1601 #ifndef F_SETOWN_BUG
1602 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1604 && ! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1606 old_fcntl_owner
= fcntl (input_fd
, F_GETOWN
, 0);
1607 fcntl (input_fd
, F_SETOWN
, getpid ());
1608 init_sigio (input_fd
);
1610 #endif /* F_GETOWN */
1611 #endif /* F_SETOWN_BUG */
1612 #endif /* F_SETFL */
1615 if (interrupt_input
)
1616 init_sigio (input_fd
);
1619 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1623 /* This symbol is defined on recent USG systems.
1624 Someone says without this call USG won't really buffer the file
1625 even with a call to setbuf. */
1626 setvbuf (stdout
, (char *) _sobuf
, _IOFBF
, sizeof _sobuf
);
1628 setbuf (stdout
, (char *) _sobuf
);
1630 #ifdef HAVE_WINDOW_SYSTEM
1631 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1632 needs the initialization code below. */
1633 if (EQ (Vwindow_system
, Qnil
)
1635 /* When running in tty mode on NT/Win95, we have a read_socket
1636 hook, but still need the rest of the initialization code below. */
1637 && (! read_socket_hook
)
1641 set_terminal_modes ();
1644 && FRAMEP (Vterminal_frame
)
1645 && FRAME_TERMCAP_P (XFRAME (Vterminal_frame
)))
1646 init_frame_faces (XFRAME (Vterminal_frame
));
1648 if (term_initted
&& no_redraw_on_reenter
)
1650 if (display_completed
)
1651 direct_output_forward_char (0);
1656 if (FRAMEP (Vterminal_frame
))
1657 FRAME_GARBAGED_P (XFRAME (Vterminal_frame
)) = 1;
1663 /* Return nonzero if safe to use tabs in output.
1664 At the time this is called, init_sys_modes has not been done yet. */
1669 struct emacs_tty tty
;
1671 EMACS_GET_TTY (input_fd
, &tty
);
1672 return EMACS_TTY_TABS_OK (&tty
);
1675 /* Get terminal size from system.
1676 Store number of lines into *HEIGHTP and width into *WIDTHP.
1677 We store 0 if there's no valid information. */
1680 get_frame_size (widthp
, heightp
)
1681 int *widthp
, *heightp
;
1687 struct winsize size
;
1689 if (ioctl (input_fd
, TIOCGWINSZ
, &size
) == -1)
1690 *widthp
= *heightp
= 0;
1693 *widthp
= size
.ws_col
;
1694 *heightp
= size
.ws_row
;
1700 /* SunOS - style. */
1701 struct ttysize size
;
1703 if (ioctl (input_fd
, TIOCGSIZE
, &size
) == -1)
1704 *widthp
= *heightp
= 0;
1707 *widthp
= size
.ts_cols
;
1708 *heightp
= size
.ts_lines
;
1714 struct sensemode tty
;
1716 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &tty
, 0, 0,
1717 &tty
.class, 12, 0, 0, 0, 0);
1718 *widthp
= tty
.scr_wid
;
1719 *heightp
= tty
.scr_len
;
1723 *widthp
= ScreenCols ();
1724 *heightp
= ScreenRows ();
1725 #else /* system doesn't know size */
1730 #endif /* not VMS */
1731 #endif /* not SunOS-style */
1732 #endif /* not BSD-style */
1735 /* Set the logical window size associated with descriptor FD
1736 to HEIGHT and WIDTH. This is used mainly with ptys. */
1739 set_window_size (fd
, height
, width
)
1740 int fd
, height
, width
;
1745 struct winsize size
;
1746 size
.ws_row
= height
;
1747 size
.ws_col
= width
;
1749 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1750 return 0; /* error */
1757 /* SunOS - style. */
1758 struct ttysize size
;
1759 size
.ts_lines
= height
;
1760 size
.ts_cols
= width
;
1762 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1768 #endif /* not SunOS-style */
1769 #endif /* not BSD-style */
1773 /* Prepare the terminal for exiting Emacs; move the cursor to the
1774 bottom of the frame, turn off interrupt-driven I/O, etc. */
1787 #ifdef HAVE_WINDOW_SYSTEM
1788 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1789 needs the clean-up code below. */
1790 if (!EQ (Vwindow_system
, Qnil
)
1792 /* When running in tty mode on NT/Win95, we have a read_socket
1793 hook, but still need the rest of the clean-up code below. */
1799 sf
= SELECTED_FRAME ();
1800 cursor_to (FRAME_HEIGHT (sf
) - 1, 0);
1801 clear_end_of_line (FRAME_WIDTH (sf
));
1802 /* clear_end_of_line may move the cursor */
1803 cursor_to (FRAME_HEIGHT (sf
) - 1, 0);
1804 #if defined (IBMR2AIX) && defined (AIXHFT)
1806 /* HFT devices normally use ^J as a LF/CR. We forced it to
1807 do the LF only. Now, we need to reset it. */
1810 if (ioctl (1, HFTGETID
, &tty
) != -1)
1811 write (1, "\033[20h", 5);
1815 reset_terminal_modes ();
1819 /* Avoid possible loss of output when changing terminal modes. */
1820 fsync (fileno (stdout
));
1825 #ifndef F_SETOWN_BUG
1826 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1827 if (interrupt_input
)
1830 fcntl (input_fd
, F_SETOWN
, old_fcntl_owner
);
1832 #endif /* F_SETOWN */
1833 #endif /* F_SETOWN_BUG */
1835 fcntl (input_fd
, F_SETFL
, fcntl (input_fd
, F_GETFL
, 0) & ~O_NDELAY
);
1837 #endif /* F_SETFL */
1839 if (interrupt_input
)
1844 while (EMACS_SET_TTY (input_fd
, &old_tty
, 0) < 0 && errno
== EINTR
)
1847 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1851 #ifdef SET_LINE_DISCIPLINE
1852 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1853 A different old line discipline is therefore not restored, yet.
1854 Restore the old line discipline by hand. */
1855 ioctl (0, TIOCSETD
, &old_tty
.main
.c_line
);
1863 widen_foreground_group ();
1869 /* Set up the proper status flags for use of a pty. */
1875 /* I'm told that TOICREMOTE does not mean control chars
1876 "can't be sent" but rather that they don't have
1877 input-editing or signaling effects.
1878 That should be good, because we have other ways
1879 to do those things in Emacs.
1880 However, telnet mode seems not to work on 4.2.
1881 So TIOCREMOTE is turned off now. */
1883 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1884 will hang. In particular, the "timeout" feature (which
1885 causes a read to return if there is no data available)
1886 does this. Also it is known that telnet mode will hang
1887 in such a way that Emacs must be stopped (perhaps this
1888 is the same problem).
1890 If TIOCREMOTE is turned off, then there is a bug in
1891 hp-ux which sometimes loses data. Apparently the
1892 code which blocks the master process when the internal
1893 buffer fills up does not work. Other than this,
1894 though, everything else seems to work fine.
1896 Since the latter lossage is more benign, we may as well
1897 lose that way. -- cph */
1899 #if defined(SYSV_PTYS) || defined(UNIX98_PTYS)
1902 ioctl (fd
, FIONBIO
, &on
);
1907 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
1908 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
1909 /* cause EMACS not to die when it should, i.e., when its own controlling */
1910 /* tty goes away. I've complained to the AIX developers, and they may */
1911 /* change this behavior, but I'm not going to hold my breath. */
1912 signal (SIGHUP
, SIG_IGN
);
1915 #endif /* HAVE_PTYS */
1919 /* Assigning an input channel is done at the start of Emacs execution.
1920 This is called each time Emacs is resumed, also, but does nothing
1921 because input_chain is no longer zero. */
1930 status
= SYS$
ASSIGN (&input_dsc
, &input_fd
, 0, 0);
1936 /* Deassigning the input channel is done before exiting. */
1941 return SYS$
DASSGN (input_fd
);
1946 /* Request reading one character into the keyboard buffer.
1947 This is done as soon as the buffer becomes empty. */
1953 extern kbd_input_ast ();
1955 waiting_for_ast
= 0;
1957 status
= SYS$
QIO (0, input_fd
, IO$_READVBLK
,
1958 &input_iosb
, kbd_input_ast
, 1,
1959 &input_buffer
, 1, 0, terminator_mask
, 0, 0);
1964 /* Ast routine that is called when keyboard input comes in
1965 in accord with the SYS$QIO above. */
1970 register int c
= -1;
1971 int old_errno
= errno
;
1972 extern EMACS_TIME
*input_available_clear_time
;
1974 if (waiting_for_ast
)
1975 SYS$
SETEF (input_ef
);
1976 waiting_for_ast
= 0;
1979 if (input_count
== 25)
1981 printf ("Ast # %d,", input_count
);
1982 printf (" iosb = %x, %x, %x, %x",
1983 input_iosb
.offset
, input_iosb
.status
, input_iosb
.termlen
,
1986 if (input_iosb
.offset
)
1990 printf (", char = 0%o", c
);
2002 struct input_event e
;
2003 e
.kind
= ascii_keystroke
;
2004 XSETINT (e
.code
, c
);
2005 e
.frame_or_window
= selected_frame
;
2006 kbd_buffer_store_event (&e
);
2008 if (input_available_clear_time
)
2009 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
2013 /* Wait until there is something in kbd_buffer. */
2016 wait_for_kbd_input ()
2018 extern int have_process_input
, process_exited
;
2020 /* If already something, avoid doing system calls. */
2021 if (detect_input_pending ())
2025 /* Clear a flag, and tell ast routine above to set it. */
2026 SYS$
CLREF (input_ef
);
2027 waiting_for_ast
= 1;
2028 /* Check for timing error: ast happened while we were doing that. */
2029 if (!detect_input_pending ())
2031 /* No timing error: wait for flag to be set. */
2032 set_waiting_for_input (0);
2033 SYS$
WFLOR (input_ef
, input_eflist
);
2034 clear_waiting_for_input ();
2035 if (!detect_input_pending ())
2036 /* Check for subprocess input availability */
2038 int dsp
= have_process_input
|| process_exited
;
2040 SYS$
CLREF (process_ef
);
2041 if (have_process_input
)
2042 process_command_input ();
2047 update_mode_lines
++;
2048 prepare_menu_bars ();
2049 redisplay_preserve_echo_area (18);
2053 waiting_for_ast
= 0;
2056 /* Get rid of any pending QIO, when we are about to suspend
2057 or when we want to throw away pending input.
2058 We wait for a positive sign that the AST routine has run
2059 and therefore there is no I/O request queued when we return.
2060 SYS$SETAST is used to avoid a timing error. */
2066 printf ("At end_kbd_input.\n");
2070 if (LIB$
AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
2072 SYS$
CANCEL (input_fd
);
2077 /* Clear a flag, and tell ast routine above to set it. */
2078 SYS$
CLREF (input_ef
);
2079 waiting_for_ast
= 1;
2081 SYS$
CANCEL (input_fd
);
2083 SYS$
WAITFR (input_ef
);
2084 waiting_for_ast
= 0;
2087 /* Wait for either input available or time interval expiry. */
2090 input_wait_timeout (timeval
)
2091 int timeval
; /* Time to wait, in seconds */
2094 static int zero
= 0;
2095 static int large
= -10000000;
2097 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
2099 /* If already something, avoid doing system calls. */
2100 if (detect_input_pending ())
2104 /* Clear a flag, and tell ast routine above to set it. */
2105 SYS$
CLREF (input_ef
);
2106 waiting_for_ast
= 1;
2107 /* Check for timing error: ast happened while we were doing that. */
2108 if (!detect_input_pending ())
2110 /* No timing error: wait for flag to be set. */
2112 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
2113 SYS$
WFLOR (timer_ef
, timer_eflist
); /* Wait for timer expiry or input */
2115 waiting_for_ast
= 0;
2118 /* The standard `sleep' routine works some other way
2119 and it stops working if you have ever quit out of it.
2120 This one continues to work. */
2126 static int zero
= 0;
2127 static int large
= -10000000;
2129 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
2132 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
2133 SYS$
WAITFR (timer_ef
); /* Wait for timer expiry only */
2151 croak ("request sigio");
2157 croak ("unrequest sigio");
2162 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2167 #ifndef SYSTEM_MALLOC
2174 /* Some systems that cannot dump also cannot implement these. */
2177 * Return the address of the start of the text segment prior to
2178 * doing an unexec. After unexec the return value is undefined.
2179 * See crt0.c for further explanation and _start.
2183 #if !(defined (__NetBSD__) && defined (__ELF__))
2184 #ifndef HAVE_TEXT_START
2189 return ((char *) TEXT_START
);
2193 return ((char *) csrt
);
2194 #else /* not GOULD */
2195 extern int _start ();
2196 return ((char *) _start
);
2198 #endif /* TEXT_START */
2200 #endif /* not HAVE_TEXT_START */
2204 * Return the address of the start of the data segment prior to
2205 * doing an unexec. After unexec the return value is undefined.
2206 * See crt0.c for further information and definition of data_start.
2208 * Apparently, on BSD systems this is etext at startup. On
2209 * USG systems (swapping) this is highly mmu dependent and
2210 * is also dependent on whether or not the program is running
2211 * with shared text. Generally there is a (possibly large)
2212 * gap between end of text and start of data with shared text.
2214 * On Uniplus+ systems with shared text, data starts at a
2215 * fixed address. Each port (from a given oem) is generally
2216 * different, and the specific value of the start of data can
2217 * be obtained via the UniPlus+ specific "uvar" system call,
2218 * however the method outlined in crt0.c seems to be more portable.
2220 * Probably what will have to happen when a USG unexec is available,
2221 * at least on UniPlus, is temacs will have to be made unshared so
2222 * that text and data are contiguous. Then once loadup is complete,
2223 * unexec will produce a shared executable where the data can be
2224 * at the normal shared text boundary and the startofdata variable
2225 * will be patched by unexec to the correct value.
2233 return ((char *) DATA_START
);
2235 #ifdef ORDINARY_LINK
2237 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2238 * data_start isn't defined. We take the address of environ, which
2239 * is known to live at or near the start of the system crt0.c, and
2240 * we don't sweat the handful of bytes that might lose.
2242 extern char **environ
;
2244 return ((char *) &environ
);
2246 extern int data_start
;
2247 return ((char *) &data_start
);
2248 #endif /* ORDINARY_LINK */
2249 #endif /* DATA_START */
2251 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2254 /* Some systems that cannot dump also cannot implement these. */
2257 * Return the address of the end of the text segment prior to
2258 * doing an unexec. After unexec the return value is undefined.
2265 return ((char *) TEXT_END
);
2268 return ((char *) &etext
);
2273 * Return the address of the end of the data segment prior to
2274 * doing an unexec. After unexec the return value is undefined.
2281 return ((char *) DATA_END
);
2284 return ((char *) &edata
);
2288 #endif /* not CANNOT_DUMP */
2290 /* init_system_name sets up the string for the Lisp function
2291 system-name to return. */
2297 extern Lisp_Object Vsystem_name
;
2302 #include <sys/socket.h>
2304 #endif /* HAVE_SOCKETS */
2305 #endif /* not VMS */
2306 #endif /* not BSD4_1 */
2309 #ifndef HAVE_H_ERRNO
2312 #endif /* TRY_AGAIN */
2318 Vsystem_name
= build_string (sysname
);
2322 if ((sp
= egetenv ("SYS$NODE")) == 0)
2323 Vsystem_name
= build_string ("vax-vms");
2324 else if ((end
= index (sp
, ':')) == 0)
2325 Vsystem_name
= build_string (sp
);
2327 Vsystem_name
= make_string (sp
, end
- sp
);
2329 #ifndef HAVE_GETHOSTNAME
2332 Vsystem_name
= build_string (uts
.nodename
);
2333 #else /* HAVE_GETHOSTNAME */
2334 unsigned int hostname_size
= 256;
2335 char *hostname
= (char *) alloca (hostname_size
);
2337 /* Try to get the host name; if the buffer is too short, try
2338 again. Apparently, the only indication gethostname gives of
2339 whether the buffer was large enough is the presence or absence
2340 of a '\0' in the string. Eech. */
2343 gethostname (hostname
, hostname_size
- 1);
2344 hostname
[hostname_size
- 1] = '\0';
2346 /* Was the buffer large enough for the '\0'? */
2347 if (strlen (hostname
) < hostname_size
- 1)
2350 hostname_size
<<= 1;
2351 hostname
= (char *) alloca (hostname_size
);
2354 /* Turn the hostname into the official, fully-qualified hostname.
2355 Don't do this if we're going to dump; this can confuse system
2356 libraries on some machines and make the dumped emacs core dump. */
2359 #endif /* not CANNOT_DUMP */
2360 if (! index (hostname
, '.'))
2364 for (count
= 0;; count
++)
2369 hp
= gethostbyname (hostname
);
2371 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
2376 Fsleep_for (make_number (1), Qnil
);
2380 char *fqdn
= (char *) hp
->h_name
;
2385 if (!index (fqdn
, '.'))
2387 /* We still don't have a fully qualified domain name.
2388 Try to find one in the list of alternate names */
2389 char **alias
= hp
->h_aliases
;
2390 while (*alias
&& !index (*alias
, '.'))
2397 /* Convert the host name to lower case. */
2398 /* Using ctype.h here would introduce a possible locale
2399 dependence that is probably wrong for hostnames. */
2403 if (*p
>= 'A' && *p
<= 'Z')
2410 #endif /* HAVE_SOCKETS */
2411 /* We used to try using getdomainname here,
2412 but NIIBE Yutaka <gniibe@etl.go.jp> says that
2413 getdomainname gets the NIS/YP domain which often is not the same
2414 as in Internet domain name. */
2415 #if 0 /* Turned off because sysinfo is not really likely to return the
2416 correct Internet domain. */
2417 #if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN))
2418 if (! index (hostname
, '.'))
2420 /* The hostname is not fully qualified. Append the domain name. */
2422 int hostlen
= strlen (hostname
);
2423 int domain_size
= 256;
2427 char *domain
= (char *) alloca (domain_size
+ 1);
2428 char *fqdn
= (char *) alloca (hostlen
+ 1 + domain_size
+ 1);
2429 int sys_domain_size
= sysinfo (SI_SRPC_DOMAIN
, domain
, domain_size
);
2430 if (sys_domain_size
<= 0)
2432 if (domain_size
< sys_domain_size
)
2434 domain_size
= sys_domain_size
;
2437 strcpy (fqdn
, hostname
);
2438 if (domain
[0] == '.')
2439 strcpy (fqdn
+ hostlen
, domain
);
2440 else if (domain
[0] != 0)
2442 fqdn
[hostlen
] = '.';
2443 strcpy (fqdn
+ hostlen
+ 1, domain
);
2449 #endif /* HAVE_SYSINFO && defined (SI_SRPC_DOMAIN) */
2451 Vsystem_name
= build_string (hostname
);
2452 #endif /* HAVE_GETHOSTNAME */
2457 for (p
= XSTRING (Vsystem_name
)->data
; *p
; p
++)
2458 if (*p
== ' ' || *p
== '\t')
2465 #if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)
2467 #include "sysselect.h"
2470 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2471 /* Cause explanatory error message at compile time,
2472 since the select emulation is not good enough for X. */
2473 int *x
= &x_windows_lose_if_no_select_system_call
;
2476 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2477 * Only checks read descriptors.
2479 /* How long to wait between checking fds in select */
2480 #define SELECT_PAUSE 1
2483 /* For longjmp'ing back to read_input_waiting. */
2485 jmp_buf read_alarm_throw
;
2487 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2488 The read_socket_hook function sets this to 1 while it is waiting. */
2490 int read_alarm_should_throw
;
2498 #else /* not BSD4_1 */
2499 signal (SIGALRM
, SIG_IGN
);
2500 #endif /* not BSD4_1 */
2501 if (read_alarm_should_throw
)
2502 longjmp (read_alarm_throw
, 1);
2506 /* Only rfds are checked. */
2508 sys_select (nfds
, rfds
, wfds
, efds
, timeout
)
2510 SELECT_TYPE
*rfds
, *wfds
, *efds
;
2511 EMACS_TIME
*timeout
;
2517 extern int proc_buffered_char
[];
2518 #ifndef subprocesses
2519 int process_tick
= 0, update_tick
= 0;
2521 extern int process_tick
, update_tick
;
2525 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2526 /* If we're using X, then the native select will work; we only need the
2527 emulation for non-X usage. */
2528 if (!NILP (Vwindow_system
))
2529 return select (nfds
, rfds
, wfds
, efds
, timeout
);
2531 timeoutval
= timeout
? EMACS_SECS (*timeout
) : 100000;
2532 local_timeout
= &timeoutval
;
2544 /* If we are looking only for the terminal, with no timeout,
2545 just read it and wait -- that's more efficient. */
2546 if (*local_timeout
== 100000 && process_tick
== update_tick
2547 && FD_ISSET (0, &orfds
))
2550 for (fd
= 1; fd
< nfds
; ++fd
)
2551 if (FD_ISSET (fd
, &orfds
))
2553 if (! detect_input_pending ())
2554 read_input_waiting ();
2560 /* Once a second, till the timer expires, check all the flagged read
2561 * descriptors to see if any input is available. If there is some then
2562 * set the corresponding bit in the return copy of rfds.
2566 register int to_check
, fd
;
2570 for (to_check
= nfds
, fd
= 0; --to_check
>= 0; fd
++)
2572 if (FD_ISSET (fd
, &orfds
))
2574 int avail
= 0, status
= 0;
2577 avail
= detect_input_pending (); /* Special keyboard handler */
2581 status
= ioctl (fd
, FIONREAD
, &avail
);
2582 #else /* no FIONREAD */
2583 /* Hoping it will return -1 if nothing available
2584 or 0 if all 0 chars requested are read. */
2585 if (proc_buffered_char
[fd
] >= 0)
2589 avail
= read (fd
, &buf
, 1);
2591 proc_buffered_char
[fd
] = buf
;
2593 #endif /* no FIONREAD */
2595 if (status
>= 0 && avail
> 0)
2603 if (*local_timeout
== 0 || ravail
!= 0 || process_tick
!= update_tick
)
2606 turn_on_atimers (0);
2607 signal (SIGALRM
, select_alarm
);
2609 alarm (SELECT_PAUSE
);
2611 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2612 while (select_alarmed
== 0 && *local_timeout
!= 0
2613 && process_tick
== update_tick
)
2615 /* If we are interested in terminal input,
2616 wait by reading the terminal.
2617 That makes instant wakeup for terminal input at least. */
2618 if (FD_ISSET (0, &orfds
))
2620 read_input_waiting ();
2621 if (detect_input_pending ())
2627 (*local_timeout
) -= SELECT_PAUSE
;
2629 /* Reset the old alarm if there was one. */
2630 turn_on_atimers (1);
2632 if (*local_timeout
== 0) /* Stop on timer being cleared */
2637 #endif /* not WINDOWSNT */
2639 /* Read keyboard input into the standard buffer,
2640 waiting for at least one character. */
2642 /* Make all keyboard buffers much bigger when using a window system. */
2643 #ifdef HAVE_WINDOW_SYSTEM
2644 #define BUFFER_SIZE_FACTOR 16
2646 #define BUFFER_SIZE_FACTOR 1
2650 read_input_waiting ()
2652 struct input_event e
;
2654 extern int quit_char
;
2656 if (read_socket_hook
)
2658 struct input_event buf
[256];
2660 read_alarm_should_throw
= 0;
2661 if (! setjmp (read_alarm_throw
))
2662 nread
= (*read_socket_hook
) (0, buf
, 256, 1);
2666 /* Scan the chars for C-g and store them in kbd_buffer. */
2667 for (i
= 0; i
< nread
; i
++)
2669 kbd_buffer_store_event (&buf
[i
]);
2670 /* Don't look at input that follows a C-g too closely.
2671 This reduces lossage due to autorepeat on C-g. */
2672 if (buf
[i
].kind
== ascii_keystroke
2673 && buf
[i
].code
== quit_char
)
2680 nread
= read (fileno (stdin
), buf
, 1);
2682 /* Scan the chars for C-g and store them in kbd_buffer. */
2683 e
.kind
= ascii_keystroke
;
2684 e
.frame_or_window
= selected_frame
;
2686 for (i
= 0; i
< nread
; i
++)
2688 /* Convert chars > 0177 to meta events if desired.
2689 We do this under the same conditions that read_avail_input does. */
2690 if (read_socket_hook
== 0)
2692 /* If the user says she has a meta key, then believe her. */
2693 if (meta_key
== 1 && (buf
[i
] & 0x80))
2694 e
.modifiers
= meta_modifier
;
2699 XSETINT (e
.code
, buf
[i
]);
2700 kbd_buffer_store_event (&e
);
2701 /* Don't look at input that follows a C-g too closely.
2702 This reduces lossage due to autorepeat on C-g. */
2703 if (buf
[i
] == quit_char
)
2709 #endif /* not HAVE_SELECT */
2710 #endif /* not VMS */
2711 #endif /* not MSDOS */
2720 lmode
= LINTRUP
| lmode
;
2721 ioctl (fd
, TIOCLSET
, &lmode
);
2729 lmode
= ~LINTRUP
& lmode
;
2730 ioctl (0, TIOCLSET
, &lmode
);
2738 interrupts_deferred
= 0;
2746 interrupts_deferred
= 1;
2749 /* still inside #ifdef BSD4_1 */
2752 int sigheld
; /* Mask of held signals */
2758 sigheld
|= sigbit (signum
);
2766 sigheld
|= sigbit (signum
);
2773 sigheld
&= ~sigbit (signum
);
2778 sigfree () /* Free all held signals */
2781 for (i
= 0; i
< NSIG
; i
++)
2782 if (sigheld
& sigbit (i
))
2790 return 1 << (i
- 1);
2792 #endif /* subprocesses */
2795 /* POSIX signals support - DJB */
2796 /* Anyone with POSIX signals should have ANSI C declarations */
2798 #ifdef POSIX_SIGNALS
2800 sigset_t empty_mask
, full_mask
;
2803 sys_signal (int signal_number
, signal_handler_t action
)
2805 struct sigaction new_action
, old_action
;
2806 sigemptyset (&new_action
.sa_mask
);
2807 new_action
.sa_handler
= action
;
2809 /* Emacs mostly works better with restartable system services. If this
2810 * flag exists, we probably want to turn it on here.
2812 new_action
.sa_flags
= SA_RESTART
;
2814 new_action
.sa_flags
= 0;
2816 sigaction (signal_number
, &new_action
, &old_action
);
2817 return (old_action
.sa_handler
);
2821 /* If we're compiling with GCC, we don't need this function, since it
2822 can be written as a macro. */
2824 sys_sigmask (int sig
)
2827 sigemptyset (&mask
);
2828 sigaddset (&mask
, sig
);
2833 /* I'd like to have these guys return pointers to the mask storage in here,
2834 but there'd be trouble if the code was saving multiple masks. I'll be
2835 safe and pass the structure. It normally won't be more than 2 bytes
2839 sys_sigblock (sigset_t new_mask
)
2842 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
2847 sys_sigunblock (sigset_t new_mask
)
2850 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
2855 sys_sigsetmask (sigset_t new_mask
)
2858 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
2862 #endif /* POSIX_SIGNALS */
2864 #if !defined HAVE_STRSIGNAL && !defined SYS_SIGLIST_DECLARED
2865 static char *my_sys_siglist
[NSIG
];
2869 # define sys_siglist my_sys_siglist
2875 #ifdef POSIX_SIGNALS
2876 sigemptyset (&empty_mask
);
2877 sigfillset (&full_mask
);
2880 #if !defined HAVE_STRSIGNAL && !defined SYS_SIGLIST_DECLARED
2884 sys_siglist
[SIGABRT
] = "Aborted";
2887 sys_siglist
[SIGAIO
] = "LAN I/O interrupt";
2890 sys_siglist
[SIGALRM
] = "Alarm clock";
2893 sys_siglist
[SIGBUS
] = "Bus error";
2896 sys_siglist
[SIGCLD
] = "Child status changed";
2899 sys_siglist
[SIGCHLD
] = "Child status changed";
2902 sys_siglist
[SIGCONT
] = "Continued";
2905 sys_siglist
[SIGDANGER
] = "Swap space dangerously low";
2908 sys_siglist
[SIGDGNOTIFY
] = "Notification message in queue";
2911 sys_siglist
[SIGEMT
] = "Emulation trap";
2914 sys_siglist
[SIGFPE
] = "Arithmetic exception";
2917 sys_siglist
[SIGFREEZE
] = "SIGFREEZE";
2920 sys_siglist
[SIGGRANT
] = "Monitor mode granted";
2923 sys_siglist
[SIGHUP
] = "Hangup";
2926 sys_siglist
[SIGILL
] = "Illegal instruction";
2929 sys_siglist
[SIGINT
] = "Interrupt";
2932 sys_siglist
[SIGIO
] = "I/O possible";
2935 sys_siglist
[SIGIOINT
] = "I/O intervention required";
2938 sys_siglist
[SIGIOT
] = "IOT trap";
2941 sys_siglist
[SIGKILL
] = "Killed";
2944 sys_siglist
[SIGLOST
] = "Resource lost";
2947 sys_siglist
[SIGLWP
] = "SIGLWP";
2950 sys_siglist
[SIGMSG
] = "Monitor mode data available";
2953 sys_siglist
[SIGWIND
] = "SIGPHONE";
2956 sys_siglist
[SIGPIPE
] = "Broken pipe";
2959 sys_siglist
[SIGPOLL
] = "Pollable event occurred";
2962 sys_siglist
[SIGPROF
] = "Profiling timer expired";
2965 sys_siglist
[SIGPTY
] = "PTY I/O interrupt";
2968 sys_siglist
[SIGPWR
] = "Power-fail restart";
2971 sys_siglist
[SIGQUIT
] = "Quit";
2974 sys_siglist
[SIGRETRACT
] = "Need to relinguish monitor mode";
2977 sys_siglist
[SIGSAK
] = "Secure attention";
2980 sys_siglist
[SIGSEGV
] = "Segmentation violation";
2983 sys_siglist
[SIGSOUND
] = "Sound completed";
2986 sys_siglist
[SIGSTOP
] = "Stopped (signal)";
2989 sys_siglist
[SIGSTP
] = "Stopped (user)";
2992 sys_siglist
[SIGSYS
] = "Bad argument to system call";
2995 sys_siglist
[SIGTERM
] = "Terminated";
2998 sys_siglist
[SIGTHAW
] = "SIGTHAW";
3001 sys_siglist
[SIGTRAP
] = "Trace/breakpoint trap";
3004 sys_siglist
[SIGTSTP
] = "Stopped (user)";
3007 sys_siglist
[SIGTTIN
] = "Stopped (tty input)";
3010 sys_siglist
[SIGTTOU
] = "Stopped (tty output)";
3013 sys_siglist
[SIGURG
] = "Urgent I/O condition";
3016 sys_siglist
[SIGUSR1
] = "User defined signal 1";
3019 sys_siglist
[SIGUSR2
] = "User defined signal 2";
3022 sys_siglist
[SIGVTALRM
] = "Virtual timer expired";
3025 sys_siglist
[SIGWAITING
] = "Process's LWPs are blocked";
3028 sys_siglist
[SIGWINCH
] = "Window size changed";
3031 sys_siglist
[SIGWIND
] = "SIGWIND";
3034 sys_siglist
[SIGXCPU
] = "CPU time limit exceeded";
3037 sys_siglist
[SIGXFSZ
] = "File size limit exceeded";
3040 #endif /* !defined HAVE_STRSIGNAL && !defined SYS_SIGLIST_DECLARED */
3049 /* Figure out how many bits the system's random number generator uses.
3050 `random' and `lrand48' are assumed to return 31 usable bits.
3051 BSD `rand' returns a 31 bit value but the low order bits are unusable;
3052 so we'll shift it and treat it like the 15-bit USG `rand'. */
3056 # define RAND_BITS 31
3057 # else /* !HAVE_RANDOM */
3058 # ifdef HAVE_LRAND48
3059 # define RAND_BITS 31
3060 # define random lrand48
3061 # else /* !HAVE_LRAND48 */
3062 # define RAND_BITS 15
3063 # if RAND_MAX == 32767
3064 # define random rand
3065 # else /* RAND_MAX != 32767 */
3066 # if RAND_MAX == 2147483647
3067 # define random() (rand () >> 16)
3068 # else /* RAND_MAX != 2147483647 */
3070 # define random rand
3072 # define random() (rand () >> 16)
3074 # endif /* RAND_MAX != 2147483647 */
3075 # endif /* RAND_MAX != 32767 */
3076 # endif /* !HAVE_LRAND48 */
3077 # endif /* !HAVE_RANDOM */
3078 #endif /* !RAND_BITS */
3085 srandom ((unsigned int)arg
);
3087 # ifdef HAVE_LRAND48
3090 srand ((unsigned int)arg
);
3096 * Build a full Emacs-sized word out of whatever we've got.
3097 * This suffices even for a 64-bit architecture with a 15-bit rand.
3102 long val
= random ();
3103 #if VALBITS > RAND_BITS
3104 val
= (val
<< RAND_BITS
) ^ random ();
3105 #if VALBITS > 2*RAND_BITS
3106 val
= (val
<< RAND_BITS
) ^ random ();
3107 #if VALBITS > 3*RAND_BITS
3108 val
= (val
<< RAND_BITS
) ^ random ();
3109 #if VALBITS > 4*RAND_BITS
3110 val
= (val
<< RAND_BITS
) ^ random ();
3111 #endif /* need at least 5 */
3112 #endif /* need at least 4 */
3113 #endif /* need at least 3 */
3114 #endif /* need at least 2 */
3115 return val
& ((1L << VALBITS
) - 1);
3118 #ifdef WRONG_NAME_INSQUE
3131 /* If any place else asks for the TERM variable,
3132 allow it to be overridden with the EMACS_TERM variable
3133 before attempting to translate the logical name TERM. As a last
3134 resort, ask for VAX C's special idea of the TERM variable. */
3141 static char buf
[256];
3142 static struct dsc$descriptor_s equiv
3143 = {sizeof (buf
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, buf
};
3144 static struct dsc$descriptor_s d_name
3145 = {0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0};
3148 if (!strcmp (name
, "TERM"))
3150 val
= (char *) getenv ("EMACS_TERM");
3155 d_name
.dsc$w_length
= strlen (name
);
3156 d_name
.dsc$a_pointer
= name
;
3157 if (LIB$
SYS_TRNLOG (&d_name
, &eqlen
, &equiv
) == 1)
3159 char *str
= (char *) xmalloc (eqlen
+ 1);
3160 bcopy (buf
, str
, eqlen
);
3162 /* This is a storage leak, but a pain to fix. With luck,
3163 no one will ever notice. */
3166 return (char *) getenv (name
);
3171 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
3172 to force a call on the debugger from within the image. */
3177 LIB$
SIGNAL (SS$_DEBUG
);
3183 #ifdef LINK_CRTL_SHARE
3184 #ifdef SHARABLE_LIB_BUG
3185 /* Variables declared noshare and initialized in sharable libraries
3186 cannot be shared. The VMS linker incorrectly forces you to use a private
3187 version which is uninitialized... If not for this "feature", we
3188 could use the C library definition of sys_nerr and sys_errlist. */
3190 char *sys_errlist
[] =
3194 "no such file or directory",
3196 "interrupted system call",
3198 "no such device or address",
3199 "argument list too long",
3200 "exec format error",
3203 "no more processes",
3204 "not enough memory",
3205 "permission denied",
3207 "block device required",
3208 "mount devices busy",
3210 "cross-device link",
3215 "file table overflow",
3216 "too many open files",
3220 "no space left on device",
3222 "read-only file system",
3228 "vax/vms specific error code nontranslatable error"
3230 #endif /* SHARABLE_LIB_BUG */
3231 #endif /* LINK_CRTL_SHARE */
3234 #ifndef HAVE_STRERROR
3240 extern char *sys_errlist
[];
3241 extern int sys_nerr
;
3243 if (errnum
>= 0 && errnum
< sys_nerr
)
3244 return sys_errlist
[errnum
];
3245 return (char *) "Unknown error";
3247 #endif /* not WINDOWSNT */
3248 #endif /* ! HAVE_STRERROR */
3251 emacs_open (path
, oflag
, mode
)
3255 register int rtnval
;
3258 if (oflag
& O_CREAT
)
3259 return creat (path
, mode
);
3262 while ((rtnval
= open (path
, oflag
, mode
)) == -1
3263 && (errno
== EINTR
));
3272 register int rtnval
;
3274 while ((rtnval
= close (fd
)) == -1
3275 && (errno
== EINTR
))
3278 /* If close is interrupted SunOS 4.1 may or may not have closed the
3279 file descriptor. If it did the second close will fail with
3280 errno = EBADF. That means we have succeeded. */
3281 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
3288 emacs_read (fildes
, buf
, nbyte
)
3293 register int rtnval
;
3295 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
3296 && (errno
== EINTR
));
3301 emacs_write (fildes
, buf
, nbyte
)
3306 register int rtnval
, bytes_written
;
3312 rtnval
= write (fildes
, buf
, nbyte
);
3319 return (bytes_written
? bytes_written
: -1);
3324 bytes_written
+= rtnval
;
3326 return (bytes_written
);
3331 * All of the following are for USG.
3333 * On USG systems the system calls are INTERRUPTIBLE by signals
3334 * that the user program has elected to catch. Thus the system call
3335 * must be retried in these cases. To handle this without massive
3336 * changes in the source code, we remap the standard system call names
3337 * to names for our own functions in sysdep.c that do the system call
3338 * with retries. Actually, for portability reasons, it is good
3339 * programming practice, as this example shows, to limit all actual
3340 * system calls to a single occurrence in the source. Sure, this
3341 * adds an extra level of function call overhead but it is almost
3342 * always negligible. Fred Fish, Unisoft Systems Inc.
3346 * Warning, this function may not duplicate 4.2 action properly
3347 * under error conditions.
3351 /* In 4.1, param.h fails to define this. */
3352 #define MAXPATHLEN 1024
3361 char *npath
, *spath
;
3362 extern char *getcwd ();
3364 BLOCK_INPUT
; /* getcwd uses malloc */
3365 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
3371 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3372 up to first slash. Should be harmless on other systems. */
3373 while (*npath
&& *npath
!= '/')
3375 strcpy (pathname
, npath
);
3376 free (spath
); /* getcwd uses malloc */
3381 #endif /* HAVE_GETWD */
3384 * Emulate rename using unlink/link. Note that this is
3385 * only partially correct. Also, doesn't enforce restriction
3386 * that files be of same type (regular->regular, dir->dir, etc).
3395 if (access (from
, 0) == 0)
3398 if (link (from
, to
) == 0)
3399 if (unlink (from
) == 0)
3411 /* HPUX curses library references perror, but as far as we know
3412 it won't be called. Anyway this definition will do for now. */
3418 #endif /* not HAVE_PERROR */
3424 * Emulate BSD dup2. First close newd if it already exists.
3425 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3426 * until we are, then close the unsuccessful ones.
3433 register int fd
, ret
;
3438 return fcntl (oldd
, F_DUPFD
, newd
);
3445 ret
= dup2 (old
,new);
3451 #endif /* not HAVE_DUP2 */
3454 * Gettimeofday. Simulate as much as possible. Only accurate
3455 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3456 * Only needed when subprocesses are defined.
3461 #ifndef HAVE_GETTIMEOFDAY
3466 gettimeofday (tp
, tzp
)
3468 struct timezone
*tzp
;
3470 extern long time ();
3472 tp
->tv_sec
= time ((long *)0);
3475 tzp
->tz_minuteswest
= -1;
3482 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3485 * This function will go away as soon as all the stubs fixed. (fnf)
3492 printf ("%s not yet implemented\r\n", badfunc
);
3499 /* Directory routines for systems that don't have them. */
3501 #ifdef SYSV_SYSTEM_DIR
3505 #if defined (BROKEN_CLOSEDIR) || !defined (HAVE_CLOSEDIR)
3509 register DIR *dirp
; /* stream from opendir */
3513 rtnval
= emacs_close (dirp
->dd_fd
);
3515 /* Some systems (like Solaris) allocate the buffer and the DIR all
3516 in one block. Why in the world are we freeing this ourselves
3518 #if ! (defined (sun) && defined (USG5_4))
3519 xfree ((char *) dirp
->dd_buf
); /* directory block defined in <dirent.h> */
3521 xfree ((char *) dirp
);
3525 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3526 #endif /* SYSV_SYSTEM_DIR */
3528 #ifdef NONSYSTEM_DIR_LIBRARY
3532 char *filename
; /* name of directory */
3534 register DIR *dirp
; /* -> malloc'ed storage */
3535 register int fd
; /* file descriptor for read */
3536 struct stat sbuf
; /* result of fstat */
3538 fd
= emacs_open (filename
, O_RDONLY
, 0);
3543 if (fstat (fd
, &sbuf
) < 0
3544 || (sbuf
.st_mode
& S_IFMT
) != S_IFDIR
3545 || (dirp
= (DIR *) xmalloc (sizeof (DIR))) == 0)
3549 return 0; /* bad luck today */
3554 dirp
->dd_loc
= dirp
->dd_size
= 0; /* refill needed */
3561 register DIR *dirp
; /* stream from opendir */
3563 emacs_close (dirp
->dd_fd
);
3564 xfree ((char *) dirp
);
3572 ino_t od_ino
; /* inode */
3573 char od_name
[DIRSIZ
]; /* filename */
3575 #endif /* not VMS */
3577 struct direct dir_static
; /* simulated directory contents */
3582 register DIR *dirp
; /* stream from opendir */
3585 register struct olddir
*dp
; /* -> directory data */
3587 register struct dir$_name
*dp
; /* -> directory data */
3588 register struct dir$_version
*dv
; /* -> version data */
3593 if (dirp
->dd_loc
>= dirp
->dd_size
)
3594 dirp
->dd_loc
= dirp
->dd_size
= 0;
3596 if (dirp
->dd_size
== 0 /* refill buffer */
3597 && (dirp
->dd_size
= emacs_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3601 dp
= (struct olddir
*) &dirp
->dd_buf
[dirp
->dd_loc
];
3602 dirp
->dd_loc
+= sizeof (struct olddir
);
3604 if (dp
->od_ino
!= 0) /* not deleted entry */
3606 dir_static
.d_ino
= dp
->od_ino
;
3607 strncpy (dir_static
.d_name
, dp
->od_name
, DIRSIZ
);
3608 dir_static
.d_name
[DIRSIZ
] = '\0';
3609 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3610 dir_static
.d_reclen
= sizeof (struct direct
)
3612 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3613 return &dir_static
; /* -> simulated structure */
3616 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3617 if (dirp
->dd_loc
== 0)
3618 dirp
->dd_loc
= (dp
->dir$b_namecount
&1) ? dp
->dir$b_namecount
+ 1
3619 : dp
->dir$b_namecount
;
3620 dv
= (struct dir$_version
*)&dp
->dir$t_name
[dirp
->dd_loc
];
3621 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3622 dir_static
.d_namlen
= dp
->dir$b_namecount
;
3623 dir_static
.d_reclen
= sizeof (struct direct
)
3625 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3626 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3627 dir_static
.d_name
[dir_static
.d_namlen
] = '\0';
3628 dirp
->dd_loc
= dirp
->dd_size
; /* only one record at a time */
3635 /* readdirver is just like readdir except it returns all versions of a file
3636 as separate entries. */
3641 register DIR *dirp
; /* stream from opendir */
3643 register struct dir$_name
*dp
; /* -> directory data */
3644 register struct dir$_version
*dv
; /* -> version data */
3646 if (dirp
->dd_loc
>= dirp
->dd_size
- sizeof (struct dir$_name
))
3647 dirp
->dd_loc
= dirp
->dd_size
= 0;
3649 if (dirp
->dd_size
== 0 /* refill buffer */
3650 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3653 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3654 if (dirp
->dd_loc
== 0)
3655 dirp
->dd_loc
= (dp
->dir$b_namecount
& 1) ? dp
->dir$b_namecount
+ 1
3656 : dp
->dir$b_namecount
;
3657 dv
= (struct dir$_version
*) &dp
->dir$t_name
[dirp
->dd_loc
];
3658 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3659 sprintf (&dir_static
.d_name
[dp
->dir$b_namecount
], ";%d", dv
->dir$w_version
);
3660 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3661 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3662 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3
3663 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3664 dirp
->dd_loc
= ((char *) (++dv
) - dp
->dir$t_name
);
3670 #endif /* NONSYSTEM_DIR_LIBRARY */
3674 set_file_times (filename
, atime
, mtime
)
3676 EMACS_TIME atime
, mtime
;
3679 struct timeval tv
[2];
3682 return utimes (filename
, tv
);
3683 #else /* not HAVE_UTIMES */
3685 utb
.actime
= EMACS_SECS (atime
);
3686 utb
.modtime
= EMACS_SECS (mtime
);
3687 return utime (filename
, &utb
);
3688 #endif /* not HAVE_UTIMES */
3691 /* mkdir and rmdir functions, for systems which don't have them. */
3695 * Written by Robert Rother, Mariah Corporation, August 1985.
3697 * If you want it, it's yours. All I ask in return is that if you
3698 * figure out how to do this in a Bourne Shell script you send me
3700 * sdcsvax!rmr or rmr@uscd
3702 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3703 * subroutine. 11Mar86; hoptoad!gnu
3705 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3706 * subroutine didn't return EEXIST. It does now.
3712 #ifdef MKDIR_PROTOTYPE
3716 mkdir (dpath
, dmode
)
3721 int cpid
, status
, fd
;
3722 struct stat statbuf
;
3724 if (stat (dpath
, &statbuf
) == 0)
3726 errno
= EEXIST
; /* Stat worked, so it already exists */
3730 /* If stat fails for a reason other than non-existence, return error */
3731 if (errno
!= ENOENT
)
3734 synch_process_alive
= 1;
3735 switch (cpid
= fork ())
3738 case -1: /* Error in fork */
3739 return (-1); /* Errno is set already */
3741 case 0: /* Child process */
3743 * Cheap hack to set mode of new directory. Since this
3744 * child process is going away anyway, we zap its umask.
3745 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3746 * directory. Does anybody care?
3748 status
= umask (0); /* Get current umask */
3749 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
3750 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
3757 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
3758 _exit (-1); /* Can't exec /bin/mkdir */
3760 default: /* Parent process */
3761 wait_for_termination (cpid
);
3764 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3766 errno
= EIO
; /* We don't know why, but */
3767 return -1; /* /bin/mkdir failed */
3772 #endif /* not HAVE_MKDIR */
3779 int cpid
, status
, fd
;
3780 struct stat statbuf
;
3782 if (stat (dpath
, &statbuf
) != 0)
3784 /* Stat just set errno. We don't have to */
3788 synch_process_alive
= 1;
3789 switch (cpid
= fork ())
3792 case -1: /* Error in fork */
3793 return (-1); /* Errno is set already */
3795 case 0: /* Child process */
3796 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
3803 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
3804 _exit (-1); /* Can't exec /bin/rmdir */
3806 default: /* Parent process */
3807 wait_for_termination (cpid
);
3810 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3812 errno
= EIO
; /* We don't know why, but */
3813 return -1; /* /bin/rmdir failed */
3818 #endif /* !HAVE_RMDIR */
3822 /* Functions for VMS */
3824 #include "vms-pwd.h"
3829 /* Return as a string the VMS error string pertaining to STATUS.
3830 Reuses the same static buffer each time it is called. */
3834 int status
; /* VMS status code */
3838 static char buf
[257];
3840 bufadr
[0] = sizeof buf
- 1;
3841 bufadr
[1] = (int) buf
;
3842 if (! (SYS$
GETMSG (status
, &len
, bufadr
, 0x1, 0) & 1))
3843 return "untranslatable VMS error status";
3851 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3852 * not work correctly. (It also doesn't work well in version 2.3.)
3857 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3858 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3862 unsigned short s_buflen
;
3863 unsigned short s_code
;
3865 unsigned short *s_retlenadr
;
3869 #define buflen s.s_buflen
3870 #define code s.s_code
3871 #define bufadr s.s_bufadr
3872 #define retlenadr s.s_retlenadr
3874 #define R_OK 4 /* test for read permission */
3875 #define W_OK 2 /* test for write permission */
3876 #define X_OK 1 /* test for execute (search) permission */
3877 #define F_OK 0 /* test for presence of file */
3880 sys_access (path
, mode
)
3884 static char *user
= NULL
;
3887 /* translate possible directory spec into .DIR file name, so brain-dead
3888 * access can treat the directory like a file. */
3889 if (directory_file_name (path
, dir_fn
))
3893 return access (path
, mode
);
3894 if (user
== NULL
&& (user
= (char *) getenv ("USER")) == NULL
)
3900 unsigned short int dummy
;
3902 static int constant
= ACL$C_FILE
;
3903 DESCRIPTOR (path_desc
, path
);
3904 DESCRIPTOR (user_desc
, user
);
3908 if ((mode
& X_OK
) && ((stat
= access (path
, mode
)) < 0 || mode
== X_OK
))
3911 acces
|= CHP$M_READ
;
3913 acces
|= CHP$M_WRITE
;
3914 itemlst
[0].buflen
= sizeof (int);
3915 itemlst
[0].code
= CHP$_FLAGS
;
3916 itemlst
[0].bufadr
= (char *) &flags
;
3917 itemlst
[0].retlenadr
= &dummy
;
3918 itemlst
[1].buflen
= sizeof (int);
3919 itemlst
[1].code
= CHP$_ACCESS
;
3920 itemlst
[1].bufadr
= (char *) &acces
;
3921 itemlst
[1].retlenadr
= &dummy
;
3922 itemlst
[2].end
= CHP$_END
;
3923 stat
= SYS$
CHECK_ACCESS (&constant
, &path_desc
, &user_desc
, itemlst
);
3924 return stat
== SS$_NORMAL
? 0 : -1;
3928 #else /* not VMS4_4 */
3931 #define ACE$M_WRITE 2
3932 #define ACE$C_KEYID 1
3934 static unsigned short memid
, grpid
;
3935 static unsigned int uic
;
3937 /* Called from init_sys_modes, so it happens not very often
3938 but at least each time Emacs is loaded. */
3940 sys_access_reinit ()
3946 sys_access (filename
, type
)
3952 int status
, size
, i
, typecode
, acl_controlled
;
3953 unsigned int *aclptr
, *aclend
, aclbuf
[60];
3954 union prvdef prvmask
;
3956 /* Get UIC and GRP values for protection checking. */
3959 status
= LIB$
GETJPI (&JPI$_UIC
, 0, 0, &uic
, 0, 0);
3962 memid
= uic
& 0xFFFF;
3966 if (type
!= 2) /* not checking write access */
3967 return access (filename
, type
);
3969 /* Check write protection. */
3971 #define CHECKPRIV(bit) (prvmask.bit)
3972 #define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
3974 /* Find privilege bits */
3975 status
= SYS$
SETPRV (0, 0, 0, prvmask
);
3977 error ("Unable to find privileges: %s", vmserrstr (status
));
3978 if (CHECKPRIV (PRV$V_BYPASS
))
3979 return 0; /* BYPASS enabled */
3981 fab
.fab$b_fac
= FAB$M_GET
;
3982 fab
.fab$l_fna
= filename
;
3983 fab
.fab$b_fns
= strlen (filename
);
3984 fab
.fab$l_xab
= &xab
;
3985 xab
= cc$rms_xabpro
;
3986 xab
.xab$l_aclbuf
= aclbuf
;
3987 xab
.xab$w_aclsiz
= sizeof (aclbuf
);
3988 status
= SYS$
OPEN (&fab
, 0, 0);
3991 SYS$
CLOSE (&fab
, 0, 0);
3992 /* Check system access */
3993 if (CHECKPRIV (PRV$V_SYSPRV
) && WRITABLE (XAB$V_SYS
))
3995 /* Check ACL entries, if any */
3997 if (xab
.xab$w_acllen
> 0)
4000 aclend
= &aclbuf
[xab
.xab$w_acllen
/ 4];
4001 while (*aclptr
&& aclptr
< aclend
)
4003 size
= (*aclptr
& 0xff) / 4;
4004 typecode
= (*aclptr
>> 8) & 0xff;
4005 if (typecode
== ACE$C_KEYID
)
4006 for (i
= size
- 1; i
> 1; i
--)
4007 if (aclptr
[i
] == uic
)
4010 if (aclptr
[1] & ACE$M_WRITE
)
4011 return 0; /* Write access through ACL */
4013 aclptr
= &aclptr
[size
];
4015 if (acl_controlled
) /* ACL specified, prohibits write access */
4018 /* No ACL entries specified, check normal protection */
4019 if (WRITABLE (XAB$V_WLD
)) /* World writable */
4021 if (WRITABLE (XAB$V_GRP
) &&
4022 (unsigned short) (xab
.xab$l_uic
>> 16) == grpid
)
4023 return 0; /* Group writable */
4024 if (WRITABLE (XAB$V_OWN
) &&
4025 (xab
.xab$l_uic
& 0xFFFF) == memid
)
4026 return 0; /* Owner writable */
4028 return -1; /* Not writable */
4030 #endif /* not VMS4_4 */
4033 static char vtbuf
[NAM$C_MAXRSS
+1];
4035 /* translate a vms file spec to a unix path */
4037 sys_translate_vms (vfile
)
4048 /* leading device or logical name is a root directory */
4049 if (p
= strchr (vfile
, ':'))
4058 if (*p
== '[' || *p
== '<')
4060 while (*++vfile
!= *p
+ 2)
4064 if (vfile
[-1] == *p
)
4087 static char utbuf
[NAM$C_MAXRSS
+1];
4089 /* translate a unix path to a VMS file spec */
4091 sys_translate_unix (ufile
)
4114 if (index (&ufile
[1], '/'))
4121 if (index (&ufile
[1], '/'))
4128 if (strncmp (ufile
, "./", 2) == 0)
4135 ufile
++; /* skip the dot */
4136 if (index (&ufile
[1], '/'))
4141 else if (strncmp (ufile
, "../", 3) == 0)
4149 ufile
+= 2; /* skip the dots */
4150 if (index (&ufile
[1], '/'))
4175 extern char *getcwd ();
4177 #define MAXPATHLEN 1024
4179 ptr
= xmalloc (MAXPATHLEN
);
4180 val
= getcwd (ptr
, MAXPATHLEN
);
4186 strcpy (pathname
, ptr
);
4195 long item_code
= JPI$_OWNER
;
4196 unsigned long parent_id
;
4199 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &parent_id
)) & 1) == 0)
4202 vaxc$errno
= status
;
4212 return (getgid () << 16) | getuid ();
4217 sys_read (fildes
, buf
, nbyte
)
4222 return read (fildes
, buf
, (nbyte
< MAXIOSIZE
? nbyte
: MAXIOSIZE
));
4227 sys_write (fildes
, buf
, nbyte
)
4232 register int nwrote
, rtnval
= 0;
4234 while (nbyte
> MAXIOSIZE
&& (nwrote
= write (fildes
, buf
, MAXIOSIZE
)) > 0) {
4240 return rtnval
? rtnval
: -1;
4241 if ((nwrote
= write (fildes
, buf
, nbyte
)) < 0)
4242 return rtnval
? rtnval
: -1;
4243 return (rtnval
+ nwrote
);
4248 * VAX/VMS VAX C RTL really loses. It insists that records
4249 * end with a newline (carriage return) character, and if they
4250 * don't it adds one (nice of it isn't it!)
4252 * Thus we do this stupidity below.
4257 sys_write (fildes
, buf
, nbytes
)
4260 unsigned int nbytes
;
4267 fstat (fildes
, &st
);
4273 /* Handle fixed-length files with carriage control. */
4274 if (st
.st_fab_rfm
== FAB$C_FIX
4275 && ((st
.st_fab_rat
& (FAB$M_FTN
| FAB$M_CR
)) != 0))
4277 len
= st
.st_fab_mrs
;
4278 retval
= write (fildes
, p
, min (len
, nbytes
));
4281 retval
++; /* This skips the implied carriage control */
4285 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4286 while (*e
!= '\n' && e
> p
) e
--;
4287 if (p
== e
) /* Ok.. so here we add a newline... sigh. */
4288 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4290 retval
= write (fildes
, p
, len
);
4301 /* Create file NEW copying its attributes from file OLD. If
4302 OLD is 0 or does not exist, create based on the value of
4305 /* Protection value the file should ultimately have.
4306 Set by create_copy_attrs, and use by rename_sansversions. */
4307 static unsigned short int fab_final_pro
;
4310 creat_copy_attrs (old
, new)
4313 struct FAB fab
= cc$rms_fab
;
4314 struct XABPRO xabpro
;
4315 char aclbuf
[256]; /* Choice of size is arbitrary. See below. */
4316 extern int vms_stmlf_recfm
;
4320 fab
.fab$b_fac
= FAB$M_GET
;
4321 fab
.fab$l_fna
= old
;
4322 fab
.fab$b_fns
= strlen (old
);
4323 fab
.fab$l_xab
= (char *) &xabpro
;
4324 xabpro
= cc$rms_xabpro
;
4325 xabpro
.xab$l_aclbuf
= aclbuf
;
4326 xabpro
.xab$w_aclsiz
= sizeof aclbuf
;
4327 /* Call $OPEN to fill in the fab & xabpro fields. */
4328 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4330 SYS$
CLOSE (&fab
, 0, 0);
4331 fab
.fab$l_alq
= 0; /* zero the allocation quantity */
4332 if (xabpro
.xab$w_acllen
> 0)
4334 if (xabpro
.xab$w_acllen
> sizeof aclbuf
)
4335 /* If the acl buffer was too short, redo open with longer one.
4336 Wouldn't need to do this if there were some system imposed
4337 limit on the size of an ACL, but I can't find any such. */
4339 xabpro
.xab$l_aclbuf
= (char *) alloca (xabpro
.xab$w_acllen
);
4340 xabpro
.xab$w_aclsiz
= xabpro
.xab$w_acllen
;
4341 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4342 SYS$
CLOSE (&fab
, 0, 0);
4348 xabpro
.xab$l_aclbuf
= 0;
4353 fab
.fab$l_fna
= new;
4354 fab
.fab$b_fns
= strlen (new);
4358 fab
.fab$b_rfm
= vms_stmlf_recfm
? FAB$C_STMLF
: FAB$C_VAR
;
4359 fab
.fab$b_rat
= FAB$M_CR
;
4362 /* Set the file protections such that we will be able to manipulate
4363 this file. Once we are done writing and renaming it, we will set
4364 the protections back. */
4366 fab_final_pro
= xabpro
.xab$w_pro
;
4368 SYS$
SETDFPROT (0, &fab_final_pro
);
4369 xabpro
.xab$w_pro
&= 0xff0f; /* set O:rewd for now. This is set back later. */
4371 /* Create the new file with either default attrs or attrs copied
4373 if (!(SYS$
CREATE (&fab
, 0, 0) & 1))
4375 SYS$
CLOSE (&fab
, 0, 0);
4376 /* As this is a "replacement" for creat, return a file descriptor
4377 opened for writing. */
4378 return open (new, O_WRONLY
);
4383 #include <varargs.h>
4386 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4391 sys_creat (va_alist
)
4394 va_list list_incrementer
;
4397 int rfd
; /* related file descriptor */
4398 int fd
; /* Our new file descriptor */
4405 extern int vms_stmlf_recfm
;
4408 va_start (list_incrementer
);
4409 name
= va_arg (list_incrementer
, char *);
4410 mode
= va_arg (list_incrementer
, int);
4412 rfd
= va_arg (list_incrementer
, int);
4413 va_end (list_incrementer
);
4416 /* Use information from the related file descriptor to set record
4417 format of the newly created file. */
4418 fstat (rfd
, &st_buf
);
4419 switch (st_buf
.st_fab_rfm
)
4422 strcpy (rfm
, "rfm = fix");
4423 sprintf (mrs
, "mrs = %d", st_buf
.st_fab_mrs
);
4424 strcpy (rat
, "rat = ");
4425 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4427 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4428 strcat (rat
, "ftn");
4429 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4430 strcat (rat
, "prn");
4431 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4432 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4433 strcat (rat
, ", blk");
4435 strcat (rat
, "blk");
4436 return creat (name
, 0, rfm
, rat
, mrs
);
4439 strcpy (rfm
, "rfm = vfc");
4440 sprintf (fsz
, "fsz = %d", st_buf
.st_fab_fsz
);
4441 strcpy (rat
, "rat = ");
4442 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4444 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4445 strcat (rat
, "ftn");
4446 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4447 strcat (rat
, "prn");
4448 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4449 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4450 strcat (rat
, ", blk");
4452 strcat (rat
, "blk");
4453 return creat (name
, 0, rfm
, rat
, fsz
);
4456 strcpy (rfm
, "rfm = stm");
4460 strcpy (rfm
, "rfm = stmcr");
4464 strcpy (rfm
, "rfm = stmlf");
4468 strcpy (rfm
, "rfm = udf");
4472 strcpy (rfm
, "rfm = var");
4475 strcpy (rat
, "rat = ");
4476 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4478 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4479 strcat (rat
, "ftn");
4480 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4481 strcat (rat
, "prn");
4482 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4483 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4484 strcat (rat
, ", blk");
4486 strcat (rat
, "blk");
4490 strcpy (rfm
, vms_stmlf_recfm
? "rfm = stmlf" : "rfm=var");
4491 strcpy (rat
, "rat=cr");
4493 /* Until the VAX C RTL fixes the many bugs with modes, always use
4494 mode 0 to get the user's default protection. */
4495 fd
= creat (name
, 0, rfm
, rat
);
4496 if (fd
< 0 && errno
== EEXIST
)
4498 if (unlink (name
) < 0)
4499 report_file_error ("delete", build_string (name
));
4500 fd
= creat (name
, 0, rfm
, rat
);
4506 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4508 sys_fwrite (ptr
, size
, num
, fp
)
4509 register char * ptr
;
4512 register int tot
= num
* size
;
4520 * The VMS C library routine creat actually creates a new version of an
4521 * existing file rather than truncating the old version. There are times
4522 * when this is not the desired behavior, for instance, when writing an
4523 * auto save file (you only want one version), or when you don't have
4524 * write permission in the directory containing the file (but the file
4525 * itself is writable). Hence this routine, which is equivalent to
4526 * "close (creat (fn, 0));" on Unix if fn already exists.
4532 struct FAB xfab
= cc$rms_fab
;
4533 struct RAB xrab
= cc$rms_rab
;
4536 xfab
.fab$l_fop
= FAB$M_TEF
; /* free allocated but unused blocks on close */
4537 xfab
.fab$b_fac
= FAB$M_TRN
| FAB$M_GET
; /* allow truncate and get access */
4538 xfab
.fab$b_shr
= FAB$M_NIL
; /* allow no sharing - file must be locked */
4539 xfab
.fab$l_fna
= fn
;
4540 xfab
.fab$b_fns
= strlen (fn
);
4541 xfab
.fab$l_dna
= ";0"; /* default to latest version of the file */
4543 xrab
.rab$l_fab
= &xfab
;
4545 /* This gibberish opens the file, positions to the first record, and
4546 deletes all records from there until the end of file. */
4547 if ((SYS$
OPEN (&xfab
) & 01) == 01)
4549 if ((SYS$
CONNECT (&xrab
) & 01) == 01 &&
4550 (SYS$
FIND (&xrab
) & 01) == 01 &&
4551 (SYS$
TRUNCATE (&xrab
) & 01) == 01)
4562 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4563 SYSPRV or a readable SYSUAF.DAT. */
4569 * Routine to read the VMS User Authorization File and return
4570 * a specific user's record.
4573 static struct UAF retuaf
;
4576 get_uaf_name (uname
)
4583 uaf_fab
= cc$rms_fab
;
4584 uaf_rab
= cc$rms_rab
;
4585 /* initialize fab fields */
4586 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4587 uaf_fab
.fab$b_fns
= 21;
4588 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4589 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4590 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4591 /* initialize rab fields */
4592 uaf_rab
.rab$l_fab
= &uaf_fab
;
4593 /* open the User Authorization File */
4594 status
= SYS$
OPEN (&uaf_fab
);
4598 vaxc$errno
= status
;
4601 status
= SYS$
CONNECT (&uaf_rab
);
4605 vaxc$errno
= status
;
4608 /* read the requested record - index is in uname */
4609 uaf_rab
.rab$l_kbf
= uname
;
4610 uaf_rab
.rab$b_ksz
= strlen (uname
);
4611 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4612 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4613 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4614 status
= SYS$
GET (&uaf_rab
);
4618 vaxc$errno
= status
;
4621 /* close the User Authorization File */
4622 status
= SYS$
DISCONNECT (&uaf_rab
);
4626 vaxc$errno
= status
;
4629 status
= SYS$
CLOSE (&uaf_fab
);
4633 vaxc$errno
= status
;
4647 uaf_fab
= cc$rms_fab
;
4648 uaf_rab
= cc$rms_rab
;
4649 /* initialize fab fields */
4650 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4651 uaf_fab
.fab$b_fns
= 21;
4652 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4653 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4654 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4655 /* initialize rab fields */
4656 uaf_rab
.rab$l_fab
= &uaf_fab
;
4657 /* open the User Authorization File */
4658 status
= SYS$
OPEN (&uaf_fab
);
4662 vaxc$errno
= status
;
4665 status
= SYS$
CONNECT (&uaf_rab
);
4669 vaxc$errno
= status
;
4672 /* read the requested record - index is in uic */
4673 uaf_rab
.rab$b_krf
= 1; /* 1st alternate key */
4674 uaf_rab
.rab$l_kbf
= (char *) &uic
;
4675 uaf_rab
.rab$b_ksz
= sizeof uic
;
4676 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4677 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4678 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4679 status
= SYS$
GET (&uaf_rab
);
4683 vaxc$errno
= status
;
4686 /* close the User Authorization File */
4687 status
= SYS$
DISCONNECT (&uaf_rab
);
4691 vaxc$errno
= status
;
4694 status
= SYS$
CLOSE (&uaf_fab
);
4698 vaxc$errno
= status
;
4704 static struct passwd retpw
;
4712 /* copy these out first because if the username is 32 chars, the next
4713 section will overwrite the first byte of the UIC */
4714 retpw
.pw_uid
= up
->uaf$w_mem
;
4715 retpw
.pw_gid
= up
->uaf$w_grp
;
4717 /* I suppose this is not the best style, to possibly overwrite one
4718 byte beyond the end of the field, but what the heck... */
4719 ptr
= &up
->uaf$t_username
[UAF$S_USERNAME
];
4720 while (ptr
[-1] == ' ')
4723 strcpy (retpw
.pw_name
, up
->uaf$t_username
);
4725 /* the rest of these are counted ascii strings */
4726 strncpy (retpw
.pw_gecos
, &up
->uaf$t_owner
[1], up
->uaf$t_owner
[0]);
4727 retpw
.pw_gecos
[up
->uaf$t_owner
[0]] = '\0';
4728 strncpy (retpw
.pw_dir
, &up
->uaf$t_defdev
[1], up
->uaf$t_defdev
[0]);
4729 retpw
.pw_dir
[up
->uaf$t_defdev
[0]] = '\0';
4730 strncat (retpw
.pw_dir
, &up
->uaf$t_defdir
[1], up
->uaf$t_defdir
[0]);
4731 retpw
.pw_dir
[up
->uaf$t_defdev
[0] + up
->uaf$t_defdir
[0]] = '\0';
4732 strncpy (retpw
.pw_shell
, &up
->uaf$t_defcli
[1], up
->uaf$t_defcli
[0]);
4733 retpw
.pw_shell
[up
->uaf$t_defcli
[0]] = '\0';
4737 #else /* not READ_SYSUAF */
4738 static struct passwd retpw
;
4739 #endif /* not READ_SYSUAF */
4750 unsigned char * full
;
4751 #endif /* READ_SYSUAF */
4756 if ('a' <= *ptr
&& *ptr
<= 'z')
4761 if (!(up
= get_uaf_name (name
)))
4763 return cnv_uaf_pw (up
);
4765 if (strcmp (name
, getenv ("USER")) == 0)
4767 retpw
.pw_uid
= getuid ();
4768 retpw
.pw_gid
= getgid ();
4769 strcpy (retpw
.pw_name
, name
);
4770 if (full
= egetenv ("FULLNAME"))
4771 strcpy (retpw
.pw_gecos
, full
);
4773 *retpw
.pw_gecos
= '\0';
4774 strcpy (retpw
.pw_dir
, egetenv ("HOME"));
4775 *retpw
.pw_shell
= '\0';
4780 #endif /* not READ_SYSUAF */
4790 if (!(up
= get_uaf_uic (uid
)))
4792 return cnv_uaf_pw (up
);
4794 if (uid
== sys_getuid ())
4795 return getpwnam (egetenv ("USER"));
4798 #endif /* not READ_SYSUAF */
4801 /* return total address space available to the current process. This is
4802 the sum of the current p0 size, p1 size and free page table entries
4808 unsigned long free_pages
;
4809 unsigned long frep0va
;
4810 unsigned long frep1va
;
4813 item_code
= JPI$_FREPTECNT
;
4814 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &free_pages
)) & 1) == 0)
4817 vaxc$errno
= status
;
4822 item_code
= JPI$_FREP0VA
;
4823 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep0va
)) & 1) == 0)
4826 vaxc$errno
= status
;
4829 item_code
= JPI$_FREP1VA
;
4830 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep1va
)) & 1) == 0)
4833 vaxc$errno
= status
;
4837 return free_pages
+ frep0va
+ (0x7fffffff - frep1va
);
4841 define_logical_name (varname
, string
)
4845 struct dsc$descriptor_s strdsc
=
4846 {strlen (string
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, string
};
4847 struct dsc$descriptor_s envdsc
=
4848 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4849 struct dsc$descriptor_s lnmdsc
=
4850 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4852 return LIB$
SET_LOGICAL (&envdsc
, &strdsc
, &lnmdsc
, 0, 0);
4856 delete_logical_name (varname
)
4859 struct dsc$descriptor_s envdsc
=
4860 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4861 struct dsc$descriptor_s lnmdsc
=
4862 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4864 return LIB$
DELETE_LOGICAL (&envdsc
, &lnmdsc
);
4882 error ("execvp system call not implemented");
4891 struct FAB from_fab
= cc$rms_fab
, to_fab
= cc$rms_fab
;
4892 struct NAM from_nam
= cc$rms_nam
, to_nam
= cc$rms_nam
;
4893 char from_esn
[NAM$C_MAXRSS
];
4894 char to_esn
[NAM$C_MAXRSS
];
4896 from_fab
.fab$l_fna
= from
;
4897 from_fab
.fab$b_fns
= strlen (from
);
4898 from_fab
.fab$l_nam
= &from_nam
;
4899 from_fab
.fab$l_fop
= FAB$M_NAM
;
4901 from_nam
.nam$l_esa
= from_esn
;
4902 from_nam
.nam$b_ess
= sizeof from_esn
;
4904 to_fab
.fab$l_fna
= to
;
4905 to_fab
.fab$b_fns
= strlen (to
);
4906 to_fab
.fab$l_nam
= &to_nam
;
4907 to_fab
.fab$l_fop
= FAB$M_NAM
;
4909 to_nam
.nam$l_esa
= to_esn
;
4910 to_nam
.nam$b_ess
= sizeof to_esn
;
4912 status
= SYS$
RENAME (&from_fab
, 0, 0, &to_fab
);
4918 if (status
== RMS$_DEV
)
4922 vaxc$errno
= status
;
4927 /* This function renames a file like `rename', but it strips
4928 the version number from the "to" filename, such that the "to" file is
4929 will always be a new version. It also sets the file protection once it is
4930 finished. The protection that we will use is stored in fab_final_pro,
4931 and was set when we did a creat_copy_attrs to create the file that we
4934 We could use the chmod function, but Eunichs uses 3 bits per user category
4935 to describe the protection, and VMS uses 4 (write and delete are separate
4936 bits). To maintain portability, the VMS implementation of `chmod' wires
4937 the W and D bits together. */
4940 static struct fibdef fib
; /* We need this initialized to zero */
4941 char vms_file_written
[NAM$C_MAXRSS
];
4944 rename_sans_version (from
,to
)
4951 struct FAB to_fab
= cc$rms_fab
;
4952 struct NAM to_nam
= cc$rms_nam
;
4953 struct dsc$descriptor fib_d
={sizeof (fib
),0,0,(char*) &fib
};
4954 struct dsc$descriptor fib_attr
[2]
4955 = {{sizeof (fab_final_pro
),ATR$C_FPRO
,0,(char*) &fab_final_pro
},{0,0,0,0}};
4956 char to_esn
[NAM$C_MAXRSS
];
4958 $
DESCRIPTOR (disk
,to_esn
);
4960 to_fab
.fab$l_fna
= to
;
4961 to_fab
.fab$b_fns
= strlen (to
);
4962 to_fab
.fab$l_nam
= &to_nam
;
4963 to_fab
.fab$l_fop
= FAB$M_NAM
;
4965 to_nam
.nam$l_esa
= to_esn
;
4966 to_nam
.nam$b_ess
= sizeof to_esn
;
4968 status
= SYS$
PARSE (&to_fab
, 0, 0); /* figure out the full file name */
4970 if (to_nam
.nam$l_fnb
&& NAM$M_EXP_VER
)
4971 *(to_nam
.nam$l_ver
) = '\0';
4973 stat
= rename (from
, to_esn
);
4977 strcpy (vms_file_written
, to_esn
);
4979 to_fab
.fab$l_fna
= vms_file_written
; /* this points to the versionless name */
4980 to_fab
.fab$b_fns
= strlen (vms_file_written
);
4982 /* Now set the file protection to the correct value */
4983 SYS$
OPEN (&to_fab
, 0, 0); /* This fills in the nam$w_fid fields */
4985 /* Copy these fields into the fib */
4986 fib
.fib$r_fid_overlay
.fib$w_fid
[0] = to_nam
.nam$w_fid
[0];
4987 fib
.fib$r_fid_overlay
.fib$w_fid
[1] = to_nam
.nam$w_fid
[1];
4988 fib
.fib$r_fid_overlay
.fib$w_fid
[2] = to_nam
.nam$w_fid
[2];
4990 SYS$
CLOSE (&to_fab
, 0, 0);
4992 stat
= SYS$
ASSIGN (&disk
, &chan
, 0, 0); /* open a channel to the disk */
4995 stat
= SYS$
QIOW (0, chan
, IO$_MODIFY
, iosb
, 0, 0, &fib_d
,
4996 0, 0, 0, &fib_attr
, 0);
4999 stat
= SYS$
DASSGN (chan
);
5002 strcpy (vms_file_written
, to_esn
); /* We will write this to the terminal*/
5013 unsigned short fid
[3];
5014 char esa
[NAM$C_MAXRSS
];
5017 fab
.fab$l_fop
= FAB$M_OFP
;
5018 fab
.fab$l_fna
= file
;
5019 fab
.fab$b_fns
= strlen (file
);
5020 fab
.fab$l_nam
= &nam
;
5023 nam
.nam$l_esa
= esa
;
5024 nam
.nam$b_ess
= NAM$C_MAXRSS
;
5026 status
= SYS$
PARSE (&fab
);
5027 if ((status
& 1) == 0)
5030 vaxc$errno
= status
;
5033 status
= SYS$
SEARCH (&fab
);
5034 if ((status
& 1) == 0)
5037 vaxc$errno
= status
;
5041 fid
[0] = nam
.nam$w_fid
[0];
5042 fid
[1] = nam
.nam$w_fid
[1];
5043 fid
[2] = nam
.nam$w_fid
[2];
5045 fab
.fab$l_fna
= new;
5046 fab
.fab$b_fns
= strlen (new);
5048 status
= SYS$
PARSE (&fab
);
5049 if ((status
& 1) == 0)
5052 vaxc$errno
= status
;
5056 nam
.nam$w_fid
[0] = fid
[0];
5057 nam
.nam$w_fid
[1] = fid
[1];
5058 nam
.nam$w_fid
[2] = fid
[2];
5060 nam
.nam$l_esa
= nam
.nam$l_name
;
5061 nam
.nam$b_esl
= nam
.nam$b_name
+ nam
.nam$b_type
+ nam
.nam$b_ver
;
5063 status
= SYS$
ENTER (&fab
);
5064 if ((status
& 1) == 0)
5067 vaxc$errno
= status
;
5078 printf ("%s not yet implemented\r\n", badfunc
);
5086 /* Arrange to return a range centered on zero. */
5087 return rand () - (1 << 30);
5099 /* Called from init_sys_modes. */
5105 /* If we're not on an HFT we shouldn't do any of this. We determine
5106 if we are on an HFT by trying to get an HFT error code. If this
5107 call fails, we're not on an HFT. */
5109 if (ioctl (0, HFQERROR
, &junk
) < 0)
5111 #else /* not IBMR2AIX */
5112 if (ioctl (0, HFQEIO
, 0) < 0)
5114 #endif /* not IBMR2AIX */
5116 /* On AIX the default hft keyboard mapping uses backspace rather than delete
5117 as the rubout key's ASCII code. Here this is changed. The bug is that
5118 there's no way to determine the old mapping, so in reset_sys_modes
5119 we need to assume that the normal map had been present. Of course, this
5120 code also doesn't help if on a terminal emulator which doesn't understand
5124 struct hfkeymap keymap
;
5126 buf
.hf_bufp
= (char *)&keymap
;
5127 buf
.hf_buflen
= sizeof (keymap
);
5128 keymap
.hf_nkeys
= 2;
5129 keymap
.hfkey
[0].hf_kpos
= 15;
5130 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5132 keymap
.hfkey
[0].hf_keyidh
= '<';
5133 #else /* not IBMR2AIX */
5134 keymap
.hfkey
[0].hf_page
= '<';
5135 #endif /* not IBMR2AIX */
5136 keymap
.hfkey
[0].hf_char
= 127;
5137 keymap
.hfkey
[1].hf_kpos
= 15;
5138 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5140 keymap
.hfkey
[1].hf_keyidh
= '<';
5141 #else /* not IBMR2AIX */
5142 keymap
.hfkey
[1].hf_page
= '<';
5143 #endif /* not IBMR2AIX */
5144 keymap
.hfkey
[1].hf_char
= 127;
5145 hftctl (0, HFSKBD
, &buf
);
5147 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
5149 line_ins_del_ok
= char_ins_del_ok
= 0;
5152 /* Reset the rubout key to backspace. */
5158 struct hfkeymap keymap
;
5162 if (ioctl (0, HFQERROR
, &junk
) < 0)
5164 #else /* not IBMR2AIX */
5165 if (ioctl (0, HFQEIO
, 0) < 0)
5167 #endif /* not IBMR2AIX */
5169 buf
.hf_bufp
= (char *)&keymap
;
5170 buf
.hf_buflen
= sizeof (keymap
);
5171 keymap
.hf_nkeys
= 2;
5172 keymap
.hfkey
[0].hf_kpos
= 15;
5173 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5175 keymap
.hfkey
[0].hf_keyidh
= '<';
5176 #else /* not IBMR2AIX */
5177 keymap
.hfkey
[0].hf_page
= '<';
5178 #endif /* not IBMR2AIX */
5179 keymap
.hfkey
[0].hf_char
= 8;
5180 keymap
.hfkey
[1].hf_kpos
= 15;
5181 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5183 keymap
.hfkey
[1].hf_keyidh
= '<';
5184 #else /* not IBMR2AIX */
5185 keymap
.hfkey
[1].hf_page
= '<';
5186 #endif /* not IBMR2AIX */
5187 keymap
.hfkey
[1].hf_char
= 8;
5188 hftctl (0, HFSKBD
, &buf
);
5195 /* These are included on Sunos 4.1 when we do not use shared libraries.
5196 X11 libraries may refer to these functions but (we hope) do not
5197 actually call them. */
5217 #endif /* USE_DL_STUBS */
5226 register int length
;
5230 long max_str
= 65535;
5232 while (length
> max_str
) {
5233 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5238 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5240 while (length
-- > 0)
5242 #endif /* not VMS */
5245 #endif /* no bzero */
5246 #endif /* BSTRING */
5248 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5251 /* Saying `void' requires a declaration, above, where bcopy is used
5252 and that declaration causes pain for systems where bcopy is a macro. */
5253 bcopy (b1
, b2
, length
)
5256 register int length
;
5259 long max_str
= 65535;
5261 while (length
> max_str
) {
5262 (void) LIB$
MOVC3 (&max_str
, b1
, b2
);
5268 (void) LIB$
MOVC3 (&length
, b1
, b2
);
5270 while (length
-- > 0)
5272 #endif /* not VMS */
5274 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5279 bcmp (b1
, b2
, length
) /* This could be a macro! */
5282 register int length
;
5285 struct dsc$descriptor_s src1
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b1
};
5286 struct dsc$descriptor_s src2
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b2
};
5288 return STR$
COMPARE (&src1
, &src2
);
5290 while (length
-- > 0)
5295 #endif /* not VMS */
5297 #endif /* no bcmp */
5298 #endif /* not BSTRING */
5300 #ifndef HAVE_STRSIGNAL
5307 if (0 <= code
&& code
< NSIG
)
5310 signame
= sys_errlist
[code
];
5312 /* Cast to suppress warning if the table has const char *. */
5313 signame
= (char *) sys_siglist
[code
];
5319 #endif /* HAVE_STRSIGNAL */