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