(WINNT_SUPPORT): Add common-win.elc, like src/Makefile.in did.
[bpt/emacs.git] / src / sysdep.c
CommitLineData
86a5659e 1/* Interfaces to system-dependent kernel and library entries.
275464e7 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
c4605e09 3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
8cabe764 4 Free Software Foundation, Inc.
86a5659e
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
86a5659e 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
86a5659e
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
86a5659e 20
4838e624
PJ
21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
86a5659e 24
2c55aacf 25#include <ctype.h>
86a5659e 26#include <signal.h>
5890e9f7 27#include <stdio.h>
86a5659e 28#include <setjmp.h>
06e111a6
DN
29#ifdef HAVE_PWD_H
30#include <pwd.h>
31#include <grp.h>
32#endif /* HAVE_PWD_H */
33#ifdef HAVE_LIMITS_H
34#include <limits.h>
35#endif /* HAVE_LIMITS_H */
d3eb3bfa
DL
36#ifdef HAVE_UNISTD_H
37#include <unistd.h>
38#endif
53934c98
DN
39#ifdef HAVE_ALLOCA_H
40#include <alloca.h>
41#endif /* HAVE_ALLOCA_H */
42
86a5659e 43#include "lisp.h"
8296bbf8
DL
44/* Including stdlib.h isn't necessarily enough to get srandom
45 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
8296bbf8 46
4d395425
EZ
47/* The w32 build defines select stuff in w32.h, which is included by
48 sys/select.h (included below). */
49#ifndef WINDOWSNT
819b8f00 50#include "sysselect.h"
4d395425 51#endif
819b8f00 52
9ac0d9e0 53#include "blockinput.h"
86a5659e 54
fe03522b 55#ifdef WINDOWSNT
e15b6288
JR
56#define read sys_read
57#define write sys_write
fe03522b 58#include <windows.h>
e36ec798
AI
59#ifndef NULL
60#define NULL 0
61#endif
fe03522b
RS
62#endif /* not WINDOWSNT */
63
986ffb24
JB
64/* Does anyone other than VMS need this? */
65#ifndef fwrite
66#define sys_fwrite fwrite
67#else
68#undef fwrite
69#endif
70
86a5659e
JB
71#include <sys/types.h>
72#include <sys/stat.h>
73#include <errno.h>
74
f95c3f91 75#ifdef HAVE_SETPGID
2b7e8799 76#if !defined (USG) || defined (BSD_PGRPS)
c8875a65 77#undef setpgrp
f95c3f91
GM
78#define setpgrp setpgid
79#endif
2b7e8799 80#endif
f95c3f91 81
b05af5d3
PE
82/* Get SI_SRPC_DOMAIN, if it is available. */
83#ifdef HAVE_SYS_SYSTEMINFO_H
84#include <sys/systeminfo.h>
85#endif
86
207bdbdb
RS
87#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
88#include <dos.h>
89#include "dosfns.h"
90#include "msdos.h"
91#include <sys/param.h>
15614e61
RS
92
93#if __DJGPP__ > 1
94extern int etext;
95extern unsigned start __asm__ ("start");
96#endif
207bdbdb
RS
97#endif
98
e36ec798 99#ifndef USE_CRT_DLL
9ee9af7a 100#ifndef errno
86a5659e 101extern int errno;
9ee9af7a 102#endif
e36ec798 103#endif
86a5659e 104
bb4bc8e2 105#include <sys/file.h>
7ce1c4de 106
612221ab 107#ifdef HAVE_FCNTL_H
bb4bc8e2
RM
108#include <fcntl.h>
109#endif
86a5659e 110
207bdbdb 111#ifndef MSDOS
86a5659e 112#include <sys/ioctl.h>
207bdbdb 113#endif
2a633456 114
e04a4e0d 115#include "systty.h"
94c8642a 116#include "syswait.h"
86a5659e 117
e39a993c 118#if defined (USG)
86a5659e 119#include <sys/utsname.h>
86a5659e 120#include <memory.h>
e39a993c 121#endif /* USG */
86a5659e 122
86a5659e
JB
123extern int quit_char;
124
e36ec798 125#include "keyboard.h"
0137dbf7 126#include "frame.h"
86a5659e
JB
127#include "window.h"
128#include "termhooks.h"
129#include "termchar.h"
130#include "termopts.h"
131#include "dispextern.h"
132#include "process.h"
0a125897 133#include "cm.h" /* for reset_sys_modes */
86a5659e 134
1eb8fd91 135/* For serial_configure and serial_open. */
d888760c
GM
136extern Lisp_Object QCport, QCspeed, QCprocess;
137extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
138extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
139
fe03522b
RS
140#ifdef WINDOWSNT
141#include <direct.h>
142/* In process.h which conflicts with the local copy. */
143#define _P_WAIT 0
43db14bb
JB
144int _cdecl _spawnlp (int, const char *, const char *, ...);
145int _cdecl _getpid (void);
b6682dd9 146extern char *getwd (char *);
fe03522b
RS
147#endif
148
91bac16a
JB
149#include "syssignal.h"
150#include "systime.h"
d79998bc
KH
151#ifdef HAVE_UTIME_H
152#include <utime.h>
153#endif
154
155#ifndef HAVE_UTIMES
156#ifndef HAVE_STRUCT_UTIMBUF
157/* We want to use utime rather than utimes, but we couldn't find the
158 structure declaration. We'll use the traditional one. */
159struct utimbuf {
160 long actime;
161 long modtime;
162};
163#endif
164#endif
86a5659e 165
a00d5589
RS
166/* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
167#ifndef LPASS8
168#define LPASS8 0
169#endif
170
86a5659e 171static int baud_convert[] =
86a5659e
JB
172 {
173 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
174 1800, 2400, 4800, 9600, 19200, 38400
175 };
86a5659e 176
f0d21750
GM
177#ifdef HAVE_SPEED_T
178#include <termios.h>
f0d21750 179#else
ba5971b3 180#if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
ba5971b3 181#else
8a2a6032 182#if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
515b04d0 183#include <termios.h>
f2361c60 184#endif
ba5971b3 185#endif
f0d21750 186#endif
86a5659e 187
5bdd7bdd
GM
188int emacs_ospeed;
189
01d09305 190void croak P_ ((char *)) NO_RETURN;
b9c4113e 191
89723395
GM
192/* Temporary used by `sigblock' when defined in terms of signprocmask. */
193
194SIGMASKTYPE sigprocmask_set;
195
f78f1a83 196
3480d92b 197#if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
f78f1a83 198
b6682dd9 199/* Return the current working directory. Returns NULL on errors.
f78f1a83
EZ
200 Any other returned value must be freed with free. This is used
201 only when get_current_dir_name is not defined on the system. */
202char*
203get_current_dir_name ()
204{
205 char *buf;
206 char *pwd;
207 struct stat dotstat, pwdstat;
208 /* If PWD is accurate, use it instead of calling getwd. PWD is
209 sometimes a nicer name, and using it may avoid a fatal error if a
210 parent directory is searchable but not readable. */
211 if ((pwd = getenv ("PWD")) != 0
212 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
213 && stat (pwd, &pwdstat) == 0
214 && stat (".", &dotstat) == 0
215 && dotstat.st_ino == pwdstat.st_ino
216 && dotstat.st_dev == pwdstat.st_dev
217#ifdef MAXPATHLEN
218 && strlen (pwd) < MAXPATHLEN
219#endif
220 )
221 {
222 buf = (char *) malloc (strlen (pwd) + 1);
223 if (!buf)
224 return NULL;
225 strcpy (buf, pwd);
226 }
227#ifdef HAVE_GETCWD
228 else
229 {
230 size_t buf_size = 1024;
b6682dd9 231 buf = (char *) malloc (buf_size);
f78f1a83
EZ
232 if (!buf)
233 return NULL;
234 for (;;)
235 {
236 if (getcwd (buf, buf_size) == buf)
237 break;
238 if (errno != ERANGE)
239 {
240 int tmp_errno = errno;
241 free (buf);
242 errno = tmp_errno;
243 return NULL;
244 }
245 buf_size *= 2;
246 buf = (char *) realloc (buf, buf_size);
247 if (!buf)
248 return NULL;
249 }
250 }
251#else
252 else
253 {
254 /* We need MAXPATHLEN here. */
255 buf = (char *) malloc (MAXPATHLEN + 1);
256 if (!buf)
257 return NULL;
258 if (getwd (buf) == NULL)
259 {
260 int tmp_errno = errno;
261 free (buf);
262 errno = tmp_errno;
263 return NULL;
264 }
265 }
266#endif
267 return buf;
268}
269#endif
270
64e971c3 271\f
9628b887 272/* Discard pending input on all input descriptors. */
91bac16a 273
08633194 274void
86a5659e
JB
275discard_tty_input ()
276{
fe03522b 277#ifndef WINDOWSNT
91bac16a 278 struct emacs_tty buf;
86a5659e
JB
279
280 if (noninteractive)
281 return;
282
fe03522b 283#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
207bdbdb 284 while (dos_keyread () != -1)
fe03522b 285 ;
207bdbdb 286#else /* not MSDOS */
9628b887 287 {
28d7d09f 288 struct tty_display_info *tty;
9628b887
KL
289 for (tty = tty_list; tty; tty = tty->next)
290 {
0b0d3e0b
KL
291 if (tty->input) /* Is the device suspended? */
292 {
293 EMACS_GET_TTY (fileno (tty->input), &buf);
294 EMACS_SET_TTY (fileno (tty->input), &buf, 0);
295 }
9628b887
KL
296 }
297 }
207bdbdb 298#endif /* not MSDOS */
fe03522b 299#endif /* not WINDOWSNT */
86a5659e
JB
300}
301
16c290d8 302\f
86a5659e
JB
303#ifdef SIGTSTP
304
64e971c3 305/* Arrange for character C to be read as the next input from
16c290d8
KL
306 the terminal.
307 XXX What if we have multiple ttys?
308*/
64e971c3 309
dfcf069d 310void
0c2338d8 311stuff_char (char c)
86a5659e 312{
428a555e 313 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
23dab951
RS
314 return;
315
86a5659e
JB
316/* Should perhaps error if in batch mode */
317#ifdef TIOCSTI
0b0d3e0b 318 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
86a5659e 319#else /* no TIOCSTI */
71f06467 320 error ("Cannot stuff terminal input characters in this version of Unix");
86a5659e
JB
321#endif /* no TIOCSTI */
322}
323
324#endif /* SIGTSTP */
64e971c3 325\f
08633194 326void
16c290d8 327init_baud_rate (int fd)
86a5659e 328{
86a5659e 329 if (noninteractive)
5bdd7bdd 330 emacs_ospeed = 0;
86a5659e
JB
331 else
332 {
fe03522b 333#ifdef DOS_NT
5bdd7bdd 334 emacs_ospeed = 15;
fe03522b 335#else /* not DOS_NT */
e04a4e0d
JB
336#ifdef HAVE_TERMIOS
337 struct termios sg;
91bac16a 338
71f06467 339 sg.c_cflag = B9600;
16c290d8 340 tcgetattr (fd, &sg);
5bdd7bdd 341 emacs_ospeed = cfgetospeed (&sg);
7c2fb837 342#else /* not TERMIOS */
e04a4e0d
JB
343#ifdef HAVE_TERMIO
344 struct termio sg;
91bac16a 345
71f06467 346 sg.c_cflag = B9600;
e04a4e0d 347#ifdef HAVE_TCATTR
16c290d8 348 tcgetattr (fd, &sg);
e04a4e0d 349#else
16c290d8 350 ioctl (fd, TCGETA, &sg);
e04a4e0d 351#endif
5bdd7bdd 352 emacs_ospeed = sg.c_cflag & CBAUD;
7c2fb837 353#else /* neither TERMIOS nor TERMIO */
91bac16a 354 struct sgttyb sg;
177c0ea7 355
91bac16a 356 sg.sg_ospeed = B9600;
16c290d8 357 if (ioctl (fd, TIOCGETP, &sg) < 0)
d7272cff 358 abort ();
5bdd7bdd 359 emacs_ospeed = sg.sg_ospeed;
91bac16a 360#endif /* not HAVE_TERMIO */
e04a4e0d 361#endif /* not HAVE_TERMIOS */
fe03522b 362#endif /* not DOS_NT */
86a5659e 363 }
177c0ea7 364
5bdd7bdd
GM
365 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
366 ? baud_convert[emacs_ospeed] : 9600);
86a5659e
JB
367 if (baud_rate == 0)
368 baud_rate = 1200;
369}
370
16c290d8 371\f
86a5659e 372/*ARGSUSED*/
dfcf069d 373void
86a5659e
JB
374set_exclusive_use (fd)
375 int fd;
376{
377#ifdef FIOCLEX
378 ioctl (fd, FIOCLEX, 0);
379#endif
380 /* Ok to do nothing if this feature does not exist */
381}
64e971c3 382\f
86a5659e
JB
383#ifndef subprocesses
384
385wait_without_blocking ()
386{
2a633456 387#ifdef BSD_SYSTEM
86a5659e
JB
388 wait3 (0, WNOHANG | WUNTRACED, 0);
389#else
390 croak ("wait_without_blocking");
391#endif
392 synch_process_alive = 0;
393}
394
395#endif /* not subprocesses */
396
397int wait_debugging; /* Set nonzero to make following function work under dbx
fe03522b 398 (at least for bsd). */
86a5659e
JB
399
400SIGTYPE
401wait_for_termination_signal ()
402{}
403
404/* Wait for subprocess with process id `pid' to terminate and
405 make sure it will get eliminated (not remain forever as a zombie) */
406
08633194 407void
86a5659e
JB
408wait_for_termination (pid)
409 int pid;
410{
411 while (1)
412 {
413#ifdef subprocesses
f2a77c3a 414#if defined (BSD_SYSTEM) || defined (HPUX)
4c8975ad
RS
415 /* Note that kill returns -1 even if the process is just a zombie now.
416 But inevitably a SIGCHLD interrupt should be generated
417 and child_sig will do wait3 and make the process go away. */
418 /* There is some indication that there is a bug involved with
419 termination of subprocesses, perhaps involving a kernel bug too,
420 but no idea what it is. Just as a hunch we signal SIGCHLD to see
421 if that causes the problem to go away or get worse. */
422 sigsetmask (sigmask (SIGCHLD));
423 if (0 > kill (pid, 0))
fe03522b 424 {
4c8975ad
RS
425 sigsetmask (SIGEMPTYMASK);
426 kill (getpid (), SIGCHLD);
427 break;
428 }
429 if (wait_debugging)
430 sleep (1);
431 else
432 sigpause (SIGEMPTYMASK);
2a633456 433#else /* not BSD_SYSTEM, and not HPUX version >= 6 */
8a2a6032 434#ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
9ab714c7 435 sigblock (sigmask (SIGCHLD));
59957f85
GM
436 errno = 0;
437 if (kill (pid, 0) == -1 && errno == ESRCH)
9ab714c7
RS
438 {
439 sigunblock (sigmask (SIGCHLD));
440 break;
441 }
ac3ac859 442
0fdcb867 443 sigsuspend (&empty_mask);
9ab714c7 444#else /* not POSIX_SIGNALS */
4c8975ad
RS
445#ifdef HAVE_SYSV_SIGPAUSE
446 sighold (SIGCHLD);
447 if (0 > kill (pid, 0))
448 {
449 sigrelse (SIGCHLD);
450 break;
451 }
452 sigpause (SIGCHLD);
453#else /* not HAVE_SYSV_SIGPAUSE */
fe03522b
RS
454#ifdef WINDOWSNT
455 wait (0);
456 break;
457#else /* not WINDOWSNT */
4c8975ad 458 if (0 > kill (pid, 0))
86a5659e 459 break;
4c8975ad
RS
460 /* Using sleep instead of pause avoids timing error.
461 If the inferior dies just before the sleep,
462 we lose just one second. */
463 sleep (1);
fe03522b 464#endif /* not WINDOWSNT */
4c8975ad 465#endif /* not HAVE_SYSV_SIGPAUSE */
9ab714c7 466#endif /* not POSIX_SIGNALS */
2a633456 467#endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
86a5659e 468#else /* not subprocesses */
15614e61
RS
469#if __DJGPP__ > 1
470 break;
471#else /* not __DJGPP__ > 1 */
86a5659e
JB
472 if (kill (pid, 0) < 0)
473 break;
474 wait (0);
15614e61 475#endif /* not __DJGPP__ > 1*/
86a5659e
JB
476#endif /* not subprocesses */
477 }
478}
479
480#ifdef subprocesses
481
482/*
483 * flush any pending output
484 * (may flush input as well; it does not matter the way we use it)
485 */
177c0ea7 486
08633194 487void
86a5659e
JB
488flush_pending_output (channel)
489 int channel;
490{
491#ifdef HAVE_TERMIOS
492 /* If we try this, we get hit with SIGTTIN, because
493 the child's tty belongs to the child's pgrp. */
494#else
495#ifdef TCFLSH
496 ioctl (channel, TCFLSH, 1);
497#else
498#ifdef TIOCFLUSH
499 int zero = 0;
500 /* 3rd arg should be ignored
501 but some 4.2 kernels actually want the address of an int
502 and nonzero means something different. */
503 ioctl (channel, TIOCFLUSH, &zero);
504#endif
505#endif
506#endif
507}
64e971c3 508\f
86a5659e
JB
509/* Set up the terminal at the other end of a pseudo-terminal that
510 we will be controlling an inferior through.
511 It should not echo or do line-editing, since that is done
512 in Emacs. No padding needed for insertion into an Emacs buffer. */
513
08633194 514void
86a5659e
JB
515child_setup_tty (out)
516 int out;
517{
fe03522b 518#ifndef DOS_NT
91bac16a
JB
519 struct emacs_tty s;
520
521 EMACS_GET_TTY (out, &s);
86a5659e 522
31be8d24 523#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
91bac16a
JB
524 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
525 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
9d4e5eea 526#ifdef NLDLY
07cfc4e7
GM
527 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
528 Some versions of GNU Hurd do not have FFDLY? */
529#ifdef FFDLY
91bac16a
JB
530 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
531 /* No output delays */
07cfc4e7
GM
532#else
533 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
534 /* No output delays */
535#endif
9d4e5eea 536#endif
91bac16a
JB
537 s.main.c_lflag &= ~ECHO; /* Disable echo */
538 s.main.c_lflag |= ISIG; /* Enable signals */
9d4e5eea
RS
539#ifdef IUCLC
540 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
541#endif
f7097b2a
RS
542#ifdef ISTRIP
543 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
544#endif
23e4c8be 545#ifdef OLCUC
9d4e5eea
RS
546 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
547#endif
f7097b2a 548 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1bf96fb5 549 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
91bac16a
JB
550 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
551 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */
441f6399
RS
552 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
553 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
91bac16a 554
86a5659e 555#ifdef HPUX
91bac16a 556 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e 557#endif /* HPUX */
91bac16a 558
dfe598b5
RS
559#ifdef SIGNALS_VIA_CHARACTERS
560 /* the QUIT and INTR character are used in process_send_signal
561 so set them here to something useful. */
fa51fa32 562 if (s.main.c_cc[VQUIT] == CDISABLE)
dfe598b5 563 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
fa51fa32 564 if (s.main.c_cc[VINTR] == CDISABLE)
dfe598b5
RS
565 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
566#endif /* not SIGNALS_VIA_CHARACTERS */
567
86a5659e
JB
568#ifdef AIX
569/* AIX enhanced edit loses NULs, so disable it */
570#ifndef IBMR2AIX
91bac16a
JB
571 s.main.c_line = 0;
572 s.main.c_iflag &= ~ASCEDIT;
86a5659e
JB
573#endif
574 /* Also, PTY overloads NUL and BREAK.
575 don't ignore break, but don't signal either, so it looks like NUL. */
91bac16a
JB
576 s.main.c_iflag &= ~IGNBRK;
577 s.main.c_iflag &= ~BRKINT;
dfe598b5
RS
578 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
579 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
580 would force it to 0377. That looks like duplicated code. */
fa51fa32 581 s.main.c_cc[VEOL] = CDISABLE;
91bac16a 582 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e
JB
583#endif /* AIX */
584
585#else /* not HAVE_TERMIO */
91bac16a
JB
586
587 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
588 | CBREAK | TANDEM);
a00d5589 589 s.main.sg_flags |= LPASS8;
91bac16a
JB
590 s.main.sg_erase = 0377;
591 s.main.sg_kill = 0377;
1bf96fb5 592 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
91bac16a 593
86a5659e
JB
594#endif /* not HAVE_TERMIO */
595
91bac16a 596 EMACS_SET_TTY (out, &s, 0);
86a5659e 597
fe03522b 598#endif /* not DOS_NT */
86a5659e 599}
86a5659e
JB
600
601#endif /* subprocesses */
64e971c3 602\f
86a5659e
JB
603/* Record a signal code and the handler for it. */
604struct save_signal
605{
606 int code;
35a05cca 607 SIGTYPE (*handler) P_ ((int));
86a5659e
JB
608};
609
35a05cca
AS
610static void save_signal_handlers P_ ((struct save_signal *));
611static void restore_signal_handlers P_ ((struct save_signal *));
612
86a5659e
JB
613/* Suspend the Emacs process; give terminal to its superior. */
614
08633194 615void
86a5659e
JB
616sys_suspend ()
617{
c4ea52a6 618#if defined (SIGTSTP) && !defined (MSDOS)
86a5659e 619
5a570e37 620 {
e89a2cd5 621 int pgrp = EMACS_GETPGRP (0);
5a570e37
JB
622 EMACS_KILLPG (pgrp, SIGTSTP);
623 }
86a5659e
JB
624
625#else /* No SIGTSTP */
626#ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
627 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
628 kill (getpid (), SIGQUIT);
629
630#else /* No SIGTSTP or USG_JOBCTRL */
631
632/* On a system where suspending is not implemented,
633 instead fork a subshell and let it talk directly to the terminal
634 while we wait. */
a0932daa
KH
635 sys_subshell ();
636
637#endif /* no USG_JOBCTRL */
638#endif /* no SIGTSTP */
a0932daa
KH
639}
640
641/* Fork a subshell. */
642
08633194 643void
a0932daa
KH
644sys_subshell ()
645{
ad00c243 646#ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
a0932daa
KH
647 int st;
648 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
649#endif
efa04277 650 int pid;
86a5659e 651 struct save_signal saved_handlers[5];
efa04277
RS
652 Lisp_Object dir;
653 unsigned char *str = 0;
654 int len;
86a5659e
JB
655
656 saved_handlers[0].code = SIGINT;
657 saved_handlers[1].code = SIGQUIT;
658 saved_handlers[2].code = SIGTERM;
659#ifdef SIGIO
660 saved_handlers[3].code = SIGIO;
661 saved_handlers[4].code = 0;
662#else
663 saved_handlers[3].code = 0;
664#endif
665
efa04277
RS
666 /* Mentioning current_buffer->buffer would mean including buffer.h,
667 which somehow wedges the hp compiler. So instead... */
668
669 dir = intern ("default-directory");
0e7e7a58 670 if (NILP (Fboundp (dir)))
efa04277
RS
671 goto xyzzy;
672 dir = Fsymbol_value (dir);
914e81a2 673 if (!STRINGP (dir))
efa04277
RS
674 goto xyzzy;
675
676 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
d5db4077
KR
677 str = (unsigned char *) alloca (SCHARS (dir) + 2);
678 len = SCHARS (dir);
679 bcopy (SDATA (dir), str, len);
efa04277
RS
680 if (str[len - 1] != '/') str[len++] = '/';
681 str[len] = 0;
682 xyzzy:
683
ad00c243 684#ifdef DOS_NT
7964ba9e 685 pid = 0;
718ca3cf
RS
686#if __DJGPP__ > 1
687 save_signal_handlers (saved_handlers);
688 synch_process_alive = 1;
689#endif /* __DJGPP__ > 1 */
177c0ea7 690#else
efa04277 691 pid = vfork ();
86a5659e
JB
692 if (pid == -1)
693 error ("Can't spawn subshell");
7964ba9e
RS
694#endif
695
86a5659e
JB
696 if (pid == 0)
697 {
7964ba9e 698 char *sh = 0;
86a5659e 699
ad00c243 700#ifdef DOS_NT /* MW, Aug 1993 */
207bdbdb 701 getwd (oldwd);
7964ba9e
RS
702 if (sh == 0)
703 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
207bdbdb 704#endif
7964ba9e
RS
705 if (sh == 0)
706 sh = (char *) egetenv ("SHELL");
86a5659e
JB
707 if (sh == 0)
708 sh = "sh";
207bdbdb 709
86a5659e 710 /* Use our buffer's default directory for the subshell. */
efa04277 711 if (str)
074c438c 712 chdir ((char *) str);
efa04277 713
86a5659e
JB
714#ifdef subprocesses
715 close_process_descs (); /* Close Emacs's pipes/ptys */
716#endif
1593c2fe 717
6f8b4d01 718#ifdef SET_EMACS_PRIORITY
1593c2fe 719 {
31ade731 720 extern EMACS_INT emacs_priority;
1593c2fe 721
6f8b4d01 722 if (emacs_priority < 0)
1593c2fe
JB
723 nice (-emacs_priority);
724 }
725#endif
726
fe03522b 727#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
c0917202 728 {
48178f9a
EZ
729 char *epwd = getenv ("PWD");
730 char old_pwd[MAXPATHLEN+1+4];
c0917202
EZ
731
732 /* If PWD is set, pass it with corrected value. */
48178f9a 733 if (epwd)
c0917202 734 {
48178f9a 735 strcpy (old_pwd, epwd);
c0917202
EZ
736 if (str[len - 1] == '/')
737 str[len - 1] = '\0';
738 setenv ("PWD", str, 1);
739 }
740 st = system (sh);
741 chdir (oldwd);
48178f9a 742 if (epwd)
c0917202
EZ
743 putenv (old_pwd); /* restore previous value */
744 }
207bdbdb 745#else /* not MSDOS */
fe03522b 746#ifdef WINDOWSNT
fe03522b
RS
747 /* Waits for process completion */
748 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
ad00c243 749 chdir (oldwd);
fe03522b
RS
750 if (pid == -1)
751 write (1, "Can't execute subshell", 22);
fe03522b 752#else /* not WINDOWSNT */
e120ea40 753 execlp (sh, sh, (char *) 0);
86a5659e
JB
754 write (1, "Can't execute subshell", 22);
755 _exit (1);
fe03522b 756#endif /* not WINDOWSNT */
207bdbdb 757#endif /* not MSDOS */
86a5659e
JB
758 }
759
718ca3cf
RS
760 /* Do this now if we did not do it before. */
761#if !defined (MSDOS) || __DJGPP__ == 1
86a5659e 762 save_signal_handlers (saved_handlers);
ffafc793 763 synch_process_alive = 1;
718ca3cf
RS
764#endif
765
ad00c243 766#ifndef DOS_NT
86a5659e 767 wait_for_termination (pid);
7964ba9e 768#endif
86a5659e 769 restore_signal_handlers (saved_handlers);
718ca3cf 770 synch_process_alive = 0;
86a5659e
JB
771}
772
35a05cca 773static void
86a5659e
JB
774save_signal_handlers (saved_handlers)
775 struct save_signal *saved_handlers;
776{
777 while (saved_handlers->code)
778 {
508b171c 779 saved_handlers->handler
35a05cca 780 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers->code, SIG_IGN);
86a5659e
JB
781 saved_handlers++;
782 }
783}
784
35a05cca 785static void
86a5659e
JB
786restore_signal_handlers (saved_handlers)
787 struct save_signal *saved_handlers;
788{
789 while (saved_handlers->code)
790 {
791 signal (saved_handlers->code, saved_handlers->handler);
792 saved_handlers++;
793 }
794}
795\f
4d553a13
KL
796#ifndef SIGIO
797/* If SIGIO is broken, don't do anything. */
798void
799init_sigio (int fd)
800{
801}
802
803void
804reset_sigio (int fd)
805{
806}
807
808void
809request_sigio (void)
810{
811}
812
813void
814unrequest_sigio (void)
815{
816}
817
818#else
86a5659e
JB
819#ifdef F_SETFL
820
819b8f00 821int old_fcntl_flags[MAXDESC];
86a5659e 822
08633194 823void
23dab951
RS
824init_sigio (fd)
825 int fd;
86a5659e
JB
826{
827#ifdef FASYNC
819b8f00
KL
828 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
829 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
86a5659e 830#endif
23dab951 831 interrupts_deferred = 0;
86a5659e
JB
832}
833
590034f9 834void
0a125897
KL
835reset_sigio (fd)
836 int fd;
86a5659e 837{
4d553a13 838#ifdef FASYNC
819b8f00 839 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
4d553a13 840#endif
86a5659e
JB
841}
842
eb8c3be9 843#ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
428a555e 844/* XXX Uhm, FASYNC is not used anymore here. */
6d8cf830 845/* XXX Yeah, but you need it for SIGIO, don't you? */
86a5659e 846
08633194 847void
86a5659e
JB
848request_sigio ()
849{
6bbba5a6 850 if (noninteractive)
23dab951
RS
851 return;
852
86a5659e 853#ifdef SIGWINCH
e065a56e 854 sigunblock (sigmask (SIGWINCH));
86a5659e 855#endif
0a125897 856 sigunblock (sigmask (SIGIO));
86a5659e
JB
857
858 interrupts_deferred = 0;
859}
860
08633194 861void
0a125897 862unrequest_sigio (void)
428a555e 863{
6bbba5a6
KL
864 if (noninteractive)
865 return;
866
867#if 0 /* XXX What's wrong with blocking SIGIO under X? */
868 if (x_display_list)
23dab951 869 return;
428a555e 870#endif
6bbba5a6 871
86a5659e 872#ifdef SIGWINCH
e065a56e 873 sigblock (sigmask (SIGWINCH));
86a5659e 874#endif
0a125897 875 sigblock (sigmask (SIGIO));
86a5659e
JB
876 interrupts_deferred = 1;
877}
878
879#else /* no FASYNC */
feb67dfe 880#ifndef MSDOS
25ab68af 881
08633194 882void
86a5659e
JB
883request_sigio ()
884{
6e5b2385 885 if (noninteractive || read_socket_hook)
23dab951
RS
886 return;
887
86a5659e
JB
888 croak ("request_sigio");
889}
177c0ea7 890
08633194 891void
86a5659e
JB
892unrequest_sigio ()
893{
6e5b2385 894 if (noninteractive || read_socket_hook)
23dab951
RS
895 return;
896
86a5659e
JB
897 croak ("unrequest_sigio");
898}
feb67dfe
EZ
899
900#endif /* MSDOS */
86a5659e
JB
901#endif /* FASYNC */
902#endif /* F_SETFL */
4d553a13 903#endif /* SIGIO */
86a5659e 904\f
9ae8f997
JB
905/* Saving and restoring the process group of Emacs's terminal. */
906
0ba73609 907#ifdef BSD_PGRPS
9ae8f997
JB
908
909/* The process group of which Emacs was a member when it initially
910 started.
911
912 If Emacs was in its own process group (i.e. inherited_pgroup ==
913 getpid ()), then we know we're running under a shell with job
914 control (Emacs would never be run as part of a pipeline).
915 Everything is fine.
916
917 If Emacs was not in its own process group, then we know we're
918 running under a shell (or a caller) that doesn't know how to
919 separate itself from Emacs (like sh). Emacs must be in its own
920 process group in order to receive SIGIO correctly. In this
921 situation, we put ourselves in our own pgroup, forcibly set the
922 tty's pgroup to our pgroup, and make sure to restore and reinstate
923 the tty's pgroup just like any other terminal setting. If
924 inherited_group was not the tty's pgroup, then we'll get a
925 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
4edd8a5c
KL
926 it goes foreground in the future, which is what should happen.
927
928 This variable is initialized in emacs.c. */
9ae8f997
JB
929int inherited_pgroup;
930
4edd8a5c
KL
931/* Split off the foreground process group to Emacs alone. When we are
932 in the foreground, but not started in our own process group,
933 redirect the tty device handle FD to point to our own process
934 group. We need to be in our own process group to receive SIGIO
935 properly. */
75a8734b 936static void
16c290d8 937narrow_foreground_group (int fd)
9ae8f997
JB
938{
939 int me = getpid ();
940
4edd8a5c 941 setpgrp (0, inherited_pgroup);
3453bb3a
KL
942#if 0
943 /* XXX inherited_pgroup should not be zero here, but GTK seems to
944 mess this up. */
819b8f00 945 if (! inherited_pgroup)
4edd8a5c 946 abort (); /* Should not happen. */
3453bb3a 947#endif
9ae8f997 948 if (inherited_pgroup != me)
4edd8a5c
KL
949 EMACS_SET_TTY_PGRP (fd, &me); /* XXX This only works on the controlling tty. */
950 setpgrp (0, me);
9ae8f997
JB
951}
952
953/* Set the tty to our original foreground group. */
75a8734b 954static void
16c290d8 955widen_foreground_group (int fd)
9ae8f997
JB
956{
957 if (inherited_pgroup != getpid ())
16c290d8 958 EMACS_SET_TTY_PGRP (fd, &inherited_pgroup);
4edd8a5c 959 setpgrp (0, inherited_pgroup);
9ae8f997
JB
960}
961
0ba73609 962#endif /* BSD_PGRPS */
9ae8f997 963\f
68936329
JB
964/* Getting and setting emacs_tty structures. */
965
966/* Set *TC to the parameters associated with the terminal FD.
967 Return zero if all's well, or -1 if we ran into an error we
968 couldn't deal with. */
969int
970emacs_get_tty (fd, settings)
971 int fd;
972 struct emacs_tty *settings;
973{
974 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
975#ifdef HAVE_TCATTR
976 /* We have those nifty POSIX tcmumbleattr functions. */
1d9f9f9e 977 bzero (&settings->main, sizeof (settings->main));
68936329
JB
978 if (tcgetattr (fd, &settings->main) < 0)
979 return -1;
980
981#else
982#ifdef HAVE_TERMIO
983 /* The SYSV-style interface? */
984 if (ioctl (fd, TCGETA, &settings->main) < 0)
985 return -1;
986
68936329 987#else
fe03522b 988#ifndef DOS_NT
68936329
JB
989 /* I give up - I hope you have the BSD ioctls. */
990 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
991 return -1;
fe03522b 992#endif /* not DOS_NT */
68936329 993#endif
68936329
JB
994#endif
995
996 /* Suivant - Do we have to get struct ltchars data? */
50b8cf60 997#ifdef HAVE_LTCHARS
68936329
JB
998 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
999 return -1;
1000#endif
1001
1002 /* How about a struct tchars and a wordful of lmode bits? */
50b8cf60 1003#ifdef HAVE_TCHARS
68936329
JB
1004 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
1005 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
1006 return -1;
1007#endif
1008
1009 /* We have survived the tempest. */
1010 return 0;
1011}
1012
1013
1014/* Set the parameters of the tty on FD according to the contents of
394049ec 1015 *SETTINGS. If FLUSHP is non-zero, we discard input.
68936329 1016 Return 0 if all went well, and -1 if anything failed. */
394049ec 1017
68936329 1018int
394049ec 1019emacs_set_tty (fd, settings, flushp)
68936329
JB
1020 int fd;
1021 struct emacs_tty *settings;
394049ec 1022 int flushp;
68936329
JB
1023{
1024 /* Set the primary parameters - baud rate, character size, etcetera. */
1025#ifdef HAVE_TCATTR
e6cc3307 1026 int i;
68936329
JB
1027 /* We have those nifty POSIX tcmumbleattr functions.
1028 William J. Smith <wjs@wiis.wang.com> writes:
c4ea52a6 1029 "POSIX 1003.1 defines tcsetattr to return success if it was
68936329
JB
1030 able to perform any of the requested actions, even if some
1031 of the requested actions could not be performed.
1032 We must read settings back to ensure tty setup properly.
1033 AIX requires this to keep tty from hanging occasionally." */
eb8c3be9 1034 /* This make sure that we don't loop indefinitely in here. */
e6cc3307 1035 for (i = 0 ; i < 10 ; i++)
394049ec 1036 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
68936329
JB
1037 {
1038 if (errno == EINTR)
1039 continue;
1040 else
1041 return -1;
1042 }
1043 else
1044 {
1045 struct termios new;
1046
1d9f9f9e 1047 bzero (&new, sizeof (new));
68936329
JB
1048 /* Get the current settings, and see if they're what we asked for. */
1049 tcgetattr (fd, &new);
e6cc3307
RS
1050 /* We cannot use memcmp on the whole structure here because under
1051 * aix386 the termios structure has some reserved field that may
1052 * not be filled in.
1053 */
1054 if ( new.c_iflag == settings->main.c_iflag
1055 && new.c_oflag == settings->main.c_oflag
1056 && new.c_cflag == settings->main.c_cflag
1057 && new.c_lflag == settings->main.c_lflag
c4ea52a6 1058 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
68936329 1059 break;
e6cc3307
RS
1060 else
1061 continue;
68936329
JB
1062 }
1063
1064#else
1065#ifdef HAVE_TERMIO
1066 /* The SYSV-style interface? */
394049ec 1067 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
68936329
JB
1068 return -1;
1069
68936329 1070#else
fe03522b 1071#ifndef DOS_NT
68936329 1072 /* I give up - I hope you have the BSD ioctls. */
394049ec 1073 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
68936329 1074 return -1;
fe03522b 1075#endif /* not DOS_NT */
68936329 1076
68936329
JB
1077#endif
1078#endif
1079
1080 /* Suivant - Do we have to get struct ltchars data? */
50b8cf60 1081#ifdef HAVE_LTCHARS
68936329
JB
1082 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
1083 return -1;
1084#endif
1085
1086 /* How about a struct tchars and a wordful of lmode bits? */
50b8cf60 1087#ifdef HAVE_TCHARS
68936329
JB
1088 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
1089 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
1090 return -1;
1091#endif
177c0ea7 1092
68936329
JB
1093 /* We have survived the tempest. */
1094 return 0;
1095}
1096
1097\f
86a5659e
JB
1098
1099#ifdef F_SETOWN
819b8f00 1100int old_fcntl_owner[MAXDESC];
86a5659e
JB
1101#endif /* F_SETOWN */
1102
86a5659e
JB
1103/* This may also be defined in stdio,
1104 but if so, this does no harm,
1105 and using the same name avoids wasting the other one's space. */
1106
9d9a7716 1107#if defined (USG)
86a5659e
JB
1108unsigned char _sobuf[BUFSIZ+8];
1109#else
1110char _sobuf[BUFSIZ];
1111#endif
177c0ea7 1112
50b8cf60 1113#ifdef HAVE_LTCHARS
86a5659e
JB
1114static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
1115#endif
50b8cf60 1116#ifdef HAVE_TCHARS
4ec5cb58 1117static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
177c0ea7 1118#endif
86a5659e 1119
da8e1115
KL
1120/* Initialize the terminal mode on all tty devices that are currently
1121 open. */
1122
08633194 1123void
28d440ab
KL
1124init_all_sys_modes (void)
1125{
28d7d09f 1126 struct tty_display_info *tty;
16c290d8 1127 for (tty = tty_list; tty; tty = tty->next)
28d440ab 1128 init_sys_modes (tty);
28d440ab
KL
1129}
1130
da8e1115
KL
1131/* Initialize the terminal mode on the given tty device. */
1132
28d440ab 1133void
9628b887 1134init_sys_modes (tty_out)
28d7d09f 1135 struct tty_display_info *tty_out;
86a5659e 1136{
91bac16a
JB
1137 struct emacs_tty tty;
1138
4ec5cb58
RS
1139 Vtty_erase_char = Qnil;
1140
86a5659e
JB
1141 if (noninteractive)
1142 return;
1143
0b0d3e0b
KL
1144 if (!tty_out->output)
1145 return; /* The tty is suspended. */
1146
0ba73609 1147#ifdef BSD_PGRPS
428a555e
KL
1148#if 0
1149 /* read_socket_hook is not global anymore. I think doing this
1150 unconditionally will not cause any problems. */
2246281f 1151 if (! read_socket_hook && EQ (Vinitial_window_system, Qnil))
428a555e 1152#endif
0b0d3e0b 1153 narrow_foreground_group (fileno (tty_out->input));
9ae8f997
JB
1154#endif
1155
2246281f
KL
1156 if (! tty_out->old_tty)
1157 tty_out->old_tty = (struct emacs_tty *) xmalloc (sizeof (struct emacs_tty));
fca177d4 1158
0b0d3e0b 1159 EMACS_GET_TTY (fileno (tty_out->input), tty_out->old_tty);
23dab951 1160
2246281f 1161 tty = *tty_out->old_tty;
86a5659e 1162
31be8d24 1163#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
2246281f 1164 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
4ec5cb58 1165
2246281f
KL
1166 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
1167 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
7f371164
RS
1168#ifdef INLCR /* I'm just being cautious,
1169 since I can't check how widespread INLCR is--rms. */
2246281f 1170 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
7f371164 1171#endif
86a5659e 1172#ifdef ISTRIP
2246281f 1173 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
86a5659e 1174#endif
2246281f
KL
1175 tty.main.c_lflag &= ~ECHO; /* Disable echo */
1176 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
e2b40c23 1177#ifdef IEXTEN
2246281f 1178 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
e2b40c23 1179#endif
2246281f
KL
1180 tty.main.c_lflag |= ISIG; /* Enable signals */
1181 if (tty_out->flow_control)
1182 {
1183 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
86a5659e 1184#ifdef IXANY
2246281f 1185 tty.main.c_iflag &= ~IXANY;
86a5659e 1186#endif /* IXANY */
2246281f
KL
1187 }
1188 else
1189 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
1190 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
1191 on output */
1192 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
86a5659e 1193#ifdef CS8
2246281f
KL
1194 if (tty_out->meta_key)
1195 {
1196 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
1197 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
1198 }
86a5659e 1199#endif
2246281f
KL
1200 if (tty_out->input == stdin)
1201 {
1202 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
1203 /* Set up C-g for both SIGQUIT and SIGINT.
1204 We don't know which we will get, but we handle both alike
1205 so which one it really gives us does not matter. */
1206 tty.main.c_cc[VQUIT] = quit_char;
1207 }
1208 else
1209 {
1210 /* We normally don't get interrupt or quit signals from tty
1211 devices other than our controlling terminal; therefore,
1212 we must handle C-g as normal input. Unfortunately, this
1213 means that the interrupt and quit feature must be
1214 disabled on secondary ttys, or we would not even see the
1215 keypress.
1216
1217 Note that even though emacsclient could have special code
1218 to pass SIGINT to Emacs, we should _not_ enable
1219 interrupt/quit keys for emacsclient frames. This means
1220 that we can't break out of loops in C code from a
1221 secondary tty frame, but we can always decide what
1222 display the C-g came from, which is more important from a
1223 usability point of view. (Consider the case when two
1224 people work together using the same Emacs instance.) */
1225 tty.main.c_cc[VINTR] = CDISABLE;
1226 tty.main.c_cc[VQUIT] = CDISABLE;
1227 }
1228 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1229 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
86a5659e 1230#ifdef VSWTCH
2246281f 1231 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
91bac16a 1232 of C-z */
86a5659e 1233#endif /* VSWTCH */
2246281f 1234
b8ff87cc 1235#if defined (__mips__) || defined (HAVE_TCATTR)
86a5659e 1236#ifdef VSUSP
2246281f 1237 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */
86a5659e
JB
1238#endif /* VSUSP */
1239#ifdef V_DSUSP
2246281f 1240 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */
86a5659e 1241#endif /* V_DSUSP */
e2b40c23 1242#ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
2246281f 1243 tty.main.c_cc[VDSUSP] = CDISABLE;
e2b40c23 1244#endif /* VDSUSP */
92c995de 1245#ifdef VLNEXT
2246281f 1246 tty.main.c_cc[VLNEXT] = CDISABLE;
92c995de
RS
1247#endif /* VLNEXT */
1248#ifdef VREPRINT
2246281f 1249 tty.main.c_cc[VREPRINT] = CDISABLE;
92c995de
RS
1250#endif /* VREPRINT */
1251#ifdef VWERASE
2246281f 1252 tty.main.c_cc[VWERASE] = CDISABLE;
92c995de
RS
1253#endif /* VWERASE */
1254#ifdef VDISCARD
2246281f 1255 tty.main.c_cc[VDISCARD] = CDISABLE;
92c995de 1256#endif /* VDISCARD */
c179a6d1 1257
2246281f
KL
1258 if (tty_out->flow_control)
1259 {
421dd92f 1260#ifdef VSTART
2246281f 1261 tty.main.c_cc[VSTART] = '\021';
421dd92f
RS
1262#endif /* VSTART */
1263#ifdef VSTOP
2246281f 1264 tty.main.c_cc[VSTOP] = '\023';
421dd92f 1265#endif /* VSTOP */
2246281f
KL
1266 }
1267 else
1268 {
c179a6d1 1269#ifdef VSTART
2246281f 1270 tty.main.c_cc[VSTART] = CDISABLE;
c179a6d1
RS
1271#endif /* VSTART */
1272#ifdef VSTOP
2246281f 1273 tty.main.c_cc[VSTOP] = CDISABLE;
c179a6d1 1274#endif /* VSTOP */
2246281f 1275 }
86a5659e 1276#endif /* mips or HAVE_TCATTR */
c179a6d1 1277
86a5659e
JB
1278#ifdef AIX
1279#ifndef IBMR2AIX
2246281f
KL
1280 /* AIX enhanced edit loses NULs, so disable it. */
1281 tty.main.c_line = 0;
1282 tty.main.c_iflag &= ~ASCEDIT;
86a5659e 1283#else
f5272227
KL
1284 tty.main.c_cc[VSTRT] = CDISABLE;
1285 tty.main.c_cc[VSTOP] = CDISABLE;
1286 tty.main.c_cc[VSUSP] = CDISABLE;
1287 tty.main.c_cc[VDSUSP] = CDISABLE;
86a5659e 1288#endif /* IBMR2AIX */
2246281f
KL
1289 if (tty_out->flow_control)
1290 {
ac567c95 1291#ifdef VSTART
2246281f 1292 tty.main.c_cc[VSTART] = '\021';
ac567c95
RS
1293#endif /* VSTART */
1294#ifdef VSTOP
2246281f 1295 tty.main.c_cc[VSTOP] = '\023';
ac567c95 1296#endif /* VSTOP */
2246281f
KL
1297 }
1298 /* Also, PTY overloads NUL and BREAK.
1299 don't ignore break, but don't signal either, so it looks like NUL.
1300 This really serves a purpose only if running in an XTERM window
1301 or via TELNET or the like, but does no harm elsewhere. */
1302 tty.main.c_iflag &= ~IGNBRK;
1303 tty.main.c_iflag &= ~BRKINT;
86a5659e
JB
1304#endif
1305#else /* if not HAVE_TERMIO */
fe03522b 1306#ifndef DOS_NT
2246281f
KL
1307 XSETINT (Vtty_erase_char, tty.main.sg_erase);
1308 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
1309 if (meta_key)
1310 tty.main.sg_flags |= ANYP;
1311 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK;
fe03522b 1312#endif /* not DOS_NT */
86a5659e
JB
1313#endif /* not HAVE_TERMIO */
1314
2246281f
KL
1315 /* If going to use CBREAK mode, we must request C-g to interrupt
1316 and turn off start and stop chars, etc. If not going to use
1317 CBREAK mode, do this anyway so as to turn off local flow
1318 control for user coming over network on 4.2; in this case,
1319 only t_stopc and t_startc really matter. */
91bac16a 1320#ifndef HAVE_TERMIO
50b8cf60 1321#ifdef HAVE_TCHARS
2246281f
KL
1322 /* Note: if not using CBREAK mode, it makes no difference how we
1323 set this */
1324 tty.tchars = new_tchars;
1325 tty.tchars.t_intrc = quit_char;
1326 if (tty_out->flow_control)
1327 {
1328 tty.tchars.t_startc = '\021';
1329 tty.tchars.t_stopc = '\023';
1330 }
1331
1332 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | tty_out->old_tty.lmode;
2246281f 1333
50b8cf60 1334#endif /* HAVE_TCHARS */
91bac16a
JB
1335#endif /* not HAVE_TERMIO */
1336
50b8cf60 1337#ifdef HAVE_LTCHARS
2246281f 1338 tty.ltchars = new_ltchars;
50b8cf60 1339#endif /* HAVE_LTCHARS */
207bdbdb 1340#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
2246281f
KL
1341 if (!tty_out->term_initted)
1342 internal_terminal_init ();
4e389d32 1343 dos_ttraw (tty_out);
207bdbdb 1344#endif
91bac16a 1345
0b0d3e0b 1346 EMACS_SET_TTY (fileno (tty_out->input), &tty, 0);
86a5659e 1347
2246281f
KL
1348 /* This code added to insure that, if flow-control is not to be used,
1349 we have an unlocked terminal at the start. */
91bac16a 1350
86a5659e 1351#ifdef TCXONC
0b0d3e0b 1352 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
86a5659e 1353#endif
86a5659e 1354#ifdef TIOCSTART
0b0d3e0b 1355 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
86a5659e 1356#endif
86a5659e 1357
f2a77c3a 1358#if defined (HAVE_TERMIOS) || defined (HPUX)
51417996 1359#ifdef TCOON
0b0d3e0b 1360 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
d228f207 1361#endif
51417996 1362#endif
d228f207 1363
86a5659e 1364#ifdef F_SETFL
eb8c3be9 1365#ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
2246281f 1366 if (interrupt_input)
86a5659e 1367 {
0b0d3e0b
KL
1368 old_fcntl_owner[fileno (tty_out->input)] =
1369 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1370 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1371 init_sigio (fileno (tty_out->input));
7e5a23bd 1372#ifdef HAVE_GPM
75a8734b 1373 if (gpm_tty == tty_out)
3e748bcb 1374 {
75a8734b 1375 /* Arrange for mouse events to give us SIGIO signals. */
3e748bcb 1376 fcntl (gpm_fd, F_SETOWN, getpid ());
57669cf1 1377 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
3e748bcb
NR
1378 init_sigio (gpm_fd);
1379 }
7e5a23bd 1380#endif /* HAVE_GPM */
86a5659e
JB
1381 }
1382#endif /* F_GETOWN */
1383#endif /* F_SETFL */
1384
86a5659e
JB
1385#ifdef _IOFBF
1386 /* This symbol is defined on recent USG systems.
1387 Someone says without this call USG won't really buffer the file
1388 even with a call to setbuf. */
0b0d3e0b 1389 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
86a5659e 1390#else
0b0d3e0b 1391 setbuf (tty_out->output, (char *) _sobuf);
86a5659e 1392#endif
4d553a13 1393
69fb5031
JR
1394 if (tty_out->terminal->set_terminal_modes_hook)
1395 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
4b311aaf 1396
9628b887
KL
1397 if (!tty_out->term_initted)
1398 {
1399 Lisp_Object tail, frame;
1400 FOR_EACH_FRAME (tail, frame)
1401 {
daf01701 1402 /* XXX This needs to be revised. */
9628b887
KL
1403 if (FRAME_TERMCAP_P (XFRAME (frame))
1404 && FRAME_TTY (XFRAME (frame)) == tty_out)
1405 init_frame_faces (XFRAME (frame));
1406 }
1407 }
045942b2 1408
9628b887 1409 if (tty_out->term_initted && no_redraw_on_reenter)
86a5659e 1410 {
1fb8c4ad 1411 /* XXX This seems wrong on multi-tty. */
86a5659e
JB
1412 if (display_completed)
1413 direct_output_forward_char (0);
1414 }
1415 else
1416 {
9628b887 1417 Lisp_Object tail, frame;
0137dbf7 1418 frame_garbaged = 1;
9628b887
KL
1419 FOR_EACH_FRAME (tail, frame)
1420 {
7ab98847
EZ
1421 if ((FRAME_TERMCAP_P (XFRAME (frame))
1422 || FRAME_MSDOS_P (XFRAME (frame)))
9628b887
KL
1423 && FRAME_TTY (XFRAME (frame)) == tty_out)
1424 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1425 }
86a5659e 1426 }
91bac16a 1427
9628b887 1428 tty_out->term_initted = 1;
86a5659e
JB
1429}
1430
1431/* Return nonzero if safe to use tabs in output.
1432 At the time this is called, init_sys_modes has not been done yet. */
177c0ea7 1433
dfcf069d 1434int
16c290d8 1435tabs_safe_p (int fd)
86a5659e 1436{
6548cf00 1437 struct emacs_tty etty;
91bac16a 1438
16c290d8 1439 EMACS_GET_TTY (fd, &etty);
6548cf00 1440 return EMACS_TTY_TABS_OK (&etty);
86a5659e 1441}
73d5358f 1442\f
86a5659e 1443/* Get terminal size from system.
73d5358f
RS
1444 Store number of lines into *HEIGHTP and width into *WIDTHP.
1445 We store 0 if there's no valid information. */
86a5659e 1446
08633194 1447void
16c290d8 1448get_tty_size (int fd, int *widthp, int *heightp)
86a5659e 1449{
86a5659e 1450
86a5659e 1451#ifdef TIOCGWINSZ
91bac16a
JB
1452
1453 /* BSD-style. */
86a5659e 1454 struct winsize size;
91bac16a 1455
16c290d8 1456 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
91bac16a
JB
1457 *widthp = *heightp = 0;
1458 else
1459 {
1460 *widthp = size.ws_col;
1461 *heightp = size.ws_row;
1462 }
1463
1464#else
1465#ifdef TIOCGSIZE
1466
1467 /* SunOS - style. */
177c0ea7 1468 struct ttysize size;
91bac16a 1469
16c290d8 1470 if (ioctl (fd, TIOCGSIZE, &size) == -1)
91bac16a
JB
1471 *widthp = *heightp = 0;
1472 else
1473 {
1474 *widthp = size.ts_cols;
1475 *heightp = size.ts_lines;
1476 }
1477
207bdbdb
RS
1478#else
1479#ifdef MSDOS
1480 *widthp = ScreenCols ();
1481 *heightp = ScreenRows ();
86a5659e
JB
1482#else /* system doesn't know size */
1483 *widthp = 0;
1484 *heightp = 0;
207bdbdb 1485#endif
91bac16a
JB
1486#endif /* not SunOS-style */
1487#endif /* not BSD-style */
86a5659e 1488}
91bac16a 1489
73d5358f
RS
1490/* Set the logical window size associated with descriptor FD
1491 to HEIGHT and WIDTH. This is used mainly with ptys. */
1492
1493int
1494set_window_size (fd, height, width)
1495 int fd, height, width;
1496{
1497#ifdef TIOCSWINSZ
1498
1499 /* BSD-style. */
1500 struct winsize size;
1501 size.ws_row = height;
1502 size.ws_col = width;
1503
1504 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1505 return 0; /* error */
1506 else
1507 return 1;
1508
1509#else
1510#ifdef TIOCSSIZE
1511
1512 /* SunOS - style. */
177c0ea7 1513 struct ttysize size;
73d5358f
RS
1514 size.ts_lines = height;
1515 size.ts_cols = width;
1516
1517 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1518 return 0;
1519 else
1520 return 1;
1521#else
1522 return -1;
1523#endif /* not SunOS-style */
1524#endif /* not BSD-style */
1525}
1526
86a5659e 1527\f
da8e1115
KL
1528
1529/* Prepare all terminal devices for exiting Emacs. */
1530
28d440ab
KL
1531void
1532reset_all_sys_modes (void)
1533{
28d7d09f 1534 struct tty_display_info *tty;
16c290d8 1535 for (tty = tty_list; tty; tty = tty->next)
28d440ab 1536 reset_sys_modes (tty);
28d440ab
KL
1537}
1538
0a125897 1539/* Prepare the terminal for closing it; move the cursor to the
0137dbf7 1540 bottom of the frame, turn off interrupt-driven I/O, etc. */
da8e1115 1541
08633194 1542void
9628b887 1543reset_sys_modes (tty_out)
28d7d09f 1544 struct tty_display_info *tty_out;
86a5659e
JB
1545{
1546 if (noninteractive)
1547 {
1548 fflush (stdout);
1549 return;
1550 }
9628b887 1551 if (!tty_out->term_initted)
86a5659e 1552 return;
da8e1115 1553
0b0d3e0b
KL
1554 if (!tty_out->output)
1555 return; /* The tty is suspended. */
1556
da8e1115
KL
1557 /* Go to and clear the last line of the terminal. */
1558
0a125897 1559 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
0b0d3e0b 1560
da8e1115
KL
1561 /* Code adapted from tty_clear_end_of_line. */
1562 if (tty_out->TS_clr_line)
1563 {
1564 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1565 }
1566 else
1567 { /* have to do it the hard way */
1568 int i;
ed8dad6b 1569 tty_turn_off_insert (tty_out);
0b0d3e0b 1570
da8e1115 1571 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
0b0d3e0b
KL
1572 {
1573 fputc (' ', tty_out->output);
1574 }
da8e1115 1575 }
0b0d3e0b 1576
0a125897 1577 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
819b8f00
KL
1578 fflush (tty_out->output);
1579
69fb5031
JR
1580 if (tty_out->terminal->reset_terminal_modes_hook)
1581 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
2f98e6e3 1582
2a633456 1583#ifdef BSD_SYSTEM
86a5659e 1584 /* Avoid possible loss of output when changing terminal modes. */
0b0d3e0b 1585 fsync (fileno (tty_out->output));
86a5659e 1586#endif
91bac16a 1587
86a5659e 1588#ifdef F_SETFL
eb8c3be9 1589#ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
86a5659e
JB
1590 if (interrupt_input)
1591 {
0b0d3e0b
KL
1592 reset_sigio (fileno (tty_out->input));
1593 fcntl (fileno (tty_out->input), F_SETOWN,
1594 old_fcntl_owner[fileno (tty_out->input)]);
86a5659e
JB
1595 }
1596#endif /* F_SETOWN */
a6b00318 1597#ifdef O_NDELAY
0b0d3e0b
KL
1598 fcntl (fileno (tty_out->input), F_SETFL,
1599 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
a6b00318 1600#endif
86a5659e 1601#endif /* F_SETFL */
91bac16a 1602
fca177d4 1603 if (tty_out->old_tty)
0b0d3e0b 1604 while (EMACS_SET_TTY (fileno (tty_out->input),
fca177d4 1605 tty_out->old_tty, 0) < 0 && errno == EINTR)
7e32a4fb 1606 ;
86a5659e 1607
207bdbdb
RS
1608#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1609 dos_ttcooked ();
1610#endif
1611
0ba73609 1612#ifdef BSD_PGRPS
0b0d3e0b 1613 widen_foreground_group (fileno (tty_out->input));
9ae8f997 1614#endif
86a5659e
JB
1615}
1616\f
1617#ifdef HAVE_PTYS
1618
1619/* Set up the proper status flags for use of a pty. */
1620
08633194 1621void
86a5659e
JB
1622setup_pty (fd)
1623 int fd;
1624{
1625 /* I'm told that TOICREMOTE does not mean control chars
1626 "can't be sent" but rather that they don't have
1627 input-editing or signaling effects.
1628 That should be good, because we have other ways
1629 to do those things in Emacs.
1630 However, telnet mode seems not to work on 4.2.
1631 So TIOCREMOTE is turned off now. */
1632
1633 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1634 will hang. In particular, the "timeout" feature (which
1635 causes a read to return if there is no data available)
1636 does this. Also it is known that telnet mode will hang
1637 in such a way that Emacs must be stopped (perhaps this
1638 is the same problem).
177c0ea7 1639
86a5659e
JB
1640 If TIOCREMOTE is turned off, then there is a bug in
1641 hp-ux which sometimes loses data. Apparently the
1642 code which blocks the master process when the internal
1643 buffer fills up does not work. Other than this,
1644 though, everything else seems to work fine.
177c0ea7 1645
86a5659e
JB
1646 Since the latter lossage is more benign, we may as well
1647 lose that way. -- cph */
1648#ifdef FIONBIO
bdee2ef3 1649#if defined(UNIX98_PTYS)
86a5659e
JB
1650 {
1651 int on = 1;
1652 ioctl (fd, FIONBIO, &on);
1653 }
1654#endif
1655#endif
86a5659e
JB
1656}
1657#endif /* HAVE_PTYS */
1658\f
7c2fb837 1659#if !defined(CANNOT_DUMP) || !defined(SYSTEM_MALLOC)
86a5659e
JB
1660/* Some systems that cannot dump also cannot implement these. */
1661
1662/*
1663 * Return the address of the start of the text segment prior to
1664 * doing an unexec. After unexec the return value is undefined.
1665 * See crt0.c for further explanation and _start.
1666 *
1667 */
1668
c0c9ac48 1669#if !(defined (__NetBSD__) && defined (__ELF__))
260fe597 1670#ifndef HAVE_TEXT_START
86a5659e
JB
1671char *
1672start_of_text ()
1673{
1674#ifdef TEXT_START
1675 return ((char *) TEXT_START);
1676#else
86a5659e
JB
1677 extern int _start ();
1678 return ((char *) _start);
86a5659e
JB
1679#endif /* TEXT_START */
1680}
260fe597 1681#endif /* not HAVE_TEXT_START */
c0c9ac48 1682#endif
86a5659e
JB
1683
1684/*
1685 * Return the address of the start of the data segment prior to
1686 * doing an unexec. After unexec the return value is undefined.
1687 * See crt0.c for further information and definition of data_start.
1688 *
1689 * Apparently, on BSD systems this is etext at startup. On
1690 * USG systems (swapping) this is highly mmu dependent and
1691 * is also dependent on whether or not the program is running
1692 * with shared text. Generally there is a (possibly large)
1693 * gap between end of text and start of data with shared text.
1694 *
1695 * On Uniplus+ systems with shared text, data starts at a
1696 * fixed address. Each port (from a given oem) is generally
1697 * different, and the specific value of the start of data can
1698 * be obtained via the UniPlus+ specific "uvar" system call,
1699 * however the method outlined in crt0.c seems to be more portable.
1700 *
1701 * Probably what will have to happen when a USG unexec is available,
1702 * at least on UniPlus, is temacs will have to be made unshared so
1703 * that text and data are contiguous. Then once loadup is complete,
1704 * unexec will produce a shared executable where the data can be
ea5a0917 1705 * at the normal shared text boundary and the startofdata variable
86a5659e
JB
1706 * will be patched by unexec to the correct value.
1707 *
1708 */
177c0ea7 1709
be3abfa2 1710#ifndef start_of_data
86a5659e
JB
1711char *
1712start_of_data ()
1713{
1714#ifdef DATA_START
1715 return ((char *) DATA_START);
6c65530f
JB
1716#else
1717#ifdef ORDINARY_LINK
1718 /*
1719 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
1720 * data_start isn't defined. We take the address of environ, which
1721 * is known to live at or near the start of the system crt0.c, and
1722 * we don't sweat the handful of bytes that might lose.
1723 */
1724 extern char **environ;
1725
c4ea52a6 1726 return ((char *) &environ);
86a5659e
JB
1727#else
1728 extern int data_start;
1729 return ((char *) &data_start);
6c65530f
JB
1730#endif /* ORDINARY_LINK */
1731#endif /* DATA_START */
86a5659e 1732}
be3abfa2 1733#endif /* start_of_data */
86a5659e 1734#endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
86a5659e 1735\f
c0c86835
KH
1736/* init_system_name sets up the string for the Lisp function
1737 system-name to return. */
86a5659e 1738
c0c86835 1739extern Lisp_Object Vsystem_name;
86a5659e 1740
f8a80313
RS
1741#ifdef HAVE_SOCKETS
1742#include <sys/socket.h>
1743#include <netdb.h>
1744#endif /* HAVE_SOCKETS */
f8a80313 1745
8581cd64
KH
1746#ifdef TRY_AGAIN
1747#ifndef HAVE_H_ERRNO
1748extern int h_errno;
1749#endif
1750#endif /* TRY_AGAIN */
1751
c0c86835
KH
1752void
1753init_system_name ()
86a5659e 1754{
210b2b4f 1755#ifndef HAVE_GETHOSTNAME
c0c86835
KH
1756 struct utsname uts;
1757 uname (&uts);
1758 Vsystem_name = build_string (uts.nodename);
67004ffb 1759#else /* HAVE_GETHOSTNAME */
cc6e7269 1760 unsigned int hostname_size = 256;
c0c86835
KH
1761 char *hostname = (char *) alloca (hostname_size);
1762
1763 /* Try to get the host name; if the buffer is too short, try
1764 again. Apparently, the only indication gethostname gives of
1765 whether the buffer was large enough is the presence or absence
1766 of a '\0' in the string. Eech. */
1767 for (;;)
1768 {
1769 gethostname (hostname, hostname_size - 1);
1770 hostname[hostname_size - 1] = '\0';
1771
1772 /* Was the buffer large enough for the '\0'? */
1773 if (strlen (hostname) < hostname_size - 1)
1774 break;
1775
1776 hostname_size <<= 1;
1777 hostname = (char *) alloca (hostname_size);
1778 }
67004ffb 1779#ifdef HAVE_SOCKETS
c0c86835
KH
1780 /* Turn the hostname into the official, fully-qualified hostname.
1781 Don't do this if we're going to dump; this can confuse system
1782 libraries on some machines and make the dumped emacs core dump. */
67004ffb 1783#ifndef CANNOT_DUMP
c0c86835 1784 if (initialized)
67004ffb 1785#endif /* not CANNOT_DUMP */
960d894c
KH
1786 if (! index (hostname, '.'))
1787 {
960d894c 1788 int count;
3d66b985
JD
1789#ifdef HAVE_GETADDRINFO
1790 struct addrinfo *res;
1791 struct addrinfo hints;
1792 int ret;
1793
1794 memset (&hints, 0, sizeof(hints));
1795 hints.ai_socktype = SOCK_STREAM;
1796 hints.ai_flags = AI_CANONNAME;
1797
960d894c
KH
1798 for (count = 0;; count++)
1799 {
3d66b985
JD
1800 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1801 || ret != EAI_AGAIN)
1802 break;
1803
1804 if (count >= 5)
1805 break;
1806 Fsleep_for (make_number (1), Qnil);
1807 }
1808
1809 if (ret == 0)
1810 {
1811 struct addrinfo *it = res;
1812 while (it)
1813 {
1814 char *fqdn = it->ai_canonname;
1815 if (fqdn && index (fqdn, '.')
1816 && strcmp (fqdn, "localhost.localdomain") != 0)
1817 break;
1818 it = it->ai_next;
1819 }
1820 if (it)
1821 {
1822 hostname = alloca (strlen (it->ai_canonname) + 1);
1823 strcpy (hostname, it->ai_canonname);
1824 }
1825 freeaddrinfo (res);
1826 }
1827#else /* !HAVE_GETADDRINFO */
1828 struct hostent *hp;
1829 for (count = 0;; count++)
1830 {
1831
e24f1d55 1832#ifdef TRY_AGAIN
960d894c 1833 h_errno = 0;
e24f1d55 1834#endif
960d894c 1835 hp = gethostbyname (hostname);
efa04277 1836#ifdef TRY_AGAIN
960d894c
KH
1837 if (! (hp == 0 && h_errno == TRY_AGAIN))
1838#endif
3d66b985 1839
960d894c 1840 break;
3d66b985 1841
960d894c
KH
1842 if (count >= 5)
1843 break;
1844 Fsleep_for (make_number (1), Qnil);
1845 }
3d66b985 1846
960d894c
KH
1847 if (hp)
1848 {
1849 char *fqdn = (char *) hp->h_name;
960d894c
KH
1850
1851 if (!index (fqdn, '.'))
1852 {
1853 /* We still don't have a fully qualified domain name.
1854 Try to find one in the list of alternate names */
1855 char **alias = hp->h_aliases;
923721f4
CY
1856 while (*alias
1857 && (!index (*alias, '.')
1858 || !strcmp (*alias, "localhost.localdomain")))
960d894c
KH
1859 alias++;
1860 if (*alias)
1861 fqdn = *alias;
1862 }
1863 hostname = fqdn;
960d894c 1864 }
3d66b985 1865#endif /* !HAVE_GETADDRINFO */
960d894c 1866 }
67004ffb 1867#endif /* HAVE_SOCKETS */
c0c86835 1868 Vsystem_name = build_string (hostname);
67004ffb 1869#endif /* HAVE_GETHOSTNAME */
c0c86835
KH
1870 {
1871 unsigned char *p;
d5db4077 1872 for (p = SDATA (Vsystem_name); *p; p++)
c0c86835
KH
1873 if (*p == ' ' || *p == '\t')
1874 *p = '-';
1875 }
67004ffb 1876}
86a5659e 1877\f
7964ba9e 1878#ifndef MSDOS
4624371d 1879#if !defined (HAVE_SELECT)
86a5659e 1880
86d1f23a
KH
1881#include "sysselect.h"
1882#undef select
1883
1884#if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
86a5659e
JB
1885/* Cause explanatory error message at compile time,
1886 since the select emulation is not good enough for X. */
1887int *x = &x_windows_lose_if_no_select_system_call;
1888#endif
1889
1890/* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
1891 * Only checks read descriptors.
1892 */
1893/* How long to wait between checking fds in select */
1894#define SELECT_PAUSE 1
1895int select_alarmed;
1896
1897/* For longjmp'ing back to read_input_waiting. */
1898
1899jmp_buf read_alarm_throw;
1900
1901/* Nonzero if the alarm signal should throw back to read_input_waiting.
1902 The read_socket_hook function sets this to 1 while it is waiting. */
1903
1904int read_alarm_should_throw;
1905
1906SIGTYPE
1907select_alarm ()
1908{
1909 select_alarmed = 1;
86a5659e 1910 signal (SIGALRM, SIG_IGN);
333f1b6f 1911 SIGNAL_THREAD_CHECK (SIGALRM);
86a5659e
JB
1912 if (read_alarm_should_throw)
1913 longjmp (read_alarm_throw, 1);
1914}
1915
9d9f1812 1916#ifndef WINDOWSNT
86a5659e
JB
1917/* Only rfds are checked. */
1918int
86d1f23a 1919sys_select (nfds, rfds, wfds, efds, timeout)
86a5659e 1920 int nfds;
86d1f23a
KH
1921 SELECT_TYPE *rfds, *wfds, *efds;
1922 EMACS_TIME *timeout;
86a5659e 1923{
2246281f
KL
1924 /* XXX This needs to be updated for multi-tty support. Is there
1925 anybody who needs to emulate select these days? */
1926 int ravail = 0;
86d1f23a
KH
1927 SELECT_TYPE orfds;
1928 int timeoutval;
1929 int *local_timeout;
86a5659e
JB
1930 extern int proc_buffered_char[];
1931#ifndef subprocesses
1932 int process_tick = 0, update_tick = 0;
1933#else
1934 extern int process_tick, update_tick;
1935#endif
86a5659e
JB
1936 unsigned char buf;
1937
86d1f23a
KH
1938#if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
1939 /* If we're using X, then the native select will work; we only need the
1940 emulation for non-X usage. */
2246281f 1941 if (!NILP (Vinitial_window_system))
86d1f23a
KH
1942 return select (nfds, rfds, wfds, efds, timeout);
1943#endif
1944 timeoutval = timeout ? EMACS_SECS (*timeout) : 100000;
1945 local_timeout = &timeoutval;
1946 FD_ZERO (&orfds);
86a5659e
JB
1947 if (rfds)
1948 {
1949 orfds = *rfds;
86d1f23a 1950 FD_ZERO (rfds);
86a5659e
JB
1951 }
1952 if (wfds)
86d1f23a 1953 FD_ZERO (wfds);
86a5659e 1954 if (efds)
86d1f23a 1955 FD_ZERO (efds);
86a5659e
JB
1956
1957 /* If we are looking only for the terminal, with no timeout,
1958 just read it and wait -- that's more efficient. */
86d1f23a
KH
1959 if (*local_timeout == 100000 && process_tick == update_tick
1960 && FD_ISSET (0, &orfds))
86a5659e 1961 {
86d1f23a
KH
1962 int fd;
1963 for (fd = 1; fd < nfds; ++fd)
1964 if (FD_ISSET (fd, &orfds))
1965 goto hardway;
86a5659e
JB
1966 if (! detect_input_pending ())
1967 read_input_waiting ();
86d1f23a 1968 FD_SET (0, rfds);
86a5659e
JB
1969 return 1;
1970 }
1971
86d1f23a 1972 hardway:
86a5659e
JB
1973 /* Once a second, till the timer expires, check all the flagged read
1974 * descriptors to see if any input is available. If there is some then
1975 * set the corresponding bit in the return copy of rfds.
177c0ea7 1976 */
86a5659e
JB
1977 while (1)
1978 {
86d1f23a 1979 register int to_check, fd;
86a5659e
JB
1980
1981 if (rfds)
1982 {
86d1f23a 1983 for (to_check = nfds, fd = 0; --to_check >= 0; fd++)
86a5659e 1984 {
86d1f23a 1985 if (FD_ISSET (fd, &orfds))
86a5659e
JB
1986 {
1987 int avail = 0, status = 0;
1988
86d1f23a 1989 if (fd == 0)
86a5659e
JB
1990 avail = detect_input_pending (); /* Special keyboard handler */
1991 else
1992 {
1993#ifdef FIONREAD
1994 status = ioctl (fd, FIONREAD, &avail);
1995#else /* no FIONREAD */
1996 /* Hoping it will return -1 if nothing available
1997 or 0 if all 0 chars requested are read. */
1998 if (proc_buffered_char[fd] >= 0)
1999 avail = 1;
2000 else
2001 {
2002 avail = read (fd, &buf, 1);
2003 if (avail > 0)
2004 proc_buffered_char[fd] = buf;
2005 }
2006#endif /* no FIONREAD */
2007 }
2008 if (status >= 0 && avail > 0)
2009 {
86d1f23a 2010 FD_SET (fd, rfds);
86a5659e
JB
2011 ravail++;
2012 }
2013 }
2014 }
2015 }
2016 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
2017 break;
ffdcc91d
GM
2018
2019 turn_on_atimers (0);
2020 signal (SIGALRM, select_alarm);
86a5659e
JB
2021 select_alarmed = 0;
2022 alarm (SELECT_PAUSE);
177c0ea7 2023
86a5659e
JB
2024 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2025 while (select_alarmed == 0 && *local_timeout != 0
2026 && process_tick == update_tick)
2027 {
2028 /* If we are interested in terminal input,
2029 wait by reading the terminal.
2030 That makes instant wakeup for terminal input at least. */
86d1f23a 2031 if (FD_ISSET (0, &orfds))
86a5659e
JB
2032 {
2033 read_input_waiting ();
2034 if (detect_input_pending ())
2035 select_alarmed = 1;
2036 }
2037 else
2038 pause ();
2039 }
2040 (*local_timeout) -= SELECT_PAUSE;
177c0ea7 2041
ffdcc91d
GM
2042 /* Reset the old alarm if there was one. */
2043 turn_on_atimers (1);
177c0ea7 2044
86a5659e
JB
2045 if (*local_timeout == 0) /* Stop on timer being cleared */
2046 break;
2047 }
2048 return ravail;
2049}
30790a37 2050#endif /* not WINDOWSNT */
86a5659e
JB
2051
2052/* Read keyboard input into the standard buffer,
2053 waiting for at least one character. */
2054
dfcf069d 2055void
86a5659e
JB
2056read_input_waiting ()
2057{
2246281f
KL
2058 /* XXX This needs to be updated for multi-tty support. Is there
2059 anybody who needs to emulate select these days? */
34567704
JB
2060 int nread, i;
2061 extern int quit_char;
86a5659e
JB
2062
2063 if (read_socket_hook)
2064 {
9f893fc6
KS
2065 struct input_event hold_quit;
2066
2067 EVENT_INIT (hold_quit);
2068 hold_quit.kind = NO_EVENT;
2069
86a5659e
JB
2070 read_alarm_should_throw = 0;
2071 if (! setjmp (read_alarm_throw))
9f893fc6 2072 nread = (*read_socket_hook) (0, 1, &hold_quit);
86a5659e
JB
2073 else
2074 nread = -1;
f4a7e5bd 2075
9f893fc6
KS
2076 if (hold_quit.kind != NO_EVENT)
2077 kbd_buffer_store_event (&hold_quit);
86a5659e
JB
2078 }
2079 else
86a5659e 2080 {
50acda85 2081 struct input_event e;
f4a7e5bd
RS
2082 char buf[3];
2083 nread = read (fileno (stdin), buf, 1);
50acda85 2084 EVENT_INIT (e);
f4a7e5bd
RS
2085
2086 /* Scan the chars for C-g and store them in kbd_buffer. */
e43bd4f5 2087 e.kind = ASCII_KEYSTROKE_EVENT;
2d064114 2088 e.frame_or_window = selected_frame;
f4a7e5bd
RS
2089 e.modifiers = 0;
2090 for (i = 0; i < nread; i++)
a00d5589 2091 {
f4a7e5bd
RS
2092 /* Convert chars > 0177 to meta events if desired.
2093 We do this under the same conditions that read_avail_input does. */
2094 if (read_socket_hook == 0)
2095 {
2096 /* If the user says she has a meta key, then believe her. */
2097 if (meta_key == 1 && (buf[i] & 0x80))
2098 e.modifiers = meta_modifier;
2099 if (meta_key != 2)
2100 buf[i] &= ~0x80;
2101 }
b95520f5 2102
c81d47b4 2103 XSETINT (e.code, buf[i]);
f4a7e5bd
RS
2104 kbd_buffer_store_event (&e);
2105 /* Don't look at input that follows a C-g too closely.
2106 This reduces lossage due to autorepeat on C-g. */
2107 if (buf[i] == quit_char)
2108 break;
2109 }
86a5659e
JB
2110 }
2111}
2112
4624371d 2113#if !defined (HAVE_SELECT)
819b8f00
KL
2114#define select sys_select
2115#endif
2116
86a5659e 2117#endif /* not HAVE_SELECT */
7964ba9e 2118#endif /* not MSDOS */
86a5659e 2119\f
86a5659e
JB
2120/* POSIX signals support - DJB */
2121/* Anyone with POSIX signals should have ANSI C declarations */
2122
2123#ifdef POSIX_SIGNALS
2124
c639b0e3 2125sigset_t empty_mask, full_mask;
86a5659e 2126
86a5659e
JB
2127signal_handler_t
2128sys_signal (int signal_number, signal_handler_t action)
2129{
c639b0e3 2130 struct sigaction new_action, old_action;
86a5659e 2131 sigemptyset (&new_action.sa_mask);
e5c99298 2132 new_action.sa_handler = action;
ef874e3d
AS
2133 new_action.sa_flags = 0;
2134#if defined (SA_RESTART)
25ab68af 2135 /* Emacs mostly works better with restartable system services. If this
55fafcf0
RS
2136 flag exists, we probably want to turn it on here.
2137 However, on some systems this resets the timeout of `select'
2138 which means that `select' never finishes if it keeps getting signals.
2139 BROKEN_SA_RESTART is defined on those systems. */
275464e7
SM
2140 /* It's not clear why the comment above says "mostly works better". --Stef
2141 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
2142 for pending input so we need long-running syscalls to be interrupted
2143 after a signal that sets the interrupt_input_pending flag. */
766f52ec
AS
2144 /* Non-interactive keyboard input goes through stdio, where we always
2145 want restartable system calls. */
ef874e3d
AS
2146# if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT)
2147 if (noninteractive)
2148# endif
2149 new_action.sa_flags = SA_RESTART;
25ab68af 2150#endif
d32b2f3c 2151 sigaction (signal_number, &new_action, &old_action);
e5c99298 2152 return (old_action.sa_handler);
86a5659e
JB
2153}
2154
e065a56e
JB
2155#ifndef __GNUC__
2156/* If we're compiling with GCC, we don't need this function, since it
2157 can be written as a macro. */
2158sigset_t
2159sys_sigmask (int sig)
2160{
2161 sigset_t mask;
2162 sigemptyset (&mask);
2163 sigaddset (&mask, sig);
2164 return mask;
2165}
2166#endif
2167
86a5659e
JB
2168/* I'd like to have these guys return pointers to the mask storage in here,
2169 but there'd be trouble if the code was saving multiple masks. I'll be
2170 safe and pass the structure. It normally won't be more than 2 bytes
2171 anyhow. - DJB */
2172
2173sigset_t
2174sys_sigblock (sigset_t new_mask)
2175{
2176 sigset_t old_mask;
2177 sigprocmask (SIG_BLOCK, &new_mask, &old_mask);
2178 return (old_mask);
2179}
2180
2181sigset_t
2182sys_sigunblock (sigset_t new_mask)
2183{
2184 sigset_t old_mask;
2185 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask);
2186 return (old_mask);
2187}
2188
2189sigset_t
2190sys_sigsetmask (sigset_t new_mask)
2191{
2192 sigset_t old_mask;
2193 sigprocmask (SIG_SETMASK, &new_mask, &old_mask);
2194 return (old_mask);
2195}
2196
2197#endif /* POSIX_SIGNALS */
2198\f
b80263be 2199#if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
ca9c0567
PE
2200static char *my_sys_siglist[NSIG];
2201# ifdef sys_siglist
2202# undef sys_siglist
2203# endif
2204# define sys_siglist my_sys_siglist
2205#endif
2206
2207void
2208init_signals ()
2209{
2210#ifdef POSIX_SIGNALS
2211 sigemptyset (&empty_mask);
2212 sigfillset (&full_mask);
2213#endif
2214
b80263be 2215#if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
ca9c0567
PE
2216 if (! initialized)
2217 {
2218# ifdef SIGABRT
2219 sys_siglist[SIGABRT] = "Aborted";
2220# endif
2221# ifdef SIGAIO
2222 sys_siglist[SIGAIO] = "LAN I/O interrupt";
2223# endif
2224# ifdef SIGALRM
2225 sys_siglist[SIGALRM] = "Alarm clock";
2226# endif
2227# ifdef SIGBUS
2228 sys_siglist[SIGBUS] = "Bus error";
2229# endif
2230# ifdef SIGCLD
2231 sys_siglist[SIGCLD] = "Child status changed";
2232# endif
2233# ifdef SIGCHLD
2234 sys_siglist[SIGCHLD] = "Child status changed";
2235# endif
2236# ifdef SIGCONT
2237 sys_siglist[SIGCONT] = "Continued";
2238# endif
2239# ifdef SIGDANGER
2240 sys_siglist[SIGDANGER] = "Swap space dangerously low";
2241# endif
2242# ifdef SIGDGNOTIFY
2243 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
2244# endif
2245# ifdef SIGEMT
2246 sys_siglist[SIGEMT] = "Emulation trap";
2247# endif
2248# ifdef SIGFPE
2249 sys_siglist[SIGFPE] = "Arithmetic exception";
2250# endif
2251# ifdef SIGFREEZE
2252 sys_siglist[SIGFREEZE] = "SIGFREEZE";
2253# endif
2254# ifdef SIGGRANT
2255 sys_siglist[SIGGRANT] = "Monitor mode granted";
2256# endif
2257# ifdef SIGHUP
2258 sys_siglist[SIGHUP] = "Hangup";
2259# endif
2260# ifdef SIGILL
2261 sys_siglist[SIGILL] = "Illegal instruction";
2262# endif
2263# ifdef SIGINT
2264 sys_siglist[SIGINT] = "Interrupt";
2265# endif
2266# ifdef SIGIO
2267 sys_siglist[SIGIO] = "I/O possible";
2268# endif
2269# ifdef SIGIOINT
2270 sys_siglist[SIGIOINT] = "I/O intervention required";
2271# endif
2272# ifdef SIGIOT
2273 sys_siglist[SIGIOT] = "IOT trap";
2274# endif
2275# ifdef SIGKILL
2276 sys_siglist[SIGKILL] = "Killed";
2277# endif
2278# ifdef SIGLOST
2279 sys_siglist[SIGLOST] = "Resource lost";
2280# endif
2281# ifdef SIGLWP
2282 sys_siglist[SIGLWP] = "SIGLWP";
2283# endif
2284# ifdef SIGMSG
2285 sys_siglist[SIGMSG] = "Monitor mode data available";
2286# endif
2287# ifdef SIGPHONE
2288 sys_siglist[SIGWIND] = "SIGPHONE";
2289# endif
2290# ifdef SIGPIPE
2291 sys_siglist[SIGPIPE] = "Broken pipe";
2292# endif
2293# ifdef SIGPOLL
2294 sys_siglist[SIGPOLL] = "Pollable event occurred";
2295# endif
2296# ifdef SIGPROF
2297 sys_siglist[SIGPROF] = "Profiling timer expired";
2298# endif
2299# ifdef SIGPTY
2300 sys_siglist[SIGPTY] = "PTY I/O interrupt";
2301# endif
2302# ifdef SIGPWR
2303 sys_siglist[SIGPWR] = "Power-fail restart";
2304# endif
2305# ifdef SIGQUIT
2306 sys_siglist[SIGQUIT] = "Quit";
2307# endif
2308# ifdef SIGRETRACT
2309 sys_siglist[SIGRETRACT] = "Need to relinguish monitor mode";
2310# endif
2311# ifdef SIGSAK
2312 sys_siglist[SIGSAK] = "Secure attention";
2313# endif
2314# ifdef SIGSEGV
2315 sys_siglist[SIGSEGV] = "Segmentation violation";
2316# endif
2317# ifdef SIGSOUND
2318 sys_siglist[SIGSOUND] = "Sound completed";
2319# endif
2320# ifdef SIGSTOP
2321 sys_siglist[SIGSTOP] = "Stopped (signal)";
2322# endif
2323# ifdef SIGSTP
2324 sys_siglist[SIGSTP] = "Stopped (user)";
2325# endif
2326# ifdef SIGSYS
2327 sys_siglist[SIGSYS] = "Bad argument to system call";
2328# endif
2329# ifdef SIGTERM
2330 sys_siglist[SIGTERM] = "Terminated";
2331# endif
2332# ifdef SIGTHAW
2333 sys_siglist[SIGTHAW] = "SIGTHAW";
2334# endif
2335# ifdef SIGTRAP
2336 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
2337# endif
2338# ifdef SIGTSTP
2339 sys_siglist[SIGTSTP] = "Stopped (user)";
2340# endif
2341# ifdef SIGTTIN
2342 sys_siglist[SIGTTIN] = "Stopped (tty input)";
2343# endif
2344# ifdef SIGTTOU
2345 sys_siglist[SIGTTOU] = "Stopped (tty output)";
2346# endif
2347# ifdef SIGURG
2348 sys_siglist[SIGURG] = "Urgent I/O condition";
2349# endif
2350# ifdef SIGUSR1
2351 sys_siglist[SIGUSR1] = "User defined signal 1";
2352# endif
2353# ifdef SIGUSR2
2354 sys_siglist[SIGUSR2] = "User defined signal 2";
2355# endif
2356# ifdef SIGVTALRM
2357 sys_siglist[SIGVTALRM] = "Virtual timer expired";
2358# endif
2359# ifdef SIGWAITING
2360 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
2361# endif
2362# ifdef SIGWINCH
2363 sys_siglist[SIGWINCH] = "Window size changed";
2364# endif
2365# ifdef SIGWIND
2366 sys_siglist[SIGWIND] = "SIGWIND";
2367# endif
2368# ifdef SIGXCPU
2369 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
2370# endif
2371# ifdef SIGXFSZ
2372 sys_siglist[SIGXFSZ] = "File size limit exceeded";
2373# endif
2374 }
b80263be 2375#endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
ca9c0567
PE
2376}
2377\f
9927a7b1 2378#ifndef HAVE_RANDOM
4bb8c8b7
KH
2379#ifdef random
2380#define HAVE_RANDOM
2381#endif
2382#endif
2383
2384/* Figure out how many bits the system's random number generator uses.
2385 `random' and `lrand48' are assumed to return 31 usable bits.
2386 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2387 so we'll shift it and treat it like the 15-bit USG `rand'. */
2388
2389#ifndef RAND_BITS
2390# ifdef HAVE_RANDOM
2391# define RAND_BITS 31
2392# else /* !HAVE_RANDOM */
2393# ifdef HAVE_LRAND48
2394# define RAND_BITS 31
2395# define random lrand48
2396# else /* !HAVE_LRAND48 */
2397# define RAND_BITS 15
2398# if RAND_MAX == 32767
2399# define random rand
2400# else /* RAND_MAX != 32767 */
2401# if RAND_MAX == 2147483647
2402# define random() (rand () >> 16)
2403# else /* RAND_MAX != 2147483647 */
2404# ifdef USG
2405# define random rand
2406# else
2407# define random() (rand () >> 16)
2a633456 2408# endif /* !USG */
4bb8c8b7
KH
2409# endif /* RAND_MAX != 2147483647 */
2410# endif /* RAND_MAX != 32767 */
2411# endif /* !HAVE_LRAND48 */
2412# endif /* !HAVE_RANDOM */
2413#endif /* !RAND_BITS */
2e46c7c6 2414
4bb8c8b7
KH
2415void
2416seed_random (arg)
2417 long arg;
86a5659e 2418{
4bb8c8b7
KH
2419#ifdef HAVE_RANDOM
2420 srandom ((unsigned int)arg);
f8b53a82 2421#else
4bb8c8b7 2422# ifdef HAVE_LRAND48
76425a49 2423 srand48 (arg);
4bb8c8b7
KH
2424# else
2425 srand ((unsigned int)arg);
2426# endif
2e46c7c6 2427#endif
86a5659e
JB
2428}
2429
4bb8c8b7
KH
2430/*
2431 * Build a full Emacs-sized word out of whatever we've got.
2432 * This suffices even for a 64-bit architecture with a 15-bit rand.
2433 */
2434long
2435get_random ()
2436{
2437 long val = random ();
2438#if VALBITS > RAND_BITS
2439 val = (val << RAND_BITS) ^ random ();
2440#if VALBITS > 2*RAND_BITS
2441 val = (val << RAND_BITS) ^ random ();
2442#if VALBITS > 3*RAND_BITS
2443 val = (val << RAND_BITS) ^ random ();
2444#if VALBITS > 4*RAND_BITS
2445 val = (val << RAND_BITS) ^ random ();
2446#endif /* need at least 5 */
2447#endif /* need at least 4 */
2448#endif /* need at least 3 */
2449#endif /* need at least 2 */
2450 return val & ((1L << VALBITS) - 1);
2451}
7088d1ca
RM
2452
2453#ifndef HAVE_STRERROR
fe03522b 2454#ifndef WINDOWSNT
7088d1ca
RM
2455char *
2456strerror (errnum)
2457 int errnum;
2458{
2459 extern char *sys_errlist[];
2460 extern int sys_nerr;
2461
2462 if (errnum >= 0 && errnum < sys_nerr)
2463 return sys_errlist[errnum];
2464 return (char *) "Unknown error";
2465}
fe03522b 2466#endif /* not WINDOWSNT */
7088d1ca 2467#endif /* ! HAVE_STRERROR */
86a5659e 2468\f
86a5659e 2469int
68c45bf0 2470emacs_open (path, oflag, mode)
8c2ba7de 2471 const char *path;
86a5659e
JB
2472 int oflag, mode;
2473{
2474 register int rtnval;
68c45bf0 2475
86a5659e 2476 while ((rtnval = open (path, oflag, mode)) == -1
275464e7
SM
2477 && (errno == EINTR))
2478 QUIT;
86a5659e
JB
2479 return (rtnval);
2480}
2481
dfcf069d 2482int
68c45bf0 2483emacs_close (fd)
86a5659e
JB
2484 int fd;
2485{
fe111daf 2486 int did_retry = 0;
86a5659e
JB
2487 register int rtnval;
2488
2489 while ((rtnval = close (fd)) == -1
fe111daf
KH
2490 && (errno == EINTR))
2491 did_retry = 1;
2492
2493 /* If close is interrupted SunOS 4.1 may or may not have closed the
2494 file descriptor. If it did the second close will fail with
2495 errno = EBADF. That means we have succeeded. */
2496 if (rtnval == -1 && did_retry && errno == EBADF)
2497 return 0;
2498
86a5659e
JB
2499 return rtnval;
2500}
2501
86a5659e 2502int
68c45bf0 2503emacs_read (fildes, buf, nbyte)
86a5659e
JB
2504 int fildes;
2505 char *buf;
2506 unsigned int nbyte;
2507{
2508 register int rtnval;
177c0ea7 2509
86a5659e 2510 while ((rtnval = read (fildes, buf, nbyte)) == -1
275464e7
SM
2511 && (errno == EINTR))
2512 QUIT;
86a5659e
JB
2513 return (rtnval);
2514}
2515
2516int
68c45bf0 2517emacs_write (fildes, buf, nbyte)
86a5659e 2518 int fildes;
7b1cc119 2519 const char *buf;
86a5659e
JB
2520 unsigned int nbyte;
2521{
b95520f5 2522 register int rtnval, bytes_written;
86a5659e 2523
b95520f5
BF
2524 bytes_written = 0;
2525
2526 while (nbyte > 0)
2527 {
2528 rtnval = write (fildes, buf, nbyte);
2529
2530 if (rtnval == -1)
2531 {
2532 if (errno == EINTR)
77220eeb
SM
2533 {
2534#ifdef SYNC_INPUT
2535 /* I originally used `QUIT' but that might causes files to
2536 be truncated if you hit C-g in the middle of it. --Stef */
55310b94 2537 process_pending_signals ();
77220eeb
SM
2538#endif
2539 continue;
2540 }
b95520f5 2541 else
aa670904 2542 return (bytes_written ? bytes_written : -1);
b95520f5
BF
2543 }
2544
2545 buf += rtnval;
2546 nbyte -= rtnval;
2547 bytes_written += rtnval;
2548 }
2549 return (bytes_written);
86a5659e 2550}
86a5659e
JB
2551\f
2552#ifdef USG
2553/*
2554 * All of the following are for USG.
2555 *
2556 * On USG systems the system calls are INTERRUPTIBLE by signals
2557 * that the user program has elected to catch. Thus the system call
2558 * must be retried in these cases. To handle this without massive
2559 * changes in the source code, we remap the standard system call names
2560 * to names for our own functions in sysdep.c that do the system call
2561 * with retries. Actually, for portability reasons, it is good
2562 * programming practice, as this example shows, to limit all actual
eb8c3be9 2563 * system calls to a single occurrence in the source. Sure, this
86a5659e
JB
2564 * adds an extra level of function call overhead but it is almost
2565 * always negligible. Fred Fish, Unisoft Systems Inc.
2566 */
2567
86a5659e
JB
2568/*
2569 * Warning, this function may not duplicate 4.2 action properly
2570 * under error conditions.
2571 */
2572
2573#ifndef MAXPATHLEN
2574/* In 4.1, param.h fails to define this. */
2575#define MAXPATHLEN 1024
2576#endif
2577
2578#ifndef HAVE_GETWD
2579
2580char *
2581getwd (pathname)
2582 char *pathname;
2583{
2584 char *npath, *spath;
2585 extern char *getcwd ();
2586
9ac0d9e0 2587 BLOCK_INPUT; /* getcwd uses malloc */
86a5659e 2588 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
f4a7e5bd 2589 if (spath == 0)
18b6bc73
GM
2590 {
2591 UNBLOCK_INPUT;
2592 return spath;
2593 }
86a5659e
JB
2594 /* On Altos 3068, getcwd can return @hostname/dir, so discard
2595 up to first slash. Should be harmless on other systems. */
2596 while (*npath && *npath != '/')
2597 npath++;
2598 strcpy (pathname, npath);
2599 free (spath); /* getcwd uses malloc */
9ac0d9e0 2600 UNBLOCK_INPUT;
86a5659e
JB
2601 return pathname;
2602}
2603
2604#endif /* HAVE_GETWD */
2605
2606/*
2607 * Emulate rename using unlink/link. Note that this is
2608 * only partially correct. Also, doesn't enforce restriction
2609 * that files be of same type (regular->regular, dir->dir, etc).
2610 */
2611
4746118a
JB
2612#ifndef HAVE_RENAME
2613
86a5659e 2614rename (from, to)
19c7afdf
JB
2615 const char *from;
2616 const char *to;
86a5659e
JB
2617{
2618 if (access (from, 0) == 0)
2619 {
2620 unlink (to);
2621 if (link (from, to) == 0)
2622 if (unlink (from) == 0)
2623 return (0);
2624 }
2625 return (-1);
2626}
2627
4746118a
JB
2628#endif
2629
86a5659e 2630
69ab3201 2631#if defined(HPUX) && !defined(HAVE_PERROR)
86a5659e
JB
2632
2633/* HPUX curses library references perror, but as far as we know
2634 it won't be called. Anyway this definition will do for now. */
2635
2636perror ()
2637{
2638}
69ab3201 2639#endif /* HPUX and not HAVE_PERROR */
86a5659e
JB
2640
2641#ifndef HAVE_DUP2
2642
2643/*
2644 * Emulate BSD dup2. First close newd if it already exists.
2645 * Then, attempt to dup oldd. If not successful, call dup2 recursively
2646 * until we are, then close the unsuccessful ones.
2647 */
2648
2649dup2 (oldd, newd)
2650 int oldd;
2651 int newd;
2652{
2653 register int fd, ret;
177c0ea7 2654
68c45bf0 2655 emacs_close (newd);
86a5659e
JB
2656
2657#ifdef F_DUPFD
68c45bf0 2658 return fcntl (oldd, F_DUPFD, newd);
86a5659e
JB
2659#else
2660 fd = dup (old);
2661 if (fd == -1)
2662 return -1;
2663 if (fd == new)
2664 return new;
2665 ret = dup2 (old,new);
68c45bf0 2666 emacs_close (fd);
86a5659e
JB
2667 return ret;
2668#endif
2669}
2670
2671#endif /* not HAVE_DUP2 */
2672
2673/*
2674 * Gettimeofday. Simulate as much as possible. Only accurate
2675 * to nearest second. Emacs doesn't use tzp so ignore it for now.
2676 * Only needed when subprocesses are defined.
2677 */
2678
2679#ifdef subprocesses
86a5659e
JB
2680#ifndef HAVE_GETTIMEOFDAY
2681#ifdef HAVE_TIMEVAL
177c0ea7 2682
86a5659e 2683/* ARGSUSED */
dfcf069d 2684int
86a5659e
JB
2685gettimeofday (tp, tzp)
2686 struct timeval *tp;
2687 struct timezone *tzp;
2688{
2689 extern long time ();
2690
177c0ea7 2691 tp->tv_sec = time ((long *)0);
86a5659e 2692 tp->tv_usec = 0;
4ca7594f
RS
2693 if (tzp != 0)
2694 tzp->tz_minuteswest = -1;
dfcf069d 2695 return 0;
86a5659e 2696}
177c0ea7 2697
86a5659e
JB
2698#endif
2699#endif
7c2fb837 2700#endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL */
177c0ea7 2701
86a5659e
JB
2702/*
2703 * This function will go away as soon as all the stubs fixed. (fnf)
2704 */
2705
dfcf069d 2706void
86a5659e
JB
2707croak (badfunc)
2708 char *badfunc;
2709{
2710 printf ("%s not yet implemented\r\n", badfunc);
28d440ab 2711 reset_all_sys_modes ();
86a5659e
JB
2712 exit (1);
2713}
2714
2715#endif /* USG */
2716\f
86a5659e
JB
2717/* Directory routines for systems that don't have them. */
2718
2719#ifdef SYSV_SYSTEM_DIR
2720
2721#include <dirent.h>
2722
9d9a7716 2723#if !defined (HAVE_CLOSEDIR)
cfdc57af 2724
86a5659e 2725int
9d9a7716 2726closedir (DIR *dirp /* stream from opendir */)
86a5659e 2727{
cfdc57af
RS
2728 int rtnval;
2729
68c45bf0 2730 rtnval = emacs_close (dirp->dd_fd);
1b929d25 2731
65aa44ac
JB
2732 /* Some systems (like Solaris) allocate the buffer and the DIR all
2733 in one block. Why in the world are we freeing this ourselves
2734 anyway? */
89f1e540 2735#if ! defined (SOLARIS2)
65aa44ac
JB
2736 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
2737#endif
9ac0d9e0 2738 xfree ((char *) dirp);
cfdc57af
RS
2739
2740 return rtnval;
86a5659e 2741}
9d9a7716 2742#endif /* not HAVE_CLOSEDIR */
86a5659e
JB
2743#endif /* SYSV_SYSTEM_DIR */
2744
23524fb9 2745\f
53ea491a 2746int
061ea326 2747set_file_times (filename, atime, mtime)
8c2ba7de 2748 const char *filename;
53ea491a
KH
2749 EMACS_TIME atime, mtime;
2750{
2751#ifdef HAVE_UTIMES
2752 struct timeval tv[2];
2753 tv[0] = atime;
2754 tv[1] = mtime;
8334eb21
RS
2755 return utimes (filename, tv);
2756#else /* not HAVE_UTIMES */
53ea491a
KH
2757 struct utimbuf utb;
2758 utb.actime = EMACS_SECS (atime);
2759 utb.modtime = EMACS_SECS (mtime);
8334eb21
RS
2760 return utime (filename, &utb);
2761#endif /* not HAVE_UTIMES */
53ea491a
KH
2762}
2763\f
23524fb9
JB
2764/* mkdir and rmdir functions, for systems which don't have them. */
2765
2766#ifndef HAVE_MKDIR
2767/*
2768 * Written by Robert Rother, Mariah Corporation, August 1985.
2769 *
2770 * If you want it, it's yours. All I ask in return is that if you
2771 * figure out how to do this in a Bourne Shell script you send me
2772 * a copy.
2773 * sdcsvax!rmr or rmr@uscd
2774 *
2775 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
db9cd97a 2776 * subroutine. 11Mar86; hoptoad!gnu
23524fb9
JB
2777 *
2778 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
2779 * subroutine didn't return EEXIST. It does now.
2780 */
2781
2782/*
2783 * Make a directory.
2784 */
f3892946
RS
2785#ifdef MKDIR_PROTOTYPE
2786MKDIR_PROTOTYPE
2787#else
23524fb9
JB
2788int
2789mkdir (dpath, dmode)
2790 char *dpath;
2791 int dmode;
f3892946 2792#endif
23524fb9 2793{
039f26a4 2794 int cpid, status, fd;
23524fb9
JB
2795 struct stat statbuf;
2796
2797 if (stat (dpath, &statbuf) == 0)
2798 {
2799 errno = EEXIST; /* Stat worked, so it already exists */
2800 return -1;
2801 }
2802
2803 /* If stat fails for a reason other than non-existence, return error */
2804 if (errno != ENOENT)
2805 return -1;
2806
039f26a4 2807 synch_process_alive = 1;
23524fb9
JB
2808 switch (cpid = fork ())
2809 {
2810
039f26a4 2811 case -1: /* Error in fork */
23524fb9
JB
2812 return (-1); /* Errno is set already */
2813
2814 case 0: /* Child process */
2815 /*
2816 * Cheap hack to set mode of new directory. Since this
2817 * child process is going away anyway, we zap its umask.
2818 * FIXME, this won't suffice to set SUID, SGID, etc. on this
2819 * directory. Does anybody care?
2820 */
2821 status = umask (0); /* Get current umask */
2822 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
68c45bf0 2823 fd = emacs_open ("/dev/null", O_RDWR, 0);
039f26a4
RS
2824 if (fd >= 0)
2825 {
2826 dup2 (fd, 0);
2827 dup2 (fd, 1);
2828 dup2 (fd, 2);
2829 }
23524fb9
JB
2830 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
2831 _exit (-1); /* Can't exec /bin/mkdir */
2832
2833 default: /* Parent process */
039f26a4 2834 wait_for_termination (cpid);
23524fb9
JB
2835 }
2836
6b0824c9
JD
2837 if (synch_process_death != 0 || synch_process_retcode != 0
2838 || synch_process_termsig != 0)
23524fb9
JB
2839 {
2840 errno = EIO; /* We don't know why, but */
2841 return -1; /* /bin/mkdir failed */
2842 }
2843
2844 return 0;
2845}
2846#endif /* not HAVE_MKDIR */
2847
2848#ifndef HAVE_RMDIR
2849int
2850rmdir (dpath)
2851 char *dpath;
2852{
039f26a4 2853 int cpid, status, fd;
23524fb9
JB
2854 struct stat statbuf;
2855
2856 if (stat (dpath, &statbuf) != 0)
2857 {
2858 /* Stat just set errno. We don't have to */
2859 return -1;
2860 }
2861
039f26a4 2862 synch_process_alive = 1;
23524fb9
JB
2863 switch (cpid = fork ())
2864 {
2865
039f26a4 2866 case -1: /* Error in fork */
23524fb9
JB
2867 return (-1); /* Errno is set already */
2868
2869 case 0: /* Child process */
68c45bf0 2870 fd = emacs_open ("/dev/null", O_RDWR, 0);
039f26a4
RS
2871 if (fd >= 0)
2872 {
2873 dup2 (fd, 0);
2874 dup2 (fd, 1);
2875 dup2 (fd, 2);
2876 }
f560db78
RS
2877 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
2878 _exit (-1); /* Can't exec /bin/rmdir */
2879
207bdbdb 2880 default: /* Parent process */
f560db78 2881 wait_for_termination (cpid);
23524fb9
JB
2882 }
2883
6b0824c9
JD
2884 if (synch_process_death != 0 || synch_process_retcode != 0
2885 || synch_process_termsig != 0)
23524fb9
JB
2886 {
2887 errno = EIO; /* We don't know why, but */
f560db78 2888 return -1; /* /bin/rmdir failed */
23524fb9
JB
2889 }
2890
2891 return 0;
2892}
2893#endif /* !HAVE_RMDIR */
2894
86a5659e 2895\f
7c2fb837 2896#ifndef BSTRING
86a5659e 2897
7c2fb837 2898#ifndef bzero
86a5659e 2899
7c2fb837
DN
2900void
2901bzero (b, length)
2902 register char *b;
2903 register int length;
86a5659e 2904{
7c2fb837
DN
2905 while (length-- > 0)
2906 *b++ = 0;
86a5659e
JB
2907}
2908
7c2fb837
DN
2909#endif /* no bzero */
2910#endif /* BSTRING */
177c0ea7 2911
7c2fb837
DN
2912#if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
2913#undef bcopy
86a5659e 2914
7c2fb837
DN
2915/* Saying `void' requires a declaration, above, where bcopy is used
2916 and that declaration causes pain for systems where bcopy is a macro. */
2917bcopy (b1, b2, length)
2918 register char *b1;
2919 register char *b2;
2920 register int length;
2921{
2922 while (length-- > 0)
2923 *b2++ = *b1++;
2924}
2925#endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
86a5659e 2926
7c2fb837
DN
2927#ifndef BSTRING
2928#ifndef bcmp
86a5659e 2929int
7c2fb837
DN
2930bcmp (b1, b2, length) /* This could be a macro! */
2931 register char *b1;
2932 register char *b2;
2933 register int length;
86a5659e 2934{
7c2fb837
DN
2935 while (length-- > 0)
2936 if (*b1++ != *b2++)
2937 return 1;
86a5659e
JB
2938
2939 return 0;
2940}
51417996
RS
2941#endif /* no bcmp */
2942#endif /* not BSTRING */
68c45bf0
PE
2943\f
2944#ifndef HAVE_STRSIGNAL
2945char *
2946strsignal (code)
2947 int code;
2948{
2949 char *signame = 0;
2950
2951 if (0 <= code && code < NSIG)
2952 {
68c45bf0
PE
2953 /* Cast to suppress warning if the table has const char *. */
2954 signame = (char *) sys_siglist[code];
68c45bf0 2955 }
c4ea52a6 2956
68c45bf0
PE
2957 return signame;
2958}
2959#endif /* HAVE_STRSIGNAL */
d888760c
GM
2960\f
2961#ifdef HAVE_TERMIOS
2962/* For make-serial-process */
2963int serial_open (char *port)
2964{
2965 int fd = -1;
2966
2967 fd = emacs_open ((char*) port,
2968 O_RDWR
2969#ifdef O_NONBLOCK
2970 | O_NONBLOCK
2971#else
2972 | O_NDELAY
2973#endif
2974#ifdef O_NOCTTY
2975 | O_NOCTTY
2976#endif
2977 , 0);
2978 if (fd < 0)
2979 {
2980 error ("Could not open %s: %s",
2981 port, emacs_strerror (errno));
2982 }
2983#ifdef TIOCEXCL
2984 ioctl (fd, TIOCEXCL, (char *) 0);
2985#endif
2986
2987 return fd;
2988}
2989#endif /* TERMIOS */
2990
2991#ifdef HAVE_TERMIOS
759d3f32
SM
2992
2993#if !defined (HAVE_CFMAKERAW)
2994/* Workaround for targets which are missing cfmakeraw. */
2995/* Pasted from man page. */
2996static void cfmakeraw (struct termios *termios_p)
2997{
2998 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2999 termios_p->c_oflag &= ~OPOST;
3000 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
3001 termios_p->c_cflag &= ~(CSIZE|PARENB);
3002 termios_p->c_cflag |= CS8;
3003}
3004#endif /* !defined (HAVE_CFMAKERAW */
3005
3006#if !defined (HAVE_CFSETSPEED)
3007/* Workaround for targets which are missing cfsetspeed. */
3008static int cfsetspeed (struct termios *termios_p, speed_t vitesse)
3009{
3010 return (cfsetispeed (termios_p, vitesse)
3011 + cfsetospeed (termios_p, vitesse));
3012}
3013#endif
3014
d888760c
GM
3015/* For serial-process-configure */
3016void
3017serial_configure (struct Lisp_Process *p,
3018 Lisp_Object contact)
3019{
3020 Lisp_Object childp2 = Qnil;
3021 Lisp_Object tem = Qnil;
3022 struct termios attr;
3023 int err = -1;
3024 char summary[4] = "???"; /* This usually becomes "8N1". */
3025
3026 childp2 = Fcopy_sequence (p->childp);
3027
3028 /* Read port attributes and prepare default configuration. */
3029 err = tcgetattr (p->outfd, &attr);
3030 if (err != 0)
3031 error ("tcgetattr() failed: %s", emacs_strerror (errno));
3032 cfmakeraw (&attr);
3033#if defined (CLOCAL)
3034 attr.c_cflag |= CLOCAL;
3035#endif
3036#if defined (CREAD)
6d1921be 3037 attr.c_cflag |= CREAD;
d888760c
GM
3038#endif
3039
3040 /* Configure speed. */
3041 if (!NILP (Fplist_member (contact, QCspeed)))
3042 tem = Fplist_get (contact, QCspeed);
3043 else
3044 tem = Fplist_get (p->childp, QCspeed);
3045 CHECK_NUMBER (tem);
3046 err = cfsetspeed (&attr, XINT (tem));
3047 if (err != 0)
3048 error ("cfsetspeed(%d) failed: %s", XINT (tem), emacs_strerror (errno));
3049 childp2 = Fplist_put (childp2, QCspeed, tem);
3050
3051 /* Configure bytesize. */
3052 if (!NILP (Fplist_member (contact, QCbytesize)))
3053 tem = Fplist_get (contact, QCbytesize);
3054 else
3055 tem = Fplist_get (p->childp, QCbytesize);
3056 if (NILP (tem))
3057 tem = make_number (8);
3058 CHECK_NUMBER (tem);
3059 if (XINT (tem) != 7 && XINT (tem) != 8)
3060 error (":bytesize must be nil (8), 7, or 8");
3061 summary[0] = XINT(tem) + '0';
3062#if defined (CSIZE) && defined (CS7) && defined (CS8)
3063 attr.c_cflag &= ~CSIZE;
3064 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
3065#else
16bad4dd 3066 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
d888760c
GM
3067 if (XINT (tem) != 8)
3068 error ("Bytesize cannot be changed");
3069#endif
3070 childp2 = Fplist_put (childp2, QCbytesize, tem);
3071
3072 /* Configure parity. */
3073 if (!NILP (Fplist_member (contact, QCparity)))
3074 tem = Fplist_get (contact, QCparity);
3075 else
3076 tem = Fplist_get (p->childp, QCparity);
3077 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
3078 error (":parity must be nil (no parity), `even', or `odd'");
3079#if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
3080 attr.c_cflag &= ~(PARENB | PARODD);
3081 attr.c_iflag &= ~(IGNPAR | INPCK);
3082 if (NILP (tem))
3083 {
3084 summary[1] = 'N';
3085 }
3086 else if (EQ (tem, Qeven))
3087 {
3088 summary[1] = 'E';
3089 attr.c_cflag |= PARENB;
3090 attr.c_iflag |= (IGNPAR | INPCK);
3091 }
3092 else if (EQ (tem, Qodd))
3093 {
3094 summary[1] = 'O';
3095 attr.c_cflag |= (PARENB | PARODD);
3096 attr.c_iflag |= (IGNPAR | INPCK);
3097 }
3098#else
16bad4dd 3099 /* Don't error on no parity, which should be set by cfmakeraw. */
d888760c
GM
3100 if (!NILP (tem))
3101 error ("Parity cannot be configured");
3102#endif
3103 childp2 = Fplist_put (childp2, QCparity, tem);
3104
3105 /* Configure stopbits. */
3106 if (!NILP (Fplist_member (contact, QCstopbits)))
3107 tem = Fplist_get (contact, QCstopbits);
3108 else
3109 tem = Fplist_get (p->childp, QCstopbits);
3110 if (NILP (tem))
3111 tem = make_number (1);
3112 CHECK_NUMBER (tem);
3113 if (XINT (tem) != 1 && XINT (tem) != 2)
3114 error (":stopbits must be nil (1 stopbit), 1, or 2");
3115 summary[2] = XINT (tem) + '0';
3116#if defined (CSTOPB)
3117 attr.c_cflag &= ~CSTOPB;
3118 if (XINT (tem) == 2)
3119 attr.c_cflag |= CSTOPB;
3120#else
16bad4dd 3121 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
d888760c
GM
3122 if (XINT (tem) != 1)
3123 error ("Stopbits cannot be configured");
3124#endif
3125 childp2 = Fplist_put (childp2, QCstopbits, tem);
3126
3127 /* Configure flowcontrol. */
3128 if (!NILP (Fplist_member (contact, QCflowcontrol)))
3129 tem = Fplist_get (contact, QCflowcontrol);
3130 else
3131 tem = Fplist_get (p->childp, QCflowcontrol);
3132 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
3133 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
3134#if defined (CRTSCTS)
3135 attr.c_cflag &= ~CRTSCTS;
3136#endif
3137#if defined (CNEW_RTSCTS)
3138 attr.c_cflag &= ~CNEW_RTSCTS;
3139#endif
3140#if defined (IXON) && defined (IXOFF)
3141 attr.c_iflag &= ~(IXON | IXOFF);
3142#endif
3143 if (NILP (tem))
3144 {
3145 /* Already configured. */
3146 }
3147 else if (EQ (tem, Qhw))
3148 {
3149#if defined (CRTSCTS)
3150 attr.c_cflag |= CRTSCTS;
3151#elif defined (CNEW_RTSCTS)
3152 attr.c_cflag |= CNEW_RTSCTS;
3153#else
3154 error ("Hardware flowcontrol (RTS/CTS) not supported");
3155#endif
3156 }
3157 else if (EQ (tem, Qsw))
3158 {
3159#if defined (IXON) && defined (IXOFF)
3160 attr.c_iflag |= (IXON | IXOFF);
3161#else
3162 error ("Software flowcontrol (XON/XOFF) not supported");
3163#endif
3164 }
3165 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
3166
3167 /* Activate configuration. */
3168 err = tcsetattr (p->outfd, TCSANOW, &attr);
3169 if (err != 0)
3170 error ("tcsetattr() failed: %s", emacs_strerror (errno));
3171
3172 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
3173 p->childp = childp2;
3174
3175}
3176#endif /* TERMIOS */
06e111a6
DN
3177\f
3178/* System depended enumeration of and access to system processes a-la ps(1). */
3179
3180#ifdef HAVE_PROCFS
3181
3182/* Process enumeration and access via /proc. */
3183
3184Lisp_Object
3185list_system_processes ()
3186{
3187 Lisp_Object procdir, match, proclist, next;
3188 struct gcpro gcpro1, gcpro2;
3189 register Lisp_Object tail;
3190
3191 GCPRO2 (procdir, match);
3192 /* For every process on the system, there's a directory in the
3193 "/proc" pseudo-directory whose name is the numeric ID of that
3194 process. */
3195 procdir = build_string ("/proc");
3196 match = build_string ("[0-9]+");
3197 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
3198
3199 /* `proclist' gives process IDs as strings. Destructively convert
3200 each string into a number. */
3201 for (tail = proclist; CONSP (tail); tail = next)
3202 {
3203 next = XCDR (tail);
3204 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
3205 }
3206 UNGCPRO;
3207
3208 /* directory_files_internal returns the files in reverse order; undo
3209 that. */
3210 proclist = Fnreverse (proclist);
3211 return proclist;
3212}
3213
c4605e09
EZ
3214/* The WINDOWSNT implementation is on w32.c.
3215 The MSDOS implementation is on dosfns.c. */
3216#elif !defined (WINDOWSNT) && !defined (MSDOS)
06e111a6
DN
3217
3218Lisp_Object
3219list_system_processes ()
3220{
3221 return Qnil;
3222}
91c85b70
EZ
3223
3224#endif /* !defined (WINDOWSNT) */
06e111a6
DN
3225
3226#ifdef GNU_LINUX
3227static void
3228time_from_jiffies (unsigned long long tval, long hz,
3229 time_t *sec, unsigned *usec)
3230{
3231 unsigned long long ullsec;
3232
3233 *sec = tval / hz;
3234 ullsec = *sec;
3235 tval -= ullsec * hz;
3236 /* Careful: if HZ > 1 million, then integer division by it yields zero. */
3237 if (hz <= 1000000)
3238 *usec = tval * 1000000 / hz;
3239 else
3240 *usec = tval / (hz / 1000000);
3241}
3242
3243static Lisp_Object
3244ltime_from_jiffies (unsigned long long tval, long hz)
3245{
3246 time_t sec;
3247 unsigned usec;
3248
3249 time_from_jiffies (tval, hz, &sec, &usec);
3250
3251 return list3 (make_number ((sec >> 16) & 0xffff),
3252 make_number (sec & 0xffff),
3253 make_number (usec));
3254}
3255
3256static void
3257get_up_time (time_t *sec, unsigned *usec)
3258{
3259 FILE *fup;
3260
3261 *sec = *usec = 0;
3262
3263 BLOCK_INPUT;
3264 fup = fopen ("/proc/uptime", "r");
3265
3266 if (fup)
3267 {
3268 double uptime, idletime;
3269
3270 /* The numbers in /proc/uptime use C-locale decimal point, but
3271 we already set ourselves to the C locale (see `fixup_locale'
3272 in emacs.c). */
3273 if (2 <= fscanf (fup, "%lf %lf", &uptime, &idletime))
3274 {
3275 *sec = uptime;
3276 *usec = (uptime - *sec) * 1000000;
3277 }
3278 fclose (fup);
3279 }
3280 UNBLOCK_INPUT;
3281}
3282
3283#define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
3284#define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
3285
3286static Lisp_Object
f4f634e8 3287procfs_ttyname (int rdev)
06e111a6
DN
3288{
3289 FILE *fdev = NULL;
3290 char name[PATH_MAX];
3291
3292 BLOCK_INPUT;
3293 fdev = fopen ("/proc/tty/drivers", "r");
3294
3295 if (fdev)
3296 {
3297 unsigned major;
3298 unsigned long minor_beg, minor_end;
3299 char minor[25]; /* 2 32-bit numbers + dash */
3300 char *endp;
3301
3302 while (!feof (fdev) && !ferror (fdev))
3303 {
3304 if (3 <= fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor)
3305 && major == MAJOR (rdev))
3306 {
3307 minor_beg = strtoul (minor, &endp, 0);
3308 if (*endp == '\0')
3309 minor_end = minor_beg;
3310 else if (*endp == '-')
3311 minor_end = strtoul (endp + 1, &endp, 0);
3312 else
3313 continue;
3314
3315 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
3316 {
3317 sprintf (name + strlen (name), "%lu", MINOR (rdev));
3318 break;
3319 }
3320 }
3321 }
3322 fclose (fdev);
3323 }
3324 UNBLOCK_INPUT;
3325 return build_string (name);
3326}
3327
3328static unsigned long
3329procfs_get_total_memory (void)
3330{
3331 FILE *fmem = NULL;
3332 unsigned long retval = 2 * 1024 * 1024; /* default: 2GB */
3333
3334 BLOCK_INPUT;
3335 fmem = fopen ("/proc/meminfo", "r");
3336
3337 if (fmem)
3338 {
3339 unsigned long entry_value;
3340 char entry_name[20]; /* the longest I saw is 13+1 */
3341
3342 while (!feof (fmem) && !ferror (fmem))
3343 {
3344 if (2 <= fscanf (fmem, "%s %lu kB\n", entry_name, &entry_value)
3345 && strcmp (entry_name, "MemTotal:") == 0)
3346 {
3347 retval = entry_value;
3348 break;
3349 }
3350 }
3351 fclose (fmem);
3352 }
3353 UNBLOCK_INPUT;
3354 return retval;
3355}
3356
3357Lisp_Object
f4f634e8 3358system_process_attributes (Lisp_Object pid)
06e111a6
DN
3359{
3360 char procfn[PATH_MAX], fn[PATH_MAX];
3361 struct stat st;
3362 struct passwd *pw;
3363 struct group *gr;
3364 long clocks_per_sec;
3365 char *procfn_end;
3366 char procbuf[1025], *p, *q;
3367 int fd;
3368 ssize_t nread;
3369 const char *cmd = NULL;
3370 char *cmdline = NULL;
3371 size_t cmdsize = 0, cmdline_size;
3372 unsigned char c;
3373 int proc_id, ppid, uid, gid, pgrp, sess, tty, tpgid, thcount;
3374 unsigned long long utime, stime, cutime, cstime, start;
3375 long priority, nice, rss;
3376 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3377 time_t sec;
3378 unsigned usec;
3379 EMACS_TIME tnow, tstart, tboot, telapsed,ttotal;
3380 double pcpu, pmem;
3381 Lisp_Object attrs = Qnil;
3382 Lisp_Object cmd_str, decoded_cmd, tem;
3383 struct gcpro gcpro1, gcpro2;
3384 EMACS_INT uid_eint, gid_eint;
3385
3386 CHECK_NUMBER_OR_FLOAT (pid);
3387 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid);
3388 sprintf (procfn, "/proc/%lu", proc_id);
3389 if (stat (procfn, &st) < 0)
3390 return attrs;
3391
3392 GCPRO2 (attrs, decoded_cmd);
3393
3394 /* euid egid */
3395 uid = st.st_uid;
3396 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3397 uid_eint = uid;
3398 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid_eint)), attrs);
3399 BLOCK_INPUT;
3400 pw = getpwuid (uid);
3401 UNBLOCK_INPUT;
3402 if (pw)
3403 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3404
3405 gid = st.st_gid;
3406 gid_eint = gid;
3407 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid_eint)), attrs);
3408 BLOCK_INPUT;
3409 gr = getgrgid (gid);
3410 UNBLOCK_INPUT;
3411 if (gr)
3412 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3413
3414 strcpy (fn, procfn);
3415 procfn_end = fn + strlen (fn);
3416 strcpy (procfn_end, "/stat");
3417 fd = emacs_open (fn, O_RDONLY, 0);
3418 if (fd >= 0 && (nread = emacs_read (fd, procbuf, sizeof(procbuf) - 1)) > 0)
3419 {
3420 procbuf[nread] = '\0';
3421 p = procbuf;
3422
3423 p = strchr (p, '(');
3424 if (p != NULL)
3425 {
3426 q = strrchr (p + 1, ')');
3427 /* comm */
3428 if (q != NULL)
3429 {
3430 cmd = p + 1;
3431 cmdsize = q - cmd;
3432 }
3433 }
3434 else
3435 q = NULL;
3436 if (cmd == NULL)
3437 {
3438 cmd = "???";
3439 cmdsize = 3;
3440 }
3441 /* Command name is encoded in locale-coding-system; decode it. */
3442 cmd_str = make_unibyte_string (cmd, cmdsize);
3443 decoded_cmd = code_convert_string_norecord (cmd_str,
3444 Vlocale_coding_system, 0);
3445 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3446
3447 if (q)
3448 {
3449 EMACS_INT ppid_eint, pgrp_eint, sess_eint, tpgid_eint, thcount_eint;
3450 p = q + 2;
3451 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
3452 sscanf (p, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
3453 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3454 &minflt, &cminflt, &majflt, &cmajflt,
3455 &utime, &stime, &cutime, &cstime,
3456 &priority, &nice, &thcount, &start, &vsize, &rss);
3457 {
3458 char state_str[2];
3459
3460 state_str[0] = c;
3461 state_str[1] = '\0';
3462 tem = build_string (state_str);
3463 attrs = Fcons (Fcons (Qstate, tem), attrs);
3464 }
3465 /* Stops GCC whining about limited range of data type. */
3466 ppid_eint = ppid;
3467 pgrp_eint = pgrp;
3468 sess_eint = sess;
3469 tpgid_eint = tpgid;
3470 thcount_eint = thcount;
3471 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid_eint)), attrs);
3472 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp_eint)), attrs);
3473 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess_eint)), attrs);
3474 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3475 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid_eint)), attrs);
3476 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3477 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3478 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)), attrs);
3479 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)), attrs);
3480 clocks_per_sec = sysconf (_SC_CLK_TCK);
3481 if (clocks_per_sec < 0)
3482 clocks_per_sec = 100;
3483 attrs = Fcons (Fcons (Qutime,
3484 ltime_from_jiffies (utime, clocks_per_sec)),
3485 attrs);
3486 attrs = Fcons (Fcons (Qstime,
3487 ltime_from_jiffies (stime, clocks_per_sec)),
3488 attrs);
ac1e4171
EZ
3489 attrs = Fcons (Fcons (Qtime,
3490 ltime_from_jiffies (stime+utime, clocks_per_sec)),
3491 attrs);
06e111a6
DN
3492 attrs = Fcons (Fcons (Qcutime,
3493 ltime_from_jiffies (cutime, clocks_per_sec)),
3494 attrs);
3495 attrs = Fcons (Fcons (Qcstime,
3496 ltime_from_jiffies (cstime, clocks_per_sec)),
ac1e4171
EZ
3497 attrs);
3498 attrs = Fcons (Fcons (Qctime,
3499 ltime_from_jiffies (cstime+cutime, clocks_per_sec)),
06e111a6
DN
3500 attrs);
3501 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3502 attrs = Fcons (Fcons (Qnice, make_number (nice)), attrs);
3503 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount_eint)), attrs);
3504 EMACS_GET_TIME (tnow);
3505 get_up_time (&sec, &usec);
3506 EMACS_SET_SECS (telapsed, sec);
3507 EMACS_SET_USECS (telapsed, usec);
3508 EMACS_SUB_TIME (tboot, tnow, telapsed);
3509 time_from_jiffies (start, clocks_per_sec, &sec, &usec);
3510 EMACS_SET_SECS (tstart, sec);
3511 EMACS_SET_USECS (tstart, usec);
3512 EMACS_ADD_TIME (tstart, tboot, tstart);
3513 attrs = Fcons (Fcons (Qstart,
3514 list3 (make_number
3515 ((EMACS_SECS (tstart) >> 16) & 0xffff),
3516 make_number
3517 (EMACS_SECS (tstart) & 0xffff),
3518 make_number
3519 (EMACS_USECS (tstart)))),
3520 attrs);
3521 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize/1024)), attrs);
3522 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4*rss)), attrs);
3523 EMACS_SUB_TIME (telapsed, tnow, tstart);
3524 attrs = Fcons (Fcons (Qetime,
3525 list3 (make_number
3526 ((EMACS_SECS (telapsed) >> 16) & 0xffff),
3527 make_number
3528 (EMACS_SECS (telapsed) & 0xffff),
3529 make_number
3530 (EMACS_USECS (telapsed)))),
3531 attrs);
3532 time_from_jiffies (utime + stime, clocks_per_sec, &sec, &usec);
3533 pcpu = (sec + usec / 1000000.0) / (EMACS_SECS (telapsed) + EMACS_USECS (telapsed) / 1000000.0);
3534 if (pcpu > 1.0)
3535 pcpu = 1.0;
3536 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3537 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3538 if (pmem > 100)
3539 pmem = 100;
3540 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3541 }
3542 }
3543 if (fd >= 0)
3544 emacs_close (fd);
3545
3546 /* args */
3547 strcpy (procfn_end, "/cmdline");
3548 fd = emacs_open (fn, O_RDONLY, 0);
3549 if (fd >= 0)
3550 {
3551 for (cmdline_size = 0; emacs_read (fd, &c, 1) == 1; cmdline_size++)
3552 {
3553 if (isspace (c) || c == '\\')
3554 cmdline_size++; /* for later quoting, see below */
3555 }
3556 if (cmdline_size)
3557 {
3558 cmdline = xmalloc (cmdline_size + 1);
3559 lseek (fd, 0L, SEEK_SET);
3560 cmdline[0] = '\0';
3561 if ((nread = read (fd, cmdline, cmdline_size)) >= 0)
3562 cmdline[nread++] = '\0';
3563 else
3564 {
3565 /* Assigning zero to `nread' makes us skip the following
3566 two loops, assign zero to cmdline_size, and enter the
3567 following `if' clause that handles unknown command
3568 lines. */
3569 nread = 0;
3570 }
3571 /* We don't want trailing null characters. */
3572 for (p = cmdline + nread - 1; p > cmdline && !*p; p--)
3573 nread--;
3574 for (p = cmdline; p < cmdline + nread; p++)
3575 {
3576 /* Escape-quote whitespace and backslashes. */
3577 if (isspace (*p) || *p == '\\')
3578 {
3579 memmove (p + 1, p, nread - (p - cmdline));
3580 nread++;
3581 *p++ = '\\';
3582 }
3583 else if (*p == '\0')
3584 *p = ' ';
3585 }
3586 cmdline_size = nread;
3587 }
3588 if (!cmdline_size)
3589 {
3590 if (!cmd)
3591 cmd = "???";
3592 if (!cmdsize)
3593 cmdsize = strlen (cmd);
3594 cmdline_size = cmdsize + 2;
3595 cmdline = xmalloc (cmdline_size + 1);
3596 strcpy (cmdline, "[");
3597 strcat (strncat (cmdline, cmd, cmdsize), "]");
3598 }
3599 emacs_close (fd);
3600 /* Command line is encoded in locale-coding-system; decode it. */
3601 cmd_str = make_unibyte_string (cmdline, cmdline_size);
3602 decoded_cmd = code_convert_string_norecord (cmd_str,
3603 Vlocale_coding_system, 0);
3604 xfree (cmdline);
3605 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3606 }
3607
3608 UNGCPRO;
3609 return attrs;
3610}
91c85b70 3611
f4f634e8
DN
3612#elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3613
3614/* The <procfs.h> header does not like to be included if _LP64 is defined and
3615 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3616#if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3617#define PROCFS_FILE_OFFSET_BITS_HACK 1
3618#undef _FILE_OFFSET_BITS
3619#else
3620#define PROCFS_FILE_OFFSET_BITS_HACK 0
3621#endif
3622
3623#include <procfs.h>
3624
3625#if PROCFS_FILE_OFFSET_BITS_HACK == 1
3626#define _FILE_OFFSET_BITS 64
3627#endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3628
3629Lisp_Object
3630system_process_attributes (Lisp_Object pid)
3631{
3632 char procfn[PATH_MAX], fn[PATH_MAX];
3633 struct stat st;
3634 struct passwd *pw;
3635 struct group *gr;
3636 char *procfn_end;
3637 struct psinfo pinfo;
3638 int fd;
3639 ssize_t nread;
3640 int proc_id, uid, gid;
3641 Lisp_Object attrs = Qnil;
3642 Lisp_Object decoded_cmd, tem;
3643 struct gcpro gcpro1, gcpro2;
3644 EMACS_INT uid_eint, gid_eint;
3645
3646 CHECK_NUMBER_OR_FLOAT (pid);
3647 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid);
3648 sprintf (procfn, "/proc/%u", proc_id);
3649 if (stat (procfn, &st) < 0)
3650 return attrs;
3651
3652 GCPRO2 (attrs, decoded_cmd);
3653
3654 /* euid egid */
3655 uid = st.st_uid;
3656 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3657 uid_eint = uid;
3658 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid_eint)), attrs);
3659 BLOCK_INPUT;
3660 pw = getpwuid (uid);
3661 UNBLOCK_INPUT;
3662 if (pw)
3663 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3664
3665 gid = st.st_gid;
3666 gid_eint = gid;
3667 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid_eint)), attrs);
3668 BLOCK_INPUT;
3669 gr = getgrgid (gid);
3670 UNBLOCK_INPUT;
3671 if (gr)
3672 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3673
3674 strcpy (fn, procfn);
3675 procfn_end = fn + strlen (fn);
3676 strcpy (procfn_end, "/psinfo");
3677 fd = emacs_open (fn, O_RDONLY, 0);
3678 if (fd >= 0
3679 && (nread = read (fd, (char*)&pinfo, sizeof(struct psinfo)) > 0))
3680 {
3681 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3682 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3683 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3684
3685 {
3686 char state_str[2];
3687 state_str[0] = pinfo.pr_lwp.pr_sname;
3688 state_str[1] = '\0';
3689 tem = build_string (state_str);
3690 attrs = Fcons (Fcons (Qstate, tem), attrs);
3691 }
3692
3693 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3694 need to get a string from it. */
3695
3696 /* FIXME: missing: Qtpgid */
3697
3698 /* FIXME: missing:
3699 Qminflt
3700 Qmajflt
3701 Qcminflt
3702 Qcmajflt
3703
bfe11752
DN
3704 Qutime
3705 Qcutime
f4f634e8
DN
3706 Qstime
3707 Qcstime
3708 Are they available? */
3709
bfe11752 3710 attrs = Fcons (Fcons (Qtime,
f4f634e8
DN
3711 list3 (make_number (pinfo.pr_time.tv_sec >> 16),
3712 make_number (pinfo.pr_time.tv_sec & 0xffff),
3713 make_number (pinfo.pr_time.tv_nsec))),
3714 attrs);
3715
bfe11752 3716 attrs = Fcons (Fcons (Qctime,
f4f634e8
DN
3717 list3 (make_number (pinfo.pr_ctime.tv_sec >> 16),
3718 make_number (pinfo.pr_ctime.tv_sec & 0xffff),
3719 make_number (pinfo.pr_ctime.tv_nsec))),
3720 attrs);
3721
3722 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3723 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3724 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)), attrs);
3725
3726 attrs = Fcons (Fcons (Qstart,
3727 list3 (make_number (pinfo.pr_start.tv_sec >> 16),
3728 make_number (pinfo.pr_start.tv_sec & 0xffff),
3729 make_number (pinfo.pr_start.tv_nsec))),
3730 attrs);
3731 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)), attrs);
3732 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)), attrs);
3733
3734 /* pr_pctcpu and pr_pctmem are encoded as a fixed point 16 bit number in [0 ... 1]. */
3735 attrs = Fcons (Fcons (Qpcpu, (pinfo.pr_pctcpu * 100.0) / (double)0x8000), attrs);
3736 attrs = Fcons (Fcons (Qpmem, (pinfo.pr_pctmem * 100.0) / (double)0x8000), attrs);
3737
3738 decoded_cmd
3739 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_fname,
3740 strlen (pinfo.pr_fname)),
3741 Vlocale_coding_system, 0);
3742 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3743 decoded_cmd
3744 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_psargs,
3745 strlen (pinfo.pr_psargs)),
3746 Vlocale_coding_system, 0);
3747 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3748 }
3749
2d2d05d8
DN
3750 if (fd >= 0)
3751 emacs_close (fd);
3752
f4f634e8
DN
3753 UNGCPRO;
3754 return attrs;
3755}
06e111a6 3756
c4605e09
EZ
3757/* The WINDOWSNT implementation is on w32.c.
3758 The MSDOS implementation is on dosfns.c. */
3759#elif !defined (WINDOWSNT) && !defined (MSDOS)
06e111a6
DN
3760
3761Lisp_Object
3762system_process_attributes (Lisp_Object pid)
3763{
9dcbe89b 3764 return Qnil;
06e111a6
DN
3765}
3766
3767#endif /* !defined (WINDOWSNT) */
3768
c4ea52a6 3769
ab5796a9
MB
3770/* arch-tag: edb43589-4e09-4544-b325-978b5b121dcf
3771 (do not change this comment) */