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