Refactor mml-smime.el, mml1991.el, mml2015.el
[emacs.git] / src / sysdep.c
bloba78c4c64c815bacc6ac966f0b49cdbb7d7bafe17
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 #ifdef WINDOWSNT
103 #include <direct.h>
104 /* In process.h which conflicts with the local copy. */
105 #define _P_WAIT 0
106 int _cdecl _spawnlp (int, const char *, const char *, ...);
107 int _cdecl _getpid (void);
108 /* The following is needed for O_CLOEXEC, F_SETFD, FD_CLOEXEC, and
109 several prototypes of functions called below. */
110 #include <sys/socket.h>
111 #endif
113 #include "syssignal.h"
114 #include "systime.h"
116 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
117 #ifndef ULLONG_MAX
118 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
119 #endif
121 /* Declare here, including term.h is problematic on some systems. */
122 extern void tputs (const char *, int, int (*)(int));
124 static const int baud_convert[] =
126 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
127 1800, 2400, 4800, 9600, 19200, 38400
130 #if !defined HAVE_GET_CURRENT_DIR_NAME || defined BROKEN_GET_CURRENT_DIR_NAME \
131 || (defined HYBRID_GET_CURRENT_DIR_NAME)
132 /* Return the current working directory. Returns NULL on errors.
133 Any other returned value must be freed with free. This is used
134 only when get_current_dir_name is not defined on the system. */
135 char *
136 get_current_dir_name (void)
138 char *buf;
139 char *pwd = getenv ("PWD");
140 struct stat dotstat, pwdstat;
141 /* If PWD is accurate, use it instead of calling getcwd. PWD is
142 sometimes a nicer name, and using it may avoid a fatal error if a
143 parent directory is searchable but not readable. */
144 if (pwd
145 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
146 && stat (pwd, &pwdstat) == 0
147 && stat (".", &dotstat) == 0
148 && dotstat.st_ino == pwdstat.st_ino
149 && dotstat.st_dev == pwdstat.st_dev
150 #ifdef MAXPATHLEN
151 && strlen (pwd) < MAXPATHLEN
152 #endif
155 buf = malloc (strlen (pwd) + 1);
156 if (!buf)
157 return NULL;
158 strcpy (buf, pwd);
160 else
162 size_t buf_size = 1024;
163 buf = malloc (buf_size);
164 if (!buf)
165 return NULL;
166 for (;;)
168 if (getcwd (buf, buf_size) == buf)
169 break;
170 if (errno != ERANGE)
172 int tmp_errno = errno;
173 free (buf);
174 errno = tmp_errno;
175 return NULL;
177 buf_size *= 2;
178 buf = realloc (buf, buf_size);
179 if (!buf)
180 return NULL;
183 return buf;
185 #endif
188 /* Discard pending input on all input descriptors. */
190 void
191 discard_tty_input (void)
193 #ifndef WINDOWSNT
194 struct emacs_tty buf;
196 if (noninteractive)
197 return;
199 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
200 while (dos_keyread () != -1)
202 #else /* not MSDOS */
204 struct tty_display_info *tty;
205 for (tty = tty_list; tty; tty = tty->next)
207 if (tty->input) /* Is the device suspended? */
209 emacs_get_tty (fileno (tty->input), &buf);
210 emacs_set_tty (fileno (tty->input), &buf, 0);
214 #endif /* not MSDOS */
215 #endif /* not WINDOWSNT */
219 #ifdef SIGTSTP
221 /* Arrange for character C to be read as the next input from
222 the terminal.
223 XXX What if we have multiple ttys?
226 void
227 stuff_char (char c)
229 if (! (FRAMEP (selected_frame)
230 && FRAME_LIVE_P (XFRAME (selected_frame))
231 && FRAME_TERMCAP_P (XFRAME (selected_frame))))
232 return;
234 /* Should perhaps error if in batch mode */
235 #ifdef TIOCSTI
236 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
237 #else /* no TIOCSTI */
238 error ("Cannot stuff terminal input characters in this version of Unix");
239 #endif /* no TIOCSTI */
242 #endif /* SIGTSTP */
244 void
245 init_baud_rate (int fd)
247 int emacs_ospeed;
249 if (noninteractive)
250 emacs_ospeed = 0;
251 else
253 #ifdef DOS_NT
254 emacs_ospeed = 15;
255 #else /* not DOS_NT */
256 struct termios sg;
258 sg.c_cflag = B9600;
259 tcgetattr (fd, &sg);
260 emacs_ospeed = cfgetospeed (&sg);
261 #endif /* not DOS_NT */
264 baud_rate = (emacs_ospeed < ARRAYELTS (baud_convert)
265 ? baud_convert[emacs_ospeed] : 9600);
266 if (baud_rate == 0)
267 baud_rate = 1200;
272 #ifndef MSDOS
274 /* Wait for the subprocess with process id CHILD to terminate or change status.
275 CHILD must be a child process that has not been reaped.
276 If STATUS is non-null, store the waitpid-style exit status into *STATUS
277 and tell wait_reading_process_output that it needs to look around.
278 Use waitpid-style OPTIONS when waiting.
279 If INTERRUPTIBLE, this function is interruptible by a signal.
281 Return CHILD if successful, 0 if no status is available;
282 the latter is possible only when options & NOHANG. */
283 static pid_t
284 get_child_status (pid_t child, int *status, int options, bool interruptible)
286 pid_t pid;
288 /* Invoke waitpid only with a known process ID; do not invoke
289 waitpid with a nonpositive argument. Otherwise, Emacs might
290 reap an unwanted process by mistake. For example, invoking
291 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
292 so that another thread running glib won't find them. */
293 eassert (child > 0);
295 while ((pid = waitpid (child, status, options)) < 0)
297 /* Check that CHILD is a child process that has not been reaped,
298 and that STATUS and OPTIONS are valid. Otherwise abort,
299 as continuing after this internal error could cause Emacs to
300 become confused and kill innocent-victim processes. */
301 if (errno != EINTR)
302 emacs_abort ();
304 /* Note: the MS-Windows emulation of waitpid calls QUIT
305 internally. */
306 if (interruptible)
307 QUIT;
310 /* If successful and status is requested, tell wait_reading_process_output
311 that it needs to wake up and look around. */
312 if (pid && status && input_available_clear_time)
313 *input_available_clear_time = make_timespec (0, 0);
315 return pid;
318 /* Wait for the subprocess with process id CHILD to terminate.
319 CHILD must be a child process that has not been reaped.
320 If STATUS is non-null, store the waitpid-style exit status into *STATUS
321 and tell wait_reading_process_output that it needs to look around.
322 If INTERRUPTIBLE, this function is interruptible by a signal. */
323 void
324 wait_for_termination (pid_t child, int *status, bool interruptible)
326 get_child_status (child, status, 0, interruptible);
329 /* Report whether the subprocess with process id CHILD has changed status.
330 Termination counts as a change of status.
331 CHILD must be a child process that has not been reaped.
332 If STATUS is non-null, store the waitpid-style exit status into *STATUS
333 and tell wait_reading_process_output that it needs to look around.
334 Use waitpid-style OPTIONS to check status, but do not wait.
336 Return CHILD if successful, 0 if no status is available because
337 the process's state has not changed. */
338 pid_t
339 child_status_changed (pid_t child, int *status, int options)
341 return get_child_status (child, status, WNOHANG | options, 0);
345 /* Set up the terminal at the other end of a pseudo-terminal that
346 we will be controlling an inferior through.
347 It should not echo or do line-editing, since that is done
348 in Emacs. No padding needed for insertion into an Emacs buffer. */
350 void
351 child_setup_tty (int out)
353 #ifndef WINDOWSNT
354 struct emacs_tty s;
356 emacs_get_tty (out, &s);
357 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
358 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
359 #ifdef NLDLY
360 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
361 Some versions of GNU Hurd do not have FFDLY? */
362 #ifdef FFDLY
363 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
364 /* No output delays */
365 #else
366 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
367 /* No output delays */
368 #endif
369 #endif
370 s.main.c_lflag &= ~ECHO; /* Disable echo */
371 s.main.c_lflag |= ISIG; /* Enable signals */
372 #ifdef IUCLC
373 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
374 #endif
375 #ifdef ISTRIP
376 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
377 #endif
378 #ifdef OLCUC
379 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
380 #endif
381 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
382 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
383 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
384 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
386 #ifdef HPUX
387 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
388 #endif /* HPUX */
390 #ifdef SIGNALS_VIA_CHARACTERS
391 /* the QUIT and INTR character are used in process_send_signal
392 so set them here to something useful. */
393 if (s.main.c_cc[VQUIT] == CDISABLE)
394 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
395 if (s.main.c_cc[VINTR] == CDISABLE)
396 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
397 #endif /* not SIGNALS_VIA_CHARACTERS */
399 #ifdef AIX
400 /* Also, PTY overloads NUL and BREAK.
401 don't ignore break, but don't signal either, so it looks like NUL. */
402 s.main.c_iflag &= ~IGNBRK;
403 s.main.c_iflag &= ~BRKINT;
404 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
405 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
406 would force it to 0377. That looks like duplicated code. */
407 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
408 #endif /* AIX */
410 /* We originally enabled ICANON (and set VEOF to 04), and then had
411 process.c send additional EOF chars to flush the output when faced
412 with long lines, but this leads to weird effects when the
413 subprocess has disabled ICANON and ends up seeing those spurious
414 extra EOFs. So we don't send EOFs any more in
415 process.c:send_process. First we tried to disable ICANON by
416 default, so if a subsprocess sets up ICANON, it's his problem (or
417 the Elisp package that talks to it) to deal with lines that are
418 too long. But this disables some features, such as the ability
419 to send EOF signals. So we re-enabled ICANON but there is no
420 more "send eof to flush" going on (which is wrong and unportable
421 in itself). The correct way to handle too much output is to
422 buffer what could not be written and then write it again when
423 select returns ok for writing. This has it own set of
424 problems. Write is now asynchronous, is that a problem? How much
425 do we buffer, and what do we do when that limit is reached? */
427 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
428 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
429 #if 0 /* These settings only apply to non-ICANON mode. */
430 s.main.c_cc[VMIN] = 1;
431 s.main.c_cc[VTIME] = 0;
432 #endif
434 emacs_set_tty (out, &s, 0);
435 #endif /* not WINDOWSNT */
437 #endif /* not MSDOS */
440 /* Record a signal code and the action for it. */
441 struct save_signal
443 int code;
444 struct sigaction action;
447 static void save_signal_handlers (struct save_signal *);
448 static void restore_signal_handlers (struct save_signal *);
450 /* Suspend the Emacs process; give terminal to its superior. */
452 void
453 sys_suspend (void)
455 #ifndef DOS_NT
456 kill (0, SIGTSTP);
457 #else
458 /* On a system where suspending is not implemented,
459 instead fork a subshell and let it talk directly to the terminal
460 while we wait. */
461 sys_subshell ();
463 #endif
466 /* Fork a subshell. */
468 void
469 sys_subshell (void)
471 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
472 int st;
473 #ifdef MSDOS
474 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
475 #else
476 char oldwd[MAX_UTF8_PATH];
477 #endif
478 #endif
479 pid_t pid;
480 int status;
481 struct save_signal saved_handlers[5];
482 char *str = SSDATA (encode_current_directory ());
484 #ifdef DOS_NT
485 pid = 0;
486 #else
488 char *volatile str_volatile = str;
489 pid = vfork ();
490 str = str_volatile;
492 #endif
494 if (pid < 0)
495 error ("Can't spawn subshell");
497 saved_handlers[0].code = SIGINT;
498 saved_handlers[1].code = SIGQUIT;
499 saved_handlers[2].code = SIGTERM;
500 #ifdef USABLE_SIGIO
501 saved_handlers[3].code = SIGIO;
502 saved_handlers[4].code = 0;
503 #else
504 saved_handlers[3].code = 0;
505 #endif
507 #ifdef DOS_NT
508 save_signal_handlers (saved_handlers);
509 #endif
511 if (pid == 0)
513 const char *sh = 0;
515 #ifdef DOS_NT /* MW, Aug 1993 */
516 getcwd (oldwd, sizeof oldwd);
517 if (sh == 0)
518 sh = egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
519 #endif
520 if (sh == 0)
521 sh = egetenv ("SHELL");
522 if (sh == 0)
523 sh = "sh";
525 /* Use our buffer's default directory for the subshell. */
526 if (chdir (str) != 0)
528 #ifndef DOS_NT
529 emacs_perror (str);
530 _exit (EXIT_CANCELED);
531 #endif
534 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
536 char *epwd = getenv ("PWD");
537 char old_pwd[MAXPATHLEN+1+4];
539 /* If PWD is set, pass it with corrected value. */
540 if (epwd)
542 strcpy (old_pwd, epwd);
543 setenv ("PWD", str, 1);
545 st = system (sh);
546 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
547 if (epwd)
548 putenv (old_pwd); /* restore previous value */
550 #else /* not MSDOS */
551 #ifdef WINDOWSNT
552 /* Waits for process completion */
553 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
554 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
555 if (pid == -1)
556 write (1, "Can't execute subshell", 22);
557 #else /* not WINDOWSNT */
558 execlp (sh, sh, (char *) 0);
559 emacs_perror (sh);
560 _exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
561 #endif /* not WINDOWSNT */
562 #endif /* not MSDOS */
565 /* Do this now if we did not do it before. */
566 #ifndef MSDOS
567 save_signal_handlers (saved_handlers);
568 #endif
570 #ifndef DOS_NT
571 wait_for_termination (pid, &status, 0);
572 #endif
573 restore_signal_handlers (saved_handlers);
576 static void
577 save_signal_handlers (struct save_signal *saved_handlers)
579 while (saved_handlers->code)
581 struct sigaction action;
582 emacs_sigaction_init (&action, SIG_IGN);
583 sigaction (saved_handlers->code, &action, &saved_handlers->action);
584 saved_handlers++;
588 static void
589 restore_signal_handlers (struct save_signal *saved_handlers)
591 while (saved_handlers->code)
593 sigaction (saved_handlers->code, &saved_handlers->action, 0);
594 saved_handlers++;
598 #ifdef USABLE_SIGIO
599 static int old_fcntl_flags[FD_SETSIZE];
600 #endif
602 void
603 init_sigio (int fd)
605 #ifdef USABLE_SIGIO
606 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
607 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
608 interrupts_deferred = 0;
609 #endif
612 #ifndef DOS_NT
613 static void
614 reset_sigio (int fd)
616 #ifdef USABLE_SIGIO
617 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
618 #endif
620 #endif
622 void
623 request_sigio (void)
625 #ifdef USABLE_SIGIO
626 sigset_t unblocked;
628 if (noninteractive)
629 return;
631 sigemptyset (&unblocked);
632 # ifdef SIGWINCH
633 sigaddset (&unblocked, SIGWINCH);
634 # endif
635 sigaddset (&unblocked, SIGIO);
636 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
638 interrupts_deferred = 0;
639 #endif
642 void
643 unrequest_sigio (void)
645 #ifdef USABLE_SIGIO
646 sigset_t blocked;
648 if (noninteractive)
649 return;
651 sigemptyset (&blocked);
652 # ifdef SIGWINCH
653 sigaddset (&blocked, SIGWINCH);
654 # endif
655 sigaddset (&blocked, SIGIO);
656 pthread_sigmask (SIG_BLOCK, &blocked, 0);
657 interrupts_deferred = 1;
658 #endif
661 #ifndef MSDOS
662 /* Block SIGCHLD. */
664 void
665 block_child_signal (sigset_t *oldset)
667 sigset_t blocked;
668 sigemptyset (&blocked);
669 sigaddset (&blocked, SIGCHLD);
670 sigaddset (&blocked, SIGINT);
671 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
674 /* Unblock SIGCHLD. */
676 void
677 unblock_child_signal (sigset_t const *oldset)
679 pthread_sigmask (SIG_SETMASK, oldset, 0);
682 #endif /* !MSDOS */
684 /* Saving and restoring the process group of Emacs's terminal. */
686 /* The process group of which Emacs was a member when it initially
687 started.
689 If Emacs was in its own process group (i.e. inherited_pgroup ==
690 getpid ()), then we know we're running under a shell with job
691 control (Emacs would never be run as part of a pipeline).
692 Everything is fine.
694 If Emacs was not in its own process group, then we know we're
695 running under a shell (or a caller) that doesn't know how to
696 separate itself from Emacs (like sh). Emacs must be in its own
697 process group in order to receive SIGIO correctly. In this
698 situation, we put ourselves in our own pgroup, forcibly set the
699 tty's pgroup to our pgroup, and make sure to restore and reinstate
700 the tty's pgroup just like any other terminal setting. If
701 inherited_group was not the tty's pgroup, then we'll get a
702 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
703 it goes foreground in the future, which is what should happen. */
705 static pid_t inherited_pgroup;
707 void
708 init_foreground_group (void)
710 pid_t pgrp = getpgrp ();
711 inherited_pgroup = getpid () == pgrp ? 0 : pgrp;
714 /* Block and unblock SIGTTOU. */
716 void
717 block_tty_out_signal (sigset_t *oldset)
719 #ifdef SIGTTOU
720 sigset_t blocked;
721 sigemptyset (&blocked);
722 sigaddset (&blocked, SIGTTOU);
723 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
724 #endif
727 void
728 unblock_tty_out_signal (sigset_t const *oldset)
730 #ifdef SIGTTOU
731 pthread_sigmask (SIG_SETMASK, oldset, 0);
732 #endif
735 /* Safely set a controlling terminal FD's process group to PGID.
736 If we are not in the foreground already, POSIX requires tcsetpgrp
737 to deliver a SIGTTOU signal, which would stop us. This is an
738 annoyance, so temporarily ignore the signal.
740 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
741 skip all this unless SIGTTOU is defined. */
742 static void
743 tcsetpgrp_without_stopping (int fd, pid_t pgid)
745 #ifdef SIGTTOU
746 sigset_t oldset;
747 block_input ();
748 block_tty_out_signal (&oldset);
749 tcsetpgrp (fd, pgid);
750 unblock_tty_out_signal (&oldset);
751 unblock_input ();
752 #endif
755 /* Split off the foreground process group to Emacs alone. When we are
756 in the foreground, but not started in our own process group,
757 redirect the tty device handle FD to point to our own process
758 group. FD must be the file descriptor of the controlling tty. */
759 static void
760 narrow_foreground_group (int fd)
762 if (inherited_pgroup && setpgid (0, 0) == 0)
763 tcsetpgrp_without_stopping (fd, getpid ());
766 /* Set the tty to our original foreground group. */
767 static void
768 widen_foreground_group (int fd)
770 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
771 tcsetpgrp_without_stopping (fd, inherited_pgroup);
774 /* Getting and setting emacs_tty structures. */
776 /* Set *TC to the parameters associated with the terminal FD,
777 or clear it if the parameters are not available.
778 Return 0 on success, -1 on failure. */
780 emacs_get_tty (int fd, struct emacs_tty *settings)
782 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
783 memset (&settings->main, 0, sizeof (settings->main));
784 #ifdef DOS_NT
785 #ifdef WINDOWSNT
786 HANDLE h = (HANDLE)_get_osfhandle (fd);
787 DWORD console_mode;
789 if (h && h != INVALID_HANDLE_VALUE && GetConsoleMode (h, &console_mode))
791 settings->main = console_mode;
792 return 0;
794 #endif /* WINDOWSNT */
795 return -1;
796 #else /* !DOS_NT */
797 /* We have those nifty POSIX tcmumbleattr functions. */
798 return tcgetattr (fd, &settings->main);
799 #endif
803 /* Set the parameters of the tty on FD according to the contents of
804 *SETTINGS. If FLUSHP, discard input.
805 Return 0 if all went well, and -1 (setting errno) if anything failed. */
808 emacs_set_tty (int fd, struct emacs_tty *settings, bool flushp)
810 /* Set the primary parameters - baud rate, character size, etcetera. */
811 #ifdef DOS_NT
812 #ifdef WINDOWSNT
813 HANDLE h = (HANDLE)_get_osfhandle (fd);
815 if (h && h != INVALID_HANDLE_VALUE)
817 DWORD new_mode;
819 /* Assume the handle is open for input. */
820 if (flushp)
821 FlushConsoleInputBuffer (h);
822 new_mode = settings->main;
823 SetConsoleMode (h, new_mode);
825 #endif /* WINDOWSNT */
826 #else /* !DOS_NT */
827 int i;
828 /* We have those nifty POSIX tcmumbleattr functions.
829 William J. Smith <wjs@wiis.wang.com> writes:
830 "POSIX 1003.1 defines tcsetattr to return success if it was
831 able to perform any of the requested actions, even if some
832 of the requested actions could not be performed.
833 We must read settings back to ensure tty setup properly.
834 AIX requires this to keep tty from hanging occasionally." */
835 /* This make sure that we don't loop indefinitely in here. */
836 for (i = 0 ; i < 10 ; i++)
837 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
839 if (errno == EINTR)
840 continue;
841 else
842 return -1;
844 else
846 struct termios new;
848 memset (&new, 0, sizeof (new));
849 /* Get the current settings, and see if they're what we asked for. */
850 tcgetattr (fd, &new);
851 /* We cannot use memcmp on the whole structure here because under
852 * aix386 the termios structure has some reserved field that may
853 * not be filled in.
855 if ( new.c_iflag == settings->main.c_iflag
856 && new.c_oflag == settings->main.c_oflag
857 && new.c_cflag == settings->main.c_cflag
858 && new.c_lflag == settings->main.c_lflag
859 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
860 break;
861 else
862 continue;
864 #endif
866 /* We have survived the tempest. */
867 return 0;
872 #ifdef F_SETOWN
873 static int old_fcntl_owner[FD_SETSIZE];
874 #endif /* F_SETOWN */
876 /* This may also be defined in stdio,
877 but if so, this does no harm,
878 and using the same name avoids wasting the other one's space. */
880 #if defined (USG)
881 unsigned char _sobuf[BUFSIZ+8];
882 #else
883 char _sobuf[BUFSIZ];
884 #endif
886 /* Initialize the terminal mode on all tty devices that are currently
887 open. */
889 void
890 init_all_sys_modes (void)
892 struct tty_display_info *tty;
893 for (tty = tty_list; tty; tty = tty->next)
894 init_sys_modes (tty);
897 /* Initialize the terminal mode on the given tty device. */
899 void
900 init_sys_modes (struct tty_display_info *tty_out)
902 struct emacs_tty tty;
903 Lisp_Object terminal;
905 Vtty_erase_char = Qnil;
907 if (noninteractive)
908 return;
910 if (!tty_out->output)
911 return; /* The tty is suspended. */
913 narrow_foreground_group (fileno (tty_out->input));
915 if (! tty_out->old_tty)
916 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
918 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
920 tty = *tty_out->old_tty;
922 #if !defined (DOS_NT)
923 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
925 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
926 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
927 #ifdef INLCR /* I'm just being cautious,
928 since I can't check how widespread INLCR is--rms. */
929 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
930 #endif
931 #ifdef ISTRIP
932 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
933 #endif
934 tty.main.c_lflag &= ~ECHO; /* Disable echo */
935 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
936 #ifdef IEXTEN
937 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
938 #endif
939 tty.main.c_lflag |= ISIG; /* Enable signals */
940 if (tty_out->flow_control)
942 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
943 #ifdef IXANY
944 tty.main.c_iflag &= ~IXANY;
945 #endif /* IXANY */
947 else
948 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
949 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
950 on output */
951 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
952 #ifdef CS8
953 if (tty_out->meta_key)
955 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
956 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
958 #endif
960 XSETTERMINAL(terminal, tty_out->terminal);
961 if (!NILP (Fcontrolling_tty_p (terminal)))
963 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
964 /* Set up C-g for both SIGQUIT and SIGINT.
965 We don't know which we will get, but we handle both alike
966 so which one it really gives us does not matter. */
967 tty.main.c_cc[VQUIT] = quit_char;
969 else
971 /* We normally don't get interrupt or quit signals from tty
972 devices other than our controlling terminal; therefore,
973 we must handle C-g as normal input. Unfortunately, this
974 means that the interrupt and quit feature must be
975 disabled on secondary ttys, or we would not even see the
976 keypress.
978 Note that even though emacsclient could have special code
979 to pass SIGINT to Emacs, we should _not_ enable
980 interrupt/quit keys for emacsclient frames. This means
981 that we can't break out of loops in C code from a
982 secondary tty frame, but we can always decide what
983 display the C-g came from, which is more important from a
984 usability point of view. (Consider the case when two
985 people work together using the same Emacs instance.) */
986 tty.main.c_cc[VINTR] = CDISABLE;
987 tty.main.c_cc[VQUIT] = CDISABLE;
989 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
990 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
991 #ifdef VSWTCH
992 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
993 of C-z */
994 #endif /* VSWTCH */
996 #ifdef VSUSP
997 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
998 #endif /* VSUSP */
999 #ifdef V_DSUSP
1000 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
1001 #endif /* V_DSUSP */
1002 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1003 tty.main.c_cc[VDSUSP] = CDISABLE;
1004 #endif /* VDSUSP */
1005 #ifdef VLNEXT
1006 tty.main.c_cc[VLNEXT] = CDISABLE;
1007 #endif /* VLNEXT */
1008 #ifdef VREPRINT
1009 tty.main.c_cc[VREPRINT] = CDISABLE;
1010 #endif /* VREPRINT */
1011 #ifdef VWERASE
1012 tty.main.c_cc[VWERASE] = CDISABLE;
1013 #endif /* VWERASE */
1014 #ifdef VDISCARD
1015 tty.main.c_cc[VDISCARD] = CDISABLE;
1016 #endif /* VDISCARD */
1018 if (tty_out->flow_control)
1020 #ifdef VSTART
1021 tty.main.c_cc[VSTART] = '\021';
1022 #endif /* VSTART */
1023 #ifdef VSTOP
1024 tty.main.c_cc[VSTOP] = '\023';
1025 #endif /* VSTOP */
1027 else
1029 #ifdef VSTART
1030 tty.main.c_cc[VSTART] = CDISABLE;
1031 #endif /* VSTART */
1032 #ifdef VSTOP
1033 tty.main.c_cc[VSTOP] = CDISABLE;
1034 #endif /* VSTOP */
1037 #ifdef AIX
1038 tty.main.c_cc[VSTRT] = CDISABLE;
1039 tty.main.c_cc[VSTOP] = CDISABLE;
1040 tty.main.c_cc[VSUSP] = CDISABLE;
1041 tty.main.c_cc[VDSUSP] = CDISABLE;
1042 if (tty_out->flow_control)
1044 #ifdef VSTART
1045 tty.main.c_cc[VSTART] = '\021';
1046 #endif /* VSTART */
1047 #ifdef VSTOP
1048 tty.main.c_cc[VSTOP] = '\023';
1049 #endif /* VSTOP */
1051 /* Also, PTY overloads NUL and BREAK.
1052 don't ignore break, but don't signal either, so it looks like NUL.
1053 This really serves a purpose only if running in an XTERM window
1054 or via TELNET or the like, but does no harm elsewhere. */
1055 tty.main.c_iflag &= ~IGNBRK;
1056 tty.main.c_iflag &= ~BRKINT;
1057 #endif
1058 #endif /* not DOS_NT */
1060 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1061 if (!tty_out->term_initted)
1062 internal_terminal_init ();
1063 dos_ttraw (tty_out);
1064 #endif
1066 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1068 /* This code added to insure that, if flow-control is not to be used,
1069 we have an unlocked terminal at the start. */
1071 #ifdef TCXONC
1072 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1073 #endif
1074 #ifdef TIOCSTART
1075 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1076 #endif
1078 #if !defined (DOS_NT)
1079 #ifdef TCOON
1080 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1081 #endif
1082 #endif
1084 #ifdef F_GETOWN
1085 if (interrupt_input)
1087 old_fcntl_owner[fileno (tty_out->input)] =
1088 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1089 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1090 init_sigio (fileno (tty_out->input));
1091 #ifdef HAVE_GPM
1092 if (gpm_tty == tty_out)
1094 /* Arrange for mouse events to give us SIGIO signals. */
1095 fcntl (gpm_fd, F_SETOWN, getpid ());
1096 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1097 init_sigio (gpm_fd);
1099 #endif /* HAVE_GPM */
1101 #endif /* F_GETOWN */
1103 #ifdef _IOFBF
1104 /* This symbol is defined on recent USG systems.
1105 Someone says without this call USG won't really buffer the file
1106 even with a call to setbuf. */
1107 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1108 #else
1109 setbuf (tty_out->output, (char *) _sobuf);
1110 #endif
1112 if (tty_out->terminal->set_terminal_modes_hook)
1113 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1115 if (!tty_out->term_initted)
1117 Lisp_Object tail, frame;
1118 FOR_EACH_FRAME (tail, frame)
1120 /* XXX This needs to be revised. */
1121 if (FRAME_TERMCAP_P (XFRAME (frame))
1122 && FRAME_TTY (XFRAME (frame)) == tty_out)
1123 init_frame_faces (XFRAME (frame));
1127 if (tty_out->term_initted && no_redraw_on_reenter)
1129 /* We used to call "direct_output_forward_char(0)" here,
1130 but it's not clear why, since it may not do anything anyway. */
1132 else
1134 Lisp_Object tail, frame;
1135 frame_garbaged = 1;
1136 FOR_EACH_FRAME (tail, frame)
1138 if ((FRAME_TERMCAP_P (XFRAME (frame))
1139 || FRAME_MSDOS_P (XFRAME (frame)))
1140 && FRAME_TTY (XFRAME (frame)) == tty_out)
1141 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1145 tty_out->term_initted = 1;
1148 /* Return true if safe to use tabs in output.
1149 At the time this is called, init_sys_modes has not been done yet. */
1151 bool
1152 tabs_safe_p (int fd)
1154 struct emacs_tty etty;
1156 emacs_get_tty (fd, &etty);
1157 #ifndef DOS_NT
1158 #ifdef TABDLY
1159 return ((etty.main.c_oflag & TABDLY) != TAB3);
1160 #else /* not TABDLY */
1161 return 1;
1162 #endif /* not TABDLY */
1163 #else /* DOS_NT */
1164 return 0;
1165 #endif /* DOS_NT */
1168 /* Discard echoing. */
1170 void
1171 suppress_echo_on_tty (int fd)
1173 struct emacs_tty etty;
1175 emacs_get_tty (fd, &etty);
1176 #ifdef DOS_NT
1177 /* Set raw input mode. */
1178 etty.main = 0;
1179 #else
1180 etty.main.c_lflag &= ~ICANON; /* Disable buffering */
1181 etty.main.c_lflag &= ~ECHO; /* Disable echoing */
1182 #endif /* ! WINDOWSNT */
1183 emacs_set_tty (fd, &etty, 0);
1186 /* Get terminal size from system.
1187 Store number of lines into *HEIGHTP and width into *WIDTHP.
1188 We store 0 if there's no valid information. */
1190 void
1191 get_tty_size (int fd, int *widthp, int *heightp)
1193 #if defined TIOCGWINSZ
1195 /* BSD-style. */
1196 struct winsize size;
1198 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1199 *widthp = *heightp = 0;
1200 else
1202 *widthp = size.ws_col;
1203 *heightp = size.ws_row;
1206 #elif defined TIOCGSIZE
1208 /* SunOS - style. */
1209 struct ttysize size;
1211 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1212 *widthp = *heightp = 0;
1213 else
1215 *widthp = size.ts_cols;
1216 *heightp = size.ts_lines;
1219 #elif defined WINDOWSNT
1221 CONSOLE_SCREEN_BUFFER_INFO info;
1222 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1224 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1225 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1227 else
1228 *widthp = *heightp = 0;
1230 #elif defined MSDOS
1232 *widthp = ScreenCols ();
1233 *heightp = ScreenRows ();
1235 #else /* system doesn't know size */
1237 *widthp = 0;
1238 *heightp = 0;
1240 #endif
1243 /* Set the logical window size associated with descriptor FD
1244 to HEIGHT and WIDTH. This is used mainly with ptys.
1245 Return a negative value on failure. */
1248 set_window_size (int fd, int height, int width)
1250 #ifdef TIOCSWINSZ
1252 /* BSD-style. */
1253 struct winsize size;
1254 size.ws_row = height;
1255 size.ws_col = width;
1257 return ioctl (fd, TIOCSWINSZ, &size);
1259 #else
1260 #ifdef TIOCSSIZE
1262 /* SunOS - style. */
1263 struct ttysize size;
1264 size.ts_lines = height;
1265 size.ts_cols = width;
1267 return ioctl (fd, TIOCGSIZE, &size);
1268 #else
1269 return -1;
1270 #endif /* not SunOS-style */
1271 #endif /* not BSD-style */
1276 /* Prepare all terminal devices for exiting Emacs. */
1278 void
1279 reset_all_sys_modes (void)
1281 struct tty_display_info *tty;
1282 for (tty = tty_list; tty; tty = tty->next)
1283 reset_sys_modes (tty);
1286 /* Prepare the terminal for closing it; move the cursor to the
1287 bottom of the frame, turn off interrupt-driven I/O, etc. */
1289 void
1290 reset_sys_modes (struct tty_display_info *tty_out)
1292 if (noninteractive)
1294 fflush (stdout);
1295 return;
1297 if (!tty_out->term_initted)
1298 return;
1300 if (!tty_out->output)
1301 return; /* The tty is suspended. */
1303 /* Go to and clear the last line of the terminal. */
1305 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1307 /* Code adapted from tty_clear_end_of_line. */
1308 if (tty_out->TS_clr_line)
1310 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1312 else
1313 { /* have to do it the hard way */
1314 int i;
1315 tty_turn_off_insert (tty_out);
1317 for (i = cursorX (tty_out); i < FrameCols (tty_out) - 1; i++)
1319 fputc (' ', tty_out->output);
1323 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1324 fflush (tty_out->output);
1326 if (tty_out->terminal->reset_terminal_modes_hook)
1327 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1329 /* Avoid possible loss of output when changing terminal modes. */
1330 while (fdatasync (fileno (tty_out->output)) != 0 && errno == EINTR)
1331 continue;
1333 #ifndef DOS_NT
1334 #ifdef F_SETOWN
1335 if (interrupt_input)
1337 reset_sigio (fileno (tty_out->input));
1338 fcntl (fileno (tty_out->input), F_SETOWN,
1339 old_fcntl_owner[fileno (tty_out->input)]);
1341 #endif /* F_SETOWN */
1342 fcntl (fileno (tty_out->input), F_SETFL,
1343 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1344 #endif
1346 if (tty_out->old_tty)
1347 while (emacs_set_tty (fileno (tty_out->input),
1348 tty_out->old_tty, 0) < 0 && errno == EINTR)
1351 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1352 dos_ttcooked ();
1353 #endif
1355 widen_foreground_group (fileno (tty_out->input));
1358 #ifdef HAVE_PTYS
1360 /* Set up the proper status flags for use of a pty. */
1362 void
1363 setup_pty (int fd)
1365 /* I'm told that TOICREMOTE does not mean control chars
1366 "can't be sent" but rather that they don't have
1367 input-editing or signaling effects.
1368 That should be good, because we have other ways
1369 to do those things in Emacs.
1370 However, telnet mode seems not to work on 4.2.
1371 So TIOCREMOTE is turned off now. */
1373 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1374 will hang. In particular, the "timeout" feature (which
1375 causes a read to return if there is no data available)
1376 does this. Also it is known that telnet mode will hang
1377 in such a way that Emacs must be stopped (perhaps this
1378 is the same problem).
1380 If TIOCREMOTE is turned off, then there is a bug in
1381 hp-ux which sometimes loses data. Apparently the
1382 code which blocks the master process when the internal
1383 buffer fills up does not work. Other than this,
1384 though, everything else seems to work fine.
1386 Since the latter lossage is more benign, we may as well
1387 lose that way. -- cph */
1388 #ifdef FIONBIO
1389 #if defined (UNIX98_PTYS)
1391 int on = 1;
1392 ioctl (fd, FIONBIO, &on);
1394 #endif
1395 #endif
1397 #endif /* HAVE_PTYS */
1399 void
1400 init_system_name (void)
1402 char *hostname_alloc = NULL;
1403 char *hostname;
1404 #ifndef HAVE_GETHOSTNAME
1405 struct utsname uts;
1406 uname (&uts);
1407 hostname = uts.nodename;
1408 #else /* HAVE_GETHOSTNAME */
1409 char hostname_buf[256];
1410 ptrdiff_t hostname_size = sizeof hostname_buf;
1411 hostname = hostname_buf;
1413 /* Try to get the host name; if the buffer is too short, try
1414 again. Apparently, the only indication gethostname gives of
1415 whether the buffer was large enough is the presence or absence
1416 of a '\0' in the string. Eech. */
1417 for (;;)
1419 gethostname (hostname, hostname_size - 1);
1420 hostname[hostname_size - 1] = '\0';
1422 /* Was the buffer large enough for the '\0'? */
1423 if (strlen (hostname) < hostname_size - 1)
1424 break;
1426 hostname = hostname_alloc = xpalloc (hostname_alloc, &hostname_size, 1,
1427 min (PTRDIFF_MAX, SIZE_MAX), 1);
1429 #endif /* HAVE_GETHOSTNAME */
1430 char *p;
1431 for (p = hostname; *p; p++)
1432 if (*p == ' ' || *p == '\t')
1433 *p = '-';
1434 if (! (STRINGP (Vsystem_name) && SBYTES (Vsystem_name) == p - hostname
1435 && strcmp (SSDATA (Vsystem_name), hostname) == 0))
1436 Vsystem_name = build_string (hostname);
1437 xfree (hostname_alloc);
1440 sigset_t empty_mask;
1442 static struct sigaction process_fatal_action;
1444 static int
1445 emacs_sigaction_flags (void)
1447 #ifdef SA_RESTART
1448 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1449 'select') to reset their timeout on some platforms (e.g.,
1450 HP-UX 11), which is not what we want. Also, when Emacs is
1451 interactive, we don't want SA_RESTART because we need to poll
1452 for pending input so we need long-running syscalls to be interrupted
1453 after a signal that sets pending_signals.
1455 Non-interactive keyboard input goes through stdio, where we
1456 always want restartable system calls. */
1457 if (noninteractive)
1458 return SA_RESTART;
1459 #endif
1460 return 0;
1463 /* Store into *ACTION a signal action suitable for Emacs, with handler
1464 HANDLER. */
1465 void
1466 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1468 sigemptyset (&action->sa_mask);
1470 /* When handling a signal, block nonfatal system signals that are caught
1471 by Emacs. This makes race conditions less likely. */
1472 sigaddset (&action->sa_mask, SIGALRM);
1473 #ifdef SIGCHLD
1474 sigaddset (&action->sa_mask, SIGCHLD);
1475 #endif
1476 #ifdef SIGDANGER
1477 sigaddset (&action->sa_mask, SIGDANGER);
1478 #endif
1479 #ifdef PROFILER_CPU_SUPPORT
1480 sigaddset (&action->sa_mask, SIGPROF);
1481 #endif
1482 #ifdef SIGWINCH
1483 sigaddset (&action->sa_mask, SIGWINCH);
1484 #endif
1485 if (! noninteractive)
1487 sigaddset (&action->sa_mask, SIGINT);
1488 sigaddset (&action->sa_mask, SIGQUIT);
1489 #ifdef USABLE_SIGIO
1490 sigaddset (&action->sa_mask, SIGIO);
1491 #endif
1494 action->sa_handler = handler;
1495 action->sa_flags = emacs_sigaction_flags ();
1498 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1499 static pthread_t main_thread;
1500 #endif
1502 /* SIG has arrived at the current process. Deliver it to the main
1503 thread, which should handle it with HANDLER.
1505 If we are on the main thread, handle the signal SIG with HANDLER.
1506 Otherwise, redirect the signal to the main thread, blocking it from
1507 this thread. POSIX says any thread can receive a signal that is
1508 associated with a process, process group, or asynchronous event.
1509 On GNU/Linux that is not true, but for other systems (FreeBSD at
1510 least) it is. */
1511 void
1512 deliver_process_signal (int sig, signal_handler_t handler)
1514 /* Preserve errno, to avoid race conditions with signal handlers that
1515 might change errno. Races can occur even in single-threaded hosts. */
1516 int old_errno = errno;
1518 bool on_main_thread = true;
1519 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1520 if (! pthread_equal (pthread_self (), main_thread))
1522 sigset_t blocked;
1523 sigemptyset (&blocked);
1524 sigaddset (&blocked, sig);
1525 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1526 pthread_kill (main_thread, sig);
1527 on_main_thread = false;
1529 #endif
1530 if (on_main_thread)
1531 handler (sig);
1533 errno = old_errno;
1536 /* Static location to save a fatal backtrace in a thread.
1537 FIXME: If two subsidiary threads fail simultaneously, the resulting
1538 backtrace may be garbage. */
1539 enum { BACKTRACE_LIMIT_MAX = 500 };
1540 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1541 static int thread_backtrace_npointers;
1543 /* SIG has arrived at the current thread.
1544 If we are on the main thread, handle the signal SIG with HANDLER.
1545 Otherwise, this is a fatal error in the handling thread. */
1546 static void
1547 deliver_thread_signal (int sig, signal_handler_t handler)
1549 int old_errno = errno;
1551 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1552 if (! pthread_equal (pthread_self (), main_thread))
1554 thread_backtrace_npointers
1555 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1556 sigaction (sig, &process_fatal_action, 0);
1557 pthread_kill (main_thread, sig);
1559 /* Avoid further damage while the main thread is exiting. */
1560 while (1)
1561 sigsuspend (&empty_mask);
1563 #endif
1565 handler (sig);
1566 errno = old_errno;
1569 #if !HAVE_DECL_SYS_SIGLIST
1570 # undef sys_siglist
1571 # ifdef _sys_siglist
1572 # define sys_siglist _sys_siglist
1573 # elif HAVE_DECL___SYS_SIGLIST
1574 # define sys_siglist __sys_siglist
1575 # else
1576 # define sys_siglist my_sys_siglist
1577 static char const *sys_siglist[NSIG];
1578 # endif
1579 #endif
1581 #ifdef _sys_nsig
1582 # define sys_siglist_entries _sys_nsig
1583 #else
1584 # define sys_siglist_entries NSIG
1585 #endif
1587 /* Handle bus errors, invalid instruction, etc. */
1588 static void
1589 handle_fatal_signal (int sig)
1591 terminate_due_to_signal (sig, 40);
1594 static void
1595 deliver_fatal_signal (int sig)
1597 deliver_process_signal (sig, handle_fatal_signal);
1600 static void
1601 deliver_fatal_thread_signal (int sig)
1603 deliver_thread_signal (sig, handle_fatal_signal);
1606 static _Noreturn void
1607 handle_arith_signal (int sig)
1609 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1610 xsignal0 (Qarith_error);
1613 #if defined HAVE_STACK_OVERFLOW_HANDLING && !defined WINDOWSNT
1615 /* Alternate stack used by SIGSEGV handler below. */
1617 static unsigned char sigsegv_stack[SIGSTKSZ];
1620 /* Return true if SIGINFO indicates a stack overflow. */
1622 static bool
1623 stack_overflow (siginfo_t *siginfo)
1625 /* In theory, a more-accurate heuristic can be obtained by using
1626 GNU/Linux pthread_getattr_np along with POSIX pthread_attr_getstack
1627 and pthread_attr_getguardsize to find the location and size of the
1628 guard area. In practice, though, these functions are so hard to
1629 use reliably that they're not worth bothering with. E.g., see:
1630 https://sourceware.org/bugzilla/show_bug.cgi?id=16291
1631 Other operating systems also have problems, e.g., Solaris's
1632 stack_violation function is tailor-made for this problem, but it
1633 doesn't work on Solaris 11.2 x86-64 with a 32-bit executable.
1635 GNU libsigsegv is overkill for Emacs; otherwise it might be a
1636 candidate here. */
1638 if (!siginfo)
1639 return false;
1641 /* The faulting address. */
1642 char *addr = siginfo->si_addr;
1643 if (!addr)
1644 return false;
1646 /* The known top and bottom of the stack. The actual stack may
1647 extend a bit beyond these boundaries. */
1648 char *bot = stack_bottom;
1649 char *top = near_C_stack_top ();
1651 /* Log base 2 of the stack heuristic ratio. This ratio is the size
1652 of the known stack divided by the size of the guard area past the
1653 end of the stack top. The heuristic is that a bad address is
1654 considered to be a stack overflow if it occurs within
1655 stacksize>>LG_STACK_HEURISTIC bytes above the top of the known
1656 stack. This heuristic is not exactly correct but it's good
1657 enough in practice. */
1658 enum { LG_STACK_HEURISTIC = 8 };
1660 if (bot < top)
1661 return 0 <= addr - top && addr - top < (top - bot) >> LG_STACK_HEURISTIC;
1662 else
1663 return 0 <= top - addr && top - addr < (bot - top) >> LG_STACK_HEURISTIC;
1667 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1669 static void
1670 handle_sigsegv (int sig, siginfo_t *siginfo, void *arg)
1672 /* Hard GC error may lead to stack overflow caused by
1673 too nested calls to mark_object. No way to survive. */
1674 bool fatal = gc_in_progress;
1676 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1677 if (!fatal && !pthread_equal (pthread_self (), main_thread))
1678 fatal = true;
1679 #endif
1681 if (!fatal && stack_overflow (siginfo))
1682 siglongjmp (return_to_command_loop, 1);
1684 /* Otherwise we can't do anything with this. */
1685 deliver_fatal_thread_signal (sig);
1688 /* Return true if we have successfully set up SIGSEGV handler on alternate
1689 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1691 static bool
1692 init_sigsegv (void)
1694 struct sigaction sa;
1695 stack_t ss;
1697 ss.ss_sp = sigsegv_stack;
1698 ss.ss_size = sizeof (sigsegv_stack);
1699 ss.ss_flags = 0;
1700 if (sigaltstack (&ss, NULL) < 0)
1701 return 0;
1703 sigfillset (&sa.sa_mask);
1704 sa.sa_sigaction = handle_sigsegv;
1705 sa.sa_flags = SA_SIGINFO | SA_ONSTACK | emacs_sigaction_flags ();
1706 return sigaction (SIGSEGV, &sa, NULL) < 0 ? 0 : 1;
1709 #else /* not HAVE_STACK_OVERFLOW_HANDLING or WINDOWSNT */
1711 static bool
1712 init_sigsegv (void)
1714 return 0;
1717 #endif /* HAVE_STACK_OVERFLOW_HANDLING && !WINDOWSNT */
1719 static void
1720 deliver_arith_signal (int sig)
1722 deliver_thread_signal (sig, handle_arith_signal);
1725 #ifdef SIGDANGER
1727 /* Handler for SIGDANGER. */
1728 static void
1729 handle_danger_signal (int sig)
1731 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1733 /* It might be unsafe to call do_auto_save now. */
1734 force_auto_save_soon ();
1737 static void
1738 deliver_danger_signal (int sig)
1740 deliver_process_signal (sig, handle_danger_signal);
1742 #endif
1744 /* Treat SIG as a terminating signal, unless it is already ignored and
1745 we are in --batch mode. Among other things, this makes nohup work. */
1746 static void
1747 maybe_fatal_sig (int sig)
1749 bool catch_sig = !noninteractive;
1750 if (!catch_sig)
1752 struct sigaction old_action;
1753 sigaction (sig, 0, &old_action);
1754 catch_sig = old_action.sa_handler != SIG_IGN;
1756 if (catch_sig)
1757 sigaction (sig, &process_fatal_action, 0);
1760 void
1761 init_signals (bool dumping)
1763 struct sigaction thread_fatal_action;
1764 struct sigaction action;
1766 sigemptyset (&empty_mask);
1768 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1769 main_thread = pthread_self ();
1770 #endif
1772 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1773 if (! initialized)
1775 sys_siglist[SIGABRT] = "Aborted";
1776 # ifdef SIGAIO
1777 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1778 # endif
1779 sys_siglist[SIGALRM] = "Alarm clock";
1780 # ifdef SIGBUS
1781 sys_siglist[SIGBUS] = "Bus error";
1782 # endif
1783 # ifdef SIGCHLD
1784 sys_siglist[SIGCHLD] = "Child status changed";
1785 # endif
1786 # ifdef SIGCONT
1787 sys_siglist[SIGCONT] = "Continued";
1788 # endif
1789 # ifdef SIGDANGER
1790 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1791 # endif
1792 # ifdef SIGDGNOTIFY
1793 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1794 # endif
1795 # ifdef SIGEMT
1796 sys_siglist[SIGEMT] = "Emulation trap";
1797 # endif
1798 sys_siglist[SIGFPE] = "Arithmetic exception";
1799 # ifdef SIGFREEZE
1800 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1801 # endif
1802 # ifdef SIGGRANT
1803 sys_siglist[SIGGRANT] = "Monitor mode granted";
1804 # endif
1805 sys_siglist[SIGHUP] = "Hangup";
1806 sys_siglist[SIGILL] = "Illegal instruction";
1807 sys_siglist[SIGINT] = "Interrupt";
1808 # ifdef SIGIO
1809 sys_siglist[SIGIO] = "I/O possible";
1810 # endif
1811 # ifdef SIGIOINT
1812 sys_siglist[SIGIOINT] = "I/O intervention required";
1813 # endif
1814 # ifdef SIGIOT
1815 sys_siglist[SIGIOT] = "IOT trap";
1816 # endif
1817 sys_siglist[SIGKILL] = "Killed";
1818 # ifdef SIGLOST
1819 sys_siglist[SIGLOST] = "Resource lost";
1820 # endif
1821 # ifdef SIGLWP
1822 sys_siglist[SIGLWP] = "SIGLWP";
1823 # endif
1824 # ifdef SIGMSG
1825 sys_siglist[SIGMSG] = "Monitor mode data available";
1826 # endif
1827 # ifdef SIGPHONE
1828 sys_siglist[SIGWIND] = "SIGPHONE";
1829 # endif
1830 sys_siglist[SIGPIPE] = "Broken pipe";
1831 # ifdef SIGPOLL
1832 sys_siglist[SIGPOLL] = "Pollable event occurred";
1833 # endif
1834 # ifdef SIGPROF
1835 sys_siglist[SIGPROF] = "Profiling timer expired";
1836 # endif
1837 # ifdef SIGPTY
1838 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1839 # endif
1840 # ifdef SIGPWR
1841 sys_siglist[SIGPWR] = "Power-fail restart";
1842 # endif
1843 sys_siglist[SIGQUIT] = "Quit";
1844 # ifdef SIGRETRACT
1845 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1846 # endif
1847 # ifdef SIGSAK
1848 sys_siglist[SIGSAK] = "Secure attention";
1849 # endif
1850 sys_siglist[SIGSEGV] = "Segmentation violation";
1851 # ifdef SIGSOUND
1852 sys_siglist[SIGSOUND] = "Sound completed";
1853 # endif
1854 # ifdef SIGSTOP
1855 sys_siglist[SIGSTOP] = "Stopped (signal)";
1856 # endif
1857 # ifdef SIGSTP
1858 sys_siglist[SIGSTP] = "Stopped (user)";
1859 # endif
1860 # ifdef SIGSYS
1861 sys_siglist[SIGSYS] = "Bad argument to system call";
1862 # endif
1863 sys_siglist[SIGTERM] = "Terminated";
1864 # ifdef SIGTHAW
1865 sys_siglist[SIGTHAW] = "SIGTHAW";
1866 # endif
1867 # ifdef SIGTRAP
1868 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1869 # endif
1870 # ifdef SIGTSTP
1871 sys_siglist[SIGTSTP] = "Stopped (user)";
1872 # endif
1873 # ifdef SIGTTIN
1874 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1875 # endif
1876 # ifdef SIGTTOU
1877 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1878 # endif
1879 # ifdef SIGURG
1880 sys_siglist[SIGURG] = "Urgent I/O condition";
1881 # endif
1882 # ifdef SIGUSR1
1883 sys_siglist[SIGUSR1] = "User defined signal 1";
1884 # endif
1885 # ifdef SIGUSR2
1886 sys_siglist[SIGUSR2] = "User defined signal 2";
1887 # endif
1888 # ifdef SIGVTALRM
1889 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1890 # endif
1891 # ifdef SIGWAITING
1892 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1893 # endif
1894 # ifdef SIGWINCH
1895 sys_siglist[SIGWINCH] = "Window size changed";
1896 # endif
1897 # ifdef SIGWIND
1898 sys_siglist[SIGWIND] = "SIGWIND";
1899 # endif
1900 # ifdef SIGXCPU
1901 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1902 # endif
1903 # ifdef SIGXFSZ
1904 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1905 # endif
1907 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1909 /* Don't alter signal handlers if dumping. On some machines,
1910 changing signal handlers sets static data that would make signals
1911 fail to work right when the dumped Emacs is run. */
1912 if (dumping)
1913 return;
1915 sigfillset (&process_fatal_action.sa_mask);
1916 process_fatal_action.sa_handler = deliver_fatal_signal;
1917 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1919 sigfillset (&thread_fatal_action.sa_mask);
1920 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1921 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1923 /* SIGINT may need special treatment on MS-Windows. See
1924 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1925 Please update the doc of kill-emacs, kill-emacs-hook, and
1926 NEWS if you change this. */
1928 maybe_fatal_sig (SIGHUP);
1929 maybe_fatal_sig (SIGINT);
1930 maybe_fatal_sig (SIGTERM);
1932 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
1933 However, in batch mode leave SIGPIPE alone, as that causes Emacs
1934 to behave more like typical batch applications do. */
1935 if (! noninteractive)
1936 signal (SIGPIPE, SIG_IGN);
1938 sigaction (SIGQUIT, &process_fatal_action, 0);
1939 sigaction (SIGILL, &thread_fatal_action, 0);
1940 sigaction (SIGTRAP, &thread_fatal_action, 0);
1942 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
1943 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
1944 interpreter's floating point operations, so treat SIGFPE as an
1945 arith-error if it arises in the main thread. */
1946 if (IEEE_FLOATING_POINT)
1947 sigaction (SIGFPE, &thread_fatal_action, 0);
1948 else
1950 emacs_sigaction_init (&action, deliver_arith_signal);
1951 sigaction (SIGFPE, &action, 0);
1954 #ifdef SIGUSR1
1955 add_user_signal (SIGUSR1, "sigusr1");
1956 #endif
1957 #ifdef SIGUSR2
1958 add_user_signal (SIGUSR2, "sigusr2");
1959 #endif
1960 sigaction (SIGABRT, &thread_fatal_action, 0);
1961 #ifdef SIGPRE
1962 sigaction (SIGPRE, &thread_fatal_action, 0);
1963 #endif
1964 #ifdef SIGORE
1965 sigaction (SIGORE, &thread_fatal_action, 0);
1966 #endif
1967 #ifdef SIGUME
1968 sigaction (SIGUME, &thread_fatal_action, 0);
1969 #endif
1970 #ifdef SIGDLK
1971 sigaction (SIGDLK, &process_fatal_action, 0);
1972 #endif
1973 #ifdef SIGCPULIM
1974 sigaction (SIGCPULIM, &process_fatal_action, 0);
1975 #endif
1976 #ifdef SIGIOT
1977 sigaction (SIGIOT, &thread_fatal_action, 0);
1978 #endif
1979 #ifdef SIGEMT
1980 sigaction (SIGEMT, &thread_fatal_action, 0);
1981 #endif
1982 #ifdef SIGBUS
1983 sigaction (SIGBUS, &thread_fatal_action, 0);
1984 #endif
1985 if (!init_sigsegv ())
1986 sigaction (SIGSEGV, &thread_fatal_action, 0);
1987 #ifdef SIGSYS
1988 sigaction (SIGSYS, &thread_fatal_action, 0);
1989 #endif
1990 sigaction (SIGTERM, &process_fatal_action, 0);
1991 #ifdef SIGPROF
1992 signal (SIGPROF, SIG_IGN);
1993 #endif
1994 #ifdef SIGVTALRM
1995 sigaction (SIGVTALRM, &process_fatal_action, 0);
1996 #endif
1997 #ifdef SIGXCPU
1998 sigaction (SIGXCPU, &process_fatal_action, 0);
1999 #endif
2000 #ifdef SIGXFSZ
2001 sigaction (SIGXFSZ, &process_fatal_action, 0);
2002 #endif
2004 #ifdef SIGDANGER
2005 /* This just means available memory is getting low. */
2006 emacs_sigaction_init (&action, deliver_danger_signal);
2007 sigaction (SIGDANGER, &action, 0);
2008 #endif
2010 /* AIX-specific signals. */
2011 #ifdef SIGGRANT
2012 sigaction (SIGGRANT, &process_fatal_action, 0);
2013 #endif
2014 #ifdef SIGMIGRATE
2015 sigaction (SIGMIGRATE, &process_fatal_action, 0);
2016 #endif
2017 #ifdef SIGMSG
2018 sigaction (SIGMSG, &process_fatal_action, 0);
2019 #endif
2020 #ifdef SIGRETRACT
2021 sigaction (SIGRETRACT, &process_fatal_action, 0);
2022 #endif
2023 #ifdef SIGSAK
2024 sigaction (SIGSAK, &process_fatal_action, 0);
2025 #endif
2026 #ifdef SIGSOUND
2027 sigaction (SIGSOUND, &process_fatal_action, 0);
2028 #endif
2029 #ifdef SIGTALRM
2030 sigaction (SIGTALRM, &thread_fatal_action, 0);
2031 #endif
2034 #ifndef HAVE_RANDOM
2035 #ifdef random
2036 #define HAVE_RANDOM
2037 #endif
2038 #endif
2040 /* Figure out how many bits the system's random number generator uses.
2041 `random' and `lrand48' are assumed to return 31 usable bits.
2042 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2043 so we'll shift it and treat it like the 15-bit USG `rand'. */
2045 #ifndef RAND_BITS
2046 # ifdef HAVE_RANDOM
2047 # define RAND_BITS 31
2048 # else /* !HAVE_RANDOM */
2049 # ifdef HAVE_LRAND48
2050 # define RAND_BITS 31
2051 # define random lrand48
2052 # else /* !HAVE_LRAND48 */
2053 # define RAND_BITS 15
2054 # if RAND_MAX == 32767
2055 # define random rand
2056 # else /* RAND_MAX != 32767 */
2057 # if RAND_MAX == 2147483647
2058 # define random() (rand () >> 16)
2059 # else /* RAND_MAX != 2147483647 */
2060 # ifdef USG
2061 # define random rand
2062 # else
2063 # define random() (rand () >> 16)
2064 # endif /* !USG */
2065 # endif /* RAND_MAX != 2147483647 */
2066 # endif /* RAND_MAX != 32767 */
2067 # endif /* !HAVE_LRAND48 */
2068 # endif /* !HAVE_RANDOM */
2069 #endif /* !RAND_BITS */
2071 void
2072 seed_random (void *seed, ptrdiff_t seed_size)
2074 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2075 unsigned int arg = 0;
2076 #else
2077 long int arg = 0;
2078 #endif
2079 unsigned char *argp = (unsigned char *) &arg;
2080 unsigned char *seedp = seed;
2081 ptrdiff_t i;
2082 for (i = 0; i < seed_size; i++)
2083 argp[i % sizeof arg] ^= seedp[i];
2084 #ifdef HAVE_RANDOM
2085 srandom (arg);
2086 #else
2087 # ifdef HAVE_LRAND48
2088 srand48 (arg);
2089 # else
2090 srand (arg);
2091 # endif
2092 #endif
2095 void
2096 init_random (void)
2098 struct timespec t = current_timespec ();
2099 uintmax_t v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2100 seed_random (&v, sizeof v);
2104 * Return a nonnegative random integer out of whatever we've got.
2105 * It contains enough bits to make a random (signed) Emacs fixnum.
2106 * This suffices even for a 64-bit architecture with a 15-bit rand.
2108 EMACS_INT
2109 get_random (void)
2111 EMACS_UINT val = 0;
2112 int i;
2113 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2114 val = (random () ^ (val << RAND_BITS)
2115 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2116 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2117 return val & INTMASK;
2120 #ifndef HAVE_SNPRINTF
2121 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2123 snprintf (char *buf, size_t bufsize, char const *format, ...)
2125 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2126 ptrdiff_t nbytes = size - 1;
2127 va_list ap;
2129 if (size)
2131 va_start (ap, format);
2132 nbytes = doprnt (buf, size, format, 0, ap);
2133 va_end (ap);
2136 if (nbytes == size - 1)
2138 /* Calculate the length of the string that would have been created
2139 had the buffer been large enough. */
2140 char stackbuf[4000];
2141 char *b = stackbuf;
2142 ptrdiff_t bsize = sizeof stackbuf;
2143 va_start (ap, format);
2144 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2145 va_end (ap);
2146 if (b != stackbuf)
2147 xfree (b);
2150 if (INT_MAX < nbytes)
2152 #ifdef EOVERFLOW
2153 errno = EOVERFLOW;
2154 #else
2155 errno = EDOM;
2156 #endif
2157 return -1;
2159 return nbytes;
2161 #endif
2163 /* If a backtrace is available, output the top lines of it to stderr.
2164 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2165 This function may be called from a signal handler, so it should
2166 not invoke async-unsafe functions like malloc.
2168 If BACKTRACE_LIMIT is -1, initialize tables that 'backtrace' uses
2169 but do not output anything. This avoids some problems that can
2170 otherwise occur if the malloc arena is corrupted before 'backtrace'
2171 is called, since 'backtrace' may call malloc if the tables are not
2172 initialized.
2174 If the static variable THREAD_BACKTRACE_NPOINTERS is nonzero, a
2175 fatal error has occurred in some other thread; generate a thread
2176 backtrace instead, ignoring BACKTRACE_LIMIT. */
2177 void
2178 emacs_backtrace (int backtrace_limit)
2180 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2181 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2182 void *buffer;
2183 int npointers;
2185 if (thread_backtrace_npointers)
2187 buffer = thread_backtrace_buffer;
2188 npointers = thread_backtrace_npointers;
2190 else
2192 buffer = main_backtrace_buffer;
2194 /* Work around 'backtrace' bug; see Bug#19959 and glibc bug#18084. */
2195 if (bounded_limit < 0)
2197 backtrace (buffer, 1);
2198 return;
2201 npointers = backtrace (buffer, bounded_limit + 1);
2204 if (npointers)
2206 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2207 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2208 if (bounded_limit < npointers)
2209 emacs_write (STDERR_FILENO, "...\n", 4);
2213 #ifndef HAVE_NTGUI
2214 void
2215 emacs_abort (void)
2217 terminate_due_to_signal (SIGABRT, 40);
2219 #endif
2221 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2222 Use binary I/O on systems that care about text vs binary I/O.
2223 Arrange for subprograms to not inherit the file descriptor.
2224 Prefer a method that is multithread-safe, if available.
2225 Do not fail merely because the open was interrupted by a signal.
2226 Allow the user to quit. */
2229 emacs_open (const char *file, int oflags, int mode)
2231 int fd;
2232 if (! (oflags & O_TEXT))
2233 oflags |= O_BINARY;
2234 oflags |= O_CLOEXEC;
2235 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2236 QUIT;
2237 if (! O_CLOEXEC && 0 <= fd)
2238 fcntl (fd, F_SETFD, FD_CLOEXEC);
2239 return fd;
2242 /* Open FILE as a stream for Emacs use, with mode MODE.
2243 Act like emacs_open with respect to threads, signals, and quits. */
2245 FILE *
2246 emacs_fopen (char const *file, char const *mode)
2248 int fd, omode, oflags;
2249 int bflag = 0;
2250 char const *m = mode;
2252 switch (*m++)
2254 case 'r': omode = O_RDONLY; oflags = 0; break;
2255 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2256 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2257 default: emacs_abort ();
2260 while (*m)
2261 switch (*m++)
2263 case '+': omode = O_RDWR; break;
2264 case 'b': bflag = O_BINARY; break;
2265 case 't': bflag = O_TEXT; break;
2266 default: /* Ignore. */ break;
2269 fd = emacs_open (file, omode | oflags | bflag, 0666);
2270 return fd < 0 ? 0 : fdopen (fd, mode);
2273 /* Create a pipe for Emacs use. */
2276 emacs_pipe (int fd[2])
2278 #ifdef MSDOS
2279 return pipe (fd);
2280 #else /* !MSDOS */
2281 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2282 if (! O_CLOEXEC && result == 0)
2284 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2285 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2287 return result;
2288 #endif /* !MSDOS */
2291 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2292 For the background behind this mess, please see Austin Group defect 529
2293 <http://austingroupbugs.net/view.php?id=529>. */
2295 #ifndef POSIX_CLOSE_RESTART
2296 # define POSIX_CLOSE_RESTART 1
2297 static int
2298 posix_close (int fd, int flag)
2300 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2301 eassert (flag == POSIX_CLOSE_RESTART);
2303 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2304 on a system that does not define POSIX_CLOSE_RESTART.
2306 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2307 closed, and retrying the close could inadvertently close a file
2308 descriptor allocated by some other thread. In other systems
2309 (e.g., HP/UX) FD is not closed. And in still other systems
2310 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2311 multithreaded program there can be no way to tell.
2313 So, in this case, pretend that the close succeeded. This works
2314 well on systems like GNU/Linux that close FD. Although it may
2315 leak a file descriptor on other systems, the leak is unlikely and
2316 it's better to leak than to close a random victim. */
2317 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2319 #endif
2321 /* Close FD, retrying if interrupted. If successful, return 0;
2322 otherwise, return -1 and set errno to a non-EINTR value. Consider
2323 an EINPROGRESS error to be successful, as that's merely a signal
2324 arriving. FD is always closed when this function returns, even
2325 when it returns -1.
2327 Do not call this function if FD is nonnegative and might already be closed,
2328 as that might close an innocent victim opened by some other thread. */
2331 emacs_close (int fd)
2333 while (1)
2335 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2336 if (r == 0)
2337 return r;
2338 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2340 eassert (errno != EBADF || fd < 0);
2341 return errno == EINPROGRESS ? 0 : r;
2346 /* Maximum number of bytes to read or write in a single system call.
2347 This works around a serious bug in Linux kernels before 2.6.16; see
2348 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2349 It's likely to work around similar bugs in other operating systems, so do it
2350 on all platforms. Round INT_MAX down to a page size, with the conservative
2351 assumption that page sizes are at most 2**18 bytes (any kernel with a
2352 page size larger than that shouldn't have the bug). */
2353 #ifndef MAX_RW_COUNT
2354 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2355 #endif
2357 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2358 Return the number of bytes read, which might be less than NBYTE.
2359 On error, set errno and return -1. */
2360 ptrdiff_t
2361 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2363 ssize_t rtnval;
2365 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2366 passes a size that large to emacs_read. */
2368 while ((rtnval = read (fildes, buf, nbyte)) == -1
2369 && (errno == EINTR))
2370 QUIT;
2371 return (rtnval);
2374 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2375 or if a partial write occurs. If interrupted, process pending
2376 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2377 errno if this is less than NBYTE. */
2378 static ptrdiff_t
2379 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2380 bool process_signals)
2382 ptrdiff_t bytes_written = 0;
2384 while (nbyte > 0)
2386 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2388 if (n < 0)
2390 if (errno == EINTR)
2392 /* I originally used `QUIT' but that might cause files to
2393 be truncated if you hit C-g in the middle of it. --Stef */
2394 if (process_signals && pending_signals)
2395 process_pending_signals ();
2396 continue;
2398 else
2399 break;
2402 buf += n;
2403 nbyte -= n;
2404 bytes_written += n;
2407 return bytes_written;
2410 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2411 interrupted or if a partial write occurs. Return the number of
2412 bytes written, setting errno if this is less than NBYTE. */
2413 ptrdiff_t
2414 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2416 return emacs_full_write (fildes, buf, nbyte, 0);
2419 /* Like emacs_write, but also process pending signals if interrupted. */
2420 ptrdiff_t
2421 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2423 return emacs_full_write (fildes, buf, nbyte, 1);
2426 /* Write a diagnostic to standard error that contains MESSAGE and a
2427 string derived from errno. Preserve errno. Do not buffer stderr.
2428 Do not process pending signals if interrupted. */
2429 void
2430 emacs_perror (char const *message)
2432 int err = errno;
2433 char const *error_string = strerror (err);
2434 char const *command = (initial_argv && initial_argv[0]
2435 ? initial_argv[0] : "emacs");
2436 /* Write it out all at once, if it's short; this is less likely to
2437 be interleaved with other output. */
2438 char buf[BUFSIZ];
2439 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2440 command, message, error_string);
2441 if (0 <= nbytes && nbytes < BUFSIZ)
2442 emacs_write (STDERR_FILENO, buf, nbytes);
2443 else
2445 emacs_write (STDERR_FILENO, command, strlen (command));
2446 emacs_write (STDERR_FILENO, ": ", 2);
2447 emacs_write (STDERR_FILENO, message, strlen (message));
2448 emacs_write (STDERR_FILENO, ": ", 2);
2449 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2450 emacs_write (STDERR_FILENO, "\n", 1);
2452 errno = err;
2455 /* Return a struct timeval that is roughly equivalent to T.
2456 Use the least timeval not less than T.
2457 Return an extremal value if the result would overflow. */
2458 struct timeval
2459 make_timeval (struct timespec t)
2461 struct timeval tv;
2462 tv.tv_sec = t.tv_sec;
2463 tv.tv_usec = t.tv_nsec / 1000;
2465 if (t.tv_nsec % 1000 != 0)
2467 if (tv.tv_usec < 999999)
2468 tv.tv_usec++;
2469 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2471 tv.tv_sec++;
2472 tv.tv_usec = 0;
2476 return tv;
2479 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2480 ATIME and MTIME, respectively.
2481 FD must be either negative -- in which case it is ignored --
2482 or a file descriptor that is open on FILE.
2483 If FD is nonnegative, then FILE can be NULL. */
2485 set_file_times (int fd, const char *filename,
2486 struct timespec atime, struct timespec mtime)
2488 struct timespec timespec[2];
2489 timespec[0] = atime;
2490 timespec[1] = mtime;
2491 return fdutimens (fd, filename, timespec);
2494 /* Like strsignal, except async-signal-safe, and this function typically
2495 returns a string in the C locale rather than the current locale. */
2496 char const *
2497 safe_strsignal (int code)
2499 char const *signame = 0;
2501 if (0 <= code && code < sys_siglist_entries)
2502 signame = sys_siglist[code];
2503 if (! signame)
2504 signame = "Unknown signal";
2506 return signame;
2509 #ifndef DOS_NT
2510 /* For make-serial-process */
2512 serial_open (Lisp_Object port)
2514 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2515 if (fd < 0)
2516 report_file_error ("Opening serial port", port);
2517 #ifdef TIOCEXCL
2518 ioctl (fd, TIOCEXCL, (char *) 0);
2519 #endif
2521 return fd;
2524 #if !defined (HAVE_CFMAKERAW)
2525 /* Workaround for targets which are missing cfmakeraw. */
2526 /* Pasted from man page. */
2527 static void
2528 cfmakeraw (struct termios *termios_p)
2530 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2531 termios_p->c_oflag &= ~OPOST;
2532 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2533 termios_p->c_cflag &= ~(CSIZE|PARENB);
2534 termios_p->c_cflag |= CS8;
2536 #endif /* !defined (HAVE_CFMAKERAW */
2538 #if !defined (HAVE_CFSETSPEED)
2539 /* Workaround for targets which are missing cfsetspeed. */
2540 static int
2541 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2543 return (cfsetispeed (termios_p, vitesse)
2544 + cfsetospeed (termios_p, vitesse));
2546 #endif
2548 /* For serial-process-configure */
2549 void
2550 serial_configure (struct Lisp_Process *p,
2551 Lisp_Object contact)
2553 Lisp_Object childp2 = Qnil;
2554 Lisp_Object tem = Qnil;
2555 struct termios attr;
2556 int err;
2557 char summary[4] = "???"; /* This usually becomes "8N1". */
2559 childp2 = Fcopy_sequence (p->childp);
2561 /* Read port attributes and prepare default configuration. */
2562 err = tcgetattr (p->outfd, &attr);
2563 if (err != 0)
2564 report_file_error ("Failed tcgetattr", Qnil);
2565 cfmakeraw (&attr);
2566 #if defined (CLOCAL)
2567 attr.c_cflag |= CLOCAL;
2568 #endif
2569 #if defined (CREAD)
2570 attr.c_cflag |= CREAD;
2571 #endif
2573 /* Configure speed. */
2574 if (!NILP (Fplist_member (contact, QCspeed)))
2575 tem = Fplist_get (contact, QCspeed);
2576 else
2577 tem = Fplist_get (p->childp, QCspeed);
2578 CHECK_NUMBER (tem);
2579 err = cfsetspeed (&attr, XINT (tem));
2580 if (err != 0)
2581 report_file_error ("Failed cfsetspeed", tem);
2582 childp2 = Fplist_put (childp2, QCspeed, tem);
2584 /* Configure bytesize. */
2585 if (!NILP (Fplist_member (contact, QCbytesize)))
2586 tem = Fplist_get (contact, QCbytesize);
2587 else
2588 tem = Fplist_get (p->childp, QCbytesize);
2589 if (NILP (tem))
2590 tem = make_number (8);
2591 CHECK_NUMBER (tem);
2592 if (XINT (tem) != 7 && XINT (tem) != 8)
2593 error (":bytesize must be nil (8), 7, or 8");
2594 summary[0] = XINT (tem) + '0';
2595 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2596 attr.c_cflag &= ~CSIZE;
2597 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2598 #else
2599 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2600 if (XINT (tem) != 8)
2601 error ("Bytesize cannot be changed");
2602 #endif
2603 childp2 = Fplist_put (childp2, QCbytesize, tem);
2605 /* Configure parity. */
2606 if (!NILP (Fplist_member (contact, QCparity)))
2607 tem = Fplist_get (contact, QCparity);
2608 else
2609 tem = Fplist_get (p->childp, QCparity);
2610 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2611 error (":parity must be nil (no parity), `even', or `odd'");
2612 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2613 attr.c_cflag &= ~(PARENB | PARODD);
2614 attr.c_iflag &= ~(IGNPAR | INPCK);
2615 if (NILP (tem))
2617 summary[1] = 'N';
2619 else if (EQ (tem, Qeven))
2621 summary[1] = 'E';
2622 attr.c_cflag |= PARENB;
2623 attr.c_iflag |= (IGNPAR | INPCK);
2625 else if (EQ (tem, Qodd))
2627 summary[1] = 'O';
2628 attr.c_cflag |= (PARENB | PARODD);
2629 attr.c_iflag |= (IGNPAR | INPCK);
2631 #else
2632 /* Don't error on no parity, which should be set by cfmakeraw. */
2633 if (!NILP (tem))
2634 error ("Parity cannot be configured");
2635 #endif
2636 childp2 = Fplist_put (childp2, QCparity, tem);
2638 /* Configure stopbits. */
2639 if (!NILP (Fplist_member (contact, QCstopbits)))
2640 tem = Fplist_get (contact, QCstopbits);
2641 else
2642 tem = Fplist_get (p->childp, QCstopbits);
2643 if (NILP (tem))
2644 tem = make_number (1);
2645 CHECK_NUMBER (tem);
2646 if (XINT (tem) != 1 && XINT (tem) != 2)
2647 error (":stopbits must be nil (1 stopbit), 1, or 2");
2648 summary[2] = XINT (tem) + '0';
2649 #if defined (CSTOPB)
2650 attr.c_cflag &= ~CSTOPB;
2651 if (XINT (tem) == 2)
2652 attr.c_cflag |= CSTOPB;
2653 #else
2654 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2655 if (XINT (tem) != 1)
2656 error ("Stopbits cannot be configured");
2657 #endif
2658 childp2 = Fplist_put (childp2, QCstopbits, tem);
2660 /* Configure flowcontrol. */
2661 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2662 tem = Fplist_get (contact, QCflowcontrol);
2663 else
2664 tem = Fplist_get (p->childp, QCflowcontrol);
2665 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2666 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2667 #if defined (CRTSCTS)
2668 attr.c_cflag &= ~CRTSCTS;
2669 #endif
2670 #if defined (CNEW_RTSCTS)
2671 attr.c_cflag &= ~CNEW_RTSCTS;
2672 #endif
2673 #if defined (IXON) && defined (IXOFF)
2674 attr.c_iflag &= ~(IXON | IXOFF);
2675 #endif
2676 if (NILP (tem))
2678 /* Already configured. */
2680 else if (EQ (tem, Qhw))
2682 #if defined (CRTSCTS)
2683 attr.c_cflag |= CRTSCTS;
2684 #elif defined (CNEW_RTSCTS)
2685 attr.c_cflag |= CNEW_RTSCTS;
2686 #else
2687 error ("Hardware flowcontrol (RTS/CTS) not supported");
2688 #endif
2690 else if (EQ (tem, Qsw))
2692 #if defined (IXON) && defined (IXOFF)
2693 attr.c_iflag |= (IXON | IXOFF);
2694 #else
2695 error ("Software flowcontrol (XON/XOFF) not supported");
2696 #endif
2698 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2700 /* Activate configuration. */
2701 err = tcsetattr (p->outfd, TCSANOW, &attr);
2702 if (err != 0)
2703 report_file_error ("Failed tcsetattr", Qnil);
2705 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2706 pset_childp (p, childp2);
2708 #endif /* not DOS_NT */
2710 /* System depended enumeration of and access to system processes a-la ps(1). */
2712 #ifdef HAVE_PROCFS
2714 /* Process enumeration and access via /proc. */
2716 Lisp_Object
2717 list_system_processes (void)
2719 Lisp_Object procdir, match, proclist, next;
2720 Lisp_Object tail;
2722 /* For every process on the system, there's a directory in the
2723 "/proc" pseudo-directory whose name is the numeric ID of that
2724 process. */
2725 procdir = build_string ("/proc");
2726 match = build_string ("[0-9]+");
2727 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2729 /* `proclist' gives process IDs as strings. Destructively convert
2730 each string into a number. */
2731 for (tail = proclist; CONSP (tail); tail = next)
2733 next = XCDR (tail);
2734 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2737 /* directory_files_internal returns the files in reverse order; undo
2738 that. */
2739 proclist = Fnreverse (proclist);
2740 return proclist;
2743 #elif defined DARWIN_OS || defined __FreeBSD__
2745 Lisp_Object
2746 list_system_processes (void)
2748 #ifdef DARWIN_OS
2749 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2750 #else
2751 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2752 #endif
2753 size_t len;
2754 struct kinfo_proc *procs;
2755 size_t i;
2757 Lisp_Object proclist = Qnil;
2759 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2760 return proclist;
2762 procs = xmalloc (len);
2763 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2765 xfree (procs);
2766 return proclist;
2769 len /= sizeof (struct kinfo_proc);
2770 for (i = 0; i < len; i++)
2772 #ifdef DARWIN_OS
2773 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2774 #else
2775 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2776 #endif
2779 xfree (procs);
2781 return proclist;
2784 /* The WINDOWSNT implementation is in w32.c.
2785 The MSDOS implementation is in dosfns.c. */
2786 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2788 Lisp_Object
2789 list_system_processes (void)
2791 return Qnil;
2794 #endif /* !defined (WINDOWSNT) */
2796 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2797 static struct timespec
2798 time_from_jiffies (unsigned long long tval, long hz)
2800 unsigned long long s = tval / hz;
2801 unsigned long long frac = tval % hz;
2802 int ns;
2804 if (TYPE_MAXIMUM (time_t) < s)
2805 time_overflow ();
2806 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2807 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2808 ns = frac * TIMESPEC_RESOLUTION / hz;
2809 else
2811 /* This is reachable only in the unlikely case that HZ * HZ
2812 exceeds ULLONG_MAX. It calculates an approximation that is
2813 guaranteed to be in range. */
2814 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2815 + (hz % TIMESPEC_RESOLUTION != 0));
2816 ns = frac / hz_per_ns;
2819 return make_timespec (s, ns);
2822 static Lisp_Object
2823 ltime_from_jiffies (unsigned long long tval, long hz)
2825 struct timespec t = time_from_jiffies (tval, hz);
2826 return make_lisp_time (t);
2829 static struct timespec
2830 get_up_time (void)
2832 FILE *fup;
2833 struct timespec up = make_timespec (0, 0);
2835 block_input ();
2836 fup = emacs_fopen ("/proc/uptime", "r");
2838 if (fup)
2840 unsigned long long upsec, upfrac, idlesec, idlefrac;
2841 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2843 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2844 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2845 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2846 == 4)
2848 if (TYPE_MAXIMUM (time_t) < upsec)
2850 upsec = TYPE_MAXIMUM (time_t);
2851 upfrac = TIMESPEC_RESOLUTION - 1;
2853 else
2855 int upfraclen = upfrac_end - upfrac_start;
2856 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2857 upfrac *= 10;
2858 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2859 upfrac /= 10;
2860 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2862 up = make_timespec (upsec, upfrac);
2864 fclose (fup);
2866 unblock_input ();
2868 return up;
2871 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2872 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2874 static Lisp_Object
2875 procfs_ttyname (int rdev)
2877 FILE *fdev;
2878 char name[PATH_MAX];
2880 block_input ();
2881 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2882 name[0] = 0;
2884 if (fdev)
2886 unsigned major;
2887 unsigned long minor_beg, minor_end;
2888 char minor[25]; /* 2 32-bit numbers + dash */
2889 char *endp;
2891 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2893 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2894 && major == MAJOR (rdev))
2896 minor_beg = strtoul (minor, &endp, 0);
2897 if (*endp == '\0')
2898 minor_end = minor_beg;
2899 else if (*endp == '-')
2900 minor_end = strtoul (endp + 1, &endp, 0);
2901 else
2902 continue;
2904 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2906 sprintf (name + strlen (name), "%u", MINOR (rdev));
2907 break;
2911 fclose (fdev);
2913 unblock_input ();
2914 return build_string (name);
2917 static uintmax_t
2918 procfs_get_total_memory (void)
2920 FILE *fmem;
2921 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2922 int c;
2924 block_input ();
2925 fmem = emacs_fopen ("/proc/meminfo", "r");
2927 if (fmem)
2929 uintmax_t entry_value;
2930 bool done;
2933 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2935 case 1:
2936 retval = entry_value;
2937 done = 1;
2938 break;
2940 case 0:
2941 while ((c = getc (fmem)) != EOF && c != '\n')
2942 continue;
2943 done = c == EOF;
2944 break;
2946 default:
2947 done = 1;
2948 break;
2950 while (!done);
2952 fclose (fmem);
2954 unblock_input ();
2955 return retval;
2958 Lisp_Object
2959 system_process_attributes (Lisp_Object pid)
2961 char procfn[PATH_MAX], fn[PATH_MAX];
2962 struct stat st;
2963 struct passwd *pw;
2964 struct group *gr;
2965 long clocks_per_sec;
2966 char *procfn_end;
2967 char procbuf[1025], *p, *q;
2968 int fd;
2969 ssize_t nread;
2970 static char const default_cmd[] = "???";
2971 const char *cmd = default_cmd;
2972 int cmdsize = sizeof default_cmd - 1;
2973 char *cmdline = NULL;
2974 ptrdiff_t cmdline_size;
2975 char c;
2976 printmax_t proc_id;
2977 int ppid, pgrp, sess, tty, tpgid, thcount;
2978 uid_t uid;
2979 gid_t gid;
2980 unsigned long long u_time, s_time, cutime, cstime, start;
2981 long priority, niceness, rss;
2982 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
2983 struct timespec tnow, tstart, tboot, telapsed, us_time;
2984 double pcpu, pmem;
2985 Lisp_Object attrs = Qnil;
2986 Lisp_Object cmd_str, decoded_cmd;
2987 ptrdiff_t count;
2989 CHECK_NUMBER_OR_FLOAT (pid);
2990 CONS_TO_INTEGER (pid, pid_t, proc_id);
2991 sprintf (procfn, "/proc/%"pMd, proc_id);
2992 if (stat (procfn, &st) < 0)
2993 return attrs;
2995 /* euid egid */
2996 uid = st.st_uid;
2997 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
2998 block_input ();
2999 pw = getpwuid (uid);
3000 unblock_input ();
3001 if (pw)
3002 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3004 gid = st.st_gid;
3005 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3006 block_input ();
3007 gr = getgrgid (gid);
3008 unblock_input ();
3009 if (gr)
3010 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3012 count = SPECPDL_INDEX ();
3013 strcpy (fn, procfn);
3014 procfn_end = fn + strlen (fn);
3015 strcpy (procfn_end, "/stat");
3016 fd = emacs_open (fn, O_RDONLY, 0);
3017 if (fd < 0)
3018 nread = 0;
3019 else
3021 record_unwind_protect_int (close_file_unwind, fd);
3022 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3024 if (0 < nread)
3026 procbuf[nread] = '\0';
3027 p = procbuf;
3029 p = strchr (p, '(');
3030 if (p != NULL)
3032 q = strrchr (p + 1, ')');
3033 /* comm */
3034 if (q != NULL)
3036 cmd = p + 1;
3037 cmdsize = q - cmd;
3040 else
3041 q = NULL;
3042 /* Command name is encoded in locale-coding-system; decode it. */
3043 cmd_str = make_unibyte_string (cmd, cmdsize);
3044 decoded_cmd = code_convert_string_norecord (cmd_str,
3045 Vlocale_coding_system, 0);
3046 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3048 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3049 utime stime cutime cstime priority nice thcount . start vsize rss */
3050 if (q
3051 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3052 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3053 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3054 &minflt, &cminflt, &majflt, &cmajflt,
3055 &u_time, &s_time, &cutime, &cstime,
3056 &priority, &niceness, &thcount, &start, &vsize, &rss)
3057 == 20))
3059 char state_str[2];
3060 state_str[0] = c;
3061 state_str[1] = '\0';
3062 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3063 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3064 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3065 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3066 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3067 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3068 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3069 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3070 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3071 attrs);
3072 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3073 attrs);
3074 clocks_per_sec = sysconf (_SC_CLK_TCK);
3075 if (clocks_per_sec < 0)
3076 clocks_per_sec = 100;
3077 attrs = Fcons (Fcons (Qutime,
3078 ltime_from_jiffies (u_time, clocks_per_sec)),
3079 attrs);
3080 attrs = Fcons (Fcons (Qstime,
3081 ltime_from_jiffies (s_time, clocks_per_sec)),
3082 attrs);
3083 attrs = Fcons (Fcons (Qtime,
3084 ltime_from_jiffies (s_time + u_time,
3085 clocks_per_sec)),
3086 attrs);
3087 attrs = Fcons (Fcons (Qcutime,
3088 ltime_from_jiffies (cutime, clocks_per_sec)),
3089 attrs);
3090 attrs = Fcons (Fcons (Qcstime,
3091 ltime_from_jiffies (cstime, clocks_per_sec)),
3092 attrs);
3093 attrs = Fcons (Fcons (Qctime,
3094 ltime_from_jiffies (cstime + cutime,
3095 clocks_per_sec)),
3096 attrs);
3097 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3098 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3099 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3100 attrs);
3101 tnow = current_timespec ();
3102 telapsed = get_up_time ();
3103 tboot = timespec_sub (tnow, telapsed);
3104 tstart = time_from_jiffies (start, clocks_per_sec);
3105 tstart = timespec_add (tboot, tstart);
3106 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3107 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3108 attrs);
3109 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3110 telapsed = timespec_sub (tnow, tstart);
3111 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3112 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3113 pcpu = timespectod (us_time) / timespectod (telapsed);
3114 if (pcpu > 1.0)
3115 pcpu = 1.0;
3116 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3117 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3118 if (pmem > 100)
3119 pmem = 100;
3120 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3123 unbind_to (count, Qnil);
3125 /* args */
3126 strcpy (procfn_end, "/cmdline");
3127 fd = emacs_open (fn, O_RDONLY, 0);
3128 if (fd >= 0)
3130 ptrdiff_t readsize, nread_incr;
3131 record_unwind_protect_int (close_file_unwind, fd);
3132 record_unwind_protect_nothing ();
3133 nread = cmdline_size = 0;
3137 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3138 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3140 /* Leave room even if every byte needs escaping below. */
3141 readsize = (cmdline_size >> 1) - nread;
3143 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3144 nread += max (0, nread_incr);
3146 while (nread_incr == readsize);
3148 if (nread)
3150 /* We don't want trailing null characters. */
3151 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3152 continue;
3154 /* Escape-quote whitespace and backslashes. */
3155 q = cmdline + cmdline_size;
3156 while (cmdline < p)
3158 char c = *--p;
3159 *--q = c ? c : ' ';
3160 if (c_isspace (c) || c == '\\')
3161 *--q = '\\';
3164 nread = cmdline + cmdline_size - q;
3167 if (!nread)
3169 nread = cmdsize + 2;
3170 cmdline_size = nread + 1;
3171 q = cmdline = xrealloc (cmdline, cmdline_size);
3172 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3173 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3175 /* Command line is encoded in locale-coding-system; decode it. */
3176 cmd_str = make_unibyte_string (q, nread);
3177 decoded_cmd = code_convert_string_norecord (cmd_str,
3178 Vlocale_coding_system, 0);
3179 unbind_to (count, Qnil);
3180 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3183 return attrs;
3186 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3188 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3189 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3190 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3191 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3192 #undef _FILE_OFFSET_BITS
3193 #else
3194 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3195 #endif
3197 #include <procfs.h>
3199 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3200 #define _FILE_OFFSET_BITS 64
3201 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3202 #endif
3203 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3205 Lisp_Object
3206 system_process_attributes (Lisp_Object pid)
3208 char procfn[PATH_MAX], fn[PATH_MAX];
3209 struct stat st;
3210 struct passwd *pw;
3211 struct group *gr;
3212 char *procfn_end;
3213 struct psinfo pinfo;
3214 int fd;
3215 ssize_t nread;
3216 printmax_t proc_id;
3217 uid_t uid;
3218 gid_t gid;
3219 Lisp_Object attrs = Qnil;
3220 Lisp_Object decoded_cmd;
3221 ptrdiff_t count;
3223 CHECK_NUMBER_OR_FLOAT (pid);
3224 CONS_TO_INTEGER (pid, pid_t, proc_id);
3225 sprintf (procfn, "/proc/%"pMd, proc_id);
3226 if (stat (procfn, &st) < 0)
3227 return attrs;
3229 /* euid egid */
3230 uid = st.st_uid;
3231 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3232 block_input ();
3233 pw = getpwuid (uid);
3234 unblock_input ();
3235 if (pw)
3236 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3238 gid = st.st_gid;
3239 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3240 block_input ();
3241 gr = getgrgid (gid);
3242 unblock_input ();
3243 if (gr)
3244 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3246 count = SPECPDL_INDEX ();
3247 strcpy (fn, procfn);
3248 procfn_end = fn + strlen (fn);
3249 strcpy (procfn_end, "/psinfo");
3250 fd = emacs_open (fn, O_RDONLY, 0);
3251 if (fd < 0)
3252 nread = 0;
3253 else
3255 record_unwind_protect (close_file_unwind, fd);
3256 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3259 if (nread == sizeof pinfo)
3261 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3262 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3263 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3266 char state_str[2];
3267 state_str[0] = pinfo.pr_lwp.pr_sname;
3268 state_str[1] = '\0';
3269 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3272 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3273 need to get a string from it. */
3275 /* FIXME: missing: Qtpgid */
3277 /* FIXME: missing:
3278 Qminflt
3279 Qmajflt
3280 Qcminflt
3281 Qcmajflt
3283 Qutime
3284 Qcutime
3285 Qstime
3286 Qcstime
3287 Are they available? */
3289 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3290 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3291 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3292 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3293 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3294 attrs);
3296 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3297 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3298 attrs);
3299 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3300 attrs);
3302 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3303 range 0 .. 2**15, representing 0.0 .. 1.0. */
3304 attrs = Fcons (Fcons (Qpcpu,
3305 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3306 attrs);
3307 attrs = Fcons (Fcons (Qpmem,
3308 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3309 attrs);
3311 decoded_cmd = (code_convert_string_norecord
3312 (build_unibyte_string (pinfo.pr_fname),
3313 Vlocale_coding_system, 0));
3314 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3315 decoded_cmd = (code_convert_string_norecord
3316 (build_unibyte_string (pinfo.pr_psargs),
3317 Vlocale_coding_system, 0));
3318 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3320 unbind_to (count, Qnil);
3321 return attrs;
3324 #elif defined __FreeBSD__
3326 static struct timespec
3327 timeval_to_timespec (struct timeval t)
3329 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3332 static Lisp_Object
3333 make_lisp_timeval (struct timeval t)
3335 return make_lisp_time (timeval_to_timespec (t));
3338 Lisp_Object
3339 system_process_attributes (Lisp_Object pid)
3341 int proc_id;
3342 int pagesize = getpagesize ();
3343 unsigned long npages;
3344 int fscale;
3345 struct passwd *pw;
3346 struct group *gr;
3347 char *ttyname;
3348 size_t len;
3349 char args[MAXPATHLEN];
3350 struct timespec t, now;
3352 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3353 struct kinfo_proc proc;
3354 size_t proclen = sizeof proc;
3356 Lisp_Object attrs = Qnil;
3357 Lisp_Object decoded_comm;
3359 CHECK_NUMBER_OR_FLOAT (pid);
3360 CONS_TO_INTEGER (pid, int, proc_id);
3361 mib[3] = proc_id;
3363 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3364 return attrs;
3366 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3368 block_input ();
3369 pw = getpwuid (proc.ki_uid);
3370 unblock_input ();
3371 if (pw)
3372 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3374 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3376 block_input ();
3377 gr = getgrgid (proc.ki_svgid);
3378 unblock_input ();
3379 if (gr)
3380 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3382 decoded_comm = (code_convert_string_norecord
3383 (build_unibyte_string (proc.ki_comm),
3384 Vlocale_coding_system, 0));
3386 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3388 char state[2] = {'\0', '\0'};
3389 switch (proc.ki_stat)
3391 case SRUN:
3392 state[0] = 'R';
3393 break;
3395 case SSLEEP:
3396 state[0] = 'S';
3397 break;
3399 case SLOCK:
3400 state[0] = 'D';
3401 break;
3403 case SZOMB:
3404 state[0] = 'Z';
3405 break;
3407 case SSTOP:
3408 state[0] = 'T';
3409 break;
3411 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3414 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3415 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3416 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3418 block_input ();
3419 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3420 unblock_input ();
3421 if (ttyname)
3422 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3424 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3425 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3426 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3427 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3428 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3430 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3431 attrs);
3432 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3433 attrs);
3434 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3435 timeval_to_timespec (proc.ki_rusage.ru_stime));
3436 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3438 attrs = Fcons (Fcons (Qcutime,
3439 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3440 attrs);
3441 attrs = Fcons (Fcons (Qcstime,
3442 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3443 attrs);
3444 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3445 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3446 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3448 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3449 attrs);
3450 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3451 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3452 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3453 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3454 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3455 attrs);
3457 now = current_timespec ();
3458 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3459 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3461 len = sizeof fscale;
3462 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3464 double pcpu;
3465 fixpt_t ccpu;
3466 len = sizeof ccpu;
3467 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3469 pcpu = (100.0 * proc.ki_pctcpu / fscale
3470 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3471 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3475 len = sizeof npages;
3476 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3478 double pmem = (proc.ki_flag & P_INMEM
3479 ? 100.0 * proc.ki_rssize / npages
3480 : 0);
3481 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3484 mib[2] = KERN_PROC_ARGS;
3485 len = MAXPATHLEN;
3486 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3488 int i;
3489 for (i = 0; i < len; i++)
3491 if (! args[i] && i < len - 1)
3492 args[i] = ' ';
3495 decoded_comm =
3496 (code_convert_string_norecord
3497 (build_unibyte_string (args),
3498 Vlocale_coding_system, 0));
3500 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3503 return attrs;
3506 /* The WINDOWSNT implementation is in w32.c.
3507 The MSDOS implementation is in dosfns.c. */
3508 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3510 Lisp_Object
3511 system_process_attributes (Lisp_Object pid)
3513 return Qnil;
3516 #endif /* !defined (WINDOWSNT) */
3518 /* Wide character string collation. */
3520 #ifdef __STDC_ISO_10646__
3521 # include <wchar.h>
3522 # include <wctype.h>
3524 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3525 # include <locale.h>
3526 # endif
3527 # ifndef LC_COLLATE
3528 # define LC_COLLATE 0
3529 # endif
3530 # ifndef LC_COLLATE_MASK
3531 # define LC_COLLATE_MASK 0
3532 # endif
3533 # ifndef LC_CTYPE
3534 # define LC_CTYPE 0
3535 # endif
3536 # ifndef LC_CTYPE_MASK
3537 # define LC_CTYPE_MASK 0
3538 # endif
3540 # ifndef HAVE_NEWLOCALE
3541 # undef freelocale
3542 # undef locale_t
3543 # undef newlocale
3544 # undef wcscoll_l
3545 # undef towlower_l
3546 # define freelocale emacs_freelocale
3547 # define locale_t emacs_locale_t
3548 # define newlocale emacs_newlocale
3549 # define wcscoll_l emacs_wcscoll_l
3550 # define towlower_l emacs_towlower_l
3552 typedef char const *locale_t;
3554 static locale_t
3555 newlocale (int category_mask, char const *locale, locale_t loc)
3557 return locale;
3560 static void
3561 freelocale (locale_t loc)
3565 static char *
3566 emacs_setlocale (int category, char const *locale)
3568 # ifdef HAVE_SETLOCALE
3569 errno = 0;
3570 char *loc = setlocale (category, locale);
3571 if (loc || errno)
3572 return loc;
3573 errno = EINVAL;
3574 # else
3575 errno = ENOTSUP;
3576 # endif
3577 return 0;
3580 static int
3581 wcscoll_l (wchar_t const *a, wchar_t const *b, locale_t loc)
3583 int result = 0;
3584 char *oldloc = emacs_setlocale (LC_COLLATE, NULL);
3585 int err;
3587 if (! oldloc)
3588 err = errno;
3589 else
3591 USE_SAFE_ALLOCA;
3592 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3593 strcpy (oldcopy, oldloc);
3594 if (! emacs_setlocale (LC_COLLATE, loc))
3595 err = errno;
3596 else
3598 errno = 0;
3599 result = wcscoll (a, b);
3600 err = errno;
3601 if (! emacs_setlocale (LC_COLLATE, oldcopy))
3602 err = errno;
3604 SAFE_FREE ();
3607 errno = err;
3608 return result;
3611 static wint_t
3612 towlower_l (wint_t wc, locale_t loc)
3614 wint_t result = wc;
3615 char *oldloc = emacs_setlocale (LC_CTYPE, NULL);
3617 if (oldloc)
3619 USE_SAFE_ALLOCA;
3620 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3621 strcpy (oldcopy, oldloc);
3622 if (emacs_setlocale (LC_CTYPE, loc))
3624 result = towlower (wc);
3625 emacs_setlocale (LC_COLLATE, oldcopy);
3627 SAFE_FREE ();
3630 return result;
3632 # endif
3635 str_collate (Lisp_Object s1, Lisp_Object s2,
3636 Lisp_Object locale, Lisp_Object ignore_case)
3638 int res, err;
3639 ptrdiff_t len, i, i_byte;
3640 wchar_t *p1, *p2;
3642 USE_SAFE_ALLOCA;
3644 /* Convert byte stream to code points. */
3645 len = SCHARS (s1); i = i_byte = 0;
3646 SAFE_NALLOCA (p1, 1, len + 1);
3647 while (i < len)
3648 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3649 *(p1+len) = 0;
3651 len = SCHARS (s2); i = i_byte = 0;
3652 SAFE_NALLOCA (p2, 1, len + 1);
3653 while (i < len)
3654 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3655 *(p2+len) = 0;
3657 if (STRINGP (locale))
3659 locale_t loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK,
3660 SSDATA (locale), 0);
3661 if (!loc)
3662 error ("Invalid locale %s: %s", SSDATA (locale), strerror (errno));
3664 if (! NILP (ignore_case))
3665 for (int i = 1; i < 3; i++)
3667 wchar_t *p = (i == 1) ? p1 : p2;
3668 for (; *p; p++)
3669 *p = towlower_l (*p, loc);
3672 errno = 0;
3673 res = wcscoll_l (p1, p2, loc);
3674 err = errno;
3675 freelocale (loc);
3677 else
3679 if (! NILP (ignore_case))
3680 for (int i = 1; i < 3; i++)
3682 wchar_t *p = (i == 1) ? p1 : p2;
3683 for (; *p; p++)
3684 *p = towlower (*p);
3687 errno = 0;
3688 res = wcscoll (p1, p2);
3689 err = errno;
3691 # ifndef HAVE_NEWLOCALE
3692 if (err)
3693 error ("Invalid locale or string for collation: %s", strerror (err));
3694 # else
3695 if (err)
3696 error ("Invalid string for collation: %s", strerror (err));
3697 # endif
3699 SAFE_FREE ();
3700 return res;
3702 #endif /* __STDC_ISO_10646__ */
3704 #ifdef WINDOWSNT
3706 str_collate (Lisp_Object s1, Lisp_Object s2,
3707 Lisp_Object locale, Lisp_Object ignore_case)
3710 char *loc = STRINGP (locale) ? SSDATA (locale) : NULL;
3711 int res, err = errno;
3713 errno = 0;
3714 res = w32_compare_strings (SDATA (s1), SDATA (s2), loc, !NILP (ignore_case));
3715 if (errno)
3716 error ("Invalid string for collation: %s", strerror (errno));
3718 errno = err;
3719 return res;
3721 #endif /* WINDOWSNT */