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"
34 #define min(x,y) ((x) > (y) ? (y) : (x))
36 /* In this file, open, read and write refer to the system calls,
37 not our sugared interfaces sys_open, sys_read and sys_write.
38 Contrariwise, for systems where we use the system calls directly,
39 define sys_read, etc. here as aliases for them. */
42 #define sys_write write
43 #endif /* `read' is not a macro */
53 #endif /* not WINDOWSNT */
56 #define sys_close close
63 #else /* `open' is a macro */
65 #endif /* `open' is a macro */
67 /* Does anyone other than VMS need this? */
69 #define sys_fwrite fwrite
79 #include <sys/types.h>
83 /* Get _POSIX_VDISABLE, if it is available. */
88 /* Get SI_SRPC_DOMAIN, if it is available. */
89 #ifdef HAVE_SYS_SYSTEMINFO_H
90 #include <sys/systeminfo.h>
93 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
97 #include <sys/param.h>
101 extern unsigned start
__asm__ ("start");
119 #include <sys/file.h>
127 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
131 #ifdef BSD_SYSTEM /* avoid writing defined (BSD_SYSTEM) || defined (USG)
132 because the vms compiler doesn't grok `defined' */
140 #endif /* not 4.1 bsd */
143 #include <sys/ioctl.h>
149 #ifdef BROKEN_TIOCGWINSZ
155 #include <sys/utsname.h>
157 #ifndef MEMORY_IN_STRING_H
160 #if defined (TIOCGWINSZ) || defined (ISC4_0)
162 #include <sys/sioctl.h>
165 #include <sys/stream.h>
166 #include <sys/ptem.h>
168 #endif /* TIOCGWINSZ or ISC4_0 */
171 extern int quit_char
;
175 #include "termhooks.h"
176 #include "termchar.h"
177 #include "termopts.h"
178 #include "dispextern.h"
183 /* In process.h which conflicts with the local copy. */
185 int _CRTAPI1
_spawnlp (int, const char *, const char *, ...);
186 int _CRTAPI1
_getpid (void);
189 #ifdef NONSYSTEM_DIR_LIBRARY
191 #endif /* NONSYSTEM_DIR_LIBRARY */
193 #include "syssignal.h"
200 #ifndef HAVE_STRUCT_UTIMBUF
201 /* We want to use utime rather than utimes, but we couldn't find the
202 structure declaration. We'll use the traditional one. */
210 #ifndef VFORK_RETURN_TYPE
211 #define VFORK_RETURN_TYPE int
214 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
220 #define LNOFLSH 0100000
223 static int baud_convert
[] =
228 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
229 1800, 2400, 4800, 9600, 19200, 38400
233 #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
;
241 /* The file descriptor for Emacs's input terminal.
242 Under Unix, this is normally zero except when using X;
243 under VMS, we place the input channel number here. */
246 /* Specify a different file descriptor for further input operations. */
255 /* Discard pending input on descriptor input_fd. */
260 struct emacs_tty buf
;
265 /* Discarding input is not safe when the input could contain
266 replies from the X server. So don't do it. */
267 if (read_socket_hook
)
272 SYS$
QIOW (0, input_fd
, IO$_READVBLK
|IO$M_PURGE
, input_iosb
, 0, 0,
273 &buf
.main
, 0, 0, terminator_mask
, 0, 0);
279 ioctl (input_fd
, TIOCFLUSH
, &zero
);
281 #else /* not Apollo */
282 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
283 while (dos_keyread () != -1)
285 #else /* not MSDOS */
286 EMACS_GET_TTY (input_fd
, &buf
);
287 EMACS_SET_TTY (input_fd
, &buf
, 0);
288 #endif /* not MSDOS */
289 #endif /* not Apollo */
291 #endif /* not WINDOWSNT */
296 /* Arrange for character C to be read as the next input from
302 if (read_socket_hook
)
305 /* Should perhaps error if in batch mode */
307 ioctl (input_fd
, TIOCSTI
, &c
);
308 #else /* no TIOCSTI */
309 error ("Cannot stuff terminal input characters in this version of Unix");
310 #endif /* no TIOCSTI */
321 #ifdef INIT_BAUD_RATE
326 #else /* not DOS_NT */
330 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &sg
, 0, 0,
331 &sg
.class, 12, 0, 0, 0, 0 );
332 ospeed
= sg
.xmit_baud
;
338 tcgetattr (input_fd
, &sg
);
339 ospeed
= cfgetospeed (&sg
);
340 #if defined (USE_GETOBAUD) && defined (getobaud)
341 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
343 ospeed
= getobaud (sg
.c_cflag
);
345 #else /* neither VMS nor TERMIOS */
351 tcgetattr (input_fd
, &sg
);
353 ioctl (input_fd
, TCGETA
, &sg
);
355 ospeed
= sg
.c_cflag
& CBAUD
;
356 #else /* neither VMS nor TERMIOS nor TERMIO */
359 sg
.sg_ospeed
= B9600
;
360 if (ioctl (input_fd
, TIOCGETP
, &sg
) < 0)
362 ospeed
= sg
.sg_ospeed
;
363 #endif /* not HAVE_TERMIO */
364 #endif /* not HAVE_TERMIOS */
366 #endif /* not DOS_NT */
367 #endif /* not INIT_BAUD_RATE */
370 baud_rate
= (ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
371 ? baud_convert
[ospeed
] : 9600);
377 set_exclusive_use (fd
)
381 ioctl (fd
, FIOCLEX
, 0);
383 /* Ok to do nothing if this feature does not exist */
388 wait_without_blocking ()
391 wait3 (0, WNOHANG
| WUNTRACED
, 0);
393 croak ("wait_without_blocking");
395 synch_process_alive
= 0;
398 #endif /* not subprocesses */
400 int wait_debugging
; /* Set nonzero to make following function work under dbx
401 (at least for bsd). */
404 wait_for_termination_signal ()
407 /* Wait for subprocess with process id `pid' to terminate and
408 make sure it will get eliminated (not remain forever as a zombie) */
410 wait_for_termination (pid
)
419 status
= SYS$
FORCEX (&pid
, 0, 0);
422 #if defined (BSD_SYSTEM) || (defined (HPUX) && !defined (HPUX_5))
423 /* Note that kill returns -1 even if the process is just a zombie now.
424 But inevitably a SIGCHLD interrupt should be generated
425 and child_sig will do wait3 and make the process go away. */
426 /* There is some indication that there is a bug involved with
427 termination of subprocesses, perhaps involving a kernel bug too,
428 but no idea what it is. Just as a hunch we signal SIGCHLD to see
429 if that causes the problem to go away or get worse. */
430 sigsetmask (sigmask (SIGCHLD
));
431 if (0 > kill (pid
, 0))
433 sigsetmask (SIGEMPTYMASK
);
434 kill (getpid (), SIGCHLD
);
440 sigpause (SIGEMPTYMASK
);
441 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
442 #if defined (UNIPLUS)
443 if (0 > kill (pid
, 0))
446 #else /* neither BSD_SYSTEM nor UNIPLUS: random sysV */
447 #ifdef POSIX_SIGNALS /* would this work for LINUX as well? */
448 sigblock (sigmask (SIGCHLD
));
449 if (0 > kill (pid
, 0))
451 sigunblock (sigmask (SIGCHLD
));
454 sigpause (SIGEMPTYMASK
);
455 #else /* not POSIX_SIGNALS */
456 #ifdef HAVE_SYSV_SIGPAUSE
458 if (0 > kill (pid
, 0))
464 #else /* not HAVE_SYSV_SIGPAUSE */
468 #else /* not WINDOWSNT */
469 if (0 > kill (pid
, 0))
471 /* Using sleep instead of pause avoids timing error.
472 If the inferior dies just before the sleep,
473 we lose just one second. */
475 #endif /* not WINDOWSNT */
476 #endif /* not HAVE_SYSV_SIGPAUSE */
477 #endif /* not POSIX_SIGNALS */
478 #endif /* not UNIPLUS */
479 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
481 #else /* not subprocesses */
484 #else /* not __DJGPP__ > 1 */
486 if (kill (pid
, 0) < 0)
492 if (status
== pid
|| status
== -1)
495 #endif /* not __DJGPP__ > 1*/
496 #endif /* not subprocesses */
503 * flush any pending output
504 * (may flush input as well; it does not matter the way we use it)
507 flush_pending_output (channel
)
511 /* If we try this, we get hit with SIGTTIN, because
512 the child's tty belongs to the child's pgrp. */
515 ioctl (channel
, TCFLSH
, 1);
519 /* 3rd arg should be ignored
520 but some 4.2 kernels actually want the address of an int
521 and nonzero means something different. */
522 ioctl (channel
, TIOCFLUSH
, &zero
);
529 /* Set up the terminal at the other end of a pseudo-terminal that
530 we will be controlling an inferior through.
531 It should not echo or do line-editing, since that is done
532 in Emacs. No padding needed for insertion into an Emacs buffer. */
534 child_setup_tty (out
)
540 EMACS_GET_TTY (out
, &s
);
542 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
543 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
544 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
546 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
547 /* No output delays */
549 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
550 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
552 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
555 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
558 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
560 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
561 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
563 /* Said to be unnecessary: */
564 s
.main
.c_cc
[VMIN
] = 1; /* minimum number of characters to accept */
565 s
.main
.c_cc
[VTIME
] = 0; /* wait forever for at least 1 character */
568 s
.main
.c_lflag
|= ICANON
; /* Enable erase/kill and eof processing */
569 s
.main
.c_cc
[VEOF
] = 04; /* insure that EOF is Control-D */
570 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
571 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
574 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
578 /* AIX enhanced edit loses NULs, so disable it */
581 s
.main
.c_iflag
&= ~ASCEDIT
;
583 /* Also, PTY overloads NUL and BREAK.
584 don't ignore break, but don't signal either, so it looks like NUL. */
585 s
.main
.c_iflag
&= ~IGNBRK
;
586 s
.main
.c_iflag
&= ~BRKINT
;
587 /* QUIT and INTR work better as signals, so disable character forms */
588 s
.main
.c_cc
[VINTR
] = 0377;
589 #ifdef SIGNALS_VIA_CHARACTERS
590 /* the QUIT and INTR character are used in process_send_signal
591 so set them here to something useful. */
592 if (s
.main
.c_cc
[VQUIT
] == 0377)
593 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
594 if (s
.main
.c_cc
[VINTR
] == 0377)
595 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
596 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
597 /* QUIT and INTR work better as signals, so disable character forms */
598 s
.main
.c_cc
[VQUIT
] = 0377;
599 s
.main
.c_cc
[VINTR
] = 0377;
600 s
.main
.c_lflag
&= ~ISIG
;
601 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
602 s
.main
.c_cc
[VEOL
] = 0377;
603 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
606 #else /* not HAVE_TERMIO */
608 s
.main
.sg_flags
&= ~(ECHO
| CRMOD
| ANYP
| ALLDELAY
| RAW
| LCASE
610 s
.main
.sg_flags
|= LPASS8
;
611 s
.main
.sg_erase
= 0377;
612 s
.main
.sg_kill
= 0377;
613 s
.lmode
= LLITOUT
| s
.lmode
; /* Don't strip 8th bit */
615 #endif /* not HAVE_TERMIO */
617 EMACS_SET_TTY (out
, &s
, 0);
626 ioctl (out
, FIOASYNC
, &zero
);
629 #endif /* not DOS_NT */
633 #endif /* subprocesses */
635 /* Record a signal code and the handler for it. */
639 SIGTYPE (*handler
) ();
642 /* Suspend the Emacs process; give terminal to its superior. */
647 /* "Foster" parentage allows emacs to return to a subprocess that attached
648 to the current emacs as a cheaper than starting a whole new process. This
649 is set up by KEPTEDITOR.COM. */
650 unsigned long parent_id
, foster_parent_id
;
653 fpid_string
= getenv ("EMACS_PARENT_PID");
654 if (fpid_string
!= NULL
)
656 sscanf (fpid_string
, "%x", &foster_parent_id
);
657 if (foster_parent_id
!= 0)
658 parent_id
= foster_parent_id
;
660 parent_id
= getppid ();
663 parent_id
= getppid ();
665 xfree (fpid_string
); /* On VMS, this was malloc'd */
667 if (parent_id
&& parent_id
!= 0xffffffff)
669 SIGTYPE (*oldsig
)() = (int) signal (SIGINT
, SIG_IGN
);
670 int status
= LIB$
ATTACH (&parent_id
) & 1;
671 signal (SIGINT
, oldsig
);
680 d_prompt
.l
= sizeof ("Emacs: "); /* Our special prompt */
681 d_prompt
.a
= "Emacs: "; /* Just a reminder */
682 LIB$
SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt
, 0);
687 #if defined(SIGTSTP) && !defined(MSDOS)
690 int pgrp
= EMACS_GETPGRP (0);
691 EMACS_KILLPG (pgrp
, SIGTSTP
);
694 #else /* No SIGTSTP */
695 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
696 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
697 kill (getpid (), SIGQUIT
);
699 #else /* No SIGTSTP or USG_JOBCTRL */
701 /* On a system where suspending is not implemented,
702 instead fork a subshell and let it talk directly to the terminal
706 #endif /* no USG_JOBCTRL */
707 #endif /* no SIGTSTP */
711 /* Fork a subshell. */
716 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
718 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
721 struct save_signal saved_handlers
[5];
723 unsigned char *str
= 0;
726 saved_handlers
[0].code
= SIGINT
;
727 saved_handlers
[1].code
= SIGQUIT
;
728 saved_handlers
[2].code
= SIGTERM
;
730 saved_handlers
[3].code
= SIGIO
;
731 saved_handlers
[4].code
= 0;
733 saved_handlers
[3].code
= 0;
736 /* Mentioning current_buffer->buffer would mean including buffer.h,
737 which somehow wedges the hp compiler. So instead... */
739 dir
= intern ("default-directory");
740 if (NILP (Fboundp (dir
)))
742 dir
= Fsymbol_value (dir
);
746 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
747 str
= (unsigned char *) alloca (XSTRING (dir
)->size
+ 2);
748 len
= XSTRING (dir
)->size
;
749 bcopy (XSTRING (dir
)->data
, str
, len
);
750 if (str
[len
- 1] != '/') str
[len
++] = '/';
756 #else /* not WINDOWSNT */
761 save_signal_handlers (saved_handlers
);
762 synch_process_alive
= 1;
763 #endif /* __DJGPP__ > 1 */
767 error ("Can't spawn subshell");
771 #endif /* not WINDOWSNT */
775 #ifdef MSDOS /* MW, Aug 1993 */
778 sh
= (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
781 sh
= (char *) egetenv ("SHELL");
785 /* Use our buffer's default directory for the subshell. */
790 close_process_descs (); /* Close Emacs's pipes/ptys */
793 #ifdef SET_EMACS_PRIORITY
795 extern int emacs_priority
;
797 if (emacs_priority
< 0)
798 nice (-emacs_priority
);
802 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
805 #if 0 /* This is also reported if last command executed in subshell failed, KFS */
807 report_file_error ("Can't execute subshell", Fcons (build_string (sh
), Qnil
));
809 #else /* not MSDOS */
811 /* Waits for process completion */
812 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
814 write (1, "Can't execute subshell", 22);
817 #else /* not WINDOWSNT */
819 write (1, "Can't execute subshell", 22);
821 #endif /* not WINDOWSNT */
822 #endif /* not MSDOS */
825 /* Do this now if we did not do it before. */
826 #if !defined (MSDOS) || __DJGPP__ == 1
827 save_signal_handlers (saved_handlers
);
828 synch_process_alive
= 1;
832 wait_for_termination (pid
);
834 restore_signal_handlers (saved_handlers
);
835 synch_process_alive
= 0;
839 save_signal_handlers (saved_handlers
)
840 struct save_signal
*saved_handlers
;
842 while (saved_handlers
->code
)
844 saved_handlers
->handler
845 = (SIGTYPE (*) ()) signal (saved_handlers
->code
, SIG_IGN
);
850 restore_signal_handlers (saved_handlers
)
851 struct save_signal
*saved_handlers
;
853 while (saved_handlers
->code
)
855 signal (saved_handlers
->code
, saved_handlers
->handler
);
868 old_fcntl_flags
= fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
869 fcntl (fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
871 interrupts_deferred
= 0;
879 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
883 if (read_socket_hook
)
887 sigunblock (sigmask (SIGWINCH
));
889 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
891 interrupts_deferred
= 0;
896 if (read_socket_hook
)
900 sigblock (sigmask (SIGWINCH
));
902 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
);
903 interrupts_deferred
= 1;
906 #else /* no FASYNC */
907 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
913 if (read_socket_hook
)
916 ioctl (input_fd
, FIOASYNC
, &on
);
917 interrupts_deferred
= 0;
924 if (read_socket_hook
)
927 ioctl (input_fd
, FIOASYNC
, &off
);
928 interrupts_deferred
= 1;
931 #else /* not FASYNC, not STRIDE */
942 if (read_socket_hook
)
946 sigaddset(&st
, SIGIO
);
947 ioctl (input_fd
, FIOASYNC
, &on
);
948 interrupts_deferred
= 0;
949 sigprocmask(SIG_UNBLOCK
, &st
, (sigset_t
*)0);
956 if (read_socket_hook
)
959 ioctl (input_fd
, FIOASYNC
, &off
);
960 interrupts_deferred
= 1;
967 if (read_socket_hook
)
970 croak ("request_sigio");
975 if (read_socket_hook
)
978 croak ("unrequest_sigio");
986 /* Saving and restoring the process group of Emacs's terminal. */
990 /* The process group of which Emacs was a member when it initially
993 If Emacs was in its own process group (i.e. inherited_pgroup ==
994 getpid ()), then we know we're running under a shell with job
995 control (Emacs would never be run as part of a pipeline).
998 If Emacs was not in its own process group, then we know we're
999 running under a shell (or a caller) that doesn't know how to
1000 separate itself from Emacs (like sh). Emacs must be in its own
1001 process group in order to receive SIGIO correctly. In this
1002 situation, we put ourselves in our own pgroup, forcibly set the
1003 tty's pgroup to our pgroup, and make sure to restore and reinstate
1004 the tty's pgroup just like any other terminal setting. If
1005 inherited_group was not the tty's pgroup, then we'll get a
1006 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1007 it goes foreground in the future, which is what should happen. */
1008 int inherited_pgroup
;
1010 /* Split off the foreground process group to Emacs alone.
1011 When we are in the foreground, but not started in our own process
1012 group, redirect the TTY to point to our own process group. We need
1013 to be in our own process group to receive SIGIO properly. */
1014 narrow_foreground_group ()
1018 setpgrp (0, inherited_pgroup
);
1019 if (inherited_pgroup
!= me
)
1020 EMACS_SET_TTY_PGRP (input_fd
, &me
);
1024 /* Set the tty to our original foreground group. */
1025 widen_foreground_group ()
1027 if (inherited_pgroup
!= getpid ())
1028 EMACS_SET_TTY_PGRP (input_fd
, &inherited_pgroup
);
1029 setpgrp (0, inherited_pgroup
);
1032 #endif /* BSD_PGRPS */
1034 /* Getting and setting emacs_tty structures. */
1036 /* Set *TC to the parameters associated with the terminal FD.
1037 Return zero if all's well, or -1 if we ran into an error we
1038 couldn't deal with. */
1040 emacs_get_tty (fd
, settings
)
1042 struct emacs_tty
*settings
;
1044 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1046 /* We have those nifty POSIX tcmumbleattr functions. */
1047 if (tcgetattr (fd
, &settings
->main
) < 0)
1052 /* The SYSV-style interface? */
1053 if (ioctl (fd
, TCGETA
, &settings
->main
) < 0)
1058 /* Vehemently Monstrous System? :-) */
1059 if (! (SYS$
QIOW (0, fd
, IO$_SENSEMODE
, settings
, 0, 0,
1060 &settings
->main
.class, 12, 0, 0, 0, 0)
1066 /* I give up - I hope you have the BSD ioctls. */
1067 if (ioctl (fd
, TIOCGETP
, &settings
->main
) < 0)
1069 #endif /* not DOS_NT */
1074 /* Suivant - Do we have to get struct ltchars data? */
1076 if (ioctl (fd
, TIOCGLTC
, &settings
->ltchars
) < 0)
1080 /* How about a struct tchars and a wordful of lmode bits? */
1082 if (ioctl (fd
, TIOCGETC
, &settings
->tchars
) < 0
1083 || ioctl (fd
, TIOCLGET
, &settings
->lmode
) < 0)
1087 /* We have survived the tempest. */
1092 /* Set the parameters of the tty on FD according to the contents of
1093 *SETTINGS. If FLUSHP is non-zero, we discard input.
1094 Return 0 if all went well, and -1 if anything failed. */
1097 emacs_set_tty (fd
, settings
, flushp
)
1099 struct emacs_tty
*settings
;
1102 /* Set the primary parameters - baud rate, character size, etcetera. */
1105 /* We have those nifty POSIX tcmumbleattr functions.
1106 William J. Smith <wjs@wiis.wang.com> writes:
1107 "POSIX 1003.1 defines tcsetattr() to return success if it was
1108 able to perform any of the requested actions, even if some
1109 of the requested actions could not be performed.
1110 We must read settings back to ensure tty setup properly.
1111 AIX requires this to keep tty from hanging occasionally." */
1112 /* This make sure that we don't loop indefinitely in here. */
1113 for (i
= 0 ; i
< 10 ; i
++)
1114 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
1125 /* Get the current settings, and see if they're what we asked for. */
1126 tcgetattr (fd
, &new);
1127 /* We cannot use memcmp on the whole structure here because under
1128 * aix386 the termios structure has some reserved field that may
1131 if ( new.c_iflag
== settings
->main
.c_iflag
1132 && new.c_oflag
== settings
->main
.c_oflag
1133 && new.c_cflag
== settings
->main
.c_cflag
1134 && new.c_lflag
== settings
->main
.c_lflag
1135 && memcmp(new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
1143 /* The SYSV-style interface? */
1144 if (ioctl (fd
, flushp
? TCSETAF
: TCSETAW
, &settings
->main
) < 0)
1149 /* Vehemently Monstrous System? :-) */
1150 if (! (SYS$
QIOW (0, fd
, IO$_SETMODE
, &input_iosb
, 0, 0,
1151 &settings
->main
.class, 12, 0, 0, 0, 0)
1157 /* I give up - I hope you have the BSD ioctls. */
1158 if (ioctl (fd
, (flushp
) ? TIOCSETP
: TIOCSETN
, &settings
->main
) < 0)
1160 #endif /* not DOS_NT */
1166 /* Suivant - Do we have to get struct ltchars data? */
1168 if (ioctl (fd
, TIOCSLTC
, &settings
->ltchars
) < 0)
1172 /* How about a struct tchars and a wordful of lmode bits? */
1174 if (ioctl (fd
, TIOCSETC
, &settings
->tchars
) < 0
1175 || ioctl (fd
, TIOCLSET
, &settings
->lmode
) < 0)
1179 /* We have survived the tempest. */
1184 /* The initial tty mode bits */
1185 struct emacs_tty old_tty
;
1187 /* 1 if we have been through init_sys_modes. */
1190 /* 1 if outer tty status has been recorded. */
1194 /* BSD 4.1 needs to keep track of the lmode bits in order to start
1199 #ifndef F_SETOWN_BUG
1201 int old_fcntl_owner
;
1202 #endif /* F_SETOWN */
1203 #endif /* F_SETOWN_BUG */
1205 /* This may also be defined in stdio,
1206 but if so, this does no harm,
1207 and using the same name avoids wasting the other one's space. */
1209 #if defined (USG) || defined (DGUX)
1210 unsigned char _sobuf
[BUFSIZ
+8];
1212 char _sobuf
[BUFSIZ
];
1216 static struct ltchars new_ltchars
= {-1,-1,-1,-1,-1,-1};
1219 static struct tchars new_tchars
= {-1,-1,-1,-1,-1,-1};
1224 struct emacs_tty tty
;
1228 static int oob_chars
[2] = {0, 1 << 7}; /* catch C-g's */
1229 extern int (*interrupt_signal
) ();
1233 Vtty_erase_char
= Qnil
;
1240 input_ef
= get_kbd_event_flag ();
1241 /* LIB$GET_EF (&input_ef); */
1242 SYS$
CLREF (input_ef
);
1243 waiting_for_ast
= 0;
1245 timer_ef
= get_timer_event_flag ();
1246 /* LIB$GET_EF (&timer_ef); */
1247 SYS$
CLREF (timer_ef
);
1251 LIB$
GET_EF (&process_ef
);
1252 SYS$
CLREF (process_ef
);
1254 if (input_ef
/ 32 != process_ef
/ 32)
1255 croak ("Input and process event flags in different clusters.");
1257 if (input_ef
/ 32 != timer_ef
/ 32)
1258 croak ("Input and timer event flags in different clusters.");
1260 input_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1261 ((unsigned) 1 << (process_ef
% 32));
1263 timer_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1264 ((unsigned) 1 << (timer_ef
% 32));
1266 sys_access_reinit ();
1268 #endif /* not VMS */
1271 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1272 narrow_foreground_group ();
1275 #ifdef HAVE_WINDOW_SYSTEM
1276 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1277 needs the initialization code below. */
1278 if (!read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1281 EMACS_GET_TTY (input_fd
, &old_tty
);
1287 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1288 XSETINT (Vtty_erase_char
, old_tty
.main
.c_cc
[VERASE
]);
1291 /* This allows meta to be sent on 8th bit. */
1292 tty
.main
.c_iflag
&= ~INPCK
; /* don't check input for parity */
1294 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
1295 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
1296 #ifdef INLCR /* I'm just being cautious,
1297 since I can't check how widespread INLCR is--rms. */
1298 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
1301 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
1303 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
1304 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
1306 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
1308 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
1311 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
1313 tty
.main
.c_iflag
&= ~IXANY
;
1317 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
1318 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
1320 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
1324 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
1325 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
1328 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
1329 /* Set up C-g for both SIGQUIT and SIGINT.
1330 We don't know which we will get, but we handle both alike
1331 so which one it really gives us does not matter. */
1332 tty
.main
.c_cc
[VQUIT
] = quit_char
;
1333 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1334 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1336 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1339 #if defined (mips) || defined (HAVE_TCATTR)
1341 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off mips handling of C-z. */
1344 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off mips handling of C-y. */
1345 #endif /* V_DSUSP */
1346 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1347 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1350 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1353 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1354 #endif /* VREPRINT */
1356 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1357 #endif /* VWERASE */
1359 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1360 #endif /* VDISCARD */
1362 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1365 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1367 #endif /* mips or HAVE_TCATTR */
1368 #ifdef SET_LINE_DISCIPLINE
1369 /* Need to explicitly request TERMIODISC line discipline or
1370 Ultrix's termios does not work correctly. */
1371 tty
.main
.c_line
= SET_LINE_DISCIPLINE
;
1375 /* AIX enhanced edit loses NULs, so disable it. */
1376 tty
.main
.c_line
= 0;
1377 tty
.main
.c_iflag
&= ~ASCEDIT
;
1379 tty
.main
.c_cc
[VSTRT
] = 255;
1380 tty
.main
.c_cc
[VSTOP
] = 255;
1381 tty
.main
.c_cc
[VSUSP
] = 255;
1382 tty
.main
.c_cc
[VDSUSP
] = 255;
1383 #endif /* IBMR2AIX */
1387 tty
.main
.c_cc
[VSTART
] = '\021';
1390 tty
.main
.c_cc
[VSTOP
] = '\023';
1393 /* Also, PTY overloads NUL and BREAK.
1394 don't ignore break, but don't signal either, so it looks like NUL.
1395 This really serves a purpose only if running in an XTERM window
1396 or via TELNET or the like, but does no harm elsewhere. */
1397 tty
.main
.c_iflag
&= ~IGNBRK
;
1398 tty
.main
.c_iflag
&= ~BRKINT
;
1400 #else /* if not HAVE_TERMIO */
1402 tty
.main
.tt_char
|= TT$M_NOECHO
;
1404 tty
.main
.tt_char
|= TT$M_EIGHTBIT
;
1406 tty
.main
.tt_char
|= TT$M_TTSYNC
;
1408 tty
.main
.tt_char
&= ~TT$M_TTSYNC
;
1409 tty
.main
.tt2_char
|= TT2$M_PASTHRU
| TT2$M_XON
;
1410 #else /* not VMS (BSD, that is) */
1412 Vtty_erase_char
= tty
.main
.sg_erase
;
1413 tty
.main
.sg_flags
&= ~(ECHO
| CRMOD
| XTABS
);
1415 tty
.main
.sg_flags
|= ANYP
;
1416 tty
.main
.sg_flags
|= interrupt_input
? RAW
: CBREAK
;
1417 #endif /* not DOS_NT */
1418 #endif /* not VMS (BSD, that is) */
1419 #endif /* not HAVE_TERMIO */
1421 /* If going to use CBREAK mode, we must request C-g to interrupt
1422 and turn off start and stop chars, etc. If not going to use
1423 CBREAK mode, do this anyway so as to turn off local flow
1424 control for user coming over network on 4.2; in this case,
1425 only t_stopc and t_startc really matter. */
1428 /* Note: if not using CBREAK mode, it makes no difference how we
1430 tty
.tchars
= new_tchars
;
1431 tty
.tchars
.t_intrc
= quit_char
;
1434 tty
.tchars
.t_startc
= '\021';
1435 tty
.tchars
.t_stopc
= '\023';
1438 tty
.lmode
= LDECCTQ
| LLITOUT
| LPASS8
| LNOFLSH
| old_tty
.lmode
;
1440 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1441 anything, and leaving it in breaks the meta key. Go figure. */
1442 tty
.lmode
&= ~LLITOUT
;
1449 #endif /* HAVE_TCHARS */
1450 #endif /* not HAVE_TERMIO */
1453 tty
.ltchars
= new_ltchars
;
1454 #endif /* HAVE_LTCHARS */
1455 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1457 internal_terminal_init ();
1461 EMACS_SET_TTY (input_fd
, &tty
, 0);
1463 /* This code added to insure that, if flow-control is not to be used,
1464 we have an unlocked terminal at the start. */
1467 if (!flow_control
) ioctl (input_fd
, TCXONC
, 1);
1471 if (!flow_control
) ioctl (input_fd
, TIOCSTART
, 0);
1475 #if defined (HAVE_TERMIOS) || defined (HPUX9)
1477 if (!flow_control
) tcflow (input_fd
, TCOON
);
1485 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1486 to be only LF. This is the way that is done. */
1489 if (ioctl (1, HFTGETID
, &tty
) != -1)
1490 write (1, "\033[20l", 5);
1496 /* Appears to do nothing when in PASTHRU mode.
1497 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1498 interrupt_signal, oob_chars, 0, 0, 0, 0);
1500 queue_kbd_input (0);
1505 #ifndef F_SETOWN_BUG
1506 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1508 && ! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1510 old_fcntl_owner
= fcntl (input_fd
, F_GETOWN
, 0);
1511 fcntl (input_fd
, F_SETOWN
, getpid ());
1512 init_sigio (input_fd
);
1514 #endif /* F_GETOWN */
1515 #endif /* F_SETOWN_BUG */
1516 #endif /* F_SETFL */
1519 if (interrupt_input
)
1520 init_sigio (input_fd
);
1523 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1527 /* This symbol is defined on recent USG systems.
1528 Someone says without this call USG won't really buffer the file
1529 even with a call to setbuf. */
1530 setvbuf (stdout
, _sobuf
, _IOFBF
, sizeof _sobuf
);
1532 setbuf (stdout
, _sobuf
);
1534 #ifdef HAVE_WINDOW_SYSTEM
1535 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1536 needs the initialization code below. */
1537 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1539 set_terminal_modes ();
1541 if (term_initted
&& no_redraw_on_reenter
)
1543 if (display_completed
)
1544 direct_output_forward_char (0);
1549 if (FRAMEP (Vterminal_frame
))
1550 FRAME_GARBAGED_P (XFRAME (Vterminal_frame
)) = 1;
1556 /* Return nonzero if safe to use tabs in output.
1557 At the time this is called, init_sys_modes has not been done yet. */
1561 struct emacs_tty tty
;
1563 EMACS_GET_TTY (input_fd
, &tty
);
1564 return EMACS_TTY_TABS_OK (&tty
);
1567 /* Get terminal size from system.
1568 Store number of lines into *HEIGHTP and width into *WIDTHP.
1569 We store 0 if there's no valid information. */
1571 get_frame_size (widthp
, heightp
)
1572 int *widthp
, *heightp
;
1578 struct winsize size
;
1580 if (ioctl (input_fd
, TIOCGWINSZ
, &size
) == -1)
1581 *widthp
= *heightp
= 0;
1584 *widthp
= size
.ws_col
;
1585 *heightp
= size
.ws_row
;
1591 /* SunOS - style. */
1592 struct ttysize size
;
1594 if (ioctl (input_fd
, TIOCGSIZE
, &size
) == -1)
1595 *widthp
= *heightp
= 0;
1598 *widthp
= size
.ts_cols
;
1599 *heightp
= size
.ts_lines
;
1605 struct sensemode tty
;
1607 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &tty
, 0, 0,
1608 &tty
.class, 12, 0, 0, 0, 0);
1609 *widthp
= tty
.scr_wid
;
1610 *heightp
= tty
.scr_len
;
1614 *widthp
= ScreenCols ();
1615 *heightp
= ScreenRows ();
1616 #else /* system doesn't know size */
1621 #endif /* not VMS */
1622 #endif /* not SunOS-style */
1623 #endif /* not BSD-style */
1626 /* Set the logical window size associated with descriptor FD
1627 to HEIGHT and WIDTH. This is used mainly with ptys. */
1630 set_window_size (fd
, height
, width
)
1631 int fd
, height
, width
;
1636 struct winsize size
;
1637 size
.ws_row
= height
;
1638 size
.ws_col
= width
;
1640 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1641 return 0; /* error */
1648 /* SunOS - style. */
1649 struct ttysize size
;
1650 size
.ts_lines
= height
;
1651 size
.ts_cols
= width
;
1653 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1659 #endif /* not SunOS-style */
1660 #endif /* not BSD-style */
1664 /* Prepare the terminal for exiting Emacs; move the cursor to the
1665 bottom of the frame, turn off interrupt-driven I/O, etc. */
1675 #ifdef HAVE_WINDOW_SYSTEM
1676 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1677 needs the clean-up code below. */
1678 if (read_socket_hook
|| !EQ (Vwindow_system
, Qnil
))
1681 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1682 clear_end_of_line (FRAME_WIDTH (selected_frame
));
1683 /* clear_end_of_line may move the cursor */
1684 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1685 #if defined (IBMR2AIX) && defined (AIXHFT)
1687 /* HFT devices normally use ^J as a LF/CR. We forced it to
1688 do the LF only. Now, we need to reset it. */
1691 if (ioctl (1, HFTGETID
, &tty
) != -1)
1692 write (1, "\033[20h", 5);
1696 reset_terminal_modes ();
1700 /* Avoid possible loss of output when changing terminal modes. */
1701 fsync (fileno (stdout
));
1706 #ifndef F_SETOWN_BUG
1707 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1708 if (interrupt_input
)
1711 fcntl (input_fd
, F_SETOWN
, old_fcntl_owner
);
1713 #endif /* F_SETOWN */
1714 #endif /* F_SETOWN_BUG */
1716 fcntl (input_fd
, F_SETFL
, fcntl (input_fd
, F_GETFL
, 0) & ~O_NDELAY
);
1718 #endif /* F_SETFL */
1720 if (interrupt_input
)
1725 while (EMACS_SET_TTY (input_fd
, &old_tty
, 0) < 0 && errno
== EINTR
)
1728 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1732 #ifdef SET_LINE_DISCIPLINE
1733 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1734 A different old line discipline is therefore not restored, yet.
1735 Restore the old line discipline by hand. */
1736 ioctl (0, TIOCSETD
, &old_tty
.main
.c_line
);
1744 widen_foreground_group ();
1750 /* Set up the proper status flags for use of a pty. */
1755 /* I'm told that TOICREMOTE does not mean control chars
1756 "can't be sent" but rather that they don't have
1757 input-editing or signaling effects.
1758 That should be good, because we have other ways
1759 to do those things in Emacs.
1760 However, telnet mode seems not to work on 4.2.
1761 So TIOCREMOTE is turned off now. */
1763 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1764 will hang. In particular, the "timeout" feature (which
1765 causes a read to return if there is no data available)
1766 does this. Also it is known that telnet mode will hang
1767 in such a way that Emacs must be stopped (perhaps this
1768 is the same problem).
1770 If TIOCREMOTE is turned off, then there is a bug in
1771 hp-ux which sometimes loses data. Apparently the
1772 code which blocks the master process when the internal
1773 buffer fills up does not work. Other than this,
1774 though, everything else seems to work fine.
1776 Since the latter lossage is more benign, we may as well
1777 lose that way. -- cph */
1782 ioctl (fd
, FIONBIO
, &on
);
1787 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
1788 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
1789 /* cause EMACS not to die when it should, i.e., when its own controlling */
1790 /* tty goes away. I've complained to the AIX developers, and they may */
1791 /* change this behavior, but I'm not going to hold my breath. */
1792 signal (SIGHUP
, SIG_IGN
);
1795 #endif /* HAVE_PTYS */
1799 /* Assigning an input channel is done at the start of Emacs execution.
1800 This is called each time Emacs is resumed, also, but does nothing
1801 because input_chain is no longer zero. */
1809 status
= SYS$
ASSIGN (&input_dsc
, &input_fd
, 0, 0);
1815 /* Deassigning the input channel is done before exiting. */
1819 return SYS$
DASSGN (input_fd
);
1824 /* Request reading one character into the keyboard buffer.
1825 This is done as soon as the buffer becomes empty. */
1830 extern kbd_input_ast ();
1832 waiting_for_ast
= 0;
1834 status
= SYS$
QIO (0, input_fd
, IO$_READVBLK
,
1835 &input_iosb
, kbd_input_ast
, 1,
1836 &input_buffer
, 1, 0, terminator_mask
, 0, 0);
1841 /* Ast routine that is called when keyboard input comes in
1842 in accord with the SYS$QIO above. */
1846 register int c
= -1;
1847 int old_errno
= errno
;
1848 extern EMACS_TIME
*input_available_clear_time
;
1850 if (waiting_for_ast
)
1851 SYS$
SETEF (input_ef
);
1852 waiting_for_ast
= 0;
1855 if (input_count
== 25)
1857 printf ("Ast # %d,", input_count
);
1858 printf (" iosb = %x, %x, %x, %x",
1859 input_iosb
.offset
, input_iosb
.status
, input_iosb
.termlen
,
1862 if (input_iosb
.offset
)
1866 printf (", char = 0%o", c
);
1878 struct input_event e
;
1879 e
.kind
= ascii_keystroke
;
1880 XSETINT (e
.code
, c
);
1881 XSETFRAME (e
.frame_or_window
, selected_frame
);
1882 kbd_buffer_store_event (&e
);
1884 if (input_available_clear_time
)
1885 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
1889 /* Wait until there is something in kbd_buffer. */
1891 wait_for_kbd_input ()
1893 extern int have_process_input
, process_exited
;
1895 /* If already something, avoid doing system calls. */
1896 if (detect_input_pending ())
1900 /* Clear a flag, and tell ast routine above to set it. */
1901 SYS$
CLREF (input_ef
);
1902 waiting_for_ast
= 1;
1903 /* Check for timing error: ast happened while we were doing that. */
1904 if (!detect_input_pending ())
1906 /* No timing error: wait for flag to be set. */
1907 set_waiting_for_input (0);
1908 SYS$
WFLOR (input_ef
, input_eflist
);
1909 clear_waiting_for_input (0);
1910 if (!detect_input_pending ())
1911 /* Check for subprocess input availability */
1913 int dsp
= have_process_input
|| process_exited
;
1915 SYS$
CLREF (process_ef
);
1916 if (have_process_input
)
1917 process_command_input ();
1922 update_mode_lines
++;
1923 prepare_menu_bars ();
1924 redisplay_preserve_echo_area ();
1928 waiting_for_ast
= 0;
1931 /* Get rid of any pending QIO, when we are about to suspend
1932 or when we want to throw away pending input.
1933 We wait for a positive sign that the AST routine has run
1934 and therefore there is no I/O request queued when we return.
1935 SYS$SETAST is used to avoid a timing error. */
1940 printf ("At end_kbd_input.\n");
1944 if (LIB$
AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
1946 SYS$
CANCEL (input_fd
);
1951 /* Clear a flag, and tell ast routine above to set it. */
1952 SYS$
CLREF (input_ef
);
1953 waiting_for_ast
= 1;
1955 SYS$
CANCEL (input_fd
);
1957 SYS$
WAITFR (input_ef
);
1958 waiting_for_ast
= 0;
1961 /* Wait for either input available or time interval expiry. */
1963 input_wait_timeout (timeval
)
1964 int timeval
; /* Time to wait, in seconds */
1967 static int zero
= 0;
1968 static int large
= -10000000;
1970 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
1972 /* If already something, avoid doing system calls. */
1973 if (detect_input_pending ())
1977 /* Clear a flag, and tell ast routine above to set it. */
1978 SYS$
CLREF (input_ef
);
1979 waiting_for_ast
= 1;
1980 /* Check for timing error: ast happened while we were doing that. */
1981 if (!detect_input_pending ())
1983 /* No timing error: wait for flag to be set. */
1985 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
1986 SYS$
WFLOR (timer_ef
, timer_eflist
); /* Wait for timer expiry or input */
1988 waiting_for_ast
= 0;
1991 /* The standard `sleep' routine works some other way
1992 and it stops working if you have ever quit out of it.
1993 This one continues to work. */
1999 static int zero
= 0;
2000 static int large
= -10000000;
2002 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
2005 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
2006 SYS$
WAITFR (timer_ef
); /* Wait for timer expiry only */
2022 croak ("request sigio");
2027 croak ("unrequest sigio");
2032 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2037 #ifndef SYSTEM_MALLOC
2044 /* Some systems that cannot dump also cannot implement these. */
2047 * Return the address of the start of the text segment prior to
2048 * doing an unexec. After unexec the return value is undefined.
2049 * See crt0.c for further explanation and _start.
2053 #ifndef HAVE_TEXT_START
2058 return ((char *) TEXT_START
);
2062 return ((char *) csrt
);
2063 #else /* not GOULD */
2064 extern int _start ();
2065 return ((char *) _start
);
2067 #endif /* TEXT_START */
2069 #endif /* not HAVE_TEXT_START */
2072 * Return the address of the start of the data segment prior to
2073 * doing an unexec. After unexec the return value is undefined.
2074 * See crt0.c for further information and definition of data_start.
2076 * Apparently, on BSD systems this is etext at startup. On
2077 * USG systems (swapping) this is highly mmu dependent and
2078 * is also dependent on whether or not the program is running
2079 * with shared text. Generally there is a (possibly large)
2080 * gap between end of text and start of data with shared text.
2082 * On Uniplus+ systems with shared text, data starts at a
2083 * fixed address. Each port (from a given oem) is generally
2084 * different, and the specific value of the start of data can
2085 * be obtained via the UniPlus+ specific "uvar" system call,
2086 * however the method outlined in crt0.c seems to be more portable.
2088 * Probably what will have to happen when a USG unexec is available,
2089 * at least on UniPlus, is temacs will have to be made unshared so
2090 * that text and data are contiguous. Then once loadup is complete,
2091 * unexec will produce a shared executable where the data can be
2092 * at the normal shared text boundary and the startofdata variable
2093 * will be patched by unexec to the correct value.
2101 return ((char *) DATA_START
);
2103 #ifdef ORDINARY_LINK
2105 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2106 * data_start isn't defined. We take the address of environ, which
2107 * is known to live at or near the start of the system crt0.c, and
2108 * we don't sweat the handful of bytes that might lose.
2110 extern char **environ
;
2112 return((char *) &environ
);
2114 extern int data_start
;
2115 return ((char *) &data_start
);
2116 #endif /* ORDINARY_LINK */
2117 #endif /* DATA_START */
2119 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2122 /* Some systems that cannot dump also cannot implement these. */
2125 * Return the address of the end of the text segment prior to
2126 * doing an unexec. After unexec the return value is undefined.
2133 return ((char *) TEXT_END
);
2136 return ((char *) &etext
);
2141 * Return the address of the end of the data segment prior to
2142 * doing an unexec. After unexec the return value is undefined.
2149 return ((char *) DATA_END
);
2152 return ((char *) &edata
);
2156 #endif /* not CANNOT_DUMP */
2158 /* init_system_name sets up the string for the Lisp function
2159 system-name to return. */
2165 extern Lisp_Object Vsystem_name
;
2170 #include <sys/socket.h>
2172 #endif /* HAVE_SOCKETS */
2173 #endif /* not VMS */
2174 #endif /* not BSD4_1 */
2180 Vsystem_name
= build_string (sysname
);
2184 if ((sp
= egetenv ("SYS$NODE")) == 0)
2185 Vsystem_name
= build_string ("vax-vms");
2186 else if ((end
= index (sp
, ':')) == 0)
2187 Vsystem_name
= build_string (sp
);
2189 Vsystem_name
= make_string (sp
, end
- sp
);
2191 #ifndef HAVE_GETHOSTNAME
2194 Vsystem_name
= build_string (uts
.nodename
);
2195 #else /* HAVE_GETHOSTNAME */
2196 unsigned int hostname_size
= 256;
2197 char *hostname
= (char *) alloca (hostname_size
);
2199 /* Try to get the host name; if the buffer is too short, try
2200 again. Apparently, the only indication gethostname gives of
2201 whether the buffer was large enough is the presence or absence
2202 of a '\0' in the string. Eech. */
2205 gethostname (hostname
, hostname_size
- 1);
2206 hostname
[hostname_size
- 1] = '\0';
2208 /* Was the buffer large enough for the '\0'? */
2209 if (strlen (hostname
) < hostname_size
- 1)
2212 hostname_size
<<= 1;
2213 hostname
= (char *) alloca (hostname_size
);
2216 /* Turn the hostname into the official, fully-qualified hostname.
2217 Don't do this if we're going to dump; this can confuse system
2218 libraries on some machines and make the dumped emacs core dump. */
2221 #endif /* not CANNOT_DUMP */
2225 for (count
= 0;; count
++)
2230 hp
= gethostbyname (hostname
);
2232 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
2237 Fsleep_for (make_number (1), Qnil
);
2241 char *fqdn
= (char *) hp
->h_name
;
2244 if (!index (fqdn
, '.'))
2246 /* We still don't have a fully qualified domain name.
2247 Try to find one in the list of alternate names */
2248 char **alias
= hp
->h_aliases
;
2249 while (*alias
&& !index (*alias
, '.'))
2256 /* Convert the host name to lower case. */
2257 /* Using ctype.h here would introduce a possible locale
2258 dependence that is probably wrong for hostnames. */
2262 if (*p
>= 'A' && *p
<= 'Z')
2269 #endif /* HAVE_SOCKETS */
2270 #if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN)) || HAVE_GETDOMAINNAME
2271 if (! index (hostname
, '.'))
2273 /* The hostname is not fully qualified. Append the domain name. */
2275 int hostlen
= strlen (hostname
);
2276 int domain_size
= 256;
2280 char *domain
= (char *) alloca (domain_size
+ 1);
2281 char *fqdn
= (char *) alloca (hostlen
+ 1 + domain_size
+ 1);
2282 #if HAVE_SYSINFO && defined (SI_SRPC_DOMAIN)
2283 int sys_domain_size
= sysinfo (SI_SRPC_DOMAIN
, domain
, domain_size
);
2284 if (sys_domain_size
<= 0)
2286 if (domain_size
< sys_domain_size
)
2288 domain_size
= sys_domain_size
;
2291 #else /* HAVE_GETDOMAINNAME */
2292 if (getdomainname (domain
, domain_size
- 1) != 0 || ! *domain
)
2294 domain
[domain_size
- 1] = '\0';
2295 if (strlen (domain
) == domain_size
- 1)
2300 /* If we get an answer which means "domain unknown",
2301 don't use a domain. */
2302 if (!strcmp (domain
, "(none)"))
2307 #endif /* HAVE_GETDOMAINNAME */
2308 strcpy (fqdn
, hostname
);
2309 if (domain
[0] == '.')
2310 strcpy (fqdn
+ hostlen
, domain
);
2313 fqdn
[hostlen
] = '.';
2314 strcpy (fqdn
+ hostlen
+ 1, domain
);
2320 #endif /*! ((HAVE_SYSINFO && defined (SI_SRPC_DOMAIN)) || HAVE_GETDOMAINNAME)*/
2321 Vsystem_name
= build_string (hostname
);
2322 #endif /* HAVE_GETHOSTNAME */
2327 for (p
= XSTRING (Vsystem_name
)->data
; *p
; p
++)
2328 if (*p
== ' ' || *p
== '\t')
2335 #if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)
2337 #include "sysselect.h"
2340 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2341 /* Cause explanatory error message at compile time,
2342 since the select emulation is not good enough for X. */
2343 int *x
= &x_windows_lose_if_no_select_system_call
;
2346 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2347 * Only checks read descriptors.
2349 /* How long to wait between checking fds in select */
2350 #define SELECT_PAUSE 1
2353 /* For longjmp'ing back to read_input_waiting. */
2355 jmp_buf read_alarm_throw
;
2357 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2358 The read_socket_hook function sets this to 1 while it is waiting. */
2360 int read_alarm_should_throw
;
2368 #else /* not BSD4_1 */
2369 signal (SIGALRM
, SIG_IGN
);
2370 #endif /* not BSD4_1 */
2371 if (read_alarm_should_throw
)
2372 longjmp (read_alarm_throw
, 1);
2376 /* Only rfds are checked. */
2378 sys_select (nfds
, rfds
, wfds
, efds
, timeout
)
2380 SELECT_TYPE
*rfds
, *wfds
, *efds
;
2381 EMACS_TIME
*timeout
;
2383 int ravail
= 0, old_alarm
;
2387 extern int proc_buffered_char
[];
2388 #ifndef subprocesses
2389 int process_tick
= 0, update_tick
= 0;
2391 extern int process_tick
, update_tick
;
2393 SIGTYPE (*old_trap
) ();
2396 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2397 /* If we're using X, then the native select will work; we only need the
2398 emulation for non-X usage. */
2399 if (!NILP (Vwindow_system
))
2400 return select (nfds
, rfds
, wfds
, efds
, timeout
);
2402 timeoutval
= timeout
? EMACS_SECS (*timeout
) : 100000;
2403 local_timeout
= &timeoutval
;
2415 /* If we are looking only for the terminal, with no timeout,
2416 just read it and wait -- that's more efficient. */
2417 if (*local_timeout
== 100000 && process_tick
== update_tick
2418 && FD_ISSET (0, &orfds
))
2421 for (fd
= 1; fd
< nfds
; ++fd
)
2422 if (FD_ISSET (fd
, &orfds
))
2424 if (! detect_input_pending ())
2425 read_input_waiting ();
2431 /* Once a second, till the timer expires, check all the flagged read
2432 * descriptors to see if any input is available. If there is some then
2433 * set the corresponding bit in the return copy of rfds.
2437 register int to_check
, fd
;
2441 for (to_check
= nfds
, fd
= 0; --to_check
>= 0; fd
++)
2443 if (FD_ISSET (fd
, &orfds
))
2445 int avail
= 0, status
= 0;
2448 avail
= detect_input_pending (); /* Special keyboard handler */
2452 status
= ioctl (fd
, FIONREAD
, &avail
);
2453 #else /* no FIONREAD */
2454 /* Hoping it will return -1 if nothing available
2455 or 0 if all 0 chars requested are read. */
2456 if (proc_buffered_char
[fd
] >= 0)
2460 avail
= read (fd
, &buf
, 1);
2462 proc_buffered_char
[fd
] = buf
;
2464 #endif /* no FIONREAD */
2466 if (status
>= 0 && avail
> 0)
2474 if (*local_timeout
== 0 || ravail
!= 0 || process_tick
!= update_tick
)
2476 old_alarm
= alarm (0);
2477 old_trap
= signal (SIGALRM
, select_alarm
);
2479 alarm (SELECT_PAUSE
);
2480 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2481 while (select_alarmed
== 0 && *local_timeout
!= 0
2482 && process_tick
== update_tick
)
2484 /* If we are interested in terminal input,
2485 wait by reading the terminal.
2486 That makes instant wakeup for terminal input at least. */
2487 if (FD_ISSET (0, &orfds
))
2489 read_input_waiting ();
2490 if (detect_input_pending ())
2496 (*local_timeout
) -= SELECT_PAUSE
;
2497 /* Reset the old alarm if there was one */
2499 signal (SIGALRM
, old_trap
);
2502 /* Reset or forge an interrupt for the original handler. */
2503 old_alarm
-= SELECT_PAUSE
;
2505 kill (getpid (), SIGALRM
); /* Fake an alarm with the orig' handler */
2509 if (*local_timeout
== 0) /* Stop on timer being cleared */
2514 #endif /* not WINDOWSNT */
2516 /* Read keyboard input into the standard buffer,
2517 waiting for at least one character. */
2519 /* Make all keyboard buffers much bigger when using a window system. */
2520 #ifdef HAVE_WINDOW_SYSTEM
2521 #define BUFFER_SIZE_FACTOR 16
2523 #define BUFFER_SIZE_FACTOR 1
2526 read_input_waiting ()
2528 struct input_event e
;
2530 extern int quit_char
;
2532 if (read_socket_hook
)
2534 struct input_event buf
[256];
2536 read_alarm_should_throw
= 0;
2537 if (! setjmp (read_alarm_throw
))
2538 nread
= (*read_socket_hook
) (0, buf
, 256, 1, 0);
2542 /* Scan the chars for C-g and store them in kbd_buffer. */
2543 for (i
= 0; i
< nread
; i
++)
2545 kbd_buffer_store_event (&buf
[i
]);
2546 /* Don't look at input that follows a C-g too closely.
2547 This reduces lossage due to autorepeat on C-g. */
2548 if (buf
[i
].kind
== ascii_keystroke
2549 && buf
[i
].code
== quit_char
)
2556 nread
= read (fileno (stdin
), buf
, 1);
2558 /* Scan the chars for C-g and store them in kbd_buffer. */
2559 e
.kind
= ascii_keystroke
;
2560 XSETFRAME (e
.frame_or_window
, selected_frame
);
2562 for (i
= 0; i
< nread
; i
++)
2564 /* Convert chars > 0177 to meta events if desired.
2565 We do this under the same conditions that read_avail_input does. */
2566 if (read_socket_hook
== 0)
2568 /* If the user says she has a meta key, then believe her. */
2569 if (meta_key
== 1 && (buf
[i
] & 0x80))
2570 e
.modifiers
= meta_modifier
;
2575 XSETINT (e
.code
, buf
[i
]);
2576 kbd_buffer_store_event (&e
);
2577 /* Don't look at input that follows a C-g too closely.
2578 This reduces lossage due to autorepeat on C-g. */
2579 if (buf
[i
] == quit_char
)
2585 #endif /* not HAVE_SELECT */
2586 #endif /* not VMS */
2587 #endif /* not MSDOS */
2591 * Partially emulate 4.2 open call.
2592 * open is defined as this in 4.1.
2594 * - added by Michael Bloom @ Citicorp/TTI
2599 sys_open (path
, oflag
, mode
)
2603 if (oflag
& O_CREAT
)
2604 return creat (path
, mode
);
2606 return open (path
, oflag
);
2614 lmode
= LINTRUP
| lmode
;
2615 ioctl (fd
, TIOCLSET
, &lmode
);
2622 lmode
= ~LINTRUP
& lmode
;
2623 ioctl (0, TIOCLSET
, &lmode
);
2630 interrupts_deferred
= 0;
2637 interrupts_deferred
= 1;
2640 /* still inside #ifdef BSD4_1 */
2643 int sigheld
; /* Mask of held signals */
2648 sigheld
|= sigbit (signum
);
2655 sigheld
|= sigbit (signum
);
2661 sigheld
&= ~sigbit (signum
);
2665 sigfree () /* Free all held signals */
2668 for (i
= 0; i
< NSIG
; i
++)
2669 if (sigheld
& sigbit (i
))
2676 return 1 << (i
- 1);
2678 #endif /* subprocesses */
2681 /* POSIX signals support - DJB */
2682 /* Anyone with POSIX signals should have ANSI C declarations */
2684 #ifdef POSIX_SIGNALS
2686 sigset_t old_mask
, empty_mask
, full_mask
, temp_mask
;
2687 static struct sigaction new_action
, old_action
;
2691 sigemptyset (&empty_mask
);
2692 sigfillset (&full_mask
);
2696 sys_signal (int signal_number
, signal_handler_t action
)
2698 sigemptyset (&new_action
.sa_mask
);
2699 new_action
.sa_handler
= action
;
2701 /* Emacs mostly works better with restartable system services. If this
2702 * flag exists, we probably want to turn it on here.
2704 new_action
.sa_flags
= SA_RESTART
;
2706 new_action
.sa_flags
= 0;
2708 sigaction (signal_number
, &new_action
, &old_action
);
2709 return (old_action
.sa_handler
);
2713 /* If we're compiling with GCC, we don't need this function, since it
2714 can be written as a macro. */
2716 sys_sigmask (int sig
)
2719 sigemptyset (&mask
);
2720 sigaddset (&mask
, sig
);
2726 sys_sigpause (sigset_t new_mask
)
2728 /* pause emulating berk sigpause... */
2729 sigsuspend (&new_mask
);
2733 /* I'd like to have these guys return pointers to the mask storage in here,
2734 but there'd be trouble if the code was saving multiple masks. I'll be
2735 safe and pass the structure. It normally won't be more than 2 bytes
2739 sys_sigblock (sigset_t new_mask
)
2742 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
2747 sys_sigunblock (sigset_t new_mask
)
2750 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
2755 sys_sigsetmask (sigset_t new_mask
)
2758 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
2762 #endif /* POSIX_SIGNALS */
2770 /* Figure out how many bits the system's random number generator uses.
2771 `random' and `lrand48' are assumed to return 31 usable bits.
2772 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2773 so we'll shift it and treat it like the 15-bit USG `rand'. */
2777 # define RAND_BITS 31
2778 # else /* !HAVE_RANDOM */
2779 # ifdef HAVE_LRAND48
2780 # define RAND_BITS 31
2781 # define random lrand48
2782 # else /* !HAVE_LRAND48 */
2783 # define RAND_BITS 15
2784 # if RAND_MAX == 32767
2785 # define random rand
2786 # else /* RAND_MAX != 32767 */
2787 # if RAND_MAX == 2147483647
2788 # define random() (rand () >> 16)
2789 # else /* RAND_MAX != 2147483647 */
2791 # define random rand
2793 # define random() (rand () >> 16)
2795 # endif /* RAND_MAX != 2147483647 */
2796 # endif /* RAND_MAX != 32767 */
2797 # endif /* !HAVE_LRAND48 */
2798 # endif /* !HAVE_RANDOM */
2799 #endif /* !RAND_BITS */
2806 srandom ((unsigned int)arg
);
2808 # ifdef HAVE_LRAND48
2811 srand ((unsigned int)arg
);
2817 * Build a full Emacs-sized word out of whatever we've got.
2818 * This suffices even for a 64-bit architecture with a 15-bit rand.
2823 long val
= random ();
2824 #if VALBITS > RAND_BITS
2825 val
= (val
<< RAND_BITS
) ^ random ();
2826 #if VALBITS > 2*RAND_BITS
2827 val
= (val
<< RAND_BITS
) ^ random ();
2828 #if VALBITS > 3*RAND_BITS
2829 val
= (val
<< RAND_BITS
) ^ random ();
2830 #if VALBITS > 4*RAND_BITS
2831 val
= (val
<< RAND_BITS
) ^ random ();
2832 #endif /* need at least 5 */
2833 #endif /* need at least 4 */
2834 #endif /* need at least 3 */
2835 #endif /* need at least 2 */
2836 return val
& ((1L << VALBITS
) - 1);
2839 #ifdef WRONG_NAME_INSQUE
2852 /* If any place else asks for the TERM variable,
2853 allow it to be overridden with the EMACS_TERM variable
2854 before attempting to translate the logical name TERM. As a last
2855 resort, ask for VAX C's special idea of the TERM variable. */
2862 static char buf
[256];
2863 static struct dsc$descriptor_s equiv
2864 = {sizeof (buf
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, buf
};
2865 static struct dsc$descriptor_s d_name
2866 = {0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0};
2869 if (!strcmp (name
, "TERM"))
2871 val
= (char *) getenv ("EMACS_TERM");
2876 d_name
.dsc$w_length
= strlen (name
);
2877 d_name
.dsc$a_pointer
= name
;
2878 if (LIB$
SYS_TRNLOG (&d_name
, &eqlen
, &equiv
) == 1)
2880 char *str
= (char *) xmalloc (eqlen
+ 1);
2881 bcopy (buf
, str
, eqlen
);
2883 /* This is a storage leak, but a pain to fix. With luck,
2884 no one will ever notice. */
2887 return (char *) getenv (name
);
2892 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
2893 to force a call on the debugger from within the image. */
2898 LIB$
SIGNAL (SS$_DEBUG
);
2904 #ifdef LINK_CRTL_SHARE
2905 #ifdef SHARABLE_LIB_BUG
2906 /* Variables declared noshare and initialized in sharable libraries
2907 cannot be shared. The VMS linker incorrectly forces you to use a private
2908 version which is uninitialized... If not for this "feature", we
2909 could use the C library definition of sys_nerr and sys_errlist. */
2911 char *sys_errlist
[] =
2915 "no such file or directory",
2917 "interrupted system call",
2919 "no such device or address",
2920 "argument list too long",
2921 "exec format error",
2924 "no more processes",
2925 "not enough memory",
2926 "permission denied",
2928 "block device required",
2929 "mount devices busy",
2931 "cross-device link",
2936 "file table overflow",
2937 "too many open files",
2941 "no space left on device",
2943 "read-only file system",
2949 "vax/vms specific error code nontranslatable error"
2951 #endif /* SHARABLE_LIB_BUG */
2952 #endif /* LINK_CRTL_SHARE */
2955 #ifndef HAVE_STRERROR
2961 extern char *sys_errlist
[];
2962 extern int sys_nerr
;
2964 if (errnum
>= 0 && errnum
< sys_nerr
)
2965 return sys_errlist
[errnum
];
2966 return (char *) "Unknown error";
2968 #endif /* not WINDOWSNT */
2969 #endif /* ! HAVE_STRERROR */
2971 #ifdef INTERRUPTIBLE_OPEN
2975 sys_open (path
, oflag
, mode
)
2979 register int rtnval
;
2981 while ((rtnval
= open (path
, oflag
, mode
)) == -1
2982 && (errno
== EINTR
));
2986 #endif /* INTERRUPTIBLE_OPEN */
2988 #ifdef INTERRUPTIBLE_CLOSE
2994 register int rtnval
;
2996 while ((rtnval
= close (fd
)) == -1
2997 && (errno
== EINTR
))
3000 /* If close is interrupted SunOS 4.1 may or may not have closed the
3001 file descriptor. If it did the second close will fail with
3002 errno = EBADF. That means we have succeeded. */
3003 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
3009 #endif /* INTERRUPTIBLE_CLOSE */
3011 #ifdef INTERRUPTIBLE_IO
3014 sys_read (fildes
, buf
, nbyte
)
3019 register int rtnval
;
3021 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
3022 && (errno
== EINTR
));
3027 sys_write (fildes
, buf
, nbyte
)
3032 register int rtnval
, bytes_written
;
3038 rtnval
= write (fildes
, buf
, nbyte
);
3045 return (bytes_written
? bytes_written
: -1);
3050 bytes_written
+= rtnval
;
3052 return (bytes_written
);
3055 #endif /* INTERRUPTIBLE_IO */
3060 * Substitute fork for vfork on USG flavors.
3068 #endif /* not WINDOWSNT */
3069 #endif /* not HAVE_VFORK */
3073 * All of the following are for USG.
3075 * On USG systems the system calls are INTERRUPTIBLE by signals
3076 * that the user program has elected to catch. Thus the system call
3077 * must be retried in these cases. To handle this without massive
3078 * changes in the source code, we remap the standard system call names
3079 * to names for our own functions in sysdep.c that do the system call
3080 * with retries. Actually, for portability reasons, it is good
3081 * programming practice, as this example shows, to limit all actual
3082 * system calls to a single occurrence in the source. Sure, this
3083 * adds an extra level of function call overhead but it is almost
3084 * always negligible. Fred Fish, Unisoft Systems Inc.
3087 #ifndef HAVE_SYS_SIGLIST
3088 char *sys_siglist
[NSIG
+ 1] =
3091 /* AIX has changed the signals a bit */
3092 "bogus signal", /* 0 */
3093 "hangup", /* 1 SIGHUP */
3094 "interrupt", /* 2 SIGINT */
3095 "quit", /* 3 SIGQUIT */
3096 "illegal instruction", /* 4 SIGILL */
3097 "trace trap", /* 5 SIGTRAP */
3098 "IOT instruction", /* 6 SIGIOT */
3099 "crash likely", /* 7 SIGDANGER */
3100 "floating point exception", /* 8 SIGFPE */
3101 "kill", /* 9 SIGKILL */
3102 "bus error", /* 10 SIGBUS */
3103 "segmentation violation", /* 11 SIGSEGV */
3104 "bad argument to system call", /* 12 SIGSYS */
3105 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3106 "alarm clock", /* 14 SIGALRM */
3107 "software termination signum", /* 15 SIGTERM */
3108 "user defined signal 1", /* 16 SIGUSR1 */
3109 "user defined signal 2", /* 17 SIGUSR2 */
3110 "death of a child", /* 18 SIGCLD */
3111 "power-fail restart", /* 19 SIGPWR */
3112 "bogus signal", /* 20 */
3113 "bogus signal", /* 21 */
3114 "bogus signal", /* 22 */
3115 "bogus signal", /* 23 */
3116 "bogus signal", /* 24 */
3117 "LAN I/O interrupt", /* 25 SIGAIO */
3118 "PTY I/O interrupt", /* 26 SIGPTY */
3119 "I/O intervention required", /* 27 SIGIOINT */
3121 "HFT grant", /* 28 SIGGRANT */
3122 "HFT retract", /* 29 SIGRETRACT */
3123 "HFT sound done", /* 30 SIGSOUND */
3124 "HFT input ready", /* 31 SIGMSG */
3127 "bogus signal", /* 0 */
3128 "hangup", /* 1 SIGHUP */
3129 "interrupt", /* 2 SIGINT */
3130 "quit", /* 3 SIGQUIT */
3131 "illegal instruction", /* 4 SIGILL */
3132 "trace trap", /* 5 SIGTRAP */
3133 "IOT instruction", /* 6 SIGIOT */
3134 "EMT instruction", /* 7 SIGEMT */
3135 "floating point exception", /* 8 SIGFPE */
3136 "kill", /* 9 SIGKILL */
3137 "bus error", /* 10 SIGBUS */
3138 "segmentation violation", /* 11 SIGSEGV */
3139 "bad argument to system call", /* 12 SIGSYS */
3140 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3141 "alarm clock", /* 14 SIGALRM */
3142 "software termination signum", /* 15 SIGTERM */
3143 "user defined signal 1", /* 16 SIGUSR1 */
3144 "user defined signal 2", /* 17 SIGUSR2 */
3145 "death of a child", /* 18 SIGCLD */
3146 "power-fail restart", /* 19 SIGPWR */
3148 "window size change", /* 20 SIGWINCH */
3149 "urgent socket condition", /* 21 SIGURG */
3150 "pollable event occurred", /* 22 SIGPOLL */
3151 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
3152 "user stop requested from tty", /* 24 SIGTSTP */
3153 "stopped process has been continued", /* 25 SIGCONT */
3154 "background tty read attempted", /* 26 SIGTTIN */
3155 "background tty write attempted", /* 27 SIGTTOU */
3156 "virtual timer expired", /* 28 SIGVTALRM */
3157 "profiling timer expired", /* 29 SIGPROF */
3158 "exceeded cpu limit", /* 30 SIGXCPU */
3159 "exceeded file size limit", /* 31 SIGXFSZ */
3160 "process's lwps are blocked", /* 32 SIGWAITING */
3161 "special signal used by thread library", /* 33 SIGLWP */
3163 "Special Signal Used By CPR", /* 34 SIGFREEZE */
3166 "Special Signal Used By CPR", /* 35 SIGTHAW */
3169 #endif /* not AIX */
3172 #endif /* HAVE_SYS_SIGLIST */
3175 * Warning, this function may not duplicate 4.2 action properly
3176 * under error conditions.
3180 /* In 4.1, param.h fails to define this. */
3181 #define MAXPATHLEN 1024
3190 char *npath
, *spath
;
3191 extern char *getcwd ();
3193 BLOCK_INPUT
; /* getcwd uses malloc */
3194 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
3197 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3198 up to first slash. Should be harmless on other systems. */
3199 while (*npath
&& *npath
!= '/')
3201 strcpy (pathname
, npath
);
3202 free (spath
); /* getcwd uses malloc */
3207 #endif /* HAVE_GETWD */
3210 * Emulate rename using unlink/link. Note that this is
3211 * only partially correct. Also, doesn't enforce restriction
3212 * that files be of same type (regular->regular, dir->dir, etc).
3221 if (access (from
, 0) == 0)
3224 if (link (from
, to
) == 0)
3225 if (unlink (from
) == 0)
3237 /* HPUX curses library references perror, but as far as we know
3238 it won't be called. Anyway this definition will do for now. */
3244 #endif /* not HAVE_PERROR */
3250 * Emulate BSD dup2. First close newd if it already exists.
3251 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3252 * until we are, then close the unsuccessful ones.
3259 register int fd
, ret
;
3264 fd
= fcntl (oldd
, F_DUPFD
, newd
);
3266 error ("can't dup2 (%i,%i) : %s", oldd
, newd
, strerror (errno
));
3273 ret
= dup2 (old
,new);
3279 #endif /* not HAVE_DUP2 */
3282 * Gettimeofday. Simulate as much as possible. Only accurate
3283 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3284 * Only needed when subprocesses are defined.
3289 #ifndef HAVE_GETTIMEOFDAY
3293 gettimeofday (tp
, tzp
)
3295 struct timezone
*tzp
;
3297 extern long time ();
3299 tp
->tv_sec
= time ((long *)0);
3302 tzp
->tz_minuteswest
= -1;
3308 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3311 * This function will go away as soon as all the stubs fixed. (fnf)
3317 printf ("%s not yet implemented\r\n", badfunc
);
3326 char *sys_siglist
[NSIG
+ 1] =
3328 "null signal", /* 0 SIGNULL */
3329 "hangup", /* 1 SIGHUP */
3330 "interrupt", /* 2 SIGINT */
3331 "quit", /* 3 SIGQUIT */
3332 "illegal instruction", /* 4 SIGILL */
3333 "trace trap", /* 5 SIGTRAP */
3334 "abort termination", /* 6 SIGABRT */
3335 "SIGEMT", /* 7 SIGEMT */
3336 "floating point exception", /* 8 SIGFPE */
3337 "kill", /* 9 SIGKILL */
3338 "bus error", /* 10 SIGBUS */
3339 "segmentation violation", /* 11 SIGSEGV */
3340 "bad argument to system call", /* 12 SIGSYS */
3341 "write on a pipe with no reader", /* 13 SIGPIPE */
3342 "alarm clock", /* 14 SIGALRM */
3343 "software termination signal", /* 15 SIGTERM */
3344 "user defined signal 1", /* 16 SIGUSR1 */
3345 "user defined signal 2", /* 17 SIGUSR2 */
3346 "child stopped or terminated", /* 18 SIGCLD */
3347 "power-fail restart", /* 19 SIGPWR */
3348 "window size changed", /* 20 SIGWINCH */
3349 "undefined", /* 21 */
3350 "pollable event occurred", /* 22 SIGPOLL */
3351 "sendable stop signal not from tty", /* 23 SIGSTOP */
3352 "stop signal from tty", /* 24 SIGSTP */
3353 "continue a stopped process", /* 25 SIGCONT */
3354 "attempted background tty read", /* 26 SIGTTIN */
3355 "attempted background tty write", /* 27 SIGTTOU */
3356 "undefined", /* 28 */
3357 "undefined", /* 29 */
3358 "undefined", /* 30 */
3359 "undefined", /* 31 */
3360 "undefined", /* 32 */
3361 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
3362 "I/O is possible", /* 34 SIGIO */
3363 "exceeded cpu time limit", /* 35 SIGXCPU */
3364 "exceeded file size limit", /* 36 SIGXFSZ */
3365 "virtual time alarm", /* 37 SIGVTALRM */
3366 "profiling time alarm", /* 38 SIGPROF */
3367 "undefined", /* 39 */
3368 "file record locks revoked", /* 40 SIGLOST */
3369 "undefined", /* 41 */
3370 "undefined", /* 42 */
3371 "undefined", /* 43 */
3372 "undefined", /* 44 */
3373 "undefined", /* 45 */
3374 "undefined", /* 46 */
3375 "undefined", /* 47 */
3376 "undefined", /* 48 */
3377 "undefined", /* 49 */
3378 "undefined", /* 50 */
3379 "undefined", /* 51 */
3380 "undefined", /* 52 */
3381 "undefined", /* 53 */
3382 "undefined", /* 54 */
3383 "undefined", /* 55 */
3384 "undefined", /* 56 */
3385 "undefined", /* 57 */
3386 "undefined", /* 58 */
3387 "undefined", /* 59 */
3388 "undefined", /* 60 */
3389 "undefined", /* 61 */
3390 "undefined", /* 62 */
3391 "undefined", /* 63 */
3392 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
3398 /* Directory routines for systems that don't have them. */
3400 #ifdef SYSV_SYSTEM_DIR
3404 #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
3408 register DIR *dirp
; /* stream from opendir */
3412 rtnval
= sys_close (dirp
->dd_fd
);
3414 /* Some systems (like Solaris) allocate the buffer and the DIR all
3415 in one block. Why in the world are we freeing this ourselves
3417 #if ! (defined (sun) && defined (USG5_4))
3418 xfree ((char *) dirp
->dd_buf
); /* directory block defined in <dirent.h> */
3420 xfree ((char *) dirp
);
3424 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3425 #endif /* SYSV_SYSTEM_DIR */
3427 #ifdef NONSYSTEM_DIR_LIBRARY
3431 char *filename
; /* name of directory */
3433 register DIR *dirp
; /* -> malloc'ed storage */
3434 register int fd
; /* file descriptor for read */
3435 struct stat sbuf
; /* result of fstat */
3437 fd
= sys_open (filename
, 0);
3442 if (fstat (fd
, &sbuf
) < 0
3443 || (sbuf
.st_mode
& S_IFMT
) != S_IFDIR
3444 || (dirp
= (DIR *) malloc (sizeof (DIR))) == 0)
3448 return 0; /* bad luck today */
3453 dirp
->dd_loc
= dirp
->dd_size
= 0; /* refill needed */
3460 register DIR *dirp
; /* stream from opendir */
3462 sys_close (dirp
->dd_fd
);
3463 xfree ((char *) dirp
);
3471 ino_t od_ino
; /* inode */
3472 char od_name
[DIRSIZ
]; /* filename */
3474 #endif /* not VMS */
3476 struct direct dir_static
; /* simulated directory contents */
3481 register DIR *dirp
; /* stream from opendir */
3484 register struct olddir
*dp
; /* -> directory data */
3486 register struct dir$_name
*dp
; /* -> directory data */
3487 register struct dir$_version
*dv
; /* -> version data */
3492 if (dirp
->dd_loc
>= dirp
->dd_size
)
3493 dirp
->dd_loc
= dirp
->dd_size
= 0;
3495 if (dirp
->dd_size
== 0 /* refill buffer */
3496 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3500 dp
= (struct olddir
*) &dirp
->dd_buf
[dirp
->dd_loc
];
3501 dirp
->dd_loc
+= sizeof (struct olddir
);
3503 if (dp
->od_ino
!= 0) /* not deleted entry */
3505 dir_static
.d_ino
= dp
->od_ino
;
3506 strncpy (dir_static
.d_name
, dp
->od_name
, DIRSIZ
);
3507 dir_static
.d_name
[DIRSIZ
] = '\0';
3508 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3509 dir_static
.d_reclen
= sizeof (struct direct
)
3511 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3512 return &dir_static
; /* -> simulated structure */
3515 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3516 if (dirp
->dd_loc
== 0)
3517 dirp
->dd_loc
= (dp
->dir$b_namecount
&1) ? dp
->dir$b_namecount
+ 1
3518 : dp
->dir$b_namecount
;
3519 dv
= (struct dir$_version
*)&dp
->dir$t_name
[dirp
->dd_loc
];
3520 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3521 dir_static
.d_namlen
= dp
->dir$b_namecount
;
3522 dir_static
.d_reclen
= sizeof (struct direct
)
3524 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3525 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3526 dir_static
.d_name
[dir_static
.d_namlen
] = '\0';
3527 dirp
->dd_loc
= dirp
->dd_size
; /* only one record at a time */
3534 /* readdirver is just like readdir except it returns all versions of a file
3535 as separate entries. */
3540 register DIR *dirp
; /* stream from opendir */
3542 register struct dir$_name
*dp
; /* -> directory data */
3543 register struct dir$_version
*dv
; /* -> version data */
3545 if (dirp
->dd_loc
>= dirp
->dd_size
- sizeof (struct dir$_name
))
3546 dirp
->dd_loc
= dirp
->dd_size
= 0;
3548 if (dirp
->dd_size
== 0 /* refill buffer */
3549 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3552 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3553 if (dirp
->dd_loc
== 0)
3554 dirp
->dd_loc
= (dp
->dir$b_namecount
& 1) ? dp
->dir$b_namecount
+ 1
3555 : dp
->dir$b_namecount
;
3556 dv
= (struct dir$_version
*) &dp
->dir$t_name
[dirp
->dd_loc
];
3557 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3558 sprintf (&dir_static
.d_name
[dp
->dir$b_namecount
], ";%d", dv
->dir$w_version
);
3559 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3560 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3561 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3
3562 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3563 dirp
->dd_loc
= ((char *) (++dv
) - dp
->dir$t_name
);
3569 #endif /* NONSYSTEM_DIR_LIBRARY */
3573 set_file_times (filename
, atime
, mtime
)
3575 EMACS_TIME atime
, mtime
;
3578 struct timeval tv
[2];
3581 return utimes (filename
, tv
);
3582 #else /* not HAVE_UTIMES */
3584 utb
.actime
= EMACS_SECS (atime
);
3585 utb
.modtime
= EMACS_SECS (mtime
);
3586 return utime (filename
, &utb
);
3587 #endif /* not HAVE_UTIMES */
3590 /* mkdir and rmdir functions, for systems which don't have them. */
3594 * Written by Robert Rother, Mariah Corporation, August 1985.
3596 * If you want it, it's yours. All I ask in return is that if you
3597 * figure out how to do this in a Bourne Shell script you send me
3599 * sdcsvax!rmr or rmr@uscd
3601 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3602 * subroutine. 11Mar86; hoptoad!gnu
3604 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3605 * subroutine didn't return EEXIST. It does now.
3611 #ifdef MKDIR_PROTOTYPE
3615 mkdir (dpath
, dmode
)
3620 int cpid
, status
, fd
;
3621 struct stat statbuf
;
3623 if (stat (dpath
, &statbuf
) == 0)
3625 errno
= EEXIST
; /* Stat worked, so it already exists */
3629 /* If stat fails for a reason other than non-existence, return error */
3630 if (errno
!= ENOENT
)
3633 synch_process_alive
= 1;
3634 switch (cpid
= fork ())
3637 case -1: /* Error in fork */
3638 return (-1); /* Errno is set already */
3640 case 0: /* Child process */
3642 * Cheap hack to set mode of new directory. Since this
3643 * child process is going away anyway, we zap its umask.
3644 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3645 * directory. Does anybody care?
3647 status
= umask (0); /* Get current umask */
3648 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
3649 fd
= sys_open("/dev/null", 2);
3656 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
3657 _exit (-1); /* Can't exec /bin/mkdir */
3659 default: /* Parent process */
3660 wait_for_termination (cpid
);
3663 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3665 errno
= EIO
; /* We don't know why, but */
3666 return -1; /* /bin/mkdir failed */
3671 #endif /* not HAVE_MKDIR */
3678 int cpid
, status
, fd
;
3679 struct stat statbuf
;
3681 if (stat (dpath
, &statbuf
) != 0)
3683 /* Stat just set errno. We don't have to */
3687 synch_process_alive
= 1;
3688 switch (cpid
= fork ())
3691 case -1: /* Error in fork */
3692 return (-1); /* Errno is set already */
3694 case 0: /* Child process */
3695 fd
= sys_open("/dev/null", 2);
3702 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
3703 _exit (-1); /* Can't exec /bin/rmdir */
3705 default: /* Parent process */
3706 wait_for_termination (cpid
);
3709 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3711 errno
= EIO
; /* We don't know why, but */
3712 return -1; /* /bin/rmdir failed */
3717 #endif /* !HAVE_RMDIR */
3721 /* Functions for VMS */
3723 #include "vms-pwd.h"
3728 /* Return as a string the VMS error string pertaining to STATUS.
3729 Reuses the same static buffer each time it is called. */
3733 int status
; /* VMS status code */
3737 static char buf
[257];
3739 bufadr
[0] = sizeof buf
- 1;
3740 bufadr
[1] = (int) buf
;
3741 if (! (SYS$
GETMSG (status
, &len
, bufadr
, 0x1, 0) & 1))
3742 return "untranslatable VMS error status";
3750 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3751 * not work correctly. (It also doesn't work well in version 2.3.)
3756 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3757 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3761 unsigned short s_buflen
;
3762 unsigned short s_code
;
3764 unsigned short *s_retlenadr
;
3768 #define buflen s.s_buflen
3769 #define code s.s_code
3770 #define bufadr s.s_bufadr
3771 #define retlenadr s.s_retlenadr
3773 #define R_OK 4 /* test for read permission */
3774 #define W_OK 2 /* test for write permission */
3775 #define X_OK 1 /* test for execute (search) permission */
3776 #define F_OK 0 /* test for presence of file */
3779 sys_access (path
, mode
)
3783 static char *user
= NULL
;
3786 /* translate possible directory spec into .DIR file name, so brain-dead
3787 * access can treat the directory like a file. */
3788 if (directory_file_name (path
, dir_fn
))
3792 return access (path
, mode
);
3793 if (user
== NULL
&& (user
= (char *) getenv ("USER")) == NULL
)
3799 unsigned short int dummy
;
3801 static int constant
= ACL$C_FILE
;
3802 DESCRIPTOR (path_desc
, path
);
3803 DESCRIPTOR (user_desc
, user
);
3807 if ((mode
& X_OK
) && ((stat
= access (path
, mode
)) < 0 || mode
== X_OK
))
3810 acces
|= CHP$M_READ
;
3812 acces
|= CHP$M_WRITE
;
3813 itemlst
[0].buflen
= sizeof (int);
3814 itemlst
[0].code
= CHP$_FLAGS
;
3815 itemlst
[0].bufadr
= (char *) &flags
;
3816 itemlst
[0].retlenadr
= &dummy
;
3817 itemlst
[1].buflen
= sizeof (int);
3818 itemlst
[1].code
= CHP$_ACCESS
;
3819 itemlst
[1].bufadr
= (char *) &acces
;
3820 itemlst
[1].retlenadr
= &dummy
;
3821 itemlst
[2].end
= CHP$_END
;
3822 stat
= SYS$
CHECK_ACCESS (&constant
, &path_desc
, &user_desc
, itemlst
);
3823 return stat
== SS$_NORMAL
? 0 : -1;
3827 #else /* not VMS4_4 */
3830 #define ACE$M_WRITE 2
3831 #define ACE$C_KEYID 1
3833 static unsigned short memid
, grpid
;
3834 static unsigned int uic
;
3836 /* Called from init_sys_modes, so it happens not very often
3837 but at least each time Emacs is loaded. */
3838 sys_access_reinit ()
3844 sys_access (filename
, type
)
3850 int status
, size
, i
, typecode
, acl_controlled
;
3851 unsigned int *aclptr
, *aclend
, aclbuf
[60];
3852 union prvdef prvmask
;
3854 /* Get UIC and GRP values for protection checking. */
3857 status
= LIB$
GETJPI (&JPI$_UIC
, 0, 0, &uic
, 0, 0);
3860 memid
= uic
& 0xFFFF;
3864 if (type
!= 2) /* not checking write access */
3865 return access (filename
, type
);
3867 /* Check write protection. */
3869 #define CHECKPRIV(bit) (prvmask.bit)
3870 #define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
3872 /* Find privilege bits */
3873 status
= SYS$
SETPRV (0, 0, 0, prvmask
);
3875 error ("Unable to find privileges: %s", vmserrstr (status
));
3876 if (CHECKPRIV (PRV$V_BYPASS
))
3877 return 0; /* BYPASS enabled */
3879 fab
.fab$b_fac
= FAB$M_GET
;
3880 fab
.fab$l_fna
= filename
;
3881 fab
.fab$b_fns
= strlen (filename
);
3882 fab
.fab$l_xab
= &xab
;
3883 xab
= cc$rms_xabpro
;
3884 xab
.xab$l_aclbuf
= aclbuf
;
3885 xab
.xab$w_aclsiz
= sizeof (aclbuf
);
3886 status
= SYS$
OPEN (&fab
, 0, 0);
3889 SYS$
CLOSE (&fab
, 0, 0);
3890 /* Check system access */
3891 if (CHECKPRIV (PRV$V_SYSPRV
) && WRITABLE (XAB$V_SYS
))
3893 /* Check ACL entries, if any */
3895 if (xab
.xab$w_acllen
> 0)
3898 aclend
= &aclbuf
[xab
.xab$w_acllen
/ 4];
3899 while (*aclptr
&& aclptr
< aclend
)
3901 size
= (*aclptr
& 0xff) / 4;
3902 typecode
= (*aclptr
>> 8) & 0xff;
3903 if (typecode
== ACE$C_KEYID
)
3904 for (i
= size
- 1; i
> 1; i
--)
3905 if (aclptr
[i
] == uic
)
3908 if (aclptr
[1] & ACE$M_WRITE
)
3909 return 0; /* Write access through ACL */
3911 aclptr
= &aclptr
[size
];
3913 if (acl_controlled
) /* ACL specified, prohibits write access */
3916 /* No ACL entries specified, check normal protection */
3917 if (WRITABLE (XAB$V_WLD
)) /* World writable */
3919 if (WRITABLE (XAB$V_GRP
) &&
3920 (unsigned short) (xab
.xab$l_uic
>> 16) == grpid
)
3921 return 0; /* Group writable */
3922 if (WRITABLE (XAB$V_OWN
) &&
3923 (xab
.xab$l_uic
& 0xFFFF) == memid
)
3924 return 0; /* Owner writable */
3926 return -1; /* Not writable */
3928 #endif /* not VMS4_4 */
3931 static char vtbuf
[NAM$C_MAXRSS
+1];
3933 /* translate a vms file spec to a unix path */
3935 sys_translate_vms (vfile
)
3946 /* leading device or logical name is a root directory */
3947 if (p
= strchr (vfile
, ':'))
3956 if (*p
== '[' || *p
== '<')
3958 while (*++vfile
!= *p
+ 2)
3962 if (vfile
[-1] == *p
)
3985 static char utbuf
[NAM$C_MAXRSS
+1];
3987 /* translate a unix path to a VMS file spec */
3989 sys_translate_unix (ufile
)
4012 if (index (&ufile
[1], '/'))
4019 if (index (&ufile
[1], '/'))
4026 if (strncmp (ufile
, "./", 2) == 0)
4033 ufile
++; /* skip the dot */
4034 if (index (&ufile
[1], '/'))
4039 else if (strncmp (ufile
, "../", 3) == 0)
4047 ufile
+= 2; /* skip the dots */
4048 if (index (&ufile
[1], '/'))
4073 extern char *getcwd ();
4075 #define MAXPATHLEN 1024
4077 ptr
= xmalloc (MAXPATHLEN
);
4078 val
= getcwd (ptr
, MAXPATHLEN
);
4084 strcpy (pathname
, ptr
);
4092 long item_code
= JPI$_OWNER
;
4093 unsigned long parent_id
;
4096 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &parent_id
)) & 1) == 0)
4099 vaxc$errno
= status
;
4109 return (getgid () << 16) | getuid ();
4113 sys_read (fildes
, buf
, nbyte
)
4118 return read (fildes
, buf
, (nbyte
< MAXIOSIZE
? nbyte
: MAXIOSIZE
));
4123 sys_write (fildes
, buf
, nbyte
)
4128 register int nwrote
, rtnval
= 0;
4130 while (nbyte
> MAXIOSIZE
&& (nwrote
= write (fildes
, buf
, MAXIOSIZE
)) > 0) {
4136 return rtnval
? rtnval
: -1;
4137 if ((nwrote
= write (fildes
, buf
, nbyte
)) < 0)
4138 return rtnval
? rtnval
: -1;
4139 return (rtnval
+ nwrote
);
4144 * VAX/VMS VAX C RTL really loses. It insists that records
4145 * end with a newline (carriage return) character, and if they
4146 * don't it adds one (nice of it isn't it!)
4148 * Thus we do this stupidity below.
4152 sys_write (fildes
, buf
, nbytes
)
4155 unsigned int nbytes
;
4162 fstat (fildes
, &st
);
4168 /* Handle fixed-length files with carriage control. */
4169 if (st
.st_fab_rfm
== FAB$C_FIX
4170 && ((st
.st_fab_rat
& (FAB$M_FTN
| FAB$M_CR
)) != 0))
4172 len
= st
.st_fab_mrs
;
4173 retval
= write (fildes
, p
, min (len
, nbytes
));
4176 retval
++; /* This skips the implied carriage control */
4180 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4181 while (*e
!= '\n' && e
> p
) e
--;
4182 if (p
== e
) /* Ok.. so here we add a newline... sigh. */
4183 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4185 retval
= write (fildes
, p
, len
);
4196 /* Create file NEW copying its attributes from file OLD. If
4197 OLD is 0 or does not exist, create based on the value of
4200 /* Protection value the file should ultimately have.
4201 Set by create_copy_attrs, and use by rename_sansversions. */
4202 static unsigned short int fab_final_pro
;
4205 creat_copy_attrs (old
, new)
4208 struct FAB fab
= cc$rms_fab
;
4209 struct XABPRO xabpro
;
4210 char aclbuf
[256]; /* Choice of size is arbitrary. See below. */
4211 extern int vms_stmlf_recfm
;
4215 fab
.fab$b_fac
= FAB$M_GET
;
4216 fab
.fab$l_fna
= old
;
4217 fab
.fab$b_fns
= strlen (old
);
4218 fab
.fab$l_xab
= (char *) &xabpro
;
4219 xabpro
= cc$rms_xabpro
;
4220 xabpro
.xab$l_aclbuf
= aclbuf
;
4221 xabpro
.xab$w_aclsiz
= sizeof aclbuf
;
4222 /* Call $OPEN to fill in the fab & xabpro fields. */
4223 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4225 SYS$
CLOSE (&fab
, 0, 0);
4226 fab
.fab$l_alq
= 0; /* zero the allocation quantity */
4227 if (xabpro
.xab$w_acllen
> 0)
4229 if (xabpro
.xab$w_acllen
> sizeof aclbuf
)
4230 /* If the acl buffer was too short, redo open with longer one.
4231 Wouldn't need to do this if there were some system imposed
4232 limit on the size of an ACL, but I can't find any such. */
4234 xabpro
.xab$l_aclbuf
= (char *) alloca (xabpro
.xab$w_acllen
);
4235 xabpro
.xab$w_aclsiz
= xabpro
.xab$w_acllen
;
4236 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4237 SYS$
CLOSE (&fab
, 0, 0);
4243 xabpro
.xab$l_aclbuf
= 0;
4248 fab
.fab$l_fna
= new;
4249 fab
.fab$b_fns
= strlen (new);
4253 fab
.fab$b_rfm
= vms_stmlf_recfm
? FAB$C_STMLF
: FAB$C_VAR
;
4254 fab
.fab$b_rat
= FAB$M_CR
;
4257 /* Set the file protections such that we will be able to manipulate
4258 this file. Once we are done writing and renaming it, we will set
4259 the protections back. */
4261 fab_final_pro
= xabpro
.xab$w_pro
;
4263 SYS$
SETDFPROT (0, &fab_final_pro
);
4264 xabpro
.xab$w_pro
&= 0xff0f; /* set O:rewd for now. This is set back later. */
4266 /* Create the new file with either default attrs or attrs copied
4268 if (!(SYS$
CREATE (&fab
, 0, 0) & 1))
4270 SYS$
CLOSE (&fab
, 0, 0);
4271 /* As this is a "replacement" for creat, return a file descriptor
4272 opened for writing. */
4273 return open (new, O_WRONLY
);
4278 #include <varargs.h>
4281 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4285 sys_creat (va_alist
)
4288 va_list list_incrementer
;
4291 int rfd
; /* related file descriptor */
4292 int fd
; /* Our new file descriptor */
4299 extern int vms_stmlf_recfm
;
4302 va_start (list_incrementer
);
4303 name
= va_arg (list_incrementer
, char *);
4304 mode
= va_arg (list_incrementer
, int);
4306 rfd
= va_arg (list_incrementer
, int);
4307 va_end (list_incrementer
);
4310 /* Use information from the related file descriptor to set record
4311 format of the newly created file. */
4312 fstat (rfd
, &st_buf
);
4313 switch (st_buf
.st_fab_rfm
)
4316 strcpy (rfm
, "rfm = fix");
4317 sprintf (mrs
, "mrs = %d", st_buf
.st_fab_mrs
);
4318 strcpy (rat
, "rat = ");
4319 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4321 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4322 strcat (rat
, "ftn");
4323 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4324 strcat (rat
, "prn");
4325 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4326 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4327 strcat (rat
, ", blk");
4329 strcat (rat
, "blk");
4330 return creat (name
, 0, rfm
, rat
, mrs
);
4333 strcpy (rfm
, "rfm = vfc");
4334 sprintf (fsz
, "fsz = %d", st_buf
.st_fab_fsz
);
4335 strcpy (rat
, "rat = ");
4336 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4338 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4339 strcat (rat
, "ftn");
4340 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4341 strcat (rat
, "prn");
4342 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4343 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4344 strcat (rat
, ", blk");
4346 strcat (rat
, "blk");
4347 return creat (name
, 0, rfm
, rat
, fsz
);
4350 strcpy (rfm
, "rfm = stm");
4354 strcpy (rfm
, "rfm = stmcr");
4358 strcpy (rfm
, "rfm = stmlf");
4362 strcpy (rfm
, "rfm = udf");
4366 strcpy (rfm
, "rfm = var");
4369 strcpy (rat
, "rat = ");
4370 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4372 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4373 strcat (rat
, "ftn");
4374 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4375 strcat (rat
, "prn");
4376 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4377 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4378 strcat (rat
, ", blk");
4380 strcat (rat
, "blk");
4384 strcpy (rfm
, vms_stmlf_recfm
? "rfm = stmlf" : "rfm=var");
4385 strcpy (rat
, "rat=cr");
4387 /* Until the VAX C RTL fixes the many bugs with modes, always use
4388 mode 0 to get the user's default protection. */
4389 fd
= creat (name
, 0, rfm
, rat
);
4390 if (fd
< 0 && errno
== EEXIST
)
4392 if (unlink (name
) < 0)
4393 report_file_error ("delete", build_string (name
));
4394 fd
= creat (name
, 0, rfm
, rat
);
4400 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4401 sys_fwrite (ptr
, size
, num
, fp
)
4402 register char * ptr
;
4405 register int tot
= num
* size
;
4412 * The VMS C library routine creat actually creates a new version of an
4413 * existing file rather than truncating the old version. There are times
4414 * when this is not the desired behavior, for instance, when writing an
4415 * auto save file (you only want one version), or when you don't have
4416 * write permission in the directory containing the file (but the file
4417 * itself is writable). Hence this routine, which is equivalent to
4418 * "close (creat (fn, 0));" on Unix if fn already exists.
4424 struct FAB xfab
= cc$rms_fab
;
4425 struct RAB xrab
= cc$rms_rab
;
4428 xfab
.fab$l_fop
= FAB$M_TEF
; /* free allocated but unused blocks on close */
4429 xfab
.fab$b_fac
= FAB$M_TRN
| FAB$M_GET
; /* allow truncate and get access */
4430 xfab
.fab$b_shr
= FAB$M_NIL
; /* allow no sharing - file must be locked */
4431 xfab
.fab$l_fna
= fn
;
4432 xfab
.fab$b_fns
= strlen (fn
);
4433 xfab
.fab$l_dna
= ";0"; /* default to latest version of the file */
4435 xrab
.rab$l_fab
= &xfab
;
4437 /* This gibberish opens the file, positions to the first record, and
4438 deletes all records from there until the end of file. */
4439 if ((SYS$
OPEN (&xfab
) & 01) == 01)
4441 if ((SYS$
CONNECT (&xrab
) & 01) == 01 &&
4442 (SYS$
FIND (&xrab
) & 01) == 01 &&
4443 (SYS$
TRUNCATE (&xrab
) & 01) == 01)
4454 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4455 SYSPRV or a readable SYSUAF.DAT. */
4461 * Routine to read the VMS User Authorization File and return
4462 * a specific user's record.
4465 static struct UAF retuaf
;
4468 get_uaf_name (uname
)
4475 uaf_fab
= cc$rms_fab
;
4476 uaf_rab
= cc$rms_rab
;
4477 /* initialize fab fields */
4478 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4479 uaf_fab
.fab$b_fns
= 21;
4480 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4481 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4482 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4483 /* initialize rab fields */
4484 uaf_rab
.rab$l_fab
= &uaf_fab
;
4485 /* open the User Authorization File */
4486 status
= SYS$
OPEN (&uaf_fab
);
4490 vaxc$errno
= status
;
4493 status
= SYS$
CONNECT (&uaf_rab
);
4497 vaxc$errno
= status
;
4500 /* read the requested record - index is in uname */
4501 uaf_rab
.rab$l_kbf
= uname
;
4502 uaf_rab
.rab$b_ksz
= strlen (uname
);
4503 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4504 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4505 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4506 status
= SYS$
GET (&uaf_rab
);
4510 vaxc$errno
= status
;
4513 /* close the User Authorization File */
4514 status
= SYS$
DISCONNECT (&uaf_rab
);
4518 vaxc$errno
= status
;
4521 status
= SYS$
CLOSE (&uaf_fab
);
4525 vaxc$errno
= status
;
4539 uaf_fab
= cc$rms_fab
;
4540 uaf_rab
= cc$rms_rab
;
4541 /* initialize fab fields */
4542 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4543 uaf_fab
.fab$b_fns
= 21;
4544 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4545 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4546 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4547 /* initialize rab fields */
4548 uaf_rab
.rab$l_fab
= &uaf_fab
;
4549 /* open the User Authorization File */
4550 status
= SYS$
OPEN (&uaf_fab
);
4554 vaxc$errno
= status
;
4557 status
= SYS$
CONNECT (&uaf_rab
);
4561 vaxc$errno
= status
;
4564 /* read the requested record - index is in uic */
4565 uaf_rab
.rab$b_krf
= 1; /* 1st alternate key */
4566 uaf_rab
.rab$l_kbf
= (char *) &uic
;
4567 uaf_rab
.rab$b_ksz
= sizeof uic
;
4568 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4569 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4570 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4571 status
= SYS$
GET (&uaf_rab
);
4575 vaxc$errno
= status
;
4578 /* close the User Authorization File */
4579 status
= SYS$
DISCONNECT (&uaf_rab
);
4583 vaxc$errno
= status
;
4586 status
= SYS$
CLOSE (&uaf_fab
);
4590 vaxc$errno
= status
;
4596 static struct passwd retpw
;
4604 /* copy these out first because if the username is 32 chars, the next
4605 section will overwrite the first byte of the UIC */
4606 retpw
.pw_uid
= up
->uaf$w_mem
;
4607 retpw
.pw_gid
= up
->uaf$w_grp
;
4609 /* I suppose this is not the best style, to possibly overwrite one
4610 byte beyond the end of the field, but what the heck... */
4611 ptr
= &up
->uaf$t_username
[UAF$S_USERNAME
];
4612 while (ptr
[-1] == ' ')
4615 strcpy (retpw
.pw_name
, up
->uaf$t_username
);
4617 /* the rest of these are counted ascii strings */
4618 strncpy (retpw
.pw_gecos
, &up
->uaf$t_owner
[1], up
->uaf$t_owner
[0]);
4619 retpw
.pw_gecos
[up
->uaf$t_owner
[0]] = '\0';
4620 strncpy (retpw
.pw_dir
, &up
->uaf$t_defdev
[1], up
->uaf$t_defdev
[0]);
4621 retpw
.pw_dir
[up
->uaf$t_defdev
[0]] = '\0';
4622 strncat (retpw
.pw_dir
, &up
->uaf$t_defdir
[1], up
->uaf$t_defdir
[0]);
4623 retpw
.pw_dir
[up
->uaf$t_defdev
[0] + up
->uaf$t_defdir
[0]] = '\0';
4624 strncpy (retpw
.pw_shell
, &up
->uaf$t_defcli
[1], up
->uaf$t_defcli
[0]);
4625 retpw
.pw_shell
[up
->uaf$t_defcli
[0]] = '\0';
4629 #else /* not READ_SYSUAF */
4630 static struct passwd retpw
;
4631 #endif /* not READ_SYSUAF */
4642 unsigned char * full
;
4643 #endif /* READ_SYSUAF */
4648 if ('a' <= *ptr
&& *ptr
<= 'z')
4653 if (!(up
= get_uaf_name (name
)))
4655 return cnv_uaf_pw (up
);
4657 if (strcmp (name
, getenv ("USER")) == 0)
4659 retpw
.pw_uid
= getuid ();
4660 retpw
.pw_gid
= getgid ();
4661 strcpy (retpw
.pw_name
, name
);
4662 if (full
= egetenv ("FULLNAME"))
4663 strcpy (retpw
.pw_gecos
, full
);
4665 *retpw
.pw_gecos
= '\0';
4666 strcpy (retpw
.pw_dir
, egetenv ("HOME"));
4667 *retpw
.pw_shell
= '\0';
4672 #endif /* not READ_SYSUAF */
4682 if (!(up
= get_uaf_uic (uid
)))
4684 return cnv_uaf_pw (up
);
4686 if (uid
== sys_getuid ())
4687 return getpwnam (egetenv ("USER"));
4690 #endif /* not READ_SYSUAF */
4693 /* return total address space available to the current process. This is
4694 the sum of the current p0 size, p1 size and free page table entries
4699 unsigned long free_pages
;
4700 unsigned long frep0va
;
4701 unsigned long frep1va
;
4704 item_code
= JPI$_FREPTECNT
;
4705 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &free_pages
)) & 1) == 0)
4708 vaxc$errno
= status
;
4713 item_code
= JPI$_FREP0VA
;
4714 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep0va
)) & 1) == 0)
4717 vaxc$errno
= status
;
4720 item_code
= JPI$_FREP1VA
;
4721 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep1va
)) & 1) == 0)
4724 vaxc$errno
= status
;
4728 return free_pages
+ frep0va
+ (0x7fffffff - frep1va
);
4731 define_logical_name (varname
, string
)
4735 struct dsc$descriptor_s strdsc
=
4736 {strlen (string
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, string
};
4737 struct dsc$descriptor_s envdsc
=
4738 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4739 struct dsc$descriptor_s lnmdsc
=
4740 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4742 return LIB$
SET_LOGICAL (&envdsc
, &strdsc
, &lnmdsc
, 0, 0);
4745 delete_logical_name (varname
)
4748 struct dsc$descriptor_s envdsc
=
4749 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4750 struct dsc$descriptor_s lnmdsc
=
4751 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4753 return LIB$
DELETE_LOGICAL (&envdsc
, &lnmdsc
);
4764 error ("execvp system call not implemented");
4772 struct FAB from_fab
= cc$rms_fab
, to_fab
= cc$rms_fab
;
4773 struct NAM from_nam
= cc$rms_nam
, to_nam
= cc$rms_nam
;
4774 char from_esn
[NAM$C_MAXRSS
];
4775 char to_esn
[NAM$C_MAXRSS
];
4777 from_fab
.fab$l_fna
= from
;
4778 from_fab
.fab$b_fns
= strlen (from
);
4779 from_fab
.fab$l_nam
= &from_nam
;
4780 from_fab
.fab$l_fop
= FAB$M_NAM
;
4782 from_nam
.nam$l_esa
= from_esn
;
4783 from_nam
.nam$b_ess
= sizeof from_esn
;
4785 to_fab
.fab$l_fna
= to
;
4786 to_fab
.fab$b_fns
= strlen (to
);
4787 to_fab
.fab$l_nam
= &to_nam
;
4788 to_fab
.fab$l_fop
= FAB$M_NAM
;
4790 to_nam
.nam$l_esa
= to_esn
;
4791 to_nam
.nam$b_ess
= sizeof to_esn
;
4793 status
= SYS$
RENAME (&from_fab
, 0, 0, &to_fab
);
4799 if (status
== RMS$_DEV
)
4803 vaxc$errno
= status
;
4808 /* This function renames a file like `rename', but it strips
4809 the version number from the "to" filename, such that the "to" file is
4810 will always be a new version. It also sets the file protection once it is
4811 finished. The protection that we will use is stored in fab_final_pro,
4812 and was set when we did a creat_copy_attrs to create the file that we
4815 We could use the chmod function, but Eunichs uses 3 bits per user category
4816 to describe the protection, and VMS uses 4 (write and delete are separate
4817 bits). To maintain portability, the VMS implementation of `chmod' wires
4818 the W and D bits together. */
4821 static struct fibdef fib
; /* We need this initialized to zero */
4822 char vms_file_written
[NAM$C_MAXRSS
];
4825 rename_sans_version (from
,to
)
4832 struct FAB to_fab
= cc$rms_fab
;
4833 struct NAM to_nam
= cc$rms_nam
;
4834 struct dsc$descriptor fib_d
={sizeof (fib
),0,0,(char*) &fib
};
4835 struct dsc$descriptor fib_attr
[2]
4836 = {{sizeof (fab_final_pro
),ATR$C_FPRO
,0,(char*) &fab_final_pro
},{0,0,0,0}};
4837 char to_esn
[NAM$C_MAXRSS
];
4839 $
DESCRIPTOR (disk
,to_esn
);
4841 to_fab
.fab$l_fna
= to
;
4842 to_fab
.fab$b_fns
= strlen (to
);
4843 to_fab
.fab$l_nam
= &to_nam
;
4844 to_fab
.fab$l_fop
= FAB$M_NAM
;
4846 to_nam
.nam$l_esa
= to_esn
;
4847 to_nam
.nam$b_ess
= sizeof to_esn
;
4849 status
= SYS$
PARSE (&to_fab
, 0, 0); /* figure out the full file name */
4851 if (to_nam
.nam$l_fnb
&& NAM$M_EXP_VER
)
4852 *(to_nam
.nam$l_ver
) = '\0';
4854 stat
= rename (from
, to_esn
);
4858 strcpy (vms_file_written
, to_esn
);
4860 to_fab
.fab$l_fna
= vms_file_written
; /* this points to the versionless name */
4861 to_fab
.fab$b_fns
= strlen (vms_file_written
);
4863 /* Now set the file protection to the correct value */
4864 SYS$
OPEN (&to_fab
, 0, 0); /* This fills in the nam$w_fid fields */
4866 /* Copy these fields into the fib */
4867 fib
.fib$r_fid_overlay
.fib$w_fid
[0] = to_nam
.nam$w_fid
[0];
4868 fib
.fib$r_fid_overlay
.fib$w_fid
[1] = to_nam
.nam$w_fid
[1];
4869 fib
.fib$r_fid_overlay
.fib$w_fid
[2] = to_nam
.nam$w_fid
[2];
4871 SYS$
CLOSE (&to_fab
, 0, 0);
4873 stat
= SYS$
ASSIGN (&disk
, &chan
, 0, 0); /* open a channel to the disk */
4876 stat
= SYS$
QIOW (0, chan
, IO$_MODIFY
, iosb
, 0, 0, &fib_d
,
4877 0, 0, 0, &fib_attr
, 0);
4880 stat
= SYS$
DASSGN (chan
);
4883 strcpy (vms_file_written
, to_esn
); /* We will write this to the terminal*/
4893 unsigned short fid
[3];
4894 char esa
[NAM$C_MAXRSS
];
4897 fab
.fab$l_fop
= FAB$M_OFP
;
4898 fab
.fab$l_fna
= file
;
4899 fab
.fab$b_fns
= strlen (file
);
4900 fab
.fab$l_nam
= &nam
;
4903 nam
.nam$l_esa
= esa
;
4904 nam
.nam$b_ess
= NAM$C_MAXRSS
;
4906 status
= SYS$
PARSE (&fab
);
4907 if ((status
& 1) == 0)
4910 vaxc$errno
= status
;
4913 status
= SYS$
SEARCH (&fab
);
4914 if ((status
& 1) == 0)
4917 vaxc$errno
= status
;
4921 fid
[0] = nam
.nam$w_fid
[0];
4922 fid
[1] = nam
.nam$w_fid
[1];
4923 fid
[2] = nam
.nam$w_fid
[2];
4925 fab
.fab$l_fna
= new;
4926 fab
.fab$b_fns
= strlen (new);
4928 status
= SYS$
PARSE (&fab
);
4929 if ((status
& 1) == 0)
4932 vaxc$errno
= status
;
4936 nam
.nam$w_fid
[0] = fid
[0];
4937 nam
.nam$w_fid
[1] = fid
[1];
4938 nam
.nam$w_fid
[2] = fid
[2];
4940 nam
.nam$l_esa
= nam
.nam$l_name
;
4941 nam
.nam$b_esl
= nam
.nam$b_name
+ nam
.nam$b_type
+ nam
.nam$b_ver
;
4943 status
= SYS$
ENTER (&fab
);
4944 if ((status
& 1) == 0)
4947 vaxc$errno
= status
;
4957 printf ("%s not yet implemented\r\n", badfunc
);
4965 /* Arrange to return a range centered on zero. */
4966 return rand () - (1 << 30);
4977 /* Called from init_sys_modes. */
4982 /* If we're not on an HFT we shouldn't do any of this. We determine
4983 if we are on an HFT by trying to get an HFT error code. If this
4984 call fails, we're not on an HFT. */
4986 if (ioctl (0, HFQERROR
, &junk
) < 0)
4988 #else /* not IBMR2AIX */
4989 if (ioctl (0, HFQEIO
, 0) < 0)
4991 #endif /* not IBMR2AIX */
4993 /* On AIX the default hft keyboard mapping uses backspace rather than delete
4994 as the rubout key's ASCII code. Here this is changed. The bug is that
4995 there's no way to determine the old mapping, so in reset_sys_modes
4996 we need to assume that the normal map had been present. Of course, this
4997 code also doesn't help if on a terminal emulator which doesn't understand
5001 struct hfkeymap keymap
;
5003 buf
.hf_bufp
= (char *)&keymap
;
5004 buf
.hf_buflen
= sizeof (keymap
);
5005 keymap
.hf_nkeys
= 2;
5006 keymap
.hfkey
[0].hf_kpos
= 15;
5007 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5009 keymap
.hfkey
[0].hf_keyidh
= '<';
5010 #else /* not IBMR2AIX */
5011 keymap
.hfkey
[0].hf_page
= '<';
5012 #endif /* not IBMR2AIX */
5013 keymap
.hfkey
[0].hf_char
= 127;
5014 keymap
.hfkey
[1].hf_kpos
= 15;
5015 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5017 keymap
.hfkey
[1].hf_keyidh
= '<';
5018 #else /* not IBMR2AIX */
5019 keymap
.hfkey
[1].hf_page
= '<';
5020 #endif /* not IBMR2AIX */
5021 keymap
.hfkey
[1].hf_char
= 127;
5022 hftctl (0, HFSKBD
, &buf
);
5024 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
5026 line_ins_del_ok
= char_ins_del_ok
= 0;
5029 /* Reset the rubout key to backspace. */
5034 struct hfkeymap keymap
;
5038 if (ioctl (0, HFQERROR
, &junk
) < 0)
5040 #else /* not IBMR2AIX */
5041 if (ioctl (0, HFQEIO
, 0) < 0)
5043 #endif /* not IBMR2AIX */
5045 buf
.hf_bufp
= (char *)&keymap
;
5046 buf
.hf_buflen
= sizeof (keymap
);
5047 keymap
.hf_nkeys
= 2;
5048 keymap
.hfkey
[0].hf_kpos
= 15;
5049 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
5051 keymap
.hfkey
[0].hf_keyidh
= '<';
5052 #else /* not IBMR2AIX */
5053 keymap
.hfkey
[0].hf_page
= '<';
5054 #endif /* not IBMR2AIX */
5055 keymap
.hfkey
[0].hf_char
= 8;
5056 keymap
.hfkey
[1].hf_kpos
= 15;
5057 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
5059 keymap
.hfkey
[1].hf_keyidh
= '<';
5060 #else /* not IBMR2AIX */
5061 keymap
.hfkey
[1].hf_page
= '<';
5062 #endif /* not IBMR2AIX */
5063 keymap
.hfkey
[1].hf_char
= 8;
5064 hftctl (0, HFSKBD
, &buf
);
5071 /* These are included on Sunos 4.1 when we do not use shared libraries.
5072 X11 libraries may refer to these functions but (we hope) do not
5073 actually call them. */
5093 #endif /* USE_DL_STUBS */
5102 register int length
;
5106 long max_str
= 65535;
5108 while (length
> max_str
) {
5109 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5114 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5116 while (length
-- > 0)
5118 #endif /* not VMS */
5121 #endif /* no bzero */
5122 #endif /* BSTRING */
5124 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5127 /* Saying `void' requires a declaration, above, where bcopy is used
5128 and that declaration causes pain for systems where bcopy is a macro. */
5129 bcopy (b1
, b2
, length
)
5132 register int length
;
5135 long max_str
= 65535;
5137 while (length
> max_str
) {
5138 (void) LIB$
MOVC3 (&max_str
, b1
, b2
);
5144 (void) LIB$
MOVC3 (&length
, b1
, b2
);
5146 while (length
-- > 0)
5148 #endif /* not VMS */
5150 #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5155 bcmp (b1
, b2
, length
) /* This could be a macro! */
5158 register int length
;
5161 struct dsc$descriptor_s src1
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b1
};
5162 struct dsc$descriptor_s src2
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b2
};
5164 return STR$
COMPARE (&src1
, &src2
);
5166 while (length
-- > 0)
5171 #endif /* not VMS */
5173 #endif /* no bcmp */
5174 #endif /* not BSTRING */