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