(message-send-mail-with-sendmail): Display the error message.
[emacs.git] / src / sysdep.c
blob4e9631dbba1aaeb274162898bf60380e3991e51e
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
25 #include <signal.h>
26 #include <stdio.h>
27 #include <setjmp.h>
28 #ifdef HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #include "lisp.h"
32 /* Including stdlib.h isn't necessarily enough to get srandom
33 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
34 #ifdef HAVE_RANDOM
35 #if 0 /* Don't prototype srandom; it takes an unsigned argument on
36 some systems, and an unsigned long on others, like FreeBSD
37 4.1. */
38 extern void srandom P_ ((unsigned int));
39 #endif
40 #endif
42 /* The w32 build defines select stuff in w32.h, which is included by
43 sys/select.h (included below). */
44 #ifndef WINDOWSNT
45 #include "sysselect.h"
46 #endif
48 #include "blockinput.h"
50 #ifdef WINDOWSNT
51 #define read sys_read
52 #define write sys_write
53 #include <windows.h>
54 #ifndef NULL
55 #define NULL 0
56 #endif
57 #endif /* not WINDOWSNT */
59 /* Does anyone other than VMS need this? */
60 #ifndef fwrite
61 #define sys_fwrite fwrite
62 #else
63 #undef fwrite
64 #endif
66 #include <sys/types.h>
67 #include <sys/stat.h>
68 #include <errno.h>
70 #ifdef HAVE_SETPGID
71 #if !defined (USG) || defined (BSD_PGRPS)
72 #undef setpgrp
73 #define setpgrp setpgid
74 #endif
75 #endif
77 /* Get SI_SRPC_DOMAIN, if it is available. */
78 #ifdef HAVE_SYS_SYSTEMINFO_H
79 #include <sys/systeminfo.h>
80 #endif
82 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
83 #include <dos.h>
84 #include "dosfns.h"
85 #include "msdos.h"
86 #include <sys/param.h>
88 #if __DJGPP__ > 1
89 extern int etext;
90 extern unsigned start __asm__ ("start");
91 #endif
92 #endif
94 #ifndef USE_CRT_DLL
95 #ifndef errno
96 extern int errno;
97 #endif
98 #endif
100 #ifdef VMS
101 #include <rms.h>
102 #include <ttdef.h>
103 #include <tt2def.h>
104 #include <iodef.h>
105 #include <ssdef.h>
106 #include <descrip.h>
107 #include <fibdef.h>
108 #include <atrdef.h>
109 #include <ctype.h>
110 #include <string.h>
111 #ifdef __GNUC__
112 #include <sys/file.h>
113 #else
114 #include <file.h>
115 #endif
116 #undef F_SETFL
117 #ifndef RAB$C_BID
118 #include <rab.h>
119 #endif
120 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
121 #endif /* VMS */
123 #ifndef VMS
124 #include <sys/file.h>
125 #endif /* not VMS */
127 #ifdef HAVE_FCNTL_H
128 #include <fcntl.h>
129 #endif
131 #ifndef MSDOS
132 #include <sys/ioctl.h>
133 #endif
135 #include "systty.h"
136 #include "syswait.h"
138 #if defined (USG)
139 #include <sys/utsname.h>
140 #include <memory.h>
141 #if defined (TIOCGWINSZ)
142 #ifdef NEED_PTEM_H
143 #include <sys/stream.h>
144 #include <sys/ptem.h>
145 #endif
146 #endif /* TIOCGWINSZ */
147 #endif /* USG */
149 extern int quit_char;
151 #include "keyboard.h"
152 #include "frame.h"
153 #include "window.h"
154 #include "termhooks.h"
155 #include "termchar.h"
156 #include "termopts.h"
157 #include "dispextern.h"
158 #include "process.h"
159 #include "cm.h" /* for reset_sys_modes */
161 /* For serial_configure and serial_open. */
162 extern Lisp_Object QCport, QCspeed, QCprocess;
163 extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
164 extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
166 #ifdef WINDOWSNT
167 #include <direct.h>
168 /* In process.h which conflicts with the local copy. */
169 #define _P_WAIT 0
170 int _cdecl _spawnlp (int, const char *, const char *, ...);
171 int _cdecl _getpid (void);
172 extern char *getwd (char *);
173 #endif
175 #ifdef NONSYSTEM_DIR_LIBRARY
176 #include "ndir.h"
177 #endif /* NONSYSTEM_DIR_LIBRARY */
179 #include "syssignal.h"
180 #include "systime.h"
181 #ifdef HAVE_UTIME_H
182 #include <utime.h>
183 #endif
185 #ifndef HAVE_UTIMES
186 #ifndef HAVE_STRUCT_UTIMBUF
187 /* We want to use utime rather than utimes, but we couldn't find the
188 structure declaration. We'll use the traditional one. */
189 struct utimbuf {
190 long actime;
191 long modtime;
193 #endif
194 #endif
196 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
197 #ifndef LPASS8
198 #define LPASS8 0
199 #endif
201 static int baud_convert[] =
202 #ifdef BAUD_CONVERT
203 BAUD_CONVERT;
204 #else
206 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
207 1800, 2400, 4800, 9600, 19200, 38400
209 #endif
211 #ifdef HAVE_SPEED_T
212 #include <termios.h>
213 #else
214 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
215 #else
216 #if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
217 #include <termios.h>
218 #endif
219 #endif
220 #endif
222 int emacs_ospeed;
224 void croak P_ ((char *)) NO_RETURN;
226 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
228 SIGMASKTYPE sigprocmask_set;
231 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
233 /* Return the current working directory. Returns NULL on errors.
234 Any other returned value must be freed with free. This is used
235 only when get_current_dir_name is not defined on the system. */
236 char*
237 get_current_dir_name ()
239 char *buf;
240 char *pwd;
241 struct stat dotstat, pwdstat;
242 /* If PWD is accurate, use it instead of calling getwd. PWD is
243 sometimes a nicer name, and using it may avoid a fatal error if a
244 parent directory is searchable but not readable. */
245 if ((pwd = getenv ("PWD")) != 0
246 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
247 && stat (pwd, &pwdstat) == 0
248 && stat (".", &dotstat) == 0
249 && dotstat.st_ino == pwdstat.st_ino
250 && dotstat.st_dev == pwdstat.st_dev
251 #ifdef MAXPATHLEN
252 && strlen (pwd) < MAXPATHLEN
253 #endif
256 buf = (char *) malloc (strlen (pwd) + 1);
257 if (!buf)
258 return NULL;
259 strcpy (buf, pwd);
261 #ifdef HAVE_GETCWD
262 else
264 size_t buf_size = 1024;
265 buf = (char *) malloc (buf_size);
266 if (!buf)
267 return NULL;
268 for (;;)
270 if (getcwd (buf, buf_size) == buf)
271 break;
272 if (errno != ERANGE)
274 int tmp_errno = errno;
275 free (buf);
276 errno = tmp_errno;
277 return NULL;
279 buf_size *= 2;
280 buf = (char *) realloc (buf, buf_size);
281 if (!buf)
282 return NULL;
285 #else
286 else
288 /* We need MAXPATHLEN here. */
289 buf = (char *) malloc (MAXPATHLEN + 1);
290 if (!buf)
291 return NULL;
292 if (getwd (buf) == NULL)
294 int tmp_errno = errno;
295 free (buf);
296 errno = tmp_errno;
297 return NULL;
300 #endif
301 return buf;
303 #endif
306 /* Discard pending input on all input descriptors. */
308 void
309 discard_tty_input ()
311 #ifndef WINDOWSNT
312 struct emacs_tty buf;
314 if (noninteractive)
315 return;
317 #ifdef VMS
318 end_kbd_input ();
319 SYS$QIOW (0, fileno (CURTTY()->input), IO$_READVBLK|IO$M_PURGE, input_iosb, 0, 0,
320 &buf.main, 0, 0, terminator_mask, 0, 0);
321 queue_kbd_input ();
322 #else /* not VMS */
323 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
324 while (dos_keyread () != -1)
326 #else /* not MSDOS */
328 struct tty_display_info *tty;
329 for (tty = tty_list; tty; tty = tty->next)
331 if (tty->input) /* Is the device suspended? */
333 EMACS_GET_TTY (fileno (tty->input), &buf);
334 EMACS_SET_TTY (fileno (tty->input), &buf, 0);
338 #endif /* not MSDOS */
339 #endif /* not VMS */
340 #endif /* not WINDOWSNT */
344 #ifdef SIGTSTP
346 /* Arrange for character C to be read as the next input from
347 the terminal.
348 XXX What if we have multiple ttys?
351 void
352 stuff_char (char c)
354 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
355 return;
357 /* Should perhaps error if in batch mode */
358 #ifdef TIOCSTI
359 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
360 #else /* no TIOCSTI */
361 error ("Cannot stuff terminal input characters in this version of Unix");
362 #endif /* no TIOCSTI */
365 #endif /* SIGTSTP */
367 void
368 init_baud_rate (int fd)
370 if (noninteractive)
371 emacs_ospeed = 0;
372 else
374 #ifdef DOS_NT
375 emacs_ospeed = 15;
376 #else /* not DOS_NT */
377 #ifdef VMS
378 struct sensemode sg;
380 SYS$QIOW (0, fd, IO$_SENSEMODE, &sg, 0, 0,
381 &sg.class, 12, 0, 0, 0, 0 );
382 emacs_ospeed = sg.xmit_baud;
383 #else /* not VMS */
384 #ifdef HAVE_TERMIOS
385 struct termios sg;
387 sg.c_cflag = B9600;
388 tcgetattr (fd, &sg);
389 emacs_ospeed = cfgetospeed (&sg);
390 #else /* neither VMS nor TERMIOS */
391 #ifdef HAVE_TERMIO
392 struct termio sg;
394 sg.c_cflag = B9600;
395 #ifdef HAVE_TCATTR
396 tcgetattr (fd, &sg);
397 #else
398 ioctl (fd, TCGETA, &sg);
399 #endif
400 emacs_ospeed = sg.c_cflag & CBAUD;
401 #else /* neither VMS nor TERMIOS nor TERMIO */
402 struct sgttyb sg;
404 sg.sg_ospeed = B9600;
405 if (ioctl (fd, TIOCGETP, &sg) < 0)
406 abort ();
407 emacs_ospeed = sg.sg_ospeed;
408 #endif /* not HAVE_TERMIO */
409 #endif /* not HAVE_TERMIOS */
410 #endif /* not VMS */
411 #endif /* not DOS_NT */
414 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
415 ? baud_convert[emacs_ospeed] : 9600);
416 if (baud_rate == 0)
417 baud_rate = 1200;
421 /*ARGSUSED*/
422 void
423 set_exclusive_use (fd)
424 int fd;
426 #ifdef FIOCLEX
427 ioctl (fd, FIOCLEX, 0);
428 #endif
429 /* Ok to do nothing if this feature does not exist */
432 #ifndef subprocesses
434 wait_without_blocking ()
436 #ifdef BSD_SYSTEM
437 wait3 (0, WNOHANG | WUNTRACED, 0);
438 #else
439 croak ("wait_without_blocking");
440 #endif
441 synch_process_alive = 0;
444 #endif /* not subprocesses */
446 int wait_debugging; /* Set nonzero to make following function work under dbx
447 (at least for bsd). */
449 SIGTYPE
450 wait_for_termination_signal ()
453 /* Wait for subprocess with process id `pid' to terminate and
454 make sure it will get eliminated (not remain forever as a zombie) */
456 void
457 wait_for_termination (pid)
458 int pid;
460 while (1)
462 #ifdef subprocesses
463 #ifdef VMS
464 int status;
466 status = SYS$FORCEX (&pid, 0, 0);
467 break;
468 #else /* not VMS */
469 #if defined (BSD_SYSTEM) || defined (HPUX)
470 /* Note that kill returns -1 even if the process is just a zombie now.
471 But inevitably a SIGCHLD interrupt should be generated
472 and child_sig will do wait3 and make the process go away. */
473 /* There is some indication that there is a bug involved with
474 termination of subprocesses, perhaps involving a kernel bug too,
475 but no idea what it is. Just as a hunch we signal SIGCHLD to see
476 if that causes the problem to go away or get worse. */
477 sigsetmask (sigmask (SIGCHLD));
478 if (0 > kill (pid, 0))
480 sigsetmask (SIGEMPTYMASK);
481 kill (getpid (), SIGCHLD);
482 break;
484 if (wait_debugging)
485 sleep (1);
486 else
487 sigpause (SIGEMPTYMASK);
488 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
489 #ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
490 sigblock (sigmask (SIGCHLD));
491 errno = 0;
492 if (kill (pid, 0) == -1 && errno == ESRCH)
494 sigunblock (sigmask (SIGCHLD));
495 break;
498 sigsuspend (&empty_mask);
499 #else /* not POSIX_SIGNALS */
500 #ifdef HAVE_SYSV_SIGPAUSE
501 sighold (SIGCHLD);
502 if (0 > kill (pid, 0))
504 sigrelse (SIGCHLD);
505 break;
507 sigpause (SIGCHLD);
508 #else /* not HAVE_SYSV_SIGPAUSE */
509 #ifdef WINDOWSNT
510 wait (0);
511 break;
512 #else /* not WINDOWSNT */
513 if (0 > kill (pid, 0))
514 break;
515 /* Using sleep instead of pause avoids timing error.
516 If the inferior dies just before the sleep,
517 we lose just one second. */
518 sleep (1);
519 #endif /* not WINDOWSNT */
520 #endif /* not HAVE_SYSV_SIGPAUSE */
521 #endif /* not POSIX_SIGNALS */
522 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
523 #endif /* not VMS */
524 #else /* not subprocesses */
525 #if __DJGPP__ > 1
526 break;
527 #else /* not __DJGPP__ > 1 */
528 if (kill (pid, 0) < 0)
529 break;
530 wait (0);
531 #endif /* not __DJGPP__ > 1*/
532 #endif /* not subprocesses */
536 #ifdef subprocesses
539 * flush any pending output
540 * (may flush input as well; it does not matter the way we use it)
543 void
544 flush_pending_output (channel)
545 int channel;
547 #ifdef HAVE_TERMIOS
548 /* If we try this, we get hit with SIGTTIN, because
549 the child's tty belongs to the child's pgrp. */
550 #else
551 #ifdef TCFLSH
552 ioctl (channel, TCFLSH, 1);
553 #else
554 #ifdef TIOCFLUSH
555 int zero = 0;
556 /* 3rd arg should be ignored
557 but some 4.2 kernels actually want the address of an int
558 and nonzero means something different. */
559 ioctl (channel, TIOCFLUSH, &zero);
560 #endif
561 #endif
562 #endif
565 #ifndef VMS
566 /* Set up the terminal at the other end of a pseudo-terminal that
567 we will be controlling an inferior through.
568 It should not echo or do line-editing, since that is done
569 in Emacs. No padding needed for insertion into an Emacs buffer. */
571 void
572 child_setup_tty (out)
573 int out;
575 #ifndef DOS_NT
576 struct emacs_tty s;
578 EMACS_GET_TTY (out, &s);
580 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
581 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
582 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
583 #ifdef NLDLY
584 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
585 Some versions of GNU Hurd do not have FFDLY? */
586 #ifdef FFDLY
587 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
588 /* No output delays */
589 #else
590 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
591 /* No output delays */
592 #endif
593 #endif
594 s.main.c_lflag &= ~ECHO; /* Disable echo */
595 s.main.c_lflag |= ISIG; /* Enable signals */
596 #if 0 /* This causes bugs in (for instance) telnet to certain sites. */
597 s.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
598 #ifdef INLCR /* Just being cautious, since I can't check how
599 widespread INLCR is--rms. */
600 s.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
601 #endif
602 #endif
603 #ifdef IUCLC
604 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
605 #endif
606 #ifdef ISTRIP
607 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
608 #endif
609 #ifdef OLCUC
610 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
611 #endif
612 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
613 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
614 #if 0
615 /* Said to be unnecessary: */
616 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */
617 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */
618 #endif
620 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
621 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */
622 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
623 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
625 #ifdef HPUX
626 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
627 #endif /* HPUX */
629 #ifdef SIGNALS_VIA_CHARACTERS
630 /* the QUIT and INTR character are used in process_send_signal
631 so set them here to something useful. */
632 if (s.main.c_cc[VQUIT] == CDISABLE)
633 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
634 if (s.main.c_cc[VINTR] == CDISABLE)
635 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
636 #endif /* not SIGNALS_VIA_CHARACTERS */
638 #ifdef AIX
639 /* AIX enhanced edit loses NULs, so disable it */
640 #ifndef IBMR2AIX
641 s.main.c_line = 0;
642 s.main.c_iflag &= ~ASCEDIT;
643 #endif
644 /* Also, PTY overloads NUL and BREAK.
645 don't ignore break, but don't signal either, so it looks like NUL. */
646 s.main.c_iflag &= ~IGNBRK;
647 s.main.c_iflag &= ~BRKINT;
648 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
649 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
650 would force it to 0377. That looks like duplicated code. */
651 #ifndef SIGNALS_VIA_CHARACTERS
652 /* QUIT and INTR work better as signals, so disable character forms */
653 s.main.c_cc[VQUIT] = CDISABLE;
654 s.main.c_cc[VINTR] = CDISABLE;
655 s.main.c_lflag &= ~ISIG;
656 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
657 s.main.c_cc[VEOL] = CDISABLE;
658 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
659 #endif /* AIX */
661 #else /* not HAVE_TERMIO */
663 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
664 | CBREAK | TANDEM);
665 s.main.sg_flags |= LPASS8;
666 s.main.sg_erase = 0377;
667 s.main.sg_kill = 0377;
668 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
670 #endif /* not HAVE_TERMIO */
672 EMACS_SET_TTY (out, &s, 0);
674 #endif /* not DOS_NT */
676 #endif /* not VMS */
678 #endif /* subprocesses */
680 /* Record a signal code and the handler for it. */
681 struct save_signal
683 int code;
684 SIGTYPE (*handler) P_ ((int));
687 static void save_signal_handlers P_ ((struct save_signal *));
688 static void restore_signal_handlers P_ ((struct save_signal *));
690 /* Suspend the Emacs process; give terminal to its superior. */
692 void
693 sys_suspend ()
695 #ifdef VMS
696 /* "Foster" parentage allows emacs to return to a subprocess that attached
697 to the current emacs as a cheaper than starting a whole new process. This
698 is set up by KEPTEDITOR.COM. */
699 unsigned long parent_id, foster_parent_id;
700 char *fpid_string;
702 fpid_string = getenv ("EMACS_PARENT_PID");
703 if (fpid_string != NULL)
705 sscanf (fpid_string, "%x", &foster_parent_id);
706 if (foster_parent_id != 0)
707 parent_id = foster_parent_id;
708 else
709 parent_id = getppid ();
711 else
712 parent_id = getppid ();
714 xfree (fpid_string); /* On VMS, this was malloc'd */
716 if (parent_id && parent_id != 0xffffffff)
718 SIGTYPE (*oldsig)() = (int) signal (SIGINT, SIG_IGN);
719 int status = LIB$ATTACH (&parent_id) & 1;
720 signal (SIGINT, oldsig);
721 return status;
723 else
725 struct {
726 int l;
727 char *a;
728 } d_prompt;
729 d_prompt.l = sizeof ("Emacs: "); /* Our special prompt */
730 d_prompt.a = "Emacs: "; /* Just a reminder */
731 LIB$SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt, 0);
732 return 1;
734 return -1;
735 #else
736 #if defined (SIGTSTP) && !defined (MSDOS)
739 int pgrp = EMACS_GETPGRP (0);
740 EMACS_KILLPG (pgrp, SIGTSTP);
743 #else /* No SIGTSTP */
744 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
745 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
746 kill (getpid (), SIGQUIT);
748 #else /* No SIGTSTP or USG_JOBCTRL */
750 /* On a system where suspending is not implemented,
751 instead fork a subshell and let it talk directly to the terminal
752 while we wait. */
753 sys_subshell ();
755 #endif /* no USG_JOBCTRL */
756 #endif /* no SIGTSTP */
757 #endif /* not VMS */
760 /* Fork a subshell. */
762 void
763 sys_subshell ()
765 #ifndef VMS
766 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
767 int st;
768 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
769 #endif
770 int pid;
771 struct save_signal saved_handlers[5];
772 Lisp_Object dir;
773 unsigned char *str = 0;
774 int len;
776 saved_handlers[0].code = SIGINT;
777 saved_handlers[1].code = SIGQUIT;
778 saved_handlers[2].code = SIGTERM;
779 #ifdef SIGIO
780 saved_handlers[3].code = SIGIO;
781 saved_handlers[4].code = 0;
782 #else
783 saved_handlers[3].code = 0;
784 #endif
786 /* Mentioning current_buffer->buffer would mean including buffer.h,
787 which somehow wedges the hp compiler. So instead... */
789 dir = intern ("default-directory");
790 if (NILP (Fboundp (dir)))
791 goto xyzzy;
792 dir = Fsymbol_value (dir);
793 if (!STRINGP (dir))
794 goto xyzzy;
796 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
797 str = (unsigned char *) alloca (SCHARS (dir) + 2);
798 len = SCHARS (dir);
799 bcopy (SDATA (dir), str, len);
800 if (str[len - 1] != '/') str[len++] = '/';
801 str[len] = 0;
802 xyzzy:
804 #ifdef DOS_NT
805 pid = 0;
806 #if __DJGPP__ > 1
807 save_signal_handlers (saved_handlers);
808 synch_process_alive = 1;
809 #endif /* __DJGPP__ > 1 */
810 #else
811 pid = vfork ();
812 if (pid == -1)
813 error ("Can't spawn subshell");
814 #endif
816 if (pid == 0)
818 char *sh = 0;
820 #ifdef DOS_NT /* MW, Aug 1993 */
821 getwd (oldwd);
822 if (sh == 0)
823 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
824 #endif
825 if (sh == 0)
826 sh = (char *) egetenv ("SHELL");
827 if (sh == 0)
828 sh = "sh";
830 /* Use our buffer's default directory for the subshell. */
831 if (str)
832 chdir ((char *) str);
834 #ifdef subprocesses
835 close_process_descs (); /* Close Emacs's pipes/ptys */
836 #endif
838 #ifdef SET_EMACS_PRIORITY
840 extern EMACS_INT emacs_priority;
842 if (emacs_priority < 0)
843 nice (-emacs_priority);
845 #endif
847 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
849 char *epwd = getenv ("PWD");
850 char old_pwd[MAXPATHLEN+1+4];
852 /* If PWD is set, pass it with corrected value. */
853 if (epwd)
855 strcpy (old_pwd, epwd);
856 if (str[len - 1] == '/')
857 str[len - 1] = '\0';
858 setenv ("PWD", str, 1);
860 st = system (sh);
861 chdir (oldwd);
862 if (epwd)
863 putenv (old_pwd); /* restore previous value */
865 #if 0 /* This is also reported if last command executed in subshell failed, KFS */
866 if (st)
867 report_file_error ("Can't execute subshell", Fcons (build_string (sh), Qnil));
868 #endif
869 #else /* not MSDOS */
870 #ifdef WINDOWSNT
871 /* Waits for process completion */
872 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
873 chdir (oldwd);
874 if (pid == -1)
875 write (1, "Can't execute subshell", 22);
876 #else /* not WINDOWSNT */
877 execlp (sh, sh, (char *) 0);
878 write (1, "Can't execute subshell", 22);
879 _exit (1);
880 #endif /* not WINDOWSNT */
881 #endif /* not MSDOS */
884 /* Do this now if we did not do it before. */
885 #if !defined (MSDOS) || __DJGPP__ == 1
886 save_signal_handlers (saved_handlers);
887 synch_process_alive = 1;
888 #endif
890 #ifndef DOS_NT
891 wait_for_termination (pid);
892 #endif
893 restore_signal_handlers (saved_handlers);
894 synch_process_alive = 0;
895 #endif /* !VMS */
898 static void
899 save_signal_handlers (saved_handlers)
900 struct save_signal *saved_handlers;
902 while (saved_handlers->code)
904 saved_handlers->handler
905 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers->code, SIG_IGN);
906 saved_handlers++;
910 static void
911 restore_signal_handlers (saved_handlers)
912 struct save_signal *saved_handlers;
914 while (saved_handlers->code)
916 signal (saved_handlers->code, saved_handlers->handler);
917 saved_handlers++;
921 #ifndef SIGIO
922 /* If SIGIO is broken, don't do anything. */
923 void
924 init_sigio (int fd)
928 void
929 reset_sigio (int fd)
933 void
934 request_sigio (void)
938 void
939 unrequest_sigio (void)
943 #else
944 #ifdef F_SETFL
946 int old_fcntl_flags[MAXDESC];
948 void
949 init_sigio (fd)
950 int fd;
952 #ifdef FASYNC
953 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
954 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
955 #endif
956 interrupts_deferred = 0;
959 void
960 reset_sigio (fd)
961 int fd;
963 #ifdef FASYNC
964 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
965 #endif
968 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
969 /* XXX Uhm, FASYNC is not used anymore here. */
970 /* XXX Yeah, but you need it for SIGIO, don't you? */
972 void
973 request_sigio ()
975 if (noninteractive)
976 return;
978 #ifdef SIGWINCH
979 sigunblock (sigmask (SIGWINCH));
980 #endif
981 sigunblock (sigmask (SIGIO));
983 interrupts_deferred = 0;
986 void
987 unrequest_sigio (void)
989 if (noninteractive)
990 return;
992 #if 0 /* XXX What's wrong with blocking SIGIO under X? */
993 if (x_display_list)
994 return;
995 #endif
997 #ifdef SIGWINCH
998 sigblock (sigmask (SIGWINCH));
999 #endif
1000 sigblock (sigmask (SIGIO));
1001 interrupts_deferred = 1;
1004 #else /* no FASYNC */
1005 #ifndef MSDOS
1007 void
1008 request_sigio ()
1010 if (noninteractive || read_socket_hook)
1011 return;
1013 croak ("request_sigio");
1016 void
1017 unrequest_sigio ()
1019 if (noninteractive || read_socket_hook)
1020 return;
1022 croak ("unrequest_sigio");
1025 #endif /* MSDOS */
1026 #endif /* FASYNC */
1027 #endif /* F_SETFL */
1028 #endif /* SIGIO */
1030 /* Saving and restoring the process group of Emacs's terminal. */
1032 #ifdef BSD_PGRPS
1034 /* The process group of which Emacs was a member when it initially
1035 started.
1037 If Emacs was in its own process group (i.e. inherited_pgroup ==
1038 getpid ()), then we know we're running under a shell with job
1039 control (Emacs would never be run as part of a pipeline).
1040 Everything is fine.
1042 If Emacs was not in its own process group, then we know we're
1043 running under a shell (or a caller) that doesn't know how to
1044 separate itself from Emacs (like sh). Emacs must be in its own
1045 process group in order to receive SIGIO correctly. In this
1046 situation, we put ourselves in our own pgroup, forcibly set the
1047 tty's pgroup to our pgroup, and make sure to restore and reinstate
1048 the tty's pgroup just like any other terminal setting. If
1049 inherited_group was not the tty's pgroup, then we'll get a
1050 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
1051 it goes foreground in the future, which is what should happen.
1053 This variable is initialized in emacs.c. */
1054 int inherited_pgroup;
1056 /* Split off the foreground process group to Emacs alone. When we are
1057 in the foreground, but not started in our own process group,
1058 redirect the tty device handle FD to point to our own process
1059 group. We need to be in our own process group to receive SIGIO
1060 properly. */
1061 static void
1062 narrow_foreground_group (int fd)
1064 int me = getpid ();
1066 setpgrp (0, inherited_pgroup);
1067 #if 0
1068 /* XXX inherited_pgroup should not be zero here, but GTK seems to
1069 mess this up. */
1070 if (! inherited_pgroup)
1071 abort (); /* Should not happen. */
1072 #endif
1073 if (inherited_pgroup != me)
1074 EMACS_SET_TTY_PGRP (fd, &me); /* XXX This only works on the controlling tty. */
1075 setpgrp (0, me);
1078 /* Set the tty to our original foreground group. */
1079 static void
1080 widen_foreground_group (int fd)
1082 if (inherited_pgroup != getpid ())
1083 EMACS_SET_TTY_PGRP (fd, &inherited_pgroup);
1084 setpgrp (0, inherited_pgroup);
1087 #endif /* BSD_PGRPS */
1089 /* Getting and setting emacs_tty structures. */
1091 /* Set *TC to the parameters associated with the terminal FD.
1092 Return zero if all's well, or -1 if we ran into an error we
1093 couldn't deal with. */
1095 emacs_get_tty (fd, settings)
1096 int fd;
1097 struct emacs_tty *settings;
1099 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
1100 #ifdef HAVE_TCATTR
1101 /* We have those nifty POSIX tcmumbleattr functions. */
1102 bzero (&settings->main, sizeof (settings->main));
1103 if (tcgetattr (fd, &settings->main) < 0)
1104 return -1;
1106 #else
1107 #ifdef HAVE_TERMIO
1108 /* The SYSV-style interface? */
1109 if (ioctl (fd, TCGETA, &settings->main) < 0)
1110 return -1;
1112 #else
1113 #ifdef VMS
1114 /* Vehemently Monstrous System? :-) */
1115 if (! (SYS$QIOW (0, fd, IO$_SENSEMODE, settings, 0, 0,
1116 &settings->main.class, 12, 0, 0, 0, 0)
1117 & 1))
1118 return -1;
1120 #else
1121 #ifndef DOS_NT
1122 /* I give up - I hope you have the BSD ioctls. */
1123 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
1124 return -1;
1125 #endif /* not DOS_NT */
1126 #endif
1127 #endif
1128 #endif
1130 /* Suivant - Do we have to get struct ltchars data? */
1131 #ifdef HAVE_LTCHARS
1132 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
1133 return -1;
1134 #endif
1136 /* How about a struct tchars and a wordful of lmode bits? */
1137 #ifdef HAVE_TCHARS
1138 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
1139 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
1140 return -1;
1141 #endif
1143 /* We have survived the tempest. */
1144 return 0;
1148 /* Set the parameters of the tty on FD according to the contents of
1149 *SETTINGS. If FLUSHP is non-zero, we discard input.
1150 Return 0 if all went well, and -1 if anything failed. */
1153 emacs_set_tty (fd, settings, flushp)
1154 int fd;
1155 struct emacs_tty *settings;
1156 int flushp;
1158 /* Set the primary parameters - baud rate, character size, etcetera. */
1159 #ifdef HAVE_TCATTR
1160 int i;
1161 /* We have those nifty POSIX tcmumbleattr functions.
1162 William J. Smith <wjs@wiis.wang.com> writes:
1163 "POSIX 1003.1 defines tcsetattr to return success if it was
1164 able to perform any of the requested actions, even if some
1165 of the requested actions could not be performed.
1166 We must read settings back to ensure tty setup properly.
1167 AIX requires this to keep tty from hanging occasionally." */
1168 /* This make sure that we don't loop indefinitely in here. */
1169 for (i = 0 ; i < 10 ; i++)
1170 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
1172 if (errno == EINTR)
1173 continue;
1174 else
1175 return -1;
1177 else
1179 struct termios new;
1181 bzero (&new, sizeof (new));
1182 /* Get the current settings, and see if they're what we asked for. */
1183 tcgetattr (fd, &new);
1184 /* We cannot use memcmp on the whole structure here because under
1185 * aix386 the termios structure has some reserved field that may
1186 * not be filled in.
1188 if ( new.c_iflag == settings->main.c_iflag
1189 && new.c_oflag == settings->main.c_oflag
1190 && new.c_cflag == settings->main.c_cflag
1191 && new.c_lflag == settings->main.c_lflag
1192 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
1193 break;
1194 else
1195 continue;
1198 #else
1199 #ifdef HAVE_TERMIO
1200 /* The SYSV-style interface? */
1201 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
1202 return -1;
1204 #else
1205 #ifdef VMS
1206 /* Vehemently Monstrous System? :-) */
1207 if (! (SYS$QIOW (0, fd, IO$_SETMODE, &input_iosb, 0, 0,
1208 &settings->main.class, 12, 0, 0, 0, 0)
1209 & 1))
1210 return -1;
1212 #else
1213 #ifndef DOS_NT
1214 /* I give up - I hope you have the BSD ioctls. */
1215 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
1216 return -1;
1217 #endif /* not DOS_NT */
1219 #endif
1220 #endif
1221 #endif
1223 /* Suivant - Do we have to get struct ltchars data? */
1224 #ifdef HAVE_LTCHARS
1225 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
1226 return -1;
1227 #endif
1229 /* How about a struct tchars and a wordful of lmode bits? */
1230 #ifdef HAVE_TCHARS
1231 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
1232 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
1233 return -1;
1234 #endif
1236 /* We have survived the tempest. */
1237 return 0;
1242 #ifdef F_SETOWN
1243 int old_fcntl_owner[MAXDESC];
1244 #endif /* F_SETOWN */
1246 /* This may also be defined in stdio,
1247 but if so, this does no harm,
1248 and using the same name avoids wasting the other one's space. */
1250 #if defined (USG) || defined (DGUX)
1251 unsigned char _sobuf[BUFSIZ+8];
1252 #else
1253 char _sobuf[BUFSIZ];
1254 #endif
1256 #ifdef HAVE_LTCHARS
1257 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
1258 #endif
1259 #ifdef HAVE_TCHARS
1260 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
1261 #endif
1263 /* Initialize the terminal mode on all tty devices that are currently
1264 open. */
1266 void
1267 init_all_sys_modes (void)
1269 struct tty_display_info *tty;
1270 for (tty = tty_list; tty; tty = tty->next)
1271 init_sys_modes (tty);
1274 /* Initialize the terminal mode on the given tty device. */
1276 void
1277 init_sys_modes (tty_out)
1278 struct tty_display_info *tty_out;
1280 struct emacs_tty tty;
1282 #ifdef VMS
1283 #if 0
1284 static int oob_chars[2] = {0, 1 << 7}; /* catch C-g's */
1285 extern int (*interrupt_signal) ();
1286 #endif
1287 #endif
1289 Vtty_erase_char = Qnil;
1291 if (noninteractive)
1292 return;
1294 if (!tty_out->output)
1295 return; /* The tty is suspended. */
1297 #ifdef VMS
1298 if (!input_ef)
1299 input_ef = get_kbd_event_flag ();
1300 /* LIB$GET_EF (&input_ef); */
1301 SYS$CLREF (input_ef);
1302 waiting_for_ast = 0;
1303 if (!timer_ef)
1304 timer_ef = get_timer_event_flag ();
1305 /* LIB$GET_EF (&timer_ef); */
1306 SYS$CLREF (timer_ef);
1307 #if 0
1308 if (!process_ef)
1310 LIB$GET_EF (&process_ef);
1311 SYS$CLREF (process_ef);
1313 if (input_ef / 32 != process_ef / 32)
1314 croak ("Input and process event flags in different clusters.");
1315 #endif
1316 if (input_ef / 32 != timer_ef / 32)
1317 croak ("Input and timer event flags in different clusters.");
1318 #if 0
1319 input_eflist = ((unsigned) 1 << (input_ef % 32)) |
1320 ((unsigned) 1 << (process_ef % 32));
1321 #endif
1322 timer_eflist = ((unsigned) 1 << (input_ef % 32)) |
1323 ((unsigned) 1 << (timer_ef % 32));
1324 #ifndef VMS4_4
1325 sys_access_reinit ();
1326 #endif
1327 #endif /* VMS */
1329 #ifdef BSD_PGRPS
1330 #if 0
1331 /* read_socket_hook is not global anymore. I think doing this
1332 unconditionally will not cause any problems. */
1333 if (! read_socket_hook && EQ (Vinitial_window_system, Qnil))
1334 #endif
1335 narrow_foreground_group (fileno (tty_out->input));
1336 #endif
1338 if (! tty_out->old_tty)
1339 tty_out->old_tty = (struct emacs_tty *) xmalloc (sizeof (struct emacs_tty));
1341 EMACS_GET_TTY (fileno (tty_out->input), tty_out->old_tty);
1343 tty = *tty_out->old_tty;
1345 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1346 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
1348 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
1349 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
1350 #ifdef INLCR /* I'm just being cautious,
1351 since I can't check how widespread INLCR is--rms. */
1352 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
1353 #endif
1354 #ifdef ISTRIP
1355 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
1356 #endif
1357 tty.main.c_lflag &= ~ECHO; /* Disable echo */
1358 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
1359 #ifdef IEXTEN
1360 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
1361 #endif
1362 tty.main.c_lflag |= ISIG; /* Enable signals */
1363 if (tty_out->flow_control)
1365 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
1366 #ifdef IXANY
1367 tty.main.c_iflag &= ~IXANY;
1368 #endif /* IXANY */
1370 else
1371 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
1372 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
1373 on output */
1374 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1375 #ifdef CS8
1376 if (tty_out->meta_key)
1378 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
1379 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
1381 #endif
1382 if (tty_out->input == stdin)
1384 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
1385 /* Set up C-g for both SIGQUIT and SIGINT.
1386 We don't know which we will get, but we handle both alike
1387 so which one it really gives us does not matter. */
1388 tty.main.c_cc[VQUIT] = quit_char;
1390 else
1392 /* We normally don't get interrupt or quit signals from tty
1393 devices other than our controlling terminal; therefore,
1394 we must handle C-g as normal input. Unfortunately, this
1395 means that the interrupt and quit feature must be
1396 disabled on secondary ttys, or we would not even see the
1397 keypress.
1399 Note that even though emacsclient could have special code
1400 to pass SIGINT to Emacs, we should _not_ enable
1401 interrupt/quit keys for emacsclient frames. This means
1402 that we can't break out of loops in C code from a
1403 secondary tty frame, but we can always decide what
1404 display the C-g came from, which is more important from a
1405 usability point of view. (Consider the case when two
1406 people work together using the same Emacs instance.) */
1407 tty.main.c_cc[VINTR] = CDISABLE;
1408 tty.main.c_cc[VQUIT] = CDISABLE;
1410 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1411 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
1412 #ifdef VSWTCH
1413 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
1414 of C-z */
1415 #endif /* VSWTCH */
1417 #if defined (mips) || defined (HAVE_TCATTR)
1418 #ifdef VSUSP
1419 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */
1420 #endif /* VSUSP */
1421 #ifdef V_DSUSP
1422 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */
1423 #endif /* V_DSUSP */
1424 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1425 tty.main.c_cc[VDSUSP] = CDISABLE;
1426 #endif /* VDSUSP */
1427 #ifdef VLNEXT
1428 tty.main.c_cc[VLNEXT] = CDISABLE;
1429 #endif /* VLNEXT */
1430 #ifdef VREPRINT
1431 tty.main.c_cc[VREPRINT] = CDISABLE;
1432 #endif /* VREPRINT */
1433 #ifdef VWERASE
1434 tty.main.c_cc[VWERASE] = CDISABLE;
1435 #endif /* VWERASE */
1436 #ifdef VDISCARD
1437 tty.main.c_cc[VDISCARD] = CDISABLE;
1438 #endif /* VDISCARD */
1440 if (tty_out->flow_control)
1442 #ifdef VSTART
1443 tty.main.c_cc[VSTART] = '\021';
1444 #endif /* VSTART */
1445 #ifdef VSTOP
1446 tty.main.c_cc[VSTOP] = '\023';
1447 #endif /* VSTOP */
1449 else
1451 #ifdef VSTART
1452 tty.main.c_cc[VSTART] = CDISABLE;
1453 #endif /* VSTART */
1454 #ifdef VSTOP
1455 tty.main.c_cc[VSTOP] = CDISABLE;
1456 #endif /* VSTOP */
1458 #endif /* mips or HAVE_TCATTR */
1460 #ifdef AIX
1461 #ifndef IBMR2AIX
1462 /* AIX enhanced edit loses NULs, so disable it. */
1463 tty.main.c_line = 0;
1464 tty.main.c_iflag &= ~ASCEDIT;
1465 #else
1466 tty.main.c_cc[VSTRT] = CDISABLE;
1467 tty.main.c_cc[VSTOP] = CDISABLE;
1468 tty.main.c_cc[VSUSP] = CDISABLE;
1469 tty.main.c_cc[VDSUSP] = CDISABLE;
1470 #endif /* IBMR2AIX */
1471 if (tty_out->flow_control)
1473 #ifdef VSTART
1474 tty.main.c_cc[VSTART] = '\021';
1475 #endif /* VSTART */
1476 #ifdef VSTOP
1477 tty.main.c_cc[VSTOP] = '\023';
1478 #endif /* VSTOP */
1480 /* Also, PTY overloads NUL and BREAK.
1481 don't ignore break, but don't signal either, so it looks like NUL.
1482 This really serves a purpose only if running in an XTERM window
1483 or via TELNET or the like, but does no harm elsewhere. */
1484 tty.main.c_iflag &= ~IGNBRK;
1485 tty.main.c_iflag &= ~BRKINT;
1486 #endif
1487 #else /* if not HAVE_TERMIO */
1488 #ifdef VMS
1489 tty.main.tt_char |= TT$M_NOECHO;
1490 if (meta_key)
1491 tty.main.tt_char |= TT$M_EIGHTBIT;
1492 if (tty_out->flow_control)
1493 tty.main.tt_char |= TT$M_TTSYNC;
1494 else
1495 tty.main.tt_char &= ~TT$M_TTSYNC;
1496 tty.main.tt2_char |= TT2$M_PASTHRU | TT2$M_XON;
1497 #else /* not VMS (BSD, that is) */
1498 #ifndef DOS_NT
1499 XSETINT (Vtty_erase_char, tty.main.sg_erase);
1500 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
1501 if (meta_key)
1502 tty.main.sg_flags |= ANYP;
1503 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK;
1504 #endif /* not DOS_NT */
1505 #endif /* not VMS (BSD, that is) */
1506 #endif /* not HAVE_TERMIO */
1508 /* If going to use CBREAK mode, we must request C-g to interrupt
1509 and turn off start and stop chars, etc. If not going to use
1510 CBREAK mode, do this anyway so as to turn off local flow
1511 control for user coming over network on 4.2; in this case,
1512 only t_stopc and t_startc really matter. */
1513 #ifndef HAVE_TERMIO
1514 #ifdef HAVE_TCHARS
1515 /* Note: if not using CBREAK mode, it makes no difference how we
1516 set this */
1517 tty.tchars = new_tchars;
1518 tty.tchars.t_intrc = quit_char;
1519 if (tty_out->flow_control)
1521 tty.tchars.t_startc = '\021';
1522 tty.tchars.t_stopc = '\023';
1525 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | tty_out->old_tty.lmode;
1527 #endif /* HAVE_TCHARS */
1528 #endif /* not HAVE_TERMIO */
1530 #ifdef HAVE_LTCHARS
1531 tty.ltchars = new_ltchars;
1532 #endif /* HAVE_LTCHARS */
1533 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1534 if (!tty_out->term_initted)
1535 internal_terminal_init ();
1536 dos_ttraw ();
1537 #endif
1539 EMACS_SET_TTY (fileno (tty_out->input), &tty, 0);
1541 /* This code added to insure that, if flow-control is not to be used,
1542 we have an unlocked terminal at the start. */
1544 #ifdef TCXONC
1545 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1546 #endif
1547 #ifdef TIOCSTART
1548 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1549 #endif
1551 #if defined (HAVE_TERMIOS) || defined (HPUX)
1552 #ifdef TCOON
1553 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1554 #endif
1555 #endif
1557 #ifdef VMS
1558 /* Appears to do nothing when in PASTHRU mode.
1559 SYS$QIOW (0, fileno (tty_out->input), IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1560 interrupt_signal, oob_chars, 0, 0, 0, 0);
1562 queue_kbd_input (0);
1563 #endif /* VMS */
1565 #ifdef F_SETFL
1566 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1567 if (interrupt_input)
1569 old_fcntl_owner[fileno (tty_out->input)] =
1570 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1571 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1572 init_sigio (fileno (tty_out->input));
1573 #ifdef HAVE_GPM
1574 if (gpm_tty == tty_out)
1576 /* Arrange for mouse events to give us SIGIO signals. */
1577 fcntl (gpm_fd, F_SETOWN, getpid ());
1578 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1579 init_sigio (gpm_fd);
1581 #endif /* HAVE_GPM */
1583 #endif /* F_GETOWN */
1584 #endif /* F_SETFL */
1586 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1587 #undef _IOFBF
1588 #endif
1589 #ifdef _IOFBF
1590 /* This symbol is defined on recent USG systems.
1591 Someone says without this call USG won't really buffer the file
1592 even with a call to setbuf. */
1593 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1594 #else
1595 setbuf (tty_out->output, (char *) _sobuf);
1596 #endif
1598 if (tty_out->terminal->set_terminal_modes_hook)
1599 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1601 if (!tty_out->term_initted)
1603 Lisp_Object tail, frame;
1604 FOR_EACH_FRAME (tail, frame)
1606 /* XXX This needs to be revised. */
1607 if (FRAME_TERMCAP_P (XFRAME (frame))
1608 && FRAME_TTY (XFRAME (frame)) == tty_out)
1609 init_frame_faces (XFRAME (frame));
1613 if (tty_out->term_initted && no_redraw_on_reenter)
1615 /* XXX This seems wrong on multi-tty. */
1616 if (display_completed)
1617 direct_output_forward_char (0);
1619 else
1621 Lisp_Object tail, frame;
1622 frame_garbaged = 1;
1623 FOR_EACH_FRAME (tail, frame)
1625 if (FRAME_TERMCAP_P (XFRAME (frame))
1626 && FRAME_TTY (XFRAME (frame)) == tty_out)
1627 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1631 tty_out->term_initted = 1;
1634 /* Return nonzero if safe to use tabs in output.
1635 At the time this is called, init_sys_modes has not been done yet. */
1638 tabs_safe_p (int fd)
1640 struct emacs_tty etty;
1642 EMACS_GET_TTY (fd, &etty);
1643 return EMACS_TTY_TABS_OK (&etty);
1646 /* Get terminal size from system.
1647 Store number of lines into *HEIGHTP and width into *WIDTHP.
1648 We store 0 if there's no valid information. */
1650 void
1651 get_tty_size (int fd, int *widthp, int *heightp)
1654 #ifdef TIOCGWINSZ
1656 /* BSD-style. */
1657 struct winsize size;
1659 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1660 *widthp = *heightp = 0;
1661 else
1663 *widthp = size.ws_col;
1664 *heightp = size.ws_row;
1667 #else
1668 #ifdef TIOCGSIZE
1670 /* SunOS - style. */
1671 struct ttysize size;
1673 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1674 *widthp = *heightp = 0;
1675 else
1677 *widthp = size.ts_cols;
1678 *heightp = size.ts_lines;
1681 #else
1682 #ifdef VMS
1684 /* Use a fresh channel since the current one may have stale info
1685 (for example, from prior to a suspend); and to avoid a dependency
1686 in the init sequence. */
1687 int chan;
1688 struct sensemode tty;
1690 SYS$ASSIGN (&input_dsc, &chan, 0, 0);
1691 SYS$QIOW (0, chan, IO$_SENSEMODE, &tty, 0, 0,
1692 &tty.class, 12, 0, 0, 0, 0);
1693 SYS$DASSGN (chan);
1694 *widthp = tty.scr_wid;
1695 *heightp = tty.scr_len;
1697 #else
1698 #ifdef MSDOS
1699 *widthp = ScreenCols ();
1700 *heightp = ScreenRows ();
1701 #else /* system doesn't know size */
1702 *widthp = 0;
1703 *heightp = 0;
1704 #endif
1705 #endif /* not VMS */
1706 #endif /* not SunOS-style */
1707 #endif /* not BSD-style */
1710 /* Set the logical window size associated with descriptor FD
1711 to HEIGHT and WIDTH. This is used mainly with ptys. */
1714 set_window_size (fd, height, width)
1715 int fd, height, width;
1717 #ifdef TIOCSWINSZ
1719 /* BSD-style. */
1720 struct winsize size;
1721 size.ws_row = height;
1722 size.ws_col = width;
1724 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1725 return 0; /* error */
1726 else
1727 return 1;
1729 #else
1730 #ifdef TIOCSSIZE
1732 /* SunOS - style. */
1733 struct ttysize size;
1734 size.ts_lines = height;
1735 size.ts_cols = width;
1737 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1738 return 0;
1739 else
1740 return 1;
1741 #else
1742 return -1;
1743 #endif /* not SunOS-style */
1744 #endif /* not BSD-style */
1749 /* Prepare all terminal devices for exiting Emacs. */
1751 void
1752 reset_all_sys_modes (void)
1754 struct tty_display_info *tty;
1755 for (tty = tty_list; tty; tty = tty->next)
1756 reset_sys_modes (tty);
1759 /* Prepare the terminal for closing it; move the cursor to the
1760 bottom of the frame, turn off interrupt-driven I/O, etc. */
1762 void
1763 reset_sys_modes (tty_out)
1764 struct tty_display_info *tty_out;
1766 if (noninteractive)
1768 fflush (stdout);
1769 return;
1771 if (!tty_out->term_initted)
1772 return;
1774 if (!tty_out->output)
1775 return; /* The tty is suspended. */
1777 /* Go to and clear the last line of the terminal. */
1779 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1781 /* Code adapted from tty_clear_end_of_line. */
1782 if (tty_out->TS_clr_line)
1784 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1786 else
1787 { /* have to do it the hard way */
1788 int i;
1789 tty_turn_off_insert (tty_out);
1791 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1793 fputc (' ', tty_out->output);
1797 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1798 fflush (tty_out->output);
1800 if (tty_out->terminal->reset_terminal_modes_hook)
1801 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1803 #ifdef BSD_SYSTEM
1804 /* Avoid possible loss of output when changing terminal modes. */
1805 fsync (fileno (tty_out->output));
1806 #endif
1808 #ifdef F_SETFL
1809 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1810 if (interrupt_input)
1812 reset_sigio (fileno (tty_out->input));
1813 fcntl (fileno (tty_out->input), F_SETOWN,
1814 old_fcntl_owner[fileno (tty_out->input)]);
1816 #endif /* F_SETOWN */
1817 #ifdef O_NDELAY
1818 fcntl (fileno (tty_out->input), F_SETFL,
1819 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
1820 #endif
1821 #endif /* F_SETFL */
1823 if (tty_out->old_tty)
1824 while (EMACS_SET_TTY (fileno (tty_out->input),
1825 tty_out->old_tty, 0) < 0 && errno == EINTR)
1828 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1829 dos_ttcooked ();
1830 #endif
1832 #ifdef BSD_PGRPS
1833 widen_foreground_group (fileno (tty_out->input));
1834 #endif
1837 #ifdef HAVE_PTYS
1839 /* Set up the proper status flags for use of a pty. */
1841 void
1842 setup_pty (fd)
1843 int fd;
1845 /* I'm told that TOICREMOTE does not mean control chars
1846 "can't be sent" but rather that they don't have
1847 input-editing or signaling effects.
1848 That should be good, because we have other ways
1849 to do those things in Emacs.
1850 However, telnet mode seems not to work on 4.2.
1851 So TIOCREMOTE is turned off now. */
1853 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1854 will hang. In particular, the "timeout" feature (which
1855 causes a read to return if there is no data available)
1856 does this. Also it is known that telnet mode will hang
1857 in such a way that Emacs must be stopped (perhaps this
1858 is the same problem).
1860 If TIOCREMOTE is turned off, then there is a bug in
1861 hp-ux which sometimes loses data. Apparently the
1862 code which blocks the master process when the internal
1863 buffer fills up does not work. Other than this,
1864 though, everything else seems to work fine.
1866 Since the latter lossage is more benign, we may as well
1867 lose that way. -- cph */
1868 #ifdef FIONBIO
1869 #if defined(SYSV_PTYS) || defined(UNIX98_PTYS)
1871 int on = 1;
1872 ioctl (fd, FIONBIO, &on);
1874 #endif
1875 #endif
1877 #endif /* HAVE_PTYS */
1879 #ifdef VMS
1881 /* Assigning an input channel is done at the start of Emacs execution.
1882 This is called each time Emacs is resumed, also, but does nothing
1883 because input_chain is no longer zero. */
1885 void
1886 init_vms_input ()
1888 int status;
1890 if (fileno (CURTTY ()->input)) == 0)
1892 status = SYS$ASSIGN (&input_dsc, &fileno (CURTTY ()->input)), 0, 0);
1893 if (! (status & 1))
1894 LIB$STOP (status);
1898 /* Deassigning the input channel is done before exiting. */
1900 void
1901 stop_vms_input ()
1903 return SYS$DASSGN (fileno (CURTTY ()->input)));
1906 short input_buffer;
1908 /* Request reading one character into the keyboard buffer.
1909 This is done as soon as the buffer becomes empty. */
1911 void
1912 queue_kbd_input ()
1914 int status;
1915 extern kbd_input_ast ();
1917 waiting_for_ast = 0;
1918 stop_input = 0;
1919 status = SYS$QIO (0, fileno (CURTTY()->input), IO$_READVBLK,
1920 &input_iosb, kbd_input_ast, 1,
1921 &input_buffer, 1, 0, terminator_mask, 0, 0);
1924 int input_count;
1926 /* Ast routine that is called when keyboard input comes in
1927 in accord with the SYS$QIO above. */
1929 void
1930 kbd_input_ast ()
1932 register int c = -1;
1933 int old_errno = errno;
1934 extern EMACS_TIME *input_available_clear_time;
1936 if (waiting_for_ast)
1937 SYS$SETEF (input_ef);
1938 waiting_for_ast = 0;
1939 input_count++;
1940 #ifdef ASTDEBUG
1941 if (input_count == 25)
1942 exit (1);
1943 printf ("Ast # %d,", input_count);
1944 printf (" iosb = %x, %x, %x, %x",
1945 input_iosb.offset, input_iosb.status, input_iosb.termlen,
1946 input_iosb.term);
1947 #endif
1948 if (input_iosb.offset)
1950 c = input_buffer;
1951 #ifdef ASTDEBUG
1952 printf (", char = 0%o", c);
1953 #endif
1955 #ifdef ASTDEBUG
1956 printf ("\n");
1957 fflush (stdout);
1958 sleep (1);
1959 #endif
1960 if (! stop_input)
1961 queue_kbd_input ();
1962 if (c >= 0)
1964 struct input_event e;
1965 EVENT_INIT (e);
1967 e.kind = ASCII_KEYSTROKE_EVENT;
1968 XSETINT (e.code, c);
1969 e.frame_or_window = selected_frame;
1970 kbd_buffer_store_event (&e);
1972 if (input_available_clear_time)
1973 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
1974 errno = old_errno;
1977 /* Wait until there is something in kbd_buffer. */
1979 void
1980 wait_for_kbd_input ()
1982 extern int have_process_input, process_exited;
1984 /* If already something, avoid doing system calls. */
1985 if (detect_input_pending ())
1987 return;
1989 /* Clear a flag, and tell ast routine above to set it. */
1990 SYS$CLREF (input_ef);
1991 waiting_for_ast = 1;
1992 /* Check for timing error: ast happened while we were doing that. */
1993 if (!detect_input_pending ())
1995 /* No timing error: wait for flag to be set. */
1996 set_waiting_for_input (0);
1997 SYS$WFLOR (input_ef, input_eflist);
1998 clear_waiting_for_input ();
1999 if (!detect_input_pending ())
2000 /* Check for subprocess input availability */
2002 int dsp = have_process_input || process_exited;
2004 SYS$CLREF (process_ef);
2005 if (have_process_input)
2006 process_command_input ();
2007 if (process_exited)
2008 process_exit ();
2009 if (dsp)
2011 update_mode_lines++;
2012 prepare_menu_bars ();
2013 redisplay_preserve_echo_area (18);
2017 waiting_for_ast = 0;
2020 /* Get rid of any pending QIO, when we are about to suspend
2021 or when we want to throw away pending input.
2022 We wait for a positive sign that the AST routine has run
2023 and therefore there is no I/O request queued when we return.
2024 SYS$SETAST is used to avoid a timing error. */
2026 void
2027 end_kbd_input ()
2029 #ifdef ASTDEBUG
2030 printf ("At end_kbd_input.\n");
2031 fflush (stdout);
2032 sleep (1);
2033 #endif
2034 if (LIB$AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
2036 SYS$CANCEL (fileno (CURTTY()->input));
2037 return;
2040 SYS$SETAST (0);
2041 /* Clear a flag, and tell ast routine above to set it. */
2042 SYS$CLREF (input_ef);
2043 waiting_for_ast = 1;
2044 stop_input = 1;
2045 SYS$CANCEL (fileno (CURTTY()->input));
2046 SYS$SETAST (1);
2047 SYS$WAITFR (input_ef);
2048 waiting_for_ast = 0;
2051 /* Wait for either input available or time interval expiry. */
2053 void
2054 input_wait_timeout (timeval)
2055 int timeval; /* Time to wait, in seconds */
2057 int time [2];
2058 static int zero = 0;
2059 static int large = -10000000;
2061 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
2063 /* If already something, avoid doing system calls. */
2064 if (detect_input_pending ())
2066 return;
2068 /* Clear a flag, and tell ast routine above to set it. */
2069 SYS$CLREF (input_ef);
2070 waiting_for_ast = 1;
2071 /* Check for timing error: ast happened while we were doing that. */
2072 if (!detect_input_pending ())
2074 /* No timing error: wait for flag to be set. */
2075 SYS$CANTIM (1, 0);
2076 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2077 SYS$WFLOR (timer_ef, timer_eflist); /* Wait for timer expiry or input */
2079 waiting_for_ast = 0;
2082 /* The standard `sleep' routine works some other way
2083 and it stops working if you have ever quit out of it.
2084 This one continues to work. */
2086 sys_sleep (timeval)
2087 int timeval;
2089 int time [2];
2090 static int zero = 0;
2091 static int large = -10000000;
2093 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */
2095 SYS$CANTIM (1, 0);
2096 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
2097 SYS$WAITFR (timer_ef); /* Wait for timer expiry only */
2100 void
2101 init_sigio (fd)
2102 int fd;
2104 request_sigio ();
2107 reset_sigio (fd)
2108 int fd;
2110 unrequest_sigio ();
2113 void
2114 request_sigio ()
2116 if (noninteractive)
2117 return;
2118 croak ("request sigio");
2121 void
2122 unrequest_sigio ()
2124 if (noninteractive)
2125 return;
2126 croak ("unrequest sigio");
2129 #endif /* VMS */
2131 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
2132 #ifndef CANNOT_DUMP
2133 #define NEED_STARTS
2134 #endif
2136 #ifndef SYSTEM_MALLOC
2137 #ifndef NEED_STARTS
2138 #define NEED_STARTS
2139 #endif
2140 #endif
2142 #ifdef NEED_STARTS
2143 /* Some systems that cannot dump also cannot implement these. */
2146 * Return the address of the start of the text segment prior to
2147 * doing an unexec. After unexec the return value is undefined.
2148 * See crt0.c for further explanation and _start.
2152 #if !(defined (__NetBSD__) && defined (__ELF__))
2153 #ifndef HAVE_TEXT_START
2154 char *
2155 start_of_text ()
2157 #ifdef TEXT_START
2158 return ((char *) TEXT_START);
2159 #else
2160 extern int _start ();
2161 return ((char *) _start);
2162 #endif /* TEXT_START */
2164 #endif /* not HAVE_TEXT_START */
2165 #endif
2168 * Return the address of the start of the data segment prior to
2169 * doing an unexec. After unexec the return value is undefined.
2170 * See crt0.c for further information and definition of data_start.
2172 * Apparently, on BSD systems this is etext at startup. On
2173 * USG systems (swapping) this is highly mmu dependent and
2174 * is also dependent on whether or not the program is running
2175 * with shared text. Generally there is a (possibly large)
2176 * gap between end of text and start of data with shared text.
2178 * On Uniplus+ systems with shared text, data starts at a
2179 * fixed address. Each port (from a given oem) is generally
2180 * different, and the specific value of the start of data can
2181 * be obtained via the UniPlus+ specific "uvar" system call,
2182 * however the method outlined in crt0.c seems to be more portable.
2184 * Probably what will have to happen when a USG unexec is available,
2185 * at least on UniPlus, is temacs will have to be made unshared so
2186 * that text and data are contiguous. Then once loadup is complete,
2187 * unexec will produce a shared executable where the data can be
2188 * at the normal shared text boundary and the startofdata variable
2189 * will be patched by unexec to the correct value.
2193 #ifndef start_of_data
2194 char *
2195 start_of_data ()
2197 #ifdef DATA_START
2198 return ((char *) DATA_START);
2199 #else
2200 #ifdef ORDINARY_LINK
2202 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2203 * data_start isn't defined. We take the address of environ, which
2204 * is known to live at or near the start of the system crt0.c, and
2205 * we don't sweat the handful of bytes that might lose.
2207 extern char **environ;
2209 return ((char *) &environ);
2210 #else
2211 extern int data_start;
2212 return ((char *) &data_start);
2213 #endif /* ORDINARY_LINK */
2214 #endif /* DATA_START */
2216 #endif /* start_of_data */
2217 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2219 /* init_system_name sets up the string for the Lisp function
2220 system-name to return. */
2222 extern Lisp_Object Vsystem_name;
2224 #ifndef VMS
2225 #ifdef HAVE_SOCKETS
2226 #include <sys/socket.h>
2227 #include <netdb.h>
2228 #endif /* HAVE_SOCKETS */
2229 #endif /* not VMS */
2231 #ifdef TRY_AGAIN
2232 #ifndef HAVE_H_ERRNO
2233 extern int h_errno;
2234 #endif
2235 #endif /* TRY_AGAIN */
2237 void
2238 init_system_name ()
2240 #ifdef VMS
2241 char *sp, *end;
2242 if ((sp = egetenv ("SYS$NODE")) == 0)
2243 Vsystem_name = build_string ("vax-vms");
2244 else if ((end = index (sp, ':')) == 0)
2245 Vsystem_name = build_string (sp);
2246 else
2247 Vsystem_name = make_string (sp, end - sp);
2248 #else
2249 #ifndef HAVE_GETHOSTNAME
2250 struct utsname uts;
2251 uname (&uts);
2252 Vsystem_name = build_string (uts.nodename);
2253 #else /* HAVE_GETHOSTNAME */
2254 unsigned int hostname_size = 256;
2255 char *hostname = (char *) alloca (hostname_size);
2257 /* Try to get the host name; if the buffer is too short, try
2258 again. Apparently, the only indication gethostname gives of
2259 whether the buffer was large enough is the presence or absence
2260 of a '\0' in the string. Eech. */
2261 for (;;)
2263 gethostname (hostname, hostname_size - 1);
2264 hostname[hostname_size - 1] = '\0';
2266 /* Was the buffer large enough for the '\0'? */
2267 if (strlen (hostname) < hostname_size - 1)
2268 break;
2270 hostname_size <<= 1;
2271 hostname = (char *) alloca (hostname_size);
2273 #ifdef HAVE_SOCKETS
2274 /* Turn the hostname into the official, fully-qualified hostname.
2275 Don't do this if we're going to dump; this can confuse system
2276 libraries on some machines and make the dumped emacs core dump. */
2277 #ifndef CANNOT_DUMP
2278 if (initialized)
2279 #endif /* not CANNOT_DUMP */
2280 if (! index (hostname, '.'))
2282 int count;
2283 #ifdef HAVE_GETADDRINFO
2284 struct addrinfo *res;
2285 struct addrinfo hints;
2286 int ret;
2288 memset (&hints, 0, sizeof(hints));
2289 hints.ai_socktype = SOCK_STREAM;
2290 hints.ai_flags = AI_CANONNAME;
2292 for (count = 0;; count++)
2294 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
2295 || ret != EAI_AGAIN)
2296 break;
2298 if (count >= 5)
2299 break;
2300 Fsleep_for (make_number (1), Qnil);
2303 if (ret == 0)
2305 struct addrinfo *it = res;
2306 while (it)
2308 char *fqdn = it->ai_canonname;
2309 if (fqdn && index (fqdn, '.')
2310 && strcmp (fqdn, "localhost.localdomain") != 0)
2311 break;
2312 it = it->ai_next;
2314 if (it)
2316 hostname = alloca (strlen (it->ai_canonname) + 1);
2317 strcpy (hostname, it->ai_canonname);
2319 freeaddrinfo (res);
2321 #else /* !HAVE_GETADDRINFO */
2322 struct hostent *hp;
2323 for (count = 0;; count++)
2326 #ifdef TRY_AGAIN
2327 h_errno = 0;
2328 #endif
2329 hp = gethostbyname (hostname);
2330 #ifdef TRY_AGAIN
2331 if (! (hp == 0 && h_errno == TRY_AGAIN))
2332 #endif
2334 break;
2336 if (count >= 5)
2337 break;
2338 Fsleep_for (make_number (1), Qnil);
2341 if (hp)
2343 char *fqdn = (char *) hp->h_name;
2344 #if 0
2345 char *p;
2346 #endif
2348 if (!index (fqdn, '.'))
2350 /* We still don't have a fully qualified domain name.
2351 Try to find one in the list of alternate names */
2352 char **alias = hp->h_aliases;
2353 while (*alias
2354 && (!index (*alias, '.')
2355 || !strcmp (*alias, "localhost.localdomain")))
2356 alias++;
2357 if (*alias)
2358 fqdn = *alias;
2360 hostname = fqdn;
2361 #if 0
2362 /* Convert the host name to lower case. */
2363 /* Using ctype.h here would introduce a possible locale
2364 dependence that is probably wrong for hostnames. */
2365 p = hostname;
2366 while (*p)
2368 if (*p >= 'A' && *p <= 'Z')
2369 *p += 'a' - 'A';
2370 p++;
2372 #endif
2374 #endif /* !HAVE_GETADDRINFO */
2376 #endif /* HAVE_SOCKETS */
2377 /* We used to try using getdomainname here,
2378 but NIIBE Yutaka <gniibe@etl.go.jp> says that
2379 getdomainname gets the NIS/YP domain which often is not the same
2380 as in Internet domain name. */
2381 #if 0 /* Turned off because sysinfo is not really likely to return the
2382 correct Internet domain. */
2383 #if (HAVE_SYSINFO && defined (SI_SRPC_DOMAIN))
2384 if (! index (hostname, '.'))
2386 /* The hostname is not fully qualified. Append the domain name. */
2388 int hostlen = strlen (hostname);
2389 int domain_size = 256;
2391 for (;;)
2393 char *domain = (char *) alloca (domain_size + 1);
2394 char *fqdn = (char *) alloca (hostlen + 1 + domain_size + 1);
2395 int sys_domain_size = sysinfo (SI_SRPC_DOMAIN, domain, domain_size);
2396 if (sys_domain_size <= 0)
2397 break;
2398 if (domain_size < sys_domain_size)
2400 domain_size = sys_domain_size;
2401 continue;
2403 strcpy (fqdn, hostname);
2404 if (domain[0] == '.')
2405 strcpy (fqdn + hostlen, domain);
2406 else if (domain[0] != 0)
2408 fqdn[hostlen] = '.';
2409 strcpy (fqdn + hostlen + 1, domain);
2411 hostname = fqdn;
2412 break;
2415 #endif /* HAVE_SYSINFO && defined (SI_SRPC_DOMAIN) */
2416 #endif /* 0 */
2417 Vsystem_name = build_string (hostname);
2418 #endif /* HAVE_GETHOSTNAME */
2419 #endif /* VMS */
2421 unsigned char *p;
2422 for (p = SDATA (Vsystem_name); *p; p++)
2423 if (*p == ' ' || *p == '\t')
2424 *p = '-';
2428 #ifndef MSDOS
2429 #ifndef VMS
2430 #if !defined (HAVE_SELECT)
2432 #include "sysselect.h"
2433 #undef select
2435 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2436 /* Cause explanatory error message at compile time,
2437 since the select emulation is not good enough for X. */
2438 int *x = &x_windows_lose_if_no_select_system_call;
2439 #endif
2441 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2442 * Only checks read descriptors.
2444 /* How long to wait between checking fds in select */
2445 #define SELECT_PAUSE 1
2446 int select_alarmed;
2448 /* For longjmp'ing back to read_input_waiting. */
2450 jmp_buf read_alarm_throw;
2452 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2453 The read_socket_hook function sets this to 1 while it is waiting. */
2455 int read_alarm_should_throw;
2457 SIGTYPE
2458 select_alarm ()
2460 select_alarmed = 1;
2461 signal (SIGALRM, SIG_IGN);
2462 SIGNAL_THREAD_CHECK (SIGALRM);
2463 if (read_alarm_should_throw)
2464 longjmp (read_alarm_throw, 1);
2467 #ifndef WINDOWSNT
2468 /* Only rfds are checked. */
2470 sys_select (nfds, rfds, wfds, efds, timeout)
2471 int nfds;
2472 SELECT_TYPE *rfds, *wfds, *efds;
2473 EMACS_TIME *timeout;
2475 /* XXX This needs to be updated for multi-tty support. Is there
2476 anybody who needs to emulate select these days? */
2477 int ravail = 0;
2478 SELECT_TYPE orfds;
2479 int timeoutval;
2480 int *local_timeout;
2481 extern int proc_buffered_char[];
2482 #ifndef subprocesses
2483 int process_tick = 0, update_tick = 0;
2484 #else
2485 extern int process_tick, update_tick;
2486 #endif
2487 unsigned char buf;
2489 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2490 /* If we're using X, then the native select will work; we only need the
2491 emulation for non-X usage. */
2492 if (!NILP (Vinitial_window_system))
2493 return select (nfds, rfds, wfds, efds, timeout);
2494 #endif
2495 timeoutval = timeout ? EMACS_SECS (*timeout) : 100000;
2496 local_timeout = &timeoutval;
2497 FD_ZERO (&orfds);
2498 if (rfds)
2500 orfds = *rfds;
2501 FD_ZERO (rfds);
2503 if (wfds)
2504 FD_ZERO (wfds);
2505 if (efds)
2506 FD_ZERO (efds);
2508 /* If we are looking only for the terminal, with no timeout,
2509 just read it and wait -- that's more efficient. */
2510 if (*local_timeout == 100000 && process_tick == update_tick
2511 && FD_ISSET (0, &orfds))
2513 int fd;
2514 for (fd = 1; fd < nfds; ++fd)
2515 if (FD_ISSET (fd, &orfds))
2516 goto hardway;
2517 if (! detect_input_pending ())
2518 read_input_waiting ();
2519 FD_SET (0, rfds);
2520 return 1;
2523 hardway:
2524 /* Once a second, till the timer expires, check all the flagged read
2525 * descriptors to see if any input is available. If there is some then
2526 * set the corresponding bit in the return copy of rfds.
2528 while (1)
2530 register int to_check, fd;
2532 if (rfds)
2534 for (to_check = nfds, fd = 0; --to_check >= 0; fd++)
2536 if (FD_ISSET (fd, &orfds))
2538 int avail = 0, status = 0;
2540 if (fd == 0)
2541 avail = detect_input_pending (); /* Special keyboard handler */
2542 else
2544 #ifdef FIONREAD
2545 status = ioctl (fd, FIONREAD, &avail);
2546 #else /* no FIONREAD */
2547 /* Hoping it will return -1 if nothing available
2548 or 0 if all 0 chars requested are read. */
2549 if (proc_buffered_char[fd] >= 0)
2550 avail = 1;
2551 else
2553 avail = read (fd, &buf, 1);
2554 if (avail > 0)
2555 proc_buffered_char[fd] = buf;
2557 #endif /* no FIONREAD */
2559 if (status >= 0 && avail > 0)
2561 FD_SET (fd, rfds);
2562 ravail++;
2567 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
2568 break;
2570 turn_on_atimers (0);
2571 signal (SIGALRM, select_alarm);
2572 select_alarmed = 0;
2573 alarm (SELECT_PAUSE);
2575 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2576 while (select_alarmed == 0 && *local_timeout != 0
2577 && process_tick == update_tick)
2579 /* If we are interested in terminal input,
2580 wait by reading the terminal.
2581 That makes instant wakeup for terminal input at least. */
2582 if (FD_ISSET (0, &orfds))
2584 read_input_waiting ();
2585 if (detect_input_pending ())
2586 select_alarmed = 1;
2588 else
2589 pause ();
2591 (*local_timeout) -= SELECT_PAUSE;
2593 /* Reset the old alarm if there was one. */
2594 turn_on_atimers (1);
2596 if (*local_timeout == 0) /* Stop on timer being cleared */
2597 break;
2599 return ravail;
2601 #endif /* not WINDOWSNT */
2603 /* Read keyboard input into the standard buffer,
2604 waiting for at least one character. */
2606 void
2607 read_input_waiting ()
2609 /* XXX This needs to be updated for multi-tty support. Is there
2610 anybody who needs to emulate select these days? */
2611 int nread, i;
2612 extern int quit_char;
2614 if (read_socket_hook)
2616 struct input_event hold_quit;
2618 EVENT_INIT (hold_quit);
2619 hold_quit.kind = NO_EVENT;
2621 read_alarm_should_throw = 0;
2622 if (! setjmp (read_alarm_throw))
2623 nread = (*read_socket_hook) (0, 1, &hold_quit);
2624 else
2625 nread = -1;
2627 if (hold_quit.kind != NO_EVENT)
2628 kbd_buffer_store_event (&hold_quit);
2630 else
2632 struct input_event e;
2633 char buf[3];
2634 nread = read (fileno (stdin), buf, 1);
2635 EVENT_INIT (e);
2637 /* Scan the chars for C-g and store them in kbd_buffer. */
2638 e.kind = ASCII_KEYSTROKE_EVENT;
2639 e.frame_or_window = selected_frame;
2640 e.modifiers = 0;
2641 for (i = 0; i < nread; i++)
2643 /* Convert chars > 0177 to meta events if desired.
2644 We do this under the same conditions that read_avail_input does. */
2645 if (read_socket_hook == 0)
2647 /* If the user says she has a meta key, then believe her. */
2648 if (meta_key == 1 && (buf[i] & 0x80))
2649 e.modifiers = meta_modifier;
2650 if (meta_key != 2)
2651 buf[i] &= ~0x80;
2654 XSETINT (e.code, buf[i]);
2655 kbd_buffer_store_event (&e);
2656 /* Don't look at input that follows a C-g too closely.
2657 This reduces lossage due to autorepeat on C-g. */
2658 if (buf[i] == quit_char)
2659 break;
2664 #if !defined (HAVE_SELECT)
2665 #define select sys_select
2666 #endif
2668 #endif /* not HAVE_SELECT */
2669 #endif /* not VMS */
2670 #endif /* not MSDOS */
2672 /* POSIX signals support - DJB */
2673 /* Anyone with POSIX signals should have ANSI C declarations */
2675 #ifdef POSIX_SIGNALS
2677 sigset_t empty_mask, full_mask;
2679 signal_handler_t
2680 sys_signal (int signal_number, signal_handler_t action)
2682 struct sigaction new_action, old_action;
2683 sigemptyset (&new_action.sa_mask);
2684 new_action.sa_handler = action;
2685 #if defined (SA_RESTART) && ! defined (BROKEN_SA_RESTART) && !defined(SYNC_INPUT)
2686 /* Emacs mostly works better with restartable system services. If this
2687 flag exists, we probably want to turn it on here.
2688 However, on some systems this resets the timeout of `select'
2689 which means that `select' never finishes if it keeps getting signals.
2690 BROKEN_SA_RESTART is defined on those systems. */
2691 /* It's not clear why the comment above says "mostly works better". --Stef
2692 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
2693 for pending input so we need long-running syscalls to be interrupted
2694 after a signal that sets the interrupt_input_pending flag. */
2695 new_action.sa_flags = SA_RESTART;
2696 #else
2697 new_action.sa_flags = 0;
2698 #endif
2699 sigaction (signal_number, &new_action, &old_action);
2700 return (old_action.sa_handler);
2703 #ifndef __GNUC__
2704 /* If we're compiling with GCC, we don't need this function, since it
2705 can be written as a macro. */
2706 sigset_t
2707 sys_sigmask (int sig)
2709 sigset_t mask;
2710 sigemptyset (&mask);
2711 sigaddset (&mask, sig);
2712 return mask;
2714 #endif
2716 /* I'd like to have these guys return pointers to the mask storage in here,
2717 but there'd be trouble if the code was saving multiple masks. I'll be
2718 safe and pass the structure. It normally won't be more than 2 bytes
2719 anyhow. - DJB */
2721 sigset_t
2722 sys_sigblock (sigset_t new_mask)
2724 sigset_t old_mask;
2725 sigprocmask (SIG_BLOCK, &new_mask, &old_mask);
2726 return (old_mask);
2729 sigset_t
2730 sys_sigunblock (sigset_t new_mask)
2732 sigset_t old_mask;
2733 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask);
2734 return (old_mask);
2737 sigset_t
2738 sys_sigsetmask (sigset_t new_mask)
2740 sigset_t old_mask;
2741 sigprocmask (SIG_SETMASK, &new_mask, &old_mask);
2742 return (old_mask);
2745 #endif /* POSIX_SIGNALS */
2747 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2748 static char *my_sys_siglist[NSIG];
2749 # ifdef sys_siglist
2750 # undef sys_siglist
2751 # endif
2752 # define sys_siglist my_sys_siglist
2753 #endif
2755 void
2756 init_signals ()
2758 #ifdef POSIX_SIGNALS
2759 sigemptyset (&empty_mask);
2760 sigfillset (&full_mask);
2761 #endif
2763 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2764 if (! initialized)
2766 # ifdef SIGABRT
2767 sys_siglist[SIGABRT] = "Aborted";
2768 # endif
2769 # ifdef SIGAIO
2770 sys_siglist[SIGAIO] = "LAN I/O interrupt";
2771 # endif
2772 # ifdef SIGALRM
2773 sys_siglist[SIGALRM] = "Alarm clock";
2774 # endif
2775 # ifdef SIGBUS
2776 sys_siglist[SIGBUS] = "Bus error";
2777 # endif
2778 # ifdef SIGCLD
2779 sys_siglist[SIGCLD] = "Child status changed";
2780 # endif
2781 # ifdef SIGCHLD
2782 sys_siglist[SIGCHLD] = "Child status changed";
2783 # endif
2784 # ifdef SIGCONT
2785 sys_siglist[SIGCONT] = "Continued";
2786 # endif
2787 # ifdef SIGDANGER
2788 sys_siglist[SIGDANGER] = "Swap space dangerously low";
2789 # endif
2790 # ifdef SIGDGNOTIFY
2791 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
2792 # endif
2793 # ifdef SIGEMT
2794 sys_siglist[SIGEMT] = "Emulation trap";
2795 # endif
2796 # ifdef SIGFPE
2797 sys_siglist[SIGFPE] = "Arithmetic exception";
2798 # endif
2799 # ifdef SIGFREEZE
2800 sys_siglist[SIGFREEZE] = "SIGFREEZE";
2801 # endif
2802 # ifdef SIGGRANT
2803 sys_siglist[SIGGRANT] = "Monitor mode granted";
2804 # endif
2805 # ifdef SIGHUP
2806 sys_siglist[SIGHUP] = "Hangup";
2807 # endif
2808 # ifdef SIGILL
2809 sys_siglist[SIGILL] = "Illegal instruction";
2810 # endif
2811 # ifdef SIGINT
2812 sys_siglist[SIGINT] = "Interrupt";
2813 # endif
2814 # ifdef SIGIO
2815 sys_siglist[SIGIO] = "I/O possible";
2816 # endif
2817 # ifdef SIGIOINT
2818 sys_siglist[SIGIOINT] = "I/O intervention required";
2819 # endif
2820 # ifdef SIGIOT
2821 sys_siglist[SIGIOT] = "IOT trap";
2822 # endif
2823 # ifdef SIGKILL
2824 sys_siglist[SIGKILL] = "Killed";
2825 # endif
2826 # ifdef SIGLOST
2827 sys_siglist[SIGLOST] = "Resource lost";
2828 # endif
2829 # ifdef SIGLWP
2830 sys_siglist[SIGLWP] = "SIGLWP";
2831 # endif
2832 # ifdef SIGMSG
2833 sys_siglist[SIGMSG] = "Monitor mode data available";
2834 # endif
2835 # ifdef SIGPHONE
2836 sys_siglist[SIGWIND] = "SIGPHONE";
2837 # endif
2838 # ifdef SIGPIPE
2839 sys_siglist[SIGPIPE] = "Broken pipe";
2840 # endif
2841 # ifdef SIGPOLL
2842 sys_siglist[SIGPOLL] = "Pollable event occurred";
2843 # endif
2844 # ifdef SIGPROF
2845 sys_siglist[SIGPROF] = "Profiling timer expired";
2846 # endif
2847 # ifdef SIGPTY
2848 sys_siglist[SIGPTY] = "PTY I/O interrupt";
2849 # endif
2850 # ifdef SIGPWR
2851 sys_siglist[SIGPWR] = "Power-fail restart";
2852 # endif
2853 # ifdef SIGQUIT
2854 sys_siglist[SIGQUIT] = "Quit";
2855 # endif
2856 # ifdef SIGRETRACT
2857 sys_siglist[SIGRETRACT] = "Need to relinguish monitor mode";
2858 # endif
2859 # ifdef SIGSAK
2860 sys_siglist[SIGSAK] = "Secure attention";
2861 # endif
2862 # ifdef SIGSEGV
2863 sys_siglist[SIGSEGV] = "Segmentation violation";
2864 # endif
2865 # ifdef SIGSOUND
2866 sys_siglist[SIGSOUND] = "Sound completed";
2867 # endif
2868 # ifdef SIGSTOP
2869 sys_siglist[SIGSTOP] = "Stopped (signal)";
2870 # endif
2871 # ifdef SIGSTP
2872 sys_siglist[SIGSTP] = "Stopped (user)";
2873 # endif
2874 # ifdef SIGSYS
2875 sys_siglist[SIGSYS] = "Bad argument to system call";
2876 # endif
2877 # ifdef SIGTERM
2878 sys_siglist[SIGTERM] = "Terminated";
2879 # endif
2880 # ifdef SIGTHAW
2881 sys_siglist[SIGTHAW] = "SIGTHAW";
2882 # endif
2883 # ifdef SIGTRAP
2884 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
2885 # endif
2886 # ifdef SIGTSTP
2887 sys_siglist[SIGTSTP] = "Stopped (user)";
2888 # endif
2889 # ifdef SIGTTIN
2890 sys_siglist[SIGTTIN] = "Stopped (tty input)";
2891 # endif
2892 # ifdef SIGTTOU
2893 sys_siglist[SIGTTOU] = "Stopped (tty output)";
2894 # endif
2895 # ifdef SIGURG
2896 sys_siglist[SIGURG] = "Urgent I/O condition";
2897 # endif
2898 # ifdef SIGUSR1
2899 sys_siglist[SIGUSR1] = "User defined signal 1";
2900 # endif
2901 # ifdef SIGUSR2
2902 sys_siglist[SIGUSR2] = "User defined signal 2";
2903 # endif
2904 # ifdef SIGVTALRM
2905 sys_siglist[SIGVTALRM] = "Virtual timer expired";
2906 # endif
2907 # ifdef SIGWAITING
2908 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
2909 # endif
2910 # ifdef SIGWINCH
2911 sys_siglist[SIGWINCH] = "Window size changed";
2912 # endif
2913 # ifdef SIGWIND
2914 sys_siglist[SIGWIND] = "SIGWIND";
2915 # endif
2916 # ifdef SIGXCPU
2917 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
2918 # endif
2919 # ifdef SIGXFSZ
2920 sys_siglist[SIGXFSZ] = "File size limit exceeded";
2921 # endif
2923 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
2926 #ifndef HAVE_RANDOM
2927 #ifdef random
2928 #define HAVE_RANDOM
2929 #endif
2930 #endif
2932 /* Figure out how many bits the system's random number generator uses.
2933 `random' and `lrand48' are assumed to return 31 usable bits.
2934 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2935 so we'll shift it and treat it like the 15-bit USG `rand'. */
2937 #ifndef RAND_BITS
2938 # ifdef HAVE_RANDOM
2939 # define RAND_BITS 31
2940 # else /* !HAVE_RANDOM */
2941 # ifdef HAVE_LRAND48
2942 # define RAND_BITS 31
2943 # define random lrand48
2944 # else /* !HAVE_LRAND48 */
2945 # define RAND_BITS 15
2946 # if RAND_MAX == 32767
2947 # define random rand
2948 # else /* RAND_MAX != 32767 */
2949 # if RAND_MAX == 2147483647
2950 # define random() (rand () >> 16)
2951 # else /* RAND_MAX != 2147483647 */
2952 # ifdef USG
2953 # define random rand
2954 # else
2955 # define random() (rand () >> 16)
2956 # endif /* !USG */
2957 # endif /* RAND_MAX != 2147483647 */
2958 # endif /* RAND_MAX != 32767 */
2959 # endif /* !HAVE_LRAND48 */
2960 # endif /* !HAVE_RANDOM */
2961 #endif /* !RAND_BITS */
2963 void
2964 seed_random (arg)
2965 long arg;
2967 #ifdef HAVE_RANDOM
2968 srandom ((unsigned int)arg);
2969 #else
2970 # ifdef HAVE_LRAND48
2971 srand48 (arg);
2972 # else
2973 srand ((unsigned int)arg);
2974 # endif
2975 #endif
2979 * Build a full Emacs-sized word out of whatever we've got.
2980 * This suffices even for a 64-bit architecture with a 15-bit rand.
2982 long
2983 get_random ()
2985 long val = random ();
2986 #if VALBITS > RAND_BITS
2987 val = (val << RAND_BITS) ^ random ();
2988 #if VALBITS > 2*RAND_BITS
2989 val = (val << RAND_BITS) ^ random ();
2990 #if VALBITS > 3*RAND_BITS
2991 val = (val << RAND_BITS) ^ random ();
2992 #if VALBITS > 4*RAND_BITS
2993 val = (val << RAND_BITS) ^ random ();
2994 #endif /* need at least 5 */
2995 #endif /* need at least 4 */
2996 #endif /* need at least 3 */
2997 #endif /* need at least 2 */
2998 return val & ((1L << VALBITS) - 1);
3001 #ifdef VMS
3003 #ifdef getenv
3004 /* If any place else asks for the TERM variable,
3005 allow it to be overridden with the EMACS_TERM variable
3006 before attempting to translate the logical name TERM. As a last
3007 resort, ask for VAX C's special idea of the TERM variable. */
3008 #undef getenv
3009 char *
3010 sys_getenv (name)
3011 char *name;
3013 register char *val;
3014 static char buf[256];
3015 static struct dsc$descriptor_s equiv
3016 = {sizeof (buf), DSC$K_DTYPE_T, DSC$K_CLASS_S, buf};
3017 static struct dsc$descriptor_s d_name
3018 = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
3019 short eqlen;
3021 if (!strcmp (name, "TERM"))
3023 val = (char *) getenv ("EMACS_TERM");
3024 if (val)
3025 return val;
3028 d_name.dsc$w_length = strlen (name);
3029 d_name.dsc$a_pointer = name;
3030 if (LIB$SYS_TRNLOG (&d_name, &eqlen, &equiv) == 1)
3032 char *str = (char *) xmalloc (eqlen + 1);
3033 bcopy (buf, str, eqlen);
3034 str[eqlen] = '\0';
3035 /* This is a storage leak, but a pain to fix. With luck,
3036 no one will ever notice. */
3037 return str;
3039 return (char *) getenv (name);
3041 #endif /* getenv */
3043 #ifdef abort
3044 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
3045 to force a call on the debugger from within the image. */
3046 #undef abort
3047 sys_abort ()
3049 reset_all_sys_modes ();
3050 LIB$SIGNAL (SS$_DEBUG);
3052 #endif /* abort */
3053 #endif /* VMS */
3055 #ifdef VMS
3056 #ifdef LINK_CRTL_SHARE
3057 #ifdef SHARABLE_LIB_BUG
3058 /* Variables declared noshare and initialized in sharable libraries
3059 cannot be shared. The VMS linker incorrectly forces you to use a private
3060 version which is uninitialized... If not for this "feature", we
3061 could use the C library definition of sys_nerr and sys_errlist. */
3062 int sys_nerr = 35;
3063 char *sys_errlist[] =
3065 "error 0",
3066 "not owner",
3067 "no such file or directory",
3068 "no such process",
3069 "interrupted system call",
3070 "i/o error",
3071 "no such device or address",
3072 "argument list too long",
3073 "exec format error",
3074 "bad file number",
3075 "no child process",
3076 "no more processes",
3077 "not enough memory",
3078 "permission denied",
3079 "bad address",
3080 "block device required",
3081 "mount devices busy",
3082 "file exists",
3083 "cross-device link",
3084 "no such device",
3085 "not a directory",
3086 "is a directory",
3087 "invalid argument",
3088 "file table overflow",
3089 "too many open files",
3090 "not a typewriter",
3091 "text file busy",
3092 "file too big",
3093 "no space left on device",
3094 "illegal seek",
3095 "read-only file system",
3096 "too many links",
3097 "broken pipe",
3098 "math argument",
3099 "result too large",
3100 "I/O stream empty",
3101 "vax/vms specific error code nontranslatable error"
3103 #endif /* SHARABLE_LIB_BUG */
3104 #endif /* LINK_CRTL_SHARE */
3105 #endif /* VMS */
3107 #ifndef HAVE_STRERROR
3108 #ifndef WINDOWSNT
3109 char *
3110 strerror (errnum)
3111 int errnum;
3113 extern char *sys_errlist[];
3114 extern int sys_nerr;
3116 if (errnum >= 0 && errnum < sys_nerr)
3117 return sys_errlist[errnum];
3118 return (char *) "Unknown error";
3120 #endif /* not WINDOWSNT */
3121 #endif /* ! HAVE_STRERROR */
3124 emacs_open (path, oflag, mode)
3125 const char *path;
3126 int oflag, mode;
3128 register int rtnval;
3130 while ((rtnval = open (path, oflag, mode)) == -1
3131 && (errno == EINTR))
3132 QUIT;
3133 return (rtnval);
3137 emacs_close (fd)
3138 int fd;
3140 int did_retry = 0;
3141 register int rtnval;
3143 #if defined (MAC_OSX) && defined (HAVE_CARBON)
3145 extern int mac_try_close_socket P_ ((int));
3147 if (mac_try_close_socket (fd))
3148 return 0;
3150 #endif
3152 while ((rtnval = close (fd)) == -1
3153 && (errno == EINTR))
3154 did_retry = 1;
3156 /* If close is interrupted SunOS 4.1 may or may not have closed the
3157 file descriptor. If it did the second close will fail with
3158 errno = EBADF. That means we have succeeded. */
3159 if (rtnval == -1 && did_retry && errno == EBADF)
3160 return 0;
3162 return rtnval;
3166 emacs_read (fildes, buf, nbyte)
3167 int fildes;
3168 char *buf;
3169 unsigned int nbyte;
3171 register int rtnval;
3173 while ((rtnval = read (fildes, buf, nbyte)) == -1
3174 && (errno == EINTR))
3175 QUIT;
3176 return (rtnval);
3180 emacs_write (fildes, buf, nbyte)
3181 int fildes;
3182 const char *buf;
3183 unsigned int nbyte;
3185 register int rtnval, bytes_written;
3187 bytes_written = 0;
3189 while (nbyte > 0)
3191 rtnval = write (fildes, buf, nbyte);
3193 if (rtnval == -1)
3195 if (errno == EINTR)
3197 #ifdef SYNC_INPUT
3198 /* I originally used `QUIT' but that might causes files to
3199 be truncated if you hit C-g in the middle of it. --Stef */
3200 if (interrupt_input_pending)
3201 handle_async_input ();
3202 if (pending_atimers)
3203 do_pending_atimers ();
3204 #endif
3205 continue;
3207 else
3208 return (bytes_written ? bytes_written : -1);
3211 buf += rtnval;
3212 nbyte -= rtnval;
3213 bytes_written += rtnval;
3215 return (bytes_written);
3218 #ifdef USG
3220 * All of the following are for USG.
3222 * On USG systems the system calls are INTERRUPTIBLE by signals
3223 * that the user program has elected to catch. Thus the system call
3224 * must be retried in these cases. To handle this without massive
3225 * changes in the source code, we remap the standard system call names
3226 * to names for our own functions in sysdep.c that do the system call
3227 * with retries. Actually, for portability reasons, it is good
3228 * programming practice, as this example shows, to limit all actual
3229 * system calls to a single occurrence in the source. Sure, this
3230 * adds an extra level of function call overhead but it is almost
3231 * always negligible. Fred Fish, Unisoft Systems Inc.
3235 * Warning, this function may not duplicate 4.2 action properly
3236 * under error conditions.
3239 #ifndef MAXPATHLEN
3240 /* In 4.1, param.h fails to define this. */
3241 #define MAXPATHLEN 1024
3242 #endif
3244 #ifndef HAVE_GETWD
3246 char *
3247 getwd (pathname)
3248 char *pathname;
3250 char *npath, *spath;
3251 extern char *getcwd ();
3253 BLOCK_INPUT; /* getcwd uses malloc */
3254 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
3255 if (spath == 0)
3257 UNBLOCK_INPUT;
3258 return spath;
3260 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3261 up to first slash. Should be harmless on other systems. */
3262 while (*npath && *npath != '/')
3263 npath++;
3264 strcpy (pathname, npath);
3265 free (spath); /* getcwd uses malloc */
3266 UNBLOCK_INPUT;
3267 return pathname;
3270 #endif /* HAVE_GETWD */
3273 * Emulate rename using unlink/link. Note that this is
3274 * only partially correct. Also, doesn't enforce restriction
3275 * that files be of same type (regular->regular, dir->dir, etc).
3278 #ifndef HAVE_RENAME
3280 rename (from, to)
3281 const char *from;
3282 const char *to;
3284 if (access (from, 0) == 0)
3286 unlink (to);
3287 if (link (from, to) == 0)
3288 if (unlink (from) == 0)
3289 return (0);
3291 return (-1);
3294 #endif
3297 #ifdef HPUX
3298 #ifndef HAVE_PERROR
3300 /* HPUX curses library references perror, but as far as we know
3301 it won't be called. Anyway this definition will do for now. */
3303 perror ()
3307 #endif /* not HAVE_PERROR */
3308 #endif /* HPUX */
3310 #ifndef HAVE_DUP2
3313 * Emulate BSD dup2. First close newd if it already exists.
3314 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3315 * until we are, then close the unsuccessful ones.
3318 dup2 (oldd, newd)
3319 int oldd;
3320 int newd;
3322 register int fd, ret;
3324 emacs_close (newd);
3326 #ifdef F_DUPFD
3327 return fcntl (oldd, F_DUPFD, newd);
3328 #else
3329 fd = dup (old);
3330 if (fd == -1)
3331 return -1;
3332 if (fd == new)
3333 return new;
3334 ret = dup2 (old,new);
3335 emacs_close (fd);
3336 return ret;
3337 #endif
3340 #endif /* not HAVE_DUP2 */
3343 * Gettimeofday. Simulate as much as possible. Only accurate
3344 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3345 * Only needed when subprocesses are defined.
3348 #ifdef subprocesses
3349 #ifndef VMS
3350 #ifndef HAVE_GETTIMEOFDAY
3351 #ifdef HAVE_TIMEVAL
3353 /* ARGSUSED */
3355 gettimeofday (tp, tzp)
3356 struct timeval *tp;
3357 struct timezone *tzp;
3359 extern long time ();
3361 tp->tv_sec = time ((long *)0);
3362 tp->tv_usec = 0;
3363 if (tzp != 0)
3364 tzp->tz_minuteswest = -1;
3365 return 0;
3368 #endif
3369 #endif
3370 #endif
3371 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3374 * This function will go away as soon as all the stubs fixed. (fnf)
3377 void
3378 croak (badfunc)
3379 char *badfunc;
3381 printf ("%s not yet implemented\r\n", badfunc);
3382 reset_all_sys_modes ();
3383 exit (1);
3386 #endif /* USG */
3388 /* Directory routines for systems that don't have them. */
3390 #ifdef SYSV_SYSTEM_DIR
3392 #include <dirent.h>
3394 #if defined (BROKEN_CLOSEDIR) || !defined (HAVE_CLOSEDIR)
3397 closedir (dirp)
3398 register DIR *dirp; /* stream from opendir */
3400 int rtnval;
3402 rtnval = emacs_close (dirp->dd_fd);
3404 /* Some systems (like Solaris) allocate the buffer and the DIR all
3405 in one block. Why in the world are we freeing this ourselves
3406 anyway? */
3407 #if ! (defined (sun) && defined (USG5_4))
3408 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
3409 #endif
3410 xfree ((char *) dirp);
3412 return rtnval;
3414 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3415 #endif /* SYSV_SYSTEM_DIR */
3417 #ifdef NONSYSTEM_DIR_LIBRARY
3419 DIR *
3420 opendir (filename)
3421 char *filename; /* name of directory */
3423 register DIR *dirp; /* -> malloc'ed storage */
3424 register int fd; /* file descriptor for read */
3425 struct stat sbuf; /* result of fstat */
3427 fd = emacs_open (filename, O_RDONLY, 0);
3428 if (fd < 0)
3429 return 0;
3431 BLOCK_INPUT;
3432 if (fstat (fd, &sbuf) < 0
3433 || (sbuf.st_mode & S_IFMT) != S_IFDIR
3434 || (dirp = (DIR *) xmalloc (sizeof (DIR))) == 0)
3436 emacs_close (fd);
3437 UNBLOCK_INPUT;
3438 return 0; /* bad luck today */
3440 UNBLOCK_INPUT;
3442 dirp->dd_fd = fd;
3443 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */
3445 return dirp;
3448 void
3449 closedir (dirp)
3450 register DIR *dirp; /* stream from opendir */
3452 emacs_close (dirp->dd_fd);
3453 xfree ((char *) dirp);
3457 #ifndef VMS
3458 #define DIRSIZ 14
3459 struct olddir
3461 ino_t od_ino; /* inode */
3462 char od_name[DIRSIZ]; /* filename */
3464 #endif /* not VMS */
3466 struct direct dir_static; /* simulated directory contents */
3468 /* ARGUSED */
3469 struct direct *
3470 readdir (dirp)
3471 register DIR *dirp; /* stream from opendir */
3473 #ifndef VMS
3474 register struct olddir *dp; /* -> directory data */
3475 #else /* VMS */
3476 register struct dir$_name *dp; /* -> directory data */
3477 register struct dir$_version *dv; /* -> version data */
3478 #endif /* VMS */
3480 for (; ;)
3482 if (dirp->dd_loc >= dirp->dd_size)
3483 dirp->dd_loc = dirp->dd_size = 0;
3485 if (dirp->dd_size == 0 /* refill buffer */
3486 && (dirp->dd_size = emacs_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3487 return 0;
3489 #ifndef VMS
3490 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
3491 dirp->dd_loc += sizeof (struct olddir);
3493 if (dp->od_ino != 0) /* not deleted entry */
3495 dir_static.d_ino = dp->od_ino;
3496 strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
3497 dir_static.d_name[DIRSIZ] = '\0';
3498 dir_static.d_namlen = strlen (dir_static.d_name);
3499 dir_static.d_reclen = sizeof (struct direct)
3500 - MAXNAMLEN + 3
3501 + dir_static.d_namlen - dir_static.d_namlen % 4;
3502 return &dir_static; /* -> simulated structure */
3504 #else /* VMS */
3505 dp = (struct dir$_name *) dirp->dd_buf;
3506 if (dirp->dd_loc == 0)
3507 dirp->dd_loc = (dp->dir$b_namecount&1) ? dp->dir$b_namecount + 1
3508 : dp->dir$b_namecount;
3509 dv = (struct dir$_version *)&dp->dir$t_name[dirp->dd_loc];
3510 dir_static.d_ino = dv->dir$w_fid_num;
3511 dir_static.d_namlen = dp->dir$b_namecount;
3512 dir_static.d_reclen = sizeof (struct direct)
3513 - MAXNAMLEN + 3
3514 + dir_static.d_namlen - dir_static.d_namlen % 4;
3515 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3516 dir_static.d_name[dir_static.d_namlen] = '\0';
3517 dirp->dd_loc = dirp->dd_size; /* only one record at a time */
3518 return &dir_static;
3519 #endif /* VMS */
3523 #ifdef VMS
3524 /* readdirver is just like readdir except it returns all versions of a file
3525 as separate entries. */
3527 /* ARGUSED */
3528 struct direct *
3529 readdirver (dirp)
3530 register DIR *dirp; /* stream from opendir */
3532 register struct dir$_name *dp; /* -> directory data */
3533 register struct dir$_version *dv; /* -> version data */
3535 if (dirp->dd_loc >= dirp->dd_size - sizeof (struct dir$_name))
3536 dirp->dd_loc = dirp->dd_size = 0;
3538 if (dirp->dd_size == 0 /* refill buffer */
3539 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
3540 return 0;
3542 dp = (struct dir$_name *) dirp->dd_buf;
3543 if (dirp->dd_loc == 0)
3544 dirp->dd_loc = (dp->dir$b_namecount & 1) ? dp->dir$b_namecount + 1
3545 : dp->dir$b_namecount;
3546 dv = (struct dir$_version *) &dp->dir$t_name[dirp->dd_loc];
3547 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
3548 sprintf (&dir_static.d_name[dp->dir$b_namecount], ";%d", dv->dir$w_version);
3549 dir_static.d_namlen = strlen (dir_static.d_name);
3550 dir_static.d_ino = dv->dir$w_fid_num;
3551 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3
3552 + dir_static.d_namlen - dir_static.d_namlen % 4;
3553 dirp->dd_loc = ((char *) (++dv) - dp->dir$t_name);
3554 return &dir_static;
3557 #endif /* VMS */
3559 #endif /* NONSYSTEM_DIR_LIBRARY */
3563 set_file_times (filename, atime, mtime)
3564 const char *filename;
3565 EMACS_TIME atime, mtime;
3567 #ifdef HAVE_UTIMES
3568 struct timeval tv[2];
3569 tv[0] = atime;
3570 tv[1] = mtime;
3571 return utimes (filename, tv);
3572 #else /* not HAVE_UTIMES */
3573 struct utimbuf utb;
3574 utb.actime = EMACS_SECS (atime);
3575 utb.modtime = EMACS_SECS (mtime);
3576 return utime (filename, &utb);
3577 #endif /* not HAVE_UTIMES */
3580 /* mkdir and rmdir functions, for systems which don't have them. */
3582 #ifndef HAVE_MKDIR
3584 * Written by Robert Rother, Mariah Corporation, August 1985.
3586 * If you want it, it's yours. All I ask in return is that if you
3587 * figure out how to do this in a Bourne Shell script you send me
3588 * a copy.
3589 * sdcsvax!rmr or rmr@uscd
3591 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3592 * subroutine. 11Mar86; hoptoad!gnu
3594 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3595 * subroutine didn't return EEXIST. It does now.
3599 * Make a directory.
3601 #ifdef MKDIR_PROTOTYPE
3602 MKDIR_PROTOTYPE
3603 #else
3605 mkdir (dpath, dmode)
3606 char *dpath;
3607 int dmode;
3608 #endif
3610 int cpid, status, fd;
3611 struct stat statbuf;
3613 if (stat (dpath, &statbuf) == 0)
3615 errno = EEXIST; /* Stat worked, so it already exists */
3616 return -1;
3619 /* If stat fails for a reason other than non-existence, return error */
3620 if (errno != ENOENT)
3621 return -1;
3623 synch_process_alive = 1;
3624 switch (cpid = fork ())
3627 case -1: /* Error in fork */
3628 return (-1); /* Errno is set already */
3630 case 0: /* Child process */
3632 * Cheap hack to set mode of new directory. Since this
3633 * child process is going away anyway, we zap its umask.
3634 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3635 * directory. Does anybody care?
3637 status = umask (0); /* Get current umask */
3638 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
3639 fd = emacs_open ("/dev/null", O_RDWR, 0);
3640 if (fd >= 0)
3642 dup2 (fd, 0);
3643 dup2 (fd, 1);
3644 dup2 (fd, 2);
3646 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
3647 _exit (-1); /* Can't exec /bin/mkdir */
3649 default: /* Parent process */
3650 wait_for_termination (cpid);
3653 if (synch_process_death != 0 || synch_process_retcode != 0
3654 || synch_process_termsig != 0)
3656 errno = EIO; /* We don't know why, but */
3657 return -1; /* /bin/mkdir failed */
3660 return 0;
3662 #endif /* not HAVE_MKDIR */
3664 #ifndef HAVE_RMDIR
3666 rmdir (dpath)
3667 char *dpath;
3669 int cpid, status, fd;
3670 struct stat statbuf;
3672 if (stat (dpath, &statbuf) != 0)
3674 /* Stat just set errno. We don't have to */
3675 return -1;
3678 synch_process_alive = 1;
3679 switch (cpid = fork ())
3682 case -1: /* Error in fork */
3683 return (-1); /* Errno is set already */
3685 case 0: /* Child process */
3686 fd = emacs_open ("/dev/null", O_RDWR, 0);
3687 if (fd >= 0)
3689 dup2 (fd, 0);
3690 dup2 (fd, 1);
3691 dup2 (fd, 2);
3693 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
3694 _exit (-1); /* Can't exec /bin/rmdir */
3696 default: /* Parent process */
3697 wait_for_termination (cpid);
3700 if (synch_process_death != 0 || synch_process_retcode != 0
3701 || synch_process_termsig != 0)
3703 errno = EIO; /* We don't know why, but */
3704 return -1; /* /bin/rmdir failed */
3707 return 0;
3709 #endif /* !HAVE_RMDIR */
3713 /* Functions for VMS */
3714 #ifdef VMS
3715 #include <acldef.h>
3716 #include <chpdef.h>
3717 #include <jpidef.h>
3719 /* Return as a string the VMS error string pertaining to STATUS.
3720 Reuses the same static buffer each time it is called. */
3722 char *
3723 vmserrstr (status)
3724 int status; /* VMS status code */
3726 int bufadr[2];
3727 short len;
3728 static char buf[257];
3730 bufadr[0] = sizeof buf - 1;
3731 bufadr[1] = (int) buf;
3732 if (! (SYS$GETMSG (status, &len, bufadr, 0x1, 0) & 1))
3733 return "untranslatable VMS error status";
3734 buf[len] = '\0';
3735 return buf;
3738 #ifdef access
3739 #undef access
3741 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3742 * not work correctly. (It also doesn't work well in version 2.3.)
3745 #ifdef VMS4_4
3747 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3748 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3750 typedef union {
3751 struct {
3752 unsigned short s_buflen;
3753 unsigned short s_code;
3754 char *s_bufadr;
3755 unsigned short *s_retlenadr;
3756 } s;
3757 int end;
3758 } item;
3759 #define buflen s.s_buflen
3760 #define code s.s_code
3761 #define bufadr s.s_bufadr
3762 #define retlenadr s.s_retlenadr
3764 #define R_OK 4 /* test for read permission */
3765 #define W_OK 2 /* test for write permission */
3766 #define X_OK 1 /* test for execute (search) permission */
3767 #define F_OK 0 /* test for presence of file */
3770 sys_access (path, mode)
3771 char *path;
3772 int mode;
3774 static char *user = NULL;
3775 char dir_fn[512];
3777 /* translate possible directory spec into .DIR file name, so brain-dead
3778 * access can treat the directory like a file. */
3779 if (directory_file_name (path, dir_fn))
3780 path = dir_fn;
3782 if (mode == F_OK)
3783 return access (path, mode);
3784 if (user == NULL && (user = (char *) getenv ("USER")) == NULL)
3785 return -1;
3787 int stat;
3788 int flags;
3789 int acces;
3790 unsigned short int dummy;
3791 item itemlst[3];
3792 static int constant = ACL$C_FILE;
3793 DESCRIPTOR (path_desc, path);
3794 DESCRIPTOR (user_desc, user);
3796 flags = 0;
3797 acces = 0;
3798 if ((mode & X_OK) && ((stat = access (path, mode)) < 0 || mode == X_OK))
3799 return stat;
3800 if (mode & R_OK)
3801 acces |= CHP$M_READ;
3802 if (mode & W_OK)
3803 acces |= CHP$M_WRITE;
3804 itemlst[0].buflen = sizeof (int);
3805 itemlst[0].code = CHP$_FLAGS;
3806 itemlst[0].bufadr = (char *) &flags;
3807 itemlst[0].retlenadr = &dummy;
3808 itemlst[1].buflen = sizeof (int);
3809 itemlst[1].code = CHP$_ACCESS;
3810 itemlst[1].bufadr = (char *) &acces;
3811 itemlst[1].retlenadr = &dummy;
3812 itemlst[2].end = CHP$_END;
3813 stat = SYS$CHECK_ACCESS (&constant, &path_desc, &user_desc, itemlst);
3814 return stat == SS$_NORMAL ? 0 : -1;
3818 #else /* not VMS4_4 */
3820 #include <prvdef.h>
3821 #define ACE$M_WRITE 2
3822 #define ACE$C_KEYID 1
3824 static unsigned short memid, grpid;
3825 static unsigned int uic;
3827 /* Called from init_sys_modes, so it happens not very often
3828 but at least each time Emacs is loaded. */
3829 void
3830 sys_access_reinit ()
3832 uic = 0;
3836 sys_access (filename, type)
3837 char * filename;
3838 int type;
3840 struct FAB fab;
3841 struct XABPRO xab;
3842 int status, size, i, typecode, acl_controlled;
3843 unsigned int *aclptr, *aclend, aclbuf[60];
3844 union prvdef prvmask;
3846 /* Get UIC and GRP values for protection checking. */
3847 if (uic == 0)
3849 status = LIB$GETJPI (&JPI$_UIC, 0, 0, &uic, 0, 0);
3850 if (! (status & 1))
3851 return -1;
3852 memid = uic & 0xFFFF;
3853 grpid = uic >> 16;
3856 if (type != 2) /* not checking write access */
3857 return access (filename, type);
3859 /* Check write protection. */
3861 #define CHECKPRIV(bit) (prvmask.bit)
3862 #define WRITABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
3864 /* Find privilege bits */
3865 status = SYS$SETPRV (0, 0, 0, prvmask);
3866 if (! (status & 1))
3867 error ("Unable to find privileges: %s", vmserrstr (status));
3868 if (CHECKPRIV (PRV$V_BYPASS))
3869 return 0; /* BYPASS enabled */
3870 fab = cc$rms_fab;
3871 fab.fab$b_fac = FAB$M_GET;
3872 fab.fab$l_fna = filename;
3873 fab.fab$b_fns = strlen (filename);
3874 fab.fab$l_xab = &xab;
3875 xab = cc$rms_xabpro;
3876 xab.xab$l_aclbuf = aclbuf;
3877 xab.xab$w_aclsiz = sizeof (aclbuf);
3878 status = SYS$OPEN (&fab, 0, 0);
3879 if (! (status & 1))
3880 return -1;
3881 SYS$CLOSE (&fab, 0, 0);
3882 /* Check system access */
3883 if (CHECKPRIV (PRV$V_SYSPRV) && WRITABLE (XAB$V_SYS))
3884 return 0;
3885 /* Check ACL entries, if any */
3886 acl_controlled = 0;
3887 if (xab.xab$w_acllen > 0)
3889 aclptr = aclbuf;
3890 aclend = &aclbuf[xab.xab$w_acllen / 4];
3891 while (*aclptr && aclptr < aclend)
3893 size = (*aclptr & 0xff) / 4;
3894 typecode = (*aclptr >> 8) & 0xff;
3895 if (typecode == ACE$C_KEYID)
3896 for (i = size - 1; i > 1; i--)
3897 if (aclptr[i] == uic)
3899 acl_controlled = 1;
3900 if (aclptr[1] & ACE$M_WRITE)
3901 return 0; /* Write access through ACL */
3903 aclptr = &aclptr[size];
3905 if (acl_controlled) /* ACL specified, prohibits write access */
3906 return -1;
3908 /* No ACL entries specified, check normal protection */
3909 if (WRITABLE (XAB$V_WLD)) /* World writable */
3910 return 0;
3911 if (WRITABLE (XAB$V_GRP) &&
3912 (unsigned short) (xab.xab$l_uic >> 16) == grpid)
3913 return 0; /* Group writable */
3914 if (WRITABLE (XAB$V_OWN) &&
3915 (xab.xab$l_uic & 0xFFFF) == memid)
3916 return 0; /* Owner writable */
3918 return -1; /* Not writable */
3920 #endif /* not VMS4_4 */
3921 #endif /* access */
3923 static char vtbuf[NAM$C_MAXRSS+1];
3925 /* translate a vms file spec to a unix path */
3926 char *
3927 sys_translate_vms (vfile)
3928 char * vfile;
3930 char * p;
3931 char * targ;
3933 if (!vfile)
3934 return 0;
3936 targ = vtbuf;
3938 /* leading device or logical name is a root directory */
3939 if (p = strchr (vfile, ':'))
3941 *targ++ = '/';
3942 while (vfile < p)
3943 *targ++ = *vfile++;
3944 vfile++;
3945 *targ++ = '/';
3947 p = vfile;
3948 if (*p == '[' || *p == '<')
3950 while (*++vfile != *p + 2)
3951 switch (*vfile)
3953 case '.':
3954 if (vfile[-1] == *p)
3955 *targ++ = '.';
3956 *targ++ = '/';
3957 break;
3959 case '-':
3960 *targ++ = '.';
3961 *targ++ = '.';
3962 break;
3964 default:
3965 *targ++ = *vfile;
3966 break;
3968 vfile++;
3969 *targ++ = '/';
3971 while (*vfile)
3972 *targ++ = *vfile++;
3974 return vtbuf;
3977 static char utbuf[NAM$C_MAXRSS+1];
3979 /* translate a unix path to a VMS file spec */
3980 char *
3981 sys_translate_unix (ufile)
3982 char * ufile;
3984 int slash_seen = 0;
3985 char *p;
3986 char * targ;
3988 if (!ufile)
3989 return 0;
3991 targ = utbuf;
3993 if (*ufile == '/')
3995 ufile++;
3998 while (*ufile)
4000 switch (*ufile)
4002 case '/':
4003 if (slash_seen)
4004 if (index (&ufile[1], '/'))
4005 *targ++ = '.';
4006 else
4007 *targ++ = ']';
4008 else
4010 *targ++ = ':';
4011 if (index (&ufile[1], '/'))
4012 *targ++ = '[';
4013 slash_seen = 1;
4015 break;
4017 case '.':
4018 if (strncmp (ufile, "./", 2) == 0)
4020 if (!slash_seen)
4022 *targ++ = '[';
4023 slash_seen = 1;
4025 ufile++; /* skip the dot */
4026 if (index (&ufile[1], '/'))
4027 *targ++ = '.';
4028 else
4029 *targ++ = ']';
4031 else if (strncmp (ufile, "../", 3) == 0)
4033 if (!slash_seen)
4035 *targ++ = '[';
4036 slash_seen = 1;
4038 *targ++ = '-';
4039 ufile += 2; /* skip the dots */
4040 if (index (&ufile[1], '/'))
4041 *targ++ = '.';
4042 else
4043 *targ++ = ']';
4045 else
4046 *targ++ = *ufile;
4047 break;
4049 default:
4050 *targ++ = *ufile;
4051 break;
4053 ufile++;
4055 *targ = '\0';
4057 return utbuf;
4060 char *
4061 getwd (pathname)
4062 char *pathname;
4064 char *ptr, *val;
4065 extern char *getcwd ();
4067 #define MAXPATHLEN 1024
4069 ptr = xmalloc (MAXPATHLEN);
4070 val = getcwd (ptr, MAXPATHLEN);
4071 if (val == 0)
4073 xfree (ptr);
4074 return val;
4076 strcpy (pathname, ptr);
4077 xfree (ptr);
4079 return pathname;
4083 getppid ()
4085 long item_code = JPI$_OWNER;
4086 unsigned long parent_id;
4087 int status;
4089 if (((status = LIB$GETJPI (&item_code, 0, 0, &parent_id)) & 1) == 0)
4091 errno = EVMSERR;
4092 vaxc$errno = status;
4093 return -1;
4095 return parent_id;
4098 #undef getuid
4099 unsigned
4100 sys_getuid ()
4102 return (getgid () << 16) | getuid ();
4105 #undef read
4107 sys_read (fildes, buf, nbyte)
4108 int fildes;
4109 char *buf;
4110 unsigned int nbyte;
4112 return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE));
4115 #if 0
4117 sys_write (fildes, buf, nbyte)
4118 int fildes;
4119 char *buf;
4120 unsigned int nbyte;
4122 register int nwrote, rtnval = 0;
4124 while (nbyte > MAXIOSIZE && (nwrote = write (fildes, buf, MAXIOSIZE)) > 0) {
4125 nbyte -= nwrote;
4126 buf += nwrote;
4127 rtnval += nwrote;
4129 if (nwrote < 0)
4130 return rtnval ? rtnval : -1;
4131 if ((nwrote = write (fildes, buf, nbyte)) < 0)
4132 return rtnval ? rtnval : -1;
4133 return (rtnval + nwrote);
4135 #endif /* 0 */
4138 * VAX/VMS VAX C RTL really loses. It insists that records
4139 * end with a newline (carriage return) character, and if they
4140 * don't it adds one (nice of it isn't it!)
4142 * Thus we do this stupidity below.
4145 #undef write
4147 sys_write (fildes, buf, nbytes)
4148 int fildes;
4149 char *buf;
4150 unsigned int nbytes;
4152 register char *p;
4153 register char *e;
4154 int sum = 0;
4155 struct stat st;
4157 fstat (fildes, &st);
4158 p = buf;
4159 while (nbytes > 0)
4161 int len, retval;
4163 /* Handle fixed-length files with carriage control. */
4164 if (st.st_fab_rfm == FAB$C_FIX
4165 && ((st.st_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
4167 len = st.st_fab_mrs;
4168 retval = write (fildes, p, min (len, nbytes));
4169 if (retval != len)
4170 return -1;
4171 retval++; /* This skips the implied carriage control */
4173 else
4175 e = p + min (MAXIOSIZE, nbytes) - 1;
4176 while (*e != '\n' && e > p) e--;
4177 if (p == e) /* Ok.. so here we add a newline... sigh. */
4178 e = p + min (MAXIOSIZE, nbytes) - 1;
4179 len = e + 1 - p;
4180 retval = write (fildes, p, len);
4181 if (retval != len)
4182 return -1;
4184 p += retval;
4185 sum += retval;
4186 nbytes -= retval;
4188 return sum;
4191 /* Create file NEW copying its attributes from file OLD. If
4192 OLD is 0 or does not exist, create based on the value of
4193 vms_stmlf_recfm. */
4195 /* Protection value the file should ultimately have.
4196 Set by create_copy_attrs, and use by rename_sansversions. */
4197 static unsigned short int fab_final_pro;
4200 creat_copy_attrs (old, new)
4201 char *old, *new;
4203 struct FAB fab = cc$rms_fab;
4204 struct XABPRO xabpro;
4205 char aclbuf[256]; /* Choice of size is arbitrary. See below. */
4206 extern int vms_stmlf_recfm;
4208 if (old)
4210 fab.fab$b_fac = FAB$M_GET;
4211 fab.fab$l_fna = old;
4212 fab.fab$b_fns = strlen (old);
4213 fab.fab$l_xab = (char *) &xabpro;
4214 xabpro = cc$rms_xabpro;
4215 xabpro.xab$l_aclbuf = aclbuf;
4216 xabpro.xab$w_aclsiz = sizeof aclbuf;
4217 /* Call $OPEN to fill in the fab & xabpro fields. */
4218 if (SYS$OPEN (&fab, 0, 0) & 1)
4220 SYS$CLOSE (&fab, 0, 0);
4221 fab.fab$l_alq = 0; /* zero the allocation quantity */
4222 if (xabpro.xab$w_acllen > 0)
4224 if (xabpro.xab$w_acllen > sizeof aclbuf)
4225 /* If the acl buffer was too short, redo open with longer one.
4226 Wouldn't need to do this if there were some system imposed
4227 limit on the size of an ACL, but I can't find any such. */
4229 xabpro.xab$l_aclbuf = (char *) alloca (xabpro.xab$w_acllen);
4230 xabpro.xab$w_aclsiz = xabpro.xab$w_acllen;
4231 if (SYS$OPEN (&fab, 0, 0) & 1)
4232 SYS$CLOSE (&fab, 0, 0);
4233 else
4234 old = 0;
4237 else
4238 xabpro.xab$l_aclbuf = 0;
4240 else
4241 old = 0;
4243 fab.fab$l_fna = new;
4244 fab.fab$b_fns = strlen (new);
4245 if (!old)
4247 fab.fab$l_xab = 0;
4248 fab.fab$b_rfm = vms_stmlf_recfm ? FAB$C_STMLF : FAB$C_VAR;
4249 fab.fab$b_rat = FAB$M_CR;
4252 /* Set the file protections such that we will be able to manipulate
4253 this file. Once we are done writing and renaming it, we will set
4254 the protections back. */
4255 if (old)
4256 fab_final_pro = xabpro.xab$w_pro;
4257 else
4258 SYS$SETDFPROT (0, &fab_final_pro);
4259 xabpro.xab$w_pro &= 0xff0f; /* set O:rewd for now. This is set back later. */
4261 /* Create the new file with either default attrs or attrs copied
4262 from old file. */
4263 if (!(SYS$CREATE (&fab, 0, 0) & 1))
4264 return -1;
4265 SYS$CLOSE (&fab, 0, 0);
4266 /* As this is a "replacement" for creat, return a file descriptor
4267 opened for writing. */
4268 return open (new, O_WRONLY);
4271 #ifdef creat
4272 #undef creat
4273 #include <varargs.h>
4274 #ifdef __GNUC__
4275 #ifndef va_count
4276 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4277 #endif
4278 #endif
4281 sys_creat (va_alist)
4282 va_dcl
4284 va_list list_incrementer;
4285 char *name;
4286 int mode;
4287 int rfd; /* related file descriptor */
4288 int fd; /* Our new file descriptor */
4289 int count;
4290 struct stat st_buf;
4291 char rfm[12];
4292 char rat[15];
4293 char mrs[13];
4294 char fsz[13];
4295 extern int vms_stmlf_recfm;
4297 va_count (count);
4298 va_start (list_incrementer);
4299 name = va_arg (list_incrementer, char *);
4300 mode = va_arg (list_incrementer, int);
4301 if (count > 2)
4302 rfd = va_arg (list_incrementer, int);
4303 va_end (list_incrementer);
4304 if (count > 2)
4306 /* Use information from the related file descriptor to set record
4307 format of the newly created file. */
4308 fstat (rfd, &st_buf);
4309 switch (st_buf.st_fab_rfm)
4311 case FAB$C_FIX:
4312 strcpy (rfm, "rfm = fix");
4313 sprintf (mrs, "mrs = %d", st_buf.st_fab_mrs);
4314 strcpy (rat, "rat = ");
4315 if (st_buf.st_fab_rat & FAB$M_CR)
4316 strcat (rat, "cr");
4317 else if (st_buf.st_fab_rat & FAB$M_FTN)
4318 strcat (rat, "ftn");
4319 else if (st_buf.st_fab_rat & FAB$M_PRN)
4320 strcat (rat, "prn");
4321 if (st_buf.st_fab_rat & FAB$M_BLK)
4322 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4323 strcat (rat, ", blk");
4324 else
4325 strcat (rat, "blk");
4326 return creat (name, 0, rfm, rat, mrs);
4328 case FAB$C_VFC:
4329 strcpy (rfm, "rfm = vfc");
4330 sprintf (fsz, "fsz = %d", st_buf.st_fab_fsz);
4331 strcpy (rat, "rat = ");
4332 if (st_buf.st_fab_rat & FAB$M_CR)
4333 strcat (rat, "cr");
4334 else if (st_buf.st_fab_rat & FAB$M_FTN)
4335 strcat (rat, "ftn");
4336 else if (st_buf.st_fab_rat & FAB$M_PRN)
4337 strcat (rat, "prn");
4338 if (st_buf.st_fab_rat & FAB$M_BLK)
4339 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4340 strcat (rat, ", blk");
4341 else
4342 strcat (rat, "blk");
4343 return creat (name, 0, rfm, rat, fsz);
4345 case FAB$C_STM:
4346 strcpy (rfm, "rfm = stm");
4347 break;
4349 case FAB$C_STMCR:
4350 strcpy (rfm, "rfm = stmcr");
4351 break;
4353 case FAB$C_STMLF:
4354 strcpy (rfm, "rfm = stmlf");
4355 break;
4357 case FAB$C_UDF:
4358 strcpy (rfm, "rfm = udf");
4359 break;
4361 case FAB$C_VAR:
4362 strcpy (rfm, "rfm = var");
4363 break;
4365 strcpy (rat, "rat = ");
4366 if (st_buf.st_fab_rat & FAB$M_CR)
4367 strcat (rat, "cr");
4368 else if (st_buf.st_fab_rat & FAB$M_FTN)
4369 strcat (rat, "ftn");
4370 else if (st_buf.st_fab_rat & FAB$M_PRN)
4371 strcat (rat, "prn");
4372 if (st_buf.st_fab_rat & FAB$M_BLK)
4373 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
4374 strcat (rat, ", blk");
4375 else
4376 strcat (rat, "blk");
4378 else
4380 strcpy (rfm, vms_stmlf_recfm ? "rfm = stmlf" : "rfm=var");
4381 strcpy (rat, "rat=cr");
4383 /* Until the VAX C RTL fixes the many bugs with modes, always use
4384 mode 0 to get the user's default protection. */
4385 fd = creat (name, 0, rfm, rat);
4386 if (fd < 0 && errno == EEXIST)
4388 if (unlink (name) < 0)
4389 report_file_error ("delete", build_string (name));
4390 fd = creat (name, 0, rfm, rat);
4392 return fd;
4394 #endif /* creat */
4396 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4398 sys_fwrite (ptr, size, num, fp)
4399 register char * ptr;
4400 FILE * fp;
4402 register int tot = num * size;
4404 while (tot--)
4405 fputc (*ptr++, fp);
4406 return num;
4410 * The VMS C library routine creat actually creates a new version of an
4411 * existing file rather than truncating the old version. There are times
4412 * when this is not the desired behavior, for instance, when writing an
4413 * auto save file (you only want one version), or when you don't have
4414 * write permission in the directory containing the file (but the file
4415 * itself is writable). Hence this routine, which is equivalent to
4416 * "close (creat (fn, 0));" on Unix if fn already exists.
4419 vms_truncate (fn)
4420 char *fn;
4422 struct FAB xfab = cc$rms_fab;
4423 struct RAB xrab = cc$rms_rab;
4424 int status;
4426 xfab.fab$l_fop = FAB$M_TEF; /* free allocated but unused blocks on close */
4427 xfab.fab$b_fac = FAB$M_TRN | FAB$M_GET; /* allow truncate and get access */
4428 xfab.fab$b_shr = FAB$M_NIL; /* allow no sharing - file must be locked */
4429 xfab.fab$l_fna = fn;
4430 xfab.fab$b_fns = strlen (fn);
4431 xfab.fab$l_dna = ";0"; /* default to latest version of the file */
4432 xfab.fab$b_dns = 2;
4433 xrab.rab$l_fab = &xfab;
4435 /* This gibberish opens the file, positions to the first record, and
4436 deletes all records from there until the end of file. */
4437 if ((SYS$OPEN (&xfab) & 01) == 01)
4439 if ((SYS$CONNECT (&xrab) & 01) == 01 &&
4440 (SYS$FIND (&xrab) & 01) == 01 &&
4441 (SYS$TRUNCATE (&xrab) & 01) == 01)
4442 status = 0;
4443 else
4444 status = -1;
4446 else
4447 status = -1;
4448 SYS$CLOSE (&xfab);
4449 return status;
4452 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4453 SYSPRV or a readable SYSUAF.DAT. */
4455 #ifdef READ_SYSUAF
4457 * getuaf.c
4459 * Routine to read the VMS User Authorization File and return
4460 * a specific user's record.
4463 static struct UAF retuaf;
4465 struct UAF *
4466 get_uaf_name (uname)
4467 char * uname;
4469 register status;
4470 struct FAB uaf_fab;
4471 struct RAB uaf_rab;
4473 uaf_fab = cc$rms_fab;
4474 uaf_rab = cc$rms_rab;
4475 /* initialize fab fields */
4476 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4477 uaf_fab.fab$b_fns = 21;
4478 uaf_fab.fab$b_fac = FAB$M_GET;
4479 uaf_fab.fab$b_org = FAB$C_IDX;
4480 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4481 /* initialize rab fields */
4482 uaf_rab.rab$l_fab = &uaf_fab;
4483 /* open the User Authorization File */
4484 status = SYS$OPEN (&uaf_fab);
4485 if (!(status&1))
4487 errno = EVMSERR;
4488 vaxc$errno = status;
4489 return 0;
4491 status = SYS$CONNECT (&uaf_rab);
4492 if (!(status&1))
4494 errno = EVMSERR;
4495 vaxc$errno = status;
4496 return 0;
4498 /* read the requested record - index is in uname */
4499 uaf_rab.rab$l_kbf = uname;
4500 uaf_rab.rab$b_ksz = strlen (uname);
4501 uaf_rab.rab$b_rac = RAB$C_KEY;
4502 uaf_rab.rab$l_ubf = (char *)&retuaf;
4503 uaf_rab.rab$w_usz = sizeof retuaf;
4504 status = SYS$GET (&uaf_rab);
4505 if (!(status&1))
4507 errno = EVMSERR;
4508 vaxc$errno = status;
4509 return 0;
4511 /* close the User Authorization File */
4512 status = SYS$DISCONNECT (&uaf_rab);
4513 if (!(status&1))
4515 errno = EVMSERR;
4516 vaxc$errno = status;
4517 return 0;
4519 status = SYS$CLOSE (&uaf_fab);
4520 if (!(status&1))
4522 errno = EVMSERR;
4523 vaxc$errno = status;
4524 return 0;
4526 return &retuaf;
4529 struct UAF *
4530 get_uaf_uic (uic)
4531 unsigned long uic;
4533 register status;
4534 struct FAB uaf_fab;
4535 struct RAB uaf_rab;
4537 uaf_fab = cc$rms_fab;
4538 uaf_rab = cc$rms_rab;
4539 /* initialize fab fields */
4540 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
4541 uaf_fab.fab$b_fns = 21;
4542 uaf_fab.fab$b_fac = FAB$M_GET;
4543 uaf_fab.fab$b_org = FAB$C_IDX;
4544 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
4545 /* initialize rab fields */
4546 uaf_rab.rab$l_fab = &uaf_fab;
4547 /* open the User Authorization File */
4548 status = SYS$OPEN (&uaf_fab);
4549 if (!(status&1))
4551 errno = EVMSERR;
4552 vaxc$errno = status;
4553 return 0;
4555 status = SYS$CONNECT (&uaf_rab);
4556 if (!(status&1))
4558 errno = EVMSERR;
4559 vaxc$errno = status;
4560 return 0;
4562 /* read the requested record - index is in uic */
4563 uaf_rab.rab$b_krf = 1; /* 1st alternate key */
4564 uaf_rab.rab$l_kbf = (char *) &uic;
4565 uaf_rab.rab$b_ksz = sizeof uic;
4566 uaf_rab.rab$b_rac = RAB$C_KEY;
4567 uaf_rab.rab$l_ubf = (char *)&retuaf;
4568 uaf_rab.rab$w_usz = sizeof retuaf;
4569 status = SYS$GET (&uaf_rab);
4570 if (!(status&1))
4572 errno = EVMSERR;
4573 vaxc$errno = status;
4574 return 0;
4576 /* close the User Authorization File */
4577 status = SYS$DISCONNECT (&uaf_rab);
4578 if (!(status&1))
4580 errno = EVMSERR;
4581 vaxc$errno = status;
4582 return 0;
4584 status = SYS$CLOSE (&uaf_fab);
4585 if (!(status&1))
4587 errno = EVMSERR;
4588 vaxc$errno = status;
4589 return 0;
4591 return &retuaf;
4594 static struct passwd retpw;
4596 struct passwd *
4597 cnv_uaf_pw (up)
4598 struct UAF * up;
4600 char * ptr;
4602 /* copy these out first because if the username is 32 chars, the next
4603 section will overwrite the first byte of the UIC */
4604 retpw.pw_uid = up->uaf$w_mem;
4605 retpw.pw_gid = up->uaf$w_grp;
4607 /* I suppose this is not the best style, to possibly overwrite one
4608 byte beyond the end of the field, but what the heck... */
4609 ptr = &up->uaf$t_username[UAF$S_USERNAME];
4610 while (ptr[-1] == ' ')
4611 ptr--;
4612 *ptr = '\0';
4613 strcpy (retpw.pw_name, up->uaf$t_username);
4615 /* the rest of these are counted ascii strings */
4616 strncpy (retpw.pw_gecos, &up->uaf$t_owner[1], up->uaf$t_owner[0]);
4617 retpw.pw_gecos[up->uaf$t_owner[0]] = '\0';
4618 strncpy (retpw.pw_dir, &up->uaf$t_defdev[1], up->uaf$t_defdev[0]);
4619 retpw.pw_dir[up->uaf$t_defdev[0]] = '\0';
4620 strncat (retpw.pw_dir, &up->uaf$t_defdir[1], up->uaf$t_defdir[0]);
4621 retpw.pw_dir[up->uaf$t_defdev[0] + up->uaf$t_defdir[0]] = '\0';
4622 strncpy (retpw.pw_shell, &up->uaf$t_defcli[1], up->uaf$t_defcli[0]);
4623 retpw.pw_shell[up->uaf$t_defcli[0]] = '\0';
4625 return &retpw;
4627 #else /* not READ_SYSUAF */
4628 static struct passwd retpw;
4629 #endif /* not READ_SYSUAF */
4631 struct passwd *
4632 getpwnam (name)
4633 char * name;
4635 #ifdef READ_SYSUAF
4636 struct UAF *up;
4637 #else
4638 char * user;
4639 char * dir;
4640 unsigned char * full;
4641 #endif /* READ_SYSUAF */
4642 char *ptr = name;
4644 while (*ptr)
4646 if ('a' <= *ptr && *ptr <= 'z')
4647 *ptr -= 040;
4648 ptr++;
4650 #ifdef READ_SYSUAF
4651 if (!(up = get_uaf_name (name)))
4652 return 0;
4653 return cnv_uaf_pw (up);
4654 #else
4655 if (strcmp (name, getenv ("USER")) == 0)
4657 retpw.pw_uid = getuid ();
4658 retpw.pw_gid = getgid ();
4659 strcpy (retpw.pw_name, name);
4660 if (full = egetenv ("FULLNAME"))
4661 strcpy (retpw.pw_gecos, full);
4662 else
4663 *retpw.pw_gecos = '\0';
4664 strcpy (retpw.pw_dir, egetenv ("HOME"));
4665 *retpw.pw_shell = '\0';
4666 return &retpw;
4668 else
4669 return 0;
4670 #endif /* not READ_SYSUAF */
4673 struct passwd *
4674 getpwuid (uid)
4675 unsigned long uid;
4677 #ifdef READ_SYSUAF
4678 struct UAF * up;
4680 if (!(up = get_uaf_uic (uid)))
4681 return 0;
4682 return cnv_uaf_pw (up);
4683 #else
4684 if (uid == sys_getuid ())
4685 return getpwnam (egetenv ("USER"));
4686 else
4687 return 0;
4688 #endif /* not READ_SYSUAF */
4691 /* return total address space available to the current process. This is
4692 the sum of the current p0 size, p1 size and free page table entries
4693 available. */
4695 vlimit ()
4697 int item_code;
4698 unsigned long free_pages;
4699 unsigned long frep0va;
4700 unsigned long frep1va;
4701 register status;
4703 item_code = JPI$_FREPTECNT;
4704 if (((status = LIB$GETJPI (&item_code, 0, 0, &free_pages)) & 1) == 0)
4706 errno = EVMSERR;
4707 vaxc$errno = status;
4708 return -1;
4710 free_pages *= 512;
4712 item_code = JPI$_FREP0VA;
4713 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep0va)) & 1) == 0)
4715 errno = EVMSERR;
4716 vaxc$errno = status;
4717 return -1;
4719 item_code = JPI$_FREP1VA;
4720 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep1va)) & 1) == 0)
4722 errno = EVMSERR;
4723 vaxc$errno = status;
4724 return -1;
4727 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);
4746 delete_logical_name (varname)
4747 char *varname;
4749 struct dsc$descriptor_s envdsc =
4750 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
4751 struct dsc$descriptor_s lnmdsc =
4752 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
4754 return LIB$DELETE_LOGICAL (&envdsc, &lnmdsc);
4758 ulimit ()
4760 return 0;
4764 setpgrp ()
4766 return 0;
4770 execvp ()
4772 error ("execvp system call not implemented");
4773 return -1;
4777 rename (from, to)
4778 char *from, *to;
4780 int status;
4781 struct FAB from_fab = cc$rms_fab, to_fab = cc$rms_fab;
4782 struct NAM from_nam = cc$rms_nam, to_nam = cc$rms_nam;
4783 char from_esn[NAM$C_MAXRSS];
4784 char to_esn[NAM$C_MAXRSS];
4786 from_fab.fab$l_fna = from;
4787 from_fab.fab$b_fns = strlen (from);
4788 from_fab.fab$l_nam = &from_nam;
4789 from_fab.fab$l_fop = FAB$M_NAM;
4791 from_nam.nam$l_esa = from_esn;
4792 from_nam.nam$b_ess = sizeof from_esn;
4794 to_fab.fab$l_fna = to;
4795 to_fab.fab$b_fns = strlen (to);
4796 to_fab.fab$l_nam = &to_nam;
4797 to_fab.fab$l_fop = FAB$M_NAM;
4799 to_nam.nam$l_esa = to_esn;
4800 to_nam.nam$b_ess = sizeof to_esn;
4802 status = SYS$RENAME (&from_fab, 0, 0, &to_fab);
4804 if (status & 1)
4805 return 0;
4806 else
4808 if (status == RMS$_DEV)
4809 errno = EXDEV;
4810 else
4811 errno = EVMSERR;
4812 vaxc$errno = status;
4813 return -1;
4817 /* This function renames a file like `rename', but it strips
4818 the version number from the "to" filename, such that the "to" file is
4819 will always be a new version. It also sets the file protection once it is
4820 finished. The protection that we will use is stored in fab_final_pro,
4821 and was set when we did a creat_copy_attrs to create the file that we
4822 are renaming.
4824 We could use the chmod function, but Eunichs uses 3 bits per user category
4825 to describe the protection, and VMS uses 4 (write and delete are separate
4826 bits). To maintain portability, the VMS implementation of `chmod' wires
4827 the W and D bits together. */
4830 static struct fibdef fib; /* We need this initialized to zero */
4831 char vms_file_written[NAM$C_MAXRSS];
4834 rename_sans_version (from,to)
4835 char *from, *to;
4837 short int chan;
4838 int stat;
4839 short int iosb[4];
4840 int status;
4841 struct FAB to_fab = cc$rms_fab;
4842 struct NAM to_nam = cc$rms_nam;
4843 struct dsc$descriptor fib_d ={sizeof (fib),0,0,(char*) &fib};
4844 struct dsc$descriptor fib_attr[2]
4845 = {{sizeof (fab_final_pro),ATR$C_FPRO,0,(char*) &fab_final_pro},{0,0,0,0}};
4846 char to_esn[NAM$C_MAXRSS];
4848 $DESCRIPTOR (disk,to_esn);
4850 to_fab.fab$l_fna = to;
4851 to_fab.fab$b_fns = strlen (to);
4852 to_fab.fab$l_nam = &to_nam;
4853 to_fab.fab$l_fop = FAB$M_NAM;
4855 to_nam.nam$l_esa = to_esn;
4856 to_nam.nam$b_ess = sizeof to_esn;
4858 status = SYS$PARSE (&to_fab, 0, 0); /* figure out the full file name */
4860 if (to_nam.nam$l_fnb && NAM$M_EXP_VER)
4861 *(to_nam.nam$l_ver) = '\0';
4863 stat = rename (from, to_esn);
4864 if (stat < 0)
4865 return stat;
4867 strcpy (vms_file_written, to_esn);
4869 to_fab.fab$l_fna = vms_file_written; /* this points to the versionless name */
4870 to_fab.fab$b_fns = strlen (vms_file_written);
4872 /* Now set the file protection to the correct value */
4873 SYS$OPEN (&to_fab, 0, 0); /* This fills in the nam$w_fid fields */
4875 /* Copy these fields into the fib */
4876 fib.fib$r_fid_overlay.fib$w_fid[0] = to_nam.nam$w_fid[0];
4877 fib.fib$r_fid_overlay.fib$w_fid[1] = to_nam.nam$w_fid[1];
4878 fib.fib$r_fid_overlay.fib$w_fid[2] = to_nam.nam$w_fid[2];
4880 SYS$CLOSE (&to_fab, 0, 0);
4882 stat = SYS$ASSIGN (&disk, &chan, 0, 0); /* open a channel to the disk */
4883 if (!stat)
4884 LIB$SIGNAL (stat);
4885 stat = SYS$QIOW (0, chan, IO$_MODIFY, iosb, 0, 0, &fib_d,
4886 0, 0, 0, &fib_attr, 0);
4887 if (!stat)
4888 LIB$SIGNAL (stat);
4889 stat = SYS$DASSGN (chan);
4890 if (!stat)
4891 LIB$SIGNAL (stat);
4892 strcpy (vms_file_written, to_esn); /* We will write this to the terminal*/
4893 return 0;
4897 link (file, new)
4898 char * file, * new;
4900 register status;
4901 struct FAB fab;
4902 struct NAM nam;
4903 unsigned short fid[3];
4904 char esa[NAM$C_MAXRSS];
4906 fab = cc$rms_fab;
4907 fab.fab$l_fop = FAB$M_OFP;
4908 fab.fab$l_fna = file;
4909 fab.fab$b_fns = strlen (file);
4910 fab.fab$l_nam = &nam;
4912 nam = cc$rms_nam;
4913 nam.nam$l_esa = esa;
4914 nam.nam$b_ess = NAM$C_MAXRSS;
4916 status = SYS$PARSE (&fab);
4917 if ((status & 1) == 0)
4919 errno = EVMSERR;
4920 vaxc$errno = status;
4921 return -1;
4923 status = SYS$SEARCH (&fab);
4924 if ((status & 1) == 0)
4926 errno = EVMSERR;
4927 vaxc$errno = status;
4928 return -1;
4931 fid[0] = nam.nam$w_fid[0];
4932 fid[1] = nam.nam$w_fid[1];
4933 fid[2] = nam.nam$w_fid[2];
4935 fab.fab$l_fna = new;
4936 fab.fab$b_fns = strlen (new);
4938 status = SYS$PARSE (&fab);
4939 if ((status & 1) == 0)
4941 errno = EVMSERR;
4942 vaxc$errno = status;
4943 return -1;
4946 nam.nam$w_fid[0] = fid[0];
4947 nam.nam$w_fid[1] = fid[1];
4948 nam.nam$w_fid[2] = fid[2];
4950 nam.nam$l_esa = nam.nam$l_name;
4951 nam.nam$b_esl = nam.nam$b_name + nam.nam$b_type + nam.nam$b_ver;
4953 status = SYS$ENTER (&fab);
4954 if ((status & 1) == 0)
4956 errno = EVMSERR;
4957 vaxc$errno = status;
4958 return -1;
4961 return 0;
4964 void
4965 croak (badfunc)
4966 char *badfunc;
4968 printf ("%s not yet implemented\r\n", badfunc);
4969 reset_all_sys_modes ();
4970 exit (1);
4973 long
4974 random ()
4976 /* Arrange to return a range centered on zero. */
4977 return rand () - (1 << 30);
4980 void
4981 srandom (seed)
4983 srand (seed);
4985 #endif /* VMS */
4987 #ifndef BSTRING
4989 #ifndef bzero
4991 void
4992 bzero (b, length)
4993 register char *b;
4994 register int length;
4996 #ifdef VMS
4997 short zero = 0;
4998 long max_str = 65535;
5000 while (length > max_str) {
5001 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5002 length -= max_str;
5003 b += max_str;
5005 max_str = length;
5006 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
5007 #else
5008 while (length-- > 0)
5009 *b++ = 0;
5010 #endif /* not VMS */
5013 #endif /* no bzero */
5014 #endif /* BSTRING */
5016 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5017 #undef bcopy
5019 /* Saying `void' requires a declaration, above, where bcopy is used
5020 and that declaration causes pain for systems where bcopy is a macro. */
5021 bcopy (b1, b2, length)
5022 register char *b1;
5023 register char *b2;
5024 register int length;
5026 #ifdef VMS
5027 long max_str = 65535;
5029 while (length > max_str) {
5030 (void) LIB$MOVC3 (&max_str, b1, b2);
5031 length -= max_str;
5032 b1 += max_str;
5033 b2 += max_str;
5035 max_str = length;
5036 (void) LIB$MOVC3 (&length, b1, b2);
5037 #else
5038 while (length-- > 0)
5039 *b2++ = *b1++;
5040 #endif /* not VMS */
5042 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5044 #ifndef BSTRING
5045 #ifndef bcmp
5047 bcmp (b1, b2, length) /* This could be a macro! */
5048 register char *b1;
5049 register char *b2;
5050 register int length;
5052 #ifdef VMS
5053 struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1};
5054 struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2};
5056 return STR$COMPARE (&src1, &src2);
5057 #else
5058 while (length-- > 0)
5059 if (*b1++ != *b2++)
5060 return 1;
5062 return 0;
5063 #endif /* not VMS */
5065 #endif /* no bcmp */
5066 #endif /* not BSTRING */
5068 #ifndef HAVE_STRSIGNAL
5069 char *
5070 strsignal (code)
5071 int code;
5073 char *signame = 0;
5075 if (0 <= code && code < NSIG)
5077 #ifdef VMS
5078 signame = sys_errlist[code];
5079 #else
5080 /* Cast to suppress warning if the table has const char *. */
5081 signame = (char *) sys_siglist[code];
5082 #endif
5085 return signame;
5087 #endif /* HAVE_STRSIGNAL */
5089 #ifdef HAVE_TERMIOS
5090 /* For make-serial-process */
5091 int serial_open (char *port)
5093 int fd = -1;
5095 fd = emacs_open ((char*) port,
5096 O_RDWR
5097 #ifdef O_NONBLOCK
5098 | O_NONBLOCK
5099 #else
5100 | O_NDELAY
5101 #endif
5102 #ifdef O_NOCTTY
5103 | O_NOCTTY
5104 #endif
5105 , 0);
5106 if (fd < 0)
5108 error ("Could not open %s: %s",
5109 port, emacs_strerror (errno));
5111 #ifdef TIOCEXCL
5112 ioctl (fd, TIOCEXCL, (char *) 0);
5113 #endif
5115 return fd;
5117 #endif /* TERMIOS */
5119 #ifdef HAVE_TERMIOS
5121 #if !defined (HAVE_CFMAKERAW)
5122 /* Workaround for targets which are missing cfmakeraw. */
5123 /* Pasted from man page. */
5124 static void cfmakeraw (struct termios *termios_p)
5126 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
5127 termios_p->c_oflag &= ~OPOST;
5128 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
5129 termios_p->c_cflag &= ~(CSIZE|PARENB);
5130 termios_p->c_cflag |= CS8;
5132 #endif /* !defined (HAVE_CFMAKERAW */
5134 #if !defined (HAVE_CFSETSPEED)
5135 /* Workaround for targets which are missing cfsetspeed. */
5136 static int cfsetspeed (struct termios *termios_p, speed_t vitesse)
5138 return (cfsetispeed (termios_p, vitesse)
5139 + cfsetospeed (termios_p, vitesse));
5141 #endif
5143 /* For serial-process-configure */
5144 void
5145 serial_configure (struct Lisp_Process *p,
5146 Lisp_Object contact)
5148 Lisp_Object childp2 = Qnil;
5149 Lisp_Object tem = Qnil;
5150 struct termios attr;
5151 int err = -1;
5152 char summary[4] = "???"; /* This usually becomes "8N1". */
5154 childp2 = Fcopy_sequence (p->childp);
5156 /* Read port attributes and prepare default configuration. */
5157 err = tcgetattr (p->outfd, &attr);
5158 if (err != 0)
5159 error ("tcgetattr() failed: %s", emacs_strerror (errno));
5160 cfmakeraw (&attr);
5161 #if defined (CLOCAL)
5162 attr.c_cflag |= CLOCAL;
5163 #endif
5164 #if defined (CREAD)
5165 attr.c_cflag | CREAD;
5166 #endif
5168 /* Configure speed. */
5169 if (!NILP (Fplist_member (contact, QCspeed)))
5170 tem = Fplist_get (contact, QCspeed);
5171 else
5172 tem = Fplist_get (p->childp, QCspeed);
5173 CHECK_NUMBER (tem);
5174 err = cfsetspeed (&attr, XINT (tem));
5175 if (err != 0)
5176 error ("cfsetspeed(%d) failed: %s", XINT (tem), emacs_strerror (errno));
5177 childp2 = Fplist_put (childp2, QCspeed, tem);
5179 /* Configure bytesize. */
5180 if (!NILP (Fplist_member (contact, QCbytesize)))
5181 tem = Fplist_get (contact, QCbytesize);
5182 else
5183 tem = Fplist_get (p->childp, QCbytesize);
5184 if (NILP (tem))
5185 tem = make_number (8);
5186 CHECK_NUMBER (tem);
5187 if (XINT (tem) != 7 && XINT (tem) != 8)
5188 error (":bytesize must be nil (8), 7, or 8");
5189 summary[0] = XINT(tem) + '0';
5190 #if defined (CSIZE) && defined (CS7) && defined (CS8)
5191 attr.c_cflag &= ~CSIZE;
5192 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
5193 #else
5194 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
5195 if (XINT (tem) != 8)
5196 error ("Bytesize cannot be changed");
5197 #endif
5198 childp2 = Fplist_put (childp2, QCbytesize, tem);
5200 /* Configure parity. */
5201 if (!NILP (Fplist_member (contact, QCparity)))
5202 tem = Fplist_get (contact, QCparity);
5203 else
5204 tem = Fplist_get (p->childp, QCparity);
5205 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
5206 error (":parity must be nil (no parity), `even', or `odd'");
5207 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
5208 attr.c_cflag &= ~(PARENB | PARODD);
5209 attr.c_iflag &= ~(IGNPAR | INPCK);
5210 if (NILP (tem))
5212 summary[1] = 'N';
5214 else if (EQ (tem, Qeven))
5216 summary[1] = 'E';
5217 attr.c_cflag |= PARENB;
5218 attr.c_iflag |= (IGNPAR | INPCK);
5220 else if (EQ (tem, Qodd))
5222 summary[1] = 'O';
5223 attr.c_cflag |= (PARENB | PARODD);
5224 attr.c_iflag |= (IGNPAR | INPCK);
5226 #else
5227 /* Don't error on no parity, which should be set by cfmakeraw. */
5228 if (!NILP (tem))
5229 error ("Parity cannot be configured");
5230 #endif
5231 childp2 = Fplist_put (childp2, QCparity, tem);
5233 /* Configure stopbits. */
5234 if (!NILP (Fplist_member (contact, QCstopbits)))
5235 tem = Fplist_get (contact, QCstopbits);
5236 else
5237 tem = Fplist_get (p->childp, QCstopbits);
5238 if (NILP (tem))
5239 tem = make_number (1);
5240 CHECK_NUMBER (tem);
5241 if (XINT (tem) != 1 && XINT (tem) != 2)
5242 error (":stopbits must be nil (1 stopbit), 1, or 2");
5243 summary[2] = XINT (tem) + '0';
5244 #if defined (CSTOPB)
5245 attr.c_cflag &= ~CSTOPB;
5246 if (XINT (tem) == 2)
5247 attr.c_cflag |= CSTOPB;
5248 #else
5249 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
5250 if (XINT (tem) != 1)
5251 error ("Stopbits cannot be configured");
5252 #endif
5253 childp2 = Fplist_put (childp2, QCstopbits, tem);
5255 /* Configure flowcontrol. */
5256 if (!NILP (Fplist_member (contact, QCflowcontrol)))
5257 tem = Fplist_get (contact, QCflowcontrol);
5258 else
5259 tem = Fplist_get (p->childp, QCflowcontrol);
5260 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
5261 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
5262 #if defined (CRTSCTS)
5263 attr.c_cflag &= ~CRTSCTS;
5264 #endif
5265 #if defined (CNEW_RTSCTS)
5266 attr.c_cflag &= ~CNEW_RTSCTS;
5267 #endif
5268 #if defined (IXON) && defined (IXOFF)
5269 attr.c_iflag &= ~(IXON | IXOFF);
5270 #endif
5271 if (NILP (tem))
5273 /* Already configured. */
5275 else if (EQ (tem, Qhw))
5277 #if defined (CRTSCTS)
5278 attr.c_cflag |= CRTSCTS;
5279 #elif defined (CNEW_RTSCTS)
5280 attr.c_cflag |= CNEW_RTSCTS;
5281 #else
5282 error ("Hardware flowcontrol (RTS/CTS) not supported");
5283 #endif
5285 else if (EQ (tem, Qsw))
5287 #if defined (IXON) && defined (IXOFF)
5288 attr.c_iflag |= (IXON | IXOFF);
5289 #else
5290 error ("Software flowcontrol (XON/XOFF) not supported");
5291 #endif
5293 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
5295 /* Activate configuration. */
5296 err = tcsetattr (p->outfd, TCSANOW, &attr);
5297 if (err != 0)
5298 error ("tcsetattr() failed: %s", emacs_strerror (errno));
5300 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
5301 p->childp = childp2;
5304 #endif /* TERMIOS */
5306 /* arch-tag: edb43589-4e09-4544-b325-978b5b121dcf
5307 (do not change this comment) */