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