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