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