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