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