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