(DBL_MIN_REPLACEMENT): New macro.
[bpt/emacs.git] / src / sysdep.c
CommitLineData
86a5659e 1/* Interfaces to system-dependent kernel and library entries.
2ac53dfa 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
86a5659e
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7088d1ca 8the Free Software Foundation; either version 2, or (at your option)
86a5659e
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
86a5659e
JB
20
21
22#include <signal.h>
23#include <setjmp.h>
24
18160b98 25#include <config.h>
86a5659e 26#include "lisp.h"
9ac0d9e0 27#include "blockinput.h"
86a5659e
JB
28#undef NULL
29
30#define min(x,y) ((x) > (y) ? (y) : (x))
31
32/* In this file, open, read and write refer to the system calls,
33 not our sugared interfaces sys_open, sys_read and sys_write.
34 Contrariwise, for systems where we use the system calls directly,
35 define sys_read, etc. here as aliases for them. */
36#ifndef read
37#define sys_read read
38#define sys_write write
39#endif /* `read' is not a macro */
40
41#undef read
42#undef write
43
fe03522b
RS
44#ifdef WINDOWSNT
45#define read _read
46#define write _write
47#include <windows.h>
48extern int errno;
49#endif /* not WINDOWSNT */
50
86a5659e
JB
51#ifndef close
52#define sys_close close
53#else
54#undef close
55#endif
56
57#ifndef open
58#define sys_open open
59#else /* `open' is a macro */
60#undef open
61#endif /* `open' is a macro */
62
986ffb24
JB
63/* Does anyone other than VMS need this? */
64#ifndef fwrite
65#define sys_fwrite fwrite
66#else
67#undef fwrite
68#endif
69
e24f1d55
RS
70#ifndef HAVE_H_ERRNO
71extern int h_errno;
72#endif
73
86a5659e
JB
74#include <stdio.h>
75#include <sys/types.h>
76#include <sys/stat.h>
77#include <errno.h>
78
dca8521c
RS
79/* Get _POSIX_VDISABLE, if it is available. */
80#ifdef HAVE_UNISTD_H
81#include <unistd.h>
82#endif
83
b05af5d3
PE
84/* Get SI_SRPC_DOMAIN, if it is available. */
85#ifdef HAVE_SYS_SYSTEMINFO_H
86#include <sys/systeminfo.h>
87#endif
88
207bdbdb
RS
89#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
90#include <dos.h>
91#include "dosfns.h"
92#include "msdos.h"
93#include <sys/param.h>
15614e61
RS
94
95#if __DJGPP__ > 1
96extern int etext;
97extern unsigned start __asm__ ("start");
98#endif
207bdbdb
RS
99#endif
100
86a5659e 101extern int errno;
86a5659e 102
bb4bc8e2
RM
103#ifdef VMS
104#include <rms.h>
105#include <ttdef.h>
106#include <tt2def.h>
107#include <iodef.h>
108#include <ssdef.h>
109#include <descrip.h>
110#include <fibdef.h>
111#include <atrdef.h>
112#include <ctype.h>
113#include <string.h>
114#ifdef __GNUC__
115#include <sys/file.h>
116#else
117#include <file.h>
118#endif
119#undef F_SETFL
120#ifndef RAB$C_BID
121#include <rab.h>
122#endif
fe03522b 123#define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
bb4bc8e2
RM
124#endif /* VMS */
125
126#ifndef BSD4_1
2a633456 127#ifdef BSD_SYSTEM /* avoid writing defined (BSD_SYSTEM) || defined (USG)
bb4bc8e2
RM
128 because the vms compiler doesn't grok `defined' */
129#include <fcntl.h>
130#endif
131#ifdef USG
132#ifndef USG5
133#include <fcntl.h>
134#endif
135#endif
136#endif /* not 4.1 bsd */
86a5659e 137
207bdbdb 138#ifndef MSDOS
86a5659e 139#include <sys/ioctl.h>
207bdbdb 140#endif
2a633456 141
e04a4e0d 142#include "systty.h"
94c8642a 143#include "syswait.h"
86a5659e 144
86a5659e
JB
145#ifdef BROKEN_TIOCGWINSZ
146#undef TIOCGWINSZ
8dca3179 147#undef TIOCSWINSZ
86a5659e
JB
148#endif
149
86a5659e
JB
150#ifdef USG
151#include <sys/utsname.h>
152#include <string.h>
153#ifndef MEMORY_IN_STRING_H
154#include <memory.h>
155#endif
81444907 156#if defined (TIOCGWINSZ) || defined (ISC4_0)
86a5659e
JB
157#ifdef NEED_SIOCTL
158#include <sys/sioctl.h>
159#endif
160#ifdef NEED_PTEM_H
161#include <sys/stream.h>
162#include <sys/ptem.h>
163#endif
81444907 164#endif /* TIOCGWINSZ or ISC4_0 */
86a5659e
JB
165#endif /* USG */
166
86a5659e
JB
167extern int quit_char;
168
0137dbf7 169#include "frame.h"
86a5659e
JB
170#include "window.h"
171#include "termhooks.h"
172#include "termchar.h"
173#include "termopts.h"
174#include "dispextern.h"
175#include "process.h"
176
fe03522b
RS
177#ifdef WINDOWSNT
178#include <direct.h>
179/* In process.h which conflicts with the local copy. */
180#define _P_WAIT 0
181int _CRTAPI1 _spawnlp (int, const char *, const char *, ...);
182int _CRTAPI1 _getpid (void);
183#endif
184
86a5659e
JB
185#ifdef NONSYSTEM_DIR_LIBRARY
186#include "ndir.h"
187#endif /* NONSYSTEM_DIR_LIBRARY */
188
91bac16a
JB
189#include "syssignal.h"
190#include "systime.h"
d79998bc
KH
191#ifdef HAVE_UTIME_H
192#include <utime.h>
193#endif
194
195#ifndef HAVE_UTIMES
196#ifndef HAVE_STRUCT_UTIMBUF
197/* We want to use utime rather than utimes, but we couldn't find the
198 structure declaration. We'll use the traditional one. */
199struct utimbuf {
200 long actime;
201 long modtime;
202};
203#endif
204#endif
86a5659e 205
e336874b
KH
206#ifndef VFORK_RETURN_TYPE
207#define VFORK_RETURN_TYPE int
208#endif
209
a00d5589
RS
210/* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
211#ifndef LPASS8
212#define LPASS8 0
213#endif
214
215#ifdef BSD4_1
216#define LNOFLSH 0100000
217#endif
218
86a5659e
JB
219static int baud_convert[] =
220#ifdef BAUD_CONVERT
221 BAUD_CONVERT;
222#else
223 {
224 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
225 1800, 2400, 4800, 9600, 19200, 38400
226 };
227#endif
228
ba5971b3
RS
229#if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
230extern short ospeed;
231#else
515b04d0
RS
232#if defined (HAVE_TERMIOS_H) && defined (LINUX)
233#include <termios.h>
825e7e55
RS
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. */
f2361c60
RS
236extern speed_t ospeed;
237#else
9f80a1c8 238extern short ospeed;
f2361c60 239#endif
ba5971b3 240#endif
86a5659e 241
91bac16a 242/* The file descriptor for Emacs's input terminal.
0217ed57
RS
243 Under Unix, this is normally zero except when using X;
244 under VMS, we place the input channel number here. */
245int input_fd;
64e971c3
RS
246\f
247/* Specify a different file descriptor for further input operations. */
248
249void
250change_input_fd (fd)
251 int fd;
252{
253 input_fd = fd;
254}
255
256/* Discard pending input on descriptor input_fd. */
91bac16a 257
86a5659e
JB
258discard_tty_input ()
259{
fe03522b 260#ifndef WINDOWSNT
91bac16a 261 struct emacs_tty buf;
86a5659e
JB
262
263 if (noninteractive)
264 return;
265
266 /* Discarding input is not safe when the input could contain
267 replies from the X server. So don't do it. */
268 if (read_socket_hook)
269 return;
270
271#ifdef VMS
272 end_kbd_input ();
91bac16a
JB
273 SYS$QIOW (0, input_fd, IO$_READVBLK|IO$M_PURGE, input_iosb, 0, 0,
274 &buf.main, 0, 0, terminator_mask, 0, 0);
86a5659e
JB
275 queue_kbd_input ();
276#else /* not VMS */
277#ifdef APOLLO
278 {
279 int zero = 0;
64e971c3 280 ioctl (input_fd, TIOCFLUSH, &zero);
86a5659e
JB
281 }
282#else /* not Apollo */
fe03522b 283#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
207bdbdb 284 while (dos_keyread () != -1)
fe03522b 285 ;
207bdbdb 286#else /* not MSDOS */
91bac16a
JB
287 EMACS_GET_TTY (input_fd, &buf);
288 EMACS_SET_TTY (input_fd, &buf, 0);
207bdbdb 289#endif /* not MSDOS */
86a5659e
JB
290#endif /* not Apollo */
291#endif /* not VMS */
fe03522b 292#endif /* not WINDOWSNT */
86a5659e
JB
293}
294
295#ifdef SIGTSTP
296
64e971c3
RS
297/* Arrange for character C to be read as the next input from
298 the terminal. */
299
86a5659e
JB
300stuff_char (c)
301 char c;
302{
23dab951
RS
303 if (read_socket_hook)
304 return;
305
86a5659e
JB
306/* Should perhaps error if in batch mode */
307#ifdef TIOCSTI
64e971c3 308 ioctl (input_fd, TIOCSTI, &c);
86a5659e 309#else /* no TIOCSTI */
71f06467 310 error ("Cannot stuff terminal input characters in this version of Unix");
86a5659e
JB
311#endif /* no TIOCSTI */
312}
313
314#endif /* SIGTSTP */
64e971c3 315\f
86a5659e
JB
316init_baud_rate ()
317{
86a5659e
JB
318 if (noninteractive)
319 ospeed = 0;
320 else
321 {
dfc366c9
RS
322#ifdef INIT_BAUD_RATE
323 INIT_BAUD_RATE ();
324#else
fe03522b 325#ifdef DOS_NT
207bdbdb 326 ospeed = 15;
fe03522b 327#else /* not DOS_NT */
86a5659e 328#ifdef VMS
91bac16a
JB
329 struct sensemode sg;
330
331 SYS$QIOW (0, input_fd, IO$_SENSEMODE, &sg, 0, 0,
86a5659e 332 &sg.class, 12, 0, 0, 0, 0 );
91bac16a
JB
333 ospeed = sg.xmit_baud;
334#else /* not VMS */
e04a4e0d
JB
335#ifdef HAVE_TERMIOS
336 struct termios sg;
91bac16a 337
71f06467 338 sg.c_cflag = B9600;
64e971c3 339 tcgetattr (input_fd, &sg);
d7272cff 340 ospeed = cfgetospeed (&sg);
5baff9ce 341#if defined (USE_GETOBAUD) && defined (getobaud)
2f43149b
RS
342 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
343 if (ospeed == 0)
344 ospeed = getobaud (sg.c_cflag);
345#endif
e04a4e0d
JB
346#else /* neither VMS nor TERMIOS */
347#ifdef HAVE_TERMIO
348 struct termio sg;
91bac16a 349
71f06467 350 sg.c_cflag = B9600;
e04a4e0d 351#ifdef HAVE_TCATTR
64e971c3 352 tcgetattr (input_fd, &sg);
e04a4e0d 353#else
6c65530f 354 ioctl (input_fd, TCGETA, &sg);
e04a4e0d 355#endif
91bac16a 356 ospeed = sg.c_cflag & CBAUD;
e04a4e0d 357#else /* neither VMS nor TERMIOS nor TERMIO */
91bac16a
JB
358 struct sgttyb sg;
359
360 sg.sg_ospeed = B9600;
64e971c3 361 if (ioctl (input_fd, TIOCGETP, &sg) < 0)
d7272cff 362 abort ();
91bac16a 363 ospeed = sg.sg_ospeed;
91bac16a 364#endif /* not HAVE_TERMIO */
e04a4e0d 365#endif /* not HAVE_TERMIOS */
86a5659e 366#endif /* not VMS */
fe03522b 367#endif /* not DOS_NT */
dfc366c9 368#endif /* not INIT_BAUD_RATE */
86a5659e
JB
369 }
370
371 baud_rate = (ospeed < sizeof baud_convert / sizeof baud_convert[0]
fe03522b 372 ? baud_convert[ospeed] : 9600);
86a5659e
JB
373 if (baud_rate == 0)
374 baud_rate = 1200;
375}
376
377/*ARGSUSED*/
378set_exclusive_use (fd)
379 int fd;
380{
381#ifdef FIOCLEX
382 ioctl (fd, FIOCLEX, 0);
383#endif
384 /* Ok to do nothing if this feature does not exist */
385}
64e971c3 386\f
86a5659e
JB
387#ifndef subprocesses
388
389wait_without_blocking ()
390{
2a633456 391#ifdef BSD_SYSTEM
86a5659e
JB
392 wait3 (0, WNOHANG | WUNTRACED, 0);
393#else
394 croak ("wait_without_blocking");
395#endif
396 synch_process_alive = 0;
397}
398
399#endif /* not subprocesses */
400
401int wait_debugging; /* Set nonzero to make following function work under dbx
fe03522b 402 (at least for bsd). */
86a5659e
JB
403
404SIGTYPE
405wait_for_termination_signal ()
406{}
407
408/* Wait for subprocess with process id `pid' to terminate and
409 make sure it will get eliminated (not remain forever as a zombie) */
410
411wait_for_termination (pid)
412 int pid;
413{
414 while (1)
415 {
416#ifdef subprocesses
417#ifdef VMS
418 int status;
419
986ffb24 420 status = SYS$FORCEX (&pid, 0, 0);
86a5659e
JB
421 break;
422#else /* not VMS */
2a633456 423#if defined (BSD_SYSTEM) || (defined (HPUX) && !defined (HPUX_5))
4c8975ad
RS
424 /* Note that kill returns -1 even if the process is just a zombie now.
425 But inevitably a SIGCHLD interrupt should be generated
426 and child_sig will do wait3 and make the process go away. */
427 /* There is some indication that there is a bug involved with
428 termination of subprocesses, perhaps involving a kernel bug too,
429 but no idea what it is. Just as a hunch we signal SIGCHLD to see
430 if that causes the problem to go away or get worse. */
431 sigsetmask (sigmask (SIGCHLD));
432 if (0 > kill (pid, 0))
fe03522b 433 {
4c8975ad
RS
434 sigsetmask (SIGEMPTYMASK);
435 kill (getpid (), SIGCHLD);
436 break;
437 }
438 if (wait_debugging)
439 sleep (1);
440 else
441 sigpause (SIGEMPTYMASK);
2a633456 442#else /* not BSD_SYSTEM, and not HPUX version >= 6 */
05695621 443#if defined (UNIPLUS)
4c8975ad
RS
444 if (0 > kill (pid, 0))
445 break;
446 wait (0);
2a633456 447#else /* neither BSD_SYSTEM nor UNIPLUS: random sysV */
fe03522b 448#ifdef POSIX_SIGNALS /* would this work for LINUX as well? */
9ab714c7
RS
449 sigblock (sigmask (SIGCHLD));
450 if (0 > kill (pid, 0))
451 {
452 sigunblock (sigmask (SIGCHLD));
453 break;
454 }
92c995de 455 sigpause (SIGEMPTYMASK);
9ab714c7 456#else /* not POSIX_SIGNALS */
4c8975ad
RS
457#ifdef HAVE_SYSV_SIGPAUSE
458 sighold (SIGCHLD);
459 if (0 > kill (pid, 0))
460 {
461 sigrelse (SIGCHLD);
462 break;
463 }
464 sigpause (SIGCHLD);
465#else /* not HAVE_SYSV_SIGPAUSE */
fe03522b
RS
466#ifdef WINDOWSNT
467 wait (0);
468 break;
469#else /* not WINDOWSNT */
4c8975ad 470 if (0 > kill (pid, 0))
86a5659e 471 break;
4c8975ad
RS
472 /* Using sleep instead of pause avoids timing error.
473 If the inferior dies just before the sleep,
474 we lose just one second. */
475 sleep (1);
fe03522b 476#endif /* not WINDOWSNT */
4c8975ad 477#endif /* not HAVE_SYSV_SIGPAUSE */
9ab714c7 478#endif /* not POSIX_SIGNALS */
4c8975ad 479#endif /* not UNIPLUS */
2a633456 480#endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
86a5659e
JB
481#endif /* not VMS */
482#else /* not subprocesses */
15614e61
RS
483#if __DJGPP__ > 1
484 break;
485#else /* not __DJGPP__ > 1 */
86a5659e
JB
486#ifndef BSD4_1
487 if (kill (pid, 0) < 0)
488 break;
489 wait (0);
490#else /* BSD4_1 */
491 int status;
492 status = wait (0);
493 if (status == pid || status == -1)
494 break;
495#endif /* BSD4_1 */
15614e61 496#endif /* not __DJGPP__ > 1*/
86a5659e
JB
497#endif /* not subprocesses */
498 }
499}
500
501#ifdef subprocesses
502
503/*
504 * flush any pending output
505 * (may flush input as well; it does not matter the way we use it)
506 */
507
508flush_pending_output (channel)
509 int channel;
510{
511#ifdef HAVE_TERMIOS
512 /* If we try this, we get hit with SIGTTIN, because
513 the child's tty belongs to the child's pgrp. */
514#else
515#ifdef TCFLSH
516 ioctl (channel, TCFLSH, 1);
517#else
518#ifdef TIOCFLUSH
519 int zero = 0;
520 /* 3rd arg should be ignored
521 but some 4.2 kernels actually want the address of an int
522 and nonzero means something different. */
523 ioctl (channel, TIOCFLUSH, &zero);
524#endif
525#endif
526#endif
527}
64e971c3 528\f
86a5659e
JB
529#ifndef VMS
530/* Set up the terminal at the other end of a pseudo-terminal that
531 we will be controlling an inferior through.
532 It should not echo or do line-editing, since that is done
533 in Emacs. No padding needed for insertion into an Emacs buffer. */
534
535child_setup_tty (out)
536 int out;
537{
fe03522b 538#ifndef DOS_NT
91bac16a
JB
539 struct emacs_tty s;
540
541 EMACS_GET_TTY (out, &s);
86a5659e 542
31be8d24 543#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
91bac16a
JB
544 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
545 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
9d4e5eea 546#ifdef NLDLY
91bac16a
JB
547 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
548 /* No output delays */
9d4e5eea 549#endif
91bac16a
JB
550 s.main.c_lflag &= ~ECHO; /* Disable echo */
551 s.main.c_lflag |= ISIG; /* Enable signals */
9d4e5eea
RS
552#ifdef IUCLC
553 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
554#endif
f7097b2a
RS
555#ifdef ISTRIP
556 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
557#endif
23e4c8be 558#ifdef OLCUC
9d4e5eea
RS
559 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
560#endif
f7097b2a 561 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1bf96fb5 562 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
91bac16a 563#if 0
eb8c3be9 564 /* Said to be unnecessary: */
91bac16a
JB
565 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */
566 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */
567#endif
568
569 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
570 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */
441f6399
RS
571 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
572 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
91bac16a 573
86a5659e 574#ifdef HPUX
91bac16a 575 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e 576#endif /* HPUX */
91bac16a 577
86a5659e
JB
578#ifdef AIX
579/* AIX enhanced edit loses NULs, so disable it */
580#ifndef IBMR2AIX
91bac16a
JB
581 s.main.c_line = 0;
582 s.main.c_iflag &= ~ASCEDIT;
86a5659e
JB
583#endif
584 /* Also, PTY overloads NUL and BREAK.
585 don't ignore break, but don't signal either, so it looks like NUL. */
91bac16a
JB
586 s.main.c_iflag &= ~IGNBRK;
587 s.main.c_iflag &= ~BRKINT;
588 /* QUIT and INTR work better as signals, so disable character forms */
91bac16a 589 s.main.c_cc[VINTR] = 0377;
e6cc3307
RS
590#ifdef SIGNALS_VIA_CHARACTERS
591 /* the QUIT and INTR character are used in process_send_signal
592 so set them here to something useful. */
593 if (s.main.c_cc[VQUIT] == 0377)
594 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
595 if (s.main.c_cc[VINTR] == 0377)
596 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
597#else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
598 /* QUIT and INTR work better as signals, so disable character forms */
599 s.main.c_cc[VQUIT] = 0377;
600 s.main.c_cc[VINTR] = 0377;
91bac16a 601 s.main.c_lflag &= ~ISIG;
e6cc3307
RS
602#endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
603 s.main.c_cc[VEOL] = 0377;
91bac16a 604 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e
JB
605#endif /* AIX */
606
607#else /* not HAVE_TERMIO */
91bac16a
JB
608
609 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
610 | CBREAK | TANDEM);
a00d5589 611 s.main.sg_flags |= LPASS8;
91bac16a
JB
612 s.main.sg_erase = 0377;
613 s.main.sg_kill = 0377;
1bf96fb5 614 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
91bac16a 615
86a5659e
JB
616#endif /* not HAVE_TERMIO */
617
91bac16a 618 EMACS_SET_TTY (out, &s, 0);
86a5659e
JB
619
620#ifdef BSD4_1
621 if (interrupt_input)
622 reset_sigio ();
623#endif /* BSD4_1 */
624#ifdef RTU
625 {
626 int zero = 0;
627 ioctl (out, FIOASYNC, &zero);
628 }
629#endif /* RTU */
fe03522b 630#endif /* not DOS_NT */
86a5659e
JB
631}
632#endif /* not VMS */
633
634#endif /* subprocesses */
64e971c3 635\f
86a5659e
JB
636/* Record a signal code and the handler for it. */
637struct save_signal
638{
639 int code;
640 SIGTYPE (*handler) ();
641};
642
643/* Suspend the Emacs process; give terminal to its superior. */
644
645sys_suspend ()
646{
647#ifdef VMS
88191e36
RS
648 /* "Foster" parentage allows emacs to return to a subprocess that attached
649 to the current emacs as a cheaper than starting a whole new process. This
650 is set up by KEPTEDITOR.COM. */
651 unsigned long parent_id, foster_parent_id;
652 char *fpid_string;
653
654 fpid_string = getenv ("EMACS_PARENT_PID");
655 if (fpid_string != NULL)
656 {
657 sscanf (fpid_string, "%x", &foster_parent_id);
658 if (foster_parent_id != 0)
659 parent_id = foster_parent_id;
660 else
661 parent_id = getppid ();
662 }
663 else
664 parent_id = getppid ();
665
9ac0d9e0 666 xfree (fpid_string); /* On VMS, this was malloc'd */
86a5659e 667
86a5659e
JB
668 if (parent_id && parent_id != 0xffffffff)
669 {
670 SIGTYPE (*oldsig)() = (int) signal (SIGINT, SIG_IGN);
671 int status = LIB$ATTACH (&parent_id) & 1;
672 signal (SIGINT, oldsig);
673 return status;
674 }
675 else
676 {
677 struct {
678 int l;
679 char *a;
680 } d_prompt;
681 d_prompt.l = sizeof ("Emacs: "); /* Our special prompt */
682 d_prompt.a = "Emacs: "; /* Just a reminder */
986ffb24 683 LIB$SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt, 0);
86a5659e
JB
684 return 1;
685 }
686 return -1;
687#else
207bdbdb 688#if defined(SIGTSTP) && !defined(MSDOS)
86a5659e 689
5a570e37 690 {
e89a2cd5 691 int pgrp = EMACS_GETPGRP (0);
5a570e37
JB
692 EMACS_KILLPG (pgrp, SIGTSTP);
693 }
86a5659e
JB
694
695#else /* No SIGTSTP */
696#ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
697 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
698 kill (getpid (), SIGQUIT);
699
700#else /* No SIGTSTP or USG_JOBCTRL */
701
702/* On a system where suspending is not implemented,
703 instead fork a subshell and let it talk directly to the terminal
704 while we wait. */
a0932daa
KH
705 sys_subshell ();
706
707#endif /* no USG_JOBCTRL */
708#endif /* no SIGTSTP */
709#endif /* not VMS */
710}
711
712/* Fork a subshell. */
713
714sys_subshell ()
715{
716#ifndef VMS
ad00c243 717#ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
a0932daa
KH
718 int st;
719 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
720#endif
efa04277 721 int pid;
86a5659e 722 struct save_signal saved_handlers[5];
efa04277
RS
723 Lisp_Object dir;
724 unsigned char *str = 0;
725 int len;
86a5659e
JB
726
727 saved_handlers[0].code = SIGINT;
728 saved_handlers[1].code = SIGQUIT;
729 saved_handlers[2].code = SIGTERM;
730#ifdef SIGIO
731 saved_handlers[3].code = SIGIO;
732 saved_handlers[4].code = 0;
733#else
734 saved_handlers[3].code = 0;
735#endif
736
efa04277
RS
737 /* Mentioning current_buffer->buffer would mean including buffer.h,
738 which somehow wedges the hp compiler. So instead... */
739
740 dir = intern ("default-directory");
0e7e7a58 741 if (NILP (Fboundp (dir)))
efa04277
RS
742 goto xyzzy;
743 dir = Fsymbol_value (dir);
914e81a2 744 if (!STRINGP (dir))
efa04277
RS
745 goto xyzzy;
746
747 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
748 str = (unsigned char *) alloca (XSTRING (dir)->size + 2);
749 len = XSTRING (dir)->size;
750 bcopy (XSTRING (dir)->data, str, len);
751 if (str[len - 1] != '/') str[len++] = '/';
752 str[len] = 0;
753 xyzzy:
754
ad00c243 755#ifdef DOS_NT
7964ba9e 756 pid = 0;
718ca3cf
RS
757#if __DJGPP__ > 1
758 save_signal_handlers (saved_handlers);
759 synch_process_alive = 1;
760#endif /* __DJGPP__ > 1 */
7964ba9e 761#else
efa04277 762 pid = vfork ();
86a5659e
JB
763 if (pid == -1)
764 error ("Can't spawn subshell");
7964ba9e
RS
765#endif
766
86a5659e
JB
767 if (pid == 0)
768 {
7964ba9e 769 char *sh = 0;
86a5659e 770
ad00c243 771#ifdef DOS_NT /* MW, Aug 1993 */
207bdbdb 772 getwd (oldwd);
7964ba9e
RS
773 if (sh == 0)
774 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
207bdbdb 775#endif
7964ba9e
RS
776 if (sh == 0)
777 sh = (char *) egetenv ("SHELL");
86a5659e
JB
778 if (sh == 0)
779 sh = "sh";
207bdbdb 780
86a5659e 781 /* Use our buffer's default directory for the subshell. */
efa04277 782 if (str)
86a5659e 783 chdir (str);
efa04277 784
86a5659e
JB
785#ifdef subprocesses
786 close_process_descs (); /* Close Emacs's pipes/ptys */
787#endif
1593c2fe 788
6f8b4d01 789#ifdef SET_EMACS_PRIORITY
1593c2fe
JB
790 {
791 extern int emacs_priority;
792
6f8b4d01 793 if (emacs_priority < 0)
1593c2fe
JB
794 nice (-emacs_priority);
795 }
796#endif
797
fe03522b 798#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
207bdbdb
RS
799 st = system (sh);
800 chdir (oldwd);
7964ba9e 801#if 0 /* This is also reported if last command executed in subshell failed, KFS */
207bdbdb 802 if (st)
fe03522b 803 report_file_error ("Can't execute subshell", Fcons (build_string (sh), Qnil));
7964ba9e 804#endif
207bdbdb 805#else /* not MSDOS */
fe03522b 806#ifdef WINDOWSNT
fe03522b
RS
807 /* Waits for process completion */
808 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
ad00c243 809 chdir (oldwd);
fe03522b
RS
810 if (pid == -1)
811 write (1, "Can't execute subshell", 22);
fe03522b 812#else /* not WINDOWSNT */
86a5659e
JB
813 execlp (sh, sh, 0);
814 write (1, "Can't execute subshell", 22);
815 _exit (1);
fe03522b 816#endif /* not WINDOWSNT */
207bdbdb 817#endif /* not MSDOS */
86a5659e
JB
818 }
819
718ca3cf
RS
820 /* Do this now if we did not do it before. */
821#if !defined (MSDOS) || __DJGPP__ == 1
86a5659e 822 save_signal_handlers (saved_handlers);
ffafc793 823 synch_process_alive = 1;
718ca3cf
RS
824#endif
825
ad00c243 826#ifndef DOS_NT
86a5659e 827 wait_for_termination (pid);
7964ba9e 828#endif
86a5659e 829 restore_signal_handlers (saved_handlers);
718ca3cf 830 synch_process_alive = 0;
a0932daa 831#endif /* !VMS */
86a5659e
JB
832}
833
834save_signal_handlers (saved_handlers)
835 struct save_signal *saved_handlers;
836{
837 while (saved_handlers->code)
838 {
508b171c
JA
839 saved_handlers->handler
840 = (SIGTYPE (*) ()) signal (saved_handlers->code, SIG_IGN);
86a5659e
JB
841 saved_handlers++;
842 }
843}
844
845restore_signal_handlers (saved_handlers)
846 struct save_signal *saved_handlers;
847{
848 while (saved_handlers->code)
849 {
850 signal (saved_handlers->code, saved_handlers->handler);
851 saved_handlers++;
852 }
853}
854\f
855#ifdef F_SETFL
856
857int old_fcntl_flags;
858
23dab951
RS
859init_sigio (fd)
860 int fd;
86a5659e
JB
861{
862#ifdef FASYNC
23dab951
RS
863 old_fcntl_flags = fcntl (fd, F_GETFL, 0) & ~FASYNC;
864 fcntl (fd, F_SETFL, old_fcntl_flags | FASYNC);
86a5659e 865#endif
23dab951 866 interrupts_deferred = 0;
86a5659e
JB
867}
868
869reset_sigio ()
870{
871 unrequest_sigio ();
872}
873
eb8c3be9 874#ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
86a5659e
JB
875
876request_sigio ()
877{
23dab951
RS
878 if (read_socket_hook)
879 return;
880
86a5659e 881#ifdef SIGWINCH
e065a56e 882 sigunblock (sigmask (SIGWINCH));
86a5659e 883#endif
64e971c3 884 fcntl (input_fd, F_SETFL, old_fcntl_flags | FASYNC);
86a5659e
JB
885
886 interrupts_deferred = 0;
887}
888
889unrequest_sigio ()
890{
23dab951
RS
891 if (read_socket_hook)
892 return;
893
86a5659e 894#ifdef SIGWINCH
e065a56e 895 sigblock (sigmask (SIGWINCH));
86a5659e 896#endif
64e971c3 897 fcntl (input_fd, F_SETFL, old_fcntl_flags);
86a5659e
JB
898 interrupts_deferred = 1;
899}
900
901#else /* no FASYNC */
902#ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
903
904request_sigio ()
905{
906 int on = 1;
23dab951
RS
907
908 if (read_socket_hook)
909 return;
910
64e971c3 911 ioctl (input_fd, FIOASYNC, &on);
86a5659e
JB
912 interrupts_deferred = 0;
913}
914
915unrequest_sigio ()
916{
917 int off = 0;
918
23dab951
RS
919 if (read_socket_hook)
920 return;
921
64e971c3 922 ioctl (input_fd, FIOASYNC, &off);
86a5659e
JB
923 interrupts_deferred = 1;
924}
925
926#else /* not FASYNC, not STRIDE */
927
25ab68af
RS
928#ifdef _CX_UX
929
930#include <termios.h>
931
932request_sigio ()
933{
934 int on = 1;
935 sigset_t st;
936
23dab951
RS
937 if (read_socket_hook)
938 return;
939
25ab68af
RS
940 sigemptyset(&st);
941 sigaddset(&st, SIGIO);
942 ioctl (input_fd, FIOASYNC, &on);
943 interrupts_deferred = 0;
944 sigprocmask(SIG_UNBLOCK, &st, (sigset_t *)0);
945}
946
947unrequest_sigio ()
948{
949 int off = 0;
950
23dab951
RS
951 if (read_socket_hook)
952 return;
953
25ab68af
RS
954 ioctl (input_fd, FIOASYNC, &off);
955 interrupts_deferred = 1;
956}
957
958#else /* ! _CX_UX */
959
86a5659e
JB
960request_sigio ()
961{
23dab951
RS
962 if (read_socket_hook)
963 return;
964
86a5659e
JB
965 croak ("request_sigio");
966}
967
968unrequest_sigio ()
969{
23dab951
RS
970 if (read_socket_hook)
971 return;
972
86a5659e
JB
973 croak ("unrequest_sigio");
974}
975
25ab68af 976#endif /* _CX_UX */
86a5659e
JB
977#endif /* STRIDE */
978#endif /* FASYNC */
979#endif /* F_SETFL */
980\f
9ae8f997
JB
981/* Saving and restoring the process group of Emacs's terminal. */
982
0ba73609 983#ifdef BSD_PGRPS
9ae8f997
JB
984
985/* The process group of which Emacs was a member when it initially
986 started.
987
988 If Emacs was in its own process group (i.e. inherited_pgroup ==
989 getpid ()), then we know we're running under a shell with job
990 control (Emacs would never be run as part of a pipeline).
991 Everything is fine.
992
993 If Emacs was not in its own process group, then we know we're
994 running under a shell (or a caller) that doesn't know how to
995 separate itself from Emacs (like sh). Emacs must be in its own
996 process group in order to receive SIGIO correctly. In this
997 situation, we put ourselves in our own pgroup, forcibly set the
998 tty's pgroup to our pgroup, and make sure to restore and reinstate
999 the tty's pgroup just like any other terminal setting. If
1000 inherited_group was not the tty's pgroup, then we'll get a
1001 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1002 it goes foreground in the future, which is what should happen. */
1003int inherited_pgroup;
1004
1005/* Split off the foreground process group to Emacs alone.
1006 When we are in the foreground, but not started in our own process
1007 group, redirect the TTY to point to our own process group. We need
1008 to be in our own process group to receive SIGIO properly. */
1009narrow_foreground_group ()
1010{
1011 int me = getpid ();
1012
1013 setpgrp (0, inherited_pgroup);
1014 if (inherited_pgroup != me)
64e971c3 1015 EMACS_SET_TTY_PGRP (input_fd, &me);
9ae8f997
JB
1016 setpgrp (0, me);
1017}
1018
1019/* Set the tty to our original foreground group. */
1020widen_foreground_group ()
1021{
1022 if (inherited_pgroup != getpid ())
64e971c3 1023 EMACS_SET_TTY_PGRP (input_fd, &inherited_pgroup);
9ae8f997
JB
1024 setpgrp (0, inherited_pgroup);
1025}
1026
0ba73609 1027#endif /* BSD_PGRPS */
9ae8f997 1028\f
68936329
JB
1029/* Getting and setting emacs_tty structures. */
1030
1031/* Set *TC to the parameters associated with the terminal FD.
1032 Return zero if all's well, or -1 if we ran into an error we
1033 couldn't deal with. */
1034int
1035emacs_get_tty (fd, settings)
1036 int fd;
1037 struct emacs_tty *settings;
1038{
1039 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1040#ifdef HAVE_TCATTR
1041 /* We have those nifty POSIX tcmumbleattr functions. */
1042 if (tcgetattr (fd, &settings->main) < 0)
1043 return -1;
1044
1045#else
1046#ifdef HAVE_TERMIO
1047 /* The SYSV-style interface? */
1048 if (ioctl (fd, TCGETA, &settings->main) < 0)
1049 return -1;
1050
1051#else
1052#ifdef VMS
1053 /* Vehemently Monstrous System? :-) */
1054 if (! (SYS$QIOW (0, fd, IO$_SENSEMODE, settings, 0, 0,
1055 &settings->main.class, 12, 0, 0, 0, 0)
1056 & 1))
1057 return -1;
1058
1059#else
fe03522b 1060#ifndef DOS_NT
68936329
JB
1061 /* I give up - I hope you have the BSD ioctls. */
1062 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
1063 return -1;
fe03522b 1064#endif /* not DOS_NT */
68936329
JB
1065#endif
1066#endif
1067#endif
1068
1069 /* Suivant - Do we have to get struct ltchars data? */
50b8cf60 1070#ifdef HAVE_LTCHARS
68936329
JB
1071 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
1072 return -1;
1073#endif
1074
1075 /* How about a struct tchars and a wordful of lmode bits? */
50b8cf60 1076#ifdef HAVE_TCHARS
68936329
JB
1077 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
1078 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
1079 return -1;
1080#endif
1081
1082 /* We have survived the tempest. */
1083 return 0;
1084}
1085
1086
1087/* Set the parameters of the tty on FD according to the contents of
394049ec 1088 *SETTINGS. If FLUSHP is non-zero, we discard input.
68936329 1089 Return 0 if all went well, and -1 if anything failed. */
394049ec 1090
68936329 1091int
394049ec 1092emacs_set_tty (fd, settings, flushp)
68936329
JB
1093 int fd;
1094 struct emacs_tty *settings;
394049ec 1095 int flushp;
68936329
JB
1096{
1097 /* Set the primary parameters - baud rate, character size, etcetera. */
1098#ifdef HAVE_TCATTR
e6cc3307 1099 int i;
68936329
JB
1100 /* We have those nifty POSIX tcmumbleattr functions.
1101 William J. Smith <wjs@wiis.wang.com> writes:
1102 "POSIX 1003.1 defines tcsetattr() to return success if it was
1103 able to perform any of the requested actions, even if some
1104 of the requested actions could not be performed.
1105 We must read settings back to ensure tty setup properly.
1106 AIX requires this to keep tty from hanging occasionally." */
eb8c3be9 1107 /* This make sure that we don't loop indefinitely in here. */
e6cc3307 1108 for (i = 0 ; i < 10 ; i++)
394049ec 1109 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
68936329
JB
1110 {
1111 if (errno == EINTR)
1112 continue;
1113 else
1114 return -1;
1115 }
1116 else
1117 {
1118 struct termios new;
1119
1120 /* Get the current settings, and see if they're what we asked for. */
1121 tcgetattr (fd, &new);
e6cc3307
RS
1122 /* We cannot use memcmp on the whole structure here because under
1123 * aix386 the termios structure has some reserved field that may
1124 * not be filled in.
1125 */
1126 if ( new.c_iflag == settings->main.c_iflag
1127 && new.c_oflag == settings->main.c_oflag
1128 && new.c_cflag == settings->main.c_cflag
1129 && new.c_lflag == settings->main.c_lflag
1130 && memcmp(new.c_cc, settings->main.c_cc, NCCS) == 0)
68936329 1131 break;
e6cc3307
RS
1132 else
1133 continue;
68936329
JB
1134 }
1135
1136#else
1137#ifdef HAVE_TERMIO
1138 /* The SYSV-style interface? */
394049ec 1139 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
68936329
JB
1140 return -1;
1141
1142#else
1143#ifdef VMS
1144 /* Vehemently Monstrous System? :-) */
1145 if (! (SYS$QIOW (0, fd, IO$_SETMODE, &input_iosb, 0, 0,
1146 &settings->main.class, 12, 0, 0, 0, 0)
1147 & 1))
1148 return -1;
1149
1150#else
fe03522b 1151#ifndef DOS_NT
68936329 1152 /* I give up - I hope you have the BSD ioctls. */
394049ec 1153 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
68936329 1154 return -1;
fe03522b 1155#endif /* not DOS_NT */
68936329
JB
1156
1157#endif
1158#endif
1159#endif
1160
1161 /* Suivant - Do we have to get struct ltchars data? */
50b8cf60 1162#ifdef HAVE_LTCHARS
68936329
JB
1163 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
1164 return -1;
1165#endif
1166
1167 /* How about a struct tchars and a wordful of lmode bits? */
50b8cf60 1168#ifdef HAVE_TCHARS
68936329
JB
1169 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
1170 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
1171 return -1;
1172#endif
1173
1174 /* We have survived the tempest. */
1175 return 0;
1176}
1177
1178\f
91bac16a
JB
1179/* The initial tty mode bits */
1180struct emacs_tty old_tty;
86a5659e 1181
7e32a4fb
KH
1182/* 1 if we have been through init_sys_modes. */
1183int term_initted;
1184
1185/* 1 if outer tty status has been recorded. */
1186int old_tty_valid;
86a5659e 1187
91bac16a
JB
1188#ifdef BSD4_1
1189/* BSD 4.1 needs to keep track of the lmode bits in order to start
1190 sigio. */
1191int lmode;
1192#endif
1193
46f2fdac 1194#ifndef F_SETOWN_BUG
86a5659e
JB
1195#ifdef F_SETOWN
1196int old_fcntl_owner;
1197#endif /* F_SETOWN */
46f2fdac 1198#endif /* F_SETOWN_BUG */
86a5659e 1199
86a5659e
JB
1200/* This may also be defined in stdio,
1201 but if so, this does no harm,
1202 and using the same name avoids wasting the other one's space. */
1203
1204#if defined (USG) || defined (DGUX)
1205unsigned char _sobuf[BUFSIZ+8];
1206#else
1207char _sobuf[BUFSIZ];
1208#endif
1209
50b8cf60 1210#ifdef HAVE_LTCHARS
86a5659e
JB
1211static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
1212#endif
50b8cf60 1213#ifdef HAVE_TCHARS
4ec5cb58 1214static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
86a5659e
JB
1215#endif
1216
1217init_sys_modes ()
1218{
91bac16a
JB
1219 struct emacs_tty tty;
1220
86a5659e
JB
1221#ifdef VMS
1222#if 0
1223 static int oob_chars[2] = {0, 1 << 7}; /* catch C-g's */
1224 extern int (*interrupt_signal) ();
1225#endif
1226#endif
1227
4ec5cb58
RS
1228 Vtty_erase_char = Qnil;
1229
86a5659e
JB
1230 if (noninteractive)
1231 return;
1232
1233#ifdef VMS
1234 if (!input_ef)
1235 input_ef = get_kbd_event_flag ();
1236 /* LIB$GET_EF (&input_ef); */
1237 SYS$CLREF (input_ef);
1238 waiting_for_ast = 0;
1239 if (!timer_ef)
1240 timer_ef = get_timer_event_flag ();
1241 /* LIB$GET_EF (&timer_ef); */
1242 SYS$CLREF (timer_ef);
210b2b4f 1243#if 0
86a5659e
JB
1244 if (!process_ef)
1245 {
1246 LIB$GET_EF (&process_ef);
1247 SYS$CLREF (process_ef);
1248 }
1249 if (input_ef / 32 != process_ef / 32)
1250 croak ("Input and process event flags in different clusters.");
210b2b4f 1251#endif
86a5659e 1252 if (input_ef / 32 != timer_ef / 32)
210b2b4f
JB
1253 croak ("Input and timer event flags in different clusters.");
1254#if 0
86a5659e
JB
1255 input_eflist = ((unsigned) 1 << (input_ef % 32)) |
1256 ((unsigned) 1 << (process_ef % 32));
210b2b4f 1257#endif
86a5659e
JB
1258 timer_eflist = ((unsigned) 1 << (input_ef % 32)) |
1259 ((unsigned) 1 << (timer_ef % 32));
86a5659e
JB
1260#ifndef VMS4_4
1261 sys_access_reinit ();
1262#endif
86a5659e 1263#endif /* not VMS */
91bac16a 1264
0ba73609 1265#ifdef BSD_PGRPS
9ae8f997
JB
1266 if (! read_socket_hook && EQ (Vwindow_system, Qnil))
1267 narrow_foreground_group ();
1268#endif
1269
23cafe43 1270#ifdef HAVE_WINDOW_SYSTEM
87485d6f
MW
1271 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1272 needs the initialization code below. */
86a5659e 1273 if (!read_socket_hook && EQ (Vwindow_system, Qnil))
87485d6f 1274#endif
86a5659e 1275 {
23dab951
RS
1276 EMACS_GET_TTY (input_fd, &old_tty);
1277
7e32a4fb
KH
1278 old_tty_valid = 1;
1279
91bac16a 1280 tty = old_tty;
86a5659e 1281
31be8d24 1282#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
2e34157c 1283 XSETINT (Vtty_erase_char, old_tty.main.c_cc[VERASE]);
4ec5cb58 1284
421dd92f
RS
1285#ifdef DGUX
1286 /* This allows meta to be sent on 8th bit. */
1287 tty.main.c_iflag &= ~INPCK; /* don't check input for parity */
1288#endif
91bac16a
JB
1289 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
1290 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
7f371164
RS
1291#ifdef INLCR /* I'm just being cautious,
1292 since I can't check how widespread INLCR is--rms. */
1293 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
1294#endif
86a5659e 1295#ifdef ISTRIP
91bac16a 1296 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
86a5659e 1297#endif
91bac16a
JB
1298 tty.main.c_lflag &= ~ECHO; /* Disable echo */
1299 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
e2b40c23 1300#ifdef IEXTEN
b26bc18b 1301 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
e2b40c23 1302#endif
91bac16a 1303 tty.main.c_lflag |= ISIG; /* Enable signals */
86a5659e
JB
1304 if (flow_control)
1305 {
91bac16a 1306 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
86a5659e 1307#ifdef IXANY
91bac16a 1308 tty.main.c_iflag &= ~IXANY;
86a5659e
JB
1309#endif /* IXANY */
1310 }
1311 else
91bac16a
JB
1312 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
1313 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
1314 on output */
1315 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
86a5659e
JB
1316#ifdef CS8
1317 if (meta_key)
1318 {
91bac16a
JB
1319 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
1320 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
86a5659e
JB
1321 }
1322#endif
91bac16a 1323 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
86a5659e
JB
1324 /* Set up C-g for both SIGQUIT and SIGINT.
1325 We don't know which we will get, but we handle both alike
1326 so which one it really gives us does not matter. */
91bac16a
JB
1327 tty.main.c_cc[VQUIT] = quit_char;
1328 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1329 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
86a5659e 1330#ifdef VSWTCH
e2b40c23 1331 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
91bac16a 1332 of C-z */
86a5659e 1333#endif /* VSWTCH */
c179a6d1 1334
86a5659e 1335#if defined (mips) || defined (HAVE_TCATTR)
86a5659e 1336#ifdef VSUSP
e2b40c23 1337 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */
86a5659e
JB
1338#endif /* VSUSP */
1339#ifdef V_DSUSP
e2b40c23 1340 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */
86a5659e 1341#endif /* V_DSUSP */
e2b40c23
RS
1342#ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1343 tty.main.c_cc[VDSUSP] = CDISABLE;
1344#endif /* VDSUSP */
92c995de
RS
1345#ifdef VLNEXT
1346 tty.main.c_cc[VLNEXT] = CDISABLE;
1347#endif /* VLNEXT */
1348#ifdef VREPRINT
1349 tty.main.c_cc[VREPRINT] = CDISABLE;
1350#endif /* VREPRINT */
1351#ifdef VWERASE
1352 tty.main.c_cc[VWERASE] = CDISABLE;
1353#endif /* VWERASE */
1354#ifdef VDISCARD
1355 tty.main.c_cc[VDISCARD] = CDISABLE;
1356#endif /* VDISCARD */
c179a6d1
RS
1357
1358 if (flow_control)
1359 {
421dd92f 1360#ifdef VSTART
c179a6d1 1361 tty.main.c_cc[VSTART] = '\021';
421dd92f
RS
1362#endif /* VSTART */
1363#ifdef VSTOP
c179a6d1 1364 tty.main.c_cc[VSTOP] = '\023';
421dd92f 1365#endif /* VSTOP */
c179a6d1
RS
1366 }
1367 else
1368 {
1369#ifdef VSTART
1370 tty.main.c_cc[VSTART] = CDISABLE;
1371#endif /* VSTART */
1372#ifdef VSTOP
1373 tty.main.c_cc[VSTOP] = CDISABLE;
1374#endif /* VSTOP */
1375 }
86a5659e 1376#endif /* mips or HAVE_TCATTR */
c179a6d1 1377
441f6399 1378#ifdef SET_LINE_DISCIPLINE
ea5a0917 1379 /* Need to explicitly request TERMIODISC line discipline or
441f6399
RS
1380 Ultrix's termios does not work correctly. */
1381 tty.main.c_line = SET_LINE_DISCIPLINE;
1382#endif
86a5659e
JB
1383#ifdef AIX
1384#ifndef IBMR2AIX
441f6399 1385 /* AIX enhanced edit loses NULs, so disable it. */
91bac16a
JB
1386 tty.main.c_line = 0;
1387 tty.main.c_iflag &= ~ASCEDIT;
86a5659e 1388#else
91bac16a
JB
1389 tty.main.c_cc[VSTRT] = 255;
1390 tty.main.c_cc[VSTOP] = 255;
1391 tty.main.c_cc[VSUSP] = 255;
1392 tty.main.c_cc[VDSUSP] = 255;
86a5659e 1393#endif /* IBMR2AIX */
ac567c95
RS
1394 if (flow_control)
1395 {
1396#ifdef VSTART
1397 tty.main.c_cc[VSTART] = '\021';
1398#endif /* VSTART */
1399#ifdef VSTOP
1400 tty.main.c_cc[VSTOP] = '\023';
1401#endif /* VSTOP */
1402 }
86a5659e
JB
1403 /* Also, PTY overloads NUL and BREAK.
1404 don't ignore break, but don't signal either, so it looks like NUL.
1405 This really serves a purpose only if running in an XTERM window
1406 or via TELNET or the like, but does no harm elsewhere. */
91bac16a
JB
1407 tty.main.c_iflag &= ~IGNBRK;
1408 tty.main.c_iflag &= ~BRKINT;
86a5659e
JB
1409#endif
1410#else /* if not HAVE_TERMIO */
1411#ifdef VMS
91bac16a 1412 tty.main.tt_char |= TT$M_NOECHO;
86a5659e 1413 if (meta_key)
986ffb24 1414 tty.main.tt_char |= TT$M_EIGHTBIT;
86a5659e 1415 if (flow_control)
91bac16a 1416 tty.main.tt_char |= TT$M_TTSYNC;
86a5659e 1417 else
91bac16a
JB
1418 tty.main.tt_char &= ~TT$M_TTSYNC;
1419 tty.main.tt2_char |= TT2$M_PASTHRU | TT2$M_XON;
86a5659e 1420#else /* not VMS (BSD, that is) */
fe03522b 1421#ifndef DOS_NT
4ec5cb58 1422 Vtty_erase_char = tty.main.sg_erase;
91bac16a 1423 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
86a5659e 1424 if (meta_key)
91bac16a
JB
1425 tty.main.sg_flags |= ANYP;
1426 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK;
fe03522b 1427#endif /* not DOS_NT */
86a5659e
JB
1428#endif /* not VMS (BSD, that is) */
1429#endif /* not HAVE_TERMIO */
1430
91bac16a
JB
1431 /* If going to use CBREAK mode, we must request C-g to interrupt
1432 and turn off start and stop chars, etc. If not going to use
1433 CBREAK mode, do this anyway so as to turn off local flow
1434 control for user coming over network on 4.2; in this case,
1435 only t_stopc and t_startc really matter. */
1436#ifndef HAVE_TERMIO
50b8cf60 1437#ifdef HAVE_TCHARS
91bac16a
JB
1438 /* Note: if not using CBREAK mode, it makes no difference how we
1439 set this */
1440 tty.tchars = new_tchars;
1441 tty.tchars.t_intrc = quit_char;
1442 if (flow_control)
1443 {
1444 tty.tchars.t_startc = '\021';
1445 tty.tchars.t_stopc = '\023';
1446 }
1447
91bac16a 1448 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode;
37fd7901
JB
1449#ifdef ultrix
1450 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1451 anything, and leaving it in breaks the meta key. Go figure. */
1452 tty.lmode &= ~LLITOUT;
1453#endif
91bac16a
JB
1454
1455#ifdef BSD4_1
1456 lmode = tty.lmode;
1457#endif
1458
50b8cf60 1459#endif /* HAVE_TCHARS */
91bac16a
JB
1460#endif /* not HAVE_TERMIO */
1461
50b8cf60 1462#ifdef HAVE_LTCHARS
91bac16a 1463 tty.ltchars = new_ltchars;
50b8cf60 1464#endif /* HAVE_LTCHARS */
207bdbdb 1465#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
87485d6f
MW
1466 if (!term_initted)
1467 internal_terminal_init ();
207bdbdb
RS
1468 dos_ttraw ();
1469#endif
91bac16a
JB
1470
1471 EMACS_SET_TTY (input_fd, &tty, 0);
86a5659e
JB
1472
1473 /* This code added to insure that, if flow-control is not to be used,
0137dbf7 1474 we have an unlocked terminal at the start. */
91bac16a 1475
86a5659e 1476#ifdef TCXONC
64e971c3 1477 if (!flow_control) ioctl (input_fd, TCXONC, 1);
86a5659e
JB
1478#endif
1479#ifndef APOLLO
1480#ifdef TIOCSTART
64e971c3 1481 if (!flow_control) ioctl (input_fd, TIOCSTART, 0);
86a5659e
JB
1482#endif
1483#endif
1484
d228f207 1485#if defined (HAVE_TERMIOS) || defined (HPUX9)
51417996 1486#ifdef TCOON
d228f207
RS
1487 if (!flow_control) tcflow (input_fd, TCOON);
1488#endif
51417996 1489#endif
d228f207 1490
b97ab886 1491#ifdef AIXHFT
86a5659e
JB
1492 hft_init ();
1493#ifdef IBMR2AIX
1494 {
1495 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1496 to be only LF. This is the way that is done. */
1497 struct termio tty;
1498
1499 if (ioctl (1, HFTGETID, &tty) != -1)
1500 write (1, "\033[20l", 5);
1501 }
1502#endif
b97ab886 1503#endif /* AIXHFT */
86a5659e 1504
86a5659e
JB
1505#ifdef VMS
1506/* Appears to do nothing when in PASTHRU mode.
91bac16a 1507 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
86a5659e
JB
1508 interrupt_signal, oob_chars, 0, 0, 0, 0);
1509*/
1510 queue_kbd_input (0);
1511#endif /* VMS */
1512 }
1513
1514#ifdef F_SETFL
46f2fdac 1515#ifndef F_SETOWN_BUG
eb8c3be9 1516#ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
d6a9be45
RS
1517 if (interrupt_input
1518 && ! read_socket_hook && EQ (Vwindow_system, Qnil))
86a5659e 1519 {
64e971c3
RS
1520 old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0);
1521 fcntl (input_fd, F_SETOWN, getpid ());
23dab951 1522 init_sigio (input_fd);
86a5659e
JB
1523 }
1524#endif /* F_GETOWN */
46f2fdac 1525#endif /* F_SETOWN_BUG */
86a5659e
JB
1526#endif /* F_SETFL */
1527
1528#ifdef BSD4_1
1529 if (interrupt_input)
23dab951 1530 init_sigio (input_fd);
86a5659e
JB
1531#endif
1532
1533#ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1534#undef _IOFBF
1535#endif
1536#ifdef _IOFBF
1537 /* This symbol is defined on recent USG systems.
1538 Someone says without this call USG won't really buffer the file
1539 even with a call to setbuf. */
1540 setvbuf (stdout, _sobuf, _IOFBF, sizeof _sobuf);
1541#else
1542 setbuf (stdout, _sobuf);
1543#endif
23cafe43 1544#ifdef HAVE_WINDOW_SYSTEM
c4295188
KS
1545 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1546 needs the initialization code below. */
ad00c243
GV
1547 if (EQ (Vwindow_system, Qnil)
1548#ifndef WINDOWSNT
1549 /* When running in tty mode on NT/Win95, we have a read_socket
1550 hook, but still need the rest of the initialization code below. */
1551 && (! read_socket_hook)
1552#endif
1553 )
c4295188 1554#endif
4b311aaf
RS
1555 set_terminal_modes ();
1556
86a5659e
JB
1557 if (term_initted && no_redraw_on_reenter)
1558 {
1559 if (display_completed)
1560 direct_output_forward_char (0);
1561 }
1562 else
1563 {
0137dbf7 1564 frame_garbaged = 1;
0137dbf7
JB
1565 if (FRAMEP (Vterminal_frame))
1566 FRAME_GARBAGED_P (XFRAME (Vterminal_frame)) = 1;
86a5659e 1567 }
91bac16a 1568
86a5659e
JB
1569 term_initted = 1;
1570}
1571
1572/* Return nonzero if safe to use tabs in output.
1573 At the time this is called, init_sys_modes has not been done yet. */
1574
1575tabs_safe_p ()
1576{
91bac16a
JB
1577 struct emacs_tty tty;
1578
1579 EMACS_GET_TTY (input_fd, &tty);
1580 return EMACS_TTY_TABS_OK (&tty);
86a5659e 1581}
73d5358f 1582\f
86a5659e 1583/* Get terminal size from system.
73d5358f
RS
1584 Store number of lines into *HEIGHTP and width into *WIDTHP.
1585 We store 0 if there's no valid information. */
86a5659e 1586
0137dbf7 1587get_frame_size (widthp, heightp)
86a5659e
JB
1588 int *widthp, *heightp;
1589{
86a5659e 1590
86a5659e 1591#ifdef TIOCGWINSZ
91bac16a
JB
1592
1593 /* BSD-style. */
86a5659e 1594 struct winsize size;
91bac16a
JB
1595
1596 if (ioctl (input_fd, TIOCGWINSZ, &size) == -1)
1597 *widthp = *heightp = 0;
1598 else
1599 {
1600 *widthp = size.ws_col;
1601 *heightp = size.ws_row;
1602 }
1603
1604#else
1605#ifdef TIOCGSIZE
1606
1607 /* SunOS - style. */
1608 struct ttysize size;
1609
1610 if (ioctl (input_fd, TIOCGSIZE, &size) == -1)
1611 *widthp = *heightp = 0;
1612 else
1613 {
1614 *widthp = size.ts_cols;
1615 *heightp = size.ts_lines;
1616 }
1617
1618#else
86a5659e 1619#ifdef VMS
91bac16a
JB
1620
1621 struct sensemode tty;
1622
1623 SYS$QIOW (0, input_fd, IO$_SENSEMODE, &tty, 0, 0,
86a5659e
JB
1624 &tty.class, 12, 0, 0, 0, 0);
1625 *widthp = tty.scr_wid;
1626 *heightp = tty.scr_len;
91bac16a 1627
207bdbdb
RS
1628#else
1629#ifdef MSDOS
1630 *widthp = ScreenCols ();
1631 *heightp = ScreenRows ();
86a5659e
JB
1632#else /* system doesn't know size */
1633 *widthp = 0;
1634 *heightp = 0;
207bdbdb 1635#endif
91bac16a
JB
1636
1637#endif /* not VMS */
1638#endif /* not SunOS-style */
1639#endif /* not BSD-style */
86a5659e 1640}
91bac16a 1641
73d5358f
RS
1642/* Set the logical window size associated with descriptor FD
1643 to HEIGHT and WIDTH. This is used mainly with ptys. */
1644
1645int
1646set_window_size (fd, height, width)
1647 int fd, height, width;
1648{
1649#ifdef TIOCSWINSZ
1650
1651 /* BSD-style. */
1652 struct winsize size;
1653 size.ws_row = height;
1654 size.ws_col = width;
1655
1656 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1657 return 0; /* error */
1658 else
1659 return 1;
1660
1661#else
1662#ifdef TIOCSSIZE
1663
1664 /* SunOS - style. */
1665 struct ttysize size;
1666 size.ts_lines = height;
1667 size.ts_cols = width;
1668
1669 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1670 return 0;
1671 else
1672 return 1;
1673#else
1674 return -1;
1675#endif /* not SunOS-style */
1676#endif /* not BSD-style */
1677}
1678
86a5659e 1679\f
91bac16a 1680/* Prepare the terminal for exiting Emacs; move the cursor to the
0137dbf7 1681 bottom of the frame, turn off interrupt-driven I/O, etc. */
86a5659e
JB
1682reset_sys_modes ()
1683{
1684 if (noninteractive)
1685 {
1686 fflush (stdout);
1687 return;
1688 }
1689 if (!term_initted)
1690 return;
23cafe43 1691#ifdef HAVE_WINDOW_SYSTEM
87485d6f
MW
1692 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1693 needs the clean-up code below. */
ad00c243
GV
1694 if (!EQ (Vwindow_system, Qnil)
1695#ifndef WINDOWSNT
1696 /* When running in tty mode on NT/Win95, we have a read_socket
1697 hook, but still need the rest of the clean-up code below. */
1698 || read_socket_hook
1699#endif
1700 )
86a5659e 1701 return;
87485d6f 1702#endif
0137dbf7
JB
1703 cursor_to (FRAME_HEIGHT (selected_frame) - 1, 0);
1704 clear_end_of_line (FRAME_WIDTH (selected_frame));
86a5659e 1705 /* clear_end_of_line may move the cursor */
0137dbf7 1706 cursor_to (FRAME_HEIGHT (selected_frame) - 1, 0);
b97ab886 1707#if defined (IBMR2AIX) && defined (AIXHFT)
86a5659e
JB
1708 {
1709 /* HFT devices normally use ^J as a LF/CR. We forced it to
1710 do the LF only. Now, we need to reset it. */
1711 struct termio tty;
1712
1713 if (ioctl (1, HFTGETID, &tty) != -1)
1714 write (1, "\033[20h", 5);
1715 }
1716#endif
1717
1718 reset_terminal_modes ();
1719 fflush (stdout);
2a633456 1720#ifdef BSD_SYSTEM
86a5659e
JB
1721#ifndef BSD4_1
1722 /* Avoid possible loss of output when changing terminal modes. */
1723 fsync (fileno (stdout));
1724#endif
1725#endif
91bac16a 1726
86a5659e 1727#ifdef F_SETFL
46f2fdac 1728#ifndef F_SETOWN_BUG
eb8c3be9 1729#ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
86a5659e
JB
1730 if (interrupt_input)
1731 {
1732 reset_sigio ();
64e971c3 1733 fcntl (input_fd, F_SETOWN, old_fcntl_owner);
86a5659e
JB
1734 }
1735#endif /* F_SETOWN */
46f2fdac 1736#endif /* F_SETOWN_BUG */
a6b00318
KH
1737#ifdef O_NDELAY
1738 fcntl (input_fd, F_SETFL, fcntl (input_fd, F_GETFL, 0) & ~O_NDELAY);
1739#endif
86a5659e
JB
1740#endif /* F_SETFL */
1741#ifdef BSD4_1
1742 if (interrupt_input)
1743 reset_sigio ();
1744#endif /* BSD4_1 */
91bac16a 1745
7e32a4fb
KH
1746 if (old_tty_valid)
1747 while (EMACS_SET_TTY (input_fd, &old_tty, 0) < 0 && errno == EINTR)
1748 ;
86a5659e 1749
207bdbdb
RS
1750#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1751 dos_ttcooked ();
1752#endif
1753
441f6399
RS
1754#ifdef SET_LINE_DISCIPLINE
1755 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1756 A different old line discipline is therefore not restored, yet.
1757 Restore the old line discipline by hand. */
1758 ioctl (0, TIOCSETD, &old_tty.main.c_line);
1759#endif
1760
b97ab886 1761#ifdef AIXHFT
86a5659e
JB
1762 hft_reset ();
1763#endif
9ae8f997 1764
0ba73609 1765#ifdef BSD_PGRPS
9ae8f997
JB
1766 widen_foreground_group ();
1767#endif
86a5659e
JB
1768}
1769\f
1770#ifdef HAVE_PTYS
1771
1772/* Set up the proper status flags for use of a pty. */
1773
1774setup_pty (fd)
1775 int fd;
1776{
1777 /* I'm told that TOICREMOTE does not mean control chars
1778 "can't be sent" but rather that they don't have
1779 input-editing or signaling effects.
1780 That should be good, because we have other ways
1781 to do those things in Emacs.
1782 However, telnet mode seems not to work on 4.2.
1783 So TIOCREMOTE is turned off now. */
1784
1785 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1786 will hang. In particular, the "timeout" feature (which
1787 causes a read to return if there is no data available)
1788 does this. Also it is known that telnet mode will hang
1789 in such a way that Emacs must be stopped (perhaps this
1790 is the same problem).
1791
1792 If TIOCREMOTE is turned off, then there is a bug in
1793 hp-ux which sometimes loses data. Apparently the
1794 code which blocks the master process when the internal
1795 buffer fills up does not work. Other than this,
1796 though, everything else seems to work fine.
1797
1798 Since the latter lossage is more benign, we may as well
1799 lose that way. -- cph */
1800#ifdef FIONBIO
1801#ifdef SYSV_PTYS
1802 {
1803 int on = 1;
1804 ioctl (fd, FIONBIO, &on);
1805 }
1806#endif
1807#endif
1808#ifdef IBMRTAIX
1809 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
1810 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
1811 /* cause EMACS not to die when it should, i.e., when its own controlling */
1812 /* tty goes away. I've complained to the AIX developers, and they may */
1813 /* change this behavior, but I'm not going to hold my breath. */
1814 signal (SIGHUP, SIG_IGN);
1815#endif
1816}
1817#endif /* HAVE_PTYS */
1818\f
1819#ifdef VMS
1820
1821/* Assigning an input channel is done at the start of Emacs execution.
1822 This is called each time Emacs is resumed, also, but does nothing
1823 because input_chain is no longer zero. */
1824
1825init_vms_input ()
1826{
1827 int status;
1828
91bac16a 1829 if (input_fd == 0)
86a5659e 1830 {
91bac16a 1831 status = SYS$ASSIGN (&input_dsc, &input_fd, 0, 0);
86a5659e
JB
1832 if (! (status & 1))
1833 LIB$STOP (status);
1834 }
1835}
1836
1837/* Deassigning the input channel is done before exiting. */
1838
1839stop_vms_input ()
1840{
91bac16a 1841 return SYS$DASSGN (input_fd);
86a5659e
JB
1842}
1843
1844short input_buffer;
1845
1846/* Request reading one character into the keyboard buffer.
1847 This is done as soon as the buffer becomes empty. */
1848
1849queue_kbd_input ()
1850{
1851 int status;
210b2b4f
JB
1852 extern kbd_input_ast ();
1853
86a5659e
JB
1854 waiting_for_ast = 0;
1855 stop_input = 0;
91bac16a 1856 status = SYS$QIO (0, input_fd, IO$_READVBLK,
86a5659e
JB
1857 &input_iosb, kbd_input_ast, 1,
1858 &input_buffer, 1, 0, terminator_mask, 0, 0);
1859}
1860
1861int input_count;
1862
1863/* Ast routine that is called when keyboard input comes in
1864 in accord with the SYS$QIO above. */
1865
1866kbd_input_ast ()
1867{
1868 register int c = -1;
1869 int old_errno = errno;
ffd56f97 1870 extern EMACS_TIME *input_available_clear_time;
86a5659e
JB
1871
1872 if (waiting_for_ast)
1873 SYS$SETEF (input_ef);
1874 waiting_for_ast = 0;
1875 input_count++;
1876#ifdef ASTDEBUG
1877 if (input_count == 25)
1878 exit (1);
1879 printf ("Ast # %d,", input_count);
1880 printf (" iosb = %x, %x, %x, %x",
1881 input_iosb.offset, input_iosb.status, input_iosb.termlen,
1882 input_iosb.term);
1883#endif
1884 if (input_iosb.offset)
1885 {
1886 c = input_buffer;
1887#ifdef ASTDEBUG
1888 printf (", char = 0%o", c);
1889#endif
1890 }
1891#ifdef ASTDEBUG
1892 printf ("\n");
1893 fflush (stdout);
1894 sleep (1);
1895#endif
1896 if (! stop_input)
1897 queue_kbd_input ();
1898 if (c >= 0)
1899 {
1900 struct input_event e;
1901 e.kind = ascii_keystroke;
c81d47b4 1902 XSETINT (e.code, c);
c81d47b4 1903 XSETFRAME (e.frame_or_window, selected_frame);
86a5659e
JB
1904 kbd_buffer_store_event (&e);
1905 }
ffd56f97
JB
1906 if (input_available_clear_time)
1907 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
86a5659e
JB
1908 errno = old_errno;
1909}
1910
1911/* Wait until there is something in kbd_buffer. */
1912
1913wait_for_kbd_input ()
1914{
1915 extern int have_process_input, process_exited;
1916
1917 /* If already something, avoid doing system calls. */
1918 if (detect_input_pending ())
1919 {
1920 return;
1921 }
1922 /* Clear a flag, and tell ast routine above to set it. */
1923 SYS$CLREF (input_ef);
1924 waiting_for_ast = 1;
1925 /* Check for timing error: ast happened while we were doing that. */
1926 if (!detect_input_pending ())
1927 {
1928 /* No timing error: wait for flag to be set. */
1929 set_waiting_for_input (0);
1930 SYS$WFLOR (input_ef, input_eflist);
1931 clear_waiting_for_input (0);
1932 if (!detect_input_pending ())
1933 /* Check for subprocess input availability */
1934 {
1935 int dsp = have_process_input || process_exited;
1936
1937 SYS$CLREF (process_ef);
1938 if (have_process_input)
1939 process_command_input ();
1940 if (process_exited)
1941 process_exit ();
1942 if (dsp)
1943 {
1944 update_mode_lines++;
56b18525 1945 prepare_menu_bars ();
86a5659e
JB
1946 redisplay_preserve_echo_area ();
1947 }
1948 }
1949 }
1950 waiting_for_ast = 0;
1951}
1952
1953/* Get rid of any pending QIO, when we are about to suspend
1954 or when we want to throw away pending input.
1955 We wait for a positive sign that the AST routine has run
1956 and therefore there is no I/O request queued when we return.
1957 SYS$SETAST is used to avoid a timing error. */
1958
1959end_kbd_input ()
1960{
1961#ifdef ASTDEBUG
1962 printf ("At end_kbd_input.\n");
1963 fflush (stdout);
1964 sleep (1);
1965#endif
1966 if (LIB$AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
1967 {
91bac16a 1968 SYS$CANCEL (input_fd);
86a5659e
JB
1969 return;
1970 }
1971
1972 SYS$SETAST (0);
1973 /* Clear a flag, and tell ast routine above to set it. */
1974 SYS$CLREF (input_ef);
1975 waiting_for_ast = 1;
1976 stop_input = 1;
91bac16a 1977 SYS$CANCEL (input_fd);
86a5659e
JB
1978 SYS$SETAST (1);
1979 SYS$WAITFR (input_ef);
1980 waiting_for_ast = 0;
1981}
1982
1983/* Wait for either input available or time interval expiry. */
1984
1985input_wait_timeout (timeval)
1986 int timeval; /* Time to wait, in seconds */
1987{
1988 int time [2];
1989 static int zero = 0;
1990 static int large = -10000000;
1991
1992 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
1993
1994 /* If already something, avoid doing system calls. */
1995 if (detect_input_pending ())
1996 {
1997 return;
1998 }
1999 /* Clear a flag, and tell ast routine above to set it. */
2000 SYS$CLREF (input_ef);
2001 waiting_for_ast = 1;
2002 /* Check for timing error: ast happened while we were doing that. */
2003 if (!detect_input_pending ())
2004 {
2005 /* No timing error: wait for flag to be set. */
2006 SYS$CANTIM (1, 0);
2007 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2008 SYS$WFLOR (timer_ef, timer_eflist); /* Wait for timer expiry or input */
2009 }
2010 waiting_for_ast = 0;
2011}
2012
2013/* The standard `sleep' routine works some other way
2014 and it stops working if you have ever quit out of it.
2015 This one continues to work. */
2016
2017sys_sleep (timeval)
2018 int timeval;
2019{
2020 int time [2];
2021 static int zero = 0;
2022 static int large = -10000000;
2023
2024 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
2025
2026 SYS$CANTIM (1, 0);
2027 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2028 SYS$WAITFR (timer_ef); /* Wait for timer expiry only */
2029}
2030
23dab951
RS
2031init_sigio (fd)
2032 int fd;
86a5659e
JB
2033{
2034 request_sigio ();
2035}
2036
2037reset_sigio ()
2038{
2039 unrequest_sigio ();
2040}
2041
2042request_sigio ()
2043{
2044 croak ("request sigio");
2045}
2046
2047unrequest_sigio ()
2048{
2049 croak ("unrequest sigio");
2050}
2051
2052#endif /* VMS */
2053\f
2054/* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2055#ifndef CANNOT_DUMP
2056#define NEED_STARTS
2057#endif
2058
2059#ifndef SYSTEM_MALLOC
2060#ifndef NEED_STARTS
2061#define NEED_STARTS
2062#endif
2063#endif
2064
2065#ifdef NEED_STARTS
2066/* Some systems that cannot dump also cannot implement these. */
2067
2068/*
2069 * Return the address of the start of the text segment prior to
2070 * doing an unexec. After unexec the return value is undefined.
2071 * See crt0.c for further explanation and _start.
2072 *
2073 */
2074
260fe597 2075#ifndef HAVE_TEXT_START
86a5659e
JB
2076char *
2077start_of_text ()
2078{
2079#ifdef TEXT_START
2080 return ((char *) TEXT_START);
2081#else
2082#ifdef GOULD
2083 extern csrt ();
2084 return ((char *) csrt);
2085#else /* not GOULD */
2086 extern int _start ();
2087 return ((char *) _start);
2088#endif /* GOULD */
2089#endif /* TEXT_START */
2090}
260fe597 2091#endif /* not HAVE_TEXT_START */
86a5659e
JB
2092
2093/*
2094 * Return the address of the start of the data segment prior to
2095 * doing an unexec. After unexec the return value is undefined.
2096 * See crt0.c for further information and definition of data_start.
2097 *
2098 * Apparently, on BSD systems this is etext at startup. On
2099 * USG systems (swapping) this is highly mmu dependent and
2100 * is also dependent on whether or not the program is running
2101 * with shared text. Generally there is a (possibly large)
2102 * gap between end of text and start of data with shared text.
2103 *
2104 * On Uniplus+ systems with shared text, data starts at a
2105 * fixed address. Each port (from a given oem) is generally
2106 * different, and the specific value of the start of data can
2107 * be obtained via the UniPlus+ specific "uvar" system call,
2108 * however the method outlined in crt0.c seems to be more portable.
2109 *
2110 * Probably what will have to happen when a USG unexec is available,
2111 * at least on UniPlus, is temacs will have to be made unshared so
2112 * that text and data are contiguous. Then once loadup is complete,
2113 * unexec will produce a shared executable where the data can be
ea5a0917 2114 * at the normal shared text boundary and the startofdata variable
86a5659e
JB
2115 * will be patched by unexec to the correct value.
2116 *
2117 */
2118
2119char *
2120start_of_data ()
2121{
2122#ifdef DATA_START
2123 return ((char *) DATA_START);
6c65530f
JB
2124#else
2125#ifdef ORDINARY_LINK
2126 /*
2127 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2128 * data_start isn't defined. We take the address of environ, which
2129 * is known to live at or near the start of the system crt0.c, and
2130 * we don't sweat the handful of bytes that might lose.
2131 */
2132 extern char **environ;
2133
2134 return((char *) &environ);
86a5659e
JB
2135#else
2136 extern int data_start;
2137 return ((char *) &data_start);
6c65530f
JB
2138#endif /* ORDINARY_LINK */
2139#endif /* DATA_START */
86a5659e
JB
2140}
2141#endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2142
2143#ifndef CANNOT_DUMP
2144/* Some systems that cannot dump also cannot implement these. */
2145
2146/*
2147 * Return the address of the end of the text segment prior to
2148 * doing an unexec. After unexec the return value is undefined.
2149 */
2150
2151char *
2152end_of_text ()
2153{
2154#ifdef TEXT_END
2155 return ((char *) TEXT_END);
2156#else
2157 extern int etext;
2158 return ((char *) &etext);
2159#endif
2160}
2161
2162/*
2163 * Return the address of the end of the data segment prior to
2164 * doing an unexec. After unexec the return value is undefined.
2165 */
2166
2167char *
2168end_of_data ()
2169{
2170#ifdef DATA_END
2171 return ((char *) DATA_END);
2172#else
2173 extern int edata;
2174 return ((char *) &edata);
2175#endif
2176}
2177
2178#endif /* not CANNOT_DUMP */
2179\f
c0c86835
KH
2180/* init_system_name sets up the string for the Lisp function
2181 system-name to return. */
86a5659e
JB
2182
2183#ifdef BSD4_1
2184#include <whoami.h>
2185#endif
2186
c0c86835 2187extern Lisp_Object Vsystem_name;
86a5659e 2188
f8a80313 2189#ifndef BSD4_1
f8a80313
RS
2190#ifndef VMS
2191#ifdef HAVE_SOCKETS
2192#include <sys/socket.h>
2193#include <netdb.h>
2194#endif /* HAVE_SOCKETS */
2195#endif /* not VMS */
f8a80313
RS
2196#endif /* not BSD4_1 */
2197
c0c86835
KH
2198void
2199init_system_name ()
86a5659e 2200{
86a5659e 2201#ifdef BSD4_1
c0c86835 2202 Vsystem_name = build_string (sysname);
67004ffb 2203#else
67004ffb 2204#ifdef VMS
c0c86835
KH
2205 char *sp, *end;
2206 if ((sp = egetenv ("SYS$NODE")) == 0)
2207 Vsystem_name = build_string ("vax-vms");
2208 else if ((end = index (sp, ':')) == 0)
2209 Vsystem_name = build_string (sp);
2210 else
2211 Vsystem_name = make_string (sp, end - sp);
67004ffb 2212#else
210b2b4f 2213#ifndef HAVE_GETHOSTNAME
c0c86835
KH
2214 struct utsname uts;
2215 uname (&uts);
2216 Vsystem_name = build_string (uts.nodename);
67004ffb 2217#else /* HAVE_GETHOSTNAME */
cc6e7269 2218 unsigned int hostname_size = 256;
c0c86835
KH
2219 char *hostname = (char *) alloca (hostname_size);
2220
2221 /* Try to get the host name; if the buffer is too short, try
2222 again. Apparently, the only indication gethostname gives of
2223 whether the buffer was large enough is the presence or absence
2224 of a '\0' in the string. Eech. */
2225 for (;;)
2226 {
2227 gethostname (hostname, hostname_size - 1);
2228 hostname[hostname_size - 1] = '\0';
2229
2230 /* Was the buffer large enough for the '\0'? */
2231 if (strlen (hostname) < hostname_size - 1)
2232 break;
2233
2234 hostname_size <<= 1;
2235 hostname = (char *) alloca (hostname_size);
2236 }
67004ffb 2237#ifdef HAVE_SOCKETS
c0c86835
KH
2238 /* Turn the hostname into the official, fully-qualified hostname.
2239 Don't do this if we're going to dump; this can confuse system
2240 libraries on some machines and make the dumped emacs core dump. */
67004ffb 2241#ifndef CANNOT_DUMP
c0c86835 2242 if (initialized)
67004ffb 2243#endif /* not CANNOT_DUMP */
c0c86835 2244 {
efa04277
RS
2245 struct hostent *hp;
2246 int count;
db4042c8 2247 for (count = 0;; count++)
efa04277 2248 {
e24f1d55
RS
2249#ifdef TRY_AGAIN
2250 h_errno = 0;
2251#endif
efa04277
RS
2252 hp = gethostbyname (hostname);
2253#ifdef TRY_AGAIN
2254 if (! (hp == 0 && h_errno == TRY_AGAIN))
2255#endif
2256 break;
db4042c8
RS
2257 if (count >= 5)
2258 break;
efa04277
RS
2259 Fsleep_for (make_number (1), Qnil);
2260 }
c0c86835
KH
2261 if (hp)
2262 {
fe111daf 2263 char *fqdn = (char *) hp->h_name;
c0c86835
KH
2264 char *p;
2265
2266 if (!index (fqdn, '.'))
2267 {
2268 /* We still don't have a fully qualified domain name.
2269 Try to find one in the list of alternate names */
2270 char **alias = hp->h_aliases;
2271 while (*alias && !index (*alias, '.'))
2272 alias++;
2273 if (*alias)
2274 fqdn = *alias;
2275 }
2276 hostname = fqdn;
ab1649fe 2277#if 0
c0c86835
KH
2278 /* Convert the host name to lower case. */
2279 /* Using ctype.h here would introduce a possible locale
2280 dependence that is probably wrong for hostnames. */
2281 p = hostname;
2282 while (*p)
2283 {
2284 if (*p >= 'A' && *p <= 'Z')
2285 *p += 'a' - 'A';
2286 p++;
2287 }
2288#endif
2289 }
2290 }
67004ffb 2291#endif /* HAVE_SOCKETS */
0b93aa53
RS
2292 /* We used to try using getdomainname as an alternative
2293 to sysinfo, here, but NIIBE Yutaka <gniibe@etl.go.jp> says that
2294 getdomainname gets the NIS/YP domain which often is not the same
2295 as in Internet domain name. */
2296#if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN))
b05af5d3
PE
2297 if (! index (hostname, '.'))
2298 {
2299 /* The hostname is not fully qualified. Append the domain name. */
2300
2301 int hostlen = strlen (hostname);
2302 int domain_size = 256;
2303
2304 for (;;)
2305 {
825e7e55
RS
2306 char *domain = (char *) alloca (domain_size + 1);
2307 char *fqdn = (char *) alloca (hostlen + 1 + domain_size + 1);
b05af5d3
PE
2308 int sys_domain_size = sysinfo (SI_SRPC_DOMAIN, domain, domain_size);
2309 if (sys_domain_size <= 0)
2310 break;
2311 if (domain_size < sys_domain_size)
2312 {
2313 domain_size = sys_domain_size;
2314 continue;
2315 }
b05af5d3 2316 strcpy (fqdn, hostname);
825e7e55
RS
2317 if (domain[0] == '.')
2318 strcpy (fqdn + hostlen, domain);
9b80a5aa 2319 else if (domain[0] != 0)
825e7e55
RS
2320 {
2321 fqdn[hostlen] = '.';
2322 strcpy (fqdn + hostlen + 1, domain);
2323 }
b05af5d3
PE
2324 hostname = fqdn;
2325 break;
2326 }
2327 }
0b93aa53 2328#endif /* HAVE_SYSINFO && defined (SI_SRPC_DOMAIN) */
c0c86835 2329 Vsystem_name = build_string (hostname);
67004ffb 2330#endif /* HAVE_GETHOSTNAME */
210b2b4f 2331#endif /* VMS */
67004ffb 2332#endif /* BSD4_1 */
c0c86835
KH
2333 {
2334 unsigned char *p;
2335 for (p = XSTRING (Vsystem_name)->data; *p; p++)
2336 if (*p == ' ' || *p == '\t')
2337 *p = '-';
2338 }
67004ffb 2339}
86a5659e 2340\f
7964ba9e 2341#ifndef MSDOS
86a5659e 2342#ifndef VMS
86d1f23a 2343#if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)
86a5659e 2344
86d1f23a
KH
2345#include "sysselect.h"
2346#undef select
2347
2348#if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
86a5659e
JB
2349/* Cause explanatory error message at compile time,
2350 since the select emulation is not good enough for X. */
2351int *x = &x_windows_lose_if_no_select_system_call;
2352#endif
2353
2354/* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2355 * Only checks read descriptors.
2356 */
2357/* How long to wait between checking fds in select */
2358#define SELECT_PAUSE 1
2359int select_alarmed;
2360
2361/* For longjmp'ing back to read_input_waiting. */
2362
2363jmp_buf read_alarm_throw;
2364
2365/* Nonzero if the alarm signal should throw back to read_input_waiting.
2366 The read_socket_hook function sets this to 1 while it is waiting. */
2367
2368int read_alarm_should_throw;
2369
2370SIGTYPE
2371select_alarm ()
2372{
2373 select_alarmed = 1;
2374#ifdef BSD4_1
2375 sigrelse (SIGALRM);
2376#else /* not BSD4_1 */
2377 signal (SIGALRM, SIG_IGN);
2378#endif /* not BSD4_1 */
2379 if (read_alarm_should_throw)
2380 longjmp (read_alarm_throw, 1);
2381}
2382
fe03522b 2383#ifndef WINDOWSNT
86a5659e
JB
2384/* Only rfds are checked. */
2385int
86d1f23a 2386sys_select (nfds, rfds, wfds, efds, timeout)
86a5659e 2387 int nfds;
86d1f23a
KH
2388 SELECT_TYPE *rfds, *wfds, *efds;
2389 EMACS_TIME *timeout;
86a5659e 2390{
86d1f23a
KH
2391 int ravail = 0, old_alarm;
2392 SELECT_TYPE orfds;
2393 int timeoutval;
2394 int *local_timeout;
86a5659e
JB
2395 extern int proc_buffered_char[];
2396#ifndef subprocesses
2397 int process_tick = 0, update_tick = 0;
2398#else
2399 extern int process_tick, update_tick;
2400#endif
2401 SIGTYPE (*old_trap) ();
2402 unsigned char buf;
2403
86d1f23a
KH
2404#if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2405 /* If we're using X, then the native select will work; we only need the
2406 emulation for non-X usage. */
2407 if (!NILP (Vwindow_system))
2408 return select (nfds, rfds, wfds, efds, timeout);
2409#endif
2410 timeoutval = timeout ? EMACS_SECS (*timeout) : 100000;
2411 local_timeout = &timeoutval;
2412 FD_ZERO (&orfds);
86a5659e
JB
2413 if (rfds)
2414 {
2415 orfds = *rfds;
86d1f23a 2416 FD_ZERO (rfds);
86a5659e
JB
2417 }
2418 if (wfds)
86d1f23a 2419 FD_ZERO (wfds);
86a5659e 2420 if (efds)
86d1f23a 2421 FD_ZERO (efds);
86a5659e
JB
2422
2423 /* If we are looking only for the terminal, with no timeout,
2424 just read it and wait -- that's more efficient. */
86d1f23a
KH
2425 if (*local_timeout == 100000 && process_tick == update_tick
2426 && FD_ISSET (0, &orfds))
86a5659e 2427 {
86d1f23a
KH
2428 int fd;
2429 for (fd = 1; fd < nfds; ++fd)
2430 if (FD_ISSET (fd, &orfds))
2431 goto hardway;
86a5659e
JB
2432 if (! detect_input_pending ())
2433 read_input_waiting ();
86d1f23a 2434 FD_SET (0, rfds);
86a5659e
JB
2435 return 1;
2436 }
2437
86d1f23a 2438 hardway:
86a5659e
JB
2439 /* Once a second, till the timer expires, check all the flagged read
2440 * descriptors to see if any input is available. If there is some then
2441 * set the corresponding bit in the return copy of rfds.
2442 */
2443 while (1)
2444 {
86d1f23a 2445 register int to_check, fd;
86a5659e
JB
2446
2447 if (rfds)
2448 {
86d1f23a 2449 for (to_check = nfds, fd = 0; --to_check >= 0; fd++)
86a5659e 2450 {
86d1f23a 2451 if (FD_ISSET (fd, &orfds))
86a5659e
JB
2452 {
2453 int avail = 0, status = 0;
2454
86d1f23a 2455 if (fd == 0)
86a5659e
JB
2456 avail = detect_input_pending (); /* Special keyboard handler */
2457 else
2458 {
2459#ifdef FIONREAD
2460 status = ioctl (fd, FIONREAD, &avail);
2461#else /* no FIONREAD */
2462 /* Hoping it will return -1 if nothing available
2463 or 0 if all 0 chars requested are read. */
2464 if (proc_buffered_char[fd] >= 0)
2465 avail = 1;
2466 else
2467 {
2468 avail = read (fd, &buf, 1);
2469 if (avail > 0)
2470 proc_buffered_char[fd] = buf;
2471 }
2472#endif /* no FIONREAD */
2473 }
2474 if (status >= 0 && avail > 0)
2475 {
86d1f23a 2476 FD_SET (fd, rfds);
86a5659e
JB
2477 ravail++;
2478 }
2479 }
2480 }
2481 }
2482 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
2483 break;
2484 old_alarm = alarm (0);
34567704 2485 old_trap = signal (SIGALRM, select_alarm);
86a5659e
JB
2486 select_alarmed = 0;
2487 alarm (SELECT_PAUSE);
2488 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2489 while (select_alarmed == 0 && *local_timeout != 0
2490 && process_tick == update_tick)
2491 {
2492 /* If we are interested in terminal input,
2493 wait by reading the terminal.
2494 That makes instant wakeup for terminal input at least. */
86d1f23a 2495 if (FD_ISSET (0, &orfds))
86a5659e
JB
2496 {
2497 read_input_waiting ();
2498 if (detect_input_pending ())
2499 select_alarmed = 1;
2500 }
2501 else
2502 pause ();
2503 }
2504 (*local_timeout) -= SELECT_PAUSE;
2505 /* Reset the old alarm if there was one */
2506 alarm (0);
2507 signal (SIGALRM, old_trap);
2508 if (old_alarm != 0)
2509 {
2510 /* Reset or forge an interrupt for the original handler. */
2511 old_alarm -= SELECT_PAUSE;
2512 if (old_alarm <= 0)
2513 kill (getpid (), SIGALRM); /* Fake an alarm with the orig' handler */
2514 else
2515 alarm (old_alarm);
2516 }
2517 if (*local_timeout == 0) /* Stop on timer being cleared */
2518 break;
2519 }
2520 return ravail;
2521}
fe03522b 2522#endif /* not WINDOWSNT */
86a5659e
JB
2523
2524/* Read keyboard input into the standard buffer,
2525 waiting for at least one character. */
2526
23cafe43
GV
2527/* Make all keyboard buffers much bigger when using a window system. */
2528#ifdef HAVE_WINDOW_SYSTEM
86a5659e
JB
2529#define BUFFER_SIZE_FACTOR 16
2530#else
2531#define BUFFER_SIZE_FACTOR 1
2532#endif
2533
2534read_input_waiting ()
2535{
86a5659e 2536 struct input_event e;
34567704
JB
2537 int nread, i;
2538 extern int quit_char;
86a5659e
JB
2539
2540 if (read_socket_hook)
2541 {
f4a7e5bd
RS
2542 struct input_event buf[256];
2543
86a5659e
JB
2544 read_alarm_should_throw = 0;
2545 if (! setjmp (read_alarm_throw))
f4a7e5bd 2546 nread = (*read_socket_hook) (0, buf, 256, 1, 0);
86a5659e
JB
2547 else
2548 nread = -1;
f4a7e5bd
RS
2549
2550 /* Scan the chars for C-g and store them in kbd_buffer. */
2551 for (i = 0; i < nread; i++)
2552 {
2553 kbd_buffer_store_event (&buf[i]);
2554 /* Don't look at input that follows a C-g too closely.
2555 This reduces lossage due to autorepeat on C-g. */
2556 if (buf[i].kind == ascii_keystroke
30bef8ec 2557 && buf[i].code == quit_char)
f4a7e5bd
RS
2558 break;
2559 }
86a5659e
JB
2560 }
2561 else
86a5659e 2562 {
f4a7e5bd
RS
2563 char buf[3];
2564 nread = read (fileno (stdin), buf, 1);
2565
2566 /* Scan the chars for C-g and store them in kbd_buffer. */
2567 e.kind = ascii_keystroke;
bd513d9d 2568 XSETFRAME (e.frame_or_window, selected_frame);
f4a7e5bd
RS
2569 e.modifiers = 0;
2570 for (i = 0; i < nread; i++)
a00d5589 2571 {
f4a7e5bd
RS
2572 /* Convert chars > 0177 to meta events if desired.
2573 We do this under the same conditions that read_avail_input does. */
2574 if (read_socket_hook == 0)
2575 {
2576 /* If the user says she has a meta key, then believe her. */
2577 if (meta_key == 1 && (buf[i] & 0x80))
2578 e.modifiers = meta_modifier;
2579 if (meta_key != 2)
2580 buf[i] &= ~0x80;
2581 }
b95520f5 2582
c81d47b4 2583 XSETINT (e.code, buf[i]);
f4a7e5bd
RS
2584 kbd_buffer_store_event (&e);
2585 /* Don't look at input that follows a C-g too closely.
2586 This reduces lossage due to autorepeat on C-g. */
2587 if (buf[i] == quit_char)
2588 break;
2589 }
86a5659e
JB
2590 }
2591}
2592
2593#endif /* not HAVE_SELECT */
2594#endif /* not VMS */
7964ba9e 2595#endif /* not MSDOS */
86a5659e
JB
2596\f
2597#ifdef BSD4_1
86a5659e
JB
2598/*
2599 * Partially emulate 4.2 open call.
2600 * open is defined as this in 4.1.
2601 *
2602 * - added by Michael Bloom @ Citicorp/TTI
2603 *
2604 */
2605
2606int
2607sys_open (path, oflag, mode)
2608 char *path;
2609 int oflag, mode;
2610{
2611 if (oflag & O_CREAT)
2612 return creat (path, mode);
2613 else
2614 return open (path, oflag);
2615}
2616
23dab951
RS
2617init_sigio (fd)
2618 int fd;
86a5659e
JB
2619{
2620 if (noninteractive)
2621 return;
2622 lmode = LINTRUP | lmode;
23dab951 2623 ioctl (fd, TIOCLSET, &lmode);
86a5659e
JB
2624}
2625
2626reset_sigio ()
2627{
2628 if (noninteractive)
2629 return;
2630 lmode = ~LINTRUP & lmode;
2631 ioctl (0, TIOCLSET, &lmode);
2632}
2633
2634request_sigio ()
2635{
2636 sigrelse (SIGTINT);
2637
2638 interrupts_deferred = 0;
2639}
2640
2641unrequest_sigio ()
2642{
2643 sighold (SIGTINT);
2644
2645 interrupts_deferred = 1;
2646}
2647
2648/* still inside #ifdef BSD4_1 */
2649#ifdef subprocesses
2650
2651int sigheld; /* Mask of held signals */
2652
2653sigholdx (signum)
2654 int signum;
2655{
2656 sigheld |= sigbit (signum);
2657 sighold (signum);
2658}
2659
2660sigisheld (signum)
2661 int signum;
2662{
2663 sigheld |= sigbit (signum);
2664}
2665
2666sigunhold (signum)
2667 int signum;
2668{
2669 sigheld &= ~sigbit (signum);
2670 sigrelse (signum);
2671}
2672
2673sigfree () /* Free all held signals */
2674{
2675 int i;
2676 for (i = 0; i < NSIG; i++)
2677 if (sigheld & sigbit (i))
2678 sigrelse (i);
2679 sigheld = 0;
2680}
2681
2682sigbit (i)
2683{
2684 return 1 << (i - 1);
2685}
2686#endif /* subprocesses */
2687#endif /* BSD4_1 */
2688\f
2689/* POSIX signals support - DJB */
2690/* Anyone with POSIX signals should have ANSI C declarations */
2691
2692#ifdef POSIX_SIGNALS
2693
2694sigset_t old_mask, empty_mask, full_mask, temp_mask;
2695static struct sigaction new_action, old_action;
2696
2697init_signals ()
2698{
00eaaa32
JB
2699 sigemptyset (&empty_mask);
2700 sigfillset (&full_mask);
86a5659e
JB
2701}
2702
86a5659e
JB
2703signal_handler_t
2704sys_signal (int signal_number, signal_handler_t action)
2705{
86a5659e
JB
2706 sigemptyset (&new_action.sa_mask);
2707 new_action.sa_handler = action;
25ab68af
RS
2708#ifdef SA_RESTART
2709 /* Emacs mostly works better with restartable system services. If this
2710 * flag exists, we probably want to turn it on here.
2711 */
2712 new_action.sa_flags = SA_RESTART;
2713#else
4a785b6e 2714 new_action.sa_flags = 0;
25ab68af 2715#endif
d32b2f3c 2716 sigaction (signal_number, &new_action, &old_action);
86a5659e 2717 return (old_action.sa_handler);
86a5659e
JB
2718}
2719
e065a56e
JB
2720#ifndef __GNUC__
2721/* If we're compiling with GCC, we don't need this function, since it
2722 can be written as a macro. */
2723sigset_t
2724sys_sigmask (int sig)
2725{
2726 sigset_t mask;
2727 sigemptyset (&mask);
2728 sigaddset (&mask, sig);
2729 return mask;
2730}
2731#endif
2732
86a5659e
JB
2733int
2734sys_sigpause (sigset_t new_mask)
2735{
2736 /* pause emulating berk sigpause... */
2737 sigsuspend (&new_mask);
2738 return (EINTR);
2739}
2740
2741/* I'd like to have these guys return pointers to the mask storage in here,
2742 but there'd be trouble if the code was saving multiple masks. I'll be
2743 safe and pass the structure. It normally won't be more than 2 bytes
2744 anyhow. - DJB */
2745
2746sigset_t
2747sys_sigblock (sigset_t new_mask)
2748{
2749 sigset_t old_mask;
2750 sigprocmask (SIG_BLOCK, &new_mask, &old_mask);
2751 return (old_mask);
2752}
2753
2754sigset_t
2755sys_sigunblock (sigset_t new_mask)
2756{
2757 sigset_t old_mask;
2758 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask);
2759 return (old_mask);
2760}
2761
2762sigset_t
2763sys_sigsetmask (sigset_t new_mask)
2764{
2765 sigset_t old_mask;
2766 sigprocmask (SIG_SETMASK, &new_mask, &old_mask);
2767 return (old_mask);
2768}
2769
2770#endif /* POSIX_SIGNALS */
2771\f
9927a7b1 2772#ifndef HAVE_RANDOM
4bb8c8b7
KH
2773#ifdef random
2774#define HAVE_RANDOM
2775#endif
2776#endif
2777
2778/* Figure out how many bits the system's random number generator uses.
2779 `random' and `lrand48' are assumed to return 31 usable bits.
2780 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2781 so we'll shift it and treat it like the 15-bit USG `rand'. */
2782
2783#ifndef RAND_BITS
2784# ifdef HAVE_RANDOM
2785# define RAND_BITS 31
2786# else /* !HAVE_RANDOM */
2787# ifdef HAVE_LRAND48
2788# define RAND_BITS 31
2789# define random lrand48
2790# else /* !HAVE_LRAND48 */
2791# define RAND_BITS 15
2792# if RAND_MAX == 32767
2793# define random rand
2794# else /* RAND_MAX != 32767 */
2795# if RAND_MAX == 2147483647
2796# define random() (rand () >> 16)
2797# else /* RAND_MAX != 2147483647 */
2798# ifdef USG
2799# define random rand
2800# else
2801# define random() (rand () >> 16)
2a633456 2802# endif /* !USG */
4bb8c8b7
KH
2803# endif /* RAND_MAX != 2147483647 */
2804# endif /* RAND_MAX != 32767 */
2805# endif /* !HAVE_LRAND48 */
2806# endif /* !HAVE_RANDOM */
2807#endif /* !RAND_BITS */
2e46c7c6 2808
4bb8c8b7
KH
2809void
2810seed_random (arg)
2811 long arg;
86a5659e 2812{
4bb8c8b7
KH
2813#ifdef HAVE_RANDOM
2814 srandom ((unsigned int)arg);
f8b53a82 2815#else
4bb8c8b7 2816# ifdef HAVE_LRAND48
76425a49 2817 srand48 (arg);
4bb8c8b7
KH
2818# else
2819 srand ((unsigned int)arg);
2820# endif
2e46c7c6 2821#endif
86a5659e
JB
2822}
2823
4bb8c8b7
KH
2824/*
2825 * Build a full Emacs-sized word out of whatever we've got.
2826 * This suffices even for a 64-bit architecture with a 15-bit rand.
2827 */
2828long
2829get_random ()
2830{
2831 long val = random ();
2832#if VALBITS > RAND_BITS
2833 val = (val << RAND_BITS) ^ random ();
2834#if VALBITS > 2*RAND_BITS
2835 val = (val << RAND_BITS) ^ random ();
2836#if VALBITS > 3*RAND_BITS
2837 val = (val << RAND_BITS) ^ random ();
2838#if VALBITS > 4*RAND_BITS
2839 val = (val << RAND_BITS) ^ random ();
2840#endif /* need at least 5 */
2841#endif /* need at least 4 */
2842#endif /* need at least 3 */
2843#endif /* need at least 2 */
2844 return val & ((1L << VALBITS) - 1);
2845}
86a5659e
JB
2846\f
2847#ifdef WRONG_NAME_INSQUE
2848
2849insque (q,p)
2850 caddr_t q,p;
2851{
2852 _insque (q,p);
2853}
2854
2855#endif
2856\f
2857#ifdef VMS
2858
2859#ifdef getenv
2860/* If any place else asks for the TERM variable,
2861 allow it to be overridden with the EMACS_TERM variable
2862 before attempting to translate the logical name TERM. As a last
2863 resort, ask for VAX C's special idea of the TERM variable. */
2864#undef getenv
2865char *
2866sys_getenv (name)
2867 char *name;
2868{
2869 register char *val;
2870 static char buf[256];
2871 static struct dsc$descriptor_s equiv
2872 = {sizeof (buf), DSC$K_DTYPE_T, DSC$K_CLASS_S, buf};
2873 static struct dsc$descriptor_s d_name
2874 = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
2875 short eqlen;
2876
2877 if (!strcmp (name, "TERM"))
2878 {
2879 val = (char *) getenv ("EMACS_TERM");
2880 if (val)
2881 return val;
2882 }
2883
2884 d_name.dsc$w_length = strlen (name);
2885 d_name.dsc$a_pointer = name;
986ffb24 2886 if (LIB$SYS_TRNLOG (&d_name, &eqlen, &equiv) == 1)
86a5659e
JB
2887 {
2888 char *str = (char *) xmalloc (eqlen + 1);
2889 bcopy (buf, str, eqlen);
2890 str[eqlen] = '\0';
2891 /* This is a storage leak, but a pain to fix. With luck,
2892 no one will ever notice. */
2893 return str;
2894 }
2895 return (char *) getenv (name);
2896}
2897#endif /* getenv */
2898
2899#ifdef abort
2900/* Since VMS doesn't believe in core dumps, the only way to debug this beast is
2901 to force a call on the debugger from within the image. */
2902#undef abort
2903sys_abort ()
2904{
2905 reset_sys_modes ();
2906 LIB$SIGNAL (SS$_DEBUG);
2907}
2908#endif /* abort */
2909#endif /* VMS */
2910\f
2911#ifdef VMS
2912#ifdef LINK_CRTL_SHARE
ea5a0917 2913#ifdef SHARABLE_LIB_BUG
eb8c3be9 2914/* Variables declared noshare and initialized in sharable libraries
86a5659e
JB
2915 cannot be shared. The VMS linker incorrectly forces you to use a private
2916 version which is uninitialized... If not for this "feature", we
2917 could use the C library definition of sys_nerr and sys_errlist. */
2918int sys_nerr = 35;
2919char *sys_errlist[] =
2920 {
2921 "error 0",
2922 "not owner",
2923 "no such file or directory",
2924 "no such process",
2925 "interrupted system call",
2926 "i/o error",
2927 "no such device or address",
2928 "argument list too long",
2929 "exec format error",
2930 "bad file number",
2931 "no child process",
2932 "no more processes",
2933 "not enough memory",
2934 "permission denied",
2935 "bad address",
2936 "block device required",
2937 "mount devices busy",
2938 "file exists",
2939 "cross-device link",
2940 "no such device",
2941 "not a directory",
2942 "is a directory",
2943 "invalid argument",
2944 "file table overflow",
2945 "too many open files",
2946 "not a typewriter",
2947 "text file busy",
2948 "file too big",
2949 "no space left on device",
2950 "illegal seek",
2951 "read-only file system",
2952 "too many links",
2953 "broken pipe",
2954 "math argument",
2955 "result too large",
2956 "I/O stream empty",
2957 "vax/vms specific error code nontranslatable error"
2958 };
ea5a0917 2959#endif /* SHARABLE_LIB_BUG */
86a5659e
JB
2960#endif /* LINK_CRTL_SHARE */
2961#endif /* VMS */
7088d1ca
RM
2962
2963#ifndef HAVE_STRERROR
fe03522b 2964#ifndef WINDOWSNT
7088d1ca
RM
2965char *
2966strerror (errnum)
2967 int errnum;
2968{
2969 extern char *sys_errlist[];
2970 extern int sys_nerr;
2971
2972 if (errnum >= 0 && errnum < sys_nerr)
2973 return sys_errlist[errnum];
2974 return (char *) "Unknown error";
2975}
fe03522b 2976#endif /* not WINDOWSNT */
7088d1ca 2977#endif /* ! HAVE_STRERROR */
86a5659e
JB
2978\f
2979#ifdef INTERRUPTIBLE_OPEN
2980
2981int
2982/* VARARGS 2 */
2983sys_open (path, oflag, mode)
2984 char *path;
2985 int oflag, mode;
2986{
2987 register int rtnval;
2988
2989 while ((rtnval = open (path, oflag, mode)) == -1
2990 && (errno == EINTR));
2991 return (rtnval);
2992}
2993
2994#endif /* INTERRUPTIBLE_OPEN */
2995
2996#ifdef INTERRUPTIBLE_CLOSE
2997
2998sys_close (fd)
2999 int fd;
3000{
fe111daf 3001 int did_retry = 0;
86a5659e
JB
3002 register int rtnval;
3003
3004 while ((rtnval = close (fd)) == -1
fe111daf
KH
3005 && (errno == EINTR))
3006 did_retry = 1;
3007
3008 /* If close is interrupted SunOS 4.1 may or may not have closed the
3009 file descriptor. If it did the second close will fail with
3010 errno = EBADF. That means we have succeeded. */
3011 if (rtnval == -1 && did_retry && errno == EBADF)
3012 return 0;
3013
86a5659e
JB
3014 return rtnval;
3015}
3016
3017#endif /* INTERRUPTIBLE_CLOSE */
3018
3019#ifdef INTERRUPTIBLE_IO
3020
3021int
3022sys_read (fildes, buf, nbyte)
3023 int fildes;
3024 char *buf;
3025 unsigned int nbyte;
3026{
3027 register int rtnval;
3028
3029 while ((rtnval = read (fildes, buf, nbyte)) == -1
3030 && (errno == EINTR));
3031 return (rtnval);
3032}
3033
3034int
3035sys_write (fildes, buf, nbyte)
3036 int fildes;
3037 char *buf;
3038 unsigned int nbyte;
3039{
b95520f5 3040 register int rtnval, bytes_written;
86a5659e 3041
b95520f5
BF
3042 bytes_written = 0;
3043
3044 while (nbyte > 0)
3045 {
3046 rtnval = write (fildes, buf, nbyte);
3047
3048 if (rtnval == -1)
3049 {
3050 if (errno == EINTR)
3051 continue;
3052 else
aa670904 3053 return (bytes_written ? bytes_written : -1);
b95520f5
BF
3054 }
3055
3056 buf += rtnval;
3057 nbyte -= rtnval;
3058 bytes_written += rtnval;
3059 }
3060 return (bytes_written);
86a5659e
JB
3061}
3062
3063#endif /* INTERRUPTIBLE_IO */
3064\f
0e18d8ef 3065#ifndef HAVE_VFORK
fe03522b 3066#ifndef WINDOWSNT
0e18d8ef 3067/*
fe03522b 3068 * Substitute fork for vfork on USG flavors.
0e18d8ef
RS
3069 */
3070
e336874b 3071VFORK_RETURN_TYPE
0e18d8ef
RS
3072vfork ()
3073{
3074 return (fork ());
3075}
fe03522b 3076#endif /* not WINDOWSNT */
0e18d8ef
RS
3077#endif /* not HAVE_VFORK */
3078\f
86a5659e
JB
3079#ifdef USG
3080/*
3081 * All of the following are for USG.
3082 *
3083 * On USG systems the system calls are INTERRUPTIBLE by signals
3084 * that the user program has elected to catch. Thus the system call
3085 * must be retried in these cases. To handle this without massive
3086 * changes in the source code, we remap the standard system call names
3087 * to names for our own functions in sysdep.c that do the system call
3088 * with retries. Actually, for portability reasons, it is good
3089 * programming practice, as this example shows, to limit all actual
eb8c3be9 3090 * system calls to a single occurrence in the source. Sure, this
86a5659e
JB
3091 * adds an extra level of function call overhead but it is almost
3092 * always negligible. Fred Fish, Unisoft Systems Inc.
3093 */
3094
00eaaa32 3095#ifndef HAVE_SYS_SIGLIST
86a5659e
JB
3096char *sys_siglist[NSIG + 1] =
3097{
3098#ifdef AIX
3099/* AIX has changed the signals a bit */
3100 "bogus signal", /* 0 */
3101 "hangup", /* 1 SIGHUP */
3102 "interrupt", /* 2 SIGINT */
3103 "quit", /* 3 SIGQUIT */
3104 "illegal instruction", /* 4 SIGILL */
3105 "trace trap", /* 5 SIGTRAP */
3106 "IOT instruction", /* 6 SIGIOT */
3107 "crash likely", /* 7 SIGDANGER */
3108 "floating point exception", /* 8 SIGFPE */
3109 "kill", /* 9 SIGKILL */
3110 "bus error", /* 10 SIGBUS */
3111 "segmentation violation", /* 11 SIGSEGV */
3112 "bad argument to system call", /* 12 SIGSYS */
3113 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3114 "alarm clock", /* 14 SIGALRM */
3115 "software termination signum", /* 15 SIGTERM */
3116 "user defined signal 1", /* 16 SIGUSR1 */
3117 "user defined signal 2", /* 17 SIGUSR2 */
3118 "death of a child", /* 18 SIGCLD */
3119 "power-fail restart", /* 19 SIGPWR */
3120 "bogus signal", /* 20 */
3121 "bogus signal", /* 21 */
3122 "bogus signal", /* 22 */
3123 "bogus signal", /* 23 */
3124 "bogus signal", /* 24 */
3125 "LAN I/O interrupt", /* 25 SIGAIO */
3126 "PTY I/O interrupt", /* 26 SIGPTY */
3127 "I/O intervention required", /* 27 SIGIOINT */
6056c55b 3128#ifdef AIXHFT
86a5659e
JB
3129 "HFT grant", /* 28 SIGGRANT */
3130 "HFT retract", /* 29 SIGRETRACT */
3131 "HFT sound done", /* 30 SIGSOUND */
3132 "HFT input ready", /* 31 SIGMSG */
6056c55b 3133#endif
86a5659e
JB
3134#else /* not AIX */
3135 "bogus signal", /* 0 */
3136 "hangup", /* 1 SIGHUP */
3137 "interrupt", /* 2 SIGINT */
3138 "quit", /* 3 SIGQUIT */
3139 "illegal instruction", /* 4 SIGILL */
3140 "trace trap", /* 5 SIGTRAP */
3141 "IOT instruction", /* 6 SIGIOT */
3142 "EMT instruction", /* 7 SIGEMT */
3143 "floating point exception", /* 8 SIGFPE */
3144 "kill", /* 9 SIGKILL */
3145 "bus error", /* 10 SIGBUS */
3146 "segmentation violation", /* 11 SIGSEGV */
3147 "bad argument to system call", /* 12 SIGSYS */
3148 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3149 "alarm clock", /* 14 SIGALRM */
3150 "software termination signum", /* 15 SIGTERM */
3151 "user defined signal 1", /* 16 SIGUSR1 */
3152 "user defined signal 2", /* 17 SIGUSR2 */
3153 "death of a child", /* 18 SIGCLD */
3154 "power-fail restart", /* 19 SIGPWR */
0f0ea229
RS
3155#ifdef sun
3156 "window size change", /* 20 SIGWINCH */
3157 "urgent socket condition", /* 21 SIGURG */
ea5a0917 3158 "pollable event occurred", /* 22 SIGPOLL */
0f0ea229
RS
3159 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
3160 "user stop requested from tty", /* 24 SIGTSTP */
3161 "stopped process has been continued", /* 25 SIGCONT */
3162 "background tty read attempted", /* 26 SIGTTIN */
3163 "background tty write attempted", /* 27 SIGTTOU */
3164 "virtual timer expired", /* 28 SIGVTALRM */
3165 "profiling timer expired", /* 29 SIGPROF */
3166 "exceeded cpu limit", /* 30 SIGXCPU */
3167 "exceeded file size limit", /* 31 SIGXFSZ */
3168 "process's lwps are blocked", /* 32 SIGWAITING */
3169 "special signal used by thread library", /* 33 SIGLWP */
2da0df4d 3170#ifdef SIGFREEZE
0f0ea229 3171 "Special Signal Used By CPR", /* 34 SIGFREEZE */
2da0df4d
RS
3172#endif
3173#ifdef SIGTHAW
0f0ea229 3174 "Special Signal Used By CPR", /* 35 SIGTHAW */
2da0df4d 3175#endif
0f0ea229 3176#endif /* sun */
86a5659e
JB
3177#endif /* not AIX */
3178 0
3179 };
70080de1 3180#endif /* HAVE_SYS_SIGLIST */
86a5659e
JB
3181
3182/*
3183 * Warning, this function may not duplicate 4.2 action properly
3184 * under error conditions.
3185 */
3186
3187#ifndef MAXPATHLEN
3188/* In 4.1, param.h fails to define this. */
3189#define MAXPATHLEN 1024
3190#endif
3191
3192#ifndef HAVE_GETWD
3193
3194char *
3195getwd (pathname)
3196 char *pathname;
3197{
3198 char *npath, *spath;
3199 extern char *getcwd ();
3200
9ac0d9e0 3201 BLOCK_INPUT; /* getcwd uses malloc */
86a5659e 3202 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
f4a7e5bd
RS
3203 if (spath == 0)
3204 return spath;
86a5659e
JB
3205 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3206 up to first slash. Should be harmless on other systems. */
3207 while (*npath && *npath != '/')
3208 npath++;
3209 strcpy (pathname, npath);
3210 free (spath); /* getcwd uses malloc */
9ac0d9e0 3211 UNBLOCK_INPUT;
86a5659e
JB
3212 return pathname;
3213}
3214
3215#endif /* HAVE_GETWD */
3216
3217/*
3218 * Emulate rename using unlink/link. Note that this is
3219 * only partially correct. Also, doesn't enforce restriction
3220 * that files be of same type (regular->regular, dir->dir, etc).
3221 */
3222
4746118a
JB
3223#ifndef HAVE_RENAME
3224
86a5659e 3225rename (from, to)
19c7afdf
JB
3226 const char *from;
3227 const char *to;
86a5659e
JB
3228{
3229 if (access (from, 0) == 0)
3230 {
3231 unlink (to);
3232 if (link (from, to) == 0)
3233 if (unlink (from) == 0)
3234 return (0);
3235 }
3236 return (-1);
3237}
3238
4746118a
JB
3239#endif
3240
86a5659e
JB
3241
3242#ifdef HPUX
3243#ifndef HAVE_PERROR
3244
3245/* HPUX curses library references perror, but as far as we know
3246 it won't be called. Anyway this definition will do for now. */
3247
3248perror ()
3249{
3250}
3251
3252#endif /* not HAVE_PERROR */
3253#endif /* HPUX */
3254
3255#ifndef HAVE_DUP2
3256
3257/*
3258 * Emulate BSD dup2. First close newd if it already exists.
3259 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3260 * until we are, then close the unsuccessful ones.
3261 */
3262
3263dup2 (oldd, newd)
3264 int oldd;
3265 int newd;
3266{
3267 register int fd, ret;
3268
3269 sys_close (newd);
3270
3271#ifdef F_DUPFD
3272 fd = fcntl (oldd, F_DUPFD, newd);
3273 if (fd != newd)
7088d1ca 3274 error ("can't dup2 (%i,%i) : %s", oldd, newd, strerror (errno));
86a5659e
JB
3275#else
3276 fd = dup (old);
3277 if (fd == -1)
3278 return -1;
3279 if (fd == new)
3280 return new;
3281 ret = dup2 (old,new);
3282 sys_close (fd);
3283 return ret;
3284#endif
3285}
3286
3287#endif /* not HAVE_DUP2 */
3288
3289/*
3290 * Gettimeofday. Simulate as much as possible. Only accurate
3291 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3292 * Only needed when subprocesses are defined.
3293 */
3294
3295#ifdef subprocesses
3296#ifndef VMS
3297#ifndef HAVE_GETTIMEOFDAY
3298#ifdef HAVE_TIMEVAL
3299
3300/* ARGSUSED */
3301gettimeofday (tp, tzp)
3302 struct timeval *tp;
3303 struct timezone *tzp;
3304{
3305 extern long time ();
3306
3307 tp->tv_sec = time ((long *)0);
3308 tp->tv_usec = 0;
4ca7594f
RS
3309 if (tzp != 0)
3310 tzp->tz_minuteswest = -1;
86a5659e
JB
3311}
3312
3313#endif
3314#endif
3315#endif
3316#endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3317
3318/*
3319 * This function will go away as soon as all the stubs fixed. (fnf)
3320 */
3321
3322croak (badfunc)
3323 char *badfunc;
3324{
3325 printf ("%s not yet implemented\r\n", badfunc);
3326 reset_sys_modes ();
3327 exit (1);
3328}
3329
3330#endif /* USG */
3331\f
3332#ifdef DGUX
3333
3334char *sys_siglist[NSIG + 1] =
3335{
3336 "null signal", /* 0 SIGNULL */
3337 "hangup", /* 1 SIGHUP */
3338 "interrupt", /* 2 SIGINT */
3339 "quit", /* 3 SIGQUIT */
3340 "illegal instruction", /* 4 SIGILL */
3341 "trace trap", /* 5 SIGTRAP */
3342 "abort termination", /* 6 SIGABRT */
3343 "SIGEMT", /* 7 SIGEMT */
3344 "floating point exception", /* 8 SIGFPE */
3345 "kill", /* 9 SIGKILL */
3346 "bus error", /* 10 SIGBUS */
3347 "segmentation violation", /* 11 SIGSEGV */
3348 "bad argument to system call", /* 12 SIGSYS */
3349 "write on a pipe with no reader", /* 13 SIGPIPE */
3350 "alarm clock", /* 14 SIGALRM */
3351 "software termination signal", /* 15 SIGTERM */
3352 "user defined signal 1", /* 16 SIGUSR1 */
3353 "user defined signal 2", /* 17 SIGUSR2 */
3354 "child stopped or terminated", /* 18 SIGCLD */
3355 "power-fail restart", /* 19 SIGPWR */
3356 "window size changed", /* 20 SIGWINCH */
3357 "undefined", /* 21 */
eb8c3be9 3358 "pollable event occurred", /* 22 SIGPOLL */
86a5659e
JB
3359 "sendable stop signal not from tty", /* 23 SIGSTOP */
3360 "stop signal from tty", /* 24 SIGSTP */
3361 "continue a stopped process", /* 25 SIGCONT */
3362 "attempted background tty read", /* 26 SIGTTIN */
3363 "attempted background tty write", /* 27 SIGTTOU */
3364 "undefined", /* 28 */
3365 "undefined", /* 29 */
3366 "undefined", /* 30 */
3367 "undefined", /* 31 */
3368 "undefined", /* 32 */
3369 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
3370 "I/O is possible", /* 34 SIGIO */
3371 "exceeded cpu time limit", /* 35 SIGXCPU */
3372 "exceeded file size limit", /* 36 SIGXFSZ */
3373 "virtual time alarm", /* 37 SIGVTALRM */
3374 "profiling time alarm", /* 38 SIGPROF */
3375 "undefined", /* 39 */
3376 "file record locks revoked", /* 40 SIGLOST */
3377 "undefined", /* 41 */
3378 "undefined", /* 42 */
3379 "undefined", /* 43 */
3380 "undefined", /* 44 */
3381 "undefined", /* 45 */
3382 "undefined", /* 46 */
3383 "undefined", /* 47 */
3384 "undefined", /* 48 */
3385 "undefined", /* 49 */
3386 "undefined", /* 50 */
3387 "undefined", /* 51 */
3388 "undefined", /* 52 */
3389 "undefined", /* 53 */
3390 "undefined", /* 54 */
3391 "undefined", /* 55 */
3392 "undefined", /* 56 */
3393 "undefined", /* 57 */
3394 "undefined", /* 58 */
3395 "undefined", /* 59 */
3396 "undefined", /* 60 */
3397 "undefined", /* 61 */
3398 "undefined", /* 62 */
3399 "undefined", /* 63 */
3400 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
3401 0
3402};
3403
3404#endif /* DGUX */
3405\f
3406/* Directory routines for systems that don't have them. */
3407
3408#ifdef SYSV_SYSTEM_DIR
3409
3410#include <dirent.h>
3411
1db6401c 3412#if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
cfdc57af 3413
86a5659e
JB
3414int
3415closedir (dirp)
3416 register DIR *dirp; /* stream from opendir */
3417{
cfdc57af
RS
3418 int rtnval;
3419
3420 rtnval = sys_close (dirp->dd_fd);
1b929d25 3421
65aa44ac
JB
3422 /* Some systems (like Solaris) allocate the buffer and the DIR all
3423 in one block. Why in the world are we freeing this ourselves
3424 anyway? */
3425#if ! (defined (sun) && defined (USG5_4))
3426 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
3427#endif
9ac0d9e0 3428 xfree ((char *) dirp);
cfdc57af
RS
3429
3430 return rtnval;
86a5659e 3431}
1db6401c 3432#endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
86a5659e
JB
3433#endif /* SYSV_SYSTEM_DIR */
3434
3435#ifdef NONSYSTEM_DIR_LIBRARY
3436
3437DIR *
3438opendir (filename)
3439 char *filename; /* name of directory */
3440{
3441 register DIR *dirp; /* -> malloc'ed storage */
3442 register int fd; /* file descriptor for read */
3443 struct stat sbuf; /* result of fstat */
3444
3445 fd = sys_open (filename, 0);
3446 if (fd < 0)
3447 return 0;
3448
9ac0d9e0 3449 BLOCK_INPUT;
86a5659e
JB
3450 if (fstat (fd, &sbuf) < 0
3451 || (sbuf.st_mode & S_IFMT) != S_IFDIR
3452 || (dirp = (DIR *) malloc (sizeof (DIR))) == 0)
3453 {
3454 sys_close (fd);
9ac0d9e0 3455 UNBLOCK_INPUT;
86a5659e
JB
3456 return 0; /* bad luck today */
3457 }
9ac0d9e0 3458 UNBLOCK_INPUT;
86a5659e
JB
3459
3460 dirp->dd_fd = fd;
3461 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */
3462
3463 return dirp;
3464}
3465
3466void
3467closedir (dirp)
3468 register DIR *dirp; /* stream from opendir */
3469{
3470 sys_close (dirp->dd_fd);
9ac0d9e0 3471 xfree ((char *) dirp);
86a5659e
JB
3472}
3473
3474
3475#ifndef VMS
3476#define DIRSIZ 14
3477struct olddir
3478 {
3479 ino_t od_ino; /* inode */
3480 char od_name[DIRSIZ]; /* filename */
3481 };
3482#endif /* not VMS */
3483
3484struct direct dir_static; /* simulated directory contents */
3485
3486/* ARGUSED */
3487struct direct *
3488readdir (dirp)
3489 register DIR *dirp; /* stream from opendir */
3490{
3491#ifndef VMS
3492 register struct olddir *dp; /* -> directory data */
3493#else /* VMS */
3494 register struct dir$_name *dp; /* -> directory data */
3495 register struct dir$_version *dv; /* -> version data */
3496#endif /* VMS */
3497
3498 for (; ;)
3499 {
3500 if (dirp->dd_loc >= dirp->dd_size)
3501 dirp->dd_loc = dirp->dd_size = 0;
3502
3503 if (dirp->dd_size == 0 /* refill buffer */
3504 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3505 return 0;
3506
3507#ifndef VMS
3508 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
3509 dirp->dd_loc += sizeof (struct olddir);
3510
3511 if (dp->od_ino != 0) /* not deleted entry */
3512 {
3513 dir_static.d_ino = dp->od_ino;
3514 strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
3515 dir_static.d_name[DIRSIZ] = '\0';
3516 dir_static.d_namlen = strlen (dir_static.d_name);
3517 dir_static.d_reclen = sizeof (struct direct)
3518 - MAXNAMLEN + 3
3519 + dir_static.d_namlen - dir_static.d_namlen % 4;
3520 return &dir_static; /* -> simulated structure */
3521 }
3522#else /* VMS */
3523 dp = (struct dir$_name *) dirp->dd_buf;
3524 if (dirp->dd_loc == 0)
3525 dirp->dd_loc = (dp->dir$b_namecount&1) ? dp->dir$b_namecount + 1
3526 : dp->dir$b_namecount;
3527 dv = (struct dir$_version *)&dp->dir$t_name[dirp->dd_loc];
3528 dir_static.d_ino = dv->dir$w_fid_num;
3529 dir_static.d_namlen = dp->dir$b_namecount;
3530 dir_static.d_reclen = sizeof (struct direct)
3531 - MAXNAMLEN + 3
3532 + dir_static.d_namlen - dir_static.d_namlen % 4;
3533 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3534 dir_static.d_name[dir_static.d_namlen] = '\0';
3535 dirp->dd_loc = dirp->dd_size; /* only one record at a time */
3536 return &dir_static;
3537#endif /* VMS */
3538 }
3539}
3540
3541#ifdef VMS
3542/* readdirver is just like readdir except it returns all versions of a file
3543 as separate entries. */
3544
3545/* ARGUSED */
3546struct direct *
3547readdirver (dirp)
3548 register DIR *dirp; /* stream from opendir */
3549{
3550 register struct dir$_name *dp; /* -> directory data */
3551 register struct dir$_version *dv; /* -> version data */
3552
3553 if (dirp->dd_loc >= dirp->dd_size - sizeof (struct dir$_name))
3554 dirp->dd_loc = dirp->dd_size = 0;
3555
3556 if (dirp->dd_size == 0 /* refill buffer */
3557 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3558 return 0;
3559
3560 dp = (struct dir$_name *) dirp->dd_buf;
3561 if (dirp->dd_loc == 0)
3562 dirp->dd_loc = (dp->dir$b_namecount & 1) ? dp->dir$b_namecount + 1
3563 : dp->dir$b_namecount;
3564 dv = (struct dir$_version *) &dp->dir$t_name[dirp->dd_loc];
3565 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3566 sprintf (&dir_static.d_name[dp->dir$b_namecount], ";%d", dv->dir$w_version);
3567 dir_static.d_namlen = strlen (dir_static.d_name);
3568 dir_static.d_ino = dv->dir$w_fid_num;
3569 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3
3570 + dir_static.d_namlen - dir_static.d_namlen % 4;
3571 dirp->dd_loc = ((char *) (++dv) - dp->dir$t_name);
3572 return &dir_static;
3573}
3574
3575#endif /* VMS */
3576
3577#endif /* NONSYSTEM_DIR_LIBRARY */
23524fb9
JB
3578
3579\f
53ea491a 3580int
061ea326 3581set_file_times (filename, atime, mtime)
8334eb21 3582 char *filename;
53ea491a
KH
3583 EMACS_TIME atime, mtime;
3584{
3585#ifdef HAVE_UTIMES
3586 struct timeval tv[2];
3587 tv[0] = atime;
3588 tv[1] = mtime;
8334eb21
RS
3589 return utimes (filename, tv);
3590#else /* not HAVE_UTIMES */
53ea491a
KH
3591 struct utimbuf utb;
3592 utb.actime = EMACS_SECS (atime);
3593 utb.modtime = EMACS_SECS (mtime);
8334eb21
RS
3594 return utime (filename, &utb);
3595#endif /* not HAVE_UTIMES */
53ea491a
KH
3596}
3597\f
23524fb9
JB
3598/* mkdir and rmdir functions, for systems which don't have them. */
3599
3600#ifndef HAVE_MKDIR
3601/*
3602 * Written by Robert Rother, Mariah Corporation, August 1985.
3603 *
3604 * If you want it, it's yours. All I ask in return is that if you
3605 * figure out how to do this in a Bourne Shell script you send me
3606 * a copy.
3607 * sdcsvax!rmr or rmr@uscd
3608 *
3609 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3610 * subroutine. 11Mar86; hoptoad!gnu
3611 *
3612 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3613 * subroutine didn't return EEXIST. It does now.
3614 */
3615
3616/*
3617 * Make a directory.
3618 */
f3892946
RS
3619#ifdef MKDIR_PROTOTYPE
3620MKDIR_PROTOTYPE
3621#else
23524fb9
JB
3622int
3623mkdir (dpath, dmode)
3624 char *dpath;
3625 int dmode;
f3892946 3626#endif
23524fb9 3627{
039f26a4 3628 int cpid, status, fd;
23524fb9
JB
3629 struct stat statbuf;
3630
3631 if (stat (dpath, &statbuf) == 0)
3632 {
3633 errno = EEXIST; /* Stat worked, so it already exists */
3634 return -1;
3635 }
3636
3637 /* If stat fails for a reason other than non-existence, return error */
3638 if (errno != ENOENT)
3639 return -1;
3640
039f26a4 3641 synch_process_alive = 1;
23524fb9
JB
3642 switch (cpid = fork ())
3643 {
3644
039f26a4 3645 case -1: /* Error in fork */
23524fb9
JB
3646 return (-1); /* Errno is set already */
3647
3648 case 0: /* Child process */
3649 /*
3650 * Cheap hack to set mode of new directory. Since this
3651 * child process is going away anyway, we zap its umask.
3652 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3653 * directory. Does anybody care?
3654 */
3655 status = umask (0); /* Get current umask */
3656 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
039f26a4
RS
3657 fd = sys_open("/dev/null", 2);
3658 if (fd >= 0)
3659 {
3660 dup2 (fd, 0);
3661 dup2 (fd, 1);
3662 dup2 (fd, 2);
3663 }
23524fb9
JB
3664 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
3665 _exit (-1); /* Can't exec /bin/mkdir */
3666
3667 default: /* Parent process */
039f26a4 3668 wait_for_termination (cpid);
23524fb9
JB
3669 }
3670
039f26a4 3671 if (synch_process_death != 0 || synch_process_retcode != 0)
23524fb9
JB
3672 {
3673 errno = EIO; /* We don't know why, but */
3674 return -1; /* /bin/mkdir failed */
3675 }
3676
3677 return 0;
3678}
3679#endif /* not HAVE_MKDIR */
3680
3681#ifndef HAVE_RMDIR
3682int
3683rmdir (dpath)
3684 char *dpath;
3685{
039f26a4 3686 int cpid, status, fd;
23524fb9
JB
3687 struct stat statbuf;
3688
3689 if (stat (dpath, &statbuf) != 0)
3690 {
3691 /* Stat just set errno. We don't have to */
3692 return -1;
3693 }
3694
039f26a4 3695 synch_process_alive = 1;
23524fb9
JB
3696 switch (cpid = fork ())
3697 {
3698
039f26a4 3699 case -1: /* Error in fork */
23524fb9
JB
3700 return (-1); /* Errno is set already */
3701
3702 case 0: /* Child process */
039f26a4
RS
3703 fd = sys_open("/dev/null", 2);
3704 if (fd >= 0)
3705 {
3706 dup2 (fd, 0);
3707 dup2 (fd, 1);
3708 dup2 (fd, 2);
3709 }
f560db78
RS
3710 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
3711 _exit (-1); /* Can't exec /bin/rmdir */
3712
207bdbdb 3713 default: /* Parent process */
f560db78 3714 wait_for_termination (cpid);
23524fb9
JB
3715 }
3716
f560db78 3717 if (synch_process_death != 0 || synch_process_retcode != 0)
23524fb9
JB
3718 {
3719 errno = EIO; /* We don't know why, but */
f560db78 3720 return -1; /* /bin/rmdir failed */
23524fb9
JB
3721 }
3722
3723 return 0;
3724}
3725#endif /* !HAVE_RMDIR */
3726
3727
86a5659e
JB
3728\f
3729/* Functions for VMS */
3730#ifdef VMS
91bac16a 3731#include "vms-pwd.h"
86a5659e
JB
3732#include <acldef.h>
3733#include <chpdef.h>
3734#include <jpidef.h>
3735
3736/* Return as a string the VMS error string pertaining to STATUS.
3737 Reuses the same static buffer each time it is called. */
3738
3739char *
3740vmserrstr (status)
3741 int status; /* VMS status code */
3742{
3743 int bufadr[2];
3744 short len;
3745 static char buf[257];
3746
3747 bufadr[0] = sizeof buf - 1;
3748 bufadr[1] = (int) buf;
3749 if (! (SYS$GETMSG (status, &len, bufadr, 0x1, 0) & 1))
3750 return "untranslatable VMS error status";
3751 buf[len] = '\0';
3752 return buf;
3753}
3754
3755#ifdef access
3756#undef access
3757
3758/* The following is necessary because 'access' emulation by VMS C (2.0) does
3759 * not work correctly. (It also doesn't work well in version 2.3.)
3760 */
3761
3762#ifdef VMS4_4
3763
3764#define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3765 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3766
3767typedef union {
3768 struct {
3769 unsigned short s_buflen;
3770 unsigned short s_code;
3771 char *s_bufadr;
3772 unsigned short *s_retlenadr;
3773 } s;
3774 int end;
3775} item;
3776#define buflen s.s_buflen
3777#define code s.s_code
3778#define bufadr s.s_bufadr
3779#define retlenadr s.s_retlenadr
3780
3781#define R_OK 4 /* test for read permission */
3782#define W_OK 2 /* test for write permission */
3783#define X_OK 1 /* test for execute (search) permission */
3784#define F_OK 0 /* test for presence of file */
3785
3786int
3787sys_access (path, mode)
3788 char *path;
3789 int mode;
3790{
3791 static char *user = NULL;
3792 char dir_fn[512];
3793
3794 /* translate possible directory spec into .DIR file name, so brain-dead
3795 * access can treat the directory like a file. */
3796 if (directory_file_name (path, dir_fn))
3797 path = dir_fn;
3798
3799 if (mode == F_OK)
3800 return access (path, mode);
3801 if (user == NULL && (user = (char *) getenv ("USER")) == NULL)
3802 return -1;
3803 {
3804 int stat;
3805 int flags;
3806 int acces;
3807 unsigned short int dummy;
3808 item itemlst[3];
3809 static int constant = ACL$C_FILE;
3810 DESCRIPTOR (path_desc, path);
3811 DESCRIPTOR (user_desc, user);
3812
3813 flags = 0;
3814 acces = 0;
3815 if ((mode & X_OK) && ((stat = access (path, mode)) < 0 || mode == X_OK))
3816 return stat;
3817 if (mode & R_OK)
3818 acces |= CHP$M_READ;
3819 if (mode & W_OK)
3820 acces |= CHP$M_WRITE;
3821 itemlst[0].buflen = sizeof (int);
3822 itemlst[0].code = CHP$_FLAGS;
3823 itemlst[0].bufadr = (char *) &flags;
3824 itemlst[0].retlenadr = &dummy;
3825 itemlst[1].buflen = sizeof (int);
3826 itemlst[1].code = CHP$_ACCESS;
3827 itemlst[1].bufadr = (char *) &acces;
3828 itemlst[1].retlenadr = &dummy;
3829 itemlst[2].end = CHP$_END;
3830 stat = SYS$CHECK_ACCESS (&constant, &path_desc, &user_desc, itemlst);
3831 return stat == SS$_NORMAL ? 0 : -1;
3832 }
3833}
3834
3835#else /* not VMS4_4 */
3836
3837#include <prvdef.h>
fe03522b
RS
3838#define ACE$M_WRITE 2
3839#define ACE$C_KEYID 1
86a5659e
JB
3840
3841static unsigned short memid, grpid;
3842static unsigned int uic;
3843
3844/* Called from init_sys_modes, so it happens not very often
3845 but at least each time Emacs is loaded. */
3846sys_access_reinit ()
3847{
3848 uic = 0;
3849}
3850
3851int
3852sys_access (filename, type)
3853 char * filename;
3854 int type;
3855{
3856 struct FAB fab;
3857 struct XABPRO xab;
3858 int status, size, i, typecode, acl_controlled;
3859 unsigned int *aclptr, *aclend, aclbuf[60];
3860 union prvdef prvmask;
3861
3862 /* Get UIC and GRP values for protection checking. */
3863 if (uic == 0)
3864 {
3865 status = LIB$GETJPI (&JPI$_UIC, 0, 0, &uic, 0, 0);
3866 if (! (status & 1))
3867 return -1;
3868 memid = uic & 0xFFFF;
3869 grpid = uic >> 16;
3870 }
3871
fe03522b 3872 if (type != 2) /* not checking write access */
86a5659e
JB
3873 return access (filename, type);
3874
3875 /* Check write protection. */
3876
fe03522b 3877#define CHECKPRIV(bit) (prvmask.bit)
ea5a0917 3878#define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
86a5659e
JB
3879
3880 /* Find privilege bits */
986ffb24 3881 status = SYS$SETPRV (0, 0, 0, prvmask);
86a5659e
JB
3882 if (! (status & 1))
3883 error ("Unable to find privileges: %s", vmserrstr (status));
3884 if (CHECKPRIV (PRV$V_BYPASS))
3885 return 0; /* BYPASS enabled */
3886 fab = cc$rms_fab;
3887 fab.fab$b_fac = FAB$M_GET;
3888 fab.fab$l_fna = filename;
3889 fab.fab$b_fns = strlen (filename);
3890 fab.fab$l_xab = &xab;
3891 xab = cc$rms_xabpro;
3892 xab.xab$l_aclbuf = aclbuf;
3893 xab.xab$w_aclsiz = sizeof (aclbuf);
986ffb24 3894 status = SYS$OPEN (&fab, 0, 0);
86a5659e
JB
3895 if (! (status & 1))
3896 return -1;
986ffb24 3897 SYS$CLOSE (&fab, 0, 0);
86a5659e 3898 /* Check system access */
ea5a0917 3899 if (CHECKPRIV (PRV$V_SYSPRV) && WRITABLE (XAB$V_SYS))
86a5659e
JB
3900 return 0;
3901 /* Check ACL entries, if any */
3902 acl_controlled = 0;
3903 if (xab.xab$w_acllen > 0)
3904 {
3905 aclptr = aclbuf;
3906 aclend = &aclbuf[xab.xab$w_acllen / 4];
3907 while (*aclptr && aclptr < aclend)
3908 {
3909 size = (*aclptr & 0xff) / 4;
3910 typecode = (*aclptr >> 8) & 0xff;
3911 if (typecode == ACE$C_KEYID)
3912 for (i = size - 1; i > 1; i--)
3913 if (aclptr[i] == uic)
3914 {
3915 acl_controlled = 1;
3916 if (aclptr[1] & ACE$M_WRITE)
3917 return 0; /* Write access through ACL */
3918 }
3919 aclptr = &aclptr[size];
3920 }
3921 if (acl_controlled) /* ACL specified, prohibits write access */
3922 return -1;
3923 }
3924 /* No ACL entries specified, check normal protection */
ea5a0917 3925 if (WRITABLE (XAB$V_WLD)) /* World writable */
86a5659e 3926 return 0;
ea5a0917 3927 if (WRITABLE (XAB$V_GRP) &&
86a5659e 3928 (unsigned short) (xab.xab$l_uic >> 16) == grpid)
ea5a0917
KH
3929 return 0; /* Group writable */
3930 if (WRITABLE (XAB$V_OWN) &&
86a5659e 3931 (xab.xab$l_uic & 0xFFFF) == memid)
ea5a0917 3932 return 0; /* Owner writable */
86a5659e 3933
ea5a0917 3934 return -1; /* Not writable */
86a5659e
JB
3935}
3936#endif /* not VMS4_4 */
3937#endif /* access */
3938
3939static char vtbuf[NAM$C_MAXRSS+1];
3940
3941/* translate a vms file spec to a unix path */
3942char *
3943sys_translate_vms (vfile)
3944 char * vfile;
3945{
3946 char * p;
3947 char * targ;
3948
3949 if (!vfile)
3950 return 0;
3951
3952 targ = vtbuf;
3953
3954 /* leading device or logical name is a root directory */
3955 if (p = strchr (vfile, ':'))
3956 {
3957 *targ++ = '/';
3958 while (vfile < p)
3959 *targ++ = *vfile++;
3960 vfile++;
3961 *targ++ = '/';
3962 }
3963 p = vfile;
3964 if (*p == '[' || *p == '<')
3965 {
3966 while (*++vfile != *p + 2)
3967 switch (*vfile)
3968 {
3969 case '.':
3970 if (vfile[-1] == *p)
3971 *targ++ = '.';
3972 *targ++ = '/';
3973 break;
3974
3975 case '-':
3976 *targ++ = '.';
3977 *targ++ = '.';
3978 break;
3979
3980 default:
3981 *targ++ = *vfile;
3982 break;
3983 }
3984 vfile++;
3985 *targ++ = '/';
3986 }
3987 while (*vfile)
3988 *targ++ = *vfile++;
3989
3990 return vtbuf;
3991}
3992
3993static char utbuf[NAM$C_MAXRSS+1];
3994
3995/* translate a unix path to a VMS file spec */
3996char *
3997sys_translate_unix (ufile)
3998 char * ufile;
3999{
4000 int slash_seen = 0;
4001 char *p;
4002 char * targ;
4003
4004 if (!ufile)
4005 return 0;
4006
4007 targ = utbuf;
4008
4009 if (*ufile == '/')
4010 {
4011 ufile++;
4012 }
4013
4014 while (*ufile)
4015 {
4016 switch (*ufile)
4017 {
4018 case '/':
4019 if (slash_seen)
4020 if (index (&ufile[1], '/'))
4021 *targ++ = '.';
4022 else
4023 *targ++ = ']';
4024 else
4025 {
4026 *targ++ = ':';
4027 if (index (&ufile[1], '/'))
4028 *targ++ = '[';
4029 slash_seen = 1;
4030 }
4031 break;
4032
4033 case '.':
4034 if (strncmp (ufile, "./", 2) == 0)
4035 {
4036 if (!slash_seen)
4037 {
4038 *targ++ = '[';
4039 slash_seen = 1;
4040 }
4041 ufile++; /* skip the dot */
4042 if (index (&ufile[1], '/'))
4043 *targ++ = '.';
4044 else
4045 *targ++ = ']';
4046 }
4047 else if (strncmp (ufile, "../", 3) == 0)
4048 {
4049 if (!slash_seen)
4050 {
4051 *targ++ = '[';
4052 slash_seen = 1;
4053 }
4054 *targ++ = '-';
4055 ufile += 2; /* skip the dots */
4056 if (index (&ufile[1], '/'))
4057 *targ++ = '.';
4058 else
4059 *targ++ = ']';
4060 }
4061 else
4062 *targ++ = *ufile;
4063 break;
4064
4065 default:
4066 *targ++ = *ufile;
4067 break;
4068 }
4069 ufile++;
4070 }
4071 *targ = '\0';
4072
4073 return utbuf;
4074}
4075
4076char *
4077getwd (pathname)
4078 char *pathname;
4079{
f4a7e5bd 4080 char *ptr, *val;
210b2b4f 4081 extern char *getcwd ();
86a5659e 4082
210b2b4f
JB
4083#define MAXPATHLEN 1024
4084
9ac0d9e0 4085 ptr = xmalloc (MAXPATHLEN);
f4a7e5bd
RS
4086 val = getcwd (ptr, MAXPATHLEN);
4087 if (val == 0)
4088 {
4089 xfree (ptr);
4090 return val;
4091 }
210b2b4f 4092 strcpy (pathname, ptr);
9ac0d9e0 4093 xfree (ptr);
210b2b4f
JB
4094
4095 return pathname;
86a5659e
JB
4096}
4097
4098getppid ()
4099{
4100 long item_code = JPI$_OWNER;
4101 unsigned long parent_id;
4102 int status;
4103
4104 if (((status = LIB$GETJPI (&item_code, 0, 0, &parent_id)) & 1) == 0)
4105 {
4106 errno = EVMSERR;
4107 vaxc$errno = status;
4108 return -1;
4109 }
4110 return parent_id;
4111}
4112
4113#undef getuid
4114unsigned
4115sys_getuid ()
4116{
4117 return (getgid () << 16) | getuid ();
4118}
4119
4120int
4121sys_read (fildes, buf, nbyte)
4122 int fildes;
4123 char *buf;
4124 unsigned int nbyte;
4125{
4126 return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE));
4127}
4128
4129#if 0
4130int
4131sys_write (fildes, buf, nbyte)
4132 int fildes;
4133 char *buf;
4134 unsigned int nbyte;
4135{
4136 register int nwrote, rtnval = 0;
4137
4138 while (nbyte > MAXIOSIZE && (nwrote = write (fildes, buf, MAXIOSIZE)) > 0) {
4139 nbyte -= nwrote;
4140 buf += nwrote;
4141 rtnval += nwrote;
4142 }
4143 if (nwrote < 0)
4144 return rtnval ? rtnval : -1;
4145 if ((nwrote = write (fildes, buf, nbyte)) < 0)
4146 return rtnval ? rtnval : -1;
4147 return (rtnval + nwrote);
4148}
4149#endif /* 0 */
4150
4151/*
4152 * VAX/VMS VAX C RTL really loses. It insists that records
4153 * end with a newline (carriage return) character, and if they
4154 * don't it adds one (nice of it isn't it!)
4155 *
4156 * Thus we do this stupidity below.
4157 */
4158
4159int
4160sys_write (fildes, buf, nbytes)
4161 int fildes;
4162 char *buf;
4163 unsigned int nbytes;
4164{
4165 register char *p;
4166 register char *e;
23b0668c
JB
4167 int sum = 0;
4168 struct stat st;
4169
4170 fstat (fildes, &st);
86a5659e 4171 p = buf;
86a5659e
JB
4172 while (nbytes > 0)
4173 {
23b0668c
JB
4174 int len, retval;
4175
4176 /* Handle fixed-length files with carriage control. */
4177 if (st.st_fab_rfm == FAB$C_FIX
4178 && ((st.st_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
4179 {
4180 len = st.st_fab_mrs;
4181 retval = write (fildes, p, min (len, nbytes));
4182 if (retval != len)
4183 return -1;
4184 retval++; /* This skips the implied carriage control */
4185 }
4186 else
4187 {
4188 e = p + min (MAXIOSIZE, nbytes) - 1;
4189 while (*e != '\n' && e > p) e--;
4190 if (p == e) /* Ok.. so here we add a newline... sigh. */
4191 e = p + min (MAXIOSIZE, nbytes) - 1;
4192 len = e + 1 - p;
4193 retval = write (fildes, p, len);
4194 if (retval != len)
4195 return -1;
4196 }
4197 p += retval;
4198 sum += retval;
86a5659e
JB
4199 nbytes -= retval;
4200 }
4201 return sum;
4202}
4203
4204/* Create file NEW copying its attributes from file OLD. If
4205 OLD is 0 or does not exist, create based on the value of
4206 vms_stmlf_recfm. */
4207
4208/* Protection value the file should ultimately have.
4209 Set by create_copy_attrs, and use by rename_sansversions. */
4210static unsigned short int fab_final_pro;
4211
4212int
4213creat_copy_attrs (old, new)
4214 char *old, *new;
4215{
4216 struct FAB fab = cc$rms_fab;
4217 struct XABPRO xabpro;
4218 char aclbuf[256]; /* Choice of size is arbitrary. See below. */
4219 extern int vms_stmlf_recfm;
4220
4221 if (old)
4222 {
4223 fab.fab$b_fac = FAB$M_GET;
4224 fab.fab$l_fna = old;
4225 fab.fab$b_fns = strlen (old);
4226 fab.fab$l_xab = (char *) &xabpro;
4227 xabpro = cc$rms_xabpro;
4228 xabpro.xab$l_aclbuf = aclbuf;
4229 xabpro.xab$w_aclsiz = sizeof aclbuf;
4230 /* Call $OPEN to fill in the fab & xabpro fields. */
986ffb24 4231 if (SYS$OPEN (&fab, 0, 0) & 1)
86a5659e 4232 {
986ffb24 4233 SYS$CLOSE (&fab, 0, 0);
86a5659e
JB
4234 fab.fab$l_alq = 0; /* zero the allocation quantity */
4235 if (xabpro.xab$w_acllen > 0)
4236 {
4237 if (xabpro.xab$w_acllen > sizeof aclbuf)
4238 /* If the acl buffer was too short, redo open with longer one.
4239 Wouldn't need to do this if there were some system imposed
4240 limit on the size of an ACL, but I can't find any such. */
4241 {
4242 xabpro.xab$l_aclbuf = (char *) alloca (xabpro.xab$w_acllen);
4243 xabpro.xab$w_aclsiz = xabpro.xab$w_acllen;
986ffb24
JB
4244 if (SYS$OPEN (&fab, 0, 0) & 1)
4245 SYS$CLOSE (&fab, 0, 0);
86a5659e
JB
4246 else
4247 old = 0;
4248 }
4249 }
4250 else
4251 xabpro.xab$l_aclbuf = 0;
4252 }
4253 else
4254 old = 0;
4255 }
4256 fab.fab$l_fna = new;
4257 fab.fab$b_fns = strlen (new);
4258 if (!old)
4259 {
4260 fab.fab$l_xab = 0;
4261 fab.fab$b_rfm = vms_stmlf_recfm ? FAB$C_STMLF : FAB$C_VAR;
4262 fab.fab$b_rat = FAB$M_CR;
4263 }
4264
4265 /* Set the file protections such that we will be able to manipulate
4266 this file. Once we are done writing and renaming it, we will set
4267 the protections back. */
4268 if (old)
4269 fab_final_pro = xabpro.xab$w_pro;
4270 else
986ffb24 4271 SYS$SETDFPROT (0, &fab_final_pro);
86a5659e
JB
4272 xabpro.xab$w_pro &= 0xff0f; /* set O:rewd for now. This is set back later. */
4273
4274 /* Create the new file with either default attrs or attrs copied
4275 from old file. */
4276 if (!(SYS$CREATE (&fab, 0, 0) & 1))
4277 return -1;
986ffb24 4278 SYS$CLOSE (&fab, 0, 0);
86a5659e
JB
4279 /* As this is a "replacement" for creat, return a file descriptor
4280 opened for writing. */
4281 return open (new, O_WRONLY);
4282}
4283
4284#ifdef creat
4285#undef creat
4286#include <varargs.h>
4287#ifdef __GNUC__
4288#ifndef va_count
4289#define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4290#endif
4291#endif
4292
4293sys_creat (va_alist)
4294 va_dcl
4295{
eb8c3be9 4296 va_list list_incrementer;
86a5659e
JB
4297 char *name;
4298 int mode;
4299 int rfd; /* related file descriptor */
4300 int fd; /* Our new file descriptor */
4301 int count;
4302 struct stat st_buf;
4303 char rfm[12];
4304 char rat[15];
4305 char mrs[13];
4306 char fsz[13];
4307 extern int vms_stmlf_recfm;
4308
4309 va_count (count);
eb8c3be9
JB
4310 va_start (list_incrementer);
4311 name = va_arg (list_incrementer, char *);
4312 mode = va_arg (list_incrementer, int);
86a5659e 4313 if (count > 2)
eb8c3be9
JB
4314 rfd = va_arg (list_incrementer, int);
4315 va_end (list_incrementer);
86a5659e
JB
4316 if (count > 2)
4317 {
4318 /* Use information from the related file descriptor to set record
4319 format of the newly created file. */
4320 fstat (rfd, &st_buf);
4321 switch (st_buf.st_fab_rfm)
4322 {
4323 case FAB$C_FIX:
4324 strcpy (rfm, "rfm = fix");
4325 sprintf (mrs, "mrs = %d", st_buf.st_fab_mrs);
4326 strcpy (rat, "rat = ");
4327 if (st_buf.st_fab_rat & FAB$M_CR)
4328 strcat (rat, "cr");
4329 else if (st_buf.st_fab_rat & FAB$M_FTN)
4330 strcat (rat, "ftn");
4331 else if (st_buf.st_fab_rat & FAB$M_PRN)
4332 strcat (rat, "prn");
4333 if (st_buf.st_fab_rat & FAB$M_BLK)
4334 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4335 strcat (rat, ", blk");
4336 else
4337 strcat (rat, "blk");
4338 return creat (name, 0, rfm, rat, mrs);
4339
4340 case FAB$C_VFC:
4341 strcpy (rfm, "rfm = vfc");
4342 sprintf (fsz, "fsz = %d", st_buf.st_fab_fsz);
4343 strcpy (rat, "rat = ");
4344 if (st_buf.st_fab_rat & FAB$M_CR)
4345 strcat (rat, "cr");
4346 else if (st_buf.st_fab_rat & FAB$M_FTN)
4347 strcat (rat, "ftn");
4348 else if (st_buf.st_fab_rat & FAB$M_PRN)
4349 strcat (rat, "prn");
4350 if (st_buf.st_fab_rat & FAB$M_BLK)
4351 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4352 strcat (rat, ", blk");
4353 else
4354 strcat (rat, "blk");
4355 return creat (name, 0, rfm, rat, fsz);
4356
4357 case FAB$C_STM:
4358 strcpy (rfm, "rfm = stm");
4359 break;
4360
4361 case FAB$C_STMCR:
4362 strcpy (rfm, "rfm = stmcr");
4363 break;
4364
4365 case FAB$C_STMLF:
4366 strcpy (rfm, "rfm = stmlf");
4367 break;
4368
4369 case FAB$C_UDF:
4370 strcpy (rfm, "rfm = udf");
4371 break;
4372
4373 case FAB$C_VAR:
4374 strcpy (rfm, "rfm = var");
4375 break;
4376 }
4377 strcpy (rat, "rat = ");
4378 if (st_buf.st_fab_rat & FAB$M_CR)
4379 strcat (rat, "cr");
4380 else if (st_buf.st_fab_rat & FAB$M_FTN)
4381 strcat (rat, "ftn");
4382 else if (st_buf.st_fab_rat & FAB$M_PRN)
4383 strcat (rat, "prn");
4384 if (st_buf.st_fab_rat & FAB$M_BLK)
4385 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4386 strcat (rat, ", blk");
4387 else
4388 strcat (rat, "blk");
4389 }
4390 else
4391 {
4392 strcpy (rfm, vms_stmlf_recfm ? "rfm = stmlf" : "rfm=var");
4393 strcpy (rat, "rat=cr");
4394 }
4395 /* Until the VAX C RTL fixes the many bugs with modes, always use
4396 mode 0 to get the user's default protection. */
4397 fd = creat (name, 0, rfm, rat);
4398 if (fd < 0 && errno == EEXIST)
4399 {
4400 if (unlink (name) < 0)
4401 report_file_error ("delete", build_string (name));
4402 fd = creat (name, 0, rfm, rat);
4403 }
4404 return fd;
4405}
4406#endif /* creat */
4407
4408/* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4409sys_fwrite (ptr, size, num, fp)
4410 register char * ptr;
4411 FILE * fp;
4412{
4413 register int tot = num * size;
4414
4415 while (tot--)
4416 fputc (*ptr++, fp);
4417}
4418
4419/*
4420 * The VMS C library routine creat actually creates a new version of an
4421 * existing file rather than truncating the old version. There are times
4422 * when this is not the desired behavior, for instance, when writing an
4423 * auto save file (you only want one version), or when you don't have
4424 * write permission in the directory containing the file (but the file
4425 * itself is writable). Hence this routine, which is equivalent to
4426 * "close (creat (fn, 0));" on Unix if fn already exists.
4427 */
4428int
4429vms_truncate (fn)
4430 char *fn;
4431{
4432 struct FAB xfab = cc$rms_fab;
4433 struct RAB xrab = cc$rms_rab;
4434 int status;
4435
4436 xfab.fab$l_fop = FAB$M_TEF; /* free allocated but unused blocks on close */
4437 xfab.fab$b_fac = FAB$M_TRN | FAB$M_GET; /* allow truncate and get access */
4438 xfab.fab$b_shr = FAB$M_NIL; /* allow no sharing - file must be locked */
4439 xfab.fab$l_fna = fn;
4440 xfab.fab$b_fns = strlen (fn);
4441 xfab.fab$l_dna = ";0"; /* default to latest version of the file */
4442 xfab.fab$b_dns = 2;
4443 xrab.rab$l_fab = &xfab;
4444
4445 /* This gibberish opens the file, positions to the first record, and
4446 deletes all records from there until the end of file. */
986ffb24 4447 if ((SYS$OPEN (&xfab) & 01) == 01)
86a5659e 4448 {
986ffb24
JB
4449 if ((SYS$CONNECT (&xrab) & 01) == 01 &&
4450 (SYS$FIND (&xrab) & 01) == 01 &&
4451 (SYS$TRUNCATE (&xrab) & 01) == 01)
86a5659e
JB
4452 status = 0;
4453 else
4454 status = -1;
4455 }
4456 else
4457 status = -1;
986ffb24 4458 SYS$CLOSE (&xfab);
86a5659e
JB
4459 return status;
4460}
4461
4462/* Define this symbol to actually read SYSUAF.DAT. This requires either
4463 SYSPRV or a readable SYSUAF.DAT. */
4464
4465#ifdef READ_SYSUAF
4466/*
4467 * getuaf.c
4468 *
4469 * Routine to read the VMS User Authorization File and return
4470 * a specific user's record.
4471 */
4472
4473static struct UAF retuaf;
4474
4475struct UAF *
4476get_uaf_name (uname)
4477 char * uname;
4478{
4479 register status;
4480 struct FAB uaf_fab;
4481 struct RAB uaf_rab;
4482
4483 uaf_fab = cc$rms_fab;
4484 uaf_rab = cc$rms_rab;
4485 /* initialize fab fields */
4486 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4487 uaf_fab.fab$b_fns = 21;
4488 uaf_fab.fab$b_fac = FAB$M_GET;
4489 uaf_fab.fab$b_org = FAB$C_IDX;
4490 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4491 /* initialize rab fields */
4492 uaf_rab.rab$l_fab = &uaf_fab;
4493 /* open the User Authorization File */
986ffb24 4494 status = SYS$OPEN (&uaf_fab);
86a5659e
JB
4495 if (!(status&1))
4496 {
4497 errno = EVMSERR;
4498 vaxc$errno = status;
4499 return 0;
4500 }
986ffb24 4501 status = SYS$CONNECT (&uaf_rab);
86a5659e
JB
4502 if (!(status&1))
4503 {
4504 errno = EVMSERR;
4505 vaxc$errno = status;
4506 return 0;
4507 }
4508 /* read the requested record - index is in uname */
4509 uaf_rab.rab$l_kbf = uname;
4510 uaf_rab.rab$b_ksz = strlen (uname);
4511 uaf_rab.rab$b_rac = RAB$C_KEY;
4512 uaf_rab.rab$l_ubf = (char *)&retuaf;
4513 uaf_rab.rab$w_usz = sizeof retuaf;
986ffb24 4514 status = SYS$GET (&uaf_rab);
86a5659e
JB
4515 if (!(status&1))
4516 {
4517 errno = EVMSERR;
4518 vaxc$errno = status;
4519 return 0;
4520 }
4521 /* close the User Authorization File */
986ffb24 4522 status = SYS$DISCONNECT (&uaf_rab);
86a5659e
JB
4523 if (!(status&1))
4524 {
4525 errno = EVMSERR;
4526 vaxc$errno = status;
4527 return 0;
4528 }
986ffb24 4529 status = SYS$CLOSE (&uaf_fab);
86a5659e
JB
4530 if (!(status&1))
4531 {
4532 errno = EVMSERR;
4533 vaxc$errno = status;
4534 return 0;
4535 }
4536 return &retuaf;
4537}
4538
4539struct UAF *
4540get_uaf_uic (uic)
4541 unsigned long uic;
4542{
4543 register status;
4544 struct FAB uaf_fab;
4545 struct RAB uaf_rab;
4546
4547 uaf_fab = cc$rms_fab;
4548 uaf_rab = cc$rms_rab;
4549 /* initialize fab fields */
4550 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4551 uaf_fab.fab$b_fns = 21;
4552 uaf_fab.fab$b_fac = FAB$M_GET;
4553 uaf_fab.fab$b_org = FAB$C_IDX;
4554 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4555 /* initialize rab fields */
4556 uaf_rab.rab$l_fab = &uaf_fab;
4557 /* open the User Authorization File */
986ffb24 4558 status = SYS$OPEN (&uaf_fab);
86a5659e
JB
4559 if (!(status&1))
4560 {
4561 errno = EVMSERR;
4562 vaxc$errno = status;
4563 return 0;
4564 }
986ffb24 4565 status = SYS$CONNECT (&uaf_rab);
86a5659e
JB
4566 if (!(status&1))
4567 {
4568 errno = EVMSERR;
4569 vaxc$errno = status;
4570 return 0;
4571 }
4572 /* read the requested record - index is in uic */
4573 uaf_rab.rab$b_krf = 1; /* 1st alternate key */
4574 uaf_rab.rab$l_kbf = (char *) &uic;
4575 uaf_rab.rab$b_ksz = sizeof uic;
4576 uaf_rab.rab$b_rac = RAB$C_KEY;
4577 uaf_rab.rab$l_ubf = (char *)&retuaf;
4578 uaf_rab.rab$w_usz = sizeof retuaf;
986ffb24 4579 status = SYS$GET (&uaf_rab);
86a5659e
JB
4580 if (!(status&1))
4581 {
4582 errno = EVMSERR;
4583 vaxc$errno = status;
4584 return 0;
4585 }
4586 /* close the User Authorization File */
986ffb24 4587 status = SYS$DISCONNECT (&uaf_rab);
86a5659e
JB
4588 if (!(status&1))
4589 {
4590 errno = EVMSERR;
4591 vaxc$errno = status;
4592 return 0;
4593 }
986ffb24 4594 status = SYS$CLOSE (&uaf_fab);
86a5659e
JB
4595 if (!(status&1))
4596 {
4597 errno = EVMSERR;
4598 vaxc$errno = status;
4599 return 0;
4600 }
4601 return &retuaf;
4602}
4603
4604static struct passwd retpw;
4605
4606struct passwd *
4607cnv_uaf_pw (up)
4608 struct UAF * up;
4609{
4610 char * ptr;
4611
4612 /* copy these out first because if the username is 32 chars, the next
4613 section will overwrite the first byte of the UIC */
4614 retpw.pw_uid = up->uaf$w_mem;
4615 retpw.pw_gid = up->uaf$w_grp;
4616
ea5a0917 4617 /* I suppose this is not the best style, to possibly overwrite one
86a5659e
JB
4618 byte beyond the end of the field, but what the heck... */
4619 ptr = &up->uaf$t_username[UAF$S_USERNAME];
4620 while (ptr[-1] == ' ')
4621 ptr--;
4622 *ptr = '\0';
4623 strcpy (retpw.pw_name, up->uaf$t_username);
4624
4625 /* the rest of these are counted ascii strings */
4626 strncpy (retpw.pw_gecos, &up->uaf$t_owner[1], up->uaf$t_owner[0]);
4627 retpw.pw_gecos[up->uaf$t_owner[0]] = '\0';
4628 strncpy (retpw.pw_dir, &up->uaf$t_defdev[1], up->uaf$t_defdev[0]);
4629 retpw.pw_dir[up->uaf$t_defdev[0]] = '\0';
4630 strncat (retpw.pw_dir, &up->uaf$t_defdir[1], up->uaf$t_defdir[0]);
4631 retpw.pw_dir[up->uaf$t_defdev[0] + up->uaf$t_defdir[0]] = '\0';
4632 strncpy (retpw.pw_shell, &up->uaf$t_defcli[1], up->uaf$t_defcli[0]);
4633 retpw.pw_shell[up->uaf$t_defcli[0]] = '\0';
4634
4635 return &retpw;
4636}
4637#else /* not READ_SYSUAF */
4638static struct passwd retpw;
4639#endif /* not READ_SYSUAF */
4640
4641struct passwd *
4642getpwnam (name)
4643 char * name;
4644{
4645#ifdef READ_SYSUAF
4646 struct UAF *up;
4647#else
4648 char * user;
4649 char * dir;
4650 unsigned char * full;
4651#endif /* READ_SYSUAF */
4652 char *ptr = name;
4653
4654 while (*ptr)
4655 {
4656 if ('a' <= *ptr && *ptr <= 'z')
4657 *ptr -= 040;
4658 ptr++;
4659 }
4660#ifdef READ_SYSUAF
4661 if (!(up = get_uaf_name (name)))
4662 return 0;
4663 return cnv_uaf_pw (up);
4664#else
4665 if (strcmp (name, getenv ("USER")) == 0)
4666 {
4667 retpw.pw_uid = getuid ();
4668 retpw.pw_gid = getgid ();
4669 strcpy (retpw.pw_name, name);
4670 if (full = egetenv ("FULLNAME"))
4671 strcpy (retpw.pw_gecos, full);
4672 else
4673 *retpw.pw_gecos = '\0';
4674 strcpy (retpw.pw_dir, egetenv ("HOME"));
4675 *retpw.pw_shell = '\0';
4676 return &retpw;
4677 }
4678 else
4679 return 0;
4680#endif /* not READ_SYSUAF */
4681}
4682
4683struct passwd *
4684getpwuid (uid)
4685 unsigned long uid;
4686{
4687#ifdef READ_SYSUAF
4688 struct UAF * up;
4689
4690 if (!(up = get_uaf_uic (uid)))
4691 return 0;
4692 return cnv_uaf_pw (up);
4693#else
4694 if (uid == sys_getuid ())
4695 return getpwnam (egetenv ("USER"));
4696 else
4697 return 0;
4698#endif /* not READ_SYSUAF */
4699}
4700
4701/* return total address space available to the current process. This is
4702 the sum of the current p0 size, p1 size and free page table entries
4703 available. */
4704vlimit ()
4705{
4706 int item_code;
4707 unsigned long free_pages;
4708 unsigned long frep0va;
4709 unsigned long frep1va;
4710 register status;
4711
4712 item_code = JPI$_FREPTECNT;
4713 if (((status = LIB$GETJPI (&item_code, 0, 0, &free_pages)) & 1) == 0)
4714 {
4715 errno = EVMSERR;
4716 vaxc$errno = status;
4717 return -1;
4718 }
4719 free_pages *= 512;
4720
4721 item_code = JPI$_FREP0VA;
4722 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep0va)) & 1) == 0)
4723 {
4724 errno = EVMSERR;
4725 vaxc$errno = status;
4726 return -1;
4727 }
4728 item_code = JPI$_FREP1VA;
4729 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep1va)) & 1) == 0)
4730 {
4731 errno = EVMSERR;
4732 vaxc$errno = status;
4733 return -1;
4734 }
4735
4736 return free_pages + frep0va + (0x7fffffff - frep1va);
4737}
4738
4739define_logical_name (varname, string)
4740 char *varname;
4741 char *string;
4742{
4743 struct dsc$descriptor_s strdsc =
4744 {strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string};
4745 struct dsc$descriptor_s envdsc =
4746 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
4747 struct dsc$descriptor_s lnmdsc =
4748 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
4749
4750 return LIB$SET_LOGICAL (&envdsc, &strdsc, &lnmdsc, 0, 0);
4751}
4752
4753delete_logical_name (varname)
4754 char *varname;
4755{
4756 struct dsc$descriptor_s envdsc =
4757 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
4758 struct dsc$descriptor_s lnmdsc =
4759 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
4760
4761 return LIB$DELETE_LOGICAL (&envdsc, &lnmdsc);
4762}
4763
4764ulimit ()
4765{}
4766
86a5659e
JB
4767setpgrp ()
4768{}
4769
4770execvp ()
4771{
4772 error ("execvp system call not implemented");
4773}
4774
4775int
4776rename (from, to)
4777 char *from, *to;
4778{
4779 int status;
4780 struct FAB from_fab = cc$rms_fab, to_fab = cc$rms_fab;
4781 struct NAM from_nam = cc$rms_nam, to_nam = cc$rms_nam;
4782 char from_esn[NAM$C_MAXRSS];
4783 char to_esn[NAM$C_MAXRSS];
4784
4785 from_fab.fab$l_fna = from;
4786 from_fab.fab$b_fns = strlen (from);
4787 from_fab.fab$l_nam = &from_nam;
4788 from_fab.fab$l_fop = FAB$M_NAM;
4789
4790 from_nam.nam$l_esa = from_esn;
4791 from_nam.nam$b_ess = sizeof from_esn;
4792
4793 to_fab.fab$l_fna = to;
4794 to_fab.fab$b_fns = strlen (to);
4795 to_fab.fab$l_nam = &to_nam;
4796 to_fab.fab$l_fop = FAB$M_NAM;
4797
4798 to_nam.nam$l_esa = to_esn;
4799 to_nam.nam$b_ess = sizeof to_esn;
4800
4801 status = SYS$RENAME (&from_fab, 0, 0, &to_fab);
4802
4803 if (status & 1)
4804 return 0;
4805 else
4806 {
4807 if (status == RMS$_DEV)
4808 errno = EXDEV;
4809 else
4810 errno = EVMSERR;
4811 vaxc$errno = status;
4812 return -1;
4813 }
4814}
4815
4816/* This function renames a file like `rename', but it strips
4817 the version number from the "to" filename, such that the "to" file is
4818 will always be a new version. It also sets the file protection once it is
4819 finished. The protection that we will use is stored in fab_final_pro,
4820 and was set when we did a creat_copy_attrs to create the file that we
4821 are renaming.
4822
4823 We could use the chmod function, but Eunichs uses 3 bits per user category
eb8c3be9 4824 to describe the protection, and VMS uses 4 (write and delete are separate
86a5659e
JB
4825 bits). To maintain portability, the VMS implementation of `chmod' wires
4826 the W and D bits together. */
4827
4828
4829static struct fibdef fib; /* We need this initialized to zero */
4830char vms_file_written[NAM$C_MAXRSS];
4831
4832int
4833rename_sans_version (from,to)
4834 char *from, *to;
4835{
4836 short int chan;
4837 int stat;
4838 short int iosb[4];
4839 int status;
4840 struct FAB to_fab = cc$rms_fab;
4841 struct NAM to_nam = cc$rms_nam;
4842 struct dsc$descriptor fib_d ={sizeof (fib),0,0,(char*) &fib};
4843 struct dsc$descriptor fib_attr[2]
4844 = {{sizeof (fab_final_pro),ATR$C_FPRO,0,(char*) &fab_final_pro},{0,0,0,0}};
4845 char to_esn[NAM$C_MAXRSS];
4846
4847 $DESCRIPTOR (disk,to_esn);
4848
4849 to_fab.fab$l_fna = to;
4850 to_fab.fab$b_fns = strlen (to);
4851 to_fab.fab$l_nam = &to_nam;
4852 to_fab.fab$l_fop = FAB$M_NAM;
4853
4854 to_nam.nam$l_esa = to_esn;
4855 to_nam.nam$b_ess = sizeof to_esn;
4856
4857 status = SYS$PARSE (&to_fab, 0, 0); /* figure out the full file name */
4858
4859 if (to_nam.nam$l_fnb && NAM$M_EXP_VER)
4860 *(to_nam.nam$l_ver) = '\0';
4861
4862 stat = rename (from, to_esn);
4863 if (stat < 0)
4864 return stat;
4865
4866 strcpy (vms_file_written, to_esn);
4867
4868 to_fab.fab$l_fna = vms_file_written; /* this points to the versionless name */
4869 to_fab.fab$b_fns = strlen (vms_file_written);
4870
4871 /* Now set the file protection to the correct value */
986ffb24 4872 SYS$OPEN (&to_fab, 0, 0); /* This fills in the nam$w_fid fields */
86a5659e
JB
4873
4874 /* Copy these fields into the fib */
4875 fib.fib$r_fid_overlay.fib$w_fid[0] = to_nam.nam$w_fid[0];
4876 fib.fib$r_fid_overlay.fib$w_fid[1] = to_nam.nam$w_fid[1];
4877 fib.fib$r_fid_overlay.fib$w_fid[2] = to_nam.nam$w_fid[2];
4878
986ffb24 4879 SYS$CLOSE (&to_fab, 0, 0);
86a5659e 4880
986ffb24 4881 stat = SYS$ASSIGN (&disk, &chan, 0, 0); /* open a channel to the disk */
86a5659e 4882 if (!stat)
986ffb24
JB
4883 LIB$SIGNAL (stat);
4884 stat = SYS$QIOW (0, chan, IO$_MODIFY, iosb, 0, 0, &fib_d,
86a5659e
JB
4885 0, 0, 0, &fib_attr, 0);
4886 if (!stat)
986ffb24
JB
4887 LIB$SIGNAL (stat);
4888 stat = SYS$DASSGN (chan);
86a5659e 4889 if (!stat)
986ffb24 4890 LIB$SIGNAL (stat);
0137dbf7 4891 strcpy (vms_file_written, to_esn); /* We will write this to the terminal*/
86a5659e
JB
4892 return 0;
4893}
4894
4895link (file, new)
4896 char * file, * new;
4897{
4898 register status;
4899 struct FAB fab;
4900 struct NAM nam;
4901 unsigned short fid[3];
4902 char esa[NAM$C_MAXRSS];
4903
4904 fab = cc$rms_fab;
4905 fab.fab$l_fop = FAB$M_OFP;
4906 fab.fab$l_fna = file;
4907 fab.fab$b_fns = strlen (file);
4908 fab.fab$l_nam = &nam;
4909
4910 nam = cc$rms_nam;
4911 nam.nam$l_esa = esa;
4912 nam.nam$b_ess = NAM$C_MAXRSS;
4913
4914 status = SYS$PARSE (&fab);
4915 if ((status & 1) == 0)
4916 {
4917 errno = EVMSERR;
4918 vaxc$errno = status;
4919 return -1;
4920 }
4921 status = SYS$SEARCH (&fab);
4922 if ((status & 1) == 0)
4923 {
4924 errno = EVMSERR;
4925 vaxc$errno = status;
4926 return -1;
4927 }
4928
4929 fid[0] = nam.nam$w_fid[0];
4930 fid[1] = nam.nam$w_fid[1];
4931 fid[2] = nam.nam$w_fid[2];
4932
4933 fab.fab$l_fna = new;
4934 fab.fab$b_fns = strlen (new);
4935
4936 status = SYS$PARSE (&fab);
4937 if ((status & 1) == 0)
4938 {
4939 errno = EVMSERR;
4940 vaxc$errno = status;
4941 return -1;
4942 }
4943
4944 nam.nam$w_fid[0] = fid[0];
4945 nam.nam$w_fid[1] = fid[1];
4946 nam.nam$w_fid[2] = fid[2];
4947
4948 nam.nam$l_esa = nam.nam$l_name;
4949 nam.nam$b_esl = nam.nam$b_name + nam.nam$b_type + nam.nam$b_ver;
4950
4951 status = SYS$ENTER (&fab);
4952 if ((status & 1) == 0)
4953 {
4954 errno = EVMSERR;
4955 vaxc$errno = status;
4956 return -1;
4957 }
4958
4959 return 0;
4960}
4961
4962croak (badfunc)
4963 char *badfunc;
4964{
4965 printf ("%s not yet implemented\r\n", badfunc);
4966 reset_sys_modes ();
4967 exit (1);
4968}
4969
4970long
4971random ()
4972{
4973 /* Arrange to return a range centered on zero. */
4974 return rand () - (1 << 30);
4975}
4976
4977srandom (seed)
4978{
4979 srand (seed);
4980}
4981#endif /* VMS */
4982\f
b97ab886 4983#ifdef AIXHFT
86a5659e
JB
4984
4985/* Called from init_sys_modes. */
4986hft_init ()
4987{
4988 int junk;
4989
4990 /* If we're not on an HFT we shouldn't do any of this. We determine
4991 if we are on an HFT by trying to get an HFT error code. If this
4992 call fails, we're not on an HFT. */
4993#ifdef IBMR2AIX
4994 if (ioctl (0, HFQERROR, &junk) < 0)
4995 return;
4996#else /* not IBMR2AIX */
4997 if (ioctl (0, HFQEIO, 0) < 0)
4998 return;
4999#endif /* not IBMR2AIX */
5000
5001 /* On AIX the default hft keyboard mapping uses backspace rather than delete
5002 as the rubout key's ASCII code. Here this is changed. The bug is that
5003 there's no way to determine the old mapping, so in reset_sys_modes
5004 we need to assume that the normal map had been present. Of course, this
5005 code also doesn't help if on a terminal emulator which doesn't understand
5006 HFT VTD's. */
5007 {
5008 struct hfbuf buf;
5009 struct hfkeymap keymap;
5010
5011 buf.hf_bufp = (char *)&keymap;
5012 buf.hf_buflen = sizeof (keymap);
5013 keymap.hf_nkeys = 2;
5014 keymap.hfkey[0].hf_kpos = 15;
5015 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
5016#ifdef IBMR2AIX
5017 keymap.hfkey[0].hf_keyidh = '<';
5018#else /* not IBMR2AIX */
5019 keymap.hfkey[0].hf_page = '<';
5020#endif /* not IBMR2AIX */
5021 keymap.hfkey[0].hf_char = 127;
5022 keymap.hfkey[1].hf_kpos = 15;
5023 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
5024#ifdef IBMR2AIX
5025 keymap.hfkey[1].hf_keyidh = '<';
5026#else /* not IBMR2AIX */
5027 keymap.hfkey[1].hf_page = '<';
5028#endif /* not IBMR2AIX */
5029 keymap.hfkey[1].hf_char = 127;
5030 hftctl (0, HFSKBD, &buf);
5031 }
5032 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
5033 at times. */
5034 line_ins_del_ok = char_ins_del_ok = 0;
5035}
5036
5037/* Reset the rubout key to backspace. */
5038
5039hft_reset ()
5040{
5041 struct hfbuf buf;
5042 struct hfkeymap keymap;
5043 int junk;
5044
5045#ifdef IBMR2AIX
5046 if (ioctl (0, HFQERROR, &junk) < 0)
5047 return;
5048#else /* not IBMR2AIX */
5049 if (ioctl (0, HFQEIO, 0) < 0)
5050 return;
5051#endif /* not IBMR2AIX */
5052
5053 buf.hf_bufp = (char *)&keymap;
5054 buf.hf_buflen = sizeof (keymap);
5055 keymap.hf_nkeys = 2;
5056 keymap.hfkey[0].hf_kpos = 15;
5057 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
5058#ifdef IBMR2AIX
5059 keymap.hfkey[0].hf_keyidh = '<';
5060#else /* not IBMR2AIX */
5061 keymap.hfkey[0].hf_page = '<';
5062#endif /* not IBMR2AIX */
5063 keymap.hfkey[0].hf_char = 8;
5064 keymap.hfkey[1].hf_kpos = 15;
5065 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
5066#ifdef IBMR2AIX
5067 keymap.hfkey[1].hf_keyidh = '<';
5068#else /* not IBMR2AIX */
5069 keymap.hfkey[1].hf_page = '<';
5070#endif /* not IBMR2AIX */
5071 keymap.hfkey[1].hf_char = 8;
5072 hftctl (0, HFSKBD, &buf);
5073}
5074
b97ab886 5075#endif /* AIXHFT */
c238be24
RS
5076
5077#ifdef USE_DL_STUBS
5078
5079/* These are included on Sunos 4.1 when we do not use shared libraries.
5080 X11 libraries may refer to these functions but (we hope) do not
5081 actually call them. */
5082
5083void *
5084dlopen ()
5085{
5086 return 0;
5087}
5088
5089void *
5090dlsym ()
5091{
5092 return 0;
5093}
5094
5095int
5096dlclose ()
5097{
5098 return -1;
5099}
5100
5101#endif /* USE_DL_STUBS */
51417996
RS
5102\f
5103#ifndef BSTRING
5104
5105#ifndef bzero
5106
5107void
5108bzero (b, length)
5109 register char *b;
5110 register int length;
5111{
5112#ifdef VMS
5113 short zero = 0;
5114 long max_str = 65535;
5115
5116 while (length > max_str) {
5117 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5118 length -= max_str;
5119 b += max_str;
5120 }
5121 max_str = length;
5122 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5123#else
5124 while (length-- > 0)
5125 *b++ = 0;
5126#endif /* not VMS */
5127}
5128
5129#endif /* no bzero */
5130#endif /* BSTRING */
5131
c7f93f28 5132#if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
51417996
RS
5133#undef bcopy
5134
5135/* Saying `void' requires a declaration, above, where bcopy is used
5136 and that declaration causes pain for systems where bcopy is a macro. */
5137bcopy (b1, b2, length)
5138 register char *b1;
5139 register char *b2;
5140 register int length;
5141{
5142#ifdef VMS
5143 long max_str = 65535;
5144
5145 while (length > max_str) {
5146 (void) LIB$MOVC3 (&max_str, b1, b2);
5147 length -= max_str;
5148 b1 += max_str;
5149 b2 += max_str;
5150 }
5151 max_str = length;
5152 (void) LIB$MOVC3 (&length, b1, b2);
5153#else
5154 while (length-- > 0)
5155 *b2++ = *b1++;
5156#endif /* not VMS */
5157}
5158#endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5159
c7f93f28 5160#ifndef BSTRING
51417996
RS
5161#ifndef bcmp
5162int
5163bcmp (b1, b2, length) /* This could be a macro! */
5164 register char *b1;
5165 register char *b2;
5166 register int length;
5167{
5168#ifdef VMS
5169 struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1};
5170 struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2};
5171
5172 return STR$COMPARE (&src1, &src2);
5173#else
5174 while (length-- > 0)
5175 if (*b1++ != *b2++)
5176 return 1;
5177
5178 return 0;
5179#endif /* not VMS */
5180}
5181#endif /* no bcmp */
5182#endif /* not BSTRING */