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