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