Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / sysdep.c
blob6ec8eecb2874d7dd5d66c47154c04ec6e36efeec
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2014 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 #include <execinfo.h>
23 #include "sysstdio.h"
24 #ifdef HAVE_PWD_H
25 #include <pwd.h>
26 #include <grp.h>
27 #endif /* HAVE_PWD_H */
28 #include <limits.h>
29 #include <unistd.h>
31 #include <c-ctype.h>
32 #include <utimens.h>
34 #include "lisp.h"
35 #include "sysselect.h"
36 #include "blockinput.h"
38 #if defined DARWIN_OS || defined __FreeBSD__
39 # include <sys/sysctl.h>
40 #endif
42 #ifdef __FreeBSD__
43 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
44 'struct frame', so rename it. */
45 # define frame freebsd_frame
46 # include <sys/user.h>
47 # undef frame
49 # include <sys/resource.h>
50 # include <math.h>
51 #endif
53 #ifdef WINDOWSNT
54 #define read sys_read
55 #define write sys_write
56 #ifndef STDERR_FILENO
57 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
58 #endif
59 #include <windows.h>
60 #endif /* not WINDOWSNT */
62 #include <sys/types.h>
63 #include <sys/stat.h>
64 #include <errno.h>
66 /* Get SI_SRPC_DOMAIN, if it is available. */
67 #ifdef HAVE_SYS_SYSTEMINFO_H
68 #include <sys/systeminfo.h>
69 #endif
71 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
72 #include "msdos.h"
73 #endif
75 #include <sys/param.h>
76 #include <sys/file.h>
77 #include <fcntl.h>
79 #include "systty.h"
80 #include "syswait.h"
82 #ifdef HAVE_SYS_UTSNAME_H
83 #include <sys/utsname.h>
84 #include <memory.h>
85 #endif /* HAVE_SYS_UTSNAME_H */
87 #include "keyboard.h"
88 #include "frame.h"
89 #include "window.h"
90 #include "termhooks.h"
91 #include "termchar.h"
92 #include "termopts.h"
93 #include "dispextern.h"
94 #include "process.h"
95 #include "cm.h" /* for reset_sys_modes */
97 #ifdef WINDOWSNT
98 #include <direct.h>
99 /* In process.h which conflicts with the local copy. */
100 #define _P_WAIT 0
101 int _cdecl _spawnlp (int, const char *, const char *, ...);
102 int _cdecl _getpid (void);
103 #endif
105 #include "syssignal.h"
106 #include "systime.h"
108 static void emacs_get_tty (int, struct emacs_tty *);
109 static int emacs_set_tty (int, struct emacs_tty *, bool);
111 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
112 #ifndef ULLONG_MAX
113 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
114 #endif
116 /* Declare here, including term.h is problematic on some systems. */
117 extern void tputs (const char *, int, int (*)(int));
119 static const int baud_convert[] =
121 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
122 1800, 2400, 4800, 9600, 19200, 38400
126 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
128 /* Return the current working directory. Returns NULL on errors.
129 Any other returned value must be freed with free. This is used
130 only when get_current_dir_name is not defined on the system. */
131 char*
132 get_current_dir_name (void)
134 char *buf;
135 char *pwd = getenv ("PWD");
136 struct stat dotstat, pwdstat;
137 /* If PWD is accurate, use it instead of calling getcwd. PWD is
138 sometimes a nicer name, and using it may avoid a fatal error if a
139 parent directory is searchable but not readable. */
140 if (pwd
141 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
142 && stat (pwd, &pwdstat) == 0
143 && stat (".", &dotstat) == 0
144 && dotstat.st_ino == pwdstat.st_ino
145 && dotstat.st_dev == pwdstat.st_dev
146 #ifdef MAXPATHLEN
147 && strlen (pwd) < MAXPATHLEN
148 #endif
151 buf = malloc (strlen (pwd) + 1);
152 if (!buf)
153 return NULL;
154 strcpy (buf, pwd);
156 else
158 size_t buf_size = 1024;
159 buf = malloc (buf_size);
160 if (!buf)
161 return NULL;
162 for (;;)
164 if (getcwd (buf, buf_size) == buf)
165 break;
166 if (errno != ERANGE)
168 int tmp_errno = errno;
169 free (buf);
170 errno = tmp_errno;
171 return NULL;
173 buf_size *= 2;
174 buf = realloc (buf, buf_size);
175 if (!buf)
176 return NULL;
179 return buf;
181 #endif
184 /* Discard pending input on all input descriptors. */
186 void
187 discard_tty_input (void)
189 #ifndef WINDOWSNT
190 struct emacs_tty buf;
192 if (noninteractive)
193 return;
195 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
196 while (dos_keyread () != -1)
198 #else /* not MSDOS */
200 struct tty_display_info *tty;
201 for (tty = tty_list; tty; tty = tty->next)
203 if (tty->input) /* Is the device suspended? */
205 emacs_get_tty (fileno (tty->input), &buf);
206 emacs_set_tty (fileno (tty->input), &buf, 0);
210 #endif /* not MSDOS */
211 #endif /* not WINDOWSNT */
215 #ifdef SIGTSTP
217 /* Arrange for character C to be read as the next input from
218 the terminal.
219 XXX What if we have multiple ttys?
222 void
223 stuff_char (char c)
225 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
226 return;
228 /* Should perhaps error if in batch mode */
229 #ifdef TIOCSTI
230 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
231 #else /* no TIOCSTI */
232 error ("Cannot stuff terminal input characters in this version of Unix");
233 #endif /* no TIOCSTI */
236 #endif /* SIGTSTP */
238 void
239 init_baud_rate (int fd)
241 int emacs_ospeed;
243 if (noninteractive)
244 emacs_ospeed = 0;
245 else
247 #ifdef DOS_NT
248 emacs_ospeed = 15;
249 #else /* not DOS_NT */
250 struct termios sg;
252 sg.c_cflag = B9600;
253 tcgetattr (fd, &sg);
254 emacs_ospeed = cfgetospeed (&sg);
255 #endif /* not DOS_NT */
258 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
259 ? baud_convert[emacs_ospeed] : 9600);
260 if (baud_rate == 0)
261 baud_rate = 1200;
266 #ifndef MSDOS
268 /* Wait for the subprocess with process id CHILD to terminate or change status.
269 CHILD must be a child process that has not been reaped.
270 If STATUS is non-null, store the waitpid-style exit status into *STATUS
271 and tell wait_reading_process_output that it needs to look around.
272 Use waitpid-style OPTIONS when waiting.
273 If INTERRUPTIBLE, this function is interruptible by a signal.
275 Return CHILD if successful, 0 if no status is available;
276 the latter is possible only when options & NOHANG. */
277 static pid_t
278 get_child_status (pid_t child, int *status, int options, bool interruptible)
280 pid_t pid;
282 /* Invoke waitpid only with a known process ID; do not invoke
283 waitpid with a nonpositive argument. Otherwise, Emacs might
284 reap an unwanted process by mistake. For example, invoking
285 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
286 so that another thread running glib won't find them. */
287 eassert (child > 0);
289 while ((pid = waitpid (child, status, options)) < 0)
291 /* Check that CHILD is a child process that has not been reaped,
292 and that STATUS and OPTIONS are valid. Otherwise abort,
293 as continuing after this internal error could cause Emacs to
294 become confused and kill innocent-victim processes. */
295 if (errno != EINTR)
296 emacs_abort ();
298 /* Note: the MS-Windows emulation of waitpid calls QUIT
299 internally. */
300 if (interruptible)
301 QUIT;
304 /* If successful and status is requested, tell wait_reading_process_output
305 that it needs to wake up and look around. */
306 if (pid && status && input_available_clear_time)
307 *input_available_clear_time = make_timespec (0, 0);
309 return pid;
312 /* Wait for the subprocess with process id CHILD to terminate.
313 CHILD must be a child process that has not been reaped.
314 If STATUS is non-null, store the waitpid-style exit status into *STATUS
315 and tell wait_reading_process_output that it needs to look around.
316 If INTERRUPTIBLE, this function is interruptible by a signal. */
317 void
318 wait_for_termination (pid_t child, int *status, bool interruptible)
320 get_child_status (child, status, 0, interruptible);
323 /* Report whether the subprocess with process id CHILD has changed status.
324 Termination counts as a change of status.
325 CHILD must be a child process that has not been reaped.
326 If STATUS is non-null, store the waitpid-style exit status into *STATUS
327 and tell wait_reading_process_output that it needs to look around.
328 Use waitpid-style OPTIONS to check status, but do not wait.
330 Return CHILD if successful, 0 if no status is available because
331 the process's state has not changed. */
332 pid_t
333 child_status_changed (pid_t child, int *status, int options)
335 return get_child_status (child, status, WNOHANG | options, 0);
339 /* Set up the terminal at the other end of a pseudo-terminal that
340 we will be controlling an inferior through.
341 It should not echo or do line-editing, since that is done
342 in Emacs. No padding needed for insertion into an Emacs buffer. */
344 void
345 child_setup_tty (int out)
347 #ifndef WINDOWSNT
348 struct emacs_tty s;
350 emacs_get_tty (out, &s);
351 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
352 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
353 #ifdef NLDLY
354 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
355 Some versions of GNU Hurd do not have FFDLY? */
356 #ifdef FFDLY
357 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
358 /* No output delays */
359 #else
360 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
361 /* No output delays */
362 #endif
363 #endif
364 s.main.c_lflag &= ~ECHO; /* Disable echo */
365 s.main.c_lflag |= ISIG; /* Enable signals */
366 #ifdef IUCLC
367 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
368 #endif
369 #ifdef ISTRIP
370 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
371 #endif
372 #ifdef OLCUC
373 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
374 #endif
375 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
376 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
377 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
378 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
380 #ifdef HPUX
381 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
382 #endif /* HPUX */
384 #ifdef SIGNALS_VIA_CHARACTERS
385 /* the QUIT and INTR character are used in process_send_signal
386 so set them here to something useful. */
387 if (s.main.c_cc[VQUIT] == CDISABLE)
388 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
389 if (s.main.c_cc[VINTR] == CDISABLE)
390 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
391 #endif /* not SIGNALS_VIA_CHARACTERS */
393 #ifdef AIX
394 /* Also, PTY overloads NUL and BREAK.
395 don't ignore break, but don't signal either, so it looks like NUL. */
396 s.main.c_iflag &= ~IGNBRK;
397 s.main.c_iflag &= ~BRKINT;
398 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
399 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
400 would force it to 0377. That looks like duplicated code. */
401 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
402 #endif /* AIX */
404 /* We originally enabled ICANON (and set VEOF to 04), and then had
405 process.c send additional EOF chars to flush the output when faced
406 with long lines, but this leads to weird effects when the
407 subprocess has disabled ICANON and ends up seeing those spurious
408 extra EOFs. So we don't send EOFs any more in
409 process.c:send_process. First we tried to disable ICANON by
410 default, so if a subsprocess sets up ICANON, it's his problem (or
411 the Elisp package that talks to it) to deal with lines that are
412 too long. But this disables some features, such as the ability
413 to send EOF signals. So we re-enabled ICANON but there is no
414 more "send eof to flush" going on (which is wrong and unportable
415 in itself). The correct way to handle too much output is to
416 buffer what could not be written and then write it again when
417 select returns ok for writing. This has it own set of
418 problems. Write is now asynchronous, is that a problem? How much
419 do we buffer, and what do we do when that limit is reached? */
421 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
422 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
423 #if 0 /* These settings only apply to non-ICANON mode. */
424 s.main.c_cc[VMIN] = 1;
425 s.main.c_cc[VTIME] = 0;
426 #endif
428 emacs_set_tty (out, &s, 0);
429 #endif /* not WINDOWSNT */
431 #endif /* not MSDOS */
434 /* Record a signal code and the action for it. */
435 struct save_signal
437 int code;
438 struct sigaction action;
441 static void save_signal_handlers (struct save_signal *);
442 static void restore_signal_handlers (struct save_signal *);
444 /* Suspend the Emacs process; give terminal to its superior. */
446 void
447 sys_suspend (void)
449 #ifndef DOS_NT
450 kill (0, SIGTSTP);
451 #else
452 /* On a system where suspending is not implemented,
453 instead fork a subshell and let it talk directly to the terminal
454 while we wait. */
455 sys_subshell ();
457 #endif
460 /* Fork a subshell. */
462 void
463 sys_subshell (void)
465 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
466 int st;
467 #ifdef MSDOS
468 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
469 #else
470 char oldwd[MAX_UTF8_PATH];
471 #endif
472 #endif
473 pid_t pid;
474 int status;
475 struct save_signal saved_handlers[5];
476 char *str = SSDATA (encode_current_directory ());
478 #ifdef DOS_NT
479 pid = 0;
480 #else
482 char *volatile str_volatile = str;
483 pid = vfork ();
484 str = str_volatile;
486 #endif
488 if (pid < 0)
489 error ("Can't spawn subshell");
491 saved_handlers[0].code = SIGINT;
492 saved_handlers[1].code = SIGQUIT;
493 saved_handlers[2].code = SIGTERM;
494 #ifdef USABLE_SIGIO
495 saved_handlers[3].code = SIGIO;
496 saved_handlers[4].code = 0;
497 #else
498 saved_handlers[3].code = 0;
499 #endif
501 #ifdef DOS_NT
502 save_signal_handlers (saved_handlers);
503 #endif
505 if (pid == 0)
507 const char *sh = 0;
509 #ifdef DOS_NT /* MW, Aug 1993 */
510 getcwd (oldwd, sizeof oldwd);
511 if (sh == 0)
512 sh = egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
513 #endif
514 if (sh == 0)
515 sh = egetenv ("SHELL");
516 if (sh == 0)
517 sh = "sh";
519 /* Use our buffer's default directory for the subshell. */
520 if (chdir (str) != 0)
522 #ifndef DOS_NT
523 emacs_perror (str);
524 _exit (EXIT_CANCELED);
525 #endif
528 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
530 char *epwd = getenv ("PWD");
531 char old_pwd[MAXPATHLEN+1+4];
533 /* If PWD is set, pass it with corrected value. */
534 if (epwd)
536 strcpy (old_pwd, epwd);
537 setenv ("PWD", str, 1);
539 st = system (sh);
540 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
541 if (epwd)
542 putenv (old_pwd); /* restore previous value */
544 #else /* not MSDOS */
545 #ifdef WINDOWSNT
546 /* Waits for process completion */
547 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
548 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
549 if (pid == -1)
550 write (1, "Can't execute subshell", 22);
551 #else /* not WINDOWSNT */
552 execlp (sh, sh, (char *) 0);
553 emacs_perror (sh);
554 _exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
555 #endif /* not WINDOWSNT */
556 #endif /* not MSDOS */
559 /* Do this now if we did not do it before. */
560 #ifndef MSDOS
561 save_signal_handlers (saved_handlers);
562 #endif
564 #ifndef DOS_NT
565 wait_for_termination (pid, &status, 0);
566 #endif
567 restore_signal_handlers (saved_handlers);
570 static void
571 save_signal_handlers (struct save_signal *saved_handlers)
573 while (saved_handlers->code)
575 struct sigaction action;
576 emacs_sigaction_init (&action, SIG_IGN);
577 sigaction (saved_handlers->code, &action, &saved_handlers->action);
578 saved_handlers++;
582 static void
583 restore_signal_handlers (struct save_signal *saved_handlers)
585 while (saved_handlers->code)
587 sigaction (saved_handlers->code, &saved_handlers->action, 0);
588 saved_handlers++;
592 #ifdef USABLE_SIGIO
593 static int old_fcntl_flags[FD_SETSIZE];
594 #endif
596 void
597 init_sigio (int fd)
599 #ifdef USABLE_SIGIO
600 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
601 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
602 interrupts_deferred = 0;
603 #endif
606 static void
607 reset_sigio (int fd)
609 #ifdef USABLE_SIGIO
610 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
611 #endif
614 void
615 request_sigio (void)
617 #ifdef USABLE_SIGIO
618 sigset_t unblocked;
620 if (noninteractive)
621 return;
623 sigemptyset (&unblocked);
624 # ifdef SIGWINCH
625 sigaddset (&unblocked, SIGWINCH);
626 # endif
627 sigaddset (&unblocked, SIGIO);
628 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
630 interrupts_deferred = 0;
631 #endif
634 void
635 unrequest_sigio (void)
637 #ifdef USABLE_SIGIO
638 sigset_t blocked;
640 if (noninteractive)
641 return;
643 sigemptyset (&blocked);
644 # ifdef SIGWINCH
645 sigaddset (&blocked, SIGWINCH);
646 # endif
647 sigaddset (&blocked, SIGIO);
648 pthread_sigmask (SIG_BLOCK, &blocked, 0);
649 interrupts_deferred = 1;
650 #endif
653 void
654 ignore_sigio (void)
656 #ifdef USABLE_SIGIO
657 signal (SIGIO, SIG_IGN);
658 #endif
662 /* Saving and restoring the process group of Emacs's terminal. */
664 /* The process group of which Emacs was a member when it initially
665 started.
667 If Emacs was in its own process group (i.e. inherited_pgroup ==
668 getpid ()), then we know we're running under a shell with job
669 control (Emacs would never be run as part of a pipeline).
670 Everything is fine.
672 If Emacs was not in its own process group, then we know we're
673 running under a shell (or a caller) that doesn't know how to
674 separate itself from Emacs (like sh). Emacs must be in its own
675 process group in order to receive SIGIO correctly. In this
676 situation, we put ourselves in our own pgroup, forcibly set the
677 tty's pgroup to our pgroup, and make sure to restore and reinstate
678 the tty's pgroup just like any other terminal setting. If
679 inherited_group was not the tty's pgroup, then we'll get a
680 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
681 it goes foreground in the future, which is what should happen. */
683 static pid_t inherited_pgroup;
685 void
686 init_foreground_group (void)
688 pid_t pgrp = getpgrp ();
689 inherited_pgroup = getpid () == pgrp ? 0 : pgrp;
692 /* Block and unblock SIGTTOU. */
694 void
695 block_tty_out_signal (void)
697 #ifdef SIGTTOU
698 sigset_t blocked;
699 sigemptyset (&blocked);
700 sigaddset (&blocked, SIGTTOU);
701 pthread_sigmask (SIG_BLOCK, &blocked, 0);
702 #endif
705 void
706 unblock_tty_out_signal (void)
708 #ifdef SIGTTOU
709 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
710 #endif
713 /* Safely set a controlling terminal FD's process group to PGID.
714 If we are not in the foreground already, POSIX requires tcsetpgrp
715 to deliver a SIGTTOU signal, which would stop us. This is an
716 annoyance, so temporarily ignore the signal.
718 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
719 skip all this unless SIGTTOU is defined. */
720 static void
721 tcsetpgrp_without_stopping (int fd, pid_t pgid)
723 #ifdef SIGTTOU
724 block_input ();
725 block_tty_out_signal ();
726 tcsetpgrp (fd, pgid);
727 unblock_tty_out_signal ();
728 unblock_input ();
729 #endif
732 /* Split off the foreground process group to Emacs alone. When we are
733 in the foreground, but not started in our own process group,
734 redirect the tty device handle FD to point to our own process
735 group. FD must be the file descriptor of the controlling tty. */
736 static void
737 narrow_foreground_group (int fd)
739 if (inherited_pgroup && setpgid (0, 0) == 0)
740 tcsetpgrp_without_stopping (fd, getpid ());
743 /* Set the tty to our original foreground group. */
744 static void
745 widen_foreground_group (int fd)
747 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
748 tcsetpgrp_without_stopping (fd, inherited_pgroup);
751 /* Getting and setting emacs_tty structures. */
753 /* Set *TC to the parameters associated with the terminal FD,
754 or clear it if the parameters are not available. */
755 static void
756 emacs_get_tty (int fd, struct emacs_tty *settings)
758 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
759 #ifndef DOS_NT
760 /* We have those nifty POSIX tcmumbleattr functions. */
761 memset (&settings->main, 0, sizeof (settings->main));
762 tcgetattr (fd, &settings->main);
763 #endif
767 /* Set the parameters of the tty on FD according to the contents of
768 *SETTINGS. If FLUSHP, discard input.
769 Return 0 if all went well, and -1 (setting errno) if anything failed. */
771 static int
772 emacs_set_tty (int fd, struct emacs_tty *settings, bool flushp)
774 /* Set the primary parameters - baud rate, character size, etcetera. */
775 #ifndef DOS_NT
776 int i;
777 /* We have those nifty POSIX tcmumbleattr functions.
778 William J. Smith <wjs@wiis.wang.com> writes:
779 "POSIX 1003.1 defines tcsetattr to return success if it was
780 able to perform any of the requested actions, even if some
781 of the requested actions could not be performed.
782 We must read settings back to ensure tty setup properly.
783 AIX requires this to keep tty from hanging occasionally." */
784 /* This make sure that we don't loop indefinitely in here. */
785 for (i = 0 ; i < 10 ; i++)
786 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
788 if (errno == EINTR)
789 continue;
790 else
791 return -1;
793 else
795 struct termios new;
797 memset (&new, 0, sizeof (new));
798 /* Get the current settings, and see if they're what we asked for. */
799 tcgetattr (fd, &new);
800 /* We cannot use memcmp on the whole structure here because under
801 * aix386 the termios structure has some reserved field that may
802 * not be filled in.
804 if ( new.c_iflag == settings->main.c_iflag
805 && new.c_oflag == settings->main.c_oflag
806 && new.c_cflag == settings->main.c_cflag
807 && new.c_lflag == settings->main.c_lflag
808 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
809 break;
810 else
811 continue;
813 #endif
815 /* We have survived the tempest. */
816 return 0;
821 #ifdef F_SETOWN
822 static int old_fcntl_owner[FD_SETSIZE];
823 #endif /* F_SETOWN */
825 /* This may also be defined in stdio,
826 but if so, this does no harm,
827 and using the same name avoids wasting the other one's space. */
829 #if defined (USG)
830 unsigned char _sobuf[BUFSIZ+8];
831 #else
832 char _sobuf[BUFSIZ];
833 #endif
835 /* Initialize the terminal mode on all tty devices that are currently
836 open. */
838 void
839 init_all_sys_modes (void)
841 struct tty_display_info *tty;
842 for (tty = tty_list; tty; tty = tty->next)
843 init_sys_modes (tty);
846 /* Initialize the terminal mode on the given tty device. */
848 void
849 init_sys_modes (struct tty_display_info *tty_out)
851 struct emacs_tty tty;
852 Lisp_Object terminal;
854 Vtty_erase_char = Qnil;
856 if (noninteractive)
857 return;
859 if (!tty_out->output)
860 return; /* The tty is suspended. */
862 narrow_foreground_group (fileno (tty_out->input));
864 if (! tty_out->old_tty)
865 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
867 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
869 tty = *tty_out->old_tty;
871 #if !defined (DOS_NT)
872 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
874 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
875 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
876 #ifdef INLCR /* I'm just being cautious,
877 since I can't check how widespread INLCR is--rms. */
878 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
879 #endif
880 #ifdef ISTRIP
881 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
882 #endif
883 tty.main.c_lflag &= ~ECHO; /* Disable echo */
884 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
885 #ifdef IEXTEN
886 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
887 #endif
888 tty.main.c_lflag |= ISIG; /* Enable signals */
889 if (tty_out->flow_control)
891 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
892 #ifdef IXANY
893 tty.main.c_iflag &= ~IXANY;
894 #endif /* IXANY */
896 else
897 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
898 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
899 on output */
900 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
901 #ifdef CS8
902 if (tty_out->meta_key)
904 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
905 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
907 #endif
909 XSETTERMINAL(terminal, tty_out->terminal);
910 if (!NILP (Fcontrolling_tty_p (terminal)))
912 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
913 /* Set up C-g for both SIGQUIT and SIGINT.
914 We don't know which we will get, but we handle both alike
915 so which one it really gives us does not matter. */
916 tty.main.c_cc[VQUIT] = quit_char;
918 else
920 /* We normally don't get interrupt or quit signals from tty
921 devices other than our controlling terminal; therefore,
922 we must handle C-g as normal input. Unfortunately, this
923 means that the interrupt and quit feature must be
924 disabled on secondary ttys, or we would not even see the
925 keypress.
927 Note that even though emacsclient could have special code
928 to pass SIGINT to Emacs, we should _not_ enable
929 interrupt/quit keys for emacsclient frames. This means
930 that we can't break out of loops in C code from a
931 secondary tty frame, but we can always decide what
932 display the C-g came from, which is more important from a
933 usability point of view. (Consider the case when two
934 people work together using the same Emacs instance.) */
935 tty.main.c_cc[VINTR] = CDISABLE;
936 tty.main.c_cc[VQUIT] = CDISABLE;
938 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
939 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
940 #ifdef VSWTCH
941 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
942 of C-z */
943 #endif /* VSWTCH */
945 #ifdef VSUSP
946 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
947 #endif /* VSUSP */
948 #ifdef V_DSUSP
949 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
950 #endif /* V_DSUSP */
951 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
952 tty.main.c_cc[VDSUSP] = CDISABLE;
953 #endif /* VDSUSP */
954 #ifdef VLNEXT
955 tty.main.c_cc[VLNEXT] = CDISABLE;
956 #endif /* VLNEXT */
957 #ifdef VREPRINT
958 tty.main.c_cc[VREPRINT] = CDISABLE;
959 #endif /* VREPRINT */
960 #ifdef VWERASE
961 tty.main.c_cc[VWERASE] = CDISABLE;
962 #endif /* VWERASE */
963 #ifdef VDISCARD
964 tty.main.c_cc[VDISCARD] = CDISABLE;
965 #endif /* VDISCARD */
967 if (tty_out->flow_control)
969 #ifdef VSTART
970 tty.main.c_cc[VSTART] = '\021';
971 #endif /* VSTART */
972 #ifdef VSTOP
973 tty.main.c_cc[VSTOP] = '\023';
974 #endif /* VSTOP */
976 else
978 #ifdef VSTART
979 tty.main.c_cc[VSTART] = CDISABLE;
980 #endif /* VSTART */
981 #ifdef VSTOP
982 tty.main.c_cc[VSTOP] = CDISABLE;
983 #endif /* VSTOP */
986 #ifdef AIX
987 tty.main.c_cc[VSTRT] = CDISABLE;
988 tty.main.c_cc[VSTOP] = CDISABLE;
989 tty.main.c_cc[VSUSP] = CDISABLE;
990 tty.main.c_cc[VDSUSP] = CDISABLE;
991 if (tty_out->flow_control)
993 #ifdef VSTART
994 tty.main.c_cc[VSTART] = '\021';
995 #endif /* VSTART */
996 #ifdef VSTOP
997 tty.main.c_cc[VSTOP] = '\023';
998 #endif /* VSTOP */
1000 /* Also, PTY overloads NUL and BREAK.
1001 don't ignore break, but don't signal either, so it looks like NUL.
1002 This really serves a purpose only if running in an XTERM window
1003 or via TELNET or the like, but does no harm elsewhere. */
1004 tty.main.c_iflag &= ~IGNBRK;
1005 tty.main.c_iflag &= ~BRKINT;
1006 #endif
1007 #endif /* not DOS_NT */
1009 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1010 if (!tty_out->term_initted)
1011 internal_terminal_init ();
1012 dos_ttraw (tty_out);
1013 #endif
1015 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1017 /* This code added to insure that, if flow-control is not to be used,
1018 we have an unlocked terminal at the start. */
1020 #ifdef TCXONC
1021 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1022 #endif
1023 #ifdef TIOCSTART
1024 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1025 #endif
1027 #if !defined (DOS_NT)
1028 #ifdef TCOON
1029 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1030 #endif
1031 #endif
1033 #ifdef F_GETOWN
1034 if (interrupt_input)
1036 old_fcntl_owner[fileno (tty_out->input)] =
1037 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1038 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1039 init_sigio (fileno (tty_out->input));
1040 #ifdef HAVE_GPM
1041 if (gpm_tty == tty_out)
1043 /* Arrange for mouse events to give us SIGIO signals. */
1044 fcntl (gpm_fd, F_SETOWN, getpid ());
1045 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1046 init_sigio (gpm_fd);
1048 #endif /* HAVE_GPM */
1050 #endif /* F_GETOWN */
1052 #ifdef _IOFBF
1053 /* This symbol is defined on recent USG systems.
1054 Someone says without this call USG won't really buffer the file
1055 even with a call to setbuf. */
1056 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1057 #else
1058 setbuf (tty_out->output, (char *) _sobuf);
1059 #endif
1061 if (tty_out->terminal->set_terminal_modes_hook)
1062 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1064 if (!tty_out->term_initted)
1066 Lisp_Object tail, frame;
1067 FOR_EACH_FRAME (tail, frame)
1069 /* XXX This needs to be revised. */
1070 if (FRAME_TERMCAP_P (XFRAME (frame))
1071 && FRAME_TTY (XFRAME (frame)) == tty_out)
1072 init_frame_faces (XFRAME (frame));
1076 if (tty_out->term_initted && no_redraw_on_reenter)
1078 /* We used to call "direct_output_forward_char(0)" here,
1079 but it's not clear why, since it may not do anything anyway. */
1081 else
1083 Lisp_Object tail, frame;
1084 frame_garbaged = 1;
1085 FOR_EACH_FRAME (tail, frame)
1087 if ((FRAME_TERMCAP_P (XFRAME (frame))
1088 || FRAME_MSDOS_P (XFRAME (frame)))
1089 && FRAME_TTY (XFRAME (frame)) == tty_out)
1090 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1094 tty_out->term_initted = 1;
1097 /* Return true if safe to use tabs in output.
1098 At the time this is called, init_sys_modes has not been done yet. */
1100 bool
1101 tabs_safe_p (int fd)
1103 struct emacs_tty etty;
1105 emacs_get_tty (fd, &etty);
1106 #ifndef DOS_NT
1107 #ifdef TABDLY
1108 return ((etty.main.c_oflag & TABDLY) != TAB3);
1109 #else /* not TABDLY */
1110 return 1;
1111 #endif /* not TABDLY */
1112 #else /* DOS_NT */
1113 return 0;
1114 #endif /* DOS_NT */
1117 /* Get terminal size from system.
1118 Store number of lines into *HEIGHTP and width into *WIDTHP.
1119 We store 0 if there's no valid information. */
1121 void
1122 get_tty_size (int fd, int *widthp, int *heightp)
1124 #if defined TIOCGWINSZ
1126 /* BSD-style. */
1127 struct winsize size;
1129 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1130 *widthp = *heightp = 0;
1131 else
1133 *widthp = size.ws_col;
1134 *heightp = size.ws_row;
1137 #elif defined TIOCGSIZE
1139 /* SunOS - style. */
1140 struct ttysize size;
1142 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1143 *widthp = *heightp = 0;
1144 else
1146 *widthp = size.ts_cols;
1147 *heightp = size.ts_lines;
1150 #elif defined WINDOWSNT
1152 CONSOLE_SCREEN_BUFFER_INFO info;
1153 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1155 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1156 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1158 else
1159 *widthp = *heightp = 0;
1161 #elif defined MSDOS
1163 *widthp = ScreenCols ();
1164 *heightp = ScreenRows ();
1166 #else /* system doesn't know size */
1168 *widthp = 0;
1169 *heightp = 0;
1171 #endif
1174 /* Set the logical window size associated with descriptor FD
1175 to HEIGHT and WIDTH. This is used mainly with ptys.
1176 Return a negative value on failure. */
1179 set_window_size (int fd, int height, int width)
1181 #ifdef TIOCSWINSZ
1183 /* BSD-style. */
1184 struct winsize size;
1185 size.ws_row = height;
1186 size.ws_col = width;
1188 return ioctl (fd, TIOCSWINSZ, &size);
1190 #else
1191 #ifdef TIOCSSIZE
1193 /* SunOS - style. */
1194 struct ttysize size;
1195 size.ts_lines = height;
1196 size.ts_cols = width;
1198 return ioctl (fd, TIOCGSIZE, &size);
1199 #else
1200 return -1;
1201 #endif /* not SunOS-style */
1202 #endif /* not BSD-style */
1207 /* Prepare all terminal devices for exiting Emacs. */
1209 void
1210 reset_all_sys_modes (void)
1212 struct tty_display_info *tty;
1213 for (tty = tty_list; tty; tty = tty->next)
1214 reset_sys_modes (tty);
1217 /* Prepare the terminal for closing it; move the cursor to the
1218 bottom of the frame, turn off interrupt-driven I/O, etc. */
1220 void
1221 reset_sys_modes (struct tty_display_info *tty_out)
1223 if (noninteractive)
1225 fflush (stdout);
1226 return;
1228 if (!tty_out->term_initted)
1229 return;
1231 if (!tty_out->output)
1232 return; /* The tty is suspended. */
1234 /* Go to and clear the last line of the terminal. */
1236 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1238 /* Code adapted from tty_clear_end_of_line. */
1239 if (tty_out->TS_clr_line)
1241 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1243 else
1244 { /* have to do it the hard way */
1245 int i;
1246 tty_turn_off_insert (tty_out);
1248 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1250 fputc (' ', tty_out->output);
1254 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1255 fflush (tty_out->output);
1257 if (tty_out->terminal->reset_terminal_modes_hook)
1258 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1260 /* Avoid possible loss of output when changing terminal modes. */
1261 while (fdatasync (fileno (tty_out->output)) != 0 && errno == EINTR)
1262 continue;
1264 #ifndef DOS_NT
1265 #ifdef F_SETOWN
1266 if (interrupt_input)
1268 reset_sigio (fileno (tty_out->input));
1269 fcntl (fileno (tty_out->input), F_SETOWN,
1270 old_fcntl_owner[fileno (tty_out->input)]);
1272 #endif /* F_SETOWN */
1273 fcntl (fileno (tty_out->input), F_SETFL,
1274 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1275 #endif
1277 if (tty_out->old_tty)
1278 while (emacs_set_tty (fileno (tty_out->input),
1279 tty_out->old_tty, 0) < 0 && errno == EINTR)
1282 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1283 dos_ttcooked ();
1284 #endif
1286 widen_foreground_group (fileno (tty_out->input));
1289 #ifdef HAVE_PTYS
1291 /* Set up the proper status flags for use of a pty. */
1293 void
1294 setup_pty (int fd)
1296 /* I'm told that TOICREMOTE does not mean control chars
1297 "can't be sent" but rather that they don't have
1298 input-editing or signaling effects.
1299 That should be good, because we have other ways
1300 to do those things in Emacs.
1301 However, telnet mode seems not to work on 4.2.
1302 So TIOCREMOTE is turned off now. */
1304 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1305 will hang. In particular, the "timeout" feature (which
1306 causes a read to return if there is no data available)
1307 does this. Also it is known that telnet mode will hang
1308 in such a way that Emacs must be stopped (perhaps this
1309 is the same problem).
1311 If TIOCREMOTE is turned off, then there is a bug in
1312 hp-ux which sometimes loses data. Apparently the
1313 code which blocks the master process when the internal
1314 buffer fills up does not work. Other than this,
1315 though, everything else seems to work fine.
1317 Since the latter lossage is more benign, we may as well
1318 lose that way. -- cph */
1319 #ifdef FIONBIO
1320 #if defined (UNIX98_PTYS)
1322 int on = 1;
1323 ioctl (fd, FIONBIO, &on);
1325 #endif
1326 #endif
1328 #endif /* HAVE_PTYS */
1330 #ifdef HAVE_SOCKETS
1331 #include <sys/socket.h>
1332 #include <netdb.h>
1333 #endif /* HAVE_SOCKETS */
1335 #ifdef TRY_AGAIN
1336 #ifndef HAVE_H_ERRNO
1337 extern int h_errno;
1338 #endif
1339 #endif /* TRY_AGAIN */
1341 void
1342 init_system_name (void)
1344 #ifndef HAVE_GETHOSTNAME
1345 struct utsname uts;
1346 uname (&uts);
1347 Vsystem_name = build_string (uts.nodename);
1348 #else /* HAVE_GETHOSTNAME */
1349 char *hostname_alloc = NULL;
1350 char hostname_buf[256];
1351 ptrdiff_t hostname_size = sizeof hostname_buf;
1352 char *hostname = hostname_buf;
1354 /* Try to get the host name; if the buffer is too short, try
1355 again. Apparently, the only indication gethostname gives of
1356 whether the buffer was large enough is the presence or absence
1357 of a '\0' in the string. Eech. */
1358 for (;;)
1360 gethostname (hostname, hostname_size - 1);
1361 hostname[hostname_size - 1] = '\0';
1363 /* Was the buffer large enough for the '\0'? */
1364 if (strlen (hostname) < hostname_size - 1)
1365 break;
1367 hostname = hostname_alloc = xpalloc (hostname_alloc, &hostname_size, 1,
1368 min (PTRDIFF_MAX, SIZE_MAX), 1);
1370 #ifdef HAVE_SOCKETS
1371 /* Turn the hostname into the official, fully-qualified hostname.
1372 Don't do this if we're going to dump; this can confuse system
1373 libraries on some machines and make the dumped emacs core dump. */
1374 #ifndef CANNOT_DUMP
1375 if (initialized)
1376 #endif /* not CANNOT_DUMP */
1377 if (! strchr (hostname, '.'))
1379 int count;
1380 #ifdef HAVE_GETADDRINFO
1381 struct addrinfo *res;
1382 struct addrinfo hints;
1383 int ret;
1385 memset (&hints, 0, sizeof (hints));
1386 hints.ai_socktype = SOCK_STREAM;
1387 hints.ai_flags = AI_CANONNAME;
1389 for (count = 0;; count++)
1391 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1392 || ret != EAI_AGAIN)
1393 break;
1395 if (count >= 5)
1396 break;
1397 Fsleep_for (make_number (1), Qnil);
1400 if (ret == 0)
1402 struct addrinfo *it = res;
1403 while (it)
1405 char *fqdn = it->ai_canonname;
1406 if (fqdn && strchr (fqdn, '.')
1407 && strcmp (fqdn, "localhost.localdomain") != 0)
1408 break;
1409 it = it->ai_next;
1411 if (it)
1413 ptrdiff_t len = strlen (it->ai_canonname);
1414 if (hostname_size <= len)
1416 hostname_size = len + 1;
1417 hostname = hostname_alloc = xrealloc (hostname_alloc,
1418 hostname_size);
1420 strcpy (hostname, it->ai_canonname);
1422 freeaddrinfo (res);
1424 #else /* !HAVE_GETADDRINFO */
1425 struct hostent *hp;
1426 for (count = 0;; count++)
1429 #ifdef TRY_AGAIN
1430 h_errno = 0;
1431 #endif
1432 hp = gethostbyname (hostname);
1433 #ifdef TRY_AGAIN
1434 if (! (hp == 0 && h_errno == TRY_AGAIN))
1435 #endif
1437 break;
1439 if (count >= 5)
1440 break;
1441 Fsleep_for (make_number (1), Qnil);
1444 if (hp)
1446 char *fqdn = (char *) hp->h_name;
1448 if (!strchr (fqdn, '.'))
1450 /* We still don't have a fully qualified domain name.
1451 Try to find one in the list of alternate names */
1452 char **alias = hp->h_aliases;
1453 while (*alias
1454 && (!strchr (*alias, '.')
1455 || !strcmp (*alias, "localhost.localdomain")))
1456 alias++;
1457 if (*alias)
1458 fqdn = *alias;
1460 hostname = fqdn;
1462 #endif /* !HAVE_GETADDRINFO */
1464 #endif /* HAVE_SOCKETS */
1465 Vsystem_name = build_string (hostname);
1466 xfree (hostname_alloc);
1467 #endif /* HAVE_GETHOSTNAME */
1469 char *p;
1470 for (p = SSDATA (Vsystem_name); *p; p++)
1471 if (*p == ' ' || *p == '\t')
1472 *p = '-';
1476 sigset_t empty_mask;
1478 static struct sigaction process_fatal_action;
1480 static int
1481 emacs_sigaction_flags (void)
1483 #ifdef SA_RESTART
1484 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1485 'select') to reset their timeout on some platforms (e.g.,
1486 HP-UX 11), which is not what we want. Also, when Emacs is
1487 interactive, we don't want SA_RESTART because we need to poll
1488 for pending input so we need long-running syscalls to be interrupted
1489 after a signal that sets pending_signals.
1491 Non-interactive keyboard input goes through stdio, where we
1492 always want restartable system calls. */
1493 if (noninteractive)
1494 return SA_RESTART;
1495 #endif
1496 return 0;
1499 /* Store into *ACTION a signal action suitable for Emacs, with handler
1500 HANDLER. */
1501 void
1502 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1504 sigemptyset (&action->sa_mask);
1506 /* When handling a signal, block nonfatal system signals that are caught
1507 by Emacs. This makes race conditions less likely. */
1508 sigaddset (&action->sa_mask, SIGALRM);
1509 sigaddset (&action->sa_mask, SIGCHLD);
1510 #ifdef SIGDANGER
1511 sigaddset (&action->sa_mask, SIGDANGER);
1512 #endif
1513 #ifdef PROFILER_CPU_SUPPORT
1514 sigaddset (&action->sa_mask, SIGPROF);
1515 #endif
1516 #ifdef SIGWINCH
1517 sigaddset (&action->sa_mask, SIGWINCH);
1518 #endif
1519 if (! noninteractive)
1521 sigaddset (&action->sa_mask, SIGINT);
1522 sigaddset (&action->sa_mask, SIGQUIT);
1523 #ifdef USABLE_SIGIO
1524 sigaddset (&action->sa_mask, SIGIO);
1525 #endif
1528 if (! IEEE_FLOATING_POINT)
1529 sigaddset (&action->sa_mask, SIGFPE);
1531 action->sa_handler = handler;
1532 action->sa_flags = emacs_sigaction_flags ();
1535 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1536 static pthread_t main_thread;
1537 #endif
1539 /* SIG has arrived at the current process. Deliver it to the main
1540 thread, which should handle it with HANDLER.
1542 If we are on the main thread, handle the signal SIG with HANDLER.
1543 Otherwise, redirect the signal to the main thread, blocking it from
1544 this thread. POSIX says any thread can receive a signal that is
1545 associated with a process, process group, or asynchronous event.
1546 On GNU/Linux that is not true, but for other systems (FreeBSD at
1547 least) it is. */
1548 void
1549 deliver_process_signal (int sig, signal_handler_t handler)
1551 /* Preserve errno, to avoid race conditions with signal handlers that
1552 might change errno. Races can occur even in single-threaded hosts. */
1553 int old_errno = errno;
1555 bool on_main_thread = true;
1556 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1557 if (! pthread_equal (pthread_self (), main_thread))
1559 sigset_t blocked;
1560 sigemptyset (&blocked);
1561 sigaddset (&blocked, sig);
1562 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1563 pthread_kill (main_thread, sig);
1564 on_main_thread = false;
1566 #endif
1567 if (on_main_thread)
1568 handler (sig);
1570 errno = old_errno;
1573 /* Static location to save a fatal backtrace in a thread.
1574 FIXME: If two subsidiary threads fail simultaneously, the resulting
1575 backtrace may be garbage. */
1576 enum { BACKTRACE_LIMIT_MAX = 500 };
1577 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1578 static int thread_backtrace_npointers;
1580 /* SIG has arrived at the current thread.
1581 If we are on the main thread, handle the signal SIG with HANDLER.
1582 Otherwise, this is a fatal error in the handling thread. */
1583 static void
1584 deliver_thread_signal (int sig, signal_handler_t handler)
1586 int old_errno = errno;
1588 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1589 if (! pthread_equal (pthread_self (), main_thread))
1591 thread_backtrace_npointers
1592 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1593 sigaction (sig, &process_fatal_action, 0);
1594 pthread_kill (main_thread, sig);
1596 /* Avoid further damage while the main thread is exiting. */
1597 while (1)
1598 sigsuspend (&empty_mask);
1600 #endif
1602 handler (sig);
1603 errno = old_errno;
1606 #if !HAVE_DECL_SYS_SIGLIST
1607 # undef sys_siglist
1608 # ifdef _sys_siglist
1609 # define sys_siglist _sys_siglist
1610 # elif HAVE_DECL___SYS_SIGLIST
1611 # define sys_siglist __sys_siglist
1612 # else
1613 # define sys_siglist my_sys_siglist
1614 static char const *sys_siglist[NSIG];
1615 # endif
1616 #endif
1618 #ifdef _sys_nsig
1619 # define sys_siglist_entries _sys_nsig
1620 #else
1621 # define sys_siglist_entries NSIG
1622 #endif
1624 /* Handle bus errors, invalid instruction, etc. */
1625 static void
1626 handle_fatal_signal (int sig)
1628 terminate_due_to_signal (sig, 40);
1631 static void
1632 deliver_fatal_signal (int sig)
1634 deliver_process_signal (sig, handle_fatal_signal);
1637 static void
1638 deliver_fatal_thread_signal (int sig)
1640 deliver_thread_signal (sig, handle_fatal_signal);
1643 static _Noreturn void
1644 handle_arith_signal (int sig)
1646 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1647 xsignal0 (Qarith_error);
1650 static void
1651 deliver_arith_signal (int sig)
1653 deliver_thread_signal (sig, handle_arith_signal);
1656 #ifdef SIGDANGER
1658 /* Handler for SIGDANGER. */
1659 static void
1660 handle_danger_signal (int sig)
1662 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1664 /* It might be unsafe to call do_auto_save now. */
1665 force_auto_save_soon ();
1668 static void
1669 deliver_danger_signal (int sig)
1671 deliver_process_signal (sig, handle_danger_signal);
1673 #endif
1675 /* Treat SIG as a terminating signal, unless it is already ignored and
1676 we are in --batch mode. Among other things, this makes nohup work. */
1677 static void
1678 maybe_fatal_sig (int sig)
1680 bool catch_sig = !noninteractive;
1681 if (!catch_sig)
1683 struct sigaction old_action;
1684 sigaction (sig, 0, &old_action);
1685 catch_sig = old_action.sa_handler != SIG_IGN;
1687 if (catch_sig)
1688 sigaction (sig, &process_fatal_action, 0);
1691 void
1692 init_signals (bool dumping)
1694 struct sigaction thread_fatal_action;
1695 struct sigaction action;
1697 sigemptyset (&empty_mask);
1699 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1700 main_thread = pthread_self ();
1701 #endif
1703 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1704 if (! initialized)
1706 sys_siglist[SIGABRT] = "Aborted";
1707 # ifdef SIGAIO
1708 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1709 # endif
1710 sys_siglist[SIGALRM] = "Alarm clock";
1711 # ifdef SIGBUS
1712 sys_siglist[SIGBUS] = "Bus error";
1713 # endif
1714 sys_siglist[SIGCHLD] = "Child status changed";
1715 # ifdef SIGCONT
1716 sys_siglist[SIGCONT] = "Continued";
1717 # endif
1718 # ifdef SIGDANGER
1719 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1720 # endif
1721 # ifdef SIGDGNOTIFY
1722 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1723 # endif
1724 # ifdef SIGEMT
1725 sys_siglist[SIGEMT] = "Emulation trap";
1726 # endif
1727 sys_siglist[SIGFPE] = "Arithmetic exception";
1728 # ifdef SIGFREEZE
1729 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1730 # endif
1731 # ifdef SIGGRANT
1732 sys_siglist[SIGGRANT] = "Monitor mode granted";
1733 # endif
1734 sys_siglist[SIGHUP] = "Hangup";
1735 sys_siglist[SIGILL] = "Illegal instruction";
1736 sys_siglist[SIGINT] = "Interrupt";
1737 # ifdef SIGIO
1738 sys_siglist[SIGIO] = "I/O possible";
1739 # endif
1740 # ifdef SIGIOINT
1741 sys_siglist[SIGIOINT] = "I/O intervention required";
1742 # endif
1743 # ifdef SIGIOT
1744 sys_siglist[SIGIOT] = "IOT trap";
1745 # endif
1746 sys_siglist[SIGKILL] = "Killed";
1747 # ifdef SIGLOST
1748 sys_siglist[SIGLOST] = "Resource lost";
1749 # endif
1750 # ifdef SIGLWP
1751 sys_siglist[SIGLWP] = "SIGLWP";
1752 # endif
1753 # ifdef SIGMSG
1754 sys_siglist[SIGMSG] = "Monitor mode data available";
1755 # endif
1756 # ifdef SIGPHONE
1757 sys_siglist[SIGWIND] = "SIGPHONE";
1758 # endif
1759 sys_siglist[SIGPIPE] = "Broken pipe";
1760 # ifdef SIGPOLL
1761 sys_siglist[SIGPOLL] = "Pollable event occurred";
1762 # endif
1763 # ifdef SIGPROF
1764 sys_siglist[SIGPROF] = "Profiling timer expired";
1765 # endif
1766 # ifdef SIGPTY
1767 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1768 # endif
1769 # ifdef SIGPWR
1770 sys_siglist[SIGPWR] = "Power-fail restart";
1771 # endif
1772 sys_siglist[SIGQUIT] = "Quit";
1773 # ifdef SIGRETRACT
1774 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1775 # endif
1776 # ifdef SIGSAK
1777 sys_siglist[SIGSAK] = "Secure attention";
1778 # endif
1779 sys_siglist[SIGSEGV] = "Segmentation violation";
1780 # ifdef SIGSOUND
1781 sys_siglist[SIGSOUND] = "Sound completed";
1782 # endif
1783 # ifdef SIGSTOP
1784 sys_siglist[SIGSTOP] = "Stopped (signal)";
1785 # endif
1786 # ifdef SIGSTP
1787 sys_siglist[SIGSTP] = "Stopped (user)";
1788 # endif
1789 # ifdef SIGSYS
1790 sys_siglist[SIGSYS] = "Bad argument to system call";
1791 # endif
1792 sys_siglist[SIGTERM] = "Terminated";
1793 # ifdef SIGTHAW
1794 sys_siglist[SIGTHAW] = "SIGTHAW";
1795 # endif
1796 # ifdef SIGTRAP
1797 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1798 # endif
1799 # ifdef SIGTSTP
1800 sys_siglist[SIGTSTP] = "Stopped (user)";
1801 # endif
1802 # ifdef SIGTTIN
1803 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1804 # endif
1805 # ifdef SIGTTOU
1806 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1807 # endif
1808 # ifdef SIGURG
1809 sys_siglist[SIGURG] = "Urgent I/O condition";
1810 # endif
1811 # ifdef SIGUSR1
1812 sys_siglist[SIGUSR1] = "User defined signal 1";
1813 # endif
1814 # ifdef SIGUSR2
1815 sys_siglist[SIGUSR2] = "User defined signal 2";
1816 # endif
1817 # ifdef SIGVTALRM
1818 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1819 # endif
1820 # ifdef SIGWAITING
1821 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1822 # endif
1823 # ifdef SIGWINCH
1824 sys_siglist[SIGWINCH] = "Window size changed";
1825 # endif
1826 # ifdef SIGWIND
1827 sys_siglist[SIGWIND] = "SIGWIND";
1828 # endif
1829 # ifdef SIGXCPU
1830 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1831 # endif
1832 # ifdef SIGXFSZ
1833 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1834 # endif
1836 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1838 /* Don't alter signal handlers if dumping. On some machines,
1839 changing signal handlers sets static data that would make signals
1840 fail to work right when the dumped Emacs is run. */
1841 if (dumping)
1842 return;
1844 sigfillset (&process_fatal_action.sa_mask);
1845 process_fatal_action.sa_handler = deliver_fatal_signal;
1846 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1848 sigfillset (&thread_fatal_action.sa_mask);
1849 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1850 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1852 /* SIGINT may need special treatment on MS-Windows. See
1853 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1854 Please update the doc of kill-emacs, kill-emacs-hook, and
1855 NEWS if you change this. */
1857 maybe_fatal_sig (SIGHUP);
1858 maybe_fatal_sig (SIGINT);
1859 maybe_fatal_sig (SIGTERM);
1861 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
1862 However, in batch mode leave SIGPIPE alone, as that causes Emacs
1863 to behave more like typical batch applications do. */
1864 if (! noninteractive)
1865 signal (SIGPIPE, SIG_IGN);
1867 sigaction (SIGQUIT, &process_fatal_action, 0);
1868 sigaction (SIGILL, &thread_fatal_action, 0);
1869 sigaction (SIGTRAP, &thread_fatal_action, 0);
1871 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
1872 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
1873 interpreter's floating point operations, so treat SIGFPE as an
1874 arith-error if it arises in the main thread. */
1875 if (IEEE_FLOATING_POINT)
1876 sigaction (SIGFPE, &thread_fatal_action, 0);
1877 else
1879 emacs_sigaction_init (&action, deliver_arith_signal);
1880 sigaction (SIGFPE, &action, 0);
1883 #ifdef SIGUSR1
1884 add_user_signal (SIGUSR1, "sigusr1");
1885 #endif
1886 #ifdef SIGUSR2
1887 add_user_signal (SIGUSR2, "sigusr2");
1888 #endif
1889 sigaction (SIGABRT, &thread_fatal_action, 0);
1890 #ifdef SIGPRE
1891 sigaction (SIGPRE, &thread_fatal_action, 0);
1892 #endif
1893 #ifdef SIGORE
1894 sigaction (SIGORE, &thread_fatal_action, 0);
1895 #endif
1896 #ifdef SIGUME
1897 sigaction (SIGUME, &thread_fatal_action, 0);
1898 #endif
1899 #ifdef SIGDLK
1900 sigaction (SIGDLK, &process_fatal_action, 0);
1901 #endif
1902 #ifdef SIGCPULIM
1903 sigaction (SIGCPULIM, &process_fatal_action, 0);
1904 #endif
1905 #ifdef SIGIOT
1906 sigaction (SIGIOT, &thread_fatal_action, 0);
1907 #endif
1908 #ifdef SIGEMT
1909 sigaction (SIGEMT, &thread_fatal_action, 0);
1910 #endif
1911 #ifdef SIGBUS
1912 sigaction (SIGBUS, &thread_fatal_action, 0);
1913 #endif
1914 sigaction (SIGSEGV, &thread_fatal_action, 0);
1915 #ifdef SIGSYS
1916 sigaction (SIGSYS, &thread_fatal_action, 0);
1917 #endif
1918 sigaction (SIGTERM, &process_fatal_action, 0);
1919 #ifdef SIGPROF
1920 signal (SIGPROF, SIG_IGN);
1921 #endif
1922 #ifdef SIGVTALRM
1923 sigaction (SIGVTALRM, &process_fatal_action, 0);
1924 #endif
1925 #ifdef SIGXCPU
1926 sigaction (SIGXCPU, &process_fatal_action, 0);
1927 #endif
1928 #ifdef SIGXFSZ
1929 sigaction (SIGXFSZ, &process_fatal_action, 0);
1930 #endif
1932 #ifdef SIGDANGER
1933 /* This just means available memory is getting low. */
1934 emacs_sigaction_init (&action, deliver_danger_signal);
1935 sigaction (SIGDANGER, &action, 0);
1936 #endif
1938 /* AIX-specific signals. */
1939 #ifdef SIGGRANT
1940 sigaction (SIGGRANT, &process_fatal_action, 0);
1941 #endif
1942 #ifdef SIGMIGRATE
1943 sigaction (SIGMIGRATE, &process_fatal_action, 0);
1944 #endif
1945 #ifdef SIGMSG
1946 sigaction (SIGMSG, &process_fatal_action, 0);
1947 #endif
1948 #ifdef SIGRETRACT
1949 sigaction (SIGRETRACT, &process_fatal_action, 0);
1950 #endif
1951 #ifdef SIGSAK
1952 sigaction (SIGSAK, &process_fatal_action, 0);
1953 #endif
1954 #ifdef SIGSOUND
1955 sigaction (SIGSOUND, &process_fatal_action, 0);
1956 #endif
1957 #ifdef SIGTALRM
1958 sigaction (SIGTALRM, &thread_fatal_action, 0);
1959 #endif
1962 #ifndef HAVE_RANDOM
1963 #ifdef random
1964 #define HAVE_RANDOM
1965 #endif
1966 #endif
1968 /* Figure out how many bits the system's random number generator uses.
1969 `random' and `lrand48' are assumed to return 31 usable bits.
1970 BSD `rand' returns a 31 bit value but the low order bits are unusable;
1971 so we'll shift it and treat it like the 15-bit USG `rand'. */
1973 #ifndef RAND_BITS
1974 # ifdef HAVE_RANDOM
1975 # define RAND_BITS 31
1976 # else /* !HAVE_RANDOM */
1977 # ifdef HAVE_LRAND48
1978 # define RAND_BITS 31
1979 # define random lrand48
1980 # else /* !HAVE_LRAND48 */
1981 # define RAND_BITS 15
1982 # if RAND_MAX == 32767
1983 # define random rand
1984 # else /* RAND_MAX != 32767 */
1985 # if RAND_MAX == 2147483647
1986 # define random() (rand () >> 16)
1987 # else /* RAND_MAX != 2147483647 */
1988 # ifdef USG
1989 # define random rand
1990 # else
1991 # define random() (rand () >> 16)
1992 # endif /* !USG */
1993 # endif /* RAND_MAX != 2147483647 */
1994 # endif /* RAND_MAX != 32767 */
1995 # endif /* !HAVE_LRAND48 */
1996 # endif /* !HAVE_RANDOM */
1997 #endif /* !RAND_BITS */
1999 void
2000 seed_random (void *seed, ptrdiff_t seed_size)
2002 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2003 unsigned int arg = 0;
2004 #else
2005 long int arg = 0;
2006 #endif
2007 unsigned char *argp = (unsigned char *) &arg;
2008 unsigned char *seedp = seed;
2009 ptrdiff_t i;
2010 for (i = 0; i < seed_size; i++)
2011 argp[i % sizeof arg] ^= seedp[i];
2012 #ifdef HAVE_RANDOM
2013 srandom (arg);
2014 #else
2015 # ifdef HAVE_LRAND48
2016 srand48 (arg);
2017 # else
2018 srand (arg);
2019 # endif
2020 #endif
2023 void
2024 init_random (void)
2026 struct timespec t = current_timespec ();
2027 uintmax_t v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2028 seed_random (&v, sizeof v);
2032 * Return a nonnegative random integer out of whatever we've got.
2033 * It contains enough bits to make a random (signed) Emacs fixnum.
2034 * This suffices even for a 64-bit architecture with a 15-bit rand.
2036 EMACS_INT
2037 get_random (void)
2039 EMACS_UINT val = 0;
2040 int i;
2041 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2042 val = (random () ^ (val << RAND_BITS)
2043 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2044 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2045 return val & INTMASK;
2048 #ifndef HAVE_SNPRINTF
2049 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2051 snprintf (char *buf, size_t bufsize, char const *format, ...)
2053 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2054 ptrdiff_t nbytes = size - 1;
2055 va_list ap;
2057 if (size)
2059 va_start (ap, format);
2060 nbytes = doprnt (buf, size, format, 0, ap);
2061 va_end (ap);
2064 if (nbytes == size - 1)
2066 /* Calculate the length of the string that would have been created
2067 had the buffer been large enough. */
2068 char stackbuf[4000];
2069 char *b = stackbuf;
2070 ptrdiff_t bsize = sizeof stackbuf;
2071 va_start (ap, format);
2072 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2073 va_end (ap);
2074 if (b != stackbuf)
2075 xfree (b);
2078 if (INT_MAX < nbytes)
2080 #ifdef EOVERFLOW
2081 errno = EOVERFLOW;
2082 #else
2083 errno = EDOM;
2084 #endif
2085 return -1;
2087 return nbytes;
2089 #endif
2091 /* If a backtrace is available, output the top lines of it to stderr.
2092 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2093 This function may be called from a signal handler, so it should
2094 not invoke async-unsafe functions like malloc. */
2095 void
2096 emacs_backtrace (int backtrace_limit)
2098 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2099 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2100 void *buffer;
2101 int npointers;
2103 if (thread_backtrace_npointers)
2105 buffer = thread_backtrace_buffer;
2106 npointers = thread_backtrace_npointers;
2108 else
2110 buffer = main_backtrace_buffer;
2111 npointers = backtrace (buffer, bounded_limit + 1);
2114 if (npointers)
2116 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2117 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2118 if (bounded_limit < npointers)
2119 emacs_write (STDERR_FILENO, "...\n", 4);
2123 #ifndef HAVE_NTGUI
2124 void
2125 emacs_abort (void)
2127 terminate_due_to_signal (SIGABRT, 40);
2129 #endif
2131 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2132 Arrange for subprograms to not inherit the file descriptor.
2133 Prefer a method that is multithread-safe, if available.
2134 Do not fail merely because the open was interrupted by a signal.
2135 Allow the user to quit. */
2138 emacs_open (const char *file, int oflags, int mode)
2140 int fd;
2141 oflags |= O_CLOEXEC;
2142 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2143 QUIT;
2144 if (! O_CLOEXEC && 0 <= fd)
2145 fcntl (fd, F_SETFD, FD_CLOEXEC);
2146 return fd;
2149 /* Open FILE as a stream for Emacs use, with mode MODE.
2150 Act like emacs_open with respect to threads, signals, and quits. */
2152 FILE *
2153 emacs_fopen (char const *file, char const *mode)
2155 int fd, omode, oflags;
2156 int bflag = 0;
2157 char const *m = mode;
2159 switch (*m++)
2161 case 'r': omode = O_RDONLY; oflags = 0; break;
2162 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2163 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2164 default: emacs_abort ();
2167 while (*m)
2168 switch (*m++)
2170 case '+': omode = O_RDWR; break;
2171 case 'b': bflag = O_BINARY; break;
2172 case 't': bflag = O_TEXT; break;
2173 default: /* Ignore. */ break;
2176 fd = emacs_open (file, omode | oflags | bflag, 0666);
2177 return fd < 0 ? 0 : fdopen (fd, mode);
2180 /* Create a pipe for Emacs use. */
2183 emacs_pipe (int fd[2])
2185 int result = pipe2 (fd, O_CLOEXEC);
2186 if (! O_CLOEXEC && result == 0)
2188 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2189 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2191 return result;
2194 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2195 For the background behind this mess, please see Austin Group defect 529
2196 <http://austingroupbugs.net/view.php?id=529>. */
2198 #ifndef POSIX_CLOSE_RESTART
2199 # define POSIX_CLOSE_RESTART 1
2200 static int
2201 posix_close (int fd, int flag)
2203 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2204 eassert (flag == POSIX_CLOSE_RESTART);
2206 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2207 on a system that does not define POSIX_CLOSE_RESTART.
2209 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2210 closed, and retrying the close could inadvertently close a file
2211 descriptor allocated by some other thread. In other systems
2212 (e.g., HP/UX) FD is not closed. And in still other systems
2213 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2214 multithreaded program there can be no way to tell.
2216 So, in this case, pretend that the close succeeded. This works
2217 well on systems like GNU/Linux that close FD. Although it may
2218 leak a file descriptor on other systems, the leak is unlikely and
2219 it's better to leak than to close a random victim. */
2220 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2222 #endif
2224 /* Close FD, retrying if interrupted. If successful, return 0;
2225 otherwise, return -1 and set errno to a non-EINTR value. Consider
2226 an EINPROGRESS error to be successful, as that's merely a signal
2227 arriving. FD is always closed when this function returns, even
2228 when it returns -1.
2230 Do not call this function if FD is nonnegative and might already be closed,
2231 as that might close an innocent victim opened by some other thread. */
2234 emacs_close (int fd)
2236 while (1)
2238 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2239 if (r == 0)
2240 return r;
2241 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2243 eassert (errno != EBADF || fd < 0);
2244 return errno == EINPROGRESS ? 0 : r;
2249 /* Maximum number of bytes to read or write in a single system call.
2250 This works around a serious bug in Linux kernels before 2.6.16; see
2251 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2252 It's likely to work around similar bugs in other operating systems, so do it
2253 on all platforms. Round INT_MAX down to a page size, with the conservative
2254 assumption that page sizes are at most 2**18 bytes (any kernel with a
2255 page size larger than that shouldn't have the bug). */
2256 #ifndef MAX_RW_COUNT
2257 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2258 #endif
2260 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2261 Return the number of bytes read, which might be less than NBYTE.
2262 On error, set errno and return -1. */
2263 ptrdiff_t
2264 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2266 ssize_t rtnval;
2268 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2269 passes a size that large to emacs_read. */
2271 while ((rtnval = read (fildes, buf, nbyte)) == -1
2272 && (errno == EINTR))
2273 QUIT;
2274 return (rtnval);
2277 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2278 or if a partial write occurs. If interrupted, process pending
2279 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2280 errno if this is less than NBYTE. */
2281 static ptrdiff_t
2282 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2283 bool process_signals)
2285 ptrdiff_t bytes_written = 0;
2287 while (nbyte > 0)
2289 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2291 if (n < 0)
2293 if (errno == EINTR)
2295 /* I originally used `QUIT' but that might causes files to
2296 be truncated if you hit C-g in the middle of it. --Stef */
2297 if (process_signals && pending_signals)
2298 process_pending_signals ();
2299 continue;
2301 else
2302 break;
2305 buf += n;
2306 nbyte -= n;
2307 bytes_written += n;
2310 return bytes_written;
2313 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2314 interrupted or if a partial write occurs. Return the number of
2315 bytes written, setting errno if this is less than NBYTE. */
2316 ptrdiff_t
2317 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2319 return emacs_full_write (fildes, buf, nbyte, 0);
2322 /* Like emacs_write, but also process pending signals if interrupted. */
2323 ptrdiff_t
2324 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2326 return emacs_full_write (fildes, buf, nbyte, 1);
2329 /* Write a diagnostic to standard error that contains MESSAGE and a
2330 string derived from errno. Preserve errno. Do not buffer stderr.
2331 Do not process pending signals if interrupted. */
2332 void
2333 emacs_perror (char const *message)
2335 int err = errno;
2336 char const *error_string = strerror (err);
2337 char const *command = (initial_argv && initial_argv[0]
2338 ? initial_argv[0] : "emacs");
2339 /* Write it out all at once, if it's short; this is less likely to
2340 be interleaved with other output. */
2341 char buf[BUFSIZ];
2342 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2343 command, message, error_string);
2344 if (0 <= nbytes && nbytes < BUFSIZ)
2345 emacs_write (STDERR_FILENO, buf, nbytes);
2346 else
2348 emacs_write (STDERR_FILENO, command, strlen (command));
2349 emacs_write (STDERR_FILENO, ": ", 2);
2350 emacs_write (STDERR_FILENO, message, strlen (message));
2351 emacs_write (STDERR_FILENO, ": ", 2);
2352 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2353 emacs_write (STDERR_FILENO, "\n", 1);
2355 errno = err;
2358 /* Return a struct timeval that is roughly equivalent to T.
2359 Use the least timeval not less than T.
2360 Return an extremal value if the result would overflow. */
2361 struct timeval
2362 make_timeval (struct timespec t)
2364 struct timeval tv;
2365 tv.tv_sec = t.tv_sec;
2366 tv.tv_usec = t.tv_nsec / 1000;
2368 if (t.tv_nsec % 1000 != 0)
2370 if (tv.tv_usec < 999999)
2371 tv.tv_usec++;
2372 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2374 tv.tv_sec++;
2375 tv.tv_usec = 0;
2379 return tv;
2382 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2383 ATIME and MTIME, respectively.
2384 FD must be either negative -- in which case it is ignored --
2385 or a file descriptor that is open on FILE.
2386 If FD is nonnegative, then FILE can be NULL. */
2388 set_file_times (int fd, const char *filename,
2389 struct timespec atime, struct timespec mtime)
2391 struct timespec timespec[2];
2392 timespec[0] = atime;
2393 timespec[1] = mtime;
2394 return fdutimens (fd, filename, timespec);
2397 /* Like strsignal, except async-signal-safe, and this function typically
2398 returns a string in the C locale rather than the current locale. */
2399 char const *
2400 safe_strsignal (int code)
2402 char const *signame = 0;
2404 if (0 <= code && code < sys_siglist_entries)
2405 signame = sys_siglist[code];
2406 if (! signame)
2407 signame = "Unknown signal";
2409 return signame;
2412 #ifndef DOS_NT
2413 /* For make-serial-process */
2415 serial_open (Lisp_Object port)
2417 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2418 if (fd < 0)
2419 report_file_error ("Opening serial port", port);
2420 #ifdef TIOCEXCL
2421 ioctl (fd, TIOCEXCL, (char *) 0);
2422 #endif
2424 return fd;
2427 #if !defined (HAVE_CFMAKERAW)
2428 /* Workaround for targets which are missing cfmakeraw. */
2429 /* Pasted from man page. */
2430 static void
2431 cfmakeraw (struct termios *termios_p)
2433 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2434 termios_p->c_oflag &= ~OPOST;
2435 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2436 termios_p->c_cflag &= ~(CSIZE|PARENB);
2437 termios_p->c_cflag |= CS8;
2439 #endif /* !defined (HAVE_CFMAKERAW */
2441 #if !defined (HAVE_CFSETSPEED)
2442 /* Workaround for targets which are missing cfsetspeed. */
2443 static int
2444 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2446 return (cfsetispeed (termios_p, vitesse)
2447 + cfsetospeed (termios_p, vitesse));
2449 #endif
2451 /* For serial-process-configure */
2452 void
2453 serial_configure (struct Lisp_Process *p,
2454 Lisp_Object contact)
2456 Lisp_Object childp2 = Qnil;
2457 Lisp_Object tem = Qnil;
2458 struct termios attr;
2459 int err;
2460 char summary[4] = "???"; /* This usually becomes "8N1". */
2462 childp2 = Fcopy_sequence (p->childp);
2464 /* Read port attributes and prepare default configuration. */
2465 err = tcgetattr (p->outfd, &attr);
2466 if (err != 0)
2467 report_file_error ("Failed tcgetattr", Qnil);
2468 cfmakeraw (&attr);
2469 #if defined (CLOCAL)
2470 attr.c_cflag |= CLOCAL;
2471 #endif
2472 #if defined (CREAD)
2473 attr.c_cflag |= CREAD;
2474 #endif
2476 /* Configure speed. */
2477 if (!NILP (Fplist_member (contact, QCspeed)))
2478 tem = Fplist_get (contact, QCspeed);
2479 else
2480 tem = Fplist_get (p->childp, QCspeed);
2481 CHECK_NUMBER (tem);
2482 err = cfsetspeed (&attr, XINT (tem));
2483 if (err != 0)
2484 report_file_error ("Failed cfsetspeed", tem);
2485 childp2 = Fplist_put (childp2, QCspeed, tem);
2487 /* Configure bytesize. */
2488 if (!NILP (Fplist_member (contact, QCbytesize)))
2489 tem = Fplist_get (contact, QCbytesize);
2490 else
2491 tem = Fplist_get (p->childp, QCbytesize);
2492 if (NILP (tem))
2493 tem = make_number (8);
2494 CHECK_NUMBER (tem);
2495 if (XINT (tem) != 7 && XINT (tem) != 8)
2496 error (":bytesize must be nil (8), 7, or 8");
2497 summary[0] = XINT (tem) + '0';
2498 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2499 attr.c_cflag &= ~CSIZE;
2500 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2501 #else
2502 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2503 if (XINT (tem) != 8)
2504 error ("Bytesize cannot be changed");
2505 #endif
2506 childp2 = Fplist_put (childp2, QCbytesize, tem);
2508 /* Configure parity. */
2509 if (!NILP (Fplist_member (contact, QCparity)))
2510 tem = Fplist_get (contact, QCparity);
2511 else
2512 tem = Fplist_get (p->childp, QCparity);
2513 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2514 error (":parity must be nil (no parity), `even', or `odd'");
2515 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2516 attr.c_cflag &= ~(PARENB | PARODD);
2517 attr.c_iflag &= ~(IGNPAR | INPCK);
2518 if (NILP (tem))
2520 summary[1] = 'N';
2522 else if (EQ (tem, Qeven))
2524 summary[1] = 'E';
2525 attr.c_cflag |= PARENB;
2526 attr.c_iflag |= (IGNPAR | INPCK);
2528 else if (EQ (tem, Qodd))
2530 summary[1] = 'O';
2531 attr.c_cflag |= (PARENB | PARODD);
2532 attr.c_iflag |= (IGNPAR | INPCK);
2534 #else
2535 /* Don't error on no parity, which should be set by cfmakeraw. */
2536 if (!NILP (tem))
2537 error ("Parity cannot be configured");
2538 #endif
2539 childp2 = Fplist_put (childp2, QCparity, tem);
2541 /* Configure stopbits. */
2542 if (!NILP (Fplist_member (contact, QCstopbits)))
2543 tem = Fplist_get (contact, QCstopbits);
2544 else
2545 tem = Fplist_get (p->childp, QCstopbits);
2546 if (NILP (tem))
2547 tem = make_number (1);
2548 CHECK_NUMBER (tem);
2549 if (XINT (tem) != 1 && XINT (tem) != 2)
2550 error (":stopbits must be nil (1 stopbit), 1, or 2");
2551 summary[2] = XINT (tem) + '0';
2552 #if defined (CSTOPB)
2553 attr.c_cflag &= ~CSTOPB;
2554 if (XINT (tem) == 2)
2555 attr.c_cflag |= CSTOPB;
2556 #else
2557 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2558 if (XINT (tem) != 1)
2559 error ("Stopbits cannot be configured");
2560 #endif
2561 childp2 = Fplist_put (childp2, QCstopbits, tem);
2563 /* Configure flowcontrol. */
2564 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2565 tem = Fplist_get (contact, QCflowcontrol);
2566 else
2567 tem = Fplist_get (p->childp, QCflowcontrol);
2568 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2569 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2570 #if defined (CRTSCTS)
2571 attr.c_cflag &= ~CRTSCTS;
2572 #endif
2573 #if defined (CNEW_RTSCTS)
2574 attr.c_cflag &= ~CNEW_RTSCTS;
2575 #endif
2576 #if defined (IXON) && defined (IXOFF)
2577 attr.c_iflag &= ~(IXON | IXOFF);
2578 #endif
2579 if (NILP (tem))
2581 /* Already configured. */
2583 else if (EQ (tem, Qhw))
2585 #if defined (CRTSCTS)
2586 attr.c_cflag |= CRTSCTS;
2587 #elif defined (CNEW_RTSCTS)
2588 attr.c_cflag |= CNEW_RTSCTS;
2589 #else
2590 error ("Hardware flowcontrol (RTS/CTS) not supported");
2591 #endif
2593 else if (EQ (tem, Qsw))
2595 #if defined (IXON) && defined (IXOFF)
2596 attr.c_iflag |= (IXON | IXOFF);
2597 #else
2598 error ("Software flowcontrol (XON/XOFF) not supported");
2599 #endif
2601 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2603 /* Activate configuration. */
2604 err = tcsetattr (p->outfd, TCSANOW, &attr);
2605 if (err != 0)
2606 report_file_error ("Failed tcsetattr", Qnil);
2608 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2609 pset_childp (p, childp2);
2611 #endif /* not DOS_NT */
2613 /* System depended enumeration of and access to system processes a-la ps(1). */
2615 #ifdef HAVE_PROCFS
2617 /* Process enumeration and access via /proc. */
2619 Lisp_Object
2620 list_system_processes (void)
2622 Lisp_Object procdir, match, proclist, next;
2623 struct gcpro gcpro1, gcpro2;
2624 register Lisp_Object tail;
2626 GCPRO2 (procdir, match);
2627 /* For every process on the system, there's a directory in the
2628 "/proc" pseudo-directory whose name is the numeric ID of that
2629 process. */
2630 procdir = build_string ("/proc");
2631 match = build_string ("[0-9]+");
2632 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2634 /* `proclist' gives process IDs as strings. Destructively convert
2635 each string into a number. */
2636 for (tail = proclist; CONSP (tail); tail = next)
2638 next = XCDR (tail);
2639 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2641 UNGCPRO;
2643 /* directory_files_internal returns the files in reverse order; undo
2644 that. */
2645 proclist = Fnreverse (proclist);
2646 return proclist;
2649 #elif defined DARWIN_OS || defined __FreeBSD__
2651 Lisp_Object
2652 list_system_processes (void)
2654 #ifdef DARWIN_OS
2655 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2656 #else
2657 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2658 #endif
2659 size_t len;
2660 struct kinfo_proc *procs;
2661 size_t i;
2663 struct gcpro gcpro1;
2664 Lisp_Object proclist = Qnil;
2666 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2667 return proclist;
2669 procs = xmalloc (len);
2670 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2672 xfree (procs);
2673 return proclist;
2676 GCPRO1 (proclist);
2677 len /= sizeof (struct kinfo_proc);
2678 for (i = 0; i < len; i++)
2680 #ifdef DARWIN_OS
2681 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2682 #else
2683 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2684 #endif
2686 UNGCPRO;
2688 xfree (procs);
2690 return proclist;
2693 /* The WINDOWSNT implementation is in w32.c.
2694 The MSDOS implementation is in dosfns.c. */
2695 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2697 Lisp_Object
2698 list_system_processes (void)
2700 return Qnil;
2703 #endif /* !defined (WINDOWSNT) */
2705 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2706 static struct timespec
2707 time_from_jiffies (unsigned long long tval, long hz)
2709 unsigned long long s = tval / hz;
2710 unsigned long long frac = tval % hz;
2711 int ns;
2713 if (TYPE_MAXIMUM (time_t) < s)
2714 time_overflow ();
2715 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2716 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2717 ns = frac * TIMESPEC_RESOLUTION / hz;
2718 else
2720 /* This is reachable only in the unlikely case that HZ * HZ
2721 exceeds ULLONG_MAX. It calculates an approximation that is
2722 guaranteed to be in range. */
2723 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2724 + (hz % TIMESPEC_RESOLUTION != 0));
2725 ns = frac / hz_per_ns;
2728 return make_timespec (s, ns);
2731 static Lisp_Object
2732 ltime_from_jiffies (unsigned long long tval, long hz)
2734 struct timespec t = time_from_jiffies (tval, hz);
2735 return make_lisp_time (t);
2738 static struct timespec
2739 get_up_time (void)
2741 FILE *fup;
2742 struct timespec up = make_timespec (0, 0);
2744 block_input ();
2745 fup = emacs_fopen ("/proc/uptime", "r");
2747 if (fup)
2749 unsigned long long upsec, upfrac, idlesec, idlefrac;
2750 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2752 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2753 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2754 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2755 == 4)
2757 if (TYPE_MAXIMUM (time_t) < upsec)
2759 upsec = TYPE_MAXIMUM (time_t);
2760 upfrac = TIMESPEC_RESOLUTION - 1;
2762 else
2764 int upfraclen = upfrac_end - upfrac_start;
2765 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2766 upfrac *= 10;
2767 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2768 upfrac /= 10;
2769 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2771 up = make_timespec (upsec, upfrac);
2773 fclose (fup);
2775 unblock_input ();
2777 return up;
2780 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2781 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2783 static Lisp_Object
2784 procfs_ttyname (int rdev)
2786 FILE *fdev;
2787 char name[PATH_MAX];
2789 block_input ();
2790 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2791 name[0] = 0;
2793 if (fdev)
2795 unsigned major;
2796 unsigned long minor_beg, minor_end;
2797 char minor[25]; /* 2 32-bit numbers + dash */
2798 char *endp;
2800 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2802 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2803 && major == MAJOR (rdev))
2805 minor_beg = strtoul (minor, &endp, 0);
2806 if (*endp == '\0')
2807 minor_end = minor_beg;
2808 else if (*endp == '-')
2809 minor_end = strtoul (endp + 1, &endp, 0);
2810 else
2811 continue;
2813 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2815 sprintf (name + strlen (name), "%u", MINOR (rdev));
2816 break;
2820 fclose (fdev);
2822 unblock_input ();
2823 return build_string (name);
2826 static uintmax_t
2827 procfs_get_total_memory (void)
2829 FILE *fmem;
2830 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2831 int c;
2833 block_input ();
2834 fmem = emacs_fopen ("/proc/meminfo", "r");
2836 if (fmem)
2838 uintmax_t entry_value;
2839 bool done;
2842 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2844 case 1:
2845 retval = entry_value;
2846 done = 1;
2847 break;
2849 case 0:
2850 while ((c = getc (fmem)) != EOF && c != '\n')
2851 continue;
2852 done = c == EOF;
2853 break;
2855 default:
2856 done = 1;
2857 break;
2859 while (!done);
2861 fclose (fmem);
2863 unblock_input ();
2864 return retval;
2867 Lisp_Object
2868 system_process_attributes (Lisp_Object pid)
2870 char procfn[PATH_MAX], fn[PATH_MAX];
2871 struct stat st;
2872 struct passwd *pw;
2873 struct group *gr;
2874 long clocks_per_sec;
2875 char *procfn_end;
2876 char procbuf[1025], *p, *q;
2877 int fd;
2878 ssize_t nread;
2879 static char const default_cmd[] = "???";
2880 const char *cmd = default_cmd;
2881 int cmdsize = sizeof default_cmd - 1;
2882 char *cmdline = NULL;
2883 ptrdiff_t cmdline_size;
2884 char c;
2885 printmax_t proc_id;
2886 int ppid, pgrp, sess, tty, tpgid, thcount;
2887 uid_t uid;
2888 gid_t gid;
2889 unsigned long long u_time, s_time, cutime, cstime, start;
2890 long priority, niceness, rss;
2891 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
2892 struct timespec tnow, tstart, tboot, telapsed, us_time;
2893 double pcpu, pmem;
2894 Lisp_Object attrs = Qnil;
2895 Lisp_Object cmd_str, decoded_cmd;
2896 ptrdiff_t count;
2897 struct gcpro gcpro1, gcpro2;
2899 CHECK_NUMBER_OR_FLOAT (pid);
2900 CONS_TO_INTEGER (pid, pid_t, proc_id);
2901 sprintf (procfn, "/proc/%"pMd, proc_id);
2902 if (stat (procfn, &st) < 0)
2903 return attrs;
2905 GCPRO2 (attrs, decoded_cmd);
2907 /* euid egid */
2908 uid = st.st_uid;
2909 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
2910 block_input ();
2911 pw = getpwuid (uid);
2912 unblock_input ();
2913 if (pw)
2914 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2916 gid = st.st_gid;
2917 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
2918 block_input ();
2919 gr = getgrgid (gid);
2920 unblock_input ();
2921 if (gr)
2922 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2924 count = SPECPDL_INDEX ();
2925 strcpy (fn, procfn);
2926 procfn_end = fn + strlen (fn);
2927 strcpy (procfn_end, "/stat");
2928 fd = emacs_open (fn, O_RDONLY, 0);
2929 if (fd < 0)
2930 nread = 0;
2931 else
2933 record_unwind_protect_int (close_file_unwind, fd);
2934 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
2936 if (0 < nread)
2938 procbuf[nread] = '\0';
2939 p = procbuf;
2941 p = strchr (p, '(');
2942 if (p != NULL)
2944 q = strrchr (p + 1, ')');
2945 /* comm */
2946 if (q != NULL)
2948 cmd = p + 1;
2949 cmdsize = q - cmd;
2952 else
2953 q = NULL;
2954 /* Command name is encoded in locale-coding-system; decode it. */
2955 cmd_str = make_unibyte_string (cmd, cmdsize);
2956 decoded_cmd = code_convert_string_norecord (cmd_str,
2957 Vlocale_coding_system, 0);
2958 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2960 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
2961 utime stime cutime cstime priority nice thcount . start vsize rss */
2962 if (q
2963 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
2964 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
2965 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
2966 &minflt, &cminflt, &majflt, &cmajflt,
2967 &u_time, &s_time, &cutime, &cstime,
2968 &priority, &niceness, &thcount, &start, &vsize, &rss)
2969 == 20))
2971 char state_str[2];
2972 state_str[0] = c;
2973 state_str[1] = '\0';
2974 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
2975 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
2976 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
2977 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
2978 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
2979 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
2980 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
2981 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
2982 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
2983 attrs);
2984 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
2985 attrs);
2986 clocks_per_sec = sysconf (_SC_CLK_TCK);
2987 if (clocks_per_sec < 0)
2988 clocks_per_sec = 100;
2989 attrs = Fcons (Fcons (Qutime,
2990 ltime_from_jiffies (u_time, clocks_per_sec)),
2991 attrs);
2992 attrs = Fcons (Fcons (Qstime,
2993 ltime_from_jiffies (s_time, clocks_per_sec)),
2994 attrs);
2995 attrs = Fcons (Fcons (Qtime,
2996 ltime_from_jiffies (s_time + u_time,
2997 clocks_per_sec)),
2998 attrs);
2999 attrs = Fcons (Fcons (Qcutime,
3000 ltime_from_jiffies (cutime, clocks_per_sec)),
3001 attrs);
3002 attrs = Fcons (Fcons (Qcstime,
3003 ltime_from_jiffies (cstime, clocks_per_sec)),
3004 attrs);
3005 attrs = Fcons (Fcons (Qctime,
3006 ltime_from_jiffies (cstime + cutime,
3007 clocks_per_sec)),
3008 attrs);
3009 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3010 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3011 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3012 attrs);
3013 tnow = current_timespec ();
3014 telapsed = get_up_time ();
3015 tboot = timespec_sub (tnow, telapsed);
3016 tstart = time_from_jiffies (start, clocks_per_sec);
3017 tstart = timespec_add (tboot, tstart);
3018 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3019 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3020 attrs);
3021 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3022 telapsed = timespec_sub (tnow, tstart);
3023 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3024 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3025 pcpu = timespectod (us_time) / timespectod (telapsed);
3026 if (pcpu > 1.0)
3027 pcpu = 1.0;
3028 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3029 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3030 if (pmem > 100)
3031 pmem = 100;
3032 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3035 unbind_to (count, Qnil);
3037 /* args */
3038 strcpy (procfn_end, "/cmdline");
3039 fd = emacs_open (fn, O_RDONLY, 0);
3040 if (fd >= 0)
3042 ptrdiff_t readsize, nread_incr;
3043 record_unwind_protect_int (close_file_unwind, fd);
3044 record_unwind_protect_nothing ();
3045 nread = cmdline_size = 0;
3049 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3050 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3052 /* Leave room even if every byte needs escaping below. */
3053 readsize = (cmdline_size >> 1) - nread;
3055 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3056 nread += max (0, nread_incr);
3058 while (nread_incr == readsize);
3060 if (nread)
3062 /* We don't want trailing null characters. */
3063 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3064 continue;
3066 /* Escape-quote whitespace and backslashes. */
3067 q = cmdline + cmdline_size;
3068 while (cmdline < p)
3070 char c = *--p;
3071 *--q = c ? c : ' ';
3072 if (c_isspace (c) || c == '\\')
3073 *--q = '\\';
3076 nread = cmdline + cmdline_size - q;
3079 if (!nread)
3081 nread = cmdsize + 2;
3082 cmdline_size = nread + 1;
3083 q = cmdline = xrealloc (cmdline, cmdline_size);
3084 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3085 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3087 /* Command line is encoded in locale-coding-system; decode it. */
3088 cmd_str = make_unibyte_string (q, nread);
3089 decoded_cmd = code_convert_string_norecord (cmd_str,
3090 Vlocale_coding_system, 0);
3091 unbind_to (count, Qnil);
3092 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3095 UNGCPRO;
3096 return attrs;
3099 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3101 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3102 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3103 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3104 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3105 #undef _FILE_OFFSET_BITS
3106 #else
3107 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3108 #endif
3110 #include <procfs.h>
3112 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3113 #define _FILE_OFFSET_BITS 64
3114 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3115 #endif
3116 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3118 Lisp_Object
3119 system_process_attributes (Lisp_Object pid)
3121 char procfn[PATH_MAX], fn[PATH_MAX];
3122 struct stat st;
3123 struct passwd *pw;
3124 struct group *gr;
3125 char *procfn_end;
3126 struct psinfo pinfo;
3127 int fd;
3128 ssize_t nread;
3129 printmax_t proc_id;
3130 uid_t uid;
3131 gid_t gid;
3132 Lisp_Object attrs = Qnil;
3133 Lisp_Object decoded_cmd;
3134 struct gcpro gcpro1, gcpro2;
3135 ptrdiff_t count;
3137 CHECK_NUMBER_OR_FLOAT (pid);
3138 CONS_TO_INTEGER (pid, pid_t, proc_id);
3139 sprintf (procfn, "/proc/%"pMd, proc_id);
3140 if (stat (procfn, &st) < 0)
3141 return attrs;
3143 GCPRO2 (attrs, decoded_cmd);
3145 /* euid egid */
3146 uid = st.st_uid;
3147 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3148 block_input ();
3149 pw = getpwuid (uid);
3150 unblock_input ();
3151 if (pw)
3152 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3154 gid = st.st_gid;
3155 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3156 block_input ();
3157 gr = getgrgid (gid);
3158 unblock_input ();
3159 if (gr)
3160 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3162 count = SPECPDL_INDEX ();
3163 strcpy (fn, procfn);
3164 procfn_end = fn + strlen (fn);
3165 strcpy (procfn_end, "/psinfo");
3166 fd = emacs_open (fn, O_RDONLY, 0);
3167 if (fd < 0)
3168 nread = 0;
3169 else
3171 record_unwind_protect (close_file_unwind, fd);
3172 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3175 if (nread == sizeof pinfo)
3177 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3178 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3179 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3182 char state_str[2];
3183 state_str[0] = pinfo.pr_lwp.pr_sname;
3184 state_str[1] = '\0';
3185 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3188 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3189 need to get a string from it. */
3191 /* FIXME: missing: Qtpgid */
3193 /* FIXME: missing:
3194 Qminflt
3195 Qmajflt
3196 Qcminflt
3197 Qcmajflt
3199 Qutime
3200 Qcutime
3201 Qstime
3202 Qcstime
3203 Are they available? */
3205 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3206 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3207 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3208 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3209 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3210 attrs);
3212 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3213 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3214 attrs);
3215 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3216 attrs);
3218 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3219 range 0 .. 2**15, representing 0.0 .. 1.0. */
3220 attrs = Fcons (Fcons (Qpcpu,
3221 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3222 attrs);
3223 attrs = Fcons (Fcons (Qpmem,
3224 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3225 attrs);
3227 decoded_cmd = (code_convert_string_norecord
3228 (build_unibyte_string (pinfo.pr_fname),
3229 Vlocale_coding_system, 0));
3230 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3231 decoded_cmd = (code_convert_string_norecord
3232 (build_unibyte_string (pinfo.pr_psargs),
3233 Vlocale_coding_system, 0));
3234 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3236 unbind_to (count, Qnil);
3237 UNGCPRO;
3238 return attrs;
3241 #elif defined __FreeBSD__
3243 static struct timespec
3244 timeval_to_timespec (struct timeval t)
3246 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3249 static Lisp_Object
3250 make_lisp_timeval (struct timeval t)
3252 return make_lisp_time (timeval_to_timespec (t));
3255 Lisp_Object
3256 system_process_attributes (Lisp_Object pid)
3258 int proc_id;
3259 int pagesize = getpagesize ();
3260 unsigned long npages;
3261 int fscale;
3262 struct passwd *pw;
3263 struct group *gr;
3264 char *ttyname;
3265 size_t len;
3266 char args[MAXPATHLEN];
3267 struct timespec t, now;
3269 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3270 struct kinfo_proc proc;
3271 size_t proclen = sizeof proc;
3273 struct gcpro gcpro1, gcpro2;
3274 Lisp_Object attrs = Qnil;
3275 Lisp_Object decoded_comm;
3277 CHECK_NUMBER_OR_FLOAT (pid);
3278 CONS_TO_INTEGER (pid, int, proc_id);
3279 mib[3] = proc_id;
3281 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3282 return attrs;
3284 GCPRO2 (attrs, decoded_comm);
3286 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3288 block_input ();
3289 pw = getpwuid (proc.ki_uid);
3290 unblock_input ();
3291 if (pw)
3292 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3294 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3296 block_input ();
3297 gr = getgrgid (proc.ki_svgid);
3298 unblock_input ();
3299 if (gr)
3300 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3302 decoded_comm = (code_convert_string_norecord
3303 (build_unibyte_string (proc.ki_comm),
3304 Vlocale_coding_system, 0));
3306 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3308 char state[2] = {'\0', '\0'};
3309 switch (proc.ki_stat)
3311 case SRUN:
3312 state[0] = 'R';
3313 break;
3315 case SSLEEP:
3316 state[0] = 'S';
3317 break;
3319 case SLOCK:
3320 state[0] = 'D';
3321 break;
3323 case SZOMB:
3324 state[0] = 'Z';
3325 break;
3327 case SSTOP:
3328 state[0] = 'T';
3329 break;
3331 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3334 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3335 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3336 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3338 block_input ();
3339 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3340 unblock_input ();
3341 if (ttyname)
3342 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3344 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3345 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3346 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3347 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3348 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3350 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3351 attrs);
3352 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3353 attrs);
3354 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3355 timeval_to_timespec (proc.ki_rusage.ru_stime));
3356 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3358 attrs = Fcons (Fcons (Qcutime,
3359 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3360 attrs);
3361 attrs = Fcons (Fcons (Qcstime,
3362 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3363 attrs);
3364 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3365 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3366 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3368 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3369 attrs);
3370 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3371 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3372 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3373 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3374 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3375 attrs);
3377 now = current_timespec ();
3378 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3379 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3381 len = sizeof fscale;
3382 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3384 double pcpu;
3385 fixpt_t ccpu;
3386 len = sizeof ccpu;
3387 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3389 pcpu = (100.0 * proc.ki_pctcpu / fscale
3390 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3391 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3395 len = sizeof npages;
3396 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3398 double pmem = (proc.ki_flag & P_INMEM
3399 ? 100.0 * proc.ki_rssize / npages
3400 : 0);
3401 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3404 mib[2] = KERN_PROC_ARGS;
3405 len = MAXPATHLEN;
3406 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3408 int i;
3409 for (i = 0; i < len; i++)
3411 if (! args[i] && i < len - 1)
3412 args[i] = ' ';
3415 decoded_comm =
3416 (code_convert_string_norecord
3417 (build_unibyte_string (args),
3418 Vlocale_coding_system, 0));
3420 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3423 UNGCPRO;
3424 return attrs;
3427 /* The WINDOWSNT implementation is in w32.c.
3428 The MSDOS implementation is in dosfns.c. */
3429 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3431 Lisp_Object
3432 system_process_attributes (Lisp_Object pid)
3434 return Qnil;
3437 #endif /* !defined (WINDOWSNT) */