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