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