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