Simplify redefinition of 'abort' (Bug#12316).
[bpt/emacs.git] / src / sysdep.c
CommitLineData
86a5659e 1/* Interfaces to system-dependent kernel and library entries.
acaf905b 2 Copyright (C) 1985-1988, 1993-1995, 1999-2012
8cabe764 3 Free Software Foundation, Inc.
86a5659e
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
86a5659e 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
86a5659e
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
86a5659e 19
4838e624 20#include <config.h>
f162bcc3
PE
21
22#define SYSTIME_INLINE EXTERN_INLINE
23
86a5659e 24#include <signal.h>
5890e9f7 25#include <stdio.h>
86a5659e 26#include <setjmp.h>
06e111a6
DN
27#ifdef HAVE_PWD_H
28#include <pwd.h>
29#include <grp.h>
30#endif /* HAVE_PWD_H */
06e111a6 31#include <limits.h>
d3eb3bfa 32#include <unistd.h>
53934c98 33
d1fdcab7 34#include <allocator.h>
620f13b0 35#include <c-ctype.h>
d1fdcab7 36#include <careadlinkat.h>
67342916 37#include <ignore-value.h>
d35af63c 38#include <utimens.h>
67342916 39
86a5659e 40#include "lisp.h"
819b8f00 41#include "sysselect.h"
9ac0d9e0 42#include "blockinput.h"
86a5659e 43
7dca65a4
PE
44#ifdef BSD_SYSTEM
45#include <sys/param.h>
b91b7e4d 46#include <sys/sysctl.h>
7dca65a4
PE
47#endif
48
49#ifdef __FreeBSD__
b91b7e4d 50#include <sys/user.h>
d054f3fb 51#include <sys/resource.h>
b91b7e4d
EW
52#include <math.h>
53#endif
54
fe03522b 55#ifdef WINDOWSNT
e15b6288
JR
56#define read sys_read
57#define write sys_write
fe03522b 58#include <windows.h>
fe03522b
RS
59#endif /* not WINDOWSNT */
60
86a5659e
JB
61#include <sys/types.h>
62#include <sys/stat.h>
63#include <errno.h>
64
b05af5d3
PE
65/* Get SI_SRPC_DOMAIN, if it is available. */
66#ifdef HAVE_SYS_SYSTEMINFO_H
67#include <sys/systeminfo.h>
68#endif
69
207bdbdb 70#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
207bdbdb
RS
71#include "msdos.h"
72#include <sys/param.h>
15614e61 73#endif
207bdbdb 74
bb4bc8e2 75#include <sys/file.h>
bb4bc8e2 76#include <fcntl.h>
86a5659e 77
e04a4e0d 78#include "systty.h"
94c8642a 79#include "syswait.h"
86a5659e 80
a7ebc409 81#ifdef HAVE_SYS_UTSNAME_H
86a5659e 82#include <sys/utsname.h>
86a5659e 83#include <memory.h>
a7ebc409 84#endif /* HAVE_SYS_UTSNAME_H */
86a5659e 85
e36ec798 86#include "keyboard.h"
0137dbf7 87#include "frame.h"
86a5659e
JB
88#include "window.h"
89#include "termhooks.h"
90#include "termchar.h"
91#include "termopts.h"
92#include "dispextern.h"
93#include "process.h"
0a125897 94#include "cm.h" /* for reset_sys_modes */
86a5659e 95
fe03522b
RS
96#ifdef WINDOWSNT
97#include <direct.h>
98/* In process.h which conflicts with the local copy. */
99#define _P_WAIT 0
43db14bb
JB
100int _cdecl _spawnlp (int, const char *, const char *, ...);
101int _cdecl _getpid (void);
b6682dd9 102extern char *getwd (char *);
fe03522b
RS
103#endif
104
91bac16a
JB
105#include "syssignal.h"
106#include "systime.h"
86a5659e 107
1fa53021
PE
108static int emacs_get_tty (int, struct emacs_tty *);
109static int emacs_set_tty (int, struct emacs_tty *, int);
5d4cb038 110#if defined TIOCNOTTY || defined USG5 || defined CYGWIN
845ca893 111static _Noreturn void croak (char *);
5d4cb038 112#endif
1fa53021 113
5a16b9bc
PE
114/* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
115#ifndef ULLONG_MAX
116#define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
117#endif
118
ff2e8052
DN
119/* Declare here, including term.h is problematic on some systems. */
120extern void tputs (const char *, int, int (*)(int));
121
91433552 122static const int baud_convert[] =
86a5659e
JB
123 {
124 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
125 1800, 2400, 4800, 9600, 19200, 38400
126 };
86a5659e 127
f78f1a83 128
3480d92b 129#if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
f78f1a83 130
b6682dd9 131/* Return the current working directory. Returns NULL on errors.
f78f1a83
EZ
132 Any other returned value must be freed with free. This is used
133 only when get_current_dir_name is not defined on the system. */
134char*
cf84bb53 135get_current_dir_name (void)
f78f1a83
EZ
136{
137 char *buf;
138 char *pwd;
139 struct stat dotstat, pwdstat;
140 /* If PWD is accurate, use it instead of calling getwd. PWD is
141 sometimes a nicer name, and using it may avoid a fatal error if a
142 parent directory is searchable but not readable. */
143 if ((pwd = getenv ("PWD")) != 0
144 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
145 && stat (pwd, &pwdstat) == 0
146 && stat (".", &dotstat) == 0
147 && dotstat.st_ino == pwdstat.st_ino
148 && dotstat.st_dev == pwdstat.st_dev
149#ifdef MAXPATHLEN
150 && strlen (pwd) < MAXPATHLEN
151#endif
152 )
153 {
38182d90 154 buf = malloc (strlen (pwd) + 1);
f78f1a83
EZ
155 if (!buf)
156 return NULL;
157 strcpy (buf, pwd);
158 }
159#ifdef HAVE_GETCWD
160 else
161 {
162 size_t buf_size = 1024;
38182d90 163 buf = malloc (buf_size);
f78f1a83
EZ
164 if (!buf)
165 return NULL;
166 for (;;)
167 {
168 if (getcwd (buf, buf_size) == buf)
169 break;
170 if (errno != ERANGE)
171 {
172 int tmp_errno = errno;
173 free (buf);
174 errno = tmp_errno;
175 return NULL;
176 }
177 buf_size *= 2;
38182d90 178 buf = realloc (buf, buf_size);
f78f1a83
EZ
179 if (!buf)
180 return NULL;
181 }
182 }
183#else
184 else
185 {
186 /* We need MAXPATHLEN here. */
38182d90 187 buf = malloc (MAXPATHLEN + 1);
f78f1a83
EZ
188 if (!buf)
189 return NULL;
190 if (getwd (buf) == NULL)
191 {
192 int tmp_errno = errno;
193 free (buf);
194 errno = tmp_errno;
195 return NULL;
196 }
197 }
198#endif
199 return buf;
200}
201#endif
202
64e971c3 203\f
9628b887 204/* Discard pending input on all input descriptors. */
91bac16a 205
08633194 206void
971de7fb 207discard_tty_input (void)
86a5659e 208{
fe03522b 209#ifndef WINDOWSNT
91bac16a 210 struct emacs_tty buf;
86a5659e
JB
211
212 if (noninteractive)
213 return;
214
fe03522b 215#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
207bdbdb 216 while (dos_keyread () != -1)
fe03522b 217 ;
207bdbdb 218#else /* not MSDOS */
9628b887 219 {
28d7d09f 220 struct tty_display_info *tty;
9628b887
KL
221 for (tty = tty_list; tty; tty = tty->next)
222 {
0b0d3e0b
KL
223 if (tty->input) /* Is the device suspended? */
224 {
12e610e8
DN
225 emacs_get_tty (fileno (tty->input), &buf);
226 emacs_set_tty (fileno (tty->input), &buf, 0);
0b0d3e0b 227 }
9628b887
KL
228 }
229 }
207bdbdb 230#endif /* not MSDOS */
fe03522b 231#endif /* not WINDOWSNT */
86a5659e
JB
232}
233
16c290d8 234\f
86a5659e
JB
235#ifdef SIGTSTP
236
64e971c3 237/* Arrange for character C to be read as the next input from
16c290d8
KL
238 the terminal.
239 XXX What if we have multiple ttys?
240*/
64e971c3 241
dfcf069d 242void
0c2338d8 243stuff_char (char c)
86a5659e 244{
428a555e 245 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
23dab951
RS
246 return;
247
86a5659e
JB
248/* Should perhaps error if in batch mode */
249#ifdef TIOCSTI
0b0d3e0b 250 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
86a5659e 251#else /* no TIOCSTI */
71f06467 252 error ("Cannot stuff terminal input characters in this version of Unix");
86a5659e
JB
253#endif /* no TIOCSTI */
254}
255
256#endif /* SIGTSTP */
64e971c3 257\f
08633194 258void
16c290d8 259init_baud_rate (int fd)
86a5659e 260{
4c620157 261 int emacs_ospeed;
67342916 262
86a5659e 263 if (noninteractive)
5bdd7bdd 264 emacs_ospeed = 0;
86a5659e
JB
265 else
266 {
fe03522b 267#ifdef DOS_NT
5bdd7bdd 268 emacs_ospeed = 15;
fe03522b 269#else /* not DOS_NT */
e04a4e0d 270 struct termios sg;
91bac16a 271
71f06467 272 sg.c_cflag = B9600;
16c290d8 273 tcgetattr (fd, &sg);
5bdd7bdd 274 emacs_ospeed = cfgetospeed (&sg);
fe03522b 275#endif /* not DOS_NT */
86a5659e 276 }
177c0ea7 277
5bdd7bdd
GM
278 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
279 ? baud_convert[emacs_ospeed] : 9600);
86a5659e
JB
280 if (baud_rate == 0)
281 baud_rate = 1200;
282}
283
16c290d8 284\f
86a5659e 285
1fa53021
PE
286/* Set nonzero to make following function work under dbx
287 (at least for bsd). */
288int wait_debugging EXTERNALLY_VISIBLE;
86a5659e 289
77defa9a 290#ifndef MSDOS
86a5659e 291
e7a6747f 292static void
d311d28c 293wait_for_termination_1 (pid_t pid, int interruptible)
86a5659e
JB
294{
295 while (1)
296 {
5e617bc2 297#if (defined (BSD_SYSTEM) || defined (HPUX)) && !defined (__GNU__)
4c8975ad
RS
298 /* Note that kill returns -1 even if the process is just a zombie now.
299 But inevitably a SIGCHLD interrupt should be generated
13294f95 300 and child_sig will do waitpid and make the process go away. */
4c8975ad
RS
301 /* There is some indication that there is a bug involved with
302 termination of subprocesses, perhaps involving a kernel bug too,
303 but no idea what it is. Just as a hunch we signal SIGCHLD to see
304 if that causes the problem to go away or get worse. */
305 sigsetmask (sigmask (SIGCHLD));
306 if (0 > kill (pid, 0))
fe03522b 307 {
4c8975ad
RS
308 sigsetmask (SIGEMPTYMASK);
309 kill (getpid (), SIGCHLD);
310 break;
311 }
312 if (wait_debugging)
313 sleep (1);
314 else
315 sigpause (SIGEMPTYMASK);
2a633456 316#else /* not BSD_SYSTEM, and not HPUX version >= 6 */
d6dae14b
EZ
317#ifdef WINDOWSNT
318 wait (0);
319 break;
320#else /* not WINDOWSNT */
9ab714c7 321 sigblock (sigmask (SIGCHLD));
59957f85
GM
322 errno = 0;
323 if (kill (pid, 0) == -1 && errno == ESRCH)
9ab714c7
RS
324 {
325 sigunblock (sigmask (SIGCHLD));
326 break;
327 }
ac3ac859 328
0fdcb867 329 sigsuspend (&empty_mask);
d6dae14b 330#endif /* not WINDOWSNT */
2a633456 331#endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
1ef14cb4
LMI
332 if (interruptible)
333 QUIT;
86a5659e
JB
334 }
335}
336
e7a6747f
AS
337/* Wait for subprocess with process id `pid' to terminate and
338 make sure it will get eliminated (not remain forever as a zombie) */
339
340void
d311d28c 341wait_for_termination (pid_t pid)
e7a6747f
AS
342{
343 wait_for_termination_1 (pid, 0);
344}
345
346/* Like the above, but allow keyboard interruption. */
347void
d311d28c 348interruptible_wait_for_termination (pid_t pid)
e7a6747f
AS
349{
350 wait_for_termination_1 (pid, 1);
351}
352
86a5659e
JB
353/*
354 * flush any pending output
355 * (may flush input as well; it does not matter the way we use it)
356 */
177c0ea7 357
08633194 358void
971de7fb 359flush_pending_output (int channel)
86a5659e 360{
9de940b5 361 /* FIXME: maybe this function should be removed */
86a5659e 362}
64e971c3 363\f
86a5659e
JB
364/* Set up the terminal at the other end of a pseudo-terminal that
365 we will be controlling an inferior through.
366 It should not echo or do line-editing, since that is done
367 in Emacs. No padding needed for insertion into an Emacs buffer. */
368
08633194 369void
971de7fb 370child_setup_tty (int out)
86a5659e 371{
77defa9a 372#ifndef WINDOWSNT
91bac16a
JB
373 struct emacs_tty s;
374
12e610e8 375 emacs_get_tty (out, &s);
91bac16a
JB
376 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
377 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
9d4e5eea 378#ifdef NLDLY
07cfc4e7
GM
379 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
380 Some versions of GNU Hurd do not have FFDLY? */
381#ifdef FFDLY
91bac16a
JB
382 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
383 /* No output delays */
07cfc4e7
GM
384#else
385 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
386 /* No output delays */
387#endif
9d4e5eea 388#endif
91bac16a
JB
389 s.main.c_lflag &= ~ECHO; /* Disable echo */
390 s.main.c_lflag |= ISIG; /* Enable signals */
9d4e5eea
RS
391#ifdef IUCLC
392 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
393#endif
f7097b2a
RS
394#ifdef ISTRIP
395 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
396#endif
23e4c8be 397#ifdef OLCUC
9d4e5eea
RS
398 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
399#endif
f7097b2a 400 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1bf96fb5 401 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
441f6399
RS
402 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
403 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
91bac16a 404
86a5659e 405#ifdef HPUX
91bac16a 406 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e 407#endif /* HPUX */
91bac16a 408
dfe598b5
RS
409#ifdef SIGNALS_VIA_CHARACTERS
410 /* the QUIT and INTR character are used in process_send_signal
411 so set them here to something useful. */
fa51fa32 412 if (s.main.c_cc[VQUIT] == CDISABLE)
dfe598b5 413 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
fa51fa32 414 if (s.main.c_cc[VINTR] == CDISABLE)
dfe598b5
RS
415 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
416#endif /* not SIGNALS_VIA_CHARACTERS */
417
86a5659e 418#ifdef AIX
86a5659e
JB
419 /* Also, PTY overloads NUL and BREAK.
420 don't ignore break, but don't signal either, so it looks like NUL. */
91bac16a
JB
421 s.main.c_iflag &= ~IGNBRK;
422 s.main.c_iflag &= ~BRKINT;
dfe598b5
RS
423 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
424 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
425 would force it to 0377. That looks like duplicated code. */
91bac16a 426 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
86a5659e
JB
427#endif /* AIX */
428
aaa0a19a 429 /* We originally enabled ICANON (and set VEOF to 04), and then had
c80e3b4a 430 process.c send additional EOF chars to flush the output when faced
aaa0a19a 431 with long lines, but this leads to weird effects when the
2b0a91e7
SM
432 subprocess has disabled ICANON and ends up seeing those spurious
433 extra EOFs. So we don't send EOFs any more in
aaa0a19a
SM
434 process.c:send_process. First we tried to disable ICANON by
435 default, so if a subsprocess sets up ICANON, it's his problem (or
436 the Elisp package that talks to it) to deal with lines that are
437 too long. But this disables some features, such as the ability
438 to send EOF signals. So we re-enabled ICANON but there is no
439 more "send eof to flush" going on (which is wrong and unportable
440 in itself). The correct way to handle too much output is to
441 buffer what could not be written and then write it again when
442 select returns ok for writing. This has it own set of
443 problems. Write is now asynchronous, is that a problem? How much
444 do we buffer, and what do we do when that limit is reached? */
9a747ba6
JD
445
446 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
447 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
3d15fe78 448#if 0 /* These settings only apply to non-ICANON mode. */
2b0a91e7
SM
449 s.main.c_cc[VMIN] = 1;
450 s.main.c_cc[VTIME] = 0;
aaa0a19a 451#endif
2b0a91e7 452
12e610e8 453 emacs_set_tty (out, &s, 0);
77defa9a 454#endif /* not WINDOWSNT */
86a5659e 455}
57507bf8 456#endif /* not MSDOS */
86a5659e 457
64e971c3 458\f
86a5659e
JB
459/* Record a signal code and the handler for it. */
460struct save_signal
461{
462 int code;
9af30bdf 463 void (*handler) (int);
86a5659e
JB
464};
465
f57e2426
J
466static void save_signal_handlers (struct save_signal *);
467static void restore_signal_handlers (struct save_signal *);
35a05cca 468
86a5659e
JB
469/* Suspend the Emacs process; give terminal to its superior. */
470
08633194 471void
971de7fb 472sys_suspend (void)
86a5659e 473{
c4ea52a6 474#if defined (SIGTSTP) && !defined (MSDOS)
86a5659e 475
5a570e37 476 {
e89a2cd5 477 int pgrp = EMACS_GETPGRP (0);
5a570e37
JB
478 EMACS_KILLPG (pgrp, SIGTSTP);
479 }
86a5659e
JB
480
481#else /* No SIGTSTP */
86a5659e
JB
482/* On a system where suspending is not implemented,
483 instead fork a subshell and let it talk directly to the terminal
484 while we wait. */
a0932daa
KH
485 sys_subshell ();
486
a0932daa 487#endif /* no SIGTSTP */
a0932daa
KH
488}
489
490/* Fork a subshell. */
491
08633194 492void
971de7fb 493sys_subshell (void)
a0932daa 494{
ad00c243 495#ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
a0932daa
KH
496 int st;
497 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
498#endif
efa04277 499 int pid;
86a5659e 500 struct save_signal saved_handlers[5];
efa04277 501 Lisp_Object dir;
5e41f65d 502 unsigned char *volatile str_volatile = 0;
7e9123a2 503 unsigned char *str;
efa04277 504 int len;
86a5659e
JB
505
506 saved_handlers[0].code = SIGINT;
507 saved_handlers[1].code = SIGQUIT;
508 saved_handlers[2].code = SIGTERM;
509#ifdef SIGIO
510 saved_handlers[3].code = SIGIO;
511 saved_handlers[4].code = 0;
512#else
513 saved_handlers[3].code = 0;
514#endif
515
efa04277
RS
516 /* Mentioning current_buffer->buffer would mean including buffer.h,
517 which somehow wedges the hp compiler. So instead... */
518
519 dir = intern ("default-directory");
0e7e7a58 520 if (NILP (Fboundp (dir)))
efa04277
RS
521 goto xyzzy;
522 dir = Fsymbol_value (dir);
914e81a2 523 if (!STRINGP (dir))
efa04277
RS
524 goto xyzzy;
525
526 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
38182d90 527 str_volatile = str = alloca (SCHARS (dir) + 2);
d5db4077 528 len = SCHARS (dir);
72af86bd 529 memcpy (str, SDATA (dir), len);
efa04277
RS
530 if (str[len - 1] != '/') str[len++] = '/';
531 str[len] = 0;
532 xyzzy:
533
ad00c243 534#ifdef DOS_NT
7964ba9e 535 pid = 0;
718ca3cf
RS
536 save_signal_handlers (saved_handlers);
537 synch_process_alive = 1;
177c0ea7 538#else
efa04277 539 pid = vfork ();
86a5659e
JB
540 if (pid == -1)
541 error ("Can't spawn subshell");
7964ba9e
RS
542#endif
543
86a5659e
JB
544 if (pid == 0)
545 {
8ea90aa3 546 const char *sh = 0;
86a5659e 547
ad00c243 548#ifdef DOS_NT /* MW, Aug 1993 */
207bdbdb 549 getwd (oldwd);
7964ba9e
RS
550 if (sh == 0)
551 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
207bdbdb 552#endif
7964ba9e
RS
553 if (sh == 0)
554 sh = (char *) egetenv ("SHELL");
86a5659e
JB
555 if (sh == 0)
556 sh = "sh";
207bdbdb 557
86a5659e 558 /* Use our buffer's default directory for the subshell. */
5e41f65d 559 str = str_volatile;
32299e33
PE
560 if (str && chdir ((char *) str) != 0)
561 {
562#ifndef DOS_NT
563 ignore_value (write (1, "Can't chdir\n", 12));
564 _exit (1);
565#endif
566 }
efa04277 567
86a5659e 568 close_process_descs (); /* Close Emacs's pipes/ptys */
1593c2fe 569
fe03522b 570#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
c0917202 571 {
48178f9a
EZ
572 char *epwd = getenv ("PWD");
573 char old_pwd[MAXPATHLEN+1+4];
c0917202
EZ
574
575 /* If PWD is set, pass it with corrected value. */
48178f9a 576 if (epwd)
c0917202 577 {
48178f9a 578 strcpy (old_pwd, epwd);
c0917202
EZ
579 if (str[len - 1] == '/')
580 str[len - 1] = '\0';
581 setenv ("PWD", str, 1);
582 }
583 st = system (sh);
32299e33 584 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
48178f9a 585 if (epwd)
c0917202
EZ
586 putenv (old_pwd); /* restore previous value */
587 }
207bdbdb 588#else /* not MSDOS */
fe03522b 589#ifdef WINDOWSNT
fe03522b
RS
590 /* Waits for process completion */
591 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
32299e33 592 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
fe03522b
RS
593 if (pid == -1)
594 write (1, "Can't execute subshell", 22);
fe03522b 595#else /* not WINDOWSNT */
e120ea40 596 execlp (sh, sh, (char *) 0);
67342916 597 ignore_value (write (1, "Can't execute subshell", 22));
86a5659e 598 _exit (1);
fe03522b 599#endif /* not WINDOWSNT */
207bdbdb 600#endif /* not MSDOS */
86a5659e
JB
601 }
602
718ca3cf 603 /* Do this now if we did not do it before. */
ed68db4d 604#ifndef MSDOS
86a5659e 605 save_signal_handlers (saved_handlers);
ffafc793 606 synch_process_alive = 1;
718ca3cf
RS
607#endif
608
ad00c243 609#ifndef DOS_NT
86a5659e 610 wait_for_termination (pid);
7964ba9e 611#endif
86a5659e 612 restore_signal_handlers (saved_handlers);
718ca3cf 613 synch_process_alive = 0;
86a5659e
JB
614}
615
35a05cca 616static void
971de7fb 617save_signal_handlers (struct save_signal *saved_handlers)
86a5659e
JB
618{
619 while (saved_handlers->code)
620 {
508b171c 621 saved_handlers->handler
9af30bdf 622 = (void (*) (int)) signal (saved_handlers->code, SIG_IGN);
86a5659e
JB
623 saved_handlers++;
624 }
625}
626
35a05cca 627static void
971de7fb 628restore_signal_handlers (struct save_signal *saved_handlers)
86a5659e
JB
629{
630 while (saved_handlers->code)
631 {
632 signal (saved_handlers->code, saved_handlers->handler);
633 saved_handlers++;
634 }
635}
636\f
4d553a13
KL
637#ifndef SIGIO
638/* If SIGIO is broken, don't do anything. */
639void
640init_sigio (int fd)
641{
642}
643
604efe86 644static void
4d553a13
KL
645reset_sigio (int fd)
646{
647}
648
649void
650request_sigio (void)
651{
652}
653
654void
655unrequest_sigio (void)
656{
657}
658
659#else
86a5659e
JB
660#ifdef F_SETFL
661
1fa53021 662static int old_fcntl_flags[MAXDESC];
86a5659e 663
08633194 664void
971de7fb 665init_sigio (int fd)
86a5659e
JB
666{
667#ifdef FASYNC
819b8f00
KL
668 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
669 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
86a5659e 670#endif
23dab951 671 interrupts_deferred = 0;
86a5659e
JB
672}
673
604efe86 674static void
971de7fb 675reset_sigio (int fd)
86a5659e 676{
4d553a13 677#ifdef FASYNC
819b8f00 678 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
4d553a13 679#endif
86a5659e
JB
680}
681
eb8c3be9 682#ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
428a555e 683/* XXX Uhm, FASYNC is not used anymore here. */
6d8cf830 684/* XXX Yeah, but you need it for SIGIO, don't you? */
86a5659e 685
08633194 686void
971de7fb 687request_sigio (void)
86a5659e 688{
6bbba5a6 689 if (noninteractive)
23dab951
RS
690 return;
691
86a5659e 692#ifdef SIGWINCH
e065a56e 693 sigunblock (sigmask (SIGWINCH));
86a5659e 694#endif
0a125897 695 sigunblock (sigmask (SIGIO));
86a5659e
JB
696
697 interrupts_deferred = 0;
698}
699
08633194 700void
0a125897 701unrequest_sigio (void)
cf84bb53 702{
6bbba5a6
KL
703 if (noninteractive)
704 return;
705
706#if 0 /* XXX What's wrong with blocking SIGIO under X? */
707 if (x_display_list)
23dab951 708 return;
428a555e 709#endif
6bbba5a6 710
86a5659e 711#ifdef SIGWINCH
e065a56e 712 sigblock (sigmask (SIGWINCH));
86a5659e 713#endif
0a125897 714 sigblock (sigmask (SIGIO));
86a5659e
JB
715 interrupts_deferred = 1;
716}
717
718#else /* no FASYNC */
feb67dfe 719#ifndef MSDOS
25ab68af 720
08633194 721void
cf84bb53 722request_sigio (void)
86a5659e 723{
6e5b2385 724 if (noninteractive || read_socket_hook)
23dab951
RS
725 return;
726
86a5659e
JB
727 croak ("request_sigio");
728}
177c0ea7 729
08633194 730void
cf84bb53 731unrequest_sigio (void)
86a5659e 732{
6e5b2385 733 if (noninteractive || read_socket_hook)
23dab951
RS
734 return;
735
86a5659e
JB
736 croak ("unrequest_sigio");
737}
feb67dfe
EZ
738
739#endif /* MSDOS */
86a5659e
JB
740#endif /* FASYNC */
741#endif /* F_SETFL */
4d553a13 742#endif /* SIGIO */
9ae8f997 743
9ae8f997 744\f
68936329
JB
745/* Getting and setting emacs_tty structures. */
746
747/* Set *TC to the parameters associated with the terminal FD.
748 Return zero if all's well, or -1 if we ran into an error we
749 couldn't deal with. */
750int
971de7fb 751emacs_get_tty (int fd, struct emacs_tty *settings)
68936329
JB
752{
753 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
a7ebc409 754#ifndef DOS_NT
68936329 755 /* We have those nifty POSIX tcmumbleattr functions. */
72af86bd 756 memset (&settings->main, 0, sizeof (settings->main));
68936329
JB
757 if (tcgetattr (fd, &settings->main) < 0)
758 return -1;
68936329
JB
759#endif
760
761 /* We have survived the tempest. */
762 return 0;
763}
764
765
766/* Set the parameters of the tty on FD according to the contents of
394049ec 767 *SETTINGS. If FLUSHP is non-zero, we discard input.
68936329 768 Return 0 if all went well, and -1 if anything failed. */
394049ec 769
68936329 770int
971de7fb 771emacs_set_tty (int fd, struct emacs_tty *settings, int flushp)
68936329
JB
772{
773 /* Set the primary parameters - baud rate, character size, etcetera. */
a7ebc409 774#ifndef DOS_NT
e6cc3307 775 int i;
68936329
JB
776 /* We have those nifty POSIX tcmumbleattr functions.
777 William J. Smith <wjs@wiis.wang.com> writes:
c4ea52a6 778 "POSIX 1003.1 defines tcsetattr to return success if it was
68936329
JB
779 able to perform any of the requested actions, even if some
780 of the requested actions could not be performed.
781 We must read settings back to ensure tty setup properly.
782 AIX requires this to keep tty from hanging occasionally." */
eb8c3be9 783 /* This make sure that we don't loop indefinitely in here. */
e6cc3307 784 for (i = 0 ; i < 10 ; i++)
394049ec 785 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
68936329
JB
786 {
787 if (errno == EINTR)
788 continue;
789 else
790 return -1;
791 }
792 else
793 {
794 struct termios new;
795
72af86bd 796 memset (&new, 0, sizeof (new));
68936329
JB
797 /* Get the current settings, and see if they're what we asked for. */
798 tcgetattr (fd, &new);
e6cc3307
RS
799 /* We cannot use memcmp on the whole structure here because under
800 * aix386 the termios structure has some reserved field that may
801 * not be filled in.
802 */
803 if ( new.c_iflag == settings->main.c_iflag
804 && new.c_oflag == settings->main.c_oflag
805 && new.c_cflag == settings->main.c_cflag
806 && new.c_lflag == settings->main.c_lflag
c4ea52a6 807 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
68936329 808 break;
e6cc3307
RS
809 else
810 continue;
68936329 811 }
68936329 812#endif
177c0ea7 813
68936329
JB
814 /* We have survived the tempest. */
815 return 0;
816}
817
818\f
86a5659e
JB
819
820#ifdef F_SETOWN
1fa53021 821static int old_fcntl_owner[MAXDESC];
86a5659e
JB
822#endif /* F_SETOWN */
823
86a5659e
JB
824/* This may also be defined in stdio,
825 but if so, this does no harm,
826 and using the same name avoids wasting the other one's space. */
827
9d9a7716 828#if defined (USG)
86a5659e
JB
829unsigned char _sobuf[BUFSIZ+8];
830#else
831char _sobuf[BUFSIZ];
832#endif
177c0ea7 833
da8e1115
KL
834/* Initialize the terminal mode on all tty devices that are currently
835 open. */
836
08633194 837void
28d440ab
KL
838init_all_sys_modes (void)
839{
28d7d09f 840 struct tty_display_info *tty;
16c290d8 841 for (tty = tty_list; tty; tty = tty->next)
28d440ab 842 init_sys_modes (tty);
28d440ab
KL
843}
844
da8e1115
KL
845/* Initialize the terminal mode on the given tty device. */
846
28d440ab 847void
971de7fb 848init_sys_modes (struct tty_display_info *tty_out)
86a5659e 849{
91bac16a 850 struct emacs_tty tty;
e112cc37 851 Lisp_Object terminal;
91bac16a 852
4ec5cb58
RS
853 Vtty_erase_char = Qnil;
854
86a5659e
JB
855 if (noninteractive)
856 return;
857
0b0d3e0b
KL
858 if (!tty_out->output)
859 return; /* The tty is suspended. */
cf84bb53 860
2246281f 861 if (! tty_out->old_tty)
38182d90 862 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
cf84bb53 863
12e610e8 864 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
23dab951 865
2246281f 866 tty = *tty_out->old_tty;
86a5659e 867
a7ebc409 868#if !defined (DOS_NT)
2246281f 869 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
4ec5cb58 870
2246281f
KL
871 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
872 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
7f371164
RS
873#ifdef INLCR /* I'm just being cautious,
874 since I can't check how widespread INLCR is--rms. */
2246281f 875 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
7f371164 876#endif
86a5659e 877#ifdef ISTRIP
2246281f 878 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
86a5659e 879#endif
2246281f
KL
880 tty.main.c_lflag &= ~ECHO; /* Disable echo */
881 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
e2b40c23 882#ifdef IEXTEN
2246281f 883 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
e2b40c23 884#endif
2246281f
KL
885 tty.main.c_lflag |= ISIG; /* Enable signals */
886 if (tty_out->flow_control)
887 {
888 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
86a5659e 889#ifdef IXANY
2246281f 890 tty.main.c_iflag &= ~IXANY;
86a5659e 891#endif /* IXANY */
2246281f
KL
892 }
893 else
894 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
895 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
896 on output */
897 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
86a5659e 898#ifdef CS8
2246281f
KL
899 if (tty_out->meta_key)
900 {
901 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
902 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
903 }
86a5659e 904#endif
e112cc37
ET
905
906 XSETTERMINAL(terminal, tty_out->terminal);
907 if (!NILP (Fcontrolling_tty_p (terminal)))
2246281f
KL
908 {
909 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
910 /* Set up C-g for both SIGQUIT and SIGINT.
911 We don't know which we will get, but we handle both alike
912 so which one it really gives us does not matter. */
913 tty.main.c_cc[VQUIT] = quit_char;
914 }
915 else
916 {
917 /* We normally don't get interrupt or quit signals from tty
918 devices other than our controlling terminal; therefore,
919 we must handle C-g as normal input. Unfortunately, this
920 means that the interrupt and quit feature must be
921 disabled on secondary ttys, or we would not even see the
922 keypress.
cf84bb53 923
2246281f
KL
924 Note that even though emacsclient could have special code
925 to pass SIGINT to Emacs, we should _not_ enable
926 interrupt/quit keys for emacsclient frames. This means
927 that we can't break out of loops in C code from a
928 secondary tty frame, but we can always decide what
929 display the C-g came from, which is more important from a
930 usability point of view. (Consider the case when two
931 people work together using the same Emacs instance.) */
932 tty.main.c_cc[VINTR] = CDISABLE;
933 tty.main.c_cc[VQUIT] = CDISABLE;
934 }
935 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
936 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
86a5659e 937#ifdef VSWTCH
2246281f 938 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
91bac16a 939 of C-z */
86a5659e 940#endif /* VSWTCH */
cf84bb53 941
86a5659e 942#ifdef VSUSP
a7ebc409 943 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
86a5659e
JB
944#endif /* VSUSP */
945#ifdef V_DSUSP
a7ebc409 946 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
86a5659e 947#endif /* V_DSUSP */
e2b40c23 948#ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
2246281f 949 tty.main.c_cc[VDSUSP] = CDISABLE;
e2b40c23 950#endif /* VDSUSP */
92c995de 951#ifdef VLNEXT
2246281f 952 tty.main.c_cc[VLNEXT] = CDISABLE;
92c995de
RS
953#endif /* VLNEXT */
954#ifdef VREPRINT
2246281f 955 tty.main.c_cc[VREPRINT] = CDISABLE;
92c995de
RS
956#endif /* VREPRINT */
957#ifdef VWERASE
2246281f 958 tty.main.c_cc[VWERASE] = CDISABLE;
92c995de
RS
959#endif /* VWERASE */
960#ifdef VDISCARD
2246281f 961 tty.main.c_cc[VDISCARD] = CDISABLE;
92c995de 962#endif /* VDISCARD */
c179a6d1 963
2246281f
KL
964 if (tty_out->flow_control)
965 {
421dd92f 966#ifdef VSTART
2246281f 967 tty.main.c_cc[VSTART] = '\021';
421dd92f
RS
968#endif /* VSTART */
969#ifdef VSTOP
2246281f 970 tty.main.c_cc[VSTOP] = '\023';
421dd92f 971#endif /* VSTOP */
2246281f
KL
972 }
973 else
974 {
c179a6d1 975#ifdef VSTART
2246281f 976 tty.main.c_cc[VSTART] = CDISABLE;
c179a6d1
RS
977#endif /* VSTART */
978#ifdef VSTOP
2246281f 979 tty.main.c_cc[VSTOP] = CDISABLE;
c179a6d1 980#endif /* VSTOP */
2246281f 981 }
c179a6d1 982
86a5659e 983#ifdef AIX
f5272227
KL
984 tty.main.c_cc[VSTRT] = CDISABLE;
985 tty.main.c_cc[VSTOP] = CDISABLE;
986 tty.main.c_cc[VSUSP] = CDISABLE;
987 tty.main.c_cc[VDSUSP] = CDISABLE;
2246281f
KL
988 if (tty_out->flow_control)
989 {
ac567c95 990#ifdef VSTART
2246281f 991 tty.main.c_cc[VSTART] = '\021';
ac567c95
RS
992#endif /* VSTART */
993#ifdef VSTOP
2246281f 994 tty.main.c_cc[VSTOP] = '\023';
ac567c95 995#endif /* VSTOP */
2246281f
KL
996 }
997 /* Also, PTY overloads NUL and BREAK.
998 don't ignore break, but don't signal either, so it looks like NUL.
999 This really serves a purpose only if running in an XTERM window
1000 or via TELNET or the like, but does no harm elsewhere. */
1001 tty.main.c_iflag &= ~IGNBRK;
1002 tty.main.c_iflag &= ~BRKINT;
86a5659e 1003#endif
fe03522b 1004#endif /* not DOS_NT */
cf84bb53 1005
207bdbdb 1006#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
2246281f
KL
1007 if (!tty_out->term_initted)
1008 internal_terminal_init ();
4e389d32 1009 dos_ttraw (tty_out);
207bdbdb 1010#endif
91bac16a 1011
12e610e8 1012 emacs_set_tty (fileno (tty_out->input), &tty, 0);
86a5659e 1013
2246281f
KL
1014 /* This code added to insure that, if flow-control is not to be used,
1015 we have an unlocked terminal at the start. */
91bac16a 1016
86a5659e 1017#ifdef TCXONC
0b0d3e0b 1018 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
86a5659e 1019#endif
86a5659e 1020#ifdef TIOCSTART
0b0d3e0b 1021 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
86a5659e 1022#endif
86a5659e 1023
a7ebc409 1024#if !defined (DOS_NT)
51417996 1025#ifdef TCOON
0b0d3e0b 1026 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
d228f207 1027#endif
51417996 1028#endif
d228f207 1029
86a5659e 1030#ifdef F_SETFL
eb8c3be9 1031#ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
2246281f 1032 if (interrupt_input)
86a5659e 1033 {
0b0d3e0b
KL
1034 old_fcntl_owner[fileno (tty_out->input)] =
1035 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1036 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1037 init_sigio (fileno (tty_out->input));
7e5a23bd 1038#ifdef HAVE_GPM
75a8734b 1039 if (gpm_tty == tty_out)
3e748bcb 1040 {
75a8734b 1041 /* Arrange for mouse events to give us SIGIO signals. */
3e748bcb 1042 fcntl (gpm_fd, F_SETOWN, getpid ());
57669cf1 1043 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
3e748bcb
NR
1044 init_sigio (gpm_fd);
1045 }
7e5a23bd 1046#endif /* HAVE_GPM */
86a5659e
JB
1047 }
1048#endif /* F_GETOWN */
1049#endif /* F_SETFL */
1050
86a5659e
JB
1051#ifdef _IOFBF
1052 /* This symbol is defined on recent USG systems.
1053 Someone says without this call USG won't really buffer the file
1054 even with a call to setbuf. */
0b0d3e0b 1055 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
86a5659e 1056#else
0b0d3e0b 1057 setbuf (tty_out->output, (char *) _sobuf);
86a5659e 1058#endif
4d553a13 1059
69fb5031
JR
1060 if (tty_out->terminal->set_terminal_modes_hook)
1061 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
4b311aaf 1062
9628b887
KL
1063 if (!tty_out->term_initted)
1064 {
1065 Lisp_Object tail, frame;
1066 FOR_EACH_FRAME (tail, frame)
1067 {
daf01701 1068 /* XXX This needs to be revised. */
9628b887
KL
1069 if (FRAME_TERMCAP_P (XFRAME (frame))
1070 && FRAME_TTY (XFRAME (frame)) == tty_out)
1071 init_frame_faces (XFRAME (frame));
1072 }
1073 }
045942b2 1074
9628b887 1075 if (tty_out->term_initted && no_redraw_on_reenter)
86a5659e 1076 {
855a0da7
SM
1077 /* We used to call "direct_output_forward_char(0)" here,
1078 but it's not clear why, since it may not do anything anyway. */
86a5659e
JB
1079 }
1080 else
1081 {
9628b887 1082 Lisp_Object tail, frame;
0137dbf7 1083 frame_garbaged = 1;
9628b887
KL
1084 FOR_EACH_FRAME (tail, frame)
1085 {
7ab98847
EZ
1086 if ((FRAME_TERMCAP_P (XFRAME (frame))
1087 || FRAME_MSDOS_P (XFRAME (frame)))
9628b887
KL
1088 && FRAME_TTY (XFRAME (frame)) == tty_out)
1089 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1090 }
86a5659e 1091 }
91bac16a 1092
9628b887 1093 tty_out->term_initted = 1;
86a5659e
JB
1094}
1095
1096/* Return nonzero if safe to use tabs in output.
1097 At the time this is called, init_sys_modes has not been done yet. */
177c0ea7 1098
dfcf069d 1099int
16c290d8 1100tabs_safe_p (int fd)
86a5659e 1101{
6548cf00 1102 struct emacs_tty etty;
91bac16a 1103
12e610e8
DN
1104 emacs_get_tty (fd, &etty);
1105#ifndef DOS_NT
1106#ifdef TABDLY
1107 return ((etty.main.c_oflag & TABDLY) != TAB3);
1108#else /* not TABDLY */
1109 return 1;
1110#endif /* not TABDLY */
1111#else /* DOS_NT */
1112 return 0;
1113#endif /* DOS_NT */
86a5659e 1114}
73d5358f 1115\f
86a5659e 1116/* Get terminal size from system.
73d5358f
RS
1117 Store number of lines into *HEIGHTP and width into *WIDTHP.
1118 We store 0 if there's no valid information. */
86a5659e 1119
08633194 1120void
16c290d8 1121get_tty_size (int fd, int *widthp, int *heightp)
86a5659e 1122{
e16e55d4 1123#if defined TIOCGWINSZ
91bac16a
JB
1124
1125 /* BSD-style. */
86a5659e 1126 struct winsize size;
91bac16a 1127
16c290d8 1128 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
91bac16a
JB
1129 *widthp = *heightp = 0;
1130 else
1131 {
1132 *widthp = size.ws_col;
1133 *heightp = size.ws_row;
1134 }
1135
e16e55d4 1136#elif defined TIOCGSIZE
91bac16a
JB
1137
1138 /* SunOS - style. */
177c0ea7 1139 struct ttysize size;
91bac16a 1140
16c290d8 1141 if (ioctl (fd, TIOCGSIZE, &size) == -1)
91bac16a
JB
1142 *widthp = *heightp = 0;
1143 else
1144 {
1145 *widthp = size.ts_cols;
1146 *heightp = size.ts_lines;
1147 }
1148
e16e55d4
JB
1149#elif defined WINDOWSNT
1150
1151 CONSOLE_SCREEN_BUFFER_INFO info;
1152 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1153 {
1154 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1155 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1156 }
1157 else
1158 *widthp = *heightp = 0;
1159
1160#elif defined MSDOS
1161
207bdbdb
RS
1162 *widthp = ScreenCols ();
1163 *heightp = ScreenRows ();
e16e55d4 1164
86a5659e 1165#else /* system doesn't know size */
e16e55d4 1166
86a5659e
JB
1167 *widthp = 0;
1168 *heightp = 0;
e16e55d4 1169
207bdbdb 1170#endif
86a5659e 1171}
91bac16a 1172
73d5358f
RS
1173/* Set the logical window size associated with descriptor FD
1174 to HEIGHT and WIDTH. This is used mainly with ptys. */
1175
1176int
971de7fb 1177set_window_size (int fd, int height, int width)
73d5358f
RS
1178{
1179#ifdef TIOCSWINSZ
1180
1181 /* BSD-style. */
1182 struct winsize size;
1183 size.ws_row = height;
1184 size.ws_col = width;
1185
1186 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1187 return 0; /* error */
1188 else
1189 return 1;
1190
1191#else
1192#ifdef TIOCSSIZE
1193
1194 /* SunOS - style. */
177c0ea7 1195 struct ttysize size;
73d5358f
RS
1196 size.ts_lines = height;
1197 size.ts_cols = width;
1198
1199 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1200 return 0;
1201 else
1202 return 1;
1203#else
1204 return -1;
1205#endif /* not SunOS-style */
1206#endif /* not BSD-style */
1207}
1208
86a5659e 1209\f
da8e1115
KL
1210
1211/* Prepare all terminal devices for exiting Emacs. */
1212
28d440ab
KL
1213void
1214reset_all_sys_modes (void)
1215{
28d7d09f 1216 struct tty_display_info *tty;
16c290d8 1217 for (tty = tty_list; tty; tty = tty->next)
28d440ab 1218 reset_sys_modes (tty);
28d440ab
KL
1219}
1220
0a125897 1221/* Prepare the terminal for closing it; move the cursor to the
0137dbf7 1222 bottom of the frame, turn off interrupt-driven I/O, etc. */
da8e1115 1223
08633194 1224void
971de7fb 1225reset_sys_modes (struct tty_display_info *tty_out)
86a5659e
JB
1226{
1227 if (noninteractive)
1228 {
1229 fflush (stdout);
1230 return;
1231 }
9628b887 1232 if (!tty_out->term_initted)
86a5659e 1233 return;
da8e1115 1234
0b0d3e0b
KL
1235 if (!tty_out->output)
1236 return; /* The tty is suspended. */
cf84bb53 1237
da8e1115
KL
1238 /* Go to and clear the last line of the terminal. */
1239
0a125897 1240 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
cf84bb53 1241
da8e1115
KL
1242 /* Code adapted from tty_clear_end_of_line. */
1243 if (tty_out->TS_clr_line)
1244 {
1245 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1246 }
1247 else
1248 { /* have to do it the hard way */
1249 int i;
ed8dad6b 1250 tty_turn_off_insert (tty_out);
cf84bb53 1251
da8e1115 1252 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
0b0d3e0b
KL
1253 {
1254 fputc (' ', tty_out->output);
1255 }
da8e1115 1256 }
cf84bb53 1257
0a125897 1258 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
819b8f00 1259 fflush (tty_out->output);
cf84bb53 1260
69fb5031
JR
1261 if (tty_out->terminal->reset_terminal_modes_hook)
1262 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
2f98e6e3 1263
2a633456 1264#ifdef BSD_SYSTEM
86a5659e 1265 /* Avoid possible loss of output when changing terminal modes. */
0b0d3e0b 1266 fsync (fileno (tty_out->output));
86a5659e 1267#endif
91bac16a 1268
86a5659e 1269#ifdef F_SETFL
eb8c3be9 1270#ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
86a5659e
JB
1271 if (interrupt_input)
1272 {
0b0d3e0b
KL
1273 reset_sigio (fileno (tty_out->input));
1274 fcntl (fileno (tty_out->input), F_SETOWN,
1275 old_fcntl_owner[fileno (tty_out->input)]);
86a5659e
JB
1276 }
1277#endif /* F_SETOWN */
a6b00318 1278#ifdef O_NDELAY
0b0d3e0b
KL
1279 fcntl (fileno (tty_out->input), F_SETFL,
1280 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
a6b00318 1281#endif
86a5659e 1282#endif /* F_SETFL */
91bac16a 1283
fca177d4 1284 if (tty_out->old_tty)
12e610e8 1285 while (emacs_set_tty (fileno (tty_out->input),
fca177d4 1286 tty_out->old_tty, 0) < 0 && errno == EINTR)
7e32a4fb 1287 ;
86a5659e 1288
207bdbdb
RS
1289#ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1290 dos_ttcooked ();
1291#endif
1292
86a5659e
JB
1293}
1294\f
1295#ifdef HAVE_PTYS
1296
1297/* Set up the proper status flags for use of a pty. */
1298
08633194 1299void
971de7fb 1300setup_pty (int fd)
86a5659e
JB
1301{
1302 /* I'm told that TOICREMOTE does not mean control chars
1303 "can't be sent" but rather that they don't have
1304 input-editing or signaling effects.
1305 That should be good, because we have other ways
1306 to do those things in Emacs.
1307 However, telnet mode seems not to work on 4.2.
1308 So TIOCREMOTE is turned off now. */
1309
1310 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1311 will hang. In particular, the "timeout" feature (which
1312 causes a read to return if there is no data available)
1313 does this. Also it is known that telnet mode will hang
1314 in such a way that Emacs must be stopped (perhaps this
1315 is the same problem).
177c0ea7 1316
86a5659e
JB
1317 If TIOCREMOTE is turned off, then there is a bug in
1318 hp-ux which sometimes loses data. Apparently the
1319 code which blocks the master process when the internal
1320 buffer fills up does not work. Other than this,
1321 though, everything else seems to work fine.
177c0ea7 1322
86a5659e
JB
1323 Since the latter lossage is more benign, we may as well
1324 lose that way. -- cph */
1325#ifdef FIONBIO
5e617bc2 1326#if defined (UNIX98_PTYS)
86a5659e
JB
1327 {
1328 int on = 1;
1329 ioctl (fd, FIONBIO, &on);
1330 }
1331#endif
1332#endif
86a5659e
JB
1333}
1334#endif /* HAVE_PTYS */
1335\f
f8a80313
RS
1336#ifdef HAVE_SOCKETS
1337#include <sys/socket.h>
1338#include <netdb.h>
1339#endif /* HAVE_SOCKETS */
f8a80313 1340
8581cd64
KH
1341#ifdef TRY_AGAIN
1342#ifndef HAVE_H_ERRNO
1343extern int h_errno;
1344#endif
1345#endif /* TRY_AGAIN */
1346
c0c86835 1347void
971de7fb 1348init_system_name (void)
86a5659e 1349{
210b2b4f 1350#ifndef HAVE_GETHOSTNAME
c0c86835
KH
1351 struct utsname uts;
1352 uname (&uts);
1353 Vsystem_name = build_string (uts.nodename);
67004ffb 1354#else /* HAVE_GETHOSTNAME */
cc6e7269 1355 unsigned int hostname_size = 256;
38182d90 1356 char *hostname = alloca (hostname_size);
c0c86835
KH
1357
1358 /* Try to get the host name; if the buffer is too short, try
1359 again. Apparently, the only indication gethostname gives of
1360 whether the buffer was large enough is the presence or absence
1361 of a '\0' in the string. Eech. */
1362 for (;;)
1363 {
1364 gethostname (hostname, hostname_size - 1);
1365 hostname[hostname_size - 1] = '\0';
1366
1367 /* Was the buffer large enough for the '\0'? */
1368 if (strlen (hostname) < hostname_size - 1)
1369 break;
1370
1371 hostname_size <<= 1;
38182d90 1372 hostname = alloca (hostname_size);
c0c86835 1373 }
67004ffb 1374#ifdef HAVE_SOCKETS
c0c86835
KH
1375 /* Turn the hostname into the official, fully-qualified hostname.
1376 Don't do this if we're going to dump; this can confuse system
1377 libraries on some machines and make the dumped emacs core dump. */
67004ffb 1378#ifndef CANNOT_DUMP
c0c86835 1379 if (initialized)
67004ffb 1380#endif /* not CANNOT_DUMP */
8966b757 1381 if (! strchr (hostname, '.'))
960d894c 1382 {
960d894c 1383 int count;
3d66b985
JD
1384#ifdef HAVE_GETADDRINFO
1385 struct addrinfo *res;
1386 struct addrinfo hints;
1387 int ret;
1388
cf84bb53 1389 memset (&hints, 0, sizeof (hints));
3d66b985
JD
1390 hints.ai_socktype = SOCK_STREAM;
1391 hints.ai_flags = AI_CANONNAME;
1392
960d894c
KH
1393 for (count = 0;; count++)
1394 {
3d66b985
JD
1395 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1396 || ret != EAI_AGAIN)
1397 break;
1398
1399 if (count >= 5)
1400 break;
1401 Fsleep_for (make_number (1), Qnil);
1402 }
1403
1404 if (ret == 0)
1405 {
1406 struct addrinfo *it = res;
1407 while (it)
1408 {
1409 char *fqdn = it->ai_canonname;
8966b757 1410 if (fqdn && strchr (fqdn, '.')
3d66b985
JD
1411 && strcmp (fqdn, "localhost.localdomain") != 0)
1412 break;
1413 it = it->ai_next;
1414 }
1415 if (it)
1416 {
1417 hostname = alloca (strlen (it->ai_canonname) + 1);
1418 strcpy (hostname, it->ai_canonname);
1419 }
1420 freeaddrinfo (res);
1421 }
1422#else /* !HAVE_GETADDRINFO */
1423 struct hostent *hp;
1424 for (count = 0;; count++)
1425 {
1426
e24f1d55 1427#ifdef TRY_AGAIN
960d894c 1428 h_errno = 0;
e24f1d55 1429#endif
960d894c 1430 hp = gethostbyname (hostname);
efa04277 1431#ifdef TRY_AGAIN
960d894c
KH
1432 if (! (hp == 0 && h_errno == TRY_AGAIN))
1433#endif
3d66b985 1434
960d894c 1435 break;
3d66b985 1436
960d894c
KH
1437 if (count >= 5)
1438 break;
1439 Fsleep_for (make_number (1), Qnil);
1440 }
3d66b985 1441
960d894c
KH
1442 if (hp)
1443 {
1444 char *fqdn = (char *) hp->h_name;
960d894c 1445
8966b757 1446 if (!strchr (fqdn, '.'))
960d894c
KH
1447 {
1448 /* We still don't have a fully qualified domain name.
1449 Try to find one in the list of alternate names */
1450 char **alias = hp->h_aliases;
923721f4 1451 while (*alias
8966b757 1452 && (!strchr (*alias, '.')
923721f4 1453 || !strcmp (*alias, "localhost.localdomain")))
960d894c
KH
1454 alias++;
1455 if (*alias)
1456 fqdn = *alias;
1457 }
1458 hostname = fqdn;
960d894c 1459 }
3d66b985 1460#endif /* !HAVE_GETADDRINFO */
960d894c 1461 }
67004ffb 1462#endif /* HAVE_SOCKETS */
c0c86835 1463 Vsystem_name = build_string (hostname);
67004ffb 1464#endif /* HAVE_GETHOSTNAME */
c0c86835
KH
1465 {
1466 unsigned char *p;
d5db4077 1467 for (p = SDATA (Vsystem_name); *p; p++)
c0c86835
KH
1468 if (*p == ' ' || *p == '\t')
1469 *p = '-';
1470 }
67004ffb 1471}
86a5659e 1472\f
86a5659e
JB
1473/* POSIX signals support - DJB */
1474/* Anyone with POSIX signals should have ANSI C declarations */
1475
1fa53021 1476sigset_t empty_mask;
86a5659e 1477
d6dae14b
EZ
1478#ifndef WINDOWSNT
1479
86a5659e
JB
1480signal_handler_t
1481sys_signal (int signal_number, signal_handler_t action)
1482{
c639b0e3 1483 struct sigaction new_action, old_action;
86a5659e 1484 sigemptyset (&new_action.sa_mask);
e5c99298 1485 new_action.sa_handler = action;
ef874e3d
AS
1486 new_action.sa_flags = 0;
1487#if defined (SA_RESTART)
25ab68af 1488 /* Emacs mostly works better with restartable system services. If this
55fafcf0 1489 flag exists, we probably want to turn it on here.
41f9404e
GM
1490 However, on some systems (only hpux11 at present) this resets the
1491 timeout of `select' which means that `select' never finishes if
1492 it keeps getting signals.
1493 We define BROKEN_SA_RESTART on those systems. */
275464e7
SM
1494 /* It's not clear why the comment above says "mostly works better". --Stef
1495 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
1496 for pending input so we need long-running syscalls to be interrupted
1497 after a signal that sets the interrupt_input_pending flag. */
766f52ec
AS
1498 /* Non-interactive keyboard input goes through stdio, where we always
1499 want restartable system calls. */
5e617bc2 1500# if defined (BROKEN_SA_RESTART) || defined (SYNC_INPUT)
ef874e3d
AS
1501 if (noninteractive)
1502# endif
1503 new_action.sa_flags = SA_RESTART;
25ab68af 1504#endif
d32b2f3c 1505 sigaction (signal_number, &new_action, &old_action);
e5c99298 1506 return (old_action.sa_handler);
86a5659e
JB
1507}
1508
d6dae14b
EZ
1509#endif /* WINDOWSNT */
1510
e065a56e
JB
1511#ifndef __GNUC__
1512/* If we're compiling with GCC, we don't need this function, since it
1513 can be written as a macro. */
1514sigset_t
1515sys_sigmask (int sig)
1516{
1517 sigset_t mask;
1518 sigemptyset (&mask);
1519 sigaddset (&mask, sig);
1520 return mask;
1521}
1522#endif
1523
86a5659e
JB
1524/* I'd like to have these guys return pointers to the mask storage in here,
1525 but there'd be trouble if the code was saving multiple masks. I'll be
1526 safe and pass the structure. It normally won't be more than 2 bytes
1527 anyhow. - DJB */
1528
1529sigset_t
1530sys_sigblock (sigset_t new_mask)
1531{
1532 sigset_t old_mask;
123403e4 1533 pthread_sigmask (SIG_BLOCK, &new_mask, &old_mask);
86a5659e
JB
1534 return (old_mask);
1535}
1536
1537sigset_t
1538sys_sigunblock (sigset_t new_mask)
1539{
1540 sigset_t old_mask;
123403e4 1541 pthread_sigmask (SIG_UNBLOCK, &new_mask, &old_mask);
86a5659e
JB
1542 return (old_mask);
1543}
1544
1545sigset_t
1546sys_sigsetmask (sigset_t new_mask)
1547{
1548 sigset_t old_mask;
123403e4 1549 pthread_sigmask (SIG_SETMASK, &new_mask, &old_mask);
86a5659e
JB
1550 return (old_mask);
1551}
1552
86a5659e 1553\f
b80263be 1554#if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
ca9c0567
PE
1555static char *my_sys_siglist[NSIG];
1556# ifdef sys_siglist
1557# undef sys_siglist
1558# endif
1559# define sys_siglist my_sys_siglist
1560#endif
1561
1562void
971de7fb 1563init_signals (void)
ca9c0567 1564{
ca9c0567 1565 sigemptyset (&empty_mask);
ca9c0567 1566
b80263be 1567#if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
ca9c0567
PE
1568 if (! initialized)
1569 {
1570# ifdef SIGABRT
1571 sys_siglist[SIGABRT] = "Aborted";
1572# endif
1573# ifdef SIGAIO
1574 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1575# endif
1576# ifdef SIGALRM
1577 sys_siglist[SIGALRM] = "Alarm clock";
1578# endif
1579# ifdef SIGBUS
1580 sys_siglist[SIGBUS] = "Bus error";
1581# endif
1582# ifdef SIGCLD
1583 sys_siglist[SIGCLD] = "Child status changed";
1584# endif
1585# ifdef SIGCHLD
1586 sys_siglist[SIGCHLD] = "Child status changed";
1587# endif
1588# ifdef SIGCONT
1589 sys_siglist[SIGCONT] = "Continued";
1590# endif
1591# ifdef SIGDANGER
1592 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1593# endif
1594# ifdef SIGDGNOTIFY
1595 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1596# endif
1597# ifdef SIGEMT
1598 sys_siglist[SIGEMT] = "Emulation trap";
1599# endif
1600# ifdef SIGFPE
1601 sys_siglist[SIGFPE] = "Arithmetic exception";
1602# endif
1603# ifdef SIGFREEZE
1604 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1605# endif
1606# ifdef SIGGRANT
1607 sys_siglist[SIGGRANT] = "Monitor mode granted";
1608# endif
1609# ifdef SIGHUP
1610 sys_siglist[SIGHUP] = "Hangup";
1611# endif
1612# ifdef SIGILL
1613 sys_siglist[SIGILL] = "Illegal instruction";
1614# endif
1615# ifdef SIGINT
1616 sys_siglist[SIGINT] = "Interrupt";
1617# endif
1618# ifdef SIGIO
1619 sys_siglist[SIGIO] = "I/O possible";
1620# endif
1621# ifdef SIGIOINT
1622 sys_siglist[SIGIOINT] = "I/O intervention required";
1623# endif
1624# ifdef SIGIOT
1625 sys_siglist[SIGIOT] = "IOT trap";
1626# endif
1627# ifdef SIGKILL
1628 sys_siglist[SIGKILL] = "Killed";
1629# endif
1630# ifdef SIGLOST
1631 sys_siglist[SIGLOST] = "Resource lost";
1632# endif
1633# ifdef SIGLWP
1634 sys_siglist[SIGLWP] = "SIGLWP";
1635# endif
1636# ifdef SIGMSG
1637 sys_siglist[SIGMSG] = "Monitor mode data available";
1638# endif
1639# ifdef SIGPHONE
1640 sys_siglist[SIGWIND] = "SIGPHONE";
1641# endif
1642# ifdef SIGPIPE
1643 sys_siglist[SIGPIPE] = "Broken pipe";
1644# endif
1645# ifdef SIGPOLL
1646 sys_siglist[SIGPOLL] = "Pollable event occurred";
1647# endif
1648# ifdef SIGPROF
1649 sys_siglist[SIGPROF] = "Profiling timer expired";
1650# endif
1651# ifdef SIGPTY
1652 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1653# endif
1654# ifdef SIGPWR
1655 sys_siglist[SIGPWR] = "Power-fail restart";
1656# endif
1657# ifdef SIGQUIT
1658 sys_siglist[SIGQUIT] = "Quit";
1659# endif
1660# ifdef SIGRETRACT
40ba43b4 1661 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
ca9c0567
PE
1662# endif
1663# ifdef SIGSAK
1664 sys_siglist[SIGSAK] = "Secure attention";
1665# endif
1666# ifdef SIGSEGV
1667 sys_siglist[SIGSEGV] = "Segmentation violation";
1668# endif
1669# ifdef SIGSOUND
1670 sys_siglist[SIGSOUND] = "Sound completed";
1671# endif
1672# ifdef SIGSTOP
1673 sys_siglist[SIGSTOP] = "Stopped (signal)";
1674# endif
1675# ifdef SIGSTP
1676 sys_siglist[SIGSTP] = "Stopped (user)";
1677# endif
1678# ifdef SIGSYS
1679 sys_siglist[SIGSYS] = "Bad argument to system call";
1680# endif
1681# ifdef SIGTERM
1682 sys_siglist[SIGTERM] = "Terminated";
1683# endif
1684# ifdef SIGTHAW
1685 sys_siglist[SIGTHAW] = "SIGTHAW";
1686# endif
1687# ifdef SIGTRAP
1688 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1689# endif
1690# ifdef SIGTSTP
1691 sys_siglist[SIGTSTP] = "Stopped (user)";
1692# endif
1693# ifdef SIGTTIN
1694 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1695# endif
1696# ifdef SIGTTOU
1697 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1698# endif
1699# ifdef SIGURG
1700 sys_siglist[SIGURG] = "Urgent I/O condition";
1701# endif
1702# ifdef SIGUSR1
1703 sys_siglist[SIGUSR1] = "User defined signal 1";
1704# endif
1705# ifdef SIGUSR2
1706 sys_siglist[SIGUSR2] = "User defined signal 2";
1707# endif
1708# ifdef SIGVTALRM
1709 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1710# endif
1711# ifdef SIGWAITING
1712 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1713# endif
1714# ifdef SIGWINCH
1715 sys_siglist[SIGWINCH] = "Window size changed";
1716# endif
1717# ifdef SIGWIND
1718 sys_siglist[SIGWIND] = "SIGWIND";
1719# endif
1720# ifdef SIGXCPU
1721 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1722# endif
1723# ifdef SIGXFSZ
1724 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1725# endif
1726 }
b80263be 1727#endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
ca9c0567
PE
1728}
1729\f
9927a7b1 1730#ifndef HAVE_RANDOM
4bb8c8b7
KH
1731#ifdef random
1732#define HAVE_RANDOM
1733#endif
1734#endif
1735
1736/* Figure out how many bits the system's random number generator uses.
1737 `random' and `lrand48' are assumed to return 31 usable bits.
1738 BSD `rand' returns a 31 bit value but the low order bits are unusable;
1739 so we'll shift it and treat it like the 15-bit USG `rand'. */
1740
1741#ifndef RAND_BITS
1742# ifdef HAVE_RANDOM
1743# define RAND_BITS 31
1744# else /* !HAVE_RANDOM */
1745# ifdef HAVE_LRAND48
1746# define RAND_BITS 31
1747# define random lrand48
1748# else /* !HAVE_LRAND48 */
1749# define RAND_BITS 15
1750# if RAND_MAX == 32767
1751# define random rand
1752# else /* RAND_MAX != 32767 */
1753# if RAND_MAX == 2147483647
1754# define random() (rand () >> 16)
1755# else /* RAND_MAX != 2147483647 */
1756# ifdef USG
1757# define random rand
1758# else
1759# define random() (rand () >> 16)
2a633456 1760# endif /* !USG */
4bb8c8b7
KH
1761# endif /* RAND_MAX != 2147483647 */
1762# endif /* RAND_MAX != 32767 */
1763# endif /* !HAVE_LRAND48 */
1764# endif /* !HAVE_RANDOM */
1765#endif /* !RAND_BITS */
2e46c7c6 1766
4bb8c8b7 1767void
0e23ef9d 1768seed_random (void *seed, ptrdiff_t seed_size)
86a5659e 1769{
33634217 1770#if defined HAVE_RANDOM || ! defined HAVE_LRAND48
0e23ef9d
PE
1771 unsigned int arg = 0;
1772#else
1773 long int arg = 0;
1774#endif
1775 unsigned char *argp = (unsigned char *) &arg;
1776 unsigned char *seedp = seed;
1777 ptrdiff_t i;
1778 for (i = 0; i < seed_size; i++)
1779 argp[i % sizeof arg] ^= seedp[i];
4bb8c8b7 1780#ifdef HAVE_RANDOM
0e23ef9d 1781 srandom (arg);
f8b53a82 1782#else
4bb8c8b7 1783# ifdef HAVE_LRAND48
76425a49 1784 srand48 (arg);
4bb8c8b7 1785# else
0e23ef9d 1786 srand (arg);
4bb8c8b7 1787# endif
2e46c7c6 1788#endif
86a5659e
JB
1789}
1790
0e23ef9d
PE
1791void
1792init_random (void)
1793{
1794 EMACS_TIME t = current_emacs_time ();
1795 uintmax_t v = getpid () ^ EMACS_SECS (t) ^ EMACS_NSECS (t);
1796 seed_random (&v, sizeof v);
1797}
1798
4bb8c8b7 1799/*
d8ed26bd
PE
1800 * Return a nonnegative random integer out of whatever we've got.
1801 * It contains enough bits to make a random (signed) Emacs fixnum.
4bb8c8b7
KH
1802 * This suffices even for a 64-bit architecture with a 15-bit rand.
1803 */
ede49d71 1804EMACS_INT
971de7fb 1805get_random (void)
4bb8c8b7 1806{
ede49d71
PE
1807 EMACS_UINT val = 0;
1808 int i;
d8ed26bd
PE
1809 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
1810 val = (random () ^ (val << RAND_BITS)
1811 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
1812 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
1813 return val & INTMASK;
4bb8c8b7 1814}
7088d1ca 1815
55e5faa1
PE
1816#ifndef HAVE_SNPRINTF
1817/* Approximate snprintf as best we can on ancient hosts that lack it. */
1818int
1819snprintf (char *buf, size_t bufsize, char const *format, ...)
1820{
1821 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
1822 ptrdiff_t nbytes = size - 1;
1823 va_list ap;
1824
1825 if (size)
1826 {
1827 va_start (ap, format);
1828 nbytes = doprnt (buf, size, format, 0, ap);
1829 va_end (ap);
1830 }
1831
1832 if (nbytes == size - 1)
1833 {
1834 /* Calculate the length of the string that would have been created
1835 had the buffer been large enough. */
1836 char stackbuf[4000];
1837 char *b = stackbuf;
1838 ptrdiff_t bsize = sizeof stackbuf;
1839 va_start (ap, format);
1840 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
1841 va_end (ap);
1842 if (b != stackbuf)
1843 xfree (b);
1844 }
1845
1846 if (INT_MAX < nbytes)
1847 {
31bed486 1848#ifdef EOVERFLOW
55e5faa1 1849 errno = EOVERFLOW;
31bed486
EZ
1850#else
1851 errno = EDOM;
1852#endif
55e5faa1
PE
1853 return -1;
1854 }
1855 return nbytes;
1856}
1857#endif
86a5659e 1858\f
1088b922
PE
1859#ifndef HAVE_NTGUI
1860/* Using emacs_abort lets GDB return from a breakpoint here. */
1861void
1862emacs_abort (void)
1863{
1864 abort ();
1865}
1866#endif
1867
86a5659e 1868int
971de7fb 1869emacs_open (const char *path, int oflag, int mode)
86a5659e
JB
1870{
1871 register int rtnval;
68c45bf0 1872
86a5659e 1873 while ((rtnval = open (path, oflag, mode)) == -1
275464e7
SM
1874 && (errno == EINTR))
1875 QUIT;
86a5659e
JB
1876 return (rtnval);
1877}
1878
dfcf069d 1879int
971de7fb 1880emacs_close (int fd)
86a5659e 1881{
fe111daf 1882 int did_retry = 0;
86a5659e
JB
1883 register int rtnval;
1884
1885 while ((rtnval = close (fd)) == -1
fe111daf
KH
1886 && (errno == EINTR))
1887 did_retry = 1;
1888
1889 /* If close is interrupted SunOS 4.1 may or may not have closed the
1890 file descriptor. If it did the second close will fail with
1891 errno = EBADF. That means we have succeeded. */
1892 if (rtnval == -1 && did_retry && errno == EBADF)
1893 return 0;
1894
86a5659e
JB
1895 return rtnval;
1896}
1897
1963a2e0
PE
1898/* Maximum number of bytes to read or write in a single system call.
1899 This works around a serious bug in Linux kernels before 2.6.16; see
1900 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
1901 It's likely to work around similar bugs in other operating systems, so do it
1902 on all platforms. Round INT_MAX down to a page size, with the conservative
1903 assumption that page sizes are at most 2**18 bytes (any kernel with a
1904 page size larger than that shouldn't have the bug). */
1905#ifndef MAX_RW_COUNT
1906#define MAX_RW_COUNT (INT_MAX >> 18 << 18)
1907#endif
1908
273a5f82
PE
1909/* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
1910 Return the number of bytes read, which might be less than NBYTE.
1911 On error, set errno and return -1. */
d311d28c
PE
1912ptrdiff_t
1913emacs_read (int fildes, char *buf, ptrdiff_t nbyte)
86a5659e 1914{
8a2cbd72 1915 register ssize_t rtnval;
177c0ea7 1916
71b41406
PE
1917 /* There is no need to check against MAX_RW_COUNT, since no caller ever
1918 passes a size that large to emacs_read. */
1919
1920 while ((rtnval = read (fildes, buf, nbyte)) == -1
275464e7
SM
1921 && (errno == EINTR))
1922 QUIT;
86a5659e
JB
1923 return (rtnval);
1924}
1925
273a5f82
PE
1926/* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
1927 or if a partial write occurs. Return the number of bytes written, setting
1928 errno if this is less than NBYTE. */
d311d28c
PE
1929ptrdiff_t
1930emacs_write (int fildes, const char *buf, ptrdiff_t nbyte)
86a5659e 1931{
273a5f82 1932 ssize_t rtnval;
d311d28c 1933 ptrdiff_t bytes_written;
28272684 1934
b95520f5
BF
1935 bytes_written = 0;
1936
273a5f82 1937 while (nbyte > 0)
b95520f5 1938 {
1963a2e0 1939 rtnval = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
b95520f5 1940
273a5f82 1941 if (rtnval < 0)
b95520f5
BF
1942 {
1943 if (errno == EINTR)
77220eeb
SM
1944 {
1945#ifdef SYNC_INPUT
1946 /* I originally used `QUIT' but that might causes files to
1947 be truncated if you hit C-g in the middle of it. --Stef */
55310b94 1948 process_pending_signals ();
77220eeb
SM
1949#endif
1950 continue;
1951 }
b95520f5 1952 else
273a5f82 1953 break;
b95520f5
BF
1954 }
1955
1956 buf += rtnval;
1957 nbyte -= rtnval;
1958 bytes_written += rtnval;
1959 }
273a5f82 1960
b95520f5 1961 return (bytes_written);
86a5659e 1962}
d1fdcab7
PE
1963
1964static struct allocator const emacs_norealloc_allocator =
1965 { xmalloc, NULL, xfree, memory_full };
1966
1967/* Get the symbolic link value of FILENAME. Return a pointer to a
1968 NUL-terminated string. If readlink fails, return NULL and set
1969 errno. If the value fits in INITIAL_BUF, return INITIAL_BUF.
1970 Otherwise, allocate memory and return a pointer to that memory. If
1971 memory allocation fails, diagnose and fail without returning. If
1972 successful, store the length of the symbolic link into *LINKLEN. */
1973char *
1974emacs_readlink (char const *filename, char initial_buf[READLINK_BUFSIZE])
1975{
1976 return careadlinkat (AT_FDCWD, filename, initial_buf, READLINK_BUFSIZE,
1977 &emacs_norealloc_allocator, careadlinkatcwd);
1978}
86a5659e
JB
1979\f
1980#ifdef USG
1981/*
1982 * All of the following are for USG.
1983 *
1984 * On USG systems the system calls are INTERRUPTIBLE by signals
1985 * that the user program has elected to catch. Thus the system call
1986 * must be retried in these cases. To handle this without massive
1987 * changes in the source code, we remap the standard system call names
1988 * to names for our own functions in sysdep.c that do the system call
1989 * with retries. Actually, for portability reasons, it is good
1990 * programming practice, as this example shows, to limit all actual
eb8c3be9 1991 * system calls to a single occurrence in the source. Sure, this
86a5659e
JB
1992 * adds an extra level of function call overhead but it is almost
1993 * always negligible. Fred Fish, Unisoft Systems Inc.
1994 */
1995
86a5659e
JB
1996/*
1997 * Warning, this function may not duplicate 4.2 action properly
1998 * under error conditions.
1999 */
2000
1db4583a 2001#if !defined (HAVE_GETWD) || defined (BROKEN_GETWD)
15dfd3d9 2002
86a5659e
JB
2003#ifndef MAXPATHLEN
2004/* In 4.1, param.h fails to define this. */
2005#define MAXPATHLEN 1024
2006#endif
2007
86a5659e 2008char *
cf84bb53 2009getwd (char *pathname)
86a5659e
JB
2010{
2011 char *npath, *spath;
cf84bb53 2012 extern char *getcwd (char *, size_t);
86a5659e 2013
9ac0d9e0 2014 BLOCK_INPUT; /* getcwd uses malloc */
86a5659e 2015 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
f4a7e5bd 2016 if (spath == 0)
18b6bc73
GM
2017 {
2018 UNBLOCK_INPUT;
2019 return spath;
2020 }
86a5659e
JB
2021 /* On Altos 3068, getcwd can return @hostname/dir, so discard
2022 up to first slash. Should be harmless on other systems. */
2023 while (*npath && *npath != '/')
2024 npath++;
2025 strcpy (pathname, npath);
2026 free (spath); /* getcwd uses malloc */
9ac0d9e0 2027 UNBLOCK_INPUT;
86a5659e
JB
2028 return pathname;
2029}
2030
1db4583a 2031#endif /* !defined (HAVE_GETWD) || defined (BROKEN_GETWD) */
86a5659e 2032
86a5659e
JB
2033/*
2034 * This function will go away as soon as all the stubs fixed. (fnf)
2035 */
2036
dfcf069d 2037void
971de7fb 2038croak (char *badfunc)
86a5659e
JB
2039{
2040 printf ("%s not yet implemented\r\n", badfunc);
28d440ab 2041 reset_all_sys_modes ();
86a5659e
JB
2042 exit (1);
2043}
2044
2045#endif /* USG */
2046\f
86a5659e
JB
2047/* Directory routines for systems that don't have them. */
2048
1c97e857 2049#ifdef HAVE_DIRENT_H
86a5659e
JB
2050
2051#include <dirent.h>
2052
9d9a7716 2053#if !defined (HAVE_CLOSEDIR)
cfdc57af 2054
86a5659e 2055int
9d9a7716 2056closedir (DIR *dirp /* stream from opendir */)
86a5659e 2057{
cfdc57af
RS
2058 int rtnval;
2059
68c45bf0 2060 rtnval = emacs_close (dirp->dd_fd);
98c6f1e3 2061 xfree (dirp);
cfdc57af
RS
2062
2063 return rtnval;
86a5659e 2064}
9d9a7716 2065#endif /* not HAVE_CLOSEDIR */
1c97e857 2066#endif /* HAVE_DIRENT_H */
86a5659e 2067
23524fb9 2068\f
d35af63c
PE
2069/* Return a struct timeval that is roughly equivalent to T.
2070 Use the least timeval not less than T.
2071 Return an extremal value if the result would overflow. */
2072struct timeval
2073make_timeval (EMACS_TIME t)
2074{
2075 struct timeval tv;
2076 tv.tv_sec = t.tv_sec;
2077 tv.tv_usec = t.tv_nsec / 1000;
2078
2079 if (t.tv_nsec % 1000 != 0)
2080 {
2081 if (tv.tv_usec < 999999)
2082 tv.tv_usec++;
2083 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2084 {
2085 tv.tv_sec++;
2086 tv.tv_usec = 0;
2087 }
2088 }
2089
2090 return tv;
2091}
2092
2093/* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2094 ATIME and MTIME, respectively.
2095 FD must be either negative -- in which case it is ignored --
2096 or a file descriptor that is open on FILE.
2097 If FD is nonnegative, then FILE can be NULL. */
53ea491a 2098int
d35af63c
PE
2099set_file_times (int fd, const char *filename,
2100 EMACS_TIME atime, EMACS_TIME mtime)
2101{
2102 struct timespec timespec[2];
2103 timespec[0] = atime;
2104 timespec[1] = mtime;
2105 return fdutimens (fd, filename, timespec);
53ea491a
KH
2106}
2107\f
68c45bf0
PE
2108#ifndef HAVE_STRSIGNAL
2109char *
cf84bb53 2110strsignal (int code)
68c45bf0
PE
2111{
2112 char *signame = 0;
2113
2114 if (0 <= code && code < NSIG)
2115 {
68c45bf0
PE
2116 /* Cast to suppress warning if the table has const char *. */
2117 signame = (char *) sys_siglist[code];
68c45bf0 2118 }
c4ea52a6 2119
68c45bf0
PE
2120 return signame;
2121}
2122#endif /* HAVE_STRSIGNAL */
d888760c 2123\f
a7ebc409 2124#ifndef DOS_NT
d888760c 2125/* For make-serial-process */
cf84bb53
JB
2126int
2127serial_open (char *port)
d888760c
GM
2128{
2129 int fd = -1;
2130
2131 fd = emacs_open ((char*) port,
2132 O_RDWR
2133#ifdef O_NONBLOCK
2134 | O_NONBLOCK
2135#else
2136 | O_NDELAY
2137#endif
2138#ifdef O_NOCTTY
2139 | O_NOCTTY
2140#endif
2141 , 0);
2142 if (fd < 0)
2143 {
2144 error ("Could not open %s: %s",
2145 port, emacs_strerror (errno));
2146 }
2147#ifdef TIOCEXCL
2148 ioctl (fd, TIOCEXCL, (char *) 0);
2149#endif
2150
2151 return fd;
2152}
759d3f32
SM
2153
2154#if !defined (HAVE_CFMAKERAW)
2155/* Workaround for targets which are missing cfmakeraw. */
2156/* Pasted from man page. */
cf84bb53
JB
2157static void
2158cfmakeraw (struct termios *termios_p)
759d3f32
SM
2159{
2160 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2161 termios_p->c_oflag &= ~OPOST;
2162 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2163 termios_p->c_cflag &= ~(CSIZE|PARENB);
2164 termios_p->c_cflag |= CS8;
2165}
2166#endif /* !defined (HAVE_CFMAKERAW */
2167
2168#if !defined (HAVE_CFSETSPEED)
2169/* Workaround for targets which are missing cfsetspeed. */
cf84bb53
JB
2170static int
2171cfsetspeed (struct termios *termios_p, speed_t vitesse)
759d3f32
SM
2172{
2173 return (cfsetispeed (termios_p, vitesse)
2174 + cfsetospeed (termios_p, vitesse));
2175}
2176#endif
2177
d888760c
GM
2178/* For serial-process-configure */
2179void
2180serial_configure (struct Lisp_Process *p,
cf84bb53 2181 Lisp_Object contact)
d888760c
GM
2182{
2183 Lisp_Object childp2 = Qnil;
2184 Lisp_Object tem = Qnil;
2185 struct termios attr;
2186 int err = -1;
2187 char summary[4] = "???"; /* This usually becomes "8N1". */
2188
4d2b044c 2189 childp2 = Fcopy_sequence (p->childp);
d888760c
GM
2190
2191 /* Read port attributes and prepare default configuration. */
2192 err = tcgetattr (p->outfd, &attr);
2193 if (err != 0)
2194 error ("tcgetattr() failed: %s", emacs_strerror (errno));
2195 cfmakeraw (&attr);
2196#if defined (CLOCAL)
2197 attr.c_cflag |= CLOCAL;
2198#endif
2199#if defined (CREAD)
6d1921be 2200 attr.c_cflag |= CREAD;
d888760c
GM
2201#endif
2202
2203 /* Configure speed. */
2204 if (!NILP (Fplist_member (contact, QCspeed)))
2205 tem = Fplist_get (contact, QCspeed);
2206 else
4d2b044c 2207 tem = Fplist_get (p->childp, QCspeed);
d888760c
GM
2208 CHECK_NUMBER (tem);
2209 err = cfsetspeed (&attr, XINT (tem));
2210 if (err != 0)
c2982e87 2211 error ("cfsetspeed(%"pI"d) failed: %s", XINT (tem),
5fdb398c 2212 emacs_strerror (errno));
d888760c
GM
2213 childp2 = Fplist_put (childp2, QCspeed, tem);
2214
2215 /* Configure bytesize. */
2216 if (!NILP (Fplist_member (contact, QCbytesize)))
2217 tem = Fplist_get (contact, QCbytesize);
2218 else
4d2b044c 2219 tem = Fplist_get (p->childp, QCbytesize);
d888760c
GM
2220 if (NILP (tem))
2221 tem = make_number (8);
2222 CHECK_NUMBER (tem);
2223 if (XINT (tem) != 7 && XINT (tem) != 8)
2224 error (":bytesize must be nil (8), 7, or 8");
cf84bb53 2225 summary[0] = XINT (tem) + '0';
d888760c
GM
2226#if defined (CSIZE) && defined (CS7) && defined (CS8)
2227 attr.c_cflag &= ~CSIZE;
2228 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2229#else
16bad4dd 2230 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
d888760c
GM
2231 if (XINT (tem) != 8)
2232 error ("Bytesize cannot be changed");
2233#endif
2234 childp2 = Fplist_put (childp2, QCbytesize, tem);
2235
2236 /* Configure parity. */
2237 if (!NILP (Fplist_member (contact, QCparity)))
2238 tem = Fplist_get (contact, QCparity);
2239 else
4d2b044c 2240 tem = Fplist_get (p->childp, QCparity);
d888760c
GM
2241 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2242 error (":parity must be nil (no parity), `even', or `odd'");
2243#if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2244 attr.c_cflag &= ~(PARENB | PARODD);
2245 attr.c_iflag &= ~(IGNPAR | INPCK);
2246 if (NILP (tem))
2247 {
2248 summary[1] = 'N';
2249 }
2250 else if (EQ (tem, Qeven))
2251 {
2252 summary[1] = 'E';
2253 attr.c_cflag |= PARENB;
2254 attr.c_iflag |= (IGNPAR | INPCK);
2255 }
2256 else if (EQ (tem, Qodd))
2257 {
2258 summary[1] = 'O';
2259 attr.c_cflag |= (PARENB | PARODD);
2260 attr.c_iflag |= (IGNPAR | INPCK);
2261 }
2262#else
16bad4dd 2263 /* Don't error on no parity, which should be set by cfmakeraw. */
d888760c
GM
2264 if (!NILP (tem))
2265 error ("Parity cannot be configured");
2266#endif
2267 childp2 = Fplist_put (childp2, QCparity, tem);
2268
2269 /* Configure stopbits. */
2270 if (!NILP (Fplist_member (contact, QCstopbits)))
2271 tem = Fplist_get (contact, QCstopbits);
2272 else
4d2b044c 2273 tem = Fplist_get (p->childp, QCstopbits);
d888760c
GM
2274 if (NILP (tem))
2275 tem = make_number (1);
2276 CHECK_NUMBER (tem);
2277 if (XINT (tem) != 1 && XINT (tem) != 2)
2278 error (":stopbits must be nil (1 stopbit), 1, or 2");
2279 summary[2] = XINT (tem) + '0';
2280#if defined (CSTOPB)
2281 attr.c_cflag &= ~CSTOPB;
2282 if (XINT (tem) == 2)
2283 attr.c_cflag |= CSTOPB;
2284#else
16bad4dd 2285 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
d888760c
GM
2286 if (XINT (tem) != 1)
2287 error ("Stopbits cannot be configured");
2288#endif
2289 childp2 = Fplist_put (childp2, QCstopbits, tem);
2290
2291 /* Configure flowcontrol. */
2292 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2293 tem = Fplist_get (contact, QCflowcontrol);
2294 else
4d2b044c 2295 tem = Fplist_get (p->childp, QCflowcontrol);
d888760c
GM
2296 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2297 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2298#if defined (CRTSCTS)
2299 attr.c_cflag &= ~CRTSCTS;
2300#endif
2301#if defined (CNEW_RTSCTS)
2302 attr.c_cflag &= ~CNEW_RTSCTS;
2303#endif
2304#if defined (IXON) && defined (IXOFF)
2305 attr.c_iflag &= ~(IXON | IXOFF);
2306#endif
2307 if (NILP (tem))
2308 {
2309 /* Already configured. */
2310 }
2311 else if (EQ (tem, Qhw))
2312 {
2313#if defined (CRTSCTS)
2314 attr.c_cflag |= CRTSCTS;
2315#elif defined (CNEW_RTSCTS)
2316 attr.c_cflag |= CNEW_RTSCTS;
2317#else
2318 error ("Hardware flowcontrol (RTS/CTS) not supported");
2319#endif
2320 }
2321 else if (EQ (tem, Qsw))
2322 {
2323#if defined (IXON) && defined (IXOFF)
2324 attr.c_iflag |= (IXON | IXOFF);
2325#else
2326 error ("Software flowcontrol (XON/XOFF) not supported");
2327#endif
2328 }
2329 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2330
2331 /* Activate configuration. */
2332 err = tcsetattr (p->outfd, TCSANOW, &attr);
2333 if (err != 0)
2334 error ("tcsetattr() failed: %s", emacs_strerror (errno));
2335
2336 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
6a09a33b 2337 pset_childp (p, childp2);
d888760c 2338}
a7ebc409 2339#endif /* not DOS_NT */
06e111a6
DN
2340\f
2341/* System depended enumeration of and access to system processes a-la ps(1). */
2342
2343#ifdef HAVE_PROCFS
2344
2345/* Process enumeration and access via /proc. */
2346
2347Lisp_Object
971de7fb 2348list_system_processes (void)
06e111a6
DN
2349{
2350 Lisp_Object procdir, match, proclist, next;
2351 struct gcpro gcpro1, gcpro2;
2352 register Lisp_Object tail;
2353
2354 GCPRO2 (procdir, match);
2355 /* For every process on the system, there's a directory in the
2356 "/proc" pseudo-directory whose name is the numeric ID of that
2357 process. */
2358 procdir = build_string ("/proc");
2359 match = build_string ("[0-9]+");
2360 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2361
2362 /* `proclist' gives process IDs as strings. Destructively convert
2363 each string into a number. */
2364 for (tail = proclist; CONSP (tail); tail = next)
2365 {
2366 next = XCDR (tail);
2367 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2368 }
2369 UNGCPRO;
2370
2371 /* directory_files_internal returns the files in reverse order; undo
2372 that. */
2373 proclist = Fnreverse (proclist);
2374 return proclist;
2375}
2376
f01769f9 2377#elif defined BSD_SYSTEM
b91b7e4d
EW
2378
2379Lisp_Object
5790543d 2380list_system_processes (void)
b91b7e4d 2381{
f3047c75 2382#if defined DARWIN_OS || defined __NetBSD__ || defined __OpenBSD__
f01769f9
LL
2383 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2384#else
b91b7e4d 2385 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
f01769f9 2386#endif
b91b7e4d
EW
2387 size_t len;
2388 struct kinfo_proc *procs;
2389 size_t i;
2390
2391 struct gcpro gcpro1;
2392 Lisp_Object proclist = Qnil;
2393
2394 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2395 return proclist;
5790543d 2396
b91b7e4d
EW
2397 procs = xmalloc (len);
2398 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2399 {
2400 xfree (procs);
2401 return proclist;
2402 }
5790543d 2403
b91b7e4d
EW
2404 GCPRO1 (proclist);
2405 len /= sizeof (struct kinfo_proc);
2406 for (i = 0; i < len; i++)
f01769f9 2407 {
f3047c75 2408#if defined DARWIN_OS || defined __NetBSD__
f01769f9 2409 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
7dca65a4
PE
2410#elif defined __OpenBSD__
2411 proclist = Fcons (make_fixnum_or_float (procs[i].p_pid), proclist);
f01769f9
LL
2412#else
2413 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2414#endif
2415 }
b91b7e4d 2416 UNGCPRO;
5790543d 2417
b91b7e4d
EW
2418 xfree (procs);
2419
2420 return proclist;
2421}
2422
f8d23104
DN
2423/* The WINDOWSNT implementation is in w32.c.
2424 The MSDOS implementation is in dosfns.c. */
c4605e09 2425#elif !defined (WINDOWSNT) && !defined (MSDOS)
06e111a6
DN
2426
2427Lisp_Object
cf84bb53 2428list_system_processes (void)
06e111a6
DN
2429{
2430 return Qnil;
2431}
91c85b70
EZ
2432
2433#endif /* !defined (WINDOWSNT) */
06e111a6
DN
2434
2435#ifdef GNU_LINUX
d35af63c
PE
2436static EMACS_TIME
2437time_from_jiffies (unsigned long long tval, long hz)
2438{
2439 unsigned long long s = tval / hz;
2440 unsigned long long frac = tval % hz;
2441 int ns;
d35af63c
PE
2442
2443 if (TYPE_MAXIMUM (time_t) < s)
2444 time_overflow ();
2445 if (LONG_MAX - 1 <= ULLONG_MAX / EMACS_TIME_RESOLUTION
2446 || frac <= ULLONG_MAX / EMACS_TIME_RESOLUTION)
2447 ns = frac * EMACS_TIME_RESOLUTION / hz;
06e111a6 2448 else
d35af63c
PE
2449 {
2450 /* This is reachable only in the unlikely case that HZ * HZ
2451 exceeds ULLONG_MAX. It calculates an approximation that is
2452 guaranteed to be in range. */
2453 long hz_per_ns = (hz / EMACS_TIME_RESOLUTION
2454 + (hz % EMACS_TIME_RESOLUTION != 0));
2455 ns = frac / hz_per_ns;
2456 }
2457
e9a9ae03 2458 return make_emacs_time (s, ns);
06e111a6
DN
2459}
2460
2461static Lisp_Object
2462ltime_from_jiffies (unsigned long long tval, long hz)
2463{
d35af63c
PE
2464 EMACS_TIME t = time_from_jiffies (tval, hz);
2465 return make_lisp_time (t);
06e111a6
DN
2466}
2467
d35af63c
PE
2468static EMACS_TIME
2469get_up_time (void)
06e111a6
DN
2470{
2471 FILE *fup;
e9a9ae03 2472 EMACS_TIME up = make_emacs_time (0, 0);
06e111a6
DN
2473
2474 BLOCK_INPUT;
2475 fup = fopen ("/proc/uptime", "r");
2476
2477 if (fup)
2478 {
d35af63c
PE
2479 unsigned long long upsec, upfrac, idlesec, idlefrac;
2480 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
06e111a6 2481
d35af63c
PE
2482 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2483 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2484 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2485 == 4)
06e111a6 2486 {
d35af63c
PE
2487 if (TYPE_MAXIMUM (time_t) < upsec)
2488 {
2489 upsec = TYPE_MAXIMUM (time_t);
2490 upfrac = EMACS_TIME_RESOLUTION - 1;
2491 }
2492 else
2493 {
2494 int upfraclen = upfrac_end - upfrac_start;
2495 for (; upfraclen < LOG10_EMACS_TIME_RESOLUTION; upfraclen++)
2496 upfrac *= 10;
2497 for (; LOG10_EMACS_TIME_RESOLUTION < upfraclen; upfraclen--)
2498 upfrac /= 10;
2499 upfrac = min (upfrac, EMACS_TIME_RESOLUTION - 1);
2500 }
e9a9ae03 2501 up = make_emacs_time (upsec, upfrac);
06e111a6
DN
2502 }
2503 fclose (fup);
2504 }
2505 UNBLOCK_INPUT;
d35af63c
PE
2506
2507 return up;
06e111a6
DN
2508}
2509
2510#define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2511#define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2512
2513static Lisp_Object
f4f634e8 2514procfs_ttyname (int rdev)
06e111a6
DN
2515{
2516 FILE *fdev = NULL;
2517 char name[PATH_MAX];
2518
2519 BLOCK_INPUT;
2520 fdev = fopen ("/proc/tty/drivers", "r");
2521
2522 if (fdev)
2523 {
2524 unsigned major;
2525 unsigned long minor_beg, minor_end;
2526 char minor[25]; /* 2 32-bit numbers + dash */
2527 char *endp;
2528
2529 while (!feof (fdev) && !ferror (fdev))
2530 {
2531 if (3 <= fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor)
2532 && major == MAJOR (rdev))
2533 {
2534 minor_beg = strtoul (minor, &endp, 0);
2535 if (*endp == '\0')
2536 minor_end = minor_beg;
2537 else if (*endp == '-')
2538 minor_end = strtoul (endp + 1, &endp, 0);
2539 else
2540 continue;
2541
2542 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2543 {
10d66ec0 2544 sprintf (name + strlen (name), "%u", MINOR (rdev));
06e111a6
DN
2545 break;
2546 }
2547 }
2548 }
2549 fclose (fdev);
2550 }
2551 UNBLOCK_INPUT;
2552 return build_string (name);
2553}
2554
2555static unsigned long
2556procfs_get_total_memory (void)
2557{
2558 FILE *fmem = NULL;
2559 unsigned long retval = 2 * 1024 * 1024; /* default: 2GB */
2560
2561 BLOCK_INPUT;
2562 fmem = fopen ("/proc/meminfo", "r");
2563
2564 if (fmem)
2565 {
2566 unsigned long entry_value;
2567 char entry_name[20]; /* the longest I saw is 13+1 */
2568
2569 while (!feof (fmem) && !ferror (fmem))
2570 {
2571 if (2 <= fscanf (fmem, "%s %lu kB\n", entry_name, &entry_value)
2572 && strcmp (entry_name, "MemTotal:") == 0)
2573 {
2574 retval = entry_value;
2575 break;
2576 }
2577 }
2578 fclose (fmem);
2579 }
2580 UNBLOCK_INPUT;
2581 return retval;
2582}
2583
2584Lisp_Object
f4f634e8 2585system_process_attributes (Lisp_Object pid)
06e111a6
DN
2586{
2587 char procfn[PATH_MAX], fn[PATH_MAX];
2588 struct stat st;
2589 struct passwd *pw;
2590 struct group *gr;
2591 long clocks_per_sec;
2592 char *procfn_end;
2593 char procbuf[1025], *p, *q;
2594 int fd;
2595 ssize_t nread;
e99a530f
PE
2596 static char const default_cmd[] = "???";
2597 const char *cmd = default_cmd;
2598 int cmdsize = sizeof default_cmd - 1;
06e111a6 2599 char *cmdline = NULL;
e99a530f 2600 ptrdiff_t cmdline_size;
06e111a6 2601 unsigned char c;
d311d28c
PE
2602 printmax_t proc_id;
2603 int ppid, pgrp, sess, tty, tpgid, thcount;
2604 uid_t uid;
2605 gid_t gid;
a70072c9
PE
2606 unsigned long long u_time, s_time, cutime, cstime, start;
2607 long priority, niceness, rss;
06e111a6 2608 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
d35af63c 2609 EMACS_TIME tnow, tstart, tboot, telapsed, us_time;
06e111a6
DN
2610 double pcpu, pmem;
2611 Lisp_Object attrs = Qnil;
2612 Lisp_Object cmd_str, decoded_cmd, tem;
2613 struct gcpro gcpro1, gcpro2;
06e111a6
DN
2614
2615 CHECK_NUMBER_OR_FLOAT (pid);
225a2cff 2616 CONS_TO_INTEGER (pid, pid_t, proc_id);
d311d28c 2617 sprintf (procfn, "/proc/%"pMd, proc_id);
06e111a6
DN
2618 if (stat (procfn, &st) < 0)
2619 return attrs;
2620
2621 GCPRO2 (attrs, decoded_cmd);
2622
2623 /* euid egid */
2624 uid = st.st_uid;
d311d28c 2625 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
06e111a6
DN
2626 BLOCK_INPUT;
2627 pw = getpwuid (uid);
2628 UNBLOCK_INPUT;
2629 if (pw)
2630 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2631
2632 gid = st.st_gid;
d311d28c 2633 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
06e111a6
DN
2634 BLOCK_INPUT;
2635 gr = getgrgid (gid);
2636 UNBLOCK_INPUT;
2637 if (gr)
2638 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2639
2640 strcpy (fn, procfn);
2641 procfn_end = fn + strlen (fn);
2642 strcpy (procfn_end, "/stat");
2643 fd = emacs_open (fn, O_RDONLY, 0);
cf84bb53 2644 if (fd >= 0 && (nread = emacs_read (fd, procbuf, sizeof (procbuf) - 1)) > 0)
06e111a6
DN
2645 {
2646 procbuf[nread] = '\0';
2647 p = procbuf;
2648
2649 p = strchr (p, '(');
2650 if (p != NULL)
2651 {
2652 q = strrchr (p + 1, ')');
2653 /* comm */
2654 if (q != NULL)
2655 {
2656 cmd = p + 1;
2657 cmdsize = q - cmd;
2658 }
2659 }
2660 else
2661 q = NULL;
06e111a6
DN
2662 /* Command name is encoded in locale-coding-system; decode it. */
2663 cmd_str = make_unibyte_string (cmd, cmdsize);
2664 decoded_cmd = code_convert_string_norecord (cmd_str,
2665 Vlocale_coding_system, 0);
2666 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2667
2668 if (q)
2669 {
2670 EMACS_INT ppid_eint, pgrp_eint, sess_eint, tpgid_eint, thcount_eint;
2671 p = q + 2;
2672 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
2673 sscanf (p, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
2674 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
2675 &minflt, &cminflt, &majflt, &cmajflt,
a70072c9
PE
2676 &u_time, &s_time, &cutime, &cstime,
2677 &priority, &niceness, &thcount, &start, &vsize, &rss);
06e111a6
DN
2678 {
2679 char state_str[2];
2680
2681 state_str[0] = c;
2682 state_str[1] = '\0';
2683 tem = build_string (state_str);
2684 attrs = Fcons (Fcons (Qstate, tem), attrs);
2685 }
2686 /* Stops GCC whining about limited range of data type. */
2687 ppid_eint = ppid;
2688 pgrp_eint = pgrp;
2689 sess_eint = sess;
2690 tpgid_eint = tpgid;
2691 thcount_eint = thcount;
2692 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid_eint)), attrs);
2693 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp_eint)), attrs);
2694 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess_eint)), attrs);
2695 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
2696 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid_eint)), attrs);
2697 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
2698 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
2699 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)), attrs);
2700 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)), attrs);
2701 clocks_per_sec = sysconf (_SC_CLK_TCK);
2702 if (clocks_per_sec < 0)
2703 clocks_per_sec = 100;
2704 attrs = Fcons (Fcons (Qutime,
a70072c9 2705 ltime_from_jiffies (u_time, clocks_per_sec)),
06e111a6
DN
2706 attrs);
2707 attrs = Fcons (Fcons (Qstime,
a70072c9 2708 ltime_from_jiffies (s_time, clocks_per_sec)),
06e111a6 2709 attrs);
ac1e4171 2710 attrs = Fcons (Fcons (Qtime,
a70072c9
PE
2711 ltime_from_jiffies (s_time + u_time,
2712 clocks_per_sec)),
ac1e4171 2713 attrs);
06e111a6
DN
2714 attrs = Fcons (Fcons (Qcutime,
2715 ltime_from_jiffies (cutime, clocks_per_sec)),
2716 attrs);
2717 attrs = Fcons (Fcons (Qcstime,
2718 ltime_from_jiffies (cstime, clocks_per_sec)),
ac1e4171
EZ
2719 attrs);
2720 attrs = Fcons (Fcons (Qctime,
2721 ltime_from_jiffies (cstime+cutime, clocks_per_sec)),
06e111a6
DN
2722 attrs);
2723 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
a70072c9 2724 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
06e111a6 2725 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount_eint)), attrs);
e9a9ae03 2726 tnow = current_emacs_time ();
d35af63c 2727 telapsed = get_up_time ();
e9a9ae03 2728 tboot = sub_emacs_time (tnow, telapsed);
d35af63c 2729 tstart = time_from_jiffies (start, clocks_per_sec);
e9a9ae03 2730 tstart = add_emacs_time (tboot, tstart);
d35af63c 2731 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
06e111a6
DN
2732 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize/1024)), attrs);
2733 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4*rss)), attrs);
e9a9ae03 2734 telapsed = sub_emacs_time (tnow, tstart);
d35af63c
PE
2735 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
2736 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
2737 pcpu = (EMACS_TIME_TO_DOUBLE (us_time)
2738 / EMACS_TIME_TO_DOUBLE (telapsed));
06e111a6
DN
2739 if (pcpu > 1.0)
2740 pcpu = 1.0;
2741 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
2742 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
2743 if (pmem > 100)
2744 pmem = 100;
2745 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
2746 }
2747 }
2748 if (fd >= 0)
2749 emacs_close (fd);
2750
2751 /* args */
2752 strcpy (procfn_end, "/cmdline");
2753 fd = emacs_open (fn, O_RDONLY, 0);
2754 if (fd >= 0)
2755 {
fbd02d7b 2756 char ch;
fe6442b1 2757 for (cmdline_size = 0; cmdline_size < STRING_BYTES_BOUND; cmdline_size++)
06e111a6 2758 {
fe6442b1
PE
2759 if (emacs_read (fd, &ch, 1) != 1)
2760 break;
fbd02d7b 2761 c = ch;
620f13b0 2762 if (c_isspace (c) || c == '\\')
06e111a6
DN
2763 cmdline_size++; /* for later quoting, see below */
2764 }
2765 if (cmdline_size)
2766 {
2767 cmdline = xmalloc (cmdline_size + 1);
2768 lseek (fd, 0L, SEEK_SET);
2769 cmdline[0] = '\0';
2770 if ((nread = read (fd, cmdline, cmdline_size)) >= 0)
2771 cmdline[nread++] = '\0';
2772 else
2773 {
2774 /* Assigning zero to `nread' makes us skip the following
2775 two loops, assign zero to cmdline_size, and enter the
2776 following `if' clause that handles unknown command
2777 lines. */
2778 nread = 0;
2779 }
2780 /* We don't want trailing null characters. */
fe6442b1 2781 for (p = cmdline + nread; p > cmdline + 1 && !p[-1]; p--)
06e111a6
DN
2782 nread--;
2783 for (p = cmdline; p < cmdline + nread; p++)
2784 {
2785 /* Escape-quote whitespace and backslashes. */
620f13b0 2786 if (c_isspace (*p) || *p == '\\')
06e111a6
DN
2787 {
2788 memmove (p + 1, p, nread - (p - cmdline));
2789 nread++;
2790 *p++ = '\\';
2791 }
2792 else if (*p == '\0')
2793 *p = ' ';
2794 }
2795 cmdline_size = nread;
2796 }
2797 if (!cmdline_size)
2798 {
06e111a6
DN
2799 cmdline_size = cmdsize + 2;
2800 cmdline = xmalloc (cmdline_size + 1);
e99a530f 2801 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
06e111a6
DN
2802 }
2803 emacs_close (fd);
2804 /* Command line is encoded in locale-coding-system; decode it. */
2805 cmd_str = make_unibyte_string (cmdline, cmdline_size);
2806 decoded_cmd = code_convert_string_norecord (cmd_str,
2807 Vlocale_coding_system, 0);
2808 xfree (cmdline);
2809 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
2810 }
2811
2812 UNGCPRO;
2813 return attrs;
2814}
91c85b70 2815
f4f634e8
DN
2816#elif defined (SOLARIS2) && defined (HAVE_PROCFS)
2817
2818/* The <procfs.h> header does not like to be included if _LP64 is defined and
2819 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
2820#if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
2821#define PROCFS_FILE_OFFSET_BITS_HACK 1
2822#undef _FILE_OFFSET_BITS
2823#else
2824#define PROCFS_FILE_OFFSET_BITS_HACK 0
2825#endif
2826
2827#include <procfs.h>
2828
2829#if PROCFS_FILE_OFFSET_BITS_HACK == 1
2830#define _FILE_OFFSET_BITS 64
90efadd1
PE
2831#ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
2832#endif
f4f634e8
DN
2833#endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
2834
2835Lisp_Object
2836system_process_attributes (Lisp_Object pid)
2837{
2838 char procfn[PATH_MAX], fn[PATH_MAX];
2839 struct stat st;
2840 struct passwd *pw;
2841 struct group *gr;
2842 char *procfn_end;
2843 struct psinfo pinfo;
2844 int fd;
2845 ssize_t nread;
d311d28c
PE
2846 printmax_t proc_id;
2847 uid_t uid;
2848 gid_t gid;
f4f634e8
DN
2849 Lisp_Object attrs = Qnil;
2850 Lisp_Object decoded_cmd, tem;
2851 struct gcpro gcpro1, gcpro2;
f4f634e8
DN
2852
2853 CHECK_NUMBER_OR_FLOAT (pid);
225a2cff 2854 CONS_TO_INTEGER (pid, pid_t, proc_id);
d311d28c 2855 sprintf (procfn, "/proc/%"pMd, proc_id);
f4f634e8
DN
2856 if (stat (procfn, &st) < 0)
2857 return attrs;
2858
2859 GCPRO2 (attrs, decoded_cmd);
2860
2861 /* euid egid */
2862 uid = st.st_uid;
d311d28c 2863 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
f4f634e8
DN
2864 BLOCK_INPUT;
2865 pw = getpwuid (uid);
2866 UNBLOCK_INPUT;
2867 if (pw)
2868 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2869
2870 gid = st.st_gid;
d311d28c 2871 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
f4f634e8
DN
2872 BLOCK_INPUT;
2873 gr = getgrgid (gid);
2874 UNBLOCK_INPUT;
2875 if (gr)
2876 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2877
2878 strcpy (fn, procfn);
2879 procfn_end = fn + strlen (fn);
2880 strcpy (procfn_end, "/psinfo");
2881 fd = emacs_open (fn, O_RDONLY, 0);
2882 if (fd >= 0
cf84bb53 2883 && (nread = read (fd, (char*)&pinfo, sizeof (struct psinfo)) > 0))
f4f634e8
DN
2884 {
2885 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
2886 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
2887 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
2888
2889 {
2890 char state_str[2];
2891 state_str[0] = pinfo.pr_lwp.pr_sname;
2892 state_str[1] = '\0';
2893 tem = build_string (state_str);
2894 attrs = Fcons (Fcons (Qstate, tem), attrs);
2895 }
2896
2897 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
2898 need to get a string from it. */
2899
2900 /* FIXME: missing: Qtpgid */
2901
2902 /* FIXME: missing:
2903 Qminflt
2904 Qmajflt
2905 Qcminflt
2906 Qcmajflt
2907
bfe11752
DN
2908 Qutime
2909 Qcutime
f4f634e8
DN
2910 Qstime
2911 Qcstime
2912 Are they available? */
2913
d35af63c
PE
2914 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
2915 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
f4f634e8
DN
2916 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
2917 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
2918 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)), attrs);
2919
d35af63c 2920 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
f4f634e8
DN
2921 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)), attrs);
2922 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)), attrs);
2923
773d47f6
PE
2924 /* pr_pctcpu and pr_pctmem are unsigned integers in the
2925 range 0 .. 2**15, representing 0.0 .. 1.0. */
63810350
PE
2926 attrs = Fcons (Fcons (Qpcpu, make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)), attrs);
2927 attrs = Fcons (Fcons (Qpmem, make_float (100.0 / 0x8000 * pinfo.pr_pctmem)), attrs);
f4f634e8
DN
2928
2929 decoded_cmd
2930 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_fname,
2931 strlen (pinfo.pr_fname)),
2932 Vlocale_coding_system, 0);
2933 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2934 decoded_cmd
2935 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_psargs,
2936 strlen (pinfo.pr_psargs)),
2937 Vlocale_coding_system, 0);
2938 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
2939 }
2940
2d2d05d8
DN
2941 if (fd >= 0)
2942 emacs_close (fd);
2943
f4f634e8
DN
2944 UNGCPRO;
2945 return attrs;
2946}
06e111a6 2947
5790543d 2948#elif defined __FreeBSD__
b91b7e4d 2949
d054f3fb
PE
2950static EMACS_TIME
2951timeval_to_EMACS_TIME (struct timeval t)
2952{
e9a9ae03 2953 return make_emacs_time (t.tv_sec, t.tv_usec * 1000);
d054f3fb
PE
2954}
2955
2956static Lisp_Object
db7b8d06 2957make_lisp_timeval (struct timeval t)
d054f3fb
PE
2958{
2959 return make_lisp_time (timeval_to_EMACS_TIME (t));
2960}
2961
b91b7e4d
EW
2962Lisp_Object
2963system_process_attributes (Lisp_Object pid)
2964{
2965 int proc_id;
5790543d 2966 int pagesize = getpagesize ();
b91b7e4d
EW
2967 int npages;
2968 int fscale;
2969 struct passwd *pw;
2970 struct group *gr;
2971 char *ttyname;
2972 size_t len;
2973 char args[MAXPATHLEN];
2974 EMACS_TIME t, now;
5790543d 2975
b91b7e4d
EW
2976 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
2977 struct kinfo_proc proc;
5790543d 2978 size_t proclen = sizeof proc;
b91b7e4d
EW
2979
2980 struct gcpro gcpro1, gcpro2;
2981 Lisp_Object attrs = Qnil;
2982 Lisp_Object decoded_comm;
5790543d 2983
b91b7e4d 2984 CHECK_NUMBER_OR_FLOAT (pid);
af52196c 2985 CONS_TO_INTEGER (pid, int, proc_id);
b91b7e4d 2986 mib[3] = proc_id;
5790543d 2987
b91b7e4d
EW
2988 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
2989 return attrs;
2990
2991 GCPRO2 (attrs, decoded_comm);
5790543d
PE
2992
2993 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
2994
b91b7e4d
EW
2995 BLOCK_INPUT;
2996 pw = getpwuid (proc.ki_uid);
2997 UNBLOCK_INPUT;
2998 if (pw)
2999 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3000
5790543d 3001 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
b91b7e4d
EW
3002
3003 BLOCK_INPUT;
3004 gr = getgrgid (proc.ki_svgid);
3005 UNBLOCK_INPUT;
3006 if (gr)
3007 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3008
3009 decoded_comm = code_convert_string_norecord
3010 (make_unibyte_string (proc.ki_comm, strlen (proc.ki_comm)),
3011 Vlocale_coding_system, 0);
5790543d 3012
b91b7e4d
EW
3013 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3014 {
3015 char state[2] = {'\0', '\0'};
3016 switch (proc.ki_stat)
3017 {
3018 case SRUN:
3019 state[0] = 'R';
3020 break;
3021
3022 case SSLEEP:
3023 state[0] = 'S';
3024 break;
5790543d 3025
b91b7e4d
EW
3026 case SLOCK:
3027 state[0] = 'D';
3028 break;
3029
3030 case SZOMB:
3031 state[0] = 'Z';
3032 break;
5790543d 3033
b91b7e4d
EW
3034 case SSTOP:
3035 state[0] = 'T';
3036 break;
3037 }
3038 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3039 }
5790543d 3040
b91b7e4d
EW
3041 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3042 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3043 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3044
3045 BLOCK_INPUT;
3046 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3047 UNBLOCK_INPUT;
3048 if (ttyname)
3049 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
5790543d 3050
b91b7e4d
EW
3051 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3052 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3053 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3054 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3055 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3056
db7b8d06
PE
3057 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3058 attrs);
3059 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3060 attrs);
e9a9ae03
PE
3061 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage.ru_utime),
3062 timeval_to_EMACS_TIME (proc.ki_rusage.ru_stime));
db7b8d06 3063 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
b91b7e4d 3064
db7b8d06
PE
3065 attrs = Fcons (Fcons (Qcutime,
3066 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3067 attrs);
3068 attrs = Fcons (Fcons (Qcstime,
3069 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3070 attrs);
e9a9ae03
PE
3071 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_utime),
3072 timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_stime));
db7b8d06 3073 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
b91b7e4d 3074
5790543d
PE
3075 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3076 attrs);
b91b7e4d
EW
3077 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3078 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
db7b8d06 3079 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
b91b7e4d 3080 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
5790543d
PE
3081 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3082 attrs);
b91b7e4d 3083
e9a9ae03
PE
3084 now = current_emacs_time ();
3085 t = sub_emacs_time (now, timeval_to_EMACS_TIME (proc.ki_start));
db7b8d06 3086 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
b91b7e4d 3087
5790543d 3088 len = sizeof fscale;
b91b7e4d
EW
3089 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3090 {
5790543d 3091 double pcpu;
b91b7e4d 3092 fixpt_t ccpu;
5790543d 3093 len = sizeof ccpu;
b91b7e4d
EW
3094 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3095 {
5790543d
PE
3096 pcpu = (100.0 * proc.ki_pctcpu / fscale
3097 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3098 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
b91b7e4d
EW
3099 }
3100 }
3101
5790543d 3102 len = sizeof npages;
b91b7e4d
EW
3103 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3104 {
5790543d
PE
3105 double pmem = (proc.ki_flag & P_INMEM
3106 ? 100.0 * proc.ki_rssize / npages
3107 : 0);
3108 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
b91b7e4d
EW
3109 }
3110
3111 mib[2] = KERN_PROC_ARGS;
3112 len = MAXPATHLEN;
3113 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3114 {
3115 int i;
3116 for (i = 0; i < len; i++)
3117 {
3118 if (! args[i] && i < len - 1)
3119 args[i] = ' ';
3120 }
3121
5790543d
PE
3122 decoded_comm =
3123 (code_convert_string_norecord
d7ea76b4 3124 (build_unibyte_string (args),
5790543d 3125 Vlocale_coding_system, 0));
b91b7e4d
EW
3126
3127 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3128 }
5790543d 3129
b91b7e4d
EW
3130 UNGCPRO;
3131 return attrs;
3132}
3133
f8d23104
DN
3134/* The WINDOWSNT implementation is in w32.c.
3135 The MSDOS implementation is in dosfns.c. */
c4605e09 3136#elif !defined (WINDOWSNT) && !defined (MSDOS)
06e111a6
DN
3137
3138Lisp_Object
3139system_process_attributes (Lisp_Object pid)
3140{
9dcbe89b 3141 return Qnil;
06e111a6
DN
3142}
3143
3144#endif /* !defined (WINDOWSNT) */