(ls-lisp-insert-directory): Make -B work
[emacs.git] / src / sysdep.c
blob3c3da0d5d7b90b8f7c6415a4102fffcdea4245f1
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2016 Free Software
3 Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 /* If HYBRID_GET_CURRENT_DIR_NAME is defined in conf_post.h, then we
23 need the following before including unistd.h, in order to pick up
24 the right prototype for gget_current_dir_name. */
25 #ifdef HYBRID_GET_CURRENT_DIR_NAME
26 #undef get_current_dir_name
27 #define get_current_dir_name gget_current_dir_name
28 #endif
30 #include <execinfo.h>
31 #include "sysstdio.h"
32 #ifdef HAVE_PWD_H
33 #include <pwd.h>
34 #include <grp.h>
35 #endif /* HAVE_PWD_H */
36 #include <limits.h>
37 #include <unistd.h>
39 #include <c-ctype.h>
40 #include <utimens.h>
42 #include "lisp.h"
43 #include "sysselect.h"
44 #include "blockinput.h"
46 #if defined DARWIN_OS || defined __FreeBSD__
47 # include <sys/sysctl.h>
48 #endif
50 #ifdef __FreeBSD__
51 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
52 'struct frame', so rename it. */
53 # define frame freebsd_frame
54 # include <sys/user.h>
55 # undef frame
57 # include <math.h>
58 #endif
60 #ifdef WINDOWSNT
61 #define read sys_read
62 #define write sys_write
63 #ifndef STDERR_FILENO
64 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
65 #endif
66 #include <windows.h>
67 #endif /* not WINDOWSNT */
69 #include <sys/types.h>
70 #include <sys/stat.h>
71 #include <errno.h>
73 /* Get SI_SRPC_DOMAIN, if it is available. */
74 #ifdef HAVE_SYS_SYSTEMINFO_H
75 #include <sys/systeminfo.h>
76 #endif
78 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
79 #include "msdos.h"
80 #endif
82 #include <sys/param.h>
83 #include <sys/file.h>
84 #include <fcntl.h>
86 #include "systty.h"
87 #include "syswait.h"
89 #ifdef HAVE_SYS_UTSNAME_H
90 #include <sys/utsname.h>
91 #include <memory.h>
92 #endif /* HAVE_SYS_UTSNAME_H */
94 #include "keyboard.h"
95 #include "frame.h"
96 #include "termhooks.h"
97 #include "termchar.h"
98 #include "termopts.h"
99 #include "process.h"
100 #include "cm.h"
102 #include "gnutls.h"
103 /* MS-Windows loads GnuTLS at run time, if available; we don't want to
104 do that during startup just to call gnutls_rnd. */
105 #if 0x020c00 <= GNUTLS_VERSION_NUMBER && !defined WINDOWSNT
106 # include <gnutls/crypto.h>
107 #else
108 # define emacs_gnutls_global_init() Qnil
109 # define gnutls_rnd(level, data, len) (-1)
110 #endif
112 #ifdef WINDOWSNT
113 #include <direct.h>
114 /* In process.h which conflicts with the local copy. */
115 #define _P_WAIT 0
116 int _cdecl _spawnlp (int, const char *, const char *, ...);
117 int _cdecl _getpid (void);
118 /* The following is needed for O_CLOEXEC, F_SETFD, FD_CLOEXEC, and
119 several prototypes of functions called below. */
120 #include <sys/socket.h>
121 #endif
123 #include "syssignal.h"
124 #include "systime.h"
126 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
127 #ifndef ULLONG_MAX
128 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
129 #endif
131 /* Declare here, including term.h is problematic on some systems. */
132 extern void tputs (const char *, int, int (*)(int));
134 static const int baud_convert[] =
136 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
137 1800, 2400, 4800, 9600, 19200, 38400
140 #if !defined HAVE_GET_CURRENT_DIR_NAME || defined BROKEN_GET_CURRENT_DIR_NAME \
141 || (defined HYBRID_GET_CURRENT_DIR_NAME)
142 /* Return the current working directory. Returns NULL on errors.
143 Any other returned value must be freed with free. This is used
144 only when get_current_dir_name is not defined on the system. */
145 char *
146 get_current_dir_name (void)
148 char *buf;
149 char *pwd = getenv ("PWD");
150 struct stat dotstat, pwdstat;
151 /* If PWD is accurate, use it instead of calling getcwd. PWD is
152 sometimes a nicer name, and using it may avoid a fatal error if a
153 parent directory is searchable but not readable. */
154 if (pwd
155 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
156 && stat (pwd, &pwdstat) == 0
157 && stat (".", &dotstat) == 0
158 && dotstat.st_ino == pwdstat.st_ino
159 && dotstat.st_dev == pwdstat.st_dev
160 #ifdef MAXPATHLEN
161 && strlen (pwd) < MAXPATHLEN
162 #endif
165 buf = malloc (strlen (pwd) + 1);
166 if (!buf)
167 return NULL;
168 strcpy (buf, pwd);
170 else
172 size_t buf_size = 1024;
173 buf = malloc (buf_size);
174 if (!buf)
175 return NULL;
176 for (;;)
178 if (getcwd (buf, buf_size) == buf)
179 break;
180 if (errno != ERANGE)
182 int tmp_errno = errno;
183 free (buf);
184 errno = tmp_errno;
185 return NULL;
187 buf_size *= 2;
188 buf = realloc (buf, buf_size);
189 if (!buf)
190 return NULL;
193 return buf;
195 #endif
198 /* Discard pending input on all input descriptors. */
200 void
201 discard_tty_input (void)
203 #ifndef WINDOWSNT
204 struct emacs_tty buf;
206 if (noninteractive)
207 return;
209 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
210 while (dos_keyread () != -1)
212 #else /* not MSDOS */
214 struct tty_display_info *tty;
215 for (tty = tty_list; tty; tty = tty->next)
217 if (tty->input) /* Is the device suspended? */
219 emacs_get_tty (fileno (tty->input), &buf);
220 emacs_set_tty (fileno (tty->input), &buf, 0);
224 #endif /* not MSDOS */
225 #endif /* not WINDOWSNT */
229 #ifdef SIGTSTP
231 /* Arrange for character C to be read as the next input from
232 the terminal.
233 XXX What if we have multiple ttys?
236 void
237 stuff_char (char c)
239 if (! (FRAMEP (selected_frame)
240 && FRAME_LIVE_P (XFRAME (selected_frame))
241 && FRAME_TERMCAP_P (XFRAME (selected_frame))))
242 return;
244 /* Should perhaps error if in batch mode */
245 #ifdef TIOCSTI
246 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
247 #else /* no TIOCSTI */
248 error ("Cannot stuff terminal input characters in this version of Unix");
249 #endif /* no TIOCSTI */
252 #endif /* SIGTSTP */
254 void
255 init_baud_rate (int fd)
257 int emacs_ospeed;
259 if (noninteractive)
260 emacs_ospeed = 0;
261 else
263 #ifdef DOS_NT
264 emacs_ospeed = 15;
265 #else /* not DOS_NT */
266 struct termios sg;
268 sg.c_cflag = B9600;
269 tcgetattr (fd, &sg);
270 emacs_ospeed = cfgetospeed (&sg);
271 #endif /* not DOS_NT */
274 baud_rate = (emacs_ospeed < ARRAYELTS (baud_convert)
275 ? baud_convert[emacs_ospeed] : 9600);
276 if (baud_rate == 0)
277 baud_rate = 1200;
282 #ifndef MSDOS
284 /* Wait for the subprocess with process id CHILD to terminate or change status.
285 CHILD must be a child process that has not been reaped.
286 If STATUS is non-null, store the waitpid-style exit status into *STATUS
287 and tell wait_reading_process_output that it needs to look around.
288 Use waitpid-style OPTIONS when waiting.
289 If INTERRUPTIBLE, this function is interruptible by a signal.
291 Return CHILD if successful, 0 if no status is available;
292 the latter is possible only when options & NOHANG. */
293 static pid_t
294 get_child_status (pid_t child, int *status, int options, bool interruptible)
296 pid_t pid;
298 /* Invoke waitpid only with a known process ID; do not invoke
299 waitpid with a nonpositive argument. Otherwise, Emacs might
300 reap an unwanted process by mistake. For example, invoking
301 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
302 so that another thread running glib won't find them. */
303 eassert (child > 0);
305 while ((pid = waitpid (child, status, options)) < 0)
307 /* Check that CHILD is a child process that has not been reaped,
308 and that STATUS and OPTIONS are valid. Otherwise abort,
309 as continuing after this internal error could cause Emacs to
310 become confused and kill innocent-victim processes. */
311 if (errno != EINTR)
312 emacs_abort ();
314 /* Note: the MS-Windows emulation of waitpid calls QUIT
315 internally. */
316 if (interruptible)
317 QUIT;
320 /* If successful and status is requested, tell wait_reading_process_output
321 that it needs to wake up and look around. */
322 if (pid && status && input_available_clear_time)
323 *input_available_clear_time = make_timespec (0, 0);
325 return pid;
328 /* Wait for the subprocess with process id CHILD to terminate.
329 CHILD must be a child process that has not been reaped.
330 If STATUS is non-null, store the waitpid-style exit status into *STATUS
331 and tell wait_reading_process_output that it needs to look around.
332 If INTERRUPTIBLE, this function is interruptible by a signal. */
333 void
334 wait_for_termination (pid_t child, int *status, bool interruptible)
336 get_child_status (child, status, 0, interruptible);
339 /* Report whether the subprocess with process id CHILD has changed status.
340 Termination counts as a change of status.
341 CHILD must be a child process that has not been reaped.
342 If STATUS is non-null, store the waitpid-style exit status into *STATUS
343 and tell wait_reading_process_output that it needs to look around.
344 Use waitpid-style OPTIONS to check status, but do not wait.
346 Return CHILD if successful, 0 if no status is available because
347 the process's state has not changed. */
348 pid_t
349 child_status_changed (pid_t child, int *status, int options)
351 return get_child_status (child, status, WNOHANG | options, 0);
355 /* Set up the terminal at the other end of a pseudo-terminal that
356 we will be controlling an inferior through.
357 It should not echo or do line-editing, since that is done
358 in Emacs. No padding needed for insertion into an Emacs buffer. */
360 void
361 child_setup_tty (int out)
363 #ifndef WINDOWSNT
364 struct emacs_tty s;
366 emacs_get_tty (out, &s);
367 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
368 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
369 #ifdef NLDLY
370 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
371 Some versions of GNU Hurd do not have FFDLY? */
372 #ifdef FFDLY
373 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
374 /* No output delays */
375 #else
376 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
377 /* No output delays */
378 #endif
379 #endif
380 s.main.c_lflag &= ~ECHO; /* Disable echo */
381 s.main.c_lflag |= ISIG; /* Enable signals */
382 #ifdef IUCLC
383 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
384 #endif
385 #ifdef ISTRIP
386 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
387 #endif
388 #ifdef OLCUC
389 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
390 #endif
391 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
392 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
393 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
394 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
396 #ifdef HPUX
397 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
398 #endif /* HPUX */
400 #ifdef SIGNALS_VIA_CHARACTERS
401 /* the QUIT and INTR character are used in process_send_signal
402 so set them here to something useful. */
403 if (s.main.c_cc[VQUIT] == CDISABLE)
404 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
405 if (s.main.c_cc[VINTR] == CDISABLE)
406 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
407 #endif /* not SIGNALS_VIA_CHARACTERS */
409 #ifdef AIX
410 /* Also, PTY overloads NUL and BREAK.
411 don't ignore break, but don't signal either, so it looks like NUL. */
412 s.main.c_iflag &= ~IGNBRK;
413 s.main.c_iflag &= ~BRKINT;
414 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
415 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
416 would force it to 0377. That looks like duplicated code. */
417 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
418 #endif /* AIX */
420 /* We originally enabled ICANON (and set VEOF to 04), and then had
421 process.c send additional EOF chars to flush the output when faced
422 with long lines, but this leads to weird effects when the
423 subprocess has disabled ICANON and ends up seeing those spurious
424 extra EOFs. So we don't send EOFs any more in
425 process.c:send_process. First we tried to disable ICANON by
426 default, so if a subsprocess sets up ICANON, it's his problem (or
427 the Elisp package that talks to it) to deal with lines that are
428 too long. But this disables some features, such as the ability
429 to send EOF signals. So we re-enabled ICANON but there is no
430 more "send eof to flush" going on (which is wrong and unportable
431 in itself). The correct way to handle too much output is to
432 buffer what could not be written and then write it again when
433 select returns ok for writing. This has it own set of
434 problems. Write is now asynchronous, is that a problem? How much
435 do we buffer, and what do we do when that limit is reached? */
437 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
438 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
439 #if 0 /* These settings only apply to non-ICANON mode. */
440 s.main.c_cc[VMIN] = 1;
441 s.main.c_cc[VTIME] = 0;
442 #endif
444 emacs_set_tty (out, &s, 0);
445 #endif /* not WINDOWSNT */
447 #endif /* not MSDOS */
450 /* Record a signal code and the action for it. */
451 struct save_signal
453 int code;
454 struct sigaction action;
457 static void save_signal_handlers (struct save_signal *);
458 static void restore_signal_handlers (struct save_signal *);
460 /* Suspend the Emacs process; give terminal to its superior. */
462 void
463 sys_suspend (void)
465 #ifndef DOS_NT
466 kill (0, SIGTSTP);
467 #else
468 /* On a system where suspending is not implemented,
469 instead fork a subshell and let it talk directly to the terminal
470 while we wait. */
471 sys_subshell ();
473 #endif
476 /* Fork a subshell. */
478 void
479 sys_subshell (void)
481 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
482 int st;
483 #ifdef MSDOS
484 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
485 #else
486 char oldwd[MAX_UTF8_PATH];
487 #endif
488 #endif
489 pid_t pid;
490 int status;
491 struct save_signal saved_handlers[5];
492 char *str = SSDATA (encode_current_directory ());
494 #ifdef DOS_NT
495 pid = 0;
496 #else
498 char *volatile str_volatile = str;
499 pid = vfork ();
500 str = str_volatile;
502 #endif
504 if (pid < 0)
505 error ("Can't spawn subshell");
507 saved_handlers[0].code = SIGINT;
508 saved_handlers[1].code = SIGQUIT;
509 saved_handlers[2].code = SIGTERM;
510 #ifdef USABLE_SIGIO
511 saved_handlers[3].code = SIGIO;
512 saved_handlers[4].code = 0;
513 #else
514 saved_handlers[3].code = 0;
515 #endif
517 #ifdef DOS_NT
518 save_signal_handlers (saved_handlers);
519 #endif
521 if (pid == 0)
523 const char *sh = 0;
525 #ifdef DOS_NT /* MW, Aug 1993 */
526 getcwd (oldwd, sizeof oldwd);
527 if (sh == 0)
528 sh = egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
529 #endif
530 if (sh == 0)
531 sh = egetenv ("SHELL");
532 if (sh == 0)
533 sh = "sh";
535 /* Use our buffer's default directory for the subshell. */
536 if (chdir (str) != 0)
538 #ifndef DOS_NT
539 emacs_perror (str);
540 _exit (EXIT_CANCELED);
541 #endif
544 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
546 char *epwd = getenv ("PWD");
547 char old_pwd[MAXPATHLEN+1+4];
549 /* If PWD is set, pass it with corrected value. */
550 if (epwd)
552 strcpy (old_pwd, epwd);
553 setenv ("PWD", str, 1);
555 st = system (sh);
556 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
557 if (epwd)
558 putenv (old_pwd); /* restore previous value */
560 #else /* not MSDOS */
561 #ifdef WINDOWSNT
562 /* Waits for process completion */
563 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
564 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
565 if (pid == -1)
566 write (1, "Can't execute subshell", 22);
567 #else /* not WINDOWSNT */
568 execlp (sh, sh, (char *) 0);
569 emacs_perror (sh);
570 _exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
571 #endif /* not WINDOWSNT */
572 #endif /* not MSDOS */
575 /* Do this now if we did not do it before. */
576 #ifndef MSDOS
577 save_signal_handlers (saved_handlers);
578 #endif
580 #ifndef DOS_NT
581 wait_for_termination (pid, &status, 0);
582 #endif
583 restore_signal_handlers (saved_handlers);
586 static void
587 save_signal_handlers (struct save_signal *saved_handlers)
589 while (saved_handlers->code)
591 struct sigaction action;
592 emacs_sigaction_init (&action, SIG_IGN);
593 sigaction (saved_handlers->code, &action, &saved_handlers->action);
594 saved_handlers++;
598 static void
599 restore_signal_handlers (struct save_signal *saved_handlers)
601 while (saved_handlers->code)
603 sigaction (saved_handlers->code, &saved_handlers->action, 0);
604 saved_handlers++;
608 #ifdef USABLE_SIGIO
609 static int old_fcntl_flags[FD_SETSIZE];
610 #endif
612 void
613 init_sigio (int fd)
615 #ifdef USABLE_SIGIO
616 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
617 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
618 interrupts_deferred = 0;
619 #endif
622 #ifndef DOS_NT
623 static void
624 reset_sigio (int fd)
626 #ifdef USABLE_SIGIO
627 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
628 #endif
630 #endif
632 void
633 request_sigio (void)
635 #ifdef USABLE_SIGIO
636 sigset_t unblocked;
638 if (noninteractive)
639 return;
641 sigemptyset (&unblocked);
642 # ifdef SIGWINCH
643 sigaddset (&unblocked, SIGWINCH);
644 # endif
645 sigaddset (&unblocked, SIGIO);
646 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
648 interrupts_deferred = 0;
649 #endif
652 void
653 unrequest_sigio (void)
655 #ifdef USABLE_SIGIO
656 sigset_t blocked;
658 if (noninteractive)
659 return;
661 sigemptyset (&blocked);
662 # ifdef SIGWINCH
663 sigaddset (&blocked, SIGWINCH);
664 # endif
665 sigaddset (&blocked, SIGIO);
666 pthread_sigmask (SIG_BLOCK, &blocked, 0);
667 interrupts_deferred = 1;
668 #endif
671 #ifndef MSDOS
672 /* Block SIGCHLD. */
674 void
675 block_child_signal (sigset_t *oldset)
677 sigset_t blocked;
678 sigemptyset (&blocked);
679 sigaddset (&blocked, SIGCHLD);
680 sigaddset (&blocked, SIGINT);
681 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
684 /* Unblock SIGCHLD. */
686 void
687 unblock_child_signal (sigset_t const *oldset)
689 pthread_sigmask (SIG_SETMASK, oldset, 0);
692 #endif /* !MSDOS */
694 /* Saving and restoring the process group of Emacs's terminal. */
696 /* The process group of which Emacs was a member when it initially
697 started.
699 If Emacs was in its own process group (i.e. inherited_pgroup ==
700 getpid ()), then we know we're running under a shell with job
701 control (Emacs would never be run as part of a pipeline).
702 Everything is fine.
704 If Emacs was not in its own process group, then we know we're
705 running under a shell (or a caller) that doesn't know how to
706 separate itself from Emacs (like sh). Emacs must be in its own
707 process group in order to receive SIGIO correctly. In this
708 situation, we put ourselves in our own pgroup, forcibly set the
709 tty's pgroup to our pgroup, and make sure to restore and reinstate
710 the tty's pgroup just like any other terminal setting. If
711 inherited_group was not the tty's pgroup, then we'll get a
712 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
713 it goes foreground in the future, which is what should happen. */
715 static pid_t inherited_pgroup;
717 void
718 init_foreground_group (void)
720 pid_t pgrp = getpgrp ();
721 inherited_pgroup = getpid () == pgrp ? 0 : pgrp;
724 /* Block and unblock SIGTTOU. */
726 void
727 block_tty_out_signal (sigset_t *oldset)
729 #ifdef SIGTTOU
730 sigset_t blocked;
731 sigemptyset (&blocked);
732 sigaddset (&blocked, SIGTTOU);
733 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
734 #endif
737 void
738 unblock_tty_out_signal (sigset_t const *oldset)
740 #ifdef SIGTTOU
741 pthread_sigmask (SIG_SETMASK, oldset, 0);
742 #endif
745 /* Safely set a controlling terminal FD's process group to PGID.
746 If we are not in the foreground already, POSIX requires tcsetpgrp
747 to deliver a SIGTTOU signal, which would stop us. This is an
748 annoyance, so temporarily ignore the signal.
750 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
751 skip all this unless SIGTTOU is defined. */
752 static void
753 tcsetpgrp_without_stopping (int fd, pid_t pgid)
755 #ifdef SIGTTOU
756 sigset_t oldset;
757 block_input ();
758 block_tty_out_signal (&oldset);
759 tcsetpgrp (fd, pgid);
760 unblock_tty_out_signal (&oldset);
761 unblock_input ();
762 #endif
765 /* Split off the foreground process group to Emacs alone. When we are
766 in the foreground, but not started in our own process group,
767 redirect the tty device handle FD to point to our own process
768 group. FD must be the file descriptor of the controlling tty. */
769 static void
770 narrow_foreground_group (int fd)
772 if (inherited_pgroup && setpgid (0, 0) == 0)
773 tcsetpgrp_without_stopping (fd, getpid ());
776 /* Set the tty to our original foreground group. */
777 static void
778 widen_foreground_group (int fd)
780 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
781 tcsetpgrp_without_stopping (fd, inherited_pgroup);
784 /* Getting and setting emacs_tty structures. */
786 /* Set *TC to the parameters associated with the terminal FD,
787 or clear it if the parameters are not available.
788 Return 0 on success, -1 on failure. */
790 emacs_get_tty (int fd, struct emacs_tty *settings)
792 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
793 memset (&settings->main, 0, sizeof (settings->main));
794 #ifdef DOS_NT
795 #ifdef WINDOWSNT
796 HANDLE h = (HANDLE)_get_osfhandle (fd);
797 DWORD console_mode;
799 if (h && h != INVALID_HANDLE_VALUE && GetConsoleMode (h, &console_mode))
801 settings->main = console_mode;
802 return 0;
804 #endif /* WINDOWSNT */
805 return -1;
806 #else /* !DOS_NT */
807 /* We have those nifty POSIX tcmumbleattr functions. */
808 return tcgetattr (fd, &settings->main);
809 #endif
813 /* Set the parameters of the tty on FD according to the contents of
814 *SETTINGS. If FLUSHP, discard input.
815 Return 0 if all went well, and -1 (setting errno) if anything failed. */
818 emacs_set_tty (int fd, struct emacs_tty *settings, bool flushp)
820 /* Set the primary parameters - baud rate, character size, etcetera. */
821 #ifdef DOS_NT
822 #ifdef WINDOWSNT
823 HANDLE h = (HANDLE)_get_osfhandle (fd);
825 if (h && h != INVALID_HANDLE_VALUE)
827 DWORD new_mode;
829 /* Assume the handle is open for input. */
830 if (flushp)
831 FlushConsoleInputBuffer (h);
832 new_mode = settings->main;
833 SetConsoleMode (h, new_mode);
835 #endif /* WINDOWSNT */
836 #else /* !DOS_NT */
837 int i;
838 /* We have those nifty POSIX tcmumbleattr functions.
839 William J. Smith <wjs@wiis.wang.com> writes:
840 "POSIX 1003.1 defines tcsetattr to return success if it was
841 able to perform any of the requested actions, even if some
842 of the requested actions could not be performed.
843 We must read settings back to ensure tty setup properly.
844 AIX requires this to keep tty from hanging occasionally." */
845 /* This make sure that we don't loop indefinitely in here. */
846 for (i = 0 ; i < 10 ; i++)
847 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
849 if (errno == EINTR)
850 continue;
851 else
852 return -1;
854 else
856 struct termios new;
858 memset (&new, 0, sizeof (new));
859 /* Get the current settings, and see if they're what we asked for. */
860 tcgetattr (fd, &new);
861 /* We cannot use memcmp on the whole structure here because under
862 * aix386 the termios structure has some reserved field that may
863 * not be filled in.
865 if ( new.c_iflag == settings->main.c_iflag
866 && new.c_oflag == settings->main.c_oflag
867 && new.c_cflag == settings->main.c_cflag
868 && new.c_lflag == settings->main.c_lflag
869 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
870 break;
871 else
872 continue;
874 #endif
876 /* We have survived the tempest. */
877 return 0;
882 #ifdef F_SETOWN
883 static int old_fcntl_owner[FD_SETSIZE];
884 #endif /* F_SETOWN */
886 /* This may also be defined in stdio,
887 but if so, this does no harm,
888 and using the same name avoids wasting the other one's space. */
890 #if defined (USG)
891 unsigned char _sobuf[BUFSIZ+8];
892 #else
893 char _sobuf[BUFSIZ];
894 #endif
896 /* Initialize the terminal mode on all tty devices that are currently
897 open. */
899 void
900 init_all_sys_modes (void)
902 struct tty_display_info *tty;
903 for (tty = tty_list; tty; tty = tty->next)
904 init_sys_modes (tty);
907 /* Initialize the terminal mode on the given tty device. */
909 void
910 init_sys_modes (struct tty_display_info *tty_out)
912 struct emacs_tty tty;
913 Lisp_Object terminal;
915 Vtty_erase_char = Qnil;
917 if (noninteractive)
918 return;
920 if (!tty_out->output)
921 return; /* The tty is suspended. */
923 narrow_foreground_group (fileno (tty_out->input));
925 if (! tty_out->old_tty)
926 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
928 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
930 tty = *tty_out->old_tty;
932 #if !defined (DOS_NT)
933 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
935 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
936 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
937 #ifdef INLCR /* I'm just being cautious,
938 since I can't check how widespread INLCR is--rms. */
939 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
940 #endif
941 #ifdef ISTRIP
942 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
943 #endif
944 tty.main.c_lflag &= ~ECHO; /* Disable echo */
945 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
946 #ifdef IEXTEN
947 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
948 #endif
949 tty.main.c_lflag |= ISIG; /* Enable signals */
950 if (tty_out->flow_control)
952 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
953 #ifdef IXANY
954 tty.main.c_iflag &= ~IXANY;
955 #endif /* IXANY */
957 else
958 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
959 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
960 on output */
961 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
962 #ifdef CS8
963 if (tty_out->meta_key)
965 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
966 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
968 #endif
970 XSETTERMINAL(terminal, tty_out->terminal);
971 if (!NILP (Fcontrolling_tty_p (terminal)))
973 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
974 /* Set up C-g for both SIGQUIT and SIGINT.
975 We don't know which we will get, but we handle both alike
976 so which one it really gives us does not matter. */
977 tty.main.c_cc[VQUIT] = quit_char;
979 else
981 /* We normally don't get interrupt or quit signals from tty
982 devices other than our controlling terminal; therefore,
983 we must handle C-g as normal input. Unfortunately, this
984 means that the interrupt and quit feature must be
985 disabled on secondary ttys, or we would not even see the
986 keypress.
988 Note that even though emacsclient could have special code
989 to pass SIGINT to Emacs, we should _not_ enable
990 interrupt/quit keys for emacsclient frames. This means
991 that we can't break out of loops in C code from a
992 secondary tty frame, but we can always decide what
993 display the C-g came from, which is more important from a
994 usability point of view. (Consider the case when two
995 people work together using the same Emacs instance.) */
996 tty.main.c_cc[VINTR] = CDISABLE;
997 tty.main.c_cc[VQUIT] = CDISABLE;
999 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1000 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
1001 #ifdef VSWTCH
1002 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
1003 of C-z */
1004 #endif /* VSWTCH */
1006 #ifdef VSUSP
1007 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
1008 #endif /* VSUSP */
1009 #ifdef V_DSUSP
1010 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
1011 #endif /* V_DSUSP */
1012 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1013 tty.main.c_cc[VDSUSP] = CDISABLE;
1014 #endif /* VDSUSP */
1015 #ifdef VLNEXT
1016 tty.main.c_cc[VLNEXT] = CDISABLE;
1017 #endif /* VLNEXT */
1018 #ifdef VREPRINT
1019 tty.main.c_cc[VREPRINT] = CDISABLE;
1020 #endif /* VREPRINT */
1021 #ifdef VWERASE
1022 tty.main.c_cc[VWERASE] = CDISABLE;
1023 #endif /* VWERASE */
1024 #ifdef VDISCARD
1025 tty.main.c_cc[VDISCARD] = CDISABLE;
1026 #endif /* VDISCARD */
1028 if (tty_out->flow_control)
1030 #ifdef VSTART
1031 tty.main.c_cc[VSTART] = '\021';
1032 #endif /* VSTART */
1033 #ifdef VSTOP
1034 tty.main.c_cc[VSTOP] = '\023';
1035 #endif /* VSTOP */
1037 else
1039 #ifdef VSTART
1040 tty.main.c_cc[VSTART] = CDISABLE;
1041 #endif /* VSTART */
1042 #ifdef VSTOP
1043 tty.main.c_cc[VSTOP] = CDISABLE;
1044 #endif /* VSTOP */
1047 #ifdef AIX
1048 tty.main.c_cc[VSTRT] = CDISABLE;
1049 tty.main.c_cc[VSTOP] = CDISABLE;
1050 tty.main.c_cc[VSUSP] = CDISABLE;
1051 tty.main.c_cc[VDSUSP] = CDISABLE;
1052 if (tty_out->flow_control)
1054 #ifdef VSTART
1055 tty.main.c_cc[VSTART] = '\021';
1056 #endif /* VSTART */
1057 #ifdef VSTOP
1058 tty.main.c_cc[VSTOP] = '\023';
1059 #endif /* VSTOP */
1061 /* Also, PTY overloads NUL and BREAK.
1062 don't ignore break, but don't signal either, so it looks like NUL.
1063 This really serves a purpose only if running in an XTERM window
1064 or via TELNET or the like, but does no harm elsewhere. */
1065 tty.main.c_iflag &= ~IGNBRK;
1066 tty.main.c_iflag &= ~BRKINT;
1067 #endif
1068 #endif /* not DOS_NT */
1070 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1071 if (!tty_out->term_initted)
1072 internal_terminal_init ();
1073 dos_ttraw (tty_out);
1074 #endif
1076 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1078 /* This code added to insure that, if flow-control is not to be used,
1079 we have an unlocked terminal at the start. */
1081 #ifdef TCXONC
1082 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1083 #endif
1084 #ifdef TIOCSTART
1085 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1086 #endif
1088 #if !defined (DOS_NT)
1089 #ifdef TCOON
1090 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1091 #endif
1092 #endif
1094 #ifdef F_GETOWN
1095 if (interrupt_input)
1097 old_fcntl_owner[fileno (tty_out->input)] =
1098 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1099 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1100 init_sigio (fileno (tty_out->input));
1101 #ifdef HAVE_GPM
1102 if (gpm_tty == tty_out)
1104 /* Arrange for mouse events to give us SIGIO signals. */
1105 fcntl (gpm_fd, F_SETOWN, getpid ());
1106 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1107 init_sigio (gpm_fd);
1109 #endif /* HAVE_GPM */
1111 #endif /* F_GETOWN */
1113 #ifdef _IOFBF
1114 /* This symbol is defined on recent USG systems.
1115 Someone says without this call USG won't really buffer the file
1116 even with a call to setbuf. */
1117 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1118 #else
1119 setbuf (tty_out->output, (char *) _sobuf);
1120 #endif
1122 if (tty_out->terminal->set_terminal_modes_hook)
1123 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1125 if (!tty_out->term_initted)
1127 Lisp_Object tail, frame;
1128 FOR_EACH_FRAME (tail, frame)
1130 /* XXX This needs to be revised. */
1131 if (FRAME_TERMCAP_P (XFRAME (frame))
1132 && FRAME_TTY (XFRAME (frame)) == tty_out)
1133 init_frame_faces (XFRAME (frame));
1137 if (tty_out->term_initted && no_redraw_on_reenter)
1139 /* We used to call "direct_output_forward_char(0)" here,
1140 but it's not clear why, since it may not do anything anyway. */
1142 else
1144 Lisp_Object tail, frame;
1145 frame_garbaged = 1;
1146 FOR_EACH_FRAME (tail, frame)
1148 if ((FRAME_TERMCAP_P (XFRAME (frame))
1149 || FRAME_MSDOS_P (XFRAME (frame)))
1150 && FRAME_TTY (XFRAME (frame)) == tty_out)
1151 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1155 tty_out->term_initted = 1;
1158 /* Return true if safe to use tabs in output.
1159 At the time this is called, init_sys_modes has not been done yet. */
1161 bool
1162 tabs_safe_p (int fd)
1164 struct emacs_tty etty;
1166 emacs_get_tty (fd, &etty);
1167 #ifndef DOS_NT
1168 #ifdef TABDLY
1169 return ((etty.main.c_oflag & TABDLY) != TAB3);
1170 #else /* not TABDLY */
1171 return 1;
1172 #endif /* not TABDLY */
1173 #else /* DOS_NT */
1174 return 0;
1175 #endif /* DOS_NT */
1178 /* Discard echoing. */
1180 void
1181 suppress_echo_on_tty (int fd)
1183 struct emacs_tty etty;
1185 emacs_get_tty (fd, &etty);
1186 #ifdef DOS_NT
1187 /* Set raw input mode. */
1188 etty.main = 0;
1189 #else
1190 etty.main.c_lflag &= ~ICANON; /* Disable buffering */
1191 etty.main.c_lflag &= ~ECHO; /* Disable echoing */
1192 #endif /* ! WINDOWSNT */
1193 emacs_set_tty (fd, &etty, 0);
1196 /* Get terminal size from system.
1197 Store number of lines into *HEIGHTP and width into *WIDTHP.
1198 We store 0 if there's no valid information. */
1200 void
1201 get_tty_size (int fd, int *widthp, int *heightp)
1203 #if defined TIOCGWINSZ
1205 /* BSD-style. */
1206 struct winsize size;
1208 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1209 *widthp = *heightp = 0;
1210 else
1212 *widthp = size.ws_col;
1213 *heightp = size.ws_row;
1216 #elif defined TIOCGSIZE
1218 /* SunOS - style. */
1219 struct ttysize size;
1221 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1222 *widthp = *heightp = 0;
1223 else
1225 *widthp = size.ts_cols;
1226 *heightp = size.ts_lines;
1229 #elif defined WINDOWSNT
1231 CONSOLE_SCREEN_BUFFER_INFO info;
1232 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1234 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1235 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1237 else
1238 *widthp = *heightp = 0;
1240 #elif defined MSDOS
1242 *widthp = ScreenCols ();
1243 *heightp = ScreenRows ();
1245 #else /* system doesn't know size */
1247 *widthp = 0;
1248 *heightp = 0;
1250 #endif
1253 /* Set the logical window size associated with descriptor FD
1254 to HEIGHT and WIDTH. This is used mainly with ptys.
1255 Return a negative value on failure. */
1258 set_window_size (int fd, int height, int width)
1260 #ifdef TIOCSWINSZ
1262 /* BSD-style. */
1263 struct winsize size;
1264 size.ws_row = height;
1265 size.ws_col = width;
1267 return ioctl (fd, TIOCSWINSZ, &size);
1269 #else
1270 #ifdef TIOCSSIZE
1272 /* SunOS - style. */
1273 struct ttysize size;
1274 size.ts_lines = height;
1275 size.ts_cols = width;
1277 return ioctl (fd, TIOCGSIZE, &size);
1278 #else
1279 return -1;
1280 #endif /* not SunOS-style */
1281 #endif /* not BSD-style */
1286 /* Prepare all terminal devices for exiting Emacs. */
1288 void
1289 reset_all_sys_modes (void)
1291 struct tty_display_info *tty;
1292 for (tty = tty_list; tty; tty = tty->next)
1293 reset_sys_modes (tty);
1296 /* Prepare the terminal for closing it; move the cursor to the
1297 bottom of the frame, turn off interrupt-driven I/O, etc. */
1299 void
1300 reset_sys_modes (struct tty_display_info *tty_out)
1302 if (noninteractive)
1304 fflush (stdout);
1305 return;
1307 if (!tty_out->term_initted)
1308 return;
1310 if (!tty_out->output)
1311 return; /* The tty is suspended. */
1313 /* Go to and clear the last line of the terminal. */
1315 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1317 /* Code adapted from tty_clear_end_of_line. */
1318 if (tty_out->TS_clr_line)
1320 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1322 else
1323 { /* have to do it the hard way */
1324 int i;
1325 tty_turn_off_insert (tty_out);
1327 for (i = cursorX (tty_out); i < FrameCols (tty_out) - 1; i++)
1329 fputc (' ', tty_out->output);
1333 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1334 fflush (tty_out->output);
1336 if (tty_out->terminal->reset_terminal_modes_hook)
1337 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1339 /* Avoid possible loss of output when changing terminal modes. */
1340 while (fdatasync (fileno (tty_out->output)) != 0 && errno == EINTR)
1341 continue;
1343 #ifndef DOS_NT
1344 #ifdef F_SETOWN
1345 if (interrupt_input)
1347 reset_sigio (fileno (tty_out->input));
1348 fcntl (fileno (tty_out->input), F_SETOWN,
1349 old_fcntl_owner[fileno (tty_out->input)]);
1351 #endif /* F_SETOWN */
1352 fcntl (fileno (tty_out->input), F_SETFL,
1353 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1354 #endif
1356 if (tty_out->old_tty)
1357 while (emacs_set_tty (fileno (tty_out->input),
1358 tty_out->old_tty, 0) < 0 && errno == EINTR)
1361 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1362 dos_ttcooked ();
1363 #endif
1365 widen_foreground_group (fileno (tty_out->input));
1368 #ifdef HAVE_PTYS
1370 /* Set up the proper status flags for use of a pty. */
1372 void
1373 setup_pty (int fd)
1375 /* I'm told that TOICREMOTE does not mean control chars
1376 "can't be sent" but rather that they don't have
1377 input-editing or signaling effects.
1378 That should be good, because we have other ways
1379 to do those things in Emacs.
1380 However, telnet mode seems not to work on 4.2.
1381 So TIOCREMOTE is turned off now. */
1383 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1384 will hang. In particular, the "timeout" feature (which
1385 causes a read to return if there is no data available)
1386 does this. Also it is known that telnet mode will hang
1387 in such a way that Emacs must be stopped (perhaps this
1388 is the same problem).
1390 If TIOCREMOTE is turned off, then there is a bug in
1391 hp-ux which sometimes loses data. Apparently the
1392 code which blocks the master process when the internal
1393 buffer fills up does not work. Other than this,
1394 though, everything else seems to work fine.
1396 Since the latter lossage is more benign, we may as well
1397 lose that way. -- cph */
1398 #ifdef FIONBIO
1399 #if defined (UNIX98_PTYS)
1401 int on = 1;
1402 ioctl (fd, FIONBIO, &on);
1404 #endif
1405 #endif
1407 #endif /* HAVE_PTYS */
1409 void
1410 init_system_name (void)
1412 char *hostname_alloc = NULL;
1413 char *hostname;
1414 #ifndef HAVE_GETHOSTNAME
1415 struct utsname uts;
1416 uname (&uts);
1417 hostname = uts.nodename;
1418 #else /* HAVE_GETHOSTNAME */
1419 char hostname_buf[256];
1420 ptrdiff_t hostname_size = sizeof hostname_buf;
1421 hostname = hostname_buf;
1423 /* Try to get the host name; if the buffer is too short, try
1424 again. Apparently, the only indication gethostname gives of
1425 whether the buffer was large enough is the presence or absence
1426 of a '\0' in the string. Eech. */
1427 for (;;)
1429 gethostname (hostname, hostname_size - 1);
1430 hostname[hostname_size - 1] = '\0';
1432 /* Was the buffer large enough for the '\0'? */
1433 if (strlen (hostname) < hostname_size - 1)
1434 break;
1436 hostname = hostname_alloc = xpalloc (hostname_alloc, &hostname_size, 1,
1437 min (PTRDIFF_MAX, SIZE_MAX), 1);
1439 #endif /* HAVE_GETHOSTNAME */
1440 char *p;
1441 for (p = hostname; *p; p++)
1442 if (*p == ' ' || *p == '\t')
1443 *p = '-';
1444 if (! (STRINGP (Vsystem_name) && SBYTES (Vsystem_name) == p - hostname
1445 && strcmp (SSDATA (Vsystem_name), hostname) == 0))
1446 Vsystem_name = build_string (hostname);
1447 xfree (hostname_alloc);
1450 sigset_t empty_mask;
1452 static struct sigaction process_fatal_action;
1454 static int
1455 emacs_sigaction_flags (void)
1457 #ifdef SA_RESTART
1458 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1459 'select') to reset their timeout on some platforms (e.g.,
1460 HP-UX 11), which is not what we want. Also, when Emacs is
1461 interactive, we don't want SA_RESTART because we need to poll
1462 for pending input so we need long-running syscalls to be interrupted
1463 after a signal that sets pending_signals.
1465 Non-interactive keyboard input goes through stdio, where we
1466 always want restartable system calls. */
1467 if (noninteractive)
1468 return SA_RESTART;
1469 #endif
1470 return 0;
1473 /* Store into *ACTION a signal action suitable for Emacs, with handler
1474 HANDLER. */
1475 void
1476 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1478 sigemptyset (&action->sa_mask);
1480 /* When handling a signal, block nonfatal system signals that are caught
1481 by Emacs. This makes race conditions less likely. */
1482 sigaddset (&action->sa_mask, SIGALRM);
1483 #ifdef SIGCHLD
1484 sigaddset (&action->sa_mask, SIGCHLD);
1485 #endif
1486 #ifdef SIGDANGER
1487 sigaddset (&action->sa_mask, SIGDANGER);
1488 #endif
1489 #ifdef PROFILER_CPU_SUPPORT
1490 sigaddset (&action->sa_mask, SIGPROF);
1491 #endif
1492 #ifdef SIGWINCH
1493 sigaddset (&action->sa_mask, SIGWINCH);
1494 #endif
1495 if (! noninteractive)
1497 sigaddset (&action->sa_mask, SIGINT);
1498 sigaddset (&action->sa_mask, SIGQUIT);
1499 #ifdef USABLE_SIGIO
1500 sigaddset (&action->sa_mask, SIGIO);
1501 #endif
1504 action->sa_handler = handler;
1505 action->sa_flags = emacs_sigaction_flags ();
1508 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1509 static pthread_t main_thread;
1510 #endif
1512 /* SIG has arrived at the current process. Deliver it to the main
1513 thread, which should handle it with HANDLER.
1515 If we are on the main thread, handle the signal SIG with HANDLER.
1516 Otherwise, redirect the signal to the main thread, blocking it from
1517 this thread. POSIX says any thread can receive a signal that is
1518 associated with a process, process group, or asynchronous event.
1519 On GNU/Linux that is not true, but for other systems (FreeBSD at
1520 least) it is. */
1521 void
1522 deliver_process_signal (int sig, signal_handler_t handler)
1524 /* Preserve errno, to avoid race conditions with signal handlers that
1525 might change errno. Races can occur even in single-threaded hosts. */
1526 int old_errno = errno;
1528 bool on_main_thread = true;
1529 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1530 if (! pthread_equal (pthread_self (), main_thread))
1532 sigset_t blocked;
1533 sigemptyset (&blocked);
1534 sigaddset (&blocked, sig);
1535 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1536 pthread_kill (main_thread, sig);
1537 on_main_thread = false;
1539 #endif
1540 if (on_main_thread)
1541 handler (sig);
1543 errno = old_errno;
1546 /* Static location to save a fatal backtrace in a thread.
1547 FIXME: If two subsidiary threads fail simultaneously, the resulting
1548 backtrace may be garbage. */
1549 enum { BACKTRACE_LIMIT_MAX = 500 };
1550 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1551 static int thread_backtrace_npointers;
1553 /* SIG has arrived at the current thread.
1554 If we are on the main thread, handle the signal SIG with HANDLER.
1555 Otherwise, this is a fatal error in the handling thread. */
1556 static void
1557 deliver_thread_signal (int sig, signal_handler_t handler)
1559 int old_errno = errno;
1561 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1562 if (! pthread_equal (pthread_self (), main_thread))
1564 thread_backtrace_npointers
1565 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1566 sigaction (sig, &process_fatal_action, 0);
1567 pthread_kill (main_thread, sig);
1569 /* Avoid further damage while the main thread is exiting. */
1570 while (1)
1571 sigsuspend (&empty_mask);
1573 #endif
1575 handler (sig);
1576 errno = old_errno;
1579 #if !HAVE_DECL_SYS_SIGLIST
1580 # undef sys_siglist
1581 # ifdef _sys_siglist
1582 # define sys_siglist _sys_siglist
1583 # elif HAVE_DECL___SYS_SIGLIST
1584 # define sys_siglist __sys_siglist
1585 # else
1586 # define sys_siglist my_sys_siglist
1587 static char const *sys_siglist[NSIG];
1588 # endif
1589 #endif
1591 #ifdef _sys_nsig
1592 # define sys_siglist_entries _sys_nsig
1593 #else
1594 # define sys_siglist_entries NSIG
1595 #endif
1597 /* Handle bus errors, invalid instruction, etc. */
1598 static void
1599 handle_fatal_signal (int sig)
1601 terminate_due_to_signal (sig, 40);
1604 static void
1605 deliver_fatal_signal (int sig)
1607 deliver_process_signal (sig, handle_fatal_signal);
1610 static void
1611 deliver_fatal_thread_signal (int sig)
1613 deliver_thread_signal (sig, handle_fatal_signal);
1616 static _Noreturn void
1617 handle_arith_signal (int sig)
1619 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1620 xsignal0 (Qarith_error);
1623 #if defined HAVE_STACK_OVERFLOW_HANDLING && !defined WINDOWSNT
1625 /* Alternate stack used by SIGSEGV handler below. */
1627 static unsigned char sigsegv_stack[SIGSTKSZ];
1630 /* Return true if SIGINFO indicates a stack overflow. */
1632 static bool
1633 stack_overflow (siginfo_t *siginfo)
1635 /* In theory, a more-accurate heuristic can be obtained by using
1636 GNU/Linux pthread_getattr_np along with POSIX pthread_attr_getstack
1637 and pthread_attr_getguardsize to find the location and size of the
1638 guard area. In practice, though, these functions are so hard to
1639 use reliably that they're not worth bothering with. E.g., see:
1640 https://sourceware.org/bugzilla/show_bug.cgi?id=16291
1641 Other operating systems also have problems, e.g., Solaris's
1642 stack_violation function is tailor-made for this problem, but it
1643 doesn't work on Solaris 11.2 x86-64 with a 32-bit executable.
1645 GNU libsigsegv is overkill for Emacs; otherwise it might be a
1646 candidate here. */
1648 if (!siginfo)
1649 return false;
1651 /* The faulting address. */
1652 char *addr = siginfo->si_addr;
1653 if (!addr)
1654 return false;
1656 /* The known top and bottom of the stack. The actual stack may
1657 extend a bit beyond these boundaries. */
1658 char *bot = stack_bottom;
1659 char *top = near_C_stack_top ();
1661 /* Log base 2 of the stack heuristic ratio. This ratio is the size
1662 of the known stack divided by the size of the guard area past the
1663 end of the stack top. The heuristic is that a bad address is
1664 considered to be a stack overflow if it occurs within
1665 stacksize>>LG_STACK_HEURISTIC bytes above the top of the known
1666 stack. This heuristic is not exactly correct but it's good
1667 enough in practice. */
1668 enum { LG_STACK_HEURISTIC = 8 };
1670 if (bot < top)
1671 return 0 <= addr - top && addr - top < (top - bot) >> LG_STACK_HEURISTIC;
1672 else
1673 return 0 <= top - addr && top - addr < (bot - top) >> LG_STACK_HEURISTIC;
1677 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1679 static void
1680 handle_sigsegv (int sig, siginfo_t *siginfo, void *arg)
1682 /* Hard GC error may lead to stack overflow caused by
1683 too nested calls to mark_object. No way to survive. */
1684 bool fatal = gc_in_progress;
1686 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1687 if (!fatal && !pthread_equal (pthread_self (), main_thread))
1688 fatal = true;
1689 #endif
1691 if (!fatal && stack_overflow (siginfo))
1692 siglongjmp (return_to_command_loop, 1);
1694 /* Otherwise we can't do anything with this. */
1695 deliver_fatal_thread_signal (sig);
1698 /* Return true if we have successfully set up SIGSEGV handler on alternate
1699 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1701 static bool
1702 init_sigsegv (void)
1704 struct sigaction sa;
1705 stack_t ss;
1707 ss.ss_sp = sigsegv_stack;
1708 ss.ss_size = sizeof (sigsegv_stack);
1709 ss.ss_flags = 0;
1710 if (sigaltstack (&ss, NULL) < 0)
1711 return 0;
1713 sigfillset (&sa.sa_mask);
1714 sa.sa_sigaction = handle_sigsegv;
1715 sa.sa_flags = SA_SIGINFO | SA_ONSTACK | emacs_sigaction_flags ();
1716 return sigaction (SIGSEGV, &sa, NULL) < 0 ? 0 : 1;
1719 #else /* not HAVE_STACK_OVERFLOW_HANDLING or WINDOWSNT */
1721 static bool
1722 init_sigsegv (void)
1724 return 0;
1727 #endif /* HAVE_STACK_OVERFLOW_HANDLING && !WINDOWSNT */
1729 static void
1730 deliver_arith_signal (int sig)
1732 deliver_thread_signal (sig, handle_arith_signal);
1735 #ifdef SIGDANGER
1737 /* Handler for SIGDANGER. */
1738 static void
1739 handle_danger_signal (int sig)
1741 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1743 /* It might be unsafe to call do_auto_save now. */
1744 force_auto_save_soon ();
1747 static void
1748 deliver_danger_signal (int sig)
1750 deliver_process_signal (sig, handle_danger_signal);
1752 #endif
1754 /* Treat SIG as a terminating signal, unless it is already ignored and
1755 we are in --batch mode. Among other things, this makes nohup work. */
1756 static void
1757 maybe_fatal_sig (int sig)
1759 bool catch_sig = !noninteractive;
1760 if (!catch_sig)
1762 struct sigaction old_action;
1763 sigaction (sig, 0, &old_action);
1764 catch_sig = old_action.sa_handler != SIG_IGN;
1766 if (catch_sig)
1767 sigaction (sig, &process_fatal_action, 0);
1770 void
1771 init_signals (bool dumping)
1773 struct sigaction thread_fatal_action;
1774 struct sigaction action;
1776 sigemptyset (&empty_mask);
1778 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1779 main_thread = pthread_self ();
1780 #endif
1782 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1783 if (! initialized)
1785 sys_siglist[SIGABRT] = "Aborted";
1786 # ifdef SIGAIO
1787 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1788 # endif
1789 sys_siglist[SIGALRM] = "Alarm clock";
1790 # ifdef SIGBUS
1791 sys_siglist[SIGBUS] = "Bus error";
1792 # endif
1793 # ifdef SIGCHLD
1794 sys_siglist[SIGCHLD] = "Child status changed";
1795 # endif
1796 # ifdef SIGCONT
1797 sys_siglist[SIGCONT] = "Continued";
1798 # endif
1799 # ifdef SIGDANGER
1800 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1801 # endif
1802 # ifdef SIGDGNOTIFY
1803 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1804 # endif
1805 # ifdef SIGEMT
1806 sys_siglist[SIGEMT] = "Emulation trap";
1807 # endif
1808 sys_siglist[SIGFPE] = "Arithmetic exception";
1809 # ifdef SIGFREEZE
1810 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1811 # endif
1812 # ifdef SIGGRANT
1813 sys_siglist[SIGGRANT] = "Monitor mode granted";
1814 # endif
1815 sys_siglist[SIGHUP] = "Hangup";
1816 sys_siglist[SIGILL] = "Illegal instruction";
1817 sys_siglist[SIGINT] = "Interrupt";
1818 # ifdef SIGIO
1819 sys_siglist[SIGIO] = "I/O possible";
1820 # endif
1821 # ifdef SIGIOINT
1822 sys_siglist[SIGIOINT] = "I/O intervention required";
1823 # endif
1824 # ifdef SIGIOT
1825 sys_siglist[SIGIOT] = "IOT trap";
1826 # endif
1827 sys_siglist[SIGKILL] = "Killed";
1828 # ifdef SIGLOST
1829 sys_siglist[SIGLOST] = "Resource lost";
1830 # endif
1831 # ifdef SIGLWP
1832 sys_siglist[SIGLWP] = "SIGLWP";
1833 # endif
1834 # ifdef SIGMSG
1835 sys_siglist[SIGMSG] = "Monitor mode data available";
1836 # endif
1837 # ifdef SIGPHONE
1838 sys_siglist[SIGWIND] = "SIGPHONE";
1839 # endif
1840 sys_siglist[SIGPIPE] = "Broken pipe";
1841 # ifdef SIGPOLL
1842 sys_siglist[SIGPOLL] = "Pollable event occurred";
1843 # endif
1844 # ifdef SIGPROF
1845 sys_siglist[SIGPROF] = "Profiling timer expired";
1846 # endif
1847 # ifdef SIGPTY
1848 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1849 # endif
1850 # ifdef SIGPWR
1851 sys_siglist[SIGPWR] = "Power-fail restart";
1852 # endif
1853 sys_siglist[SIGQUIT] = "Quit";
1854 # ifdef SIGRETRACT
1855 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1856 # endif
1857 # ifdef SIGSAK
1858 sys_siglist[SIGSAK] = "Secure attention";
1859 # endif
1860 sys_siglist[SIGSEGV] = "Segmentation violation";
1861 # ifdef SIGSOUND
1862 sys_siglist[SIGSOUND] = "Sound completed";
1863 # endif
1864 # ifdef SIGSTOP
1865 sys_siglist[SIGSTOP] = "Stopped (signal)";
1866 # endif
1867 # ifdef SIGSTP
1868 sys_siglist[SIGSTP] = "Stopped (user)";
1869 # endif
1870 # ifdef SIGSYS
1871 sys_siglist[SIGSYS] = "Bad argument to system call";
1872 # endif
1873 sys_siglist[SIGTERM] = "Terminated";
1874 # ifdef SIGTHAW
1875 sys_siglist[SIGTHAW] = "SIGTHAW";
1876 # endif
1877 # ifdef SIGTRAP
1878 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1879 # endif
1880 # ifdef SIGTSTP
1881 sys_siglist[SIGTSTP] = "Stopped (user)";
1882 # endif
1883 # ifdef SIGTTIN
1884 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1885 # endif
1886 # ifdef SIGTTOU
1887 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1888 # endif
1889 # ifdef SIGURG
1890 sys_siglist[SIGURG] = "Urgent I/O condition";
1891 # endif
1892 # ifdef SIGUSR1
1893 sys_siglist[SIGUSR1] = "User defined signal 1";
1894 # endif
1895 # ifdef SIGUSR2
1896 sys_siglist[SIGUSR2] = "User defined signal 2";
1897 # endif
1898 # ifdef SIGVTALRM
1899 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1900 # endif
1901 # ifdef SIGWAITING
1902 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1903 # endif
1904 # ifdef SIGWINCH
1905 sys_siglist[SIGWINCH] = "Window size changed";
1906 # endif
1907 # ifdef SIGWIND
1908 sys_siglist[SIGWIND] = "SIGWIND";
1909 # endif
1910 # ifdef SIGXCPU
1911 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1912 # endif
1913 # ifdef SIGXFSZ
1914 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1915 # endif
1917 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1919 /* Don't alter signal handlers if dumping. On some machines,
1920 changing signal handlers sets static data that would make signals
1921 fail to work right when the dumped Emacs is run. */
1922 if (dumping)
1923 return;
1925 sigfillset (&process_fatal_action.sa_mask);
1926 process_fatal_action.sa_handler = deliver_fatal_signal;
1927 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1929 sigfillset (&thread_fatal_action.sa_mask);
1930 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1931 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1933 /* SIGINT may need special treatment on MS-Windows. See
1934 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1935 Please update the doc of kill-emacs, kill-emacs-hook, and
1936 NEWS if you change this. */
1938 maybe_fatal_sig (SIGHUP);
1939 maybe_fatal_sig (SIGINT);
1940 maybe_fatal_sig (SIGTERM);
1942 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
1943 However, in batch mode leave SIGPIPE alone, as that causes Emacs
1944 to behave more like typical batch applications do. */
1945 if (! noninteractive)
1946 signal (SIGPIPE, SIG_IGN);
1948 sigaction (SIGQUIT, &process_fatal_action, 0);
1949 sigaction (SIGILL, &thread_fatal_action, 0);
1950 sigaction (SIGTRAP, &thread_fatal_action, 0);
1952 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
1953 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
1954 interpreter's floating point operations, so treat SIGFPE as an
1955 arith-error if it arises in the main thread. */
1956 if (IEEE_FLOATING_POINT)
1957 sigaction (SIGFPE, &thread_fatal_action, 0);
1958 else
1960 emacs_sigaction_init (&action, deliver_arith_signal);
1961 sigaction (SIGFPE, &action, 0);
1964 #ifdef SIGUSR1
1965 add_user_signal (SIGUSR1, "sigusr1");
1966 #endif
1967 #ifdef SIGUSR2
1968 add_user_signal (SIGUSR2, "sigusr2");
1969 #endif
1970 sigaction (SIGABRT, &thread_fatal_action, 0);
1971 #ifdef SIGPRE
1972 sigaction (SIGPRE, &thread_fatal_action, 0);
1973 #endif
1974 #ifdef SIGORE
1975 sigaction (SIGORE, &thread_fatal_action, 0);
1976 #endif
1977 #ifdef SIGUME
1978 sigaction (SIGUME, &thread_fatal_action, 0);
1979 #endif
1980 #ifdef SIGDLK
1981 sigaction (SIGDLK, &process_fatal_action, 0);
1982 #endif
1983 #ifdef SIGCPULIM
1984 sigaction (SIGCPULIM, &process_fatal_action, 0);
1985 #endif
1986 #ifdef SIGIOT
1987 sigaction (SIGIOT, &thread_fatal_action, 0);
1988 #endif
1989 #ifdef SIGEMT
1990 sigaction (SIGEMT, &thread_fatal_action, 0);
1991 #endif
1992 #ifdef SIGBUS
1993 sigaction (SIGBUS, &thread_fatal_action, 0);
1994 #endif
1995 if (!init_sigsegv ())
1996 sigaction (SIGSEGV, &thread_fatal_action, 0);
1997 #ifdef SIGSYS
1998 sigaction (SIGSYS, &thread_fatal_action, 0);
1999 #endif
2000 sigaction (SIGTERM, &process_fatal_action, 0);
2001 #ifdef SIGPROF
2002 signal (SIGPROF, SIG_IGN);
2003 #endif
2004 #ifdef SIGVTALRM
2005 sigaction (SIGVTALRM, &process_fatal_action, 0);
2006 #endif
2007 #ifdef SIGXCPU
2008 sigaction (SIGXCPU, &process_fatal_action, 0);
2009 #endif
2010 #ifdef SIGXFSZ
2011 sigaction (SIGXFSZ, &process_fatal_action, 0);
2012 #endif
2014 #ifdef SIGDANGER
2015 /* This just means available memory is getting low. */
2016 emacs_sigaction_init (&action, deliver_danger_signal);
2017 sigaction (SIGDANGER, &action, 0);
2018 #endif
2020 /* AIX-specific signals. */
2021 #ifdef SIGGRANT
2022 sigaction (SIGGRANT, &process_fatal_action, 0);
2023 #endif
2024 #ifdef SIGMIGRATE
2025 sigaction (SIGMIGRATE, &process_fatal_action, 0);
2026 #endif
2027 #ifdef SIGMSG
2028 sigaction (SIGMSG, &process_fatal_action, 0);
2029 #endif
2030 #ifdef SIGRETRACT
2031 sigaction (SIGRETRACT, &process_fatal_action, 0);
2032 #endif
2033 #ifdef SIGSAK
2034 sigaction (SIGSAK, &process_fatal_action, 0);
2035 #endif
2036 #ifdef SIGSOUND
2037 sigaction (SIGSOUND, &process_fatal_action, 0);
2038 #endif
2039 #ifdef SIGTALRM
2040 sigaction (SIGTALRM, &thread_fatal_action, 0);
2041 #endif
2044 #ifndef HAVE_RANDOM
2045 #ifdef random
2046 #define HAVE_RANDOM
2047 #endif
2048 #endif
2050 /* Figure out how many bits the system's random number generator uses.
2051 `random' and `lrand48' are assumed to return 31 usable bits.
2052 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2053 so we'll shift it and treat it like the 15-bit USG `rand'. */
2055 #ifndef RAND_BITS
2056 # ifdef HAVE_RANDOM
2057 # define RAND_BITS 31
2058 # else /* !HAVE_RANDOM */
2059 # ifdef HAVE_LRAND48
2060 # define RAND_BITS 31
2061 # define random lrand48
2062 # else /* !HAVE_LRAND48 */
2063 # define RAND_BITS 15
2064 # if RAND_MAX == 32767
2065 # define random rand
2066 # else /* RAND_MAX != 32767 */
2067 # if RAND_MAX == 2147483647
2068 # define random() (rand () >> 16)
2069 # else /* RAND_MAX != 2147483647 */
2070 # ifdef USG
2071 # define random rand
2072 # else
2073 # define random() (rand () >> 16)
2074 # endif /* !USG */
2075 # endif /* RAND_MAX != 2147483647 */
2076 # endif /* RAND_MAX != 32767 */
2077 # endif /* !HAVE_LRAND48 */
2078 # endif /* !HAVE_RANDOM */
2079 #endif /* !RAND_BITS */
2081 #ifdef HAVE_RANDOM
2082 typedef unsigned int random_seed;
2083 static void set_random_seed (random_seed arg) { srandom (arg); }
2084 #elif defined HAVE_LRAND48
2085 /* Although srand48 uses a long seed, this is unsigned long to avoid
2086 undefined behavior on signed integer overflow in init_random. */
2087 typedef unsigned long int random_seed;
2088 static void set_random_seed (random_seed arg) { srand48 (arg); }
2089 #else
2090 typedef unsigned int random_seed;
2091 static void set_random_seed (random_seed arg) { srand (arg); }
2092 #endif
2094 void
2095 seed_random (void *seed, ptrdiff_t seed_size)
2097 random_seed arg = 0;
2098 unsigned char *argp = (unsigned char *) &arg;
2099 unsigned char *seedp = seed;
2100 for (ptrdiff_t i = 0; i < seed_size; i++)
2101 argp[i % sizeof arg] ^= seedp[i];
2102 set_random_seed (arg);
2105 void
2106 init_random (void)
2108 random_seed v;
2109 if (! (EQ (emacs_gnutls_global_init (), Qt)
2110 && gnutls_rnd (GNUTLS_RND_NONCE, &v, sizeof v) == 0))
2112 bool success = false;
2113 #ifndef WINDOWSNT
2114 int fd = emacs_open ("/dev/urandom", O_RDONLY | O_BINARY, 0);
2115 if (0 <= fd)
2117 success = emacs_read (fd, &v, sizeof v) == sizeof v;
2118 emacs_close (fd);
2120 #else
2121 success = w32_init_random (&v, sizeof v) == 0;
2122 #endif
2123 if (! success)
2125 /* Fall back to current time value + PID. */
2126 struct timespec t = current_timespec ();
2127 v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2130 set_random_seed (v);
2134 * Return a nonnegative random integer out of whatever we've got.
2135 * It contains enough bits to make a random (signed) Emacs fixnum.
2136 * This suffices even for a 64-bit architecture with a 15-bit rand.
2138 EMACS_INT
2139 get_random (void)
2141 EMACS_UINT val = 0;
2142 int i;
2143 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2144 val = (random () ^ (val << RAND_BITS)
2145 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2146 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2147 return val & INTMASK;
2150 #ifndef HAVE_SNPRINTF
2151 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2153 snprintf (char *buf, size_t bufsize, char const *format, ...)
2155 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2156 ptrdiff_t nbytes = size - 1;
2157 va_list ap;
2159 if (size)
2161 va_start (ap, format);
2162 nbytes = doprnt (buf, size, format, 0, ap);
2163 va_end (ap);
2166 if (nbytes == size - 1)
2168 /* Calculate the length of the string that would have been created
2169 had the buffer been large enough. */
2170 char stackbuf[4000];
2171 char *b = stackbuf;
2172 ptrdiff_t bsize = sizeof stackbuf;
2173 va_start (ap, format);
2174 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2175 va_end (ap);
2176 if (b != stackbuf)
2177 xfree (b);
2180 if (INT_MAX < nbytes)
2182 #ifdef EOVERFLOW
2183 errno = EOVERFLOW;
2184 #else
2185 errno = EDOM;
2186 #endif
2187 return -1;
2189 return nbytes;
2191 #endif
2193 /* If a backtrace is available, output the top lines of it to stderr.
2194 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2195 This function may be called from a signal handler, so it should
2196 not invoke async-unsafe functions like malloc.
2198 If BACKTRACE_LIMIT is -1, initialize tables that 'backtrace' uses
2199 but do not output anything. This avoids some problems that can
2200 otherwise occur if the malloc arena is corrupted before 'backtrace'
2201 is called, since 'backtrace' may call malloc if the tables are not
2202 initialized.
2204 If the static variable THREAD_BACKTRACE_NPOINTERS is nonzero, a
2205 fatal error has occurred in some other thread; generate a thread
2206 backtrace instead, ignoring BACKTRACE_LIMIT. */
2207 void
2208 emacs_backtrace (int backtrace_limit)
2210 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2211 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2212 void *buffer;
2213 int npointers;
2215 if (thread_backtrace_npointers)
2217 buffer = thread_backtrace_buffer;
2218 npointers = thread_backtrace_npointers;
2220 else
2222 buffer = main_backtrace_buffer;
2224 /* Work around 'backtrace' bug; see Bug#19959 and glibc bug#18084. */
2225 if (bounded_limit < 0)
2227 backtrace (buffer, 1);
2228 return;
2231 npointers = backtrace (buffer, bounded_limit + 1);
2234 if (npointers)
2236 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2237 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2238 if (bounded_limit < npointers)
2239 emacs_write (STDERR_FILENO, "...\n", 4);
2243 #ifndef HAVE_NTGUI
2244 void
2245 emacs_abort (void)
2247 terminate_due_to_signal (SIGABRT, 40);
2249 #endif
2251 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2252 Use binary I/O on systems that care about text vs binary I/O.
2253 Arrange for subprograms to not inherit the file descriptor.
2254 Prefer a method that is multithread-safe, if available.
2255 Do not fail merely because the open was interrupted by a signal.
2256 Allow the user to quit. */
2259 emacs_open (const char *file, int oflags, int mode)
2261 int fd;
2262 if (! (oflags & O_TEXT))
2263 oflags |= O_BINARY;
2264 oflags |= O_CLOEXEC;
2265 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2266 QUIT;
2267 if (! O_CLOEXEC && 0 <= fd)
2268 fcntl (fd, F_SETFD, FD_CLOEXEC);
2269 return fd;
2272 /* Open FILE as a stream for Emacs use, with mode MODE.
2273 Act like emacs_open with respect to threads, signals, and quits. */
2275 FILE *
2276 emacs_fopen (char const *file, char const *mode)
2278 int fd, omode, oflags;
2279 int bflag = 0;
2280 char const *m = mode;
2282 switch (*m++)
2284 case 'r': omode = O_RDONLY; oflags = 0; break;
2285 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2286 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2287 default: emacs_abort ();
2290 while (*m)
2291 switch (*m++)
2293 case '+': omode = O_RDWR; break;
2294 case 'b': bflag = O_BINARY; break;
2295 case 't': bflag = O_TEXT; break;
2296 default: /* Ignore. */ break;
2299 fd = emacs_open (file, omode | oflags | bflag, 0666);
2300 return fd < 0 ? 0 : fdopen (fd, mode);
2303 /* Create a pipe for Emacs use. */
2306 emacs_pipe (int fd[2])
2308 #ifdef MSDOS
2309 return pipe (fd);
2310 #else /* !MSDOS */
2311 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2312 if (! O_CLOEXEC && result == 0)
2314 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2315 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2317 return result;
2318 #endif /* !MSDOS */
2321 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2322 For the background behind this mess, please see Austin Group defect 529
2323 <http://austingroupbugs.net/view.php?id=529>. */
2325 #ifndef POSIX_CLOSE_RESTART
2326 # define POSIX_CLOSE_RESTART 1
2327 static int
2328 posix_close (int fd, int flag)
2330 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2331 eassert (flag == POSIX_CLOSE_RESTART);
2333 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2334 on a system that does not define POSIX_CLOSE_RESTART.
2336 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2337 closed, and retrying the close could inadvertently close a file
2338 descriptor allocated by some other thread. In other systems
2339 (e.g., HP/UX) FD is not closed. And in still other systems
2340 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2341 multithreaded program there can be no way to tell.
2343 So, in this case, pretend that the close succeeded. This works
2344 well on systems like GNU/Linux that close FD. Although it may
2345 leak a file descriptor on other systems, the leak is unlikely and
2346 it's better to leak than to close a random victim. */
2347 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2349 #endif
2351 /* Close FD, retrying if interrupted. If successful, return 0;
2352 otherwise, return -1 and set errno to a non-EINTR value. Consider
2353 an EINPROGRESS error to be successful, as that's merely a signal
2354 arriving. FD is always closed when this function returns, even
2355 when it returns -1.
2357 Do not call this function if FD is nonnegative and might already be closed,
2358 as that might close an innocent victim opened by some other thread. */
2361 emacs_close (int fd)
2363 while (1)
2365 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2366 if (r == 0)
2367 return r;
2368 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2370 eassert (errno != EBADF || fd < 0);
2371 return errno == EINPROGRESS ? 0 : r;
2376 /* Maximum number of bytes to read or write in a single system call.
2377 This works around a serious bug in Linux kernels before 2.6.16; see
2378 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2379 It's likely to work around similar bugs in other operating systems, so do it
2380 on all platforms. Round INT_MAX down to a page size, with the conservative
2381 assumption that page sizes are at most 2**18 bytes (any kernel with a
2382 page size larger than that shouldn't have the bug). */
2383 #ifndef MAX_RW_COUNT
2384 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2385 #endif
2387 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2388 Return the number of bytes read, which might be less than NBYTE.
2389 On error, set errno and return -1. */
2390 ptrdiff_t
2391 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2393 ssize_t rtnval;
2395 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2396 passes a size that large to emacs_read. */
2398 while ((rtnval = read (fildes, buf, nbyte)) == -1
2399 && (errno == EINTR))
2400 QUIT;
2401 return (rtnval);
2404 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2405 or if a partial write occurs. If interrupted, process pending
2406 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2407 errno if this is less than NBYTE. */
2408 static ptrdiff_t
2409 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2410 bool process_signals)
2412 ptrdiff_t bytes_written = 0;
2414 while (nbyte > 0)
2416 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2418 if (n < 0)
2420 if (errno == EINTR)
2422 /* I originally used `QUIT' but that might cause files to
2423 be truncated if you hit C-g in the middle of it. --Stef */
2424 if (process_signals && pending_signals)
2425 process_pending_signals ();
2426 continue;
2428 else
2429 break;
2432 buf += n;
2433 nbyte -= n;
2434 bytes_written += n;
2437 return bytes_written;
2440 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2441 interrupted or if a partial write occurs. Return the number of
2442 bytes written, setting errno if this is less than NBYTE. */
2443 ptrdiff_t
2444 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2446 return emacs_full_write (fildes, buf, nbyte, 0);
2449 /* Like emacs_write, but also process pending signals if interrupted. */
2450 ptrdiff_t
2451 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2453 return emacs_full_write (fildes, buf, nbyte, 1);
2456 /* Write a diagnostic to standard error that contains MESSAGE and a
2457 string derived from errno. Preserve errno. Do not buffer stderr.
2458 Do not process pending signals if interrupted. */
2459 void
2460 emacs_perror (char const *message)
2462 int err = errno;
2463 char const *error_string = strerror (err);
2464 char const *command = (initial_argv && initial_argv[0]
2465 ? initial_argv[0] : "emacs");
2466 /* Write it out all at once, if it's short; this is less likely to
2467 be interleaved with other output. */
2468 char buf[BUFSIZ];
2469 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2470 command, message, error_string);
2471 if (0 <= nbytes && nbytes < BUFSIZ)
2472 emacs_write (STDERR_FILENO, buf, nbytes);
2473 else
2475 emacs_write (STDERR_FILENO, command, strlen (command));
2476 emacs_write (STDERR_FILENO, ": ", 2);
2477 emacs_write (STDERR_FILENO, message, strlen (message));
2478 emacs_write (STDERR_FILENO, ": ", 2);
2479 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2480 emacs_write (STDERR_FILENO, "\n", 1);
2482 errno = err;
2485 /* Return a struct timeval that is roughly equivalent to T.
2486 Use the least timeval not less than T.
2487 Return an extremal value if the result would overflow. */
2488 struct timeval
2489 make_timeval (struct timespec t)
2491 struct timeval tv;
2492 tv.tv_sec = t.tv_sec;
2493 tv.tv_usec = t.tv_nsec / 1000;
2495 if (t.tv_nsec % 1000 != 0)
2497 if (tv.tv_usec < 999999)
2498 tv.tv_usec++;
2499 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2501 tv.tv_sec++;
2502 tv.tv_usec = 0;
2506 return tv;
2509 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2510 ATIME and MTIME, respectively.
2511 FD must be either negative -- in which case it is ignored --
2512 or a file descriptor that is open on FILE.
2513 If FD is nonnegative, then FILE can be NULL. */
2515 set_file_times (int fd, const char *filename,
2516 struct timespec atime, struct timespec mtime)
2518 struct timespec timespec[2];
2519 timespec[0] = atime;
2520 timespec[1] = mtime;
2521 return fdutimens (fd, filename, timespec);
2524 /* Like strsignal, except async-signal-safe, and this function typically
2525 returns a string in the C locale rather than the current locale. */
2526 char const *
2527 safe_strsignal (int code)
2529 char const *signame = 0;
2531 if (0 <= code && code < sys_siglist_entries)
2532 signame = sys_siglist[code];
2533 if (! signame)
2534 signame = "Unknown signal";
2536 return signame;
2539 #ifndef DOS_NT
2540 /* For make-serial-process */
2542 serial_open (Lisp_Object port)
2544 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2545 if (fd < 0)
2546 report_file_error ("Opening serial port", port);
2547 #ifdef TIOCEXCL
2548 ioctl (fd, TIOCEXCL, (char *) 0);
2549 #endif
2551 return fd;
2554 #if !defined (HAVE_CFMAKERAW)
2555 /* Workaround for targets which are missing cfmakeraw. */
2556 /* Pasted from man page. */
2557 static void
2558 cfmakeraw (struct termios *termios_p)
2560 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2561 termios_p->c_oflag &= ~OPOST;
2562 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2563 termios_p->c_cflag &= ~(CSIZE|PARENB);
2564 termios_p->c_cflag |= CS8;
2566 #endif /* !defined (HAVE_CFMAKERAW */
2568 #if !defined (HAVE_CFSETSPEED)
2569 /* Workaround for targets which are missing cfsetspeed. */
2570 static int
2571 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2573 return (cfsetispeed (termios_p, vitesse)
2574 + cfsetospeed (termios_p, vitesse));
2576 #endif
2578 /* For serial-process-configure */
2579 void
2580 serial_configure (struct Lisp_Process *p,
2581 Lisp_Object contact)
2583 Lisp_Object childp2 = Qnil;
2584 Lisp_Object tem = Qnil;
2585 struct termios attr;
2586 int err;
2587 char summary[4] = "???"; /* This usually becomes "8N1". */
2589 childp2 = Fcopy_sequence (p->childp);
2591 /* Read port attributes and prepare default configuration. */
2592 err = tcgetattr (p->outfd, &attr);
2593 if (err != 0)
2594 report_file_error ("Failed tcgetattr", Qnil);
2595 cfmakeraw (&attr);
2596 #if defined (CLOCAL)
2597 attr.c_cflag |= CLOCAL;
2598 #endif
2599 #if defined (CREAD)
2600 attr.c_cflag |= CREAD;
2601 #endif
2603 /* Configure speed. */
2604 if (!NILP (Fplist_member (contact, QCspeed)))
2605 tem = Fplist_get (contact, QCspeed);
2606 else
2607 tem = Fplist_get (p->childp, QCspeed);
2608 CHECK_NUMBER (tem);
2609 err = cfsetspeed (&attr, XINT (tem));
2610 if (err != 0)
2611 report_file_error ("Failed cfsetspeed", tem);
2612 childp2 = Fplist_put (childp2, QCspeed, tem);
2614 /* Configure bytesize. */
2615 if (!NILP (Fplist_member (contact, QCbytesize)))
2616 tem = Fplist_get (contact, QCbytesize);
2617 else
2618 tem = Fplist_get (p->childp, QCbytesize);
2619 if (NILP (tem))
2620 tem = make_number (8);
2621 CHECK_NUMBER (tem);
2622 if (XINT (tem) != 7 && XINT (tem) != 8)
2623 error (":bytesize must be nil (8), 7, or 8");
2624 summary[0] = XINT (tem) + '0';
2625 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2626 attr.c_cflag &= ~CSIZE;
2627 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2628 #else
2629 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2630 if (XINT (tem) != 8)
2631 error ("Bytesize cannot be changed");
2632 #endif
2633 childp2 = Fplist_put (childp2, QCbytesize, tem);
2635 /* Configure parity. */
2636 if (!NILP (Fplist_member (contact, QCparity)))
2637 tem = Fplist_get (contact, QCparity);
2638 else
2639 tem = Fplist_get (p->childp, QCparity);
2640 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2641 error (":parity must be nil (no parity), `even', or `odd'");
2642 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2643 attr.c_cflag &= ~(PARENB | PARODD);
2644 attr.c_iflag &= ~(IGNPAR | INPCK);
2645 if (NILP (tem))
2647 summary[1] = 'N';
2649 else if (EQ (tem, Qeven))
2651 summary[1] = 'E';
2652 attr.c_cflag |= PARENB;
2653 attr.c_iflag |= (IGNPAR | INPCK);
2655 else if (EQ (tem, Qodd))
2657 summary[1] = 'O';
2658 attr.c_cflag |= (PARENB | PARODD);
2659 attr.c_iflag |= (IGNPAR | INPCK);
2661 #else
2662 /* Don't error on no parity, which should be set by cfmakeraw. */
2663 if (!NILP (tem))
2664 error ("Parity cannot be configured");
2665 #endif
2666 childp2 = Fplist_put (childp2, QCparity, tem);
2668 /* Configure stopbits. */
2669 if (!NILP (Fplist_member (contact, QCstopbits)))
2670 tem = Fplist_get (contact, QCstopbits);
2671 else
2672 tem = Fplist_get (p->childp, QCstopbits);
2673 if (NILP (tem))
2674 tem = make_number (1);
2675 CHECK_NUMBER (tem);
2676 if (XINT (tem) != 1 && XINT (tem) != 2)
2677 error (":stopbits must be nil (1 stopbit), 1, or 2");
2678 summary[2] = XINT (tem) + '0';
2679 #if defined (CSTOPB)
2680 attr.c_cflag &= ~CSTOPB;
2681 if (XINT (tem) == 2)
2682 attr.c_cflag |= CSTOPB;
2683 #else
2684 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2685 if (XINT (tem) != 1)
2686 error ("Stopbits cannot be configured");
2687 #endif
2688 childp2 = Fplist_put (childp2, QCstopbits, tem);
2690 /* Configure flowcontrol. */
2691 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2692 tem = Fplist_get (contact, QCflowcontrol);
2693 else
2694 tem = Fplist_get (p->childp, QCflowcontrol);
2695 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2696 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2697 #if defined (CRTSCTS)
2698 attr.c_cflag &= ~CRTSCTS;
2699 #endif
2700 #if defined (CNEW_RTSCTS)
2701 attr.c_cflag &= ~CNEW_RTSCTS;
2702 #endif
2703 #if defined (IXON) && defined (IXOFF)
2704 attr.c_iflag &= ~(IXON | IXOFF);
2705 #endif
2706 if (NILP (tem))
2708 /* Already configured. */
2710 else if (EQ (tem, Qhw))
2712 #if defined (CRTSCTS)
2713 attr.c_cflag |= CRTSCTS;
2714 #elif defined (CNEW_RTSCTS)
2715 attr.c_cflag |= CNEW_RTSCTS;
2716 #else
2717 error ("Hardware flowcontrol (RTS/CTS) not supported");
2718 #endif
2720 else if (EQ (tem, Qsw))
2722 #if defined (IXON) && defined (IXOFF)
2723 attr.c_iflag |= (IXON | IXOFF);
2724 #else
2725 error ("Software flowcontrol (XON/XOFF) not supported");
2726 #endif
2728 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2730 /* Activate configuration. */
2731 err = tcsetattr (p->outfd, TCSANOW, &attr);
2732 if (err != 0)
2733 report_file_error ("Failed tcsetattr", Qnil);
2735 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2736 pset_childp (p, childp2);
2738 #endif /* not DOS_NT */
2740 /* System depended enumeration of and access to system processes a-la ps(1). */
2742 #ifdef HAVE_PROCFS
2744 /* Process enumeration and access via /proc. */
2746 Lisp_Object
2747 list_system_processes (void)
2749 Lisp_Object procdir, match, proclist, next;
2750 Lisp_Object tail;
2752 /* For every process on the system, there's a directory in the
2753 "/proc" pseudo-directory whose name is the numeric ID of that
2754 process. */
2755 procdir = build_string ("/proc");
2756 match = build_string ("[0-9]+");
2757 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2759 /* `proclist' gives process IDs as strings. Destructively convert
2760 each string into a number. */
2761 for (tail = proclist; CONSP (tail); tail = next)
2763 next = XCDR (tail);
2764 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2767 /* directory_files_internal returns the files in reverse order; undo
2768 that. */
2769 proclist = Fnreverse (proclist);
2770 return proclist;
2773 #elif defined DARWIN_OS || defined __FreeBSD__
2775 Lisp_Object
2776 list_system_processes (void)
2778 #ifdef DARWIN_OS
2779 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2780 #else
2781 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2782 #endif
2783 size_t len;
2784 struct kinfo_proc *procs;
2785 size_t i;
2787 Lisp_Object proclist = Qnil;
2789 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2790 return proclist;
2792 procs = xmalloc (len);
2793 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2795 xfree (procs);
2796 return proclist;
2799 len /= sizeof (struct kinfo_proc);
2800 for (i = 0; i < len; i++)
2802 #ifdef DARWIN_OS
2803 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2804 #else
2805 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2806 #endif
2809 xfree (procs);
2811 return proclist;
2814 /* The WINDOWSNT implementation is in w32.c.
2815 The MSDOS implementation is in dosfns.c. */
2816 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2818 Lisp_Object
2819 list_system_processes (void)
2821 return Qnil;
2824 #endif /* !defined (WINDOWSNT) */
2826 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2827 static struct timespec
2828 time_from_jiffies (unsigned long long tval, long hz)
2830 unsigned long long s = tval / hz;
2831 unsigned long long frac = tval % hz;
2832 int ns;
2834 if (TYPE_MAXIMUM (time_t) < s)
2835 time_overflow ();
2836 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2837 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2838 ns = frac * TIMESPEC_RESOLUTION / hz;
2839 else
2841 /* This is reachable only in the unlikely case that HZ * HZ
2842 exceeds ULLONG_MAX. It calculates an approximation that is
2843 guaranteed to be in range. */
2844 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2845 + (hz % TIMESPEC_RESOLUTION != 0));
2846 ns = frac / hz_per_ns;
2849 return make_timespec (s, ns);
2852 static Lisp_Object
2853 ltime_from_jiffies (unsigned long long tval, long hz)
2855 struct timespec t = time_from_jiffies (tval, hz);
2856 return make_lisp_time (t);
2859 static struct timespec
2860 get_up_time (void)
2862 FILE *fup;
2863 struct timespec up = make_timespec (0, 0);
2865 block_input ();
2866 fup = emacs_fopen ("/proc/uptime", "r");
2868 if (fup)
2870 unsigned long long upsec, upfrac, idlesec, idlefrac;
2871 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2873 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2874 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2875 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2876 == 4)
2878 if (TYPE_MAXIMUM (time_t) < upsec)
2880 upsec = TYPE_MAXIMUM (time_t);
2881 upfrac = TIMESPEC_RESOLUTION - 1;
2883 else
2885 int upfraclen = upfrac_end - upfrac_start;
2886 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2887 upfrac *= 10;
2888 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2889 upfrac /= 10;
2890 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2892 up = make_timespec (upsec, upfrac);
2894 fclose (fup);
2896 unblock_input ();
2898 return up;
2901 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2902 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2904 static Lisp_Object
2905 procfs_ttyname (int rdev)
2907 FILE *fdev;
2908 char name[PATH_MAX];
2910 block_input ();
2911 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2912 name[0] = 0;
2914 if (fdev)
2916 unsigned major;
2917 unsigned long minor_beg, minor_end;
2918 char minor[25]; /* 2 32-bit numbers + dash */
2919 char *endp;
2921 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2923 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2924 && major == MAJOR (rdev))
2926 minor_beg = strtoul (minor, &endp, 0);
2927 if (*endp == '\0')
2928 minor_end = minor_beg;
2929 else if (*endp == '-')
2930 minor_end = strtoul (endp + 1, &endp, 0);
2931 else
2932 continue;
2934 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2936 sprintf (name + strlen (name), "%u", MINOR (rdev));
2937 break;
2941 fclose (fdev);
2943 unblock_input ();
2944 return build_string (name);
2947 static uintmax_t
2948 procfs_get_total_memory (void)
2950 FILE *fmem;
2951 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2952 int c;
2954 block_input ();
2955 fmem = emacs_fopen ("/proc/meminfo", "r");
2957 if (fmem)
2959 uintmax_t entry_value;
2960 bool done;
2963 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2965 case 1:
2966 retval = entry_value;
2967 done = 1;
2968 break;
2970 case 0:
2971 while ((c = getc (fmem)) != EOF && c != '\n')
2972 continue;
2973 done = c == EOF;
2974 break;
2976 default:
2977 done = 1;
2978 break;
2980 while (!done);
2982 fclose (fmem);
2984 unblock_input ();
2985 return retval;
2988 Lisp_Object
2989 system_process_attributes (Lisp_Object pid)
2991 char procfn[PATH_MAX], fn[PATH_MAX];
2992 struct stat st;
2993 struct passwd *pw;
2994 struct group *gr;
2995 long clocks_per_sec;
2996 char *procfn_end;
2997 char procbuf[1025], *p, *q;
2998 int fd;
2999 ssize_t nread;
3000 static char const default_cmd[] = "???";
3001 const char *cmd = default_cmd;
3002 int cmdsize = sizeof default_cmd - 1;
3003 char *cmdline = NULL;
3004 ptrdiff_t cmdline_size;
3005 char c;
3006 printmax_t proc_id;
3007 int ppid, pgrp, sess, tty, tpgid, thcount;
3008 uid_t uid;
3009 gid_t gid;
3010 unsigned long long u_time, s_time, cutime, cstime, start;
3011 long priority, niceness, rss;
3012 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3013 struct timespec tnow, tstart, tboot, telapsed, us_time;
3014 double pcpu, pmem;
3015 Lisp_Object attrs = Qnil;
3016 Lisp_Object cmd_str, decoded_cmd;
3017 ptrdiff_t count;
3019 CHECK_NUMBER_OR_FLOAT (pid);
3020 CONS_TO_INTEGER (pid, pid_t, proc_id);
3021 sprintf (procfn, "/proc/%"pMd, proc_id);
3022 if (stat (procfn, &st) < 0)
3023 return attrs;
3025 /* euid egid */
3026 uid = st.st_uid;
3027 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3028 block_input ();
3029 pw = getpwuid (uid);
3030 unblock_input ();
3031 if (pw)
3032 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3034 gid = st.st_gid;
3035 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3036 block_input ();
3037 gr = getgrgid (gid);
3038 unblock_input ();
3039 if (gr)
3040 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3042 count = SPECPDL_INDEX ();
3043 strcpy (fn, procfn);
3044 procfn_end = fn + strlen (fn);
3045 strcpy (procfn_end, "/stat");
3046 fd = emacs_open (fn, O_RDONLY, 0);
3047 if (fd < 0)
3048 nread = 0;
3049 else
3051 record_unwind_protect_int (close_file_unwind, fd);
3052 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3054 if (0 < nread)
3056 procbuf[nread] = '\0';
3057 p = procbuf;
3059 p = strchr (p, '(');
3060 if (p != NULL)
3062 q = strrchr (p + 1, ')');
3063 /* comm */
3064 if (q != NULL)
3066 cmd = p + 1;
3067 cmdsize = q - cmd;
3070 else
3071 q = NULL;
3072 /* Command name is encoded in locale-coding-system; decode it. */
3073 cmd_str = make_unibyte_string (cmd, cmdsize);
3074 decoded_cmd = code_convert_string_norecord (cmd_str,
3075 Vlocale_coding_system, 0);
3076 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3078 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3079 utime stime cutime cstime priority nice thcount . start vsize rss */
3080 if (q
3081 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3082 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3083 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3084 &minflt, &cminflt, &majflt, &cmajflt,
3085 &u_time, &s_time, &cutime, &cstime,
3086 &priority, &niceness, &thcount, &start, &vsize, &rss)
3087 == 20))
3089 char state_str[2];
3090 state_str[0] = c;
3091 state_str[1] = '\0';
3092 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3093 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3094 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3095 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3096 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3097 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3098 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3099 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3100 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3101 attrs);
3102 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3103 attrs);
3104 clocks_per_sec = sysconf (_SC_CLK_TCK);
3105 if (clocks_per_sec < 0)
3106 clocks_per_sec = 100;
3107 attrs = Fcons (Fcons (Qutime,
3108 ltime_from_jiffies (u_time, clocks_per_sec)),
3109 attrs);
3110 attrs = Fcons (Fcons (Qstime,
3111 ltime_from_jiffies (s_time, clocks_per_sec)),
3112 attrs);
3113 attrs = Fcons (Fcons (Qtime,
3114 ltime_from_jiffies (s_time + u_time,
3115 clocks_per_sec)),
3116 attrs);
3117 attrs = Fcons (Fcons (Qcutime,
3118 ltime_from_jiffies (cutime, clocks_per_sec)),
3119 attrs);
3120 attrs = Fcons (Fcons (Qcstime,
3121 ltime_from_jiffies (cstime, clocks_per_sec)),
3122 attrs);
3123 attrs = Fcons (Fcons (Qctime,
3124 ltime_from_jiffies (cstime + cutime,
3125 clocks_per_sec)),
3126 attrs);
3127 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3128 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3129 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3130 attrs);
3131 tnow = current_timespec ();
3132 telapsed = get_up_time ();
3133 tboot = timespec_sub (tnow, telapsed);
3134 tstart = time_from_jiffies (start, clocks_per_sec);
3135 tstart = timespec_add (tboot, tstart);
3136 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3137 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3138 attrs);
3139 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3140 telapsed = timespec_sub (tnow, tstart);
3141 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3142 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3143 pcpu = timespectod (us_time) / timespectod (telapsed);
3144 if (pcpu > 1.0)
3145 pcpu = 1.0;
3146 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3147 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3148 if (pmem > 100)
3149 pmem = 100;
3150 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3153 unbind_to (count, Qnil);
3155 /* args */
3156 strcpy (procfn_end, "/cmdline");
3157 fd = emacs_open (fn, O_RDONLY, 0);
3158 if (fd >= 0)
3160 ptrdiff_t readsize, nread_incr;
3161 record_unwind_protect_int (close_file_unwind, fd);
3162 record_unwind_protect_nothing ();
3163 nread = cmdline_size = 0;
3167 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3168 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3170 /* Leave room even if every byte needs escaping below. */
3171 readsize = (cmdline_size >> 1) - nread;
3173 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3174 nread += max (0, nread_incr);
3176 while (nread_incr == readsize);
3178 if (nread)
3180 /* We don't want trailing null characters. */
3181 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3182 continue;
3184 /* Escape-quote whitespace and backslashes. */
3185 q = cmdline + cmdline_size;
3186 while (cmdline < p)
3188 char c = *--p;
3189 *--q = c ? c : ' ';
3190 if (c_isspace (c) || c == '\\')
3191 *--q = '\\';
3194 nread = cmdline + cmdline_size - q;
3197 if (!nread)
3199 nread = cmdsize + 2;
3200 cmdline_size = nread + 1;
3201 q = cmdline = xrealloc (cmdline, cmdline_size);
3202 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3203 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3205 /* Command line is encoded in locale-coding-system; decode it. */
3206 cmd_str = make_unibyte_string (q, nread);
3207 decoded_cmd = code_convert_string_norecord (cmd_str,
3208 Vlocale_coding_system, 0);
3209 unbind_to (count, Qnil);
3210 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3213 return attrs;
3216 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3218 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3219 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3220 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3221 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3222 #undef _FILE_OFFSET_BITS
3223 #else
3224 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3225 #endif
3227 #include <procfs.h>
3229 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3230 #define _FILE_OFFSET_BITS 64
3231 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3232 #endif
3233 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3235 Lisp_Object
3236 system_process_attributes (Lisp_Object pid)
3238 char procfn[PATH_MAX], fn[PATH_MAX];
3239 struct stat st;
3240 struct passwd *pw;
3241 struct group *gr;
3242 char *procfn_end;
3243 struct psinfo pinfo;
3244 int fd;
3245 ssize_t nread;
3246 printmax_t proc_id;
3247 uid_t uid;
3248 gid_t gid;
3249 Lisp_Object attrs = Qnil;
3250 Lisp_Object decoded_cmd;
3251 ptrdiff_t count;
3253 CHECK_NUMBER_OR_FLOAT (pid);
3254 CONS_TO_INTEGER (pid, pid_t, proc_id);
3255 sprintf (procfn, "/proc/%"pMd, proc_id);
3256 if (stat (procfn, &st) < 0)
3257 return attrs;
3259 /* euid egid */
3260 uid = st.st_uid;
3261 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3262 block_input ();
3263 pw = getpwuid (uid);
3264 unblock_input ();
3265 if (pw)
3266 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3268 gid = st.st_gid;
3269 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3270 block_input ();
3271 gr = getgrgid (gid);
3272 unblock_input ();
3273 if (gr)
3274 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3276 count = SPECPDL_INDEX ();
3277 strcpy (fn, procfn);
3278 procfn_end = fn + strlen (fn);
3279 strcpy (procfn_end, "/psinfo");
3280 fd = emacs_open (fn, O_RDONLY, 0);
3281 if (fd < 0)
3282 nread = 0;
3283 else
3285 record_unwind_protect (close_file_unwind, fd);
3286 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3289 if (nread == sizeof pinfo)
3291 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3292 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3293 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3296 char state_str[2];
3297 state_str[0] = pinfo.pr_lwp.pr_sname;
3298 state_str[1] = '\0';
3299 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3302 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3303 need to get a string from it. */
3305 /* FIXME: missing: Qtpgid */
3307 /* FIXME: missing:
3308 Qminflt
3309 Qmajflt
3310 Qcminflt
3311 Qcmajflt
3313 Qutime
3314 Qcutime
3315 Qstime
3316 Qcstime
3317 Are they available? */
3319 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3320 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3321 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3322 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3323 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3324 attrs);
3326 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3327 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3328 attrs);
3329 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3330 attrs);
3332 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3333 range 0 .. 2**15, representing 0.0 .. 1.0. */
3334 attrs = Fcons (Fcons (Qpcpu,
3335 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3336 attrs);
3337 attrs = Fcons (Fcons (Qpmem,
3338 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3339 attrs);
3341 decoded_cmd = (code_convert_string_norecord
3342 (build_unibyte_string (pinfo.pr_fname),
3343 Vlocale_coding_system, 0));
3344 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3345 decoded_cmd = (code_convert_string_norecord
3346 (build_unibyte_string (pinfo.pr_psargs),
3347 Vlocale_coding_system, 0));
3348 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3350 unbind_to (count, Qnil);
3351 return attrs;
3354 #elif defined __FreeBSD__
3356 static struct timespec
3357 timeval_to_timespec (struct timeval t)
3359 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3362 static Lisp_Object
3363 make_lisp_timeval (struct timeval t)
3365 return make_lisp_time (timeval_to_timespec (t));
3368 Lisp_Object
3369 system_process_attributes (Lisp_Object pid)
3371 int proc_id;
3372 int pagesize = getpagesize ();
3373 unsigned long npages;
3374 int fscale;
3375 struct passwd *pw;
3376 struct group *gr;
3377 char *ttyname;
3378 size_t len;
3379 char args[MAXPATHLEN];
3380 struct timespec t, now;
3382 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3383 struct kinfo_proc proc;
3384 size_t proclen = sizeof proc;
3386 Lisp_Object attrs = Qnil;
3387 Lisp_Object decoded_comm;
3389 CHECK_NUMBER_OR_FLOAT (pid);
3390 CONS_TO_INTEGER (pid, int, proc_id);
3391 mib[3] = proc_id;
3393 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3394 return attrs;
3396 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3398 block_input ();
3399 pw = getpwuid (proc.ki_uid);
3400 unblock_input ();
3401 if (pw)
3402 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3404 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3406 block_input ();
3407 gr = getgrgid (proc.ki_svgid);
3408 unblock_input ();
3409 if (gr)
3410 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3412 decoded_comm = (code_convert_string_norecord
3413 (build_unibyte_string (proc.ki_comm),
3414 Vlocale_coding_system, 0));
3416 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3418 char state[2] = {'\0', '\0'};
3419 switch (proc.ki_stat)
3421 case SRUN:
3422 state[0] = 'R';
3423 break;
3425 case SSLEEP:
3426 state[0] = 'S';
3427 break;
3429 case SLOCK:
3430 state[0] = 'D';
3431 break;
3433 case SZOMB:
3434 state[0] = 'Z';
3435 break;
3437 case SSTOP:
3438 state[0] = 'T';
3439 break;
3441 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3444 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3445 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3446 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3448 block_input ();
3449 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3450 unblock_input ();
3451 if (ttyname)
3452 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3454 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3455 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3456 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3457 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3458 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3460 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3461 attrs);
3462 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3463 attrs);
3464 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3465 timeval_to_timespec (proc.ki_rusage.ru_stime));
3466 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3468 attrs = Fcons (Fcons (Qcutime,
3469 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3470 attrs);
3471 attrs = Fcons (Fcons (Qcstime,
3472 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3473 attrs);
3474 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3475 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3476 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3478 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3479 attrs);
3480 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3481 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3482 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3483 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3484 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3485 attrs);
3487 now = current_timespec ();
3488 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3489 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3491 len = sizeof fscale;
3492 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3494 double pcpu;
3495 fixpt_t ccpu;
3496 len = sizeof ccpu;
3497 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3499 pcpu = (100.0 * proc.ki_pctcpu / fscale
3500 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3501 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3505 len = sizeof npages;
3506 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3508 double pmem = (proc.ki_flag & P_INMEM
3509 ? 100.0 * proc.ki_rssize / npages
3510 : 0);
3511 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3514 mib[2] = KERN_PROC_ARGS;
3515 len = MAXPATHLEN;
3516 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3518 int i;
3519 for (i = 0; i < len; i++)
3521 if (! args[i] && i < len - 1)
3522 args[i] = ' ';
3525 decoded_comm =
3526 (code_convert_string_norecord
3527 (build_unibyte_string (args),
3528 Vlocale_coding_system, 0));
3530 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3533 return attrs;
3536 /* The WINDOWSNT implementation is in w32.c.
3537 The MSDOS implementation is in dosfns.c. */
3538 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3540 Lisp_Object
3541 system_process_attributes (Lisp_Object pid)
3543 return Qnil;
3546 #endif /* !defined (WINDOWSNT) */
3548 /* Wide character string collation. */
3550 #ifdef __STDC_ISO_10646__
3551 # include <wchar.h>
3552 # include <wctype.h>
3554 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3555 # include <locale.h>
3556 # endif
3557 # ifndef LC_COLLATE
3558 # define LC_COLLATE 0
3559 # endif
3560 # ifndef LC_COLLATE_MASK
3561 # define LC_COLLATE_MASK 0
3562 # endif
3563 # ifndef LC_CTYPE
3564 # define LC_CTYPE 0
3565 # endif
3566 # ifndef LC_CTYPE_MASK
3567 # define LC_CTYPE_MASK 0
3568 # endif
3570 # ifndef HAVE_NEWLOCALE
3571 # undef freelocale
3572 # undef locale_t
3573 # undef newlocale
3574 # undef wcscoll_l
3575 # undef towlower_l
3576 # define freelocale emacs_freelocale
3577 # define locale_t emacs_locale_t
3578 # define newlocale emacs_newlocale
3579 # define wcscoll_l emacs_wcscoll_l
3580 # define towlower_l emacs_towlower_l
3582 typedef char const *locale_t;
3584 static locale_t
3585 newlocale (int category_mask, char const *locale, locale_t loc)
3587 return locale;
3590 static void
3591 freelocale (locale_t loc)
3595 static char *
3596 emacs_setlocale (int category, char const *locale)
3598 # ifdef HAVE_SETLOCALE
3599 errno = 0;
3600 char *loc = setlocale (category, locale);
3601 if (loc || errno)
3602 return loc;
3603 errno = EINVAL;
3604 # else
3605 errno = ENOTSUP;
3606 # endif
3607 return 0;
3610 static int
3611 wcscoll_l (wchar_t const *a, wchar_t const *b, locale_t loc)
3613 int result = 0;
3614 char *oldloc = emacs_setlocale (LC_COLLATE, NULL);
3615 int err;
3617 if (! oldloc)
3618 err = errno;
3619 else
3621 USE_SAFE_ALLOCA;
3622 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3623 strcpy (oldcopy, oldloc);
3624 if (! emacs_setlocale (LC_COLLATE, loc))
3625 err = errno;
3626 else
3628 errno = 0;
3629 result = wcscoll (a, b);
3630 err = errno;
3631 if (! emacs_setlocale (LC_COLLATE, oldcopy))
3632 err = errno;
3634 SAFE_FREE ();
3637 errno = err;
3638 return result;
3641 static wint_t
3642 towlower_l (wint_t wc, locale_t loc)
3644 wint_t result = wc;
3645 char *oldloc = emacs_setlocale (LC_CTYPE, NULL);
3647 if (oldloc)
3649 USE_SAFE_ALLOCA;
3650 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3651 strcpy (oldcopy, oldloc);
3652 if (emacs_setlocale (LC_CTYPE, loc))
3654 result = towlower (wc);
3655 emacs_setlocale (LC_COLLATE, oldcopy);
3657 SAFE_FREE ();
3660 return result;
3662 # endif
3665 str_collate (Lisp_Object s1, Lisp_Object s2,
3666 Lisp_Object locale, Lisp_Object ignore_case)
3668 int res, err;
3669 ptrdiff_t len, i, i_byte;
3670 wchar_t *p1, *p2;
3672 USE_SAFE_ALLOCA;
3674 /* Convert byte stream to code points. */
3675 len = SCHARS (s1); i = i_byte = 0;
3676 SAFE_NALLOCA (p1, 1, len + 1);
3677 while (i < len)
3678 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3679 *(p1+len) = 0;
3681 len = SCHARS (s2); i = i_byte = 0;
3682 SAFE_NALLOCA (p2, 1, len + 1);
3683 while (i < len)
3684 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3685 *(p2+len) = 0;
3687 if (STRINGP (locale))
3689 locale_t loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK,
3690 SSDATA (locale), 0);
3691 if (!loc)
3692 error ("Invalid locale %s: %s", SSDATA (locale), strerror (errno));
3694 if (! NILP (ignore_case))
3695 for (int i = 1; i < 3; i++)
3697 wchar_t *p = (i == 1) ? p1 : p2;
3698 for (; *p; p++)
3699 *p = towlower_l (*p, loc);
3702 errno = 0;
3703 res = wcscoll_l (p1, p2, loc);
3704 err = errno;
3705 freelocale (loc);
3707 else
3709 if (! NILP (ignore_case))
3710 for (int i = 1; i < 3; i++)
3712 wchar_t *p = (i == 1) ? p1 : p2;
3713 for (; *p; p++)
3714 *p = towlower (*p);
3717 errno = 0;
3718 res = wcscoll (p1, p2);
3719 err = errno;
3721 # ifndef HAVE_NEWLOCALE
3722 if (err)
3723 error ("Invalid locale or string for collation: %s", strerror (err));
3724 # else
3725 if (err)
3726 error ("Invalid string for collation: %s", strerror (err));
3727 # endif
3729 SAFE_FREE ();
3730 return res;
3732 #endif /* __STDC_ISO_10646__ */
3734 #ifdef WINDOWSNT
3736 str_collate (Lisp_Object s1, Lisp_Object s2,
3737 Lisp_Object locale, Lisp_Object ignore_case)
3740 char *loc = STRINGP (locale) ? SSDATA (locale) : NULL;
3741 int res, err = errno;
3743 errno = 0;
3744 res = w32_compare_strings (SDATA (s1), SDATA (s2), loc, !NILP (ignore_case));
3745 if (errno)
3746 error ("Invalid string for collation: %s", strerror (errno));
3748 errno = err;
3749 return res;
3751 #endif /* WINDOWSNT */