1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
27 #include "blockinput.h"
30 #define min(x,y) ((x) > (y) ? (y) : (x))
32 /* In this file, open, read and write refer to the system calls,
33 not our sugared interfaces sys_open, sys_read and sys_write.
34 Contrariwise, for systems where we use the system calls directly,
35 define sys_read, etc. here as aliases for them. */
38 #define sys_write write
39 #endif /* `read' is not a macro */
49 #endif /* not WINDOWSNT */
52 #define sys_close close
59 #else /* `open' is a macro */
61 #endif /* `open' is a macro */
63 /* Does anyone other than VMS need this? */
65 #define sys_fwrite fwrite
75 #include <sys/types.h>
79 /* Get _POSIX_VDISABLE, if it is available. */
84 /* Get SI_SRPC_DOMAIN, if it is available. */
85 #ifdef HAVE_SYS_SYSTEMINFO_H
86 #include <sys/systeminfo.h>
89 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
93 #include <sys/param.h>
97 extern unsigned start
__asm__ ("start");
115 #include <sys/file.h>
123 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
127 #ifdef BSD_SYSTEM /* avoid writing defined (BSD_SYSTEM) || defined (USG)
128 because the vms compiler doesn't grok `defined' */
136 #endif /* not 4.1 bsd */
139 #include <sys/ioctl.h>
145 #ifdef BROKEN_TIOCGWINSZ
150 #if defined(USG) || defined(DGUX)
151 #include <sys/utsname.h>
153 #ifndef MEMORY_IN_STRING_H
156 #if defined (TIOCGWINSZ) || defined (ISC4_0)
158 #include <sys/sioctl.h>
161 #include <sys/stream.h>
162 #include <sys/ptem.h>
164 #endif /* TIOCGWINSZ or ISC4_0 */
165 #endif /* USG or DGUX */
167 extern int quit_char
;
171 #include "termhooks.h"
172 #include "termchar.h"
173 #include "termopts.h"
174 #include "dispextern.h"
179 /* In process.h which conflicts with the local copy. */
181 int _CRTAPI1
_spawnlp (int, const char *, const char *, ...);
182 int _CRTAPI1
_getpid (void);
185 #ifdef NONSYSTEM_DIR_LIBRARY
187 #endif /* NONSYSTEM_DIR_LIBRARY */
189 #include "syssignal.h"
196 #ifndef HAVE_STRUCT_UTIMBUF
197 /* We want to use utime rather than utimes, but we couldn't find the
198 structure declaration. We'll use the traditional one. */
206 #ifndef VFORK_RETURN_TYPE
207 #define VFORK_RETURN_TYPE int
210 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
216 #define LNOFLSH 0100000
219 static int baud_convert
[] =
224 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
225 1800, 2400, 4800, 9600, 19200, 38400
229 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
232 #if defined (HAVE_TERMIOS_H) && defined (LINUX)
234 /* HJL's version of libc is said to need this on the Alpha.
235 On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
236 extern speed_t ospeed
;
242 /* The file descriptor for Emacs's input terminal.
243 Under Unix, this is normally zero except when using X;
244 under VMS, we place the input channel number here. */
247 void croak
P_ ((char *));
255 /* Specify a different file descriptor for further input operations. */
264 /* Discard pending input on descriptor input_fd. */
270 struct emacs_tty buf
;
275 /* Discarding input is not safe when the input could contain
276 replies from the X server. So don't do it. */
277 if (read_socket_hook
)
282 SYS$
QIOW (0, input_fd
, IO$_READVBLK
|IO$M_PURGE
, input_iosb
, 0, 0,
283 &buf
.main
, 0, 0, terminator_mask
, 0, 0);
289 ioctl (input_fd
, TIOCFLUSH
, &zero
);
291 #else /* not Apollo */
292 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
293 while (dos_keyread () != -1)
295 #else /* not MSDOS */
296 EMACS_GET_TTY (input_fd
, &buf
);
297 EMACS_SET_TTY (input_fd
, &buf
, 0);
298 #endif /* not MSDOS */
299 #endif /* not Apollo */
301 #endif /* not WINDOWSNT */
306 /* Arrange for character C to be read as the next input from
313 if (read_socket_hook
)
316 /* Should perhaps error if in batch mode */
318 ioctl (input_fd
, TIOCSTI
, &c
);
319 #else /* no TIOCSTI */
320 error ("Cannot stuff terminal input characters in this version of Unix");
321 #endif /* no TIOCSTI */
333 #ifdef INIT_BAUD_RATE
338 #else /* not DOS_NT */
342 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &sg
, 0, 0,
343 &sg
.class, 12, 0, 0, 0, 0 );
344 ospeed
= sg
.xmit_baud
;
350 tcgetattr (input_fd
, &sg
);
351 ospeed
= cfgetospeed (&sg
);
352 #if defined (USE_GETOBAUD) && defined (getobaud)
353 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
355 ospeed
= getobaud (sg
.c_cflag
);
357 #else /* neither VMS nor TERMIOS */
363 tcgetattr (input_fd
, &sg
);
365 ioctl (input_fd
, TCGETA
, &sg
);
367 ospeed
= sg
.c_cflag
& CBAUD
;
368 #else /* neither VMS nor TERMIOS nor TERMIO */
371 sg
.sg_ospeed
= B9600
;
372 if (ioctl (input_fd
, TIOCGETP
, &sg
) < 0)
374 ospeed
= sg
.sg_ospeed
;
375 #endif /* not HAVE_TERMIO */
376 #endif /* not HAVE_TERMIOS */
378 #endif /* not DOS_NT */
379 #endif /* not INIT_BAUD_RATE */
382 baud_rate
= (ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
383 ? baud_convert
[ospeed
] : 9600);
390 set_exclusive_use (fd
)
394 ioctl (fd
, FIOCLEX
, 0);
396 /* Ok to do nothing if this feature does not exist */
401 wait_without_blocking ()
404 wait3 (0, WNOHANG
| WUNTRACED
, 0);
406 croak ("wait_without_blocking");
408 synch_process_alive
= 0;
411 #endif /* not subprocesses */
413 int wait_debugging
; /* Set nonzero to make following function work under dbx
414 (at least for bsd). */
417 wait_for_termination_signal ()
420 /* Wait for subprocess with process id `pid' to terminate and
421 make sure it will get eliminated (not remain forever as a zombie) */
424 wait_for_termination (pid
)
433 status
= SYS$
FORCEX (&pid
, 0, 0);
436 #if defined (BSD_SYSTEM) || (defined (HPUX) && !defined (HPUX_5))
437 /* Note that kill returns -1 even if the process is just a zombie now.
438 But inevitably a SIGCHLD interrupt should be generated
439 and child_sig will do wait3 and make the process go away. */
440 /* There is some indication that there is a bug involved with
441 termination of subprocesses, perhaps involving a kernel bug too,
442 but no idea what it is. Just as a hunch we signal SIGCHLD to see
443 if that causes the problem to go away or get worse. */
444 sigsetmask (sigmask (SIGCHLD
));
445 if (0 > kill (pid
, 0))
447 sigsetmask (SIGEMPTYMASK
);
448 kill (getpid (), SIGCHLD
);
454 sigpause (SIGEMPTYMASK
);
455 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
456 #if defined (UNIPLUS)
457 if (0 > kill (pid
, 0))
460 #else /* neither BSD_SYSTEM nor UNIPLUS: random sysV */
461 #ifdef POSIX_SIGNALS /* would this work for LINUX as well? */
462 sigblock (sigmask (SIGCHLD
));
463 if (0 > kill (pid
, 0))
465 sigunblock (sigmask (SIGCHLD
));
468 sigpause (SIGEMPTYMASK
);
469 #else /* not POSIX_SIGNALS */
470 #ifdef HAVE_SYSV_SIGPAUSE
472 if (0 > kill (pid
, 0))
478 #else /* not HAVE_SYSV_SIGPAUSE */
482 #else /* not WINDOWSNT */
483 if (0 > kill (pid
, 0))
485 /* Using sleep instead of pause avoids timing error.
486 If the inferior dies just before the sleep,
487 we lose just one second. */
489 #endif /* not WINDOWSNT */
490 #endif /* not HAVE_SYSV_SIGPAUSE */
491 #endif /* not POSIX_SIGNALS */
492 #endif /* not UNIPLUS */
493 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
495 #else /* not subprocesses */
498 #else /* not __DJGPP__ > 1 */
500 if (kill (pid
, 0) < 0)
506 if (status
== pid
|| status
== -1)
509 #endif /* not __DJGPP__ > 1*/
510 #endif /* not subprocesses */
517 * flush any pending output
518 * (may flush input as well; it does not matter the way we use it)
522 flush_pending_output (channel
)
526 /* If we try this, we get hit with SIGTTIN, because
527 the child's tty belongs to the child's pgrp. */
530 ioctl (channel
, TCFLSH
, 1);
534 /* 3rd arg should be ignored
535 but some 4.2 kernels actually want the address of an int
536 and nonzero means something different. */
537 ioctl (channel
, TIOCFLUSH
, &zero
);
544 /* Set up the terminal at the other end of a pseudo-terminal that
545 we will be controlling an inferior through.
546 It should not echo or do line-editing, since that is done
547 in Emacs. No padding needed for insertion into an Emacs buffer. */
550 child_setup_tty (out
)
556 EMACS_GET_TTY (out
, &s
);
558 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
559 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
560 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
562 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
563 /* No output delays */
565 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
566 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
568 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
571 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
574 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
576 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
577 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
579 /* Said to be unnecessary: */
580 s
.main
.c_cc
[VMIN
] = 1; /* minimum number of characters to accept */
581 s
.main
.c_cc
[VTIME
] = 0; /* wait forever for at least 1 character */
584 s
.main
.c_lflag
|= ICANON
; /* Enable erase/kill and eof processing */
585 s
.main
.c_cc
[VEOF
] = 04; /* insure that EOF is Control-D */
586 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
587 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
590 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
594 /* AIX enhanced edit loses NULs, so disable it */
597 s
.main
.c_iflag
&= ~ASCEDIT
;
599 /* Also, PTY overloads NUL and BREAK.
600 don't ignore break, but don't signal either, so it looks like NUL. */
601 s
.main
.c_iflag
&= ~IGNBRK
;
602 s
.main
.c_iflag
&= ~BRKINT
;
603 /* QUIT and INTR work better as signals, so disable character forms */
604 s
.main
.c_cc
[VINTR
] = 0377;
605 #ifdef SIGNALS_VIA_CHARACTERS
606 /* the QUIT and INTR character are used in process_send_signal
607 so set them here to something useful. */
608 if (s
.main
.c_cc
[VQUIT
] == 0377)
609 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
610 if (s
.main
.c_cc
[VINTR
] == 0377)
611 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
612 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
613 /* QUIT and INTR work better as signals, so disable character forms */
614 s
.main
.c_cc
[VQUIT
] = 0377;
615 s
.main
.c_cc
[VINTR
] = 0377;
616 s
.main
.c_lflag
&= ~ISIG
;
617 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
618 s
.main
.c_cc
[VEOL
] = 0377;
619 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
622 #else /* not HAVE_TERMIO */
624 s
.main
.sg_flags
&= ~(ECHO
| CRMOD
| ANYP
| ALLDELAY
| RAW
| LCASE
626 s
.main
.sg_flags
|= LPASS8
;
627 s
.main
.sg_erase
= 0377;
628 s
.main
.sg_kill
= 0377;
629 s
.lmode
= LLITOUT
| s
.lmode
; /* Don't strip 8th bit */
631 #endif /* not HAVE_TERMIO */
633 EMACS_SET_TTY (out
, &s
, 0);
642 ioctl (out
, FIOASYNC
, &zero
);
645 #endif /* not DOS_NT */
649 #endif /* subprocesses */
651 /* Record a signal code and the handler for it. */
655 SIGTYPE (*handler
) P_ ((int));
658 static void save_signal_handlers
P_ ((struct save_signal
*));
659 static void restore_signal_handlers
P_ ((struct save_signal
*));
661 /* Suspend the Emacs process; give terminal to its superior. */
667 /* "Foster" parentage allows emacs to return to a subprocess that attached
668 to the current emacs as a cheaper than starting a whole new process. This
669 is set up by KEPTEDITOR.COM. */
670 unsigned long parent_id
, foster_parent_id
;
673 fpid_string
= getenv ("EMACS_PARENT_PID");
674 if (fpid_string
!= NULL
)
676 sscanf (fpid_string
, "%x", &foster_parent_id
);
677 if (foster_parent_id
!= 0)
678 parent_id
= foster_parent_id
;
680 parent_id
= getppid ();
683 parent_id
= getppid ();
685 xfree (fpid_string
); /* On VMS, this was malloc'd */
687 if (parent_id
&& parent_id
!= 0xffffffff)
689 SIGTYPE (*oldsig
)() = (int) signal (SIGINT
, SIG_IGN
);
690 int status
= LIB$
ATTACH (&parent_id
) & 1;
691 signal (SIGINT
, oldsig
);
700 d_prompt
.l
= sizeof ("Emacs: "); /* Our special prompt */
701 d_prompt
.a
= "Emacs: "; /* Just a reminder */
702 LIB$
SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt
, 0);
707 #if defined(SIGTSTP) && !defined(MSDOS)
710 int pgrp
= EMACS_GETPGRP (0);
711 EMACS_KILLPG (pgrp
, SIGTSTP
);
714 #else /* No SIGTSTP */
715 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
716 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
717 kill (getpid (), SIGQUIT
);
719 #else /* No SIGTSTP or USG_JOBCTRL */
721 /* On a system where suspending is not implemented,
722 instead fork a subshell and let it talk directly to the terminal
726 #endif /* no USG_JOBCTRL */
727 #endif /* no SIGTSTP */
731 /* Fork a subshell. */
737 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
739 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
742 struct save_signal saved_handlers
[5];
744 unsigned char *str
= 0;
747 saved_handlers
[0].code
= SIGINT
;
748 saved_handlers
[1].code
= SIGQUIT
;
749 saved_handlers
[2].code
= SIGTERM
;
751 saved_handlers
[3].code
= SIGIO
;
752 saved_handlers
[4].code
= 0;
754 saved_handlers
[3].code
= 0;
757 /* Mentioning current_buffer->buffer would mean including buffer.h,
758 which somehow wedges the hp compiler. So instead... */
760 dir
= intern ("default-directory");
761 if (NILP (Fboundp (dir
)))
763 dir
= Fsymbol_value (dir
);
767 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
768 str
= (unsigned char *) alloca (XSTRING (dir
)->size
+ 2);
769 len
= XSTRING (dir
)->size
;
770 bcopy (XSTRING (dir
)->data
, str
, len
);
771 if (str
[len
- 1] != '/') str
[len
++] = '/';
778 save_signal_handlers (saved_handlers
);
779 synch_process_alive
= 1;
780 #endif /* __DJGPP__ > 1 */
784 error ("Can't spawn subshell");
791 #ifdef DOS_NT /* MW, Aug 1993 */
794 sh
= (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
797 sh
= (char *) egetenv ("SHELL");
801 /* Use our buffer's default directory for the subshell. */
803 chdir ((char *) str
);
806 close_process_descs (); /* Close Emacs's pipes/ptys */
809 #ifdef SET_EMACS_PRIORITY
811 extern int emacs_priority
;
813 if (emacs_priority
< 0)
814 nice (-emacs_priority
);
818 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
821 #if 0 /* This is also reported if last command executed in subshell failed, KFS */
823 report_file_error ("Can't execute subshell", Fcons (build_string (sh
), Qnil
));
825 #else /* not MSDOS */
827 /* Waits for process completion */
828 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
831 write (1, "Can't execute subshell", 22);
832 #else /* not WINDOWSNT */
834 write (1, "Can't execute subshell", 22);
836 #endif /* not WINDOWSNT */
837 #endif /* not MSDOS */
840 /* Do this now if we did not do it before. */
841 #if !defined (MSDOS) || __DJGPP__ == 1
842 save_signal_handlers (saved_handlers
);
843 synch_process_alive
= 1;
847 wait_for_termination (pid
);
849 restore_signal_handlers (saved_handlers
);
850 synch_process_alive
= 0;
855 save_signal_handlers (saved_handlers
)
856 struct save_signal
*saved_handlers
;
858 while (saved_handlers
->code
)
860 saved_handlers
->handler
861 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers
->code
, SIG_IGN
);
867 restore_signal_handlers (saved_handlers
)
868 struct save_signal
*saved_handlers
;
870 while (saved_handlers
->code
)
872 signal (saved_handlers
->code
, saved_handlers
->handler
);
886 old_fcntl_flags
= fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
887 fcntl (fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
889 interrupts_deferred
= 0;
898 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
903 if (read_socket_hook
)
907 sigunblock (sigmask (SIGWINCH
));
909 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
911 interrupts_deferred
= 0;
917 if (read_socket_hook
)
921 sigblock (sigmask (SIGWINCH
));
923 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
);
924 interrupts_deferred
= 1;
927 #else /* no FASYNC */
928 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
935 if (read_socket_hook
)
938 ioctl (input_fd
, FIOASYNC
, &on
);
939 interrupts_deferred
= 0;
947 if (read_socket_hook
)
950 ioctl (input_fd
, FIOASYNC
, &off
);
951 interrupts_deferred
= 1;
954 #else /* not FASYNC, not STRIDE */
966 if (read_socket_hook
)
970 sigaddset(&st
, SIGIO
);
971 ioctl (input_fd
, FIOASYNC
, &on
);
972 interrupts_deferred
= 0;
973 sigprocmask(SIG_UNBLOCK
, &st
, (sigset_t
*)0);
981 if (read_socket_hook
)
984 ioctl (input_fd
, FIOASYNC
, &off
);
985 interrupts_deferred
= 1;
993 if (read_socket_hook
)
996 croak ("request_sigio");
1002 if (read_socket_hook
)
1005 croak ("unrequest_sigio");
1011 #endif /* F_SETFL */
1013 /* Saving and restoring the process group of Emacs's terminal. */
1017 /* The process group of which Emacs was a member when it initially
1020 If Emacs was in its own process group (i.e. inherited_pgroup ==
1021 getpid ()), then we know we're running under a shell with job
1022 control (Emacs would never be run as part of a pipeline).
1025 If Emacs was not in its own process group, then we know we're
1026 running under a shell (or a caller) that doesn't know how to
1027 separate itself from Emacs (like sh). Emacs must be in its own
1028 process group in order to receive SIGIO correctly. In this
1029 situation, we put ourselves in our own pgroup, forcibly set the
1030 tty's pgroup to our pgroup, and make sure to restore and reinstate
1031 the tty's pgroup just like any other terminal setting. If
1032 inherited_group was not the tty's pgroup, then we'll get a
1033 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1034 it goes foreground in the future, which is what should happen. */
1035 int inherited_pgroup
;
1037 /* Split off the foreground process group to Emacs alone.
1038 When we are in the foreground, but not started in our own process
1039 group, redirect the TTY to point to our own process group. We need
1040 to be in our own process group to receive SIGIO properly. */
1042 narrow_foreground_group ()
1046 setpgrp (0, inherited_pgroup
);
1047 if (inherited_pgroup
!= me
)
1048 EMACS_SET_TTY_PGRP (input_fd
, &me
);
1052 /* Set the tty to our original foreground group. */
1054 widen_foreground_group ()
1056 if (inherited_pgroup
!= getpid ())
1057 EMACS_SET_TTY_PGRP (input_fd
, &inherited_pgroup
);
1058 setpgrp (0, inherited_pgroup
);
1061 #endif /* BSD_PGRPS */
1063 /* Getting and setting emacs_tty structures. */
1065 /* Set *TC to the parameters associated with the terminal FD.
1066 Return zero if all's well, or -1 if we ran into an error we
1067 couldn't deal with. */
1069 emacs_get_tty (fd
, settings
)
1071 struct emacs_tty
*settings
;
1073 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1075 /* We have those nifty POSIX tcmumbleattr functions. */
1076 bzero (&settings
->main
, sizeof (settings
->main
));
1077 if (tcgetattr (fd
, &settings
->main
) < 0)
1082 /* The SYSV-style interface? */
1083 if (ioctl (fd
, TCGETA
, &settings
->main
) < 0)
1088 /* Vehemently Monstrous System? :-) */
1089 if (! (SYS$
QIOW (0, fd
, IO$_SENSEMODE
, settings
, 0, 0,
1090 &settings
->main
.class, 12, 0, 0, 0, 0)
1096 /* I give up - I hope you have the BSD ioctls. */
1097 if (ioctl (fd
, TIOCGETP
, &settings
->main
) < 0)
1099 #endif /* not DOS_NT */
1104 /* Suivant - Do we have to get struct ltchars data? */
1106 if (ioctl (fd
, TIOCGLTC
, &settings
->ltchars
) < 0)
1110 /* How about a struct tchars and a wordful of lmode bits? */
1112 if (ioctl (fd
, TIOCGETC
, &settings
->tchars
) < 0
1113 || ioctl (fd
, TIOCLGET
, &settings
->lmode
) < 0)
1117 /* We have survived the tempest. */
1122 /* Set the parameters of the tty on FD according to the contents of
1123 *SETTINGS. If FLUSHP is non-zero, we discard input.
1124 Return 0 if all went well, and -1 if anything failed. */
1127 emacs_set_tty (fd
, settings
, flushp
)
1129 struct emacs_tty
*settings
;
1132 /* Set the primary parameters - baud rate, character size, etcetera. */
1135 /* We have those nifty POSIX tcmumbleattr functions.
1136 William J. Smith <wjs@wiis.wang.com> writes:
1137 "POSIX 1003.1 defines tcsetattr() to return success if it was
1138 able to perform any of the requested actions, even if some
1139 of the requested actions could not be performed.
1140 We must read settings back to ensure tty setup properly.
1141 AIX requires this to keep tty from hanging occasionally." */
1142 /* This make sure that we don't loop indefinitely in here. */
1143 for (i
= 0 ; i
< 10 ; i
++)
1144 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
1155 bzero (&new, sizeof (new));
1156 /* Get the current settings, and see if they're what we asked for. */
1157 tcgetattr (fd
, &new);
1158 /* We cannot use memcmp on the whole structure here because under
1159 * aix386 the termios structure has some reserved field that may
1162 if ( new.c_iflag
== settings
->main
.c_iflag
1163 && new.c_oflag
== settings
->main
.c_oflag
1164 && new.c_cflag
== settings
->main
.c_cflag
1165 && new.c_lflag
== settings
->main
.c_lflag
1166 && memcmp(new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
1174 /* The SYSV-style interface? */
1175 if (ioctl (fd
, flushp
? TCSETAF
: TCSETAW
, &settings
->main
) < 0)
1180 /* Vehemently Monstrous System? :-) */
1181 if (! (SYS$
QIOW (0, fd
, IO$_SETMODE
, &input_iosb
, 0, 0,
1182 &settings
->main
.class, 12, 0, 0, 0, 0)
1188 /* I give up - I hope you have the BSD ioctls. */
1189 if (ioctl (fd
, (flushp
) ? TIOCSETP
: TIOCSETN
, &settings
->main
) < 0)
1191 #endif /* not DOS_NT */
1197 /* Suivant - Do we have to get struct ltchars data? */
1199 if (ioctl (fd
, TIOCSLTC
, &settings
->ltchars
) < 0)
1203 /* How about a struct tchars and a wordful of lmode bits? */
1205 if (ioctl (fd
, TIOCSETC
, &settings
->tchars
) < 0
1206 || ioctl (fd
, TIOCLSET
, &settings
->lmode
) < 0)
1210 /* We have survived the tempest. */
1215 /* The initial tty mode bits */
1216 struct emacs_tty old_tty
;
1218 /* 1 if we have been through init_sys_modes. */
1221 /* 1 if outer tty status has been recorded. */
1225 /* BSD 4.1 needs to keep track of the lmode bits in order to start
1230 #ifndef F_SETOWN_BUG
1232 int old_fcntl_owner
;
1233 #endif /* F_SETOWN */
1234 #endif /* F_SETOWN_BUG */
1236 /* This may also be defined in stdio,
1237 but if so, this does no harm,
1238 and using the same name avoids wasting the other one's space. */
1241 extern char *_sobuf
;
1243 #if defined (USG) || defined (DGUX)
1244 unsigned char _sobuf
[BUFSIZ
+8];
1246 char _sobuf
[BUFSIZ
];
1251 static struct ltchars new_ltchars
= {-1,-1,-1,-1,-1,-1};
1254 static struct tchars new_tchars
= {-1,-1,-1,-1,-1,-1};
1260 struct emacs_tty tty
;
1264 static int oob_chars
[2] = {0, 1 << 7}; /* catch C-g's */
1265 extern int (*interrupt_signal
) ();
1269 Vtty_erase_char
= Qnil
;
1276 input_ef
= get_kbd_event_flag ();
1277 /* LIB$GET_EF (&input_ef); */
1278 SYS$
CLREF (input_ef
);
1279 waiting_for_ast
= 0;
1281 timer_ef
= get_timer_event_flag ();
1282 /* LIB$GET_EF (&timer_ef); */
1283 SYS$
CLREF (timer_ef
);
1287 LIB$
GET_EF (&process_ef
);
1288 SYS$
CLREF (process_ef
);
1290 if (input_ef
/ 32 != process_ef
/ 32)
1291 croak ("Input and process event flags in different clusters.");
1293 if (input_ef
/ 32 != timer_ef
/ 32)
1294 croak ("Input and timer event flags in different clusters.");
1296 input_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1297 ((unsigned) 1 << (process_ef
% 32));
1299 timer_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1300 ((unsigned) 1 << (timer_ef
% 32));
1302 sys_access_reinit ();
1304 #endif /* not VMS */
1307 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1308 narrow_foreground_group ();
1311 #ifdef HAVE_WINDOW_SYSTEM
1312 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1313 needs the initialization code below. */
1314 if (!read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1317 EMACS_GET_TTY (input_fd
, &old_tty
);
1323 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1324 XSETINT (Vtty_erase_char
, old_tty
.main
.c_cc
[VERASE
]);
1327 /* This allows meta to be sent on 8th bit. */
1328 tty
.main
.c_iflag
&= ~INPCK
; /* don't check input for parity */
1330 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
1331 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
1332 #ifdef INLCR /* I'm just being cautious,
1333 since I can't check how widespread INLCR is--rms. */
1334 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
1337 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
1339 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
1340 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
1342 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
1344 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
1347 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
1349 tty
.main
.c_iflag
&= ~IXANY
;
1353 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
1354 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
1356 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
1360 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
1361 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
1364 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
1365 /* Set up C-g for both SIGQUIT and SIGINT.
1366 We don't know which we will get, but we handle both alike
1367 so which one it really gives us does not matter. */
1368 tty
.main
.c_cc
[VQUIT
] = quit_char
;
1369 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1370 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1372 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1376 #if defined (mips) || defined (HAVE_TCATTR)
1378 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off mips handling of C-z. */
1381 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off mips handling of C-y. */
1382 #endif /* V_DSUSP */
1383 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1384 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1387 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1390 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1391 #endif /* VREPRINT */
1393 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1394 #endif /* VWERASE */
1396 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1397 #endif /* VDISCARD */
1402 tty
.main
.c_cc
[VSTART
] = '\021';
1405 tty
.main
.c_cc
[VSTOP
] = '\023';
1411 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1414 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1417 #endif /* mips or HAVE_TCATTR */
1419 #ifdef SET_LINE_DISCIPLINE
1420 /* Need to explicitly request TERMIODISC line discipline or
1421 Ultrix's termios does not work correctly. */
1422 tty
.main
.c_line
= SET_LINE_DISCIPLINE
;
1426 /* AIX enhanced edit loses NULs, so disable it. */
1427 tty
.main
.c_line
= 0;
1428 tty
.main
.c_iflag
&= ~ASCEDIT
;
1430 tty
.main
.c_cc
[VSTRT
] = 255;
1431 tty
.main
.c_cc
[VSTOP
] = 255;
1432 tty
.main
.c_cc
[VSUSP
] = 255;
1433 tty
.main
.c_cc
[VDSUSP
] = 255;
1434 #endif /* IBMR2AIX */
1438 tty
.main
.c_cc
[VSTART
] = '\021';
1441 tty
.main
.c_cc
[VSTOP
] = '\023';
1444 /* Also, PTY overloads NUL and BREAK.
1445 don't ignore break, but don't signal either, so it looks like NUL.
1446 This really serves a purpose only if running in an XTERM window
1447 or via TELNET or the like, but does no harm elsewhere. */
1448 tty
.main
.c_iflag
&= ~IGNBRK
;
1449 tty
.main
.c_iflag
&= ~BRKINT
;
1451 #else /* if not HAVE_TERMIO */
1453 tty
.main
.tt_char
|= TT$M_NOECHO
;
1455 tty
.main
.tt_char
|= TT$M_EIGHTBIT
;
1457 tty
.main
.tt_char
|= TT$M_TTSYNC
;
1459 tty
.main
.tt_char
&= ~TT$M_TTSYNC
;
1460 tty
.main
.tt2_char
|= TT2$M_PASTHRU
| TT2$M_XON
;
1461 #else /* not VMS (BSD, that is) */
1463 XSETINT (Vtty_erase_char
, tty
.main
.sg_erase
);
1464 tty
.main
.sg_flags
&= ~(ECHO
| CRMOD
| XTABS
);
1466 tty
.main
.sg_flags
|= ANYP
;
1467 tty
.main
.sg_flags
|= interrupt_input
? RAW
: CBREAK
;
1468 #endif /* not DOS_NT */
1469 #endif /* not VMS (BSD, that is) */
1470 #endif /* not HAVE_TERMIO */
1472 /* If going to use CBREAK mode, we must request C-g to interrupt
1473 and turn off start and stop chars, etc. If not going to use
1474 CBREAK mode, do this anyway so as to turn off local flow
1475 control for user coming over network on 4.2; in this case,
1476 only t_stopc and t_startc really matter. */
1479 /* Note: if not using CBREAK mode, it makes no difference how we
1481 tty
.tchars
= new_tchars
;
1482 tty
.tchars
.t_intrc
= quit_char
;
1485 tty
.tchars
.t_startc
= '\021';
1486 tty
.tchars
.t_stopc
= '\023';
1489 tty
.lmode
= LDECCTQ
| LLITOUT
| LPASS8
| LNOFLSH
| old_tty
.lmode
;
1491 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1492 anything, and leaving it in breaks the meta key. Go figure. */
1493 tty
.lmode
&= ~LLITOUT
;
1500 #endif /* HAVE_TCHARS */
1501 #endif /* not HAVE_TERMIO */
1504 tty
.ltchars
= new_ltchars
;
1505 #endif /* HAVE_LTCHARS */
1506 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1508 internal_terminal_init ();
1512 EMACS_SET_TTY (input_fd
, &tty
, 0);
1514 /* This code added to insure that, if flow-control is not to be used,
1515 we have an unlocked terminal at the start. */
1518 if (!flow_control
) ioctl (input_fd
, TCXONC
, 1);
1522 if (!flow_control
) ioctl (input_fd
, TIOCSTART
, 0);
1526 #if defined (HAVE_TERMIOS) || defined (HPUX9)
1528 if (!flow_control
) tcflow (input_fd
, TCOON
);
1536 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1537 to be only LF. This is the way that is done. */
1540 if (ioctl (1, HFTGETID
, &tty
) != -1)
1541 write (1, "\033[20l", 5);
1547 /* Appears to do nothing when in PASTHRU mode.
1548 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1549 interrupt_signal, oob_chars, 0, 0, 0, 0);
1551 queue_kbd_input (0);
1556 #ifndef F_SETOWN_BUG
1557 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1559 && ! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1561 old_fcntl_owner
= fcntl (input_fd
, F_GETOWN
, 0);
1562 fcntl (input_fd
, F_SETOWN
, getpid ());
1563 init_sigio (input_fd
);
1565 #endif /* F_GETOWN */
1566 #endif /* F_SETOWN_BUG */
1567 #endif /* F_SETFL */
1570 if (interrupt_input
)
1571 init_sigio (input_fd
);
1574 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1578 /* This symbol is defined on recent USG systems.
1579 Someone says without this call USG won't really buffer the file
1580 even with a call to setbuf. */
1581 setvbuf (stdout
, (char *) _sobuf
, _IOFBF
, sizeof _sobuf
);
1583 setbuf (stdout
, (char *) _sobuf
);
1585 #ifdef HAVE_WINDOW_SYSTEM
1586 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1587 needs the initialization code below. */
1588 if (EQ (Vwindow_system
, Qnil
)
1590 /* When running in tty mode on NT/Win95, we have a read_socket
1591 hook, but still need the rest of the initialization code below. */
1592 && (! read_socket_hook
)
1596 set_terminal_modes ();
1598 if (term_initted
&& no_redraw_on_reenter
)
1600 if (display_completed
)
1601 direct_output_forward_char (0);
1606 if (FRAMEP (Vterminal_frame
))
1607 FRAME_GARBAGED_P (XFRAME (Vterminal_frame
)) = 1;
1613 /* Return nonzero if safe to use tabs in output.
1614 At the time this is called, init_sys_modes has not been done yet. */
1619 struct emacs_tty tty
;
1621 EMACS_GET_TTY (input_fd
, &tty
);
1622 return EMACS_TTY_TABS_OK (&tty
);
1625 /* Get terminal size from system.
1626 Store number of lines into *HEIGHTP and width into *WIDTHP.
1627 We store 0 if there's no valid information. */
1630 get_frame_size (widthp
, heightp
)
1631 int *widthp
, *heightp
;
1637 struct winsize size
;
1639 if (ioctl (input_fd
, TIOCGWINSZ
, &size
) == -1)
1640 *widthp
= *heightp
= 0;
1643 *widthp
= size
.ws_col
;
1644 *heightp
= size
.ws_row
;
1650 /* SunOS - style. */
1651 struct ttysize size
;
1653 if (ioctl (input_fd
, TIOCGSIZE
, &size
) == -1)
1654 *widthp
= *heightp
= 0;
1657 *widthp
= size
.ts_cols
;
1658 *heightp
= size
.ts_lines
;
1664 struct sensemode tty
;
1666 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &tty
, 0, 0,
1667 &tty
.class, 12, 0, 0, 0, 0);
1668 *widthp
= tty
.scr_wid
;
1669 *heightp
= tty
.scr_len
;
1673 *widthp
= ScreenCols ();
1674 *heightp
= ScreenRows ();
1675 #else /* system doesn't know size */
1680 #endif /* not VMS */
1681 #endif /* not SunOS-style */
1682 #endif /* not BSD-style */
1685 /* Set the logical window size associated with descriptor FD
1686 to HEIGHT and WIDTH. This is used mainly with ptys. */
1689 set_window_size (fd
, height
, width
)
1690 int fd
, height
, width
;
1695 struct winsize size
;
1696 size
.ws_row
= height
;
1697 size
.ws_col
= width
;
1699 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1700 return 0; /* error */
1707 /* SunOS - style. */
1708 struct ttysize size
;
1709 size
.ts_lines
= height
;
1710 size
.ts_cols
= width
;
1712 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1718 #endif /* not SunOS-style */
1719 #endif /* not BSD-style */
1723 /* Prepare the terminal for exiting Emacs; move the cursor to the
1724 bottom of the frame, turn off interrupt-driven I/O, etc. */
1735 #ifdef HAVE_WINDOW_SYSTEM
1736 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1737 needs the clean-up code below. */
1738 if (!EQ (Vwindow_system
, Qnil
)
1740 /* When running in tty mode on NT/Win95, we have a read_socket
1741 hook, but still need the rest of the clean-up code below. */
1747 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1748 clear_end_of_line (FRAME_WIDTH (selected_frame
));
1749 /* clear_end_of_line may move the cursor */
1750 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1751 #if defined (IBMR2AIX) && defined (AIXHFT)
1753 /* HFT devices normally use ^J as a LF/CR. We forced it to
1754 do the LF only. Now, we need to reset it. */
1757 if (ioctl (1, HFTGETID
, &tty
) != -1)
1758 write (1, "\033[20h", 5);
1762 reset_terminal_modes ();
1766 /* Avoid possible loss of output when changing terminal modes. */
1767 fsync (fileno (stdout
));
1772 #ifndef F_SETOWN_BUG
1773 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1774 if (interrupt_input
)
1777 fcntl (input_fd
, F_SETOWN
, old_fcntl_owner
);
1779 #endif /* F_SETOWN */
1780 #endif /* F_SETOWN_BUG */
1782 fcntl (input_fd
, F_SETFL
, fcntl (input_fd
, F_GETFL
, 0) & ~O_NDELAY
);
1784 #endif /* F_SETFL */
1786 if (interrupt_input
)
1791 while (EMACS_SET_TTY (input_fd
, &old_tty
, 0) < 0 && errno
== EINTR
)
1794 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1798 #ifdef SET_LINE_DISCIPLINE
1799 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1800 A different old line discipline is therefore not restored, yet.
1801 Restore the old line discipline by hand. */
1802 ioctl (0, TIOCSETD
, &old_tty
.main
.c_line
);
1810 widen_foreground_group ();
1816 /* Set up the proper status flags for use of a pty. */
1822 /* I'm told that TOICREMOTE does not mean control chars
1823 "can't be sent" but rather that they don't have
1824 input-editing or signaling effects.
1825 That should be good, because we have other ways
1826 to do those things in Emacs.
1827 However, telnet mode seems not to work on 4.2.
1828 So TIOCREMOTE is turned off now. */
1830 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1831 will hang. In particular, the "timeout" feature (which
1832 causes a read to return if there is no data available)
1833 does this. Also it is known that telnet mode will hang
1834 in such a way that Emacs must be stopped (perhaps this
1835 is the same problem).
1837 If TIOCREMOTE is turned off, then there is a bug in
1838 hp-ux which sometimes loses data. Apparently the
1839 code which blocks the master process when the internal
1840 buffer fills up does not work. Other than this,
1841 though, everything else seems to work fine.
1843 Since the latter lossage is more benign, we may as well
1844 lose that way. -- cph */
1849 ioctl (fd
, FIONBIO
, &on
);
1854 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
1855 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
1856 /* cause EMACS not to die when it should, i.e., when its own controlling */
1857 /* tty goes away. I've complained to the AIX developers, and they may */
1858 /* change this behavior, but I'm not going to hold my breath. */
1859 signal (SIGHUP
, SIG_IGN
);
1862 #endif /* HAVE_PTYS */
1866 /* Assigning an input channel is done at the start of Emacs execution.
1867 This is called each time Emacs is resumed, also, but does nothing
1868 because input_chain is no longer zero. */
1877 status
= SYS$
ASSIGN (&input_dsc
, &input_fd
, 0, 0);
1883 /* Deassigning the input channel is done before exiting. */
1888 return SYS$
DASSGN (input_fd
);
1893 /* Request reading one character into the keyboard buffer.
1894 This is done as soon as the buffer becomes empty. */
1900 extern kbd_input_ast ();
1902 waiting_for_ast
= 0;
1904 status
= SYS$
QIO (0, input_fd
, IO$_READVBLK
,
1905 &input_iosb
, kbd_input_ast
, 1,
1906 &input_buffer
, 1, 0, terminator_mask
, 0, 0);
1911 /* Ast routine that is called when keyboard input comes in
1912 in accord with the SYS$QIO above. */
1917 register int c
= -1;
1918 int old_errno
= errno
;
1919 extern EMACS_TIME
*input_available_clear_time
;
1921 if (waiting_for_ast
)
1922 SYS$
SETEF (input_ef
);
1923 waiting_for_ast
= 0;
1926 if (input_count
== 25)
1928 printf ("Ast # %d,", input_count
);
1929 printf (" iosb = %x, %x, %x, %x",
1930 input_iosb
.offset
, input_iosb
.status
, input_iosb
.termlen
,
1933 if (input_iosb
.offset
)
1937 printf (", char = 0%o", c
);
1949 struct input_event e
;
1950 e
.kind
= ascii_keystroke
;
1951 XSETINT (e
.code
, c
);
1952 XSETFRAME (e
.frame_or_window
, selected_frame
);
1953 kbd_buffer_store_event (&e
);
1955 if (input_available_clear_time
)
1956 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
1960 /* Wait until there is something in kbd_buffer. */
1963 wait_for_kbd_input ()
1965 extern int have_process_input
, process_exited
;
1967 /* If already something, avoid doing system calls. */
1968 if (detect_input_pending ())
1972 /* Clear a flag, and tell ast routine above to set it. */
1973 SYS$
CLREF (input_ef
);
1974 waiting_for_ast
= 1;
1975 /* Check for timing error: ast happened while we were doing that. */
1976 if (!detect_input_pending ())
1978 /* No timing error: wait for flag to be set. */
1979 set_waiting_for_input (0);
1980 SYS$
WFLOR (input_ef
, input_eflist
);
1981 clear_waiting_for_input (0);
1982 if (!detect_input_pending ())
1983 /* Check for subprocess input availability */
1985 int dsp
= have_process_input
|| process_exited
;
1987 SYS$
CLREF (process_ef
);
1988 if (have_process_input
)
1989 process_command_input ();
1994 update_mode_lines
++;
1995 prepare_menu_bars ();
1996 redisplay_preserve_echo_area ();
2000 waiting_for_ast
= 0;
2003 /* Get rid of any pending QIO, when we are about to suspend
2004 or when we want to throw away pending input.
2005 We wait for a positive sign that the AST routine has run
2006 and therefore there is no I/O request queued when we return.
2007 SYS$SETAST is used to avoid a timing error. */
2013 printf ("At end_kbd_input.\n");
2017 if (LIB$
AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
2019 SYS$
CANCEL (input_fd
);
2024 /* Clear a flag, and tell ast routine above to set it. */
2025 SYS$
CLREF (input_ef
);
2026 waiting_for_ast
= 1;
2028 SYS$
CANCEL (input_fd
);
2030 SYS$
WAITFR (input_ef
);
2031 waiting_for_ast
= 0;
2034 /* Wait for either input available or time interval expiry. */
2037 input_wait_timeout (timeval
)
2038 int timeval
; /* Time to wait, in seconds */
2041 static int zero
= 0;
2042 static int large
= -10000000;
2044 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
2046 /* If already something, avoid doing system calls. */
2047 if (detect_input_pending ())
2051 /* Clear a flag, and tell ast routine above to set it. */
2052 SYS$
CLREF (input_ef
);
2053 waiting_for_ast
= 1;
2054 /* Check for timing error: ast happened while we were doing that. */
2055 if (!detect_input_pending ())
2057 /* No timing error: wait for flag to be set. */
2059 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
2060 SYS$
WFLOR (timer_ef
, timer_eflist
); /* Wait for timer expiry or input */
2062 waiting_for_ast
= 0;
2065 /* The standard `sleep' routine works some other way
2066 and it stops working if you have ever quit out of it.
2067 This one continues to work. */
2073 static int zero
= 0;
2074 static int large
= -10000000;
2076 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
2079 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
2080 SYS$
WAITFR (timer_ef
); /* Wait for timer expiry only */
2098 croak ("request sigio");
2104 croak ("unrequest sigio");
2109 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2114 #ifndef SYSTEM_MALLOC
2121 /* Some systems that cannot dump also cannot implement these. */
2124 * Return the address of the start of the text segment prior to
2125 * doing an unexec. After unexec the return value is undefined.
2126 * See crt0.c for further explanation and _start.
2130 #ifndef HAVE_TEXT_START
2135 return ((char *) TEXT_START
);
2139 return ((char *) csrt
);
2140 #else /* not GOULD */
2141 extern int _start ();
2142 return ((char *) _start
);
2144 #endif /* TEXT_START */
2146 #endif /* not HAVE_TEXT_START */
2149 * Return the address of the start of the data segment prior to
2150 * doing an unexec. After unexec the return value is undefined.
2151 * See crt0.c for further information and definition of data_start.
2153 * Apparently, on BSD systems this is etext at startup. On
2154 * USG systems (swapping) this is highly mmu dependent and
2155 * is also dependent on whether or not the program is running
2156 * with shared text. Generally there is a (possibly large)
2157 * gap between end of text and start of data with shared text.
2159 * On Uniplus+ systems with shared text, data starts at a
2160 * fixed address. Each port (from a given oem) is generally
2161 * different, and the specific value of the start of data can
2162 * be obtained via the UniPlus+ specific "uvar" system call,
2163 * however the method outlined in crt0.c seems to be more portable.
2165 * Probably what will have to happen when a USG unexec is available,
2166 * at least on UniPlus, is temacs will have to be made unshared so
2167 * that text and data are contiguous. Then once loadup is complete,
2168 * unexec will produce a shared executable where the data can be
2169 * at the normal shared text boundary and the startofdata variable
2170 * will be patched by unexec to the correct value.
2178 return ((char *) DATA_START
);
2180 #ifdef ORDINARY_LINK
2182 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2183 * data_start isn't defined. We take the address of environ, which
2184 * is known to live at or near the start of the system crt0.c, and
2185 * we don't sweat the handful of bytes that might lose.
2187 extern char **environ
;
2189 return((char *) &environ
);
2191 extern int data_start
;
2192 return ((char *) &data_start
);
2193 #endif /* ORDINARY_LINK */
2194 #endif /* DATA_START */
2196 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2199 /* Some systems that cannot dump also cannot implement these. */
2202 * Return the address of the end of the text segment prior to
2203 * doing an unexec. After unexec the return value is undefined.
2210 return ((char *) TEXT_END
);
2213 return ((char *) &etext
);
2218 * Return the address of the end of the data segment prior to
2219 * doing an unexec. After unexec the return value is undefined.
2226 return ((char *) DATA_END
);
2229 return ((char *) &edata
);
2233 #endif /* not CANNOT_DUMP */
2235 /* init_system_name sets up the string for the Lisp function
2236 system-name to return. */
2242 extern Lisp_Object Vsystem_name
;
2247 #include <sys/socket.h>
2249 #endif /* HAVE_SOCKETS */
2250 #endif /* not VMS */
2251 #endif /* not BSD4_1 */
2257 Vsystem_name
= build_string (sysname
);
2261 if ((sp
= egetenv ("SYS$NODE")) == 0)
2262 Vsystem_name
= build_string ("vax-vms");
2263 else if ((end
= index (sp
, ':')) == 0)
2264 Vsystem_name
= build_string (sp
);
2266 Vsystem_name
= make_string (sp
, end
- sp
);
2268 #ifndef HAVE_GETHOSTNAME
2271 Vsystem_name
= build_string (uts
.nodename
);
2272 #else /* HAVE_GETHOSTNAME */
2273 unsigned int hostname_size
= 256;
2274 char *hostname
= (char *) alloca (hostname_size
);
2276 /* Try to get the host name; if the buffer is too short, try
2277 again. Apparently, the only indication gethostname gives of
2278 whether the buffer was large enough is the presence or absence
2279 of a '\0' in the string. Eech. */
2282 gethostname (hostname
, hostname_size
- 1);
2283 hostname
[hostname_size
- 1] = '\0';
2285 /* Was the buffer large enough for the '\0'? */
2286 if (strlen (hostname
) < hostname_size
- 1)
2289 hostname_size
<<= 1;
2290 hostname
= (char *) alloca (hostname_size
);
2293 /* Turn the hostname into the official, fully-qualified hostname.
2294 Don't do this if we're going to dump; this can confuse system
2295 libraries on some machines and make the dumped emacs core dump. */
2298 #endif /* not CANNOT_DUMP */
2299 if (! index (hostname
, '.'))
2303 for (count
= 0;; count
++)
2308 hp
= gethostbyname (hostname
);
2310 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
2315 Fsleep_for (make_number (1), Qnil
);
2319 char *fqdn
= (char *) hp
->h_name
;
2322 if (!index (fqdn
, '.'))
2324 /* We still don't have a fully qualified domain name.
2325 Try to find one in the list of alternate names */
2326 char **alias
= hp
->h_aliases
;
2327 while (*alias
&& !index (*alias
, '.'))
2334 /* Convert the host name to lower case. */
2335 /* Using ctype.h here would introduce a possible locale
2336 dependence that is probably wrong for hostnames. */
2340 if (*p
>= 'A' && *p
<= 'Z')
2347 #endif /* HAVE_SOCKETS */
2348 /* We used to try using getdomainname here,
2349 but NIIBE Yutaka <gniibe@etl.go.jp> says that
2350 getdomainname gets the NIS/YP domain which often is not the same
2351 as in Internet domain name. */
2352 #if 0 /* Turned off because sysinfo is not really likely to return the
2353 correct Internet domain. */
2354 #if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN))
2355 if (! index (hostname
, '.'))
2357 /* The hostname is not fully qualified. Append the domain name. */
2359 int hostlen
= strlen (hostname
);
2360 int domain_size
= 256;
2364 char *domain
= (char *) alloca (domain_size
+ 1);
2365 char *fqdn
= (char *) alloca (hostlen
+ 1 + domain_size
+ 1);
2366 int sys_domain_size
= sysinfo (SI_SRPC_DOMAIN
, domain
, domain_size
);
2367 if (sys_domain_size
<= 0)
2369 if (domain_size
< sys_domain_size
)
2371 domain_size
= sys_domain_size
;
2374 strcpy (fqdn
, hostname
);
2375 if (domain
[0] == '.')
2376 strcpy (fqdn
+ hostlen
, domain
);
2377 else if (domain
[0] != 0)
2379 fqdn
[hostlen
] = '.';
2380 strcpy (fqdn
+ hostlen
+ 1, domain
);
2386 #endif /* HAVE_SYSINFO && defined (SI_SRPC_DOMAIN) */
2388 Vsystem_name
= build_string (hostname
);
2389 #endif /* HAVE_GETHOSTNAME */
2394 for (p
= XSTRING (Vsystem_name
)->data
; *p
; p
++)
2395 if (*p
== ' ' || *p
== '\t')
2402 #if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)
2404 #include "sysselect.h"
2407 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2408 /* Cause explanatory error message at compile time,
2409 since the select emulation is not good enough for X. */
2410 int *x
= &x_windows_lose_if_no_select_system_call
;
2413 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2414 * Only checks read descriptors.
2416 /* How long to wait between checking fds in select */
2417 #define SELECT_PAUSE 1
2420 /* For longjmp'ing back to read_input_waiting. */
2422 jmp_buf read_alarm_throw
;
2424 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2425 The read_socket_hook function sets this to 1 while it is waiting. */
2427 int read_alarm_should_throw
;
2435 #else /* not BSD4_1 */
2436 signal (SIGALRM
, SIG_IGN
);
2437 #endif /* not BSD4_1 */
2438 if (read_alarm_should_throw
)
2439 longjmp (read_alarm_throw
, 1);
2443 /* Only rfds are checked. */
2445 sys_select (nfds
, rfds
, wfds
, efds
, timeout
)
2447 SELECT_TYPE
*rfds
, *wfds
, *efds
;
2448 EMACS_TIME
*timeout
;
2450 int ravail
= 0, old_alarm
;
2454 extern int proc_buffered_char
[];
2455 #ifndef subprocesses
2456 int process_tick
= 0, update_tick
= 0;
2458 extern int process_tick
, update_tick
;
2460 SIGTYPE (*old_trap
) ();
2463 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2464 /* If we're using X, then the native select will work; we only need the
2465 emulation for non-X usage. */
2466 if (!NILP (Vwindow_system
))
2467 return select (nfds
, rfds
, wfds
, efds
, timeout
);
2469 timeoutval
= timeout
? EMACS_SECS (*timeout
) : 100000;
2470 local_timeout
= &timeoutval
;
2482 /* If we are looking only for the terminal, with no timeout,
2483 just read it and wait -- that's more efficient. */
2484 if (*local_timeout
== 100000 && process_tick
== update_tick
2485 && FD_ISSET (0, &orfds
))
2488 for (fd
= 1; fd
< nfds
; ++fd
)
2489 if (FD_ISSET (fd
, &orfds
))
2491 if (! detect_input_pending ())
2492 read_input_waiting ();
2498 /* Once a second, till the timer expires, check all the flagged read
2499 * descriptors to see if any input is available. If there is some then
2500 * set the corresponding bit in the return copy of rfds.
2504 register int to_check
, fd
;
2508 for (to_check
= nfds
, fd
= 0; --to_check
>= 0; fd
++)
2510 if (FD_ISSET (fd
, &orfds
))
2512 int avail
= 0, status
= 0;
2515 avail
= detect_input_pending (); /* Special keyboard handler */
2519 status
= ioctl (fd
, FIONREAD
, &avail
);
2520 #else /* no FIONREAD */
2521 /* Hoping it will return -1 if nothing available
2522 or 0 if all 0 chars requested are read. */
2523 if (proc_buffered_char
[fd
] >= 0)
2527 avail
= read (fd
, &buf
, 1);
2529 proc_buffered_char
[fd
] = buf
;
2531 #endif /* no FIONREAD */
2533 if (status
>= 0 && avail
> 0)
2541 if (*local_timeout
== 0 || ravail
!= 0 || process_tick
!= update_tick
)
2543 old_alarm
= alarm (0);
2544 old_trap
= signal (SIGALRM
, select_alarm
);
2546 alarm (SELECT_PAUSE
);
2547 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2548 while (select_alarmed
== 0 && *local_timeout
!= 0
2549 && process_tick
== update_tick
)
2551 /* If we are interested in terminal input,
2552 wait by reading the terminal.
2553 That makes instant wakeup for terminal input at least. */
2554 if (FD_ISSET (0, &orfds
))
2556 read_input_waiting ();
2557 if (detect_input_pending ())
2563 (*local_timeout
) -= SELECT_PAUSE
;
2564 /* Reset the old alarm if there was one */
2566 signal (SIGALRM
, old_trap
);
2569 /* Reset or forge an interrupt for the original handler. */
2570 old_alarm
-= SELECT_PAUSE
;
2572 kill (getpid (), SIGALRM
); /* Fake an alarm with the orig' handler */
2576 if (*local_timeout
== 0) /* Stop on timer being cleared */
2581 #endif /* not WINDOWSNT */
2583 /* Read keyboard input into the standard buffer,
2584 waiting for at least one character. */
2586 /* Make all keyboard buffers much bigger when using a window system. */
2587 #ifdef HAVE_WINDOW_SYSTEM
2588 #define BUFFER_SIZE_FACTOR 16
2590 #define BUFFER_SIZE_FACTOR 1
2594 read_input_waiting ()
2596 struct input_event e
;
2598 extern int quit_char
;
2600 if (read_socket_hook
)
2602 struct input_event buf
[256];
2604 read_alarm_should_throw
= 0;
2605 if (! setjmp (read_alarm_throw
))
2606 nread
= (*read_socket_hook
) (0, buf
, 256, 1, 0);
2610 /* Scan the chars for C-g and store them in kbd_buffer. */
2611 for (i
= 0; i
< nread
; i
++)
2613 kbd_buffer_store_event (&buf
[i
]);
2614 /* Don't look at input that follows a C-g too closely.
2615 This reduces lossage due to autorepeat on C-g. */
2616 if (buf
[i
].kind
== ascii_keystroke
2617 && buf
[i
].code
== quit_char
)
2624 nread
= read (fileno (stdin
), buf
, 1);
2626 /* Scan the chars for C-g and store them in kbd_buffer. */
2627 e
.kind
= ascii_keystroke
;
2628 XSETFRAME (e
.frame_or_window
, selected_frame
);
2630 for (i
= 0; i
< nread
; i
++)
2632 /* Convert chars > 0177 to meta events if desired.
2633 We do this under the same conditions that read_avail_input does. */
2634 if (read_socket_hook
== 0)
2636 /* If the user says she has a meta key, then believe her. */
2637 if (meta_key
== 1 && (buf
[i
] & 0x80))
2638 e
.modifiers
= meta_modifier
;
2643 XSETINT (e
.code
, buf
[i
]);
2644 kbd_buffer_store_event (&e
);
2645 /* Don't look at input that follows a C-g too closely.
2646 This reduces lossage due to autorepeat on C-g. */
2647 if (buf
[i
] == quit_char
)
2653 #endif /* not HAVE_SELECT */
2654 #endif /* not VMS */
2655 #endif /* not MSDOS */
2659 * Partially emulate 4.2 open call.
2660 * open is defined as this in 4.1.
2662 * - added by Michael Bloom @ Citicorp/TTI
2667 sys_open (path
, oflag
, mode
)
2671 if (oflag
& O_CREAT
)
2672 return creat (path
, mode
);
2674 return open (path
, oflag
);
2683 lmode
= LINTRUP
| lmode
;
2684 ioctl (fd
, TIOCLSET
, &lmode
);
2692 lmode
= ~LINTRUP
& lmode
;
2693 ioctl (0, TIOCLSET
, &lmode
);
2701 interrupts_deferred
= 0;
2709 interrupts_deferred
= 1;
2712 /* still inside #ifdef BSD4_1 */
2715 int sigheld
; /* Mask of held signals */
2721 sigheld
|= sigbit (signum
);
2729 sigheld
|= sigbit (signum
);
2736 sigheld
&= ~sigbit (signum
);
2741 sigfree () /* Free all held signals */
2744 for (i
= 0; i
< NSIG
; i
++)
2745 if (sigheld
& sigbit (i
))
2753 return 1 << (i
- 1);
2755 #endif /* subprocesses */
2758 /* POSIX signals support - DJB */
2759 /* Anyone with POSIX signals should have ANSI C declarations */
2761 #ifdef POSIX_SIGNALS
2763 sigset_t empty_mask
, full_mask
;
2768 sigemptyset (&empty_mask
);
2769 sigfillset (&full_mask
);
2773 sys_signal (int signal_number
, signal_handler_t action
)
2775 struct sigaction new_action
, old_action
;
2776 sigemptyset (&new_action
.sa_mask
);
2777 new_action
.sa_handler
= action
;
2779 /* Emacs mostly works better with restartable system services. If this
2780 * flag exists, we probably want to turn it on here.
2782 new_action
.sa_flags
= SA_RESTART
;
2784 new_action
.sa_flags
= 0;
2786 sigaction (signal_number
, &new_action
, &old_action
);
2787 return (old_action
.sa_handler
);
2791 /* If we're compiling with GCC, we don't need this function, since it
2792 can be written as a macro. */
2794 sys_sigmask (int sig
)
2797 sigemptyset (&mask
);
2798 sigaddset (&mask
, sig
);
2803 /* I'd like to have these guys return pointers to the mask storage in here,
2804 but there'd be trouble if the code was saving multiple masks. I'll be
2805 safe and pass the structure. It normally won't be more than 2 bytes
2809 sys_sigblock (sigset_t new_mask
)
2812 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
2817 sys_sigunblock (sigset_t new_mask
)
2820 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
2825 sys_sigsetmask (sigset_t new_mask
)
2828 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
2832 #endif /* POSIX_SIGNALS */
2840 /* Figure out how many bits the system's random number generator uses.
2841 `random' and `lrand48' are assumed to return 31 usable bits.
2842 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2843 so we'll shift it and treat it like the 15-bit USG `rand'. */
2847 # define RAND_BITS 31
2848 # else /* !HAVE_RANDOM */
2849 # ifdef HAVE_LRAND48
2850 # define RAND_BITS 31
2851 # define random lrand48
2852 # else /* !HAVE_LRAND48 */
2853 # define RAND_BITS 15
2854 # if RAND_MAX == 32767
2855 # define random rand
2856 # else /* RAND_MAX != 32767 */
2857 # if RAND_MAX == 2147483647
2858 # define random() (rand () >> 16)
2859 # else /* RAND_MAX != 2147483647 */
2861 # define random rand
2863 # define random() (rand () >> 16)
2865 # endif /* RAND_MAX != 2147483647 */
2866 # endif /* RAND_MAX != 32767 */
2867 # endif /* !HAVE_LRAND48 */
2868 # endif /* !HAVE_RANDOM */
2869 #endif /* !RAND_BITS */
2876 srandom ((unsigned int)arg
);
2878 # ifdef HAVE_LRAND48
2881 srand ((unsigned int)arg
);
2887 * Build a full Emacs-sized word out of whatever we've got.
2888 * This suffices even for a 64-bit architecture with a 15-bit rand.
2893 long val
= random ();
2894 #if VALBITS > RAND_BITS
2895 val
= (val
<< RAND_BITS
) ^ random ();
2896 #if VALBITS > 2*RAND_BITS
2897 val
= (val
<< RAND_BITS
) ^ random ();
2898 #if VALBITS > 3*RAND_BITS
2899 val
= (val
<< RAND_BITS
) ^ random ();
2900 #if VALBITS > 4*RAND_BITS
2901 val
= (val
<< RAND_BITS
) ^ random ();
2902 #endif /* need at least 5 */
2903 #endif /* need at least 4 */
2904 #endif /* need at least 3 */
2905 #endif /* need at least 2 */
2906 return val
& ((1L << VALBITS
) - 1);
2909 #ifdef WRONG_NAME_INSQUE
2922 /* If any place else asks for the TERM variable,
2923 allow it to be overridden with the EMACS_TERM variable
2924 before attempting to translate the logical name TERM. As a last
2925 resort, ask for VAX C's special idea of the TERM variable. */
2932 static char buf
[256];
2933 static struct dsc$descriptor_s equiv
2934 = {sizeof (buf
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, buf
};
2935 static struct dsc$descriptor_s d_name
2936 = {0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0};
2939 if (!strcmp (name
, "TERM"))
2941 val
= (char *) getenv ("EMACS_TERM");
2946 d_name
.dsc$w_length
= strlen (name
);
2947 d_name
.dsc$a_pointer
= name
;
2948 if (LIB$
SYS_TRNLOG (&d_name
, &eqlen
, &equiv
) == 1)
2950 char *str
= (char *) xmalloc (eqlen
+ 1);
2951 bcopy (buf
, str
, eqlen
);
2953 /* This is a storage leak, but a pain to fix. With luck,
2954 no one will ever notice. */
2957 return (char *) getenv (name
);
2962 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
2963 to force a call on the debugger from within the image. */
2968 LIB$
SIGNAL (SS$_DEBUG
);
2974 #ifdef LINK_CRTL_SHARE
2975 #ifdef SHARABLE_LIB_BUG
2976 /* Variables declared noshare and initialized in sharable libraries
2977 cannot be shared. The VMS linker incorrectly forces you to use a private
2978 version which is uninitialized... If not for this "feature", we
2979 could use the C library definition of sys_nerr and sys_errlist. */
2981 char *sys_errlist
[] =
2985 "no such file or directory",
2987 "interrupted system call",
2989 "no such device or address",
2990 "argument list too long",
2991 "exec format error",
2994 "no more processes",
2995 "not enough memory",
2996 "permission denied",
2998 "block device required",
2999 "mount devices busy",
3001 "cross-device link",
3006 "file table overflow",
3007 "too many open files",
3011 "no space left on device",
3013 "read-only file system",
3019 "vax/vms specific error code nontranslatable error"
3021 #endif /* SHARABLE_LIB_BUG */
3022 #endif /* LINK_CRTL_SHARE */
3025 #ifndef HAVE_STRERROR
3031 extern char *sys_errlist
[];
3032 extern int sys_nerr
;
3034 if (errnum
>= 0 && errnum
< sys_nerr
)
3035 return sys_errlist
[errnum
];
3036 return (char *) "Unknown error";
3038 #endif /* not WINDOWSNT */
3039 #endif /* ! HAVE_STRERROR */
3041 #ifdef INTERRUPTIBLE_OPEN
3045 sys_open (path
, oflag
, mode
)
3049 register int rtnval
;
3051 while ((rtnval
= open (path
, oflag
, mode
)) == -1
3052 && (errno
== EINTR
));
3056 #endif /* INTERRUPTIBLE_OPEN */
3058 #ifdef INTERRUPTIBLE_CLOSE
3065 register int rtnval
;
3067 while ((rtnval
= close (fd
)) == -1
3068 && (errno
== EINTR
))
3071 /* If close is interrupted SunOS 4.1 may or may not have closed the
3072 file descriptor. If it did the second close will fail with
3073 errno = EBADF. That means we have succeeded. */
3074 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
3080 #endif /* INTERRUPTIBLE_CLOSE */
3082 #ifdef INTERRUPTIBLE_IO
3085 sys_read (fildes
, buf
, nbyte
)
3090 register int rtnval
;
3092 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
3093 && (errno
== EINTR
));
3098 sys_write (fildes
, buf
, nbyte
)
3103 register int rtnval
, bytes_written
;
3109 rtnval
= write (fildes
, buf
, nbyte
);
3116 return (bytes_written
? bytes_written
: -1);
3121 bytes_written
+= rtnval
;
3123 return (bytes_written
);
3126 #endif /* INTERRUPTIBLE_IO */
3131 * Substitute fork for vfork on USG flavors.
3139 #endif /* not WINDOWSNT */
3140 #endif /* not HAVE_VFORK */
3144 * All of the following are for USG.
3146 * On USG systems the system calls are INTERRUPTIBLE by signals
3147 * that the user program has elected to catch. Thus the system call
3148 * must be retried in these cases. To handle this without massive
3149 * changes in the source code, we remap the standard system call names
3150 * to names for our own functions in sysdep.c that do the system call
3151 * with retries. Actually, for portability reasons, it is good
3152 * programming practice, as this example shows, to limit all actual
3153 * system calls to a single occurrence in the source. Sure, this
3154 * adds an extra level of function call overhead but it is almost
3155 * always negligible. Fred Fish, Unisoft Systems Inc.
3158 #ifndef HAVE_SYS_SIGLIST
3159 char *sys_siglist
[NSIG
+ 1] =
3162 /* AIX has changed the signals a bit */
3163 "bogus signal", /* 0 */
3164 "hangup", /* 1 SIGHUP */
3165 "interrupt", /* 2 SIGINT */
3166 "quit", /* 3 SIGQUIT */
3167 "illegal instruction", /* 4 SIGILL */
3168 "trace trap", /* 5 SIGTRAP */
3169 "IOT instruction", /* 6 SIGIOT */
3170 "crash likely", /* 7 SIGDANGER */
3171 "floating point exception", /* 8 SIGFPE */
3172 "kill", /* 9 SIGKILL */
3173 "bus error", /* 10 SIGBUS */
3174 "segmentation violation", /* 11 SIGSEGV */
3175 "bad argument to system call", /* 12 SIGSYS */
3176 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3177 "alarm clock", /* 14 SIGALRM */
3178 "software termination signum", /* 15 SIGTERM */
3179 "user defined signal 1", /* 16 SIGUSR1 */
3180 "user defined signal 2", /* 17 SIGUSR2 */
3181 "death of a child", /* 18 SIGCLD */
3182 "power-fail restart", /* 19 SIGPWR */
3183 "bogus signal", /* 20 */
3184 "bogus signal", /* 21 */
3185 "bogus signal", /* 22 */
3186 "bogus signal", /* 23 */
3187 "bogus signal", /* 24 */
3188 "LAN I/O interrupt", /* 25 SIGAIO */
3189 "PTY I/O interrupt", /* 26 SIGPTY */
3190 "I/O intervention required", /* 27 SIGIOINT */
3192 "HFT grant", /* 28 SIGGRANT */
3193 "HFT retract", /* 29 SIGRETRACT */
3194 "HFT sound done", /* 30 SIGSOUND */
3195 "HFT input ready", /* 31 SIGMSG */
3198 "bogus signal", /* 0 */
3199 "hangup", /* 1 SIGHUP */
3200 "interrupt", /* 2 SIGINT */
3201 "quit", /* 3 SIGQUIT */
3202 "illegal instruction", /* 4 SIGILL */
3203 "trace trap", /* 5 SIGTRAP */
3204 "IOT instruction", /* 6 SIGIOT */
3205 "EMT instruction", /* 7 SIGEMT */
3206 "floating point exception", /* 8 SIGFPE */
3207 "kill", /* 9 SIGKILL */
3208 "bus error", /* 10 SIGBUS */
3209 "segmentation violation", /* 11 SIGSEGV */
3210 "bad argument to system call", /* 12 SIGSYS */
3211 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3212 "alarm clock", /* 14 SIGALRM */
3213 "software termination signum", /* 15 SIGTERM */
3214 "user defined signal 1", /* 16 SIGUSR1 */
3215 "user defined signal 2", /* 17 SIGUSR2 */
3216 "death of a child", /* 18 SIGCLD */
3217 "power-fail restart", /* 19 SIGPWR */
3219 "window size change", /* 20 SIGWINCH */
3220 "urgent socket condition", /* 21 SIGURG */
3221 "pollable event occurred", /* 22 SIGPOLL */
3222 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
3223 "user stop requested from tty", /* 24 SIGTSTP */
3224 "stopped process has been continued", /* 25 SIGCONT */
3225 "background tty read attempted", /* 26 SIGTTIN */
3226 "background tty write attempted", /* 27 SIGTTOU */
3227 "virtual timer expired", /* 28 SIGVTALRM */
3228 "profiling timer expired", /* 29 SIGPROF */
3229 "exceeded cpu limit", /* 30 SIGXCPU */
3230 "exceeded file size limit", /* 31 SIGXFSZ */
3231 "process's lwps are blocked", /* 32 SIGWAITING */
3232 "special signal used by thread library", /* 33 SIGLWP */
3234 "Special Signal Used By CPR", /* 34 SIGFREEZE */
3237 "Special Signal Used By CPR", /* 35 SIGTHAW */
3240 #endif /* not AIX */
3243 #endif /* HAVE_SYS_SIGLIST */
3246 * Warning, this function may not duplicate 4.2 action properly
3247 * under error conditions.
3251 /* In 4.1, param.h fails to define this. */
3252 #define MAXPATHLEN 1024
3261 char *npath
, *spath
;
3262 extern char *getcwd ();
3264 BLOCK_INPUT
; /* getcwd uses malloc */
3265 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
3268 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3269 up to first slash. Should be harmless on other systems. */
3270 while (*npath
&& *npath
!= '/')
3272 strcpy (pathname
, npath
);
3273 free (spath
); /* getcwd uses malloc */
3278 #endif /* HAVE_GETWD */
3281 * Emulate rename using unlink/link. Note that this is
3282 * only partially correct. Also, doesn't enforce restriction
3283 * that files be of same type (regular->regular, dir->dir, etc).
3292 if (access (from
, 0) == 0)
3295 if (link (from
, to
) == 0)
3296 if (unlink (from
) == 0)
3308 /* HPUX curses library references perror, but as far as we know
3309 it won't be called. Anyway this definition will do for now. */
3315 #endif /* not HAVE_PERROR */
3321 * Emulate BSD dup2. First close newd if it already exists.
3322 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3323 * until we are, then close the unsuccessful ones.
3330 register int fd
, ret
;
3335 fd
= fcntl (oldd
, F_DUPFD
, newd
);
3337 error ("can't dup2 (%i,%i) : %s", oldd
, newd
, strerror (errno
));
3344 ret
= dup2 (old
,new);
3350 #endif /* not HAVE_DUP2 */
3353 * Gettimeofday. Simulate as much as possible. Only accurate
3354 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3355 * Only needed when subprocesses are defined.
3360 #ifndef HAVE_GETTIMEOFDAY
3365 gettimeofday (tp
, tzp
)
3367 struct timezone
*tzp
;
3369 extern long time ();
3371 tp
->tv_sec
= time ((long *)0);
3374 tzp
->tz_minuteswest
= -1;
3381 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3384 * This function will go away as soon as all the stubs fixed. (fnf)
3391 printf ("%s not yet implemented\r\n", badfunc
);
3400 char *sys_siglist
[NSIG
+ 1] =
3402 "null signal", /* 0 SIGNULL */
3403 "hangup", /* 1 SIGHUP */
3404 "interrupt", /* 2 SIGINT */
3405 "quit", /* 3 SIGQUIT */
3406 "illegal instruction", /* 4 SIGILL */
3407 "trace trap", /* 5 SIGTRAP */
3408 "abort termination", /* 6 SIGABRT */
3409 "SIGEMT", /* 7 SIGEMT */
3410 "floating point exception", /* 8 SIGFPE */
3411 "kill", /* 9 SIGKILL */
3412 "bus error", /* 10 SIGBUS */
3413 "segmentation violation", /* 11 SIGSEGV */
3414 "bad argument to system call", /* 12 SIGSYS */
3415 "write on a pipe with no reader", /* 13 SIGPIPE */
3416 "alarm clock", /* 14 SIGALRM */
3417 "software termination signal", /* 15 SIGTERM */
3418 "user defined signal 1", /* 16 SIGUSR1 */
3419 "user defined signal 2", /* 17 SIGUSR2 */
3420 "child stopped or terminated", /* 18 SIGCLD */
3421 "power-fail restart", /* 19 SIGPWR */
3422 "window size changed", /* 20 SIGWINCH */
3423 "undefined", /* 21 */
3424 "pollable event occurred", /* 22 SIGPOLL */
3425 "sendable stop signal not from tty", /* 23 SIGSTOP */
3426 "stop signal from tty", /* 24 SIGSTP */
3427 "continue a stopped process", /* 25 SIGCONT */
3428 "attempted background tty read", /* 26 SIGTTIN */
3429 "attempted background tty write", /* 27 SIGTTOU */
3430 "undefined", /* 28 */
3431 "undefined", /* 29 */
3432 "undefined", /* 30 */
3433 "undefined", /* 31 */
3434 "undefined", /* 32 */
3435 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
3436 "I/O is possible", /* 34 SIGIO */
3437 "exceeded cpu time limit", /* 35 SIGXCPU */
3438 "exceeded file size limit", /* 36 SIGXFSZ */
3439 "virtual time alarm", /* 37 SIGVTALRM */
3440 "profiling time alarm", /* 38 SIGPROF */
3441 "undefined", /* 39 */
3442 "file record locks revoked", /* 40 SIGLOST */
3443 "undefined", /* 41 */
3444 "undefined", /* 42 */
3445 "undefined", /* 43 */
3446 "undefined", /* 44 */
3447 "undefined", /* 45 */
3448 "undefined", /* 46 */
3449 "undefined", /* 47 */
3450 "undefined", /* 48 */
3451 "undefined", /* 49 */
3452 "undefined", /* 50 */
3453 "undefined", /* 51 */
3454 "undefined", /* 52 */
3455 "undefined", /* 53 */
3456 "undefined", /* 54 */
3457 "undefined", /* 55 */
3458 "undefined", /* 56 */
3459 "undefined", /* 57 */
3460 "undefined", /* 58 */
3461 "undefined", /* 59 */
3462 "undefined", /* 60 */
3463 "undefined", /* 61 */
3464 "undefined", /* 62 */
3465 "undefined", /* 63 */
3466 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
3472 /* Directory routines for systems that don't have them. */
3474 #ifdef SYSV_SYSTEM_DIR
3478 #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
3482 register DIR *dirp
; /* stream from opendir */
3486 rtnval
= sys_close (dirp
->dd_fd
);
3488 /* Some systems (like Solaris) allocate the buffer and the DIR all
3489 in one block. Why in the world are we freeing this ourselves
3491 #if ! (defined (sun) && defined (USG5_4))
3492 xfree ((char *) dirp
->dd_buf
); /* directory block defined in <dirent.h> */
3494 xfree ((char *) dirp
);
3498 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3499 #endif /* SYSV_SYSTEM_DIR */
3501 #ifdef NONSYSTEM_DIR_LIBRARY
3505 char *filename
; /* name of directory */
3507 register DIR *dirp
; /* -> malloc'ed storage */
3508 register int fd
; /* file descriptor for read */
3509 struct stat sbuf
; /* result of fstat */
3511 fd
= sys_open (filename
, 0);
3516 if (fstat (fd
, &sbuf
) < 0
3517 || (sbuf
.st_mode
& S_IFMT
) != S_IFDIR
3518 || (dirp
= (DIR *) malloc (sizeof (DIR))) == 0)
3522 return 0; /* bad luck today */
3527 dirp
->dd_loc
= dirp
->dd_size
= 0; /* refill needed */
3534 register DIR *dirp
; /* stream from opendir */
3536 sys_close (dirp
->dd_fd
);
3537 xfree ((char *) dirp
);
3545 ino_t od_ino
; /* inode */
3546 char od_name
[DIRSIZ
]; /* filename */
3548 #endif /* not VMS */
3550 struct direct dir_static
; /* simulated directory contents */
3555 register DIR *dirp
; /* stream from opendir */
3558 register struct olddir
*dp
; /* -> directory data */
3560 register struct dir$_name
*dp
; /* -> directory data */
3561 register struct dir$_version
*dv
; /* -> version data */
3566 if (dirp
->dd_loc
>= dirp
->dd_size
)
3567 dirp
->dd_loc
= dirp
->dd_size
= 0;
3569 if (dirp
->dd_size
== 0 /* refill buffer */
3570 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3574 dp
= (struct olddir
*) &dirp
->dd_buf
[dirp
->dd_loc
];
3575 dirp
->dd_loc
+= sizeof (struct olddir
);
3577 if (dp
->od_ino
!= 0) /* not deleted entry */
3579 dir_static
.d_ino
= dp
->od_ino
;
3580 strncpy (dir_static
.d_name
, dp
->od_name
, DIRSIZ
);
3581 dir_static
.d_name
[DIRSIZ
] = '\0';
3582 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3583 dir_static
.d_reclen
= sizeof (struct direct
)
3585 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3586 return &dir_static
; /* -> simulated structure */
3589 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3590 if (dirp
->dd_loc
== 0)
3591 dirp
->dd_loc
= (dp
->dir$b_namecount
&1) ? dp
->dir$b_namecount
+ 1
3592 : dp
->dir$b_namecount
;
3593 dv
= (struct dir$_version
*)&dp
->dir$t_name
[dirp
->dd_loc
];
3594 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3595 dir_static
.d_namlen
= dp
->dir$b_namecount
;
3596 dir_static
.d_reclen
= sizeof (struct direct
)
3598 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3599 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3600 dir_static
.d_name
[dir_static
.d_namlen
] = '\0';
3601 dirp
->dd_loc
= dirp
->dd_size
; /* only one record at a time */
3608 /* readdirver is just like readdir except it returns all versions of a file
3609 as separate entries. */
3614 register DIR *dirp
; /* stream from opendir */
3616 register struct dir$_name
*dp
; /* -> directory data */
3617 register struct dir$_version
*dv
; /* -> version data */
3619 if (dirp
->dd_loc
>= dirp
->dd_size
- sizeof (struct dir$_name
))
3620 dirp
->dd_loc
= dirp
->dd_size
= 0;
3622 if (dirp
->dd_size
== 0 /* refill buffer */
3623 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3626 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3627 if (dirp
->dd_loc
== 0)
3628 dirp
->dd_loc
= (dp
->dir$b_namecount
& 1) ? dp
->dir$b_namecount
+ 1
3629 : dp
->dir$b_namecount
;
3630 dv
= (struct dir$_version
*) &dp
->dir$t_name
[dirp
->dd_loc
];
3631 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3632 sprintf (&dir_static
.d_name
[dp
->dir$b_namecount
], ";%d", dv
->dir$w_version
);
3633 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3634 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3635 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3
3636 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3637 dirp
->dd_loc
= ((char *) (++dv
) - dp
->dir$t_name
);
3643 #endif /* NONSYSTEM_DIR_LIBRARY */
3647 set_file_times (filename
, atime
, mtime
)
3649 EMACS_TIME atime
, mtime
;
3652 struct timeval tv
[2];
3655 return utimes (filename
, tv
);
3656 #else /* not HAVE_UTIMES */
3658 utb
.actime
= EMACS_SECS (atime
);
3659 utb
.modtime
= EMACS_SECS (mtime
);
3660 return utime (filename
, &utb
);
3661 #endif /* not HAVE_UTIMES */
3664 /* mkdir and rmdir functions, for systems which don't have them. */
3668 * Written by Robert Rother, Mariah Corporation, August 1985.
3670 * If you want it, it's yours. All I ask in return is that if you
3671 * figure out how to do this in a Bourne Shell script you send me
3673 * sdcsvax!rmr or rmr@uscd
3675 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3676 * subroutine. 11Mar86; hoptoad!gnu
3678 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3679 * subroutine didn't return EEXIST. It does now.
3685 #ifdef MKDIR_PROTOTYPE
3689 mkdir (dpath
, dmode
)
3694 int cpid
, status
, fd
;
3695 struct stat statbuf
;
3697 if (stat (dpath
, &statbuf
) == 0)
3699 errno
= EEXIST
; /* Stat worked, so it already exists */
3703 /* If stat fails for a reason other than non-existence, return error */
3704 if (errno
!= ENOENT
)
3707 synch_process_alive
= 1;
3708 switch (cpid
= fork ())
3711 case -1: /* Error in fork */
3712 return (-1); /* Errno is set already */
3714 case 0: /* Child process */
3716 * Cheap hack to set mode of new directory. Since this
3717 * child process is going away anyway, we zap its umask.
3718 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3719 * directory. Does anybody care?
3721 status
= umask (0); /* Get current umask */
3722 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
3723 fd
= sys_open("/dev/null", 2);
3730 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
3731 _exit (-1); /* Can't exec /bin/mkdir */
3733 default: /* Parent process */
3734 wait_for_termination (cpid
);
3737 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3739 errno
= EIO
; /* We don't know why, but */
3740 return -1; /* /bin/mkdir failed */
3745 #endif /* not HAVE_MKDIR */
3752 int cpid
, status
, fd
;
3753 struct stat statbuf
;
3755 if (stat (dpath
, &statbuf
) != 0)
3757 /* Stat just set errno. We don't have to */
3761 synch_process_alive
= 1;
3762 switch (cpid
= fork ())
3765 case -1: /* Error in fork */
3766 return (-1); /* Errno is set already */
3768 case 0: /* Child process */
3769 fd
= sys_open("/dev/null", 2);
3776 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
3777 _exit (-1); /* Can't exec /bin/rmdir */
3779 default: /* Parent process */
3780 wait_for_termination (cpid
);
3783 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3785 errno
= EIO
; /* We don't know why, but */
3786 return -1; /* /bin/rmdir failed */
3791 #endif /* !HAVE_RMDIR */
3795 /* Functions for VMS */
3797 #include "vms-pwd.h"
3802 /* Return as a string the VMS error string pertaining to STATUS.
3803 Reuses the same static buffer each time it is called. */
3807 int status
; /* VMS status code */
3811 static char buf
[257];
3813 bufadr
[0] = sizeof buf
- 1;
3814 bufadr
[1] = (int) buf
;
3815 if (! (SYS$
GETMSG (status
, &len
, bufadr
, 0x1, 0) & 1))
3816 return "untranslatable VMS error status";
3824 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3825 * not work correctly. (It also doesn't work well in version 2.3.)
3830 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3831 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3835 unsigned short s_buflen
;
3836 unsigned short s_code
;
3838 unsigned short *s_retlenadr
;
3842 #define buflen s.s_buflen
3843 #define code s.s_code
3844 #define bufadr s.s_bufadr
3845 #define retlenadr s.s_retlenadr
3847 #define R_OK 4 /* test for read permission */
3848 #define W_OK 2 /* test for write permission */
3849 #define X_OK 1 /* test for execute (search) permission */
3850 #define F_OK 0 /* test for presence of file */
3853 sys_access (path
, mode
)
3857 static char *user
= NULL
;
3860 /* translate possible directory spec into .DIR file name, so brain-dead
3861 * access can treat the directory like a file. */
3862 if (directory_file_name (path
, dir_fn
))
3866 return access (path
, mode
);
3867 if (user
== NULL
&& (user
= (char *) getenv ("USER")) == NULL
)
3873 unsigned short int dummy
;
3875 static int constant
= ACL$C_FILE
;
3876 DESCRIPTOR (path_desc
, path
);
3877 DESCRIPTOR (user_desc
, user
);
3881 if ((mode
& X_OK
) && ((stat
= access (path
, mode
)) < 0 || mode
== X_OK
))
3884 acces
|= CHP$M_READ
;
3886 acces
|= CHP$M_WRITE
;
3887 itemlst
[0].buflen
= sizeof (int);
3888 itemlst
[0].code
= CHP$_FLAGS
;
3889 itemlst
[0].bufadr
= (char *) &flags
;
3890 itemlst
[0].retlenadr
= &dummy
;
3891 itemlst
[1].buflen
= sizeof (int);
3892 itemlst
[1].code
= CHP$_ACCESS
;
3893 itemlst
[1].bufadr
= (char *) &acces
;
3894 itemlst
[1].retlenadr
= &dummy
;
3895 itemlst
[2].end
= CHP$_END
;
3896 stat
= SYS$
CHECK_ACCESS (&constant
, &path_desc
, &user_desc
, itemlst
);
3897 return stat
== SS$_NORMAL
? 0 : -1;
3901 #else /* not VMS4_4 */
3904 #define ACE$M_WRITE 2
3905 #define ACE$C_KEYID 1
3907 static unsigned short memid
, grpid
;
3908 static unsigned int uic
;
3910 /* Called from init_sys_modes, so it happens not very often
3911 but at least each time Emacs is loaded. */
3913 sys_access_reinit ()
3919 sys_access (filename
, type
)
3925 int status
, size
, i
, typecode
, acl_controlled
;
3926 unsigned int *aclptr
, *aclend
, aclbuf
[60];
3927 union prvdef prvmask
;
3929 /* Get UIC and GRP values for protection checking. */
3932 status
= LIB$
GETJPI (&JPI$_UIC
, 0, 0, &uic
, 0, 0);
3935 memid
= uic
& 0xFFFF;
3939 if (type
!= 2) /* not checking write access */
3940 return access (filename
, type
);
3942 /* Check write protection. */
3944 #define CHECKPRIV(bit) (prvmask.bit)
3945 #define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
3947 /* Find privilege bits */
3948 status
= SYS$
SETPRV (0, 0, 0, prvmask
);
3950 error ("Unable to find privileges: %s", vmserrstr (status
));
3951 if (CHECKPRIV (PRV$V_BYPASS
))
3952 return 0; /* BYPASS enabled */
3954 fab
.fab$b_fac
= FAB$M_GET
;
3955 fab
.fab$l_fna
= filename
;
3956 fab
.fab$b_fns
= strlen (filename
);
3957 fab
.fab$l_xab
= &xab
;
3958 xab
= cc$rms_xabpro
;
3959 xab
.xab$l_aclbuf
= aclbuf
;
3960 xab
.xab$w_aclsiz
= sizeof (aclbuf
);
3961 status
= SYS$
OPEN (&fab
, 0, 0);
3964 SYS$
CLOSE (&fab
, 0, 0);
3965 /* Check system access */
3966 if (CHECKPRIV (PRV$V_SYSPRV
) && WRITABLE (XAB$V_SYS
))
3968 /* Check ACL entries, if any */
3970 if (xab
.xab$w_acllen
> 0)
3973 aclend
= &aclbuf
[xab
.xab$w_acllen
/ 4];
3974 while (*aclptr
&& aclptr
< aclend
)
3976 size
= (*aclptr
& 0xff) / 4;
3977 typecode
= (*aclptr
>> 8) & 0xff;
3978 if (typecode
== ACE$C_KEYID
)
3979 for (i
= size
- 1; i
> 1; i
--)
3980 if (aclptr
[i
] == uic
)
3983 if (aclptr
[1] & ACE$M_WRITE
)
3984 return 0; /* Write access through ACL */
3986 aclptr
= &aclptr
[size
];
3988 if (acl_controlled
) /* ACL specified, prohibits write access */
3991 /* No ACL entries specified, check normal protection */
3992 if (WRITABLE (XAB$V_WLD
)) /* World writable */
3994 if (WRITABLE (XAB$V_GRP
) &&
3995 (unsigned short) (xab
.xab$l_uic
>> 16) == grpid
)
3996 return 0; /* Group writable */
3997 if (WRITABLE (XAB$V_OWN
) &&
3998 (xab
.xab$l_uic
& 0xFFFF) == memid
)
3999 return 0; /* Owner writable */
4001 return -1; /* Not writable */
4003 #endif /* not VMS4_4 */
4006 static char vtbuf
[NAM$C_MAXRSS
+1];
4008 /* translate a vms file spec to a unix path */
4010 sys_translate_vms (vfile
)
4021 /* leading device or logical name is a root directory */
4022 if (p
= strchr (vfile
, ':'))
4031 if (*p
== '[' || *p
== '<')
4033 while (*++vfile
!= *p
+ 2)
4037 if (vfile
[-1] == *p
)
4060 static char utbuf
[NAM$C_MAXRSS
+1];
4062 /* translate a unix path to a VMS file spec */
4064 sys_translate_unix (ufile
)
4087 if (index (&ufile
[1], '/'))
4094 if (index (&ufile
[1], '/'))
4101 if (strncmp (ufile
, "./", 2) == 0)
4108 ufile
++; /* skip the dot */
4109 if (index (&ufile
[1], '/'))
4114 else if (strncmp (ufile
, "../", 3) == 0)
4122 ufile
+= 2; /* skip the dots */
4123 if (index (&ufile
[1], '/'))
4148 extern char *getcwd ();
4150 #define MAXPATHLEN 1024
4152 ptr
= xmalloc (MAXPATHLEN
);
4153 val
= getcwd (ptr
, MAXPATHLEN
);
4159 strcpy (pathname
, ptr
);
4168 long item_code
= JPI$_OWNER
;
4169 unsigned long parent_id
;
4172 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &parent_id
)) & 1) == 0)
4175 vaxc$errno
= status
;
4185 return (getgid () << 16) | getuid ();
4189 sys_read (fildes
, buf
, nbyte
)
4194 return read (fildes
, buf
, (nbyte
< MAXIOSIZE
? nbyte
: MAXIOSIZE
));
4199 sys_write (fildes
, buf
, nbyte
)
4204 register int nwrote
, rtnval
= 0;
4206 while (nbyte
> MAXIOSIZE
&& (nwrote
= write (fildes
, buf
, MAXIOSIZE
)) > 0) {
4212 return rtnval
? rtnval
: -1;
4213 if ((nwrote
= write (fildes
, buf
, nbyte
)) < 0)
4214 return rtnval
? rtnval
: -1;
4215 return (rtnval
+ nwrote
);
4220 * VAX/VMS VAX C RTL really loses. It insists that records
4221 * end with a newline (carriage return) character, and if they
4222 * don't it adds one (nice of it isn't it!)
4224 * Thus we do this stupidity below.
4228 sys_write (fildes
, buf
, nbytes
)
4231 unsigned int nbytes
;
4238 fstat (fildes
, &st
);
4244 /* Handle fixed-length files with carriage control. */
4245 if (st
.st_fab_rfm
== FAB$C_FIX
4246 && ((st
.st_fab_rat
& (FAB$M_FTN
| FAB$M_CR
)) != 0))
4248 len
= st
.st_fab_mrs
;
4249 retval
= write (fildes
, p
, min (len
, nbytes
));
4252 retval
++; /* This skips the implied carriage control */
4256 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4257 while (*e
!= '\n' && e
> p
) e
--;
4258 if (p
== e
) /* Ok.. so here we add a newline... sigh. */
4259 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4261 retval
= write (fildes
, p
, len
);
4272 /* Create file NEW copying its attributes from file OLD. If
4273 OLD is 0 or does not exist, create based on the value of
4276 /* Protection value the file should ultimately have.
4277 Set by create_copy_attrs, and use by rename_sansversions. */
4278 static unsigned short int fab_final_pro
;
4281 creat_copy_attrs (old
, new)
4284 struct FAB fab
= cc$rms_fab
;
4285 struct XABPRO xabpro
;
4286 char aclbuf
[256]; /* Choice of size is arbitrary. See below. */
4287 extern int vms_stmlf_recfm
;
4291 fab
.fab$b_fac
= FAB$M_GET
;
4292 fab
.fab$l_fna
= old
;
4293 fab
.fab$b_fns
= strlen (old
);
4294 fab
.fab$l_xab
= (char *) &xabpro
;
4295 xabpro
= cc$rms_xabpro
;
4296 xabpro
.xab$l_aclbuf
= aclbuf
;
4297 xabpro
.xab$w_aclsiz
= sizeof aclbuf
;
4298 /* Call $OPEN to fill in the fab & xabpro fields. */
4299 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4301 SYS$
CLOSE (&fab
, 0, 0);
4302 fab
.fab$l_alq
= 0; /* zero the allocation quantity */
4303 if (xabpro
.xab$w_acllen
> 0)
4305 if (xabpro
.xab$w_acllen
> sizeof aclbuf
)
4306 /* If the acl buffer was too short, redo open with longer one.
4307 Wouldn't need to do this if there were some system imposed
4308 limit on the size of an ACL, but I can't find any such. */
4310 xabpro
.xab$l_aclbuf
= (char *) alloca (xabpro
.xab$w_acllen
);
4311 xabpro
.xab$w_aclsiz
= xabpro
.xab$w_acllen
;
4312 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4313 SYS$
CLOSE (&fab
, 0, 0);
4319 xabpro
.xab$l_aclbuf
= 0;
4324 fab
.fab$l_fna
= new;
4325 fab
.fab$b_fns
= strlen (new);
4329 fab
.fab$b_rfm
= vms_stmlf_recfm
? FAB$C_STMLF
: FAB$C_VAR
;
4330 fab
.fab$b_rat
= FAB$M_CR
;
4333 /* Set the file protections such that we will be able to manipulate
4334 this file. Once we are done writing and renaming it, we will set
4335 the protections back. */
4337 fab_final_pro
= xabpro
.xab$w_pro
;
4339 SYS$
SETDFPROT (0, &fab_final_pro
);
4340 xabpro
.xab$w_pro
&= 0xff0f; /* set O:rewd for now. This is set back later. */
4342 /* Create the new file with either default attrs or attrs copied
4344 if (!(SYS$
CREATE (&fab
, 0, 0) & 1))
4346 SYS$
CLOSE (&fab
, 0, 0);
4347 /* As this is a "replacement" for creat, return a file descriptor
4348 opened for writing. */
4349 return open (new, O_WRONLY
);
4354 #include <varargs.h>
4357 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4362 sys_creat (va_alist
)
4365 va_list list_incrementer
;
4368 int rfd
; /* related file descriptor */
4369 int fd
; /* Our new file descriptor */
4376 extern int vms_stmlf_recfm
;
4379 va_start (list_incrementer
);
4380 name
= va_arg (list_incrementer
, char *);
4381 mode
= va_arg (list_incrementer
, int);
4383 rfd
= va_arg (list_incrementer
, int);
4384 va_end (list_incrementer
);
4387 /* Use information from the related file descriptor to set record
4388 format of the newly created file. */
4389 fstat (rfd
, &st_buf
);
4390 switch (st_buf
.st_fab_rfm
)
4393 strcpy (rfm
, "rfm = fix");
4394 sprintf (mrs
, "mrs = %d", st_buf
.st_fab_mrs
);
4395 strcpy (rat
, "rat = ");
4396 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4398 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4399 strcat (rat
, "ftn");
4400 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4401 strcat (rat
, "prn");
4402 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4403 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4404 strcat (rat
, ", blk");
4406 strcat (rat
, "blk");
4407 return creat (name
, 0, rfm
, rat
, mrs
);
4410 strcpy (rfm
, "rfm = vfc");
4411 sprintf (fsz
, "fsz = %d", st_buf
.st_fab_fsz
);
4412 strcpy (rat
, "rat = ");
4413 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4415 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4416 strcat (rat
, "ftn");
4417 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4418 strcat (rat
, "prn");
4419 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4420 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4421 strcat (rat
, ", blk");
4423 strcat (rat
, "blk");
4424 return creat (name
, 0, rfm
, rat
, fsz
);
4427 strcpy (rfm
, "rfm = stm");
4431 strcpy (rfm
, "rfm = stmcr");
4435 strcpy (rfm
, "rfm = stmlf");
4439 strcpy (rfm
, "rfm = udf");
4443 strcpy (rfm
, "rfm = var");
4446 strcpy (rat
, "rat = ");
4447 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4449 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4450 strcat (rat
, "ftn");
4451 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4452 strcat (rat
, "prn");
4453 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4454 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4455 strcat (rat
, ", blk");
4457 strcat (rat
, "blk");
4461 strcpy (rfm
, vms_stmlf_recfm
? "rfm = stmlf" : "rfm=var");
4462 strcpy (rat
, "rat=cr");
4464 /* Until the VAX C RTL fixes the many bugs with modes, always use
4465 mode 0 to get the user's default protection. */
4466 fd
= creat (name
, 0, rfm
, rat
);
4467 if (fd
< 0 && errno
== EEXIST
)
4469 if (unlink (name
) < 0)
4470 report_file_error ("delete", build_string (name
));
4471 fd
= creat (name
, 0, rfm
, rat
);
4477 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4479 sys_fwrite (ptr
, size
, num
, fp
)
4480 register char * ptr
;
4483 register int tot
= num
* size
;
4491 * The VMS C library routine creat actually creates a new version of an
4492 * existing file rather than truncating the old version. There are times
4493 * when this is not the desired behavior, for instance, when writing an
4494 * auto save file (you only want one version), or when you don't have
4495 * write permission in the directory containing the file (but the file
4496 * itself is writable). Hence this routine, which is equivalent to
4497 * "close (creat (fn, 0));" on Unix if fn already exists.
4503 struct FAB xfab
= cc$rms_fab
;
4504 struct RAB xrab
= cc$rms_rab
;
4507 xfab
.fab$l_fop
= FAB$M_TEF
; /* free allocated but unused blocks on close */
4508 xfab
.fab$b_fac
= FAB$M_TRN
| FAB$M_GET
; /* allow truncate and get access */
4509 xfab
.fab$b_shr
= FAB$M_NIL
; /* allow no sharing - file must be locked */
4510 xfab
.fab$l_fna
= fn
;
4511 xfab
.fab$b_fns
= strlen (fn
);
4512 xfab
.fab$l_dna
= ";0"; /* default to latest version of the file */
4514 xrab
.rab$l_fab
= &xfab
;
4516 /* This gibberish opens the file, positions to the first record, and
4517 deletes all records from there until the end of file. */
4518 if ((SYS$
OPEN (&xfab
) & 01) == 01)
4520 if ((SYS$
CONNECT (&xrab
) & 01) == 01 &&
4521 (SYS$
FIND (&xrab
) & 01) == 01 &&
4522 (SYS$
TRUNCATE (&xrab
) & 01) == 01)
4533 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4534 SYSPRV or a readable SYSUAF.DAT. */
4540 * Routine to read the VMS User Authorization File and return
4541 * a specific user's record.
4544 static struct UAF retuaf
;
4547 get_uaf_name (uname
)
4554 uaf_fab
= cc$rms_fab
;
4555 uaf_rab
= cc$rms_rab
;
4556 /* initialize fab fields */
4557 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4558 uaf_fab
.fab$b_fns
= 21;
4559 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4560 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4561 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4562 /* initialize rab fields */
4563 uaf_rab
.rab$l_fab
= &uaf_fab
;
4564 /* open the User Authorization File */
4565 status
= SYS$
OPEN (&uaf_fab
);
4569 vaxc$errno
= status
;
4572 status
= SYS$
CONNECT (&uaf_rab
);
4576 vaxc$errno
= status
;
4579 /* read the requested record - index is in uname */
4580 uaf_rab
.rab$l_kbf
= uname
;
4581 uaf_rab
.rab$b_ksz
= strlen (uname
);
4582 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4583 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4584 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4585 status
= SYS$
GET (&uaf_rab
);
4589 vaxc$errno
= status
;
4592 /* close the User Authorization File */
4593 status
= SYS$
DISCONNECT (&uaf_rab
);
4597 vaxc$errno
= status
;
4600 status
= SYS$
CLOSE (&uaf_fab
);
4604 vaxc$errno
= status
;
4618 uaf_fab
= cc$rms_fab
;
4619 uaf_rab
= cc$rms_rab
;
4620 /* initialize fab fields */
4621 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4622 uaf_fab
.fab$b_fns
= 21;
4623 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4624 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4625 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4626 /* initialize rab fields */
4627 uaf_rab
.rab$l_fab
= &uaf_fab
;
4628 /* open the User Authorization File */
4629 status
= SYS$
OPEN (&uaf_fab
);
4633 vaxc$errno
= status
;
4636 status
= SYS$
CONNECT (&uaf_rab
);
4640 vaxc$errno
= status
;
4643 /* read the requested record - index is in uic */
4644 uaf_rab
.rab$b_krf
= 1; /* 1st alternate key */
4645 uaf_rab
.rab$l_kbf
= (char *) &uic
;
4646 uaf_rab
.rab$b_ksz
= sizeof uic
;
4647 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4648 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4649 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4650 status
= SYS$
GET (&uaf_rab
);
4654 vaxc$errno
= status
;
4657 /* close the User Authorization File */
4658 status
= SYS$
DISCONNECT (&uaf_rab
);
4662 vaxc$errno
= status
;
4665 status
= SYS$
CLOSE (&uaf_fab
);
4669 vaxc$errno
= status
;
4675 static struct passwd retpw
;
4683 /* copy these out first because if the username is 32 chars, the next
4684 section will overwrite the first byte of the UIC */
4685 retpw
.pw_uid
= up
->uaf$w_mem
;
4686 retpw
.pw_gid
= up
->uaf$w_grp
;
4688 /* I suppose this is not the best style, to possibly overwrite one
4689 byte beyond the end of the field, but what the heck... */
4690 ptr
= &up
->uaf$t_username
[UAF$S_USERNAME
];
4691 while (ptr
[-1] == ' ')
4694 strcpy (retpw
.pw_name
, up
->uaf$t_username
);
4696 /* the rest of these are counted ascii strings */
4697 strncpy (retpw
.pw_gecos
, &up
->uaf$t_owner
[1], up
->uaf$t_owner
[0]);
4698 retpw
.pw_gecos
[up
->uaf$t_owner
[0]] = '\0';
4699 strncpy (retpw
.pw_dir
, &up
->uaf$t_defdev
[1], up
->uaf$t_defdev
[0]);
4700 retpw
.pw_dir
[up
->uaf$t_defdev
[0]] = '\0';
4701 strncat (retpw
.pw_dir
, &up
->uaf$t_defdir
[1], up
->uaf$t_defdir
[0]);
4702 retpw
.pw_dir
[up
->uaf$t_defdev
[0] + up
->uaf$t_defdir
[0]] = '\0';
4703 strncpy (retpw
.pw_shell
, &up
->uaf$t_defcli
[1], up
->uaf$t_defcli
[0]);
4704 retpw
.pw_shell
[up
->uaf$t_defcli
[0]] = '\0';
4708 #else /* not READ_SYSUAF */
4709 static struct passwd retpw
;
4710 #endif /* not READ_SYSUAF */
4721 unsigned char * full
;
4722 #endif /* READ_SYSUAF */
4727 if ('a' <= *ptr
&& *ptr
<= 'z')
4732 if (!(up
= get_uaf_name (name
)))
4734 return cnv_uaf_pw (up
);
4736 if (strcmp (name
, getenv ("USER")) == 0)
4738 retpw
.pw_uid
= getuid ();
4739 retpw
.pw_gid
= getgid ();
4740 strcpy (retpw
.pw_name
, name
);
4741 if (full
= egetenv ("FULLNAME"))
4742 strcpy (retpw
.pw_gecos
, full
);
4744 *retpw
.pw_gecos
= '\0';
4745 strcpy (retpw
.pw_dir
, egetenv ("HOME"));
4746 *retpw
.pw_shell
= '\0';
4751 #endif /* not READ_SYSUAF */
4761 if (!(up
= get_uaf_uic (uid
)))
4763 return cnv_uaf_pw (up
);
4765 if (uid
== sys_getuid ())
4766 return getpwnam (egetenv ("USER"));
4769 #endif /* not READ_SYSUAF */
4772 /* return total address space available to the current process. This is
4773 the sum of the current p0 size, p1 size and free page table entries
4779 unsigned long free_pages
;
4780 unsigned long frep0va
;
4781 unsigned long frep1va
;
4784 item_code
= JPI$_FREPTECNT
;
4785 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &free_pages
)) & 1) == 0)
4788 vaxc$errno
= status
;
4793 item_code
= JPI$_FREP0VA
;
4794 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep0va
)) & 1) == 0)
4797 vaxc$errno
= status
;
4800 item_code
= JPI$_FREP1VA
;
4801 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep1va
)) & 1) == 0)
4804 vaxc$errno
= status
;
4808 return free_pages
+ frep0va
+ (0x7fffffff - frep1va
);
4812 define_logical_name (varname
, string
)
4816 struct dsc$descriptor_s strdsc
=
4817 {strlen (string
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, string
};
4818 struct dsc$descriptor_s envdsc
=
4819 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4820 struct dsc$descriptor_s lnmdsc
=
4821 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4823 return LIB$
SET_LOGICAL (&envdsc
, &strdsc
, &lnmdsc
, 0, 0);
4827 delete_logical_name (varname
)
4830 struct dsc$descriptor_s envdsc
=
4831 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4832 struct dsc$descriptor_s lnmdsc
=
4833 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4835 return LIB$
DELETE_LOGICAL (&envdsc
, &lnmdsc
);
4853 error ("execvp system call not implemented");
4862 struct FAB from_fab
= cc$rms_fab
, to_fab
= cc$rms_fab
;
4863 struct NAM from_nam
= cc$rms_nam
, to_nam
= cc$rms_nam
;
4864 char from_esn
[NAM$C_MAXRSS
];
4865 char to_esn
[NAM$C_MAXRSS
];
4867 from_fab
.fab$l_fna
= from
;
4868 from_fab
.fab$b_fns
= strlen (from
);
4869 from_fab
.fab$l_nam
= &from_nam
;
4870 from_fab
.fab$l_fop
= FAB$M_NAM
;
4872 from_nam
.nam$l_esa
= from_esn
;
4873 from_nam
.nam$b_ess
= sizeof from_esn
;
4875 to_fab
.fab$l_fna
= to
;
4876 to_fab
.fab$b_fns
= strlen (to
);
4877 to_fab
.fab$l_nam
= &to_nam
;
4878 to_fab
.fab$l_fop
= FAB$M_NAM
;
4880 to_nam
.nam$l_esa
= to_esn
;
4881 to_nam
.nam$b_ess
= sizeof to_esn
;
4883 status
= SYS$
RENAME (&from_fab
, 0, 0, &to_fab
);
4889 if (status
== RMS$_DEV
)
4893 vaxc$errno
= status
;
4898 /* This function renames a file like `rename', but it strips
4899 the version number from the "to" filename, such that the "to" file is
4900 will always be a new version. It also sets the file protection once it is
4901 finished. The protection that we will use is stored in fab_final_pro,
4902 and was set when we did a creat_copy_attrs to create the file that we
4905 We could use the chmod function, but Eunichs uses 3 bits per user category
4906 to describe the protection, and VMS uses 4 (write and delete are separate
4907 bits). To maintain portability, the VMS implementation of `chmod' wires
4908 the W and D bits together. */
4911 static struct fibdef fib
; /* We need this initialized to zero */
4912 char vms_file_written
[NAM$C_MAXRSS
];
4915 rename_sans_version (from
,to
)
4922 struct FAB to_fab
= cc$rms_fab
;
4923 struct NAM to_nam
= cc$rms_nam
;
4924 struct dsc$descriptor fib_d
={sizeof (fib
),0,0,(char*) &fib
};
4925 struct dsc$descriptor fib_attr
[2]
4926 = {{sizeof (fab_final_pro
),ATR$C_FPRO
,0,(char*) &fab_final_pro
},{0,0,0,0}};
4927 char to_esn
[NAM$C_MAXRSS
];
4929 $
DESCRIPTOR (disk
,to_esn
);
4931 to_fab
.fab$l_fna
= to
;
4932 to_fab
.fab$b_fns
= strlen (to
);
4933 to_fab
.fab$l_nam
= &to_nam
;
4934 to_fab
.fab$l_fop
= FAB$M_NAM
;
4936 to_nam
.nam$l_esa
= to_esn
;
4937 to_nam
.nam$b_ess
= sizeof to_esn
;
4939 status
= SYS$
PARSE (&to_fab
, 0, 0); /* figure out the full file name */
4941 if (to_nam
.nam$l_fnb
&& NAM$M_EXP_VER
)
4942 *(to_nam
.nam$l_ver
) = '\0';
4944 stat
= rename (from
, to_esn
);
4948 strcpy (vms_file_written
, to_esn
);
4950 to_fab
.fab$l_fna
= vms_file_written
; /* this points to the versionless name */
4951 to_fab
.fab$b_fns
= strlen (vms_file_written
);
4953 /* Now set the file protection to the correct value */
4954 SYS$
OPEN (&to_fab
, 0, 0); /* This fills in the nam$w_fid fields */
4956 /* Copy these fields into the fib */
4957 fib
.fib$r_fid_overlay
.fib$w_fid
[0] = to_nam
.nam$w_fid
[0];
4958 fib
.fib$r_fid_overlay
.fib$w_fid
[1] = to_nam
.nam$w_fid
[1];
4959 fib
.fib$r_fid_overlay
.fib$w_fid
[2] = to_nam
.nam$w_fid
[2];
4961 SYS$
CLOSE (&to_fab
, 0, 0);
4963 stat
= SYS$
ASSIGN (&disk
, &chan
, 0, 0); /* open a channel to the disk */
4966 stat
= SYS$
QIOW (0, chan
, IO$_MODIFY
, iosb
, 0, 0, &fib_d
,
4967 0, 0, 0, &fib_attr
, 0);
4970 stat
= SYS$
DASSGN (chan
);
4973 strcpy (vms_file_written
, to_esn
); /* We will write this to the terminal*/
4984 unsigned short fid
[3];
4985 char esa
[NAM$C_MAXRSS
];
4988 fab
.fab$l_fop
= FAB$M_OFP
;
4989 fab
.fab$l_fna
= file
;
4990 fab
.fab$b_fns
= strlen (file
);
4991 fab
.fab$l_nam
= &nam
;
4994 nam
.nam$l_esa
= esa
;
4995 nam
.nam$b_ess
= NAM$C_MAXRSS
;
4997 status
= SYS$
PARSE (&fab
);
4998 if ((status
& 1) == 0)
5001 vaxc$errno
= status
;
5004 status
= SYS$
SEARCH (&fab
);
5005 if ((status
& 1) == 0)
5008 vaxc$errno
= status
;
5012 fid
[0] = nam
.nam$w_fid
[0];
5013 fid
[1] = nam
.nam$w_fid
[1];
5014 fid
[2] = nam
.nam$w_fid
[2];
5016 fab
.fab$l_fna
= new;
5017 fab
.fab$b_fns
= strlen (new);
5019 status
= SYS$
PARSE (&fab
);
5020 if ((status
& 1) == 0)
5023 vaxc$errno
= status
;
5027 nam
.nam$w_fid
[0] = fid
[0];
5028 nam
.nam$w_fid
[1] = fid
[1];
5029 nam
.nam$w_fid
[2] = fid
[2];
5031 nam
.nam$l_esa
= nam
.nam$l_name
;
5032 nam
.nam$b_esl
= nam
.nam$b_name
+ nam
.nam$b_type
+ nam
.nam$b_ver
;
5034 status
= SYS$
ENTER (&fab
);
5035 if ((status
& 1) == 0)
5038 vaxc$errno
= status
;
5049 printf ("%s not yet implemented\r\n", badfunc
);
5057 /* Arrange to return a range centered on zero. */
5058 return rand () - (1 << 30);
5070 /* Called from init_sys_modes. */
5076 /* If we're not on an HFT we shouldn't do any of this. We determine
5077 if we are on an HFT by trying to get an HFT error code. If this
5078 call fails, we're not on an HFT. */
5080 if (ioctl (0, HFQERROR
, &junk
) < 0)
5082 #else /* not IBMR2AIX */
5083 if (ioctl (0, HFQEIO
, 0) < 0)
5085 #endif /* not IBMR2AIX */
5087 /* On AIX the default hft keyboard mapping uses backspace rather than delete
5088 as the rubout key's ASCII code. Here this is changed. The bug is that
5089 there's no way to determine the old mapping, so in reset_sys_modes
5090 we need to assume that the normal map had been present. Of course, this
5091 code also doesn't help if on a terminal emulator which doesn't understand
5095 struct hfkeymap keymap
;
5097 buf
.hf_bufp
= (char *)&keymap
;
5098 buf
.hf_buflen
= sizeof (keymap
);
5099 keymap
.hf_nkeys
= 2;
5100 keymap
.hfkey
[0].hf_kpos
= 15;
5101 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5103 keymap
.hfkey
[0].hf_keyidh
= '<';
5104 #else /* not IBMR2AIX */
5105 keymap
.hfkey
[0].hf_page
= '<';
5106 #endif /* not IBMR2AIX */
5107 keymap
.hfkey
[0].hf_char
= 127;
5108 keymap
.hfkey
[1].hf_kpos
= 15;
5109 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5111 keymap
.hfkey
[1].hf_keyidh
= '<';
5112 #else /* not IBMR2AIX */
5113 keymap
.hfkey
[1].hf_page
= '<';
5114 #endif /* not IBMR2AIX */
5115 keymap
.hfkey
[1].hf_char
= 127;
5116 hftctl (0, HFSKBD
, &buf
);
5118 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
5120 line_ins_del_ok
= char_ins_del_ok
= 0;
5123 /* Reset the rubout key to backspace. */
5129 struct hfkeymap keymap
;
5133 if (ioctl (0, HFQERROR
, &junk
) < 0)
5135 #else /* not IBMR2AIX */
5136 if (ioctl (0, HFQEIO
, 0) < 0)
5138 #endif /* not IBMR2AIX */
5140 buf
.hf_bufp
= (char *)&keymap
;
5141 buf
.hf_buflen
= sizeof (keymap
);
5142 keymap
.hf_nkeys
= 2;
5143 keymap
.hfkey
[0].hf_kpos
= 15;
5144 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5146 keymap
.hfkey
[0].hf_keyidh
= '<';
5147 #else /* not IBMR2AIX */
5148 keymap
.hfkey
[0].hf_page
= '<';
5149 #endif /* not IBMR2AIX */
5150 keymap
.hfkey
[0].hf_char
= 8;
5151 keymap
.hfkey
[1].hf_kpos
= 15;
5152 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5154 keymap
.hfkey
[1].hf_keyidh
= '<';
5155 #else /* not IBMR2AIX */
5156 keymap
.hfkey
[1].hf_page
= '<';
5157 #endif /* not IBMR2AIX */
5158 keymap
.hfkey
[1].hf_char
= 8;
5159 hftctl (0, HFSKBD
, &buf
);
5166 /* These are included on Sunos 4.1 when we do not use shared libraries.
5167 X11 libraries may refer to these functions but (we hope) do not
5168 actually call them. */
5188 #endif /* USE_DL_STUBS */
5197 register int length
;
5201 long max_str
= 65535;
5203 while (length
> max_str
) {
5204 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5209 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5211 while (length
-- > 0)
5213 #endif /* not VMS */
5216 #endif /* no bzero */
5217 #endif /* BSTRING */
5219 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5222 /* Saying `void' requires a declaration, above, where bcopy is used
5223 and that declaration causes pain for systems where bcopy is a macro. */
5224 bcopy (b1
, b2
, length
)
5227 register int length
;
5230 long max_str
= 65535;
5232 while (length
> max_str
) {
5233 (void) LIB$
MOVC3 (&max_str
, b1
, b2
);
5239 (void) LIB$
MOVC3 (&length
, b1
, b2
);
5241 while (length
-- > 0)
5243 #endif /* not VMS */
5245 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5250 bcmp (b1
, b2
, length
) /* This could be a macro! */
5253 register int length
;
5256 struct dsc$descriptor_s src1
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b1
};
5257 struct dsc$descriptor_s src2
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b2
};
5259 return STR$
COMPARE (&src1
, &src2
);
5261 while (length
-- > 0)
5266 #endif /* not VMS */
5268 #endif /* no bcmp */
5269 #endif /* not BSTRING */