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