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