Amend to fontify /regexp/s in actions correctly.
[emacs.git] / src / sysdep.c
blob0e9a6826005a99f18dbbdc1c07f57a5f6f4b73a5
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2013 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 #define SYSTIME_INLINE EXTERN_INLINE
24 #include <execinfo.h>
25 #include <stdio.h>
26 #ifdef HAVE_PWD_H
27 #include <pwd.h>
28 #include <grp.h>
29 #endif /* HAVE_PWD_H */
30 #include <limits.h>
31 #include <unistd.h>
33 #include <allocator.h>
34 #include <c-ctype.h>
35 #include <careadlinkat.h>
36 #include <ignore-value.h>
37 #include <utimens.h>
39 #include "lisp.h"
40 #include "sysselect.h"
41 #include "blockinput.h"
43 #ifdef BSD_SYSTEM
44 #include <sys/param.h>
45 #include <sys/sysctl.h>
46 #endif
48 #ifdef __FreeBSD__
49 #include <sys/user.h>
50 #include <sys/resource.h>
51 #include <math.h>
52 #endif
54 #ifdef WINDOWSNT
55 #define read sys_read
56 #define write sys_write
57 #ifndef STDERR_FILENO
58 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
59 #endif
60 #include <windows.h>
61 #endif /* not WINDOWSNT */
63 #include <sys/types.h>
64 #include <sys/stat.h>
65 #include <errno.h>
67 /* Get SI_SRPC_DOMAIN, if it is available. */
68 #ifdef HAVE_SYS_SYSTEMINFO_H
69 #include <sys/systeminfo.h>
70 #endif
72 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
73 #include "msdos.h"
74 #include <sys/param.h>
75 #endif
77 #include <sys/file.h>
78 #include <fcntl.h>
80 #include "systty.h"
81 #include "syswait.h"
83 #ifdef HAVE_SYS_UTSNAME_H
84 #include <sys/utsname.h>
85 #include <memory.h>
86 #endif /* HAVE_SYS_UTSNAME_H */
88 #include "keyboard.h"
89 #include "frame.h"
90 #include "window.h"
91 #include "termhooks.h"
92 #include "termchar.h"
93 #include "termopts.h"
94 #include "dispextern.h"
95 #include "process.h"
96 #include "cm.h" /* for reset_sys_modes */
98 #ifdef WINDOWSNT
99 #include <direct.h>
100 /* In process.h which conflicts with the local copy. */
101 #define _P_WAIT 0
102 int _cdecl _spawnlp (int, const char *, const char *, ...);
103 int _cdecl _getpid (void);
104 #endif
106 #include "syssignal.h"
107 #include "systime.h"
109 static int emacs_get_tty (int, struct emacs_tty *);
110 static int emacs_set_tty (int, struct emacs_tty *, int);
112 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
113 #ifndef ULLONG_MAX
114 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
115 #endif
117 /* Declare here, including term.h is problematic on some systems. */
118 extern void tputs (const char *, int, int (*)(int));
120 static const int baud_convert[] =
122 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
123 1800, 2400, 4800, 9600, 19200, 38400
127 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
129 /* Return the current working directory. Returns NULL on errors.
130 Any other returned value must be freed with free. This is used
131 only when get_current_dir_name is not defined on the system. */
132 char*
133 get_current_dir_name (void)
135 char *buf;
136 char *pwd = getenv ("PWD");
137 struct stat dotstat, pwdstat;
138 /* If PWD is accurate, use it instead of calling getcwd. PWD is
139 sometimes a nicer name, and using it may avoid a fatal error if a
140 parent directory is searchable but not readable. */
141 if (pwd
142 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
143 && stat (pwd, &pwdstat) == 0
144 && stat (".", &dotstat) == 0
145 && dotstat.st_ino == pwdstat.st_ino
146 && dotstat.st_dev == pwdstat.st_dev
147 #ifdef MAXPATHLEN
148 && strlen (pwd) < MAXPATHLEN
149 #endif
152 buf = malloc (strlen (pwd) + 1);
153 if (!buf)
154 return NULL;
155 strcpy (buf, pwd);
157 else
159 size_t buf_size = 1024;
160 buf = malloc (buf_size);
161 if (!buf)
162 return NULL;
163 for (;;)
165 if (getcwd (buf, buf_size) == buf)
166 break;
167 if (errno != ERANGE)
169 int tmp_errno = errno;
170 free (buf);
171 errno = tmp_errno;
172 return NULL;
174 buf_size *= 2;
175 buf = realloc (buf, buf_size);
176 if (!buf)
177 return NULL;
180 return buf;
182 #endif
185 /* Discard pending input on all input descriptors. */
187 void
188 discard_tty_input (void)
190 #ifndef WINDOWSNT
191 struct emacs_tty buf;
193 if (noninteractive)
194 return;
196 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
197 while (dos_keyread () != -1)
199 #else /* not MSDOS */
201 struct tty_display_info *tty;
202 for (tty = tty_list; tty; tty = tty->next)
204 if (tty->input) /* Is the device suspended? */
206 emacs_get_tty (fileno (tty->input), &buf);
207 emacs_set_tty (fileno (tty->input), &buf, 0);
211 #endif /* not MSDOS */
212 #endif /* not WINDOWSNT */
216 #ifdef SIGTSTP
218 /* Arrange for character C to be read as the next input from
219 the terminal.
220 XXX What if we have multiple ttys?
223 void
224 stuff_char (char c)
226 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
227 return;
229 /* Should perhaps error if in batch mode */
230 #ifdef TIOCSTI
231 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
232 #else /* no TIOCSTI */
233 error ("Cannot stuff terminal input characters in this version of Unix");
234 #endif /* no TIOCSTI */
237 #endif /* SIGTSTP */
239 void
240 init_baud_rate (int fd)
242 int emacs_ospeed;
244 if (noninteractive)
245 emacs_ospeed = 0;
246 else
248 #ifdef DOS_NT
249 emacs_ospeed = 15;
250 #else /* not DOS_NT */
251 struct termios sg;
253 sg.c_cflag = B9600;
254 tcgetattr (fd, &sg);
255 emacs_ospeed = cfgetospeed (&sg);
256 #endif /* not DOS_NT */
259 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
260 ? baud_convert[emacs_ospeed] : 9600);
261 if (baud_rate == 0)
262 baud_rate = 1200;
267 #ifndef MSDOS
269 /* Wait for the subprocess with process id CHILD to terminate or change status.
270 CHILD must be a child process that has not been reaped.
271 If STATUS is non-null, store the waitpid-style exit status into *STATUS
272 and tell wait_reading_process_output that it needs to look around.
273 Use waitpid-style OPTIONS when waiting.
274 If INTERRUPTIBLE, this function is interruptible by a signal.
276 Return CHILD if successful, 0 if no status is available;
277 the latter is possible only when options & NOHANG. */
278 static pid_t
279 get_child_status (pid_t child, int *status, int options, bool interruptible)
281 pid_t pid;
283 /* Invoke waitpid only with a known process ID; do not invoke
284 waitpid with a nonpositive argument. Otherwise, Emacs might
285 reap an unwanted process by mistake. For example, invoking
286 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
287 so that another thread running glib won't find them. */
288 eassert (0 < child);
290 while ((pid = waitpid (child, status, options)) < 0)
292 /* Check that CHILD is a child process that has not been reaped,
293 and that STATUS and OPTIONS are valid. Otherwise abort,
294 as continuing after this internal error could cause Emacs to
295 become confused and kill innocent-victim processes. */
296 if (errno != EINTR)
297 emacs_abort ();
299 /* Note: the MS-Windows emulation of waitpid calls QUIT
300 internally. */
301 if (interruptible)
302 QUIT;
305 /* If successful and status is requested, tell wait_reading_process_output
306 that it needs to wake up and look around. */
307 if (pid && status && input_available_clear_time)
308 *input_available_clear_time = make_emacs_time (0, 0);
310 return pid;
313 /* Wait for the subprocess with process id CHILD to terminate.
314 CHILD must be a child process that has not been reaped.
315 If STATUS is non-null, store the waitpid-style exit status into *STATUS
316 and tell wait_reading_process_output that it needs to look around.
317 If INTERRUPTIBLE, this function is interruptible by a signal. */
318 void
319 wait_for_termination (pid_t child, int *status, bool interruptible)
321 get_child_status (child, status, 0, interruptible);
324 /* Report whether the subprocess with process id CHILD has changed status.
325 Termination counts as a change of status.
326 CHILD must be a child process that has not been reaped.
327 If STATUS is non-null, store the waitpid-style exit status into *STATUS
328 and tell wait_reading_process_output that it needs to look around.
329 Use waitpid-style OPTIONS to check status, but do not wait.
331 Return CHILD if successful, 0 if no status is available because
332 the process's state has not changed. */
333 pid_t
334 child_status_changed (pid_t child, int *status, int options)
336 return get_child_status (child, status, WNOHANG | options, 0);
340 * flush any pending output
341 * (may flush input as well; it does not matter the way we use it)
344 void
345 flush_pending_output (int channel)
347 /* FIXME: maybe this function should be removed */
350 /* Set up the terminal at the other end of a pseudo-terminal that
351 we will be controlling an inferior through.
352 It should not echo or do line-editing, since that is done
353 in Emacs. No padding needed for insertion into an Emacs buffer. */
355 void
356 child_setup_tty (int out)
358 #ifndef WINDOWSNT
359 struct emacs_tty s;
361 emacs_get_tty (out, &s);
362 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
363 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
364 #ifdef NLDLY
365 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
366 Some versions of GNU Hurd do not have FFDLY? */
367 #ifdef FFDLY
368 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
369 /* No output delays */
370 #else
371 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
372 /* No output delays */
373 #endif
374 #endif
375 s.main.c_lflag &= ~ECHO; /* Disable echo */
376 s.main.c_lflag |= ISIG; /* Enable signals */
377 #ifdef IUCLC
378 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
379 #endif
380 #ifdef ISTRIP
381 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
382 #endif
383 #ifdef OLCUC
384 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
385 #endif
386 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
387 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
388 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
389 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
391 #ifdef HPUX
392 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
393 #endif /* HPUX */
395 #ifdef SIGNALS_VIA_CHARACTERS
396 /* the QUIT and INTR character are used in process_send_signal
397 so set them here to something useful. */
398 if (s.main.c_cc[VQUIT] == CDISABLE)
399 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
400 if (s.main.c_cc[VINTR] == CDISABLE)
401 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
402 #endif /* not SIGNALS_VIA_CHARACTERS */
404 #ifdef AIX
405 /* Also, PTY overloads NUL and BREAK.
406 don't ignore break, but don't signal either, so it looks like NUL. */
407 s.main.c_iflag &= ~IGNBRK;
408 s.main.c_iflag &= ~BRKINT;
409 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
410 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
411 would force it to 0377. That looks like duplicated code. */
412 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
413 #endif /* AIX */
415 /* We originally enabled ICANON (and set VEOF to 04), and then had
416 process.c send additional EOF chars to flush the output when faced
417 with long lines, but this leads to weird effects when the
418 subprocess has disabled ICANON and ends up seeing those spurious
419 extra EOFs. So we don't send EOFs any more in
420 process.c:send_process. First we tried to disable ICANON by
421 default, so if a subsprocess sets up ICANON, it's his problem (or
422 the Elisp package that talks to it) to deal with lines that are
423 too long. But this disables some features, such as the ability
424 to send EOF signals. So we re-enabled ICANON but there is no
425 more "send eof to flush" going on (which is wrong and unportable
426 in itself). The correct way to handle too much output is to
427 buffer what could not be written and then write it again when
428 select returns ok for writing. This has it own set of
429 problems. Write is now asynchronous, is that a problem? How much
430 do we buffer, and what do we do when that limit is reached? */
432 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
433 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
434 #if 0 /* These settings only apply to non-ICANON mode. */
435 s.main.c_cc[VMIN] = 1;
436 s.main.c_cc[VTIME] = 0;
437 #endif
439 emacs_set_tty (out, &s, 0);
440 #endif /* not WINDOWSNT */
442 #endif /* not MSDOS */
445 /* Record a signal code and the action for it. */
446 struct save_signal
448 int code;
449 struct sigaction action;
452 static void save_signal_handlers (struct save_signal *);
453 static void restore_signal_handlers (struct save_signal *);
455 /* Suspend the Emacs process; give terminal to its superior. */
457 void
458 sys_suspend (void)
460 #ifndef DOS_NT
461 kill (0, SIGTSTP);
462 #else
463 /* On a system where suspending is not implemented,
464 instead fork a subshell and let it talk directly to the terminal
465 while we wait. */
466 sys_subshell ();
468 #endif
471 /* Fork a subshell. */
473 void
474 sys_subshell (void)
476 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
477 int st;
478 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
479 #endif
480 pid_t pid;
481 int status;
482 struct save_signal saved_handlers[5];
483 Lisp_Object dir;
484 unsigned char *volatile str_volatile = 0;
485 unsigned char *str;
486 int len;
488 saved_handlers[0].code = SIGINT;
489 saved_handlers[1].code = SIGQUIT;
490 saved_handlers[2].code = SIGTERM;
491 #ifdef USABLE_SIGIO
492 saved_handlers[3].code = SIGIO;
493 saved_handlers[4].code = 0;
494 #else
495 saved_handlers[3].code = 0;
496 #endif
498 /* Mentioning current_buffer->buffer would mean including buffer.h,
499 which somehow wedges the hp compiler. So instead... */
501 dir = intern ("default-directory");
502 if (NILP (Fboundp (dir)))
503 goto xyzzy;
504 dir = Fsymbol_value (dir);
505 if (!STRINGP (dir))
506 goto xyzzy;
508 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
509 str_volatile = str = alloca (SCHARS (dir) + 2);
510 len = SCHARS (dir);
511 memcpy (str, SDATA (dir), len);
512 if (str[len - 1] != '/') str[len++] = '/';
513 str[len] = 0;
514 xyzzy:
516 #ifdef DOS_NT
517 pid = 0;
518 save_signal_handlers (saved_handlers);
519 #else
520 pid = vfork ();
521 if (pid == -1)
522 error ("Can't spawn subshell");
523 #endif
525 if (pid == 0)
527 const char *sh = 0;
529 #ifdef DOS_NT /* MW, Aug 1993 */
530 getcwd (oldwd, sizeof oldwd);
531 if (sh == 0)
532 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
533 #endif
534 if (sh == 0)
535 sh = (char *) egetenv ("SHELL");
536 if (sh == 0)
537 sh = "sh";
539 /* Use our buffer's default directory for the subshell. */
540 str = str_volatile;
541 if (str && chdir ((char *) str) != 0)
543 #ifndef DOS_NT
544 ignore_value (write (1, "Can't chdir\n", 12));
545 _exit (1);
546 #endif
549 close_process_descs (); /* Close Emacs's pipes/ptys */
551 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
553 char *epwd = getenv ("PWD");
554 char old_pwd[MAXPATHLEN+1+4];
556 /* If PWD is set, pass it with corrected value. */
557 if (epwd)
559 strcpy (old_pwd, epwd);
560 if (str[len - 1] == '/')
561 str[len - 1] = '\0';
562 setenv ("PWD", str, 1);
564 st = system (sh);
565 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
566 if (epwd)
567 putenv (old_pwd); /* restore previous value */
569 #else /* not MSDOS */
570 #ifdef WINDOWSNT
571 /* Waits for process completion */
572 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
573 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
574 if (pid == -1)
575 write (1, "Can't execute subshell", 22);
576 #else /* not WINDOWSNT */
577 execlp (sh, sh, (char *) 0);
578 ignore_value (write (1, "Can't execute subshell", 22));
579 _exit (1);
580 #endif /* not WINDOWSNT */
581 #endif /* not MSDOS */
584 /* Do this now if we did not do it before. */
585 #ifndef MSDOS
586 save_signal_handlers (saved_handlers);
587 #endif
589 #ifndef DOS_NT
590 wait_for_termination (pid, &status, 0);
591 #endif
592 restore_signal_handlers (saved_handlers);
595 static void
596 save_signal_handlers (struct save_signal *saved_handlers)
598 while (saved_handlers->code)
600 struct sigaction action;
601 emacs_sigaction_init (&action, SIG_IGN);
602 sigaction (saved_handlers->code, &action, &saved_handlers->action);
603 saved_handlers++;
607 static void
608 restore_signal_handlers (struct save_signal *saved_handlers)
610 while (saved_handlers->code)
612 sigaction (saved_handlers->code, &saved_handlers->action, 0);
613 saved_handlers++;
617 #ifdef USABLE_SIGIO
618 static int old_fcntl_flags[MAXDESC];
619 #endif
621 void
622 init_sigio (int fd)
624 #ifdef USABLE_SIGIO
625 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
626 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
627 interrupts_deferred = 0;
628 #endif
631 static void
632 reset_sigio (int fd)
634 #ifdef USABLE_SIGIO
635 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
636 #endif
639 void
640 request_sigio (void)
642 #ifdef USABLE_SIGIO
643 sigset_t unblocked;
645 if (noninteractive)
646 return;
648 sigemptyset (&unblocked);
649 # ifdef SIGWINCH
650 sigaddset (&unblocked, SIGWINCH);
651 # endif
652 sigaddset (&unblocked, SIGIO);
653 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
655 interrupts_deferred = 0;
656 #endif
659 void
660 unrequest_sigio (void)
662 #ifdef USABLE_SIGIO
663 sigset_t blocked;
665 if (noninteractive)
666 return;
668 sigemptyset (&blocked);
669 # ifdef SIGWINCH
670 sigaddset (&blocked, SIGWINCH);
671 # endif
672 sigaddset (&blocked, SIGIO);
673 pthread_sigmask (SIG_BLOCK, &blocked, 0);
674 interrupts_deferred = 1;
675 #endif
678 void
679 ignore_sigio (void)
681 #ifdef USABLE_SIGIO
682 signal (SIGIO, SIG_IGN);
683 #endif
687 /* Saving and restoring the process group of Emacs's terminal. */
689 /* The process group of which Emacs was a member when it initially
690 started.
692 If Emacs was in its own process group (i.e. inherited_pgroup ==
693 getpid ()), then we know we're running under a shell with job
694 control (Emacs would never be run as part of a pipeline).
695 Everything is fine.
697 If Emacs was not in its own process group, then we know we're
698 running under a shell (or a caller) that doesn't know how to
699 separate itself from Emacs (like sh). Emacs must be in its own
700 process group in order to receive SIGIO correctly. In this
701 situation, we put ourselves in our own pgroup, forcibly set the
702 tty's pgroup to our pgroup, and make sure to restore and reinstate
703 the tty's pgroup just like any other terminal setting. If
704 inherited_group was not the tty's pgroup, then we'll get a
705 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
706 it goes foreground in the future, which is what should happen. */
708 static pid_t inherited_pgroup;
710 void
711 init_foreground_group (void)
713 pid_t pgrp = getpgrp ();
714 inherited_pgroup = getpid () == pgrp ? 0 : pgrp;
717 /* Block and unblock SIGTTOU. */
719 void
720 block_tty_out_signal (void)
722 #ifdef SIGTTOU
723 sigset_t blocked;
724 sigemptyset (&blocked);
725 sigaddset (&blocked, SIGTTOU);
726 pthread_sigmask (SIG_BLOCK, &blocked, 0);
727 #endif
730 void
731 unblock_tty_out_signal (void)
733 #ifdef SIGTTOU
734 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
735 #endif
738 /* Safely set a controlling terminal FD's process group to PGID.
739 If we are not in the foreground already, POSIX requires tcsetpgrp
740 to deliver a SIGTTOU signal, which would stop us. This is an
741 annoyance, so temporarily ignore the signal.
743 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
744 skip all this unless SIGTTOU is defined. */
745 static void
746 tcsetpgrp_without_stopping (int fd, pid_t pgid)
748 #ifdef SIGTTOU
749 block_input ();
750 block_tty_out_signal ();
751 tcsetpgrp (fd, pgid);
752 unblock_tty_out_signal ();
753 unblock_input ();
754 #endif
757 /* Split off the foreground process group to Emacs alone. When we are
758 in the foreground, but not started in our own process group,
759 redirect the tty device handle FD to point to our own process
760 group. FD must be the file descriptor of the controlling tty. */
761 static void
762 narrow_foreground_group (int fd)
764 if (inherited_pgroup && setpgid (0, 0) == 0)
765 tcsetpgrp_without_stopping (fd, getpid ());
768 /* Set the tty to our original foreground group. */
769 static void
770 widen_foreground_group (int fd)
772 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
773 tcsetpgrp_without_stopping (fd, inherited_pgroup);
776 /* Getting and setting emacs_tty structures. */
778 /* Set *TC to the parameters associated with the terminal FD.
779 Return zero if all's well, or -1 if we ran into an error we
780 couldn't deal with. */
782 emacs_get_tty (int fd, struct emacs_tty *settings)
784 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
785 #ifndef DOS_NT
786 /* We have those nifty POSIX tcmumbleattr functions. */
787 memset (&settings->main, 0, sizeof (settings->main));
788 if (tcgetattr (fd, &settings->main) < 0)
789 return -1;
790 #endif
792 /* We have survived the tempest. */
793 return 0;
797 /* Set the parameters of the tty on FD according to the contents of
798 *SETTINGS. If FLUSHP is non-zero, we discard input.
799 Return 0 if all went well, and -1 if anything failed. */
802 emacs_set_tty (int fd, struct emacs_tty *settings, int flushp)
804 /* Set the primary parameters - baud rate, character size, etcetera. */
805 #ifndef DOS_NT
806 int i;
807 /* We have those nifty POSIX tcmumbleattr functions.
808 William J. Smith <wjs@wiis.wang.com> writes:
809 "POSIX 1003.1 defines tcsetattr to return success if it was
810 able to perform any of the requested actions, even if some
811 of the requested actions could not be performed.
812 We must read settings back to ensure tty setup properly.
813 AIX requires this to keep tty from hanging occasionally." */
814 /* This make sure that we don't loop indefinitely in here. */
815 for (i = 0 ; i < 10 ; i++)
816 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
818 if (errno == EINTR)
819 continue;
820 else
821 return -1;
823 else
825 struct termios new;
827 memset (&new, 0, sizeof (new));
828 /* Get the current settings, and see if they're what we asked for. */
829 tcgetattr (fd, &new);
830 /* We cannot use memcmp on the whole structure here because under
831 * aix386 the termios structure has some reserved field that may
832 * not be filled in.
834 if ( new.c_iflag == settings->main.c_iflag
835 && new.c_oflag == settings->main.c_oflag
836 && new.c_cflag == settings->main.c_cflag
837 && new.c_lflag == settings->main.c_lflag
838 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
839 break;
840 else
841 continue;
843 #endif
845 /* We have survived the tempest. */
846 return 0;
851 #ifdef F_SETOWN
852 static int old_fcntl_owner[MAXDESC];
853 #endif /* F_SETOWN */
855 /* This may also be defined in stdio,
856 but if so, this does no harm,
857 and using the same name avoids wasting the other one's space. */
859 #if defined (USG)
860 unsigned char _sobuf[BUFSIZ+8];
861 #else
862 char _sobuf[BUFSIZ];
863 #endif
865 /* Initialize the terminal mode on all tty devices that are currently
866 open. */
868 void
869 init_all_sys_modes (void)
871 struct tty_display_info *tty;
872 for (tty = tty_list; tty; tty = tty->next)
873 init_sys_modes (tty);
876 /* Initialize the terminal mode on the given tty device. */
878 void
879 init_sys_modes (struct tty_display_info *tty_out)
881 struct emacs_tty tty;
882 Lisp_Object terminal;
884 Vtty_erase_char = Qnil;
886 if (noninteractive)
887 return;
889 if (!tty_out->output)
890 return; /* The tty is suspended. */
892 narrow_foreground_group (fileno (tty_out->input));
894 if (! tty_out->old_tty)
895 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
897 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
899 tty = *tty_out->old_tty;
901 #if !defined (DOS_NT)
902 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
904 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
905 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
906 #ifdef INLCR /* I'm just being cautious,
907 since I can't check how widespread INLCR is--rms. */
908 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
909 #endif
910 #ifdef ISTRIP
911 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
912 #endif
913 tty.main.c_lflag &= ~ECHO; /* Disable echo */
914 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
915 #ifdef IEXTEN
916 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
917 #endif
918 tty.main.c_lflag |= ISIG; /* Enable signals */
919 if (tty_out->flow_control)
921 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
922 #ifdef IXANY
923 tty.main.c_iflag &= ~IXANY;
924 #endif /* IXANY */
926 else
927 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
928 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
929 on output */
930 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
931 #ifdef CS8
932 if (tty_out->meta_key)
934 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
935 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
937 #endif
939 XSETTERMINAL(terminal, tty_out->terminal);
940 if (!NILP (Fcontrolling_tty_p (terminal)))
942 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
943 /* Set up C-g for both SIGQUIT and SIGINT.
944 We don't know which we will get, but we handle both alike
945 so which one it really gives us does not matter. */
946 tty.main.c_cc[VQUIT] = quit_char;
948 else
950 /* We normally don't get interrupt or quit signals from tty
951 devices other than our controlling terminal; therefore,
952 we must handle C-g as normal input. Unfortunately, this
953 means that the interrupt and quit feature must be
954 disabled on secondary ttys, or we would not even see the
955 keypress.
957 Note that even though emacsclient could have special code
958 to pass SIGINT to Emacs, we should _not_ enable
959 interrupt/quit keys for emacsclient frames. This means
960 that we can't break out of loops in C code from a
961 secondary tty frame, but we can always decide what
962 display the C-g came from, which is more important from a
963 usability point of view. (Consider the case when two
964 people work together using the same Emacs instance.) */
965 tty.main.c_cc[VINTR] = CDISABLE;
966 tty.main.c_cc[VQUIT] = CDISABLE;
968 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
969 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
970 #ifdef VSWTCH
971 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
972 of C-z */
973 #endif /* VSWTCH */
975 #ifdef VSUSP
976 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
977 #endif /* VSUSP */
978 #ifdef V_DSUSP
979 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
980 #endif /* V_DSUSP */
981 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
982 tty.main.c_cc[VDSUSP] = CDISABLE;
983 #endif /* VDSUSP */
984 #ifdef VLNEXT
985 tty.main.c_cc[VLNEXT] = CDISABLE;
986 #endif /* VLNEXT */
987 #ifdef VREPRINT
988 tty.main.c_cc[VREPRINT] = CDISABLE;
989 #endif /* VREPRINT */
990 #ifdef VWERASE
991 tty.main.c_cc[VWERASE] = CDISABLE;
992 #endif /* VWERASE */
993 #ifdef VDISCARD
994 tty.main.c_cc[VDISCARD] = CDISABLE;
995 #endif /* VDISCARD */
997 if (tty_out->flow_control)
999 #ifdef VSTART
1000 tty.main.c_cc[VSTART] = '\021';
1001 #endif /* VSTART */
1002 #ifdef VSTOP
1003 tty.main.c_cc[VSTOP] = '\023';
1004 #endif /* VSTOP */
1006 else
1008 #ifdef VSTART
1009 tty.main.c_cc[VSTART] = CDISABLE;
1010 #endif /* VSTART */
1011 #ifdef VSTOP
1012 tty.main.c_cc[VSTOP] = CDISABLE;
1013 #endif /* VSTOP */
1016 #ifdef AIX
1017 tty.main.c_cc[VSTRT] = CDISABLE;
1018 tty.main.c_cc[VSTOP] = CDISABLE;
1019 tty.main.c_cc[VSUSP] = CDISABLE;
1020 tty.main.c_cc[VDSUSP] = CDISABLE;
1021 if (tty_out->flow_control)
1023 #ifdef VSTART
1024 tty.main.c_cc[VSTART] = '\021';
1025 #endif /* VSTART */
1026 #ifdef VSTOP
1027 tty.main.c_cc[VSTOP] = '\023';
1028 #endif /* VSTOP */
1030 /* Also, PTY overloads NUL and BREAK.
1031 don't ignore break, but don't signal either, so it looks like NUL.
1032 This really serves a purpose only if running in an XTERM window
1033 or via TELNET or the like, but does no harm elsewhere. */
1034 tty.main.c_iflag &= ~IGNBRK;
1035 tty.main.c_iflag &= ~BRKINT;
1036 #endif
1037 #endif /* not DOS_NT */
1039 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1040 if (!tty_out->term_initted)
1041 internal_terminal_init ();
1042 dos_ttraw (tty_out);
1043 #endif
1045 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1047 /* This code added to insure that, if flow-control is not to be used,
1048 we have an unlocked terminal at the start. */
1050 #ifdef TCXONC
1051 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1052 #endif
1053 #ifdef TIOCSTART
1054 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1055 #endif
1057 #if !defined (DOS_NT)
1058 #ifdef TCOON
1059 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1060 #endif
1061 #endif
1063 #ifdef F_GETOWN
1064 if (interrupt_input)
1066 old_fcntl_owner[fileno (tty_out->input)] =
1067 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1068 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1069 init_sigio (fileno (tty_out->input));
1070 #ifdef HAVE_GPM
1071 if (gpm_tty == tty_out)
1073 /* Arrange for mouse events to give us SIGIO signals. */
1074 fcntl (gpm_fd, F_SETOWN, getpid ());
1075 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1076 init_sigio (gpm_fd);
1078 #endif /* HAVE_GPM */
1080 #endif /* F_GETOWN */
1082 #ifdef _IOFBF
1083 /* This symbol is defined on recent USG systems.
1084 Someone says without this call USG won't really buffer the file
1085 even with a call to setbuf. */
1086 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1087 #else
1088 setbuf (tty_out->output, (char *) _sobuf);
1089 #endif
1091 if (tty_out->terminal->set_terminal_modes_hook)
1092 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1094 if (!tty_out->term_initted)
1096 Lisp_Object tail, frame;
1097 FOR_EACH_FRAME (tail, frame)
1099 /* XXX This needs to be revised. */
1100 if (FRAME_TERMCAP_P (XFRAME (frame))
1101 && FRAME_TTY (XFRAME (frame)) == tty_out)
1102 init_frame_faces (XFRAME (frame));
1106 if (tty_out->term_initted && no_redraw_on_reenter)
1108 /* We used to call "direct_output_forward_char(0)" here,
1109 but it's not clear why, since it may not do anything anyway. */
1111 else
1113 Lisp_Object tail, frame;
1114 frame_garbaged = 1;
1115 FOR_EACH_FRAME (tail, frame)
1117 if ((FRAME_TERMCAP_P (XFRAME (frame))
1118 || FRAME_MSDOS_P (XFRAME (frame)))
1119 && FRAME_TTY (XFRAME (frame)) == tty_out)
1120 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1124 tty_out->term_initted = 1;
1127 /* Return nonzero if safe to use tabs in output.
1128 At the time this is called, init_sys_modes has not been done yet. */
1131 tabs_safe_p (int fd)
1133 struct emacs_tty etty;
1135 emacs_get_tty (fd, &etty);
1136 #ifndef DOS_NT
1137 #ifdef TABDLY
1138 return ((etty.main.c_oflag & TABDLY) != TAB3);
1139 #else /* not TABDLY */
1140 return 1;
1141 #endif /* not TABDLY */
1142 #else /* DOS_NT */
1143 return 0;
1144 #endif /* DOS_NT */
1147 /* Get terminal size from system.
1148 Store number of lines into *HEIGHTP and width into *WIDTHP.
1149 We store 0 if there's no valid information. */
1151 void
1152 get_tty_size (int fd, int *widthp, int *heightp)
1154 #if defined TIOCGWINSZ
1156 /* BSD-style. */
1157 struct winsize size;
1159 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1160 *widthp = *heightp = 0;
1161 else
1163 *widthp = size.ws_col;
1164 *heightp = size.ws_row;
1167 #elif defined TIOCGSIZE
1169 /* SunOS - style. */
1170 struct ttysize size;
1172 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1173 *widthp = *heightp = 0;
1174 else
1176 *widthp = size.ts_cols;
1177 *heightp = size.ts_lines;
1180 #elif defined WINDOWSNT
1182 CONSOLE_SCREEN_BUFFER_INFO info;
1183 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1185 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1186 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1188 else
1189 *widthp = *heightp = 0;
1191 #elif defined MSDOS
1193 *widthp = ScreenCols ();
1194 *heightp = ScreenRows ();
1196 #else /* system doesn't know size */
1198 *widthp = 0;
1199 *heightp = 0;
1201 #endif
1204 /* Set the logical window size associated with descriptor FD
1205 to HEIGHT and WIDTH. This is used mainly with ptys. */
1208 set_window_size (int fd, int height, int width)
1210 #ifdef TIOCSWINSZ
1212 /* BSD-style. */
1213 struct winsize size;
1214 size.ws_row = height;
1215 size.ws_col = width;
1217 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1218 return 0; /* error */
1219 else
1220 return 1;
1222 #else
1223 #ifdef TIOCSSIZE
1225 /* SunOS - style. */
1226 struct ttysize size;
1227 size.ts_lines = height;
1228 size.ts_cols = width;
1230 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1231 return 0;
1232 else
1233 return 1;
1234 #else
1235 return -1;
1236 #endif /* not SunOS-style */
1237 #endif /* not BSD-style */
1242 /* Prepare all terminal devices for exiting Emacs. */
1244 void
1245 reset_all_sys_modes (void)
1247 struct tty_display_info *tty;
1248 for (tty = tty_list; tty; tty = tty->next)
1249 reset_sys_modes (tty);
1252 /* Prepare the terminal for closing it; move the cursor to the
1253 bottom of the frame, turn off interrupt-driven I/O, etc. */
1255 void
1256 reset_sys_modes (struct tty_display_info *tty_out)
1258 if (noninteractive)
1260 fflush (stdout);
1261 return;
1263 if (!tty_out->term_initted)
1264 return;
1266 if (!tty_out->output)
1267 return; /* The tty is suspended. */
1269 /* Go to and clear the last line of the terminal. */
1271 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1273 /* Code adapted from tty_clear_end_of_line. */
1274 if (tty_out->TS_clr_line)
1276 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1278 else
1279 { /* have to do it the hard way */
1280 int i;
1281 tty_turn_off_insert (tty_out);
1283 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1285 fputc (' ', tty_out->output);
1289 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1290 fflush (tty_out->output);
1292 if (tty_out->terminal->reset_terminal_modes_hook)
1293 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1295 #ifdef BSD_SYSTEM
1296 /* Avoid possible loss of output when changing terminal modes. */
1297 fsync (fileno (tty_out->output));
1298 #endif
1300 #ifndef DOS_NT
1301 #ifdef F_SETOWN
1302 if (interrupt_input)
1304 reset_sigio (fileno (tty_out->input));
1305 fcntl (fileno (tty_out->input), F_SETOWN,
1306 old_fcntl_owner[fileno (tty_out->input)]);
1308 #endif /* F_SETOWN */
1309 fcntl (fileno (tty_out->input), F_SETFL,
1310 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1311 #endif
1313 if (tty_out->old_tty)
1314 while (emacs_set_tty (fileno (tty_out->input),
1315 tty_out->old_tty, 0) < 0 && errno == EINTR)
1318 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1319 dos_ttcooked ();
1320 #endif
1322 widen_foreground_group (fileno (tty_out->input));
1325 #ifdef HAVE_PTYS
1327 /* Set up the proper status flags for use of a pty. */
1329 void
1330 setup_pty (int fd)
1332 /* I'm told that TOICREMOTE does not mean control chars
1333 "can't be sent" but rather that they don't have
1334 input-editing or signaling effects.
1335 That should be good, because we have other ways
1336 to do those things in Emacs.
1337 However, telnet mode seems not to work on 4.2.
1338 So TIOCREMOTE is turned off now. */
1340 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1341 will hang. In particular, the "timeout" feature (which
1342 causes a read to return if there is no data available)
1343 does this. Also it is known that telnet mode will hang
1344 in such a way that Emacs must be stopped (perhaps this
1345 is the same problem).
1347 If TIOCREMOTE is turned off, then there is a bug in
1348 hp-ux which sometimes loses data. Apparently the
1349 code which blocks the master process when the internal
1350 buffer fills up does not work. Other than this,
1351 though, everything else seems to work fine.
1353 Since the latter lossage is more benign, we may as well
1354 lose that way. -- cph */
1355 #ifdef FIONBIO
1356 #if defined (UNIX98_PTYS)
1358 int on = 1;
1359 ioctl (fd, FIONBIO, &on);
1361 #endif
1362 #endif
1364 #endif /* HAVE_PTYS */
1366 #ifdef HAVE_SOCKETS
1367 #include <sys/socket.h>
1368 #include <netdb.h>
1369 #endif /* HAVE_SOCKETS */
1371 #ifdef TRY_AGAIN
1372 #ifndef HAVE_H_ERRNO
1373 extern int h_errno;
1374 #endif
1375 #endif /* TRY_AGAIN */
1377 void
1378 init_system_name (void)
1380 #ifndef HAVE_GETHOSTNAME
1381 struct utsname uts;
1382 uname (&uts);
1383 Vsystem_name = build_string (uts.nodename);
1384 #else /* HAVE_GETHOSTNAME */
1385 unsigned int hostname_size = 256;
1386 char *hostname = alloca (hostname_size);
1388 /* Try to get the host name; if the buffer is too short, try
1389 again. Apparently, the only indication gethostname gives of
1390 whether the buffer was large enough is the presence or absence
1391 of a '\0' in the string. Eech. */
1392 for (;;)
1394 gethostname (hostname, hostname_size - 1);
1395 hostname[hostname_size - 1] = '\0';
1397 /* Was the buffer large enough for the '\0'? */
1398 if (strlen (hostname) < hostname_size - 1)
1399 break;
1401 hostname_size <<= 1;
1402 hostname = alloca (hostname_size);
1404 #ifdef HAVE_SOCKETS
1405 /* Turn the hostname into the official, fully-qualified hostname.
1406 Don't do this if we're going to dump; this can confuse system
1407 libraries on some machines and make the dumped emacs core dump. */
1408 #ifndef CANNOT_DUMP
1409 if (initialized)
1410 #endif /* not CANNOT_DUMP */
1411 if (! strchr (hostname, '.'))
1413 int count;
1414 #ifdef HAVE_GETADDRINFO
1415 struct addrinfo *res;
1416 struct addrinfo hints;
1417 int ret;
1419 memset (&hints, 0, sizeof (hints));
1420 hints.ai_socktype = SOCK_STREAM;
1421 hints.ai_flags = AI_CANONNAME;
1423 for (count = 0;; count++)
1425 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1426 || ret != EAI_AGAIN)
1427 break;
1429 if (count >= 5)
1430 break;
1431 Fsleep_for (make_number (1), Qnil);
1434 if (ret == 0)
1436 struct addrinfo *it = res;
1437 while (it)
1439 char *fqdn = it->ai_canonname;
1440 if (fqdn && strchr (fqdn, '.')
1441 && strcmp (fqdn, "localhost.localdomain") != 0)
1442 break;
1443 it = it->ai_next;
1445 if (it)
1447 hostname = alloca (strlen (it->ai_canonname) + 1);
1448 strcpy (hostname, it->ai_canonname);
1450 freeaddrinfo (res);
1452 #else /* !HAVE_GETADDRINFO */
1453 struct hostent *hp;
1454 for (count = 0;; count++)
1457 #ifdef TRY_AGAIN
1458 h_errno = 0;
1459 #endif
1460 hp = gethostbyname (hostname);
1461 #ifdef TRY_AGAIN
1462 if (! (hp == 0 && h_errno == TRY_AGAIN))
1463 #endif
1465 break;
1467 if (count >= 5)
1468 break;
1469 Fsleep_for (make_number (1), Qnil);
1472 if (hp)
1474 char *fqdn = (char *) hp->h_name;
1476 if (!strchr (fqdn, '.'))
1478 /* We still don't have a fully qualified domain name.
1479 Try to find one in the list of alternate names */
1480 char **alias = hp->h_aliases;
1481 while (*alias
1482 && (!strchr (*alias, '.')
1483 || !strcmp (*alias, "localhost.localdomain")))
1484 alias++;
1485 if (*alias)
1486 fqdn = *alias;
1488 hostname = fqdn;
1490 #endif /* !HAVE_GETADDRINFO */
1492 #endif /* HAVE_SOCKETS */
1493 Vsystem_name = build_string (hostname);
1494 #endif /* HAVE_GETHOSTNAME */
1496 unsigned char *p;
1497 for (p = SDATA (Vsystem_name); *p; p++)
1498 if (*p == ' ' || *p == '\t')
1499 *p = '-';
1503 sigset_t empty_mask;
1505 static struct sigaction process_fatal_action;
1507 static int
1508 emacs_sigaction_flags (void)
1510 #ifdef SA_RESTART
1511 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1512 'select') to reset their timeout on some platforms (e.g.,
1513 HP-UX 11), which is not what we want. Also, when Emacs is
1514 interactive, we don't want SA_RESTART because we need to poll
1515 for pending input so we need long-running syscalls to be interrupted
1516 after a signal that sets pending_signals.
1518 Non-interactive keyboard input goes through stdio, where we
1519 always want restartable system calls. */
1520 if (noninteractive)
1521 return SA_RESTART;
1522 #endif
1523 return 0;
1526 /* Store into *ACTION a signal action suitable for Emacs, with handler
1527 HANDLER. */
1528 void
1529 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1531 sigemptyset (&action->sa_mask);
1533 /* When handling a signal, block nonfatal system signals that are caught
1534 by Emacs. This makes race conditions less likely. */
1535 sigaddset (&action->sa_mask, SIGALRM);
1536 sigaddset (&action->sa_mask, SIGCHLD);
1537 #ifdef SIGDANGER
1538 sigaddset (&action->sa_mask, SIGDANGER);
1539 #endif
1540 #ifdef PROFILER_CPU_SUPPORT
1541 sigaddset (&action->sa_mask, SIGPROF);
1542 #endif
1543 #ifdef SIGWINCH
1544 sigaddset (&action->sa_mask, SIGWINCH);
1545 #endif
1546 if (! noninteractive)
1548 sigaddset (&action->sa_mask, SIGINT);
1549 sigaddset (&action->sa_mask, SIGQUIT);
1550 #ifdef USABLE_SIGIO
1551 sigaddset (&action->sa_mask, SIGIO);
1552 #endif
1555 if (! IEEE_FLOATING_POINT)
1556 sigaddset (&action->sa_mask, SIGFPE);
1558 action->sa_handler = handler;
1559 action->sa_flags = emacs_sigaction_flags ();
1562 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1563 static pthread_t main_thread;
1564 #endif
1566 /* SIG has arrived at the current process. Deliver it to the main
1567 thread, which should handle it with HANDLER.
1569 If we are on the main thread, handle the signal SIG with HANDLER.
1570 Otherwise, redirect the signal to the main thread, blocking it from
1571 this thread. POSIX says any thread can receive a signal that is
1572 associated with a process, process group, or asynchronous event.
1573 On GNU/Linux that is not true, but for other systems (FreeBSD at
1574 least) it is. */
1575 void
1576 deliver_process_signal (int sig, signal_handler_t handler)
1578 /* Preserve errno, to avoid race conditions with signal handlers that
1579 might change errno. Races can occur even in single-threaded hosts. */
1580 int old_errno = errno;
1582 bool on_main_thread = true;
1583 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1584 if (! pthread_equal (pthread_self (), main_thread))
1586 sigset_t blocked;
1587 sigemptyset (&blocked);
1588 sigaddset (&blocked, sig);
1589 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1590 pthread_kill (main_thread, sig);
1591 on_main_thread = false;
1593 #endif
1594 if (on_main_thread)
1595 handler (sig);
1597 errno = old_errno;
1600 /* Static location to save a fatal backtrace in a thread.
1601 FIXME: If two subsidiary threads fail simultaneously, the resulting
1602 backtrace may be garbage. */
1603 enum { BACKTRACE_LIMIT_MAX = 500 };
1604 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1605 static int thread_backtrace_npointers;
1607 /* SIG has arrived at the current thread.
1608 If we are on the main thread, handle the signal SIG with HANDLER.
1609 Otherwise, this is a fatal error in the handling thread. */
1610 static void
1611 deliver_thread_signal (int sig, signal_handler_t handler)
1613 int old_errno = errno;
1615 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1616 if (! pthread_equal (pthread_self (), main_thread))
1618 thread_backtrace_npointers
1619 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1620 sigaction (sig, &process_fatal_action, 0);
1621 pthread_kill (main_thread, sig);
1623 /* Avoid further damage while the main thread is exiting. */
1624 while (1)
1625 sigsuspend (&empty_mask);
1627 #endif
1629 handler (sig);
1630 errno = old_errno;
1633 #if !HAVE_DECL_SYS_SIGLIST
1634 # undef sys_siglist
1635 # ifdef _sys_siglist
1636 # define sys_siglist _sys_siglist
1637 # else
1638 # define sys_siglist my_sys_siglist
1639 static char const *sys_siglist[NSIG];
1640 # endif
1641 #endif
1643 #ifdef _sys_nsig
1644 # define sys_siglist_entries _sys_nsig
1645 #else
1646 # define sys_siglist_entries NSIG
1647 #endif
1649 /* Handle bus errors, invalid instruction, etc. */
1650 static void
1651 handle_fatal_signal (int sig)
1653 terminate_due_to_signal (sig, 40);
1656 static void
1657 deliver_fatal_signal (int sig)
1659 deliver_process_signal (sig, handle_fatal_signal);
1662 static void
1663 deliver_fatal_thread_signal (int sig)
1665 deliver_thread_signal (sig, handle_fatal_signal);
1668 static _Noreturn void
1669 handle_arith_signal (int sig)
1671 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1672 xsignal0 (Qarith_error);
1675 static void
1676 deliver_arith_signal (int sig)
1678 deliver_thread_signal (sig, handle_arith_signal);
1681 #ifdef SIGDANGER
1683 /* Handler for SIGDANGER. */
1684 static void
1685 handle_danger_signal (int sig)
1687 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1689 /* It might be unsafe to call do_auto_save now. */
1690 force_auto_save_soon ();
1693 static void
1694 deliver_danger_signal (int sig)
1696 deliver_process_signal (sig, handle_danger_signal);
1698 #endif
1700 /* Treat SIG as a terminating signal, unless it is already ignored and
1701 we are in --batch mode. Among other things, this makes nohup work. */
1702 static void
1703 maybe_fatal_sig (int sig)
1705 bool catch_sig = !noninteractive;
1706 if (!catch_sig)
1708 struct sigaction old_action;
1709 sigaction (sig, 0, &old_action);
1710 catch_sig = old_action.sa_handler != SIG_IGN;
1712 if (catch_sig)
1713 sigaction (sig, &process_fatal_action, 0);
1716 void
1717 init_signals (bool dumping)
1719 struct sigaction thread_fatal_action;
1720 struct sigaction action;
1722 sigemptyset (&empty_mask);
1724 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1725 main_thread = pthread_self ();
1726 #endif
1728 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1729 if (! initialized)
1731 sys_siglist[SIGABRT] = "Aborted";
1732 # ifdef SIGAIO
1733 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1734 # endif
1735 sys_siglist[SIGALRM] = "Alarm clock";
1736 # ifdef SIGBUS
1737 sys_siglist[SIGBUS] = "Bus error";
1738 # endif
1739 sys_siglist[SIGCHLD] = "Child status changed";
1740 # ifdef SIGCONT
1741 sys_siglist[SIGCONT] = "Continued";
1742 # endif
1743 # ifdef SIGDANGER
1744 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1745 # endif
1746 # ifdef SIGDGNOTIFY
1747 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1748 # endif
1749 # ifdef SIGEMT
1750 sys_siglist[SIGEMT] = "Emulation trap";
1751 # endif
1752 sys_siglist[SIGFPE] = "Arithmetic exception";
1753 # ifdef SIGFREEZE
1754 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1755 # endif
1756 # ifdef SIGGRANT
1757 sys_siglist[SIGGRANT] = "Monitor mode granted";
1758 # endif
1759 sys_siglist[SIGHUP] = "Hangup";
1760 sys_siglist[SIGILL] = "Illegal instruction";
1761 sys_siglist[SIGINT] = "Interrupt";
1762 # ifdef SIGIO
1763 sys_siglist[SIGIO] = "I/O possible";
1764 # endif
1765 # ifdef SIGIOINT
1766 sys_siglist[SIGIOINT] = "I/O intervention required";
1767 # endif
1768 # ifdef SIGIOT
1769 sys_siglist[SIGIOT] = "IOT trap";
1770 # endif
1771 sys_siglist[SIGKILL] = "Killed";
1772 # ifdef SIGLOST
1773 sys_siglist[SIGLOST] = "Resource lost";
1774 # endif
1775 # ifdef SIGLWP
1776 sys_siglist[SIGLWP] = "SIGLWP";
1777 # endif
1778 # ifdef SIGMSG
1779 sys_siglist[SIGMSG] = "Monitor mode data available";
1780 # endif
1781 # ifdef SIGPHONE
1782 sys_siglist[SIGWIND] = "SIGPHONE";
1783 # endif
1784 sys_siglist[SIGPIPE] = "Broken pipe";
1785 # ifdef SIGPOLL
1786 sys_siglist[SIGPOLL] = "Pollable event occurred";
1787 # endif
1788 # ifdef SIGPROF
1789 sys_siglist[SIGPROF] = "Profiling timer expired";
1790 # endif
1791 # ifdef SIGPTY
1792 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1793 # endif
1794 # ifdef SIGPWR
1795 sys_siglist[SIGPWR] = "Power-fail restart";
1796 # endif
1797 sys_siglist[SIGQUIT] = "Quit";
1798 # ifdef SIGRETRACT
1799 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1800 # endif
1801 # ifdef SIGSAK
1802 sys_siglist[SIGSAK] = "Secure attention";
1803 # endif
1804 sys_siglist[SIGSEGV] = "Segmentation violation";
1805 # ifdef SIGSOUND
1806 sys_siglist[SIGSOUND] = "Sound completed";
1807 # endif
1808 # ifdef SIGSTOP
1809 sys_siglist[SIGSTOP] = "Stopped (signal)";
1810 # endif
1811 # ifdef SIGSTP
1812 sys_siglist[SIGSTP] = "Stopped (user)";
1813 # endif
1814 # ifdef SIGSYS
1815 sys_siglist[SIGSYS] = "Bad argument to system call";
1816 # endif
1817 sys_siglist[SIGTERM] = "Terminated";
1818 # ifdef SIGTHAW
1819 sys_siglist[SIGTHAW] = "SIGTHAW";
1820 # endif
1821 # ifdef SIGTRAP
1822 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1823 # endif
1824 # ifdef SIGTSTP
1825 sys_siglist[SIGTSTP] = "Stopped (user)";
1826 # endif
1827 # ifdef SIGTTIN
1828 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1829 # endif
1830 # ifdef SIGTTOU
1831 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1832 # endif
1833 # ifdef SIGURG
1834 sys_siglist[SIGURG] = "Urgent I/O condition";
1835 # endif
1836 # ifdef SIGUSR1
1837 sys_siglist[SIGUSR1] = "User defined signal 1";
1838 # endif
1839 # ifdef SIGUSR2
1840 sys_siglist[SIGUSR2] = "User defined signal 2";
1841 # endif
1842 # ifdef SIGVTALRM
1843 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1844 # endif
1845 # ifdef SIGWAITING
1846 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1847 # endif
1848 # ifdef SIGWINCH
1849 sys_siglist[SIGWINCH] = "Window size changed";
1850 # endif
1851 # ifdef SIGWIND
1852 sys_siglist[SIGWIND] = "SIGWIND";
1853 # endif
1854 # ifdef SIGXCPU
1855 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1856 # endif
1857 # ifdef SIGXFSZ
1858 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1859 # endif
1861 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1863 /* Don't alter signal handlers if dumping. On some machines,
1864 changing signal handlers sets static data that would make signals
1865 fail to work right when the dumped Emacs is run. */
1866 if (dumping)
1867 return;
1869 sigfillset (&process_fatal_action.sa_mask);
1870 process_fatal_action.sa_handler = deliver_fatal_signal;
1871 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1873 sigfillset (&thread_fatal_action.sa_mask);
1874 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1875 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1877 /* SIGINT may need special treatment on MS-Windows. See
1878 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1879 Please update the doc of kill-emacs, kill-emacs-hook, and
1880 NEWS if you change this. */
1882 maybe_fatal_sig (SIGHUP);
1883 maybe_fatal_sig (SIGINT);
1884 maybe_fatal_sig (SIGTERM);
1886 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
1887 However, in batch mode leave SIGPIPE alone, as that causes Emacs
1888 to behave more like typical batch applications do. */
1889 if (! noninteractive)
1890 signal (SIGPIPE, SIG_IGN);
1892 sigaction (SIGQUIT, &process_fatal_action, 0);
1893 sigaction (SIGILL, &thread_fatal_action, 0);
1894 sigaction (SIGTRAP, &thread_fatal_action, 0);
1896 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
1897 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
1898 interpreter's floating point operations, so treat SIGFPE as an
1899 arith-error if it arises in the main thread. */
1900 if (IEEE_FLOATING_POINT)
1901 sigaction (SIGFPE, &thread_fatal_action, 0);
1902 else
1904 emacs_sigaction_init (&action, deliver_arith_signal);
1905 sigaction (SIGFPE, &action, 0);
1908 #ifdef SIGUSR1
1909 add_user_signal (SIGUSR1, "sigusr1");
1910 #endif
1911 #ifdef SIGUSR2
1912 add_user_signal (SIGUSR2, "sigusr2");
1913 #endif
1914 sigaction (SIGABRT, &thread_fatal_action, 0);
1915 #ifdef SIGPRE
1916 sigaction (SIGPRE, &thread_fatal_action, 0);
1917 #endif
1918 #ifdef SIGORE
1919 sigaction (SIGORE, &thread_fatal_action, 0);
1920 #endif
1921 #ifdef SIGUME
1922 sigaction (SIGUME, &thread_fatal_action, 0);
1923 #endif
1924 #ifdef SIGDLK
1925 sigaction (SIGDLK, &process_fatal_action, 0);
1926 #endif
1927 #ifdef SIGCPULIM
1928 sigaction (SIGCPULIM, &process_fatal_action, 0);
1929 #endif
1930 #ifdef SIGIOT
1931 sigaction (SIGIOT, &thread_fatal_action, 0);
1932 #endif
1933 #ifdef SIGEMT
1934 sigaction (SIGEMT, &thread_fatal_action, 0);
1935 #endif
1936 #ifdef SIGBUS
1937 sigaction (SIGBUS, &thread_fatal_action, 0);
1938 #endif
1939 sigaction (SIGSEGV, &thread_fatal_action, 0);
1940 #ifdef SIGSYS
1941 sigaction (SIGSYS, &thread_fatal_action, 0);
1942 #endif
1943 sigaction (SIGTERM, &process_fatal_action, 0);
1944 #ifdef SIGPROF
1945 signal (SIGPROF, SIG_IGN);
1946 #endif
1947 #ifdef SIGVTALRM
1948 sigaction (SIGVTALRM, &process_fatal_action, 0);
1949 #endif
1950 #ifdef SIGXCPU
1951 sigaction (SIGXCPU, &process_fatal_action, 0);
1952 #endif
1953 #ifdef SIGXFSZ
1954 sigaction (SIGXFSZ, &process_fatal_action, 0);
1955 #endif
1957 #ifdef SIGDANGER
1958 /* This just means available memory is getting low. */
1959 emacs_sigaction_init (&action, deliver_danger_signal);
1960 sigaction (SIGDANGER, &action, 0);
1961 #endif
1963 /* AIX-specific signals. */
1964 #ifdef SIGGRANT
1965 sigaction (SIGGRANT, &process_fatal_action, 0);
1966 #endif
1967 #ifdef SIGMIGRATE
1968 sigaction (SIGMIGRATE, &process_fatal_action, 0);
1969 #endif
1970 #ifdef SIGMSG
1971 sigaction (SIGMSG, &process_fatal_action, 0);
1972 #endif
1973 #ifdef SIGRETRACT
1974 sigaction (SIGRETRACT, &process_fatal_action, 0);
1975 #endif
1976 #ifdef SIGSAK
1977 sigaction (SIGSAK, &process_fatal_action, 0);
1978 #endif
1979 #ifdef SIGSOUND
1980 sigaction (SIGSOUND, &process_fatal_action, 0);
1981 #endif
1982 #ifdef SIGTALRM
1983 sigaction (SIGTALRM, &thread_fatal_action, 0);
1984 #endif
1987 #ifndef HAVE_RANDOM
1988 #ifdef random
1989 #define HAVE_RANDOM
1990 #endif
1991 #endif
1993 /* Figure out how many bits the system's random number generator uses.
1994 `random' and `lrand48' are assumed to return 31 usable bits.
1995 BSD `rand' returns a 31 bit value but the low order bits are unusable;
1996 so we'll shift it and treat it like the 15-bit USG `rand'. */
1998 #ifndef RAND_BITS
1999 # ifdef HAVE_RANDOM
2000 # define RAND_BITS 31
2001 # else /* !HAVE_RANDOM */
2002 # ifdef HAVE_LRAND48
2003 # define RAND_BITS 31
2004 # define random lrand48
2005 # else /* !HAVE_LRAND48 */
2006 # define RAND_BITS 15
2007 # if RAND_MAX == 32767
2008 # define random rand
2009 # else /* RAND_MAX != 32767 */
2010 # if RAND_MAX == 2147483647
2011 # define random() (rand () >> 16)
2012 # else /* RAND_MAX != 2147483647 */
2013 # ifdef USG
2014 # define random rand
2015 # else
2016 # define random() (rand () >> 16)
2017 # endif /* !USG */
2018 # endif /* RAND_MAX != 2147483647 */
2019 # endif /* RAND_MAX != 32767 */
2020 # endif /* !HAVE_LRAND48 */
2021 # endif /* !HAVE_RANDOM */
2022 #endif /* !RAND_BITS */
2024 void
2025 seed_random (void *seed, ptrdiff_t seed_size)
2027 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2028 unsigned int arg = 0;
2029 #else
2030 long int arg = 0;
2031 #endif
2032 unsigned char *argp = (unsigned char *) &arg;
2033 unsigned char *seedp = seed;
2034 ptrdiff_t i;
2035 for (i = 0; i < seed_size; i++)
2036 argp[i % sizeof arg] ^= seedp[i];
2037 #ifdef HAVE_RANDOM
2038 srandom (arg);
2039 #else
2040 # ifdef HAVE_LRAND48
2041 srand48 (arg);
2042 # else
2043 srand (arg);
2044 # endif
2045 #endif
2048 void
2049 init_random (void)
2051 EMACS_TIME t = current_emacs_time ();
2052 uintmax_t v = getpid () ^ EMACS_SECS (t) ^ EMACS_NSECS (t);
2053 seed_random (&v, sizeof v);
2057 * Return a nonnegative random integer out of whatever we've got.
2058 * It contains enough bits to make a random (signed) Emacs fixnum.
2059 * This suffices even for a 64-bit architecture with a 15-bit rand.
2061 EMACS_INT
2062 get_random (void)
2064 EMACS_UINT val = 0;
2065 int i;
2066 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2067 val = (random () ^ (val << RAND_BITS)
2068 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2069 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2070 return val & INTMASK;
2073 #ifndef HAVE_SNPRINTF
2074 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2076 snprintf (char *buf, size_t bufsize, char const *format, ...)
2078 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2079 ptrdiff_t nbytes = size - 1;
2080 va_list ap;
2082 if (size)
2084 va_start (ap, format);
2085 nbytes = doprnt (buf, size, format, 0, ap);
2086 va_end (ap);
2089 if (nbytes == size - 1)
2091 /* Calculate the length of the string that would have been created
2092 had the buffer been large enough. */
2093 char stackbuf[4000];
2094 char *b = stackbuf;
2095 ptrdiff_t bsize = sizeof stackbuf;
2096 va_start (ap, format);
2097 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2098 va_end (ap);
2099 if (b != stackbuf)
2100 xfree (b);
2103 if (INT_MAX < nbytes)
2105 #ifdef EOVERFLOW
2106 errno = EOVERFLOW;
2107 #else
2108 errno = EDOM;
2109 #endif
2110 return -1;
2112 return nbytes;
2114 #endif
2116 /* If a backtrace is available, output the top lines of it to stderr.
2117 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2118 This function may be called from a signal handler, so it should
2119 not invoke async-unsafe functions like malloc. */
2120 void
2121 emacs_backtrace (int backtrace_limit)
2123 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2124 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2125 void *buffer;
2126 int npointers;
2128 if (thread_backtrace_npointers)
2130 buffer = thread_backtrace_buffer;
2131 npointers = thread_backtrace_npointers;
2133 else
2135 buffer = main_backtrace_buffer;
2136 npointers = backtrace (buffer, bounded_limit + 1);
2139 if (npointers)
2141 ignore_value (write (STDERR_FILENO, "\nBacktrace:\n", 12));
2142 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2143 if (bounded_limit < npointers)
2144 ignore_value (write (STDERR_FILENO, "...\n", 4));
2148 #ifndef HAVE_NTGUI
2149 void
2150 emacs_abort (void)
2152 terminate_due_to_signal (SIGABRT, 40);
2154 #endif
2157 emacs_open (const char *path, int oflag, int mode)
2159 register int rtnval;
2161 while ((rtnval = open (path, oflag, mode)) == -1
2162 && (errno == EINTR))
2163 QUIT;
2164 return (rtnval);
2168 emacs_close (int fd)
2170 int did_retry = 0;
2171 register int rtnval;
2173 while ((rtnval = close (fd)) == -1
2174 && (errno == EINTR))
2175 did_retry = 1;
2177 /* If close is interrupted SunOS 4.1 may or may not have closed the
2178 file descriptor. If it did the second close will fail with
2179 errno = EBADF. That means we have succeeded. */
2180 if (rtnval == -1 && did_retry && errno == EBADF)
2181 return 0;
2183 return rtnval;
2186 /* Maximum number of bytes to read or write in a single system call.
2187 This works around a serious bug in Linux kernels before 2.6.16; see
2188 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2189 It's likely to work around similar bugs in other operating systems, so do it
2190 on all platforms. Round INT_MAX down to a page size, with the conservative
2191 assumption that page sizes are at most 2**18 bytes (any kernel with a
2192 page size larger than that shouldn't have the bug). */
2193 #ifndef MAX_RW_COUNT
2194 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2195 #endif
2197 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2198 Return the number of bytes read, which might be less than NBYTE.
2199 On error, set errno and return -1. */
2200 ptrdiff_t
2201 emacs_read (int fildes, char *buf, ptrdiff_t nbyte)
2203 register ssize_t rtnval;
2205 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2206 passes a size that large to emacs_read. */
2208 while ((rtnval = read (fildes, buf, nbyte)) == -1
2209 && (errno == EINTR))
2210 QUIT;
2211 return (rtnval);
2214 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2215 or if a partial write occurs. Return the number of bytes written, setting
2216 errno if this is less than NBYTE. */
2217 ptrdiff_t
2218 emacs_write (int fildes, const char *buf, ptrdiff_t nbyte)
2220 ssize_t rtnval;
2221 ptrdiff_t bytes_written;
2223 bytes_written = 0;
2225 while (nbyte > 0)
2227 rtnval = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2229 if (rtnval < 0)
2231 if (errno == EINTR)
2233 /* I originally used `QUIT' but that might causes files to
2234 be truncated if you hit C-g in the middle of it. --Stef */
2235 if (pending_signals)
2236 process_pending_signals ();
2237 continue;
2239 else
2240 break;
2243 buf += rtnval;
2244 nbyte -= rtnval;
2245 bytes_written += rtnval;
2248 return (bytes_written);
2251 static struct allocator const emacs_norealloc_allocator =
2252 { xmalloc, NULL, xfree, memory_full };
2254 /* Get the symbolic link value of FILENAME. Return a pointer to a
2255 NUL-terminated string. If readlink fails, return NULL and set
2256 errno. If the value fits in INITIAL_BUF, return INITIAL_BUF.
2257 Otherwise, allocate memory and return a pointer to that memory. If
2258 memory allocation fails, diagnose and fail without returning. If
2259 successful, store the length of the symbolic link into *LINKLEN. */
2260 char *
2261 emacs_readlink (char const *filename, char initial_buf[READLINK_BUFSIZE])
2263 return careadlinkat (AT_FDCWD, filename, initial_buf, READLINK_BUFSIZE,
2264 &emacs_norealloc_allocator, careadlinkatcwd);
2267 /* Return a struct timeval that is roughly equivalent to T.
2268 Use the least timeval not less than T.
2269 Return an extremal value if the result would overflow. */
2270 struct timeval
2271 make_timeval (EMACS_TIME t)
2273 struct timeval tv;
2274 tv.tv_sec = t.tv_sec;
2275 tv.tv_usec = t.tv_nsec / 1000;
2277 if (t.tv_nsec % 1000 != 0)
2279 if (tv.tv_usec < 999999)
2280 tv.tv_usec++;
2281 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2283 tv.tv_sec++;
2284 tv.tv_usec = 0;
2288 return tv;
2291 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2292 ATIME and MTIME, respectively.
2293 FD must be either negative -- in which case it is ignored --
2294 or a file descriptor that is open on FILE.
2295 If FD is nonnegative, then FILE can be NULL. */
2297 set_file_times (int fd, const char *filename,
2298 EMACS_TIME atime, EMACS_TIME mtime)
2300 struct timespec timespec[2];
2301 timespec[0] = atime;
2302 timespec[1] = mtime;
2303 return fdutimens (fd, filename, timespec);
2306 /* Like strsignal, except async-signal-safe, and this function typically
2307 returns a string in the C locale rather than the current locale. */
2308 char const *
2309 safe_strsignal (int code)
2311 char const *signame = 0;
2313 if (0 <= code && code < sys_siglist_entries)
2314 signame = sys_siglist[code];
2315 if (! signame)
2316 signame = "Unknown signal";
2318 return signame;
2321 #ifndef DOS_NT
2322 /* For make-serial-process */
2324 serial_open (char *port)
2326 int fd = emacs_open (port, O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2327 if (fd < 0)
2329 error ("Could not open %s: %s",
2330 port, emacs_strerror (errno));
2332 #ifdef TIOCEXCL
2333 ioctl (fd, TIOCEXCL, (char *) 0);
2334 #endif
2336 return fd;
2339 #if !defined (HAVE_CFMAKERAW)
2340 /* Workaround for targets which are missing cfmakeraw. */
2341 /* Pasted from man page. */
2342 static void
2343 cfmakeraw (struct termios *termios_p)
2345 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2346 termios_p->c_oflag &= ~OPOST;
2347 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2348 termios_p->c_cflag &= ~(CSIZE|PARENB);
2349 termios_p->c_cflag |= CS8;
2351 #endif /* !defined (HAVE_CFMAKERAW */
2353 #if !defined (HAVE_CFSETSPEED)
2354 /* Workaround for targets which are missing cfsetspeed. */
2355 static int
2356 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2358 return (cfsetispeed (termios_p, vitesse)
2359 + cfsetospeed (termios_p, vitesse));
2361 #endif
2363 /* For serial-process-configure */
2364 void
2365 serial_configure (struct Lisp_Process *p,
2366 Lisp_Object contact)
2368 Lisp_Object childp2 = Qnil;
2369 Lisp_Object tem = Qnil;
2370 struct termios attr;
2371 int err = -1;
2372 char summary[4] = "???"; /* This usually becomes "8N1". */
2374 childp2 = Fcopy_sequence (p->childp);
2376 /* Read port attributes and prepare default configuration. */
2377 err = tcgetattr (p->outfd, &attr);
2378 if (err != 0)
2379 error ("tcgetattr() failed: %s", emacs_strerror (errno));
2380 cfmakeraw (&attr);
2381 #if defined (CLOCAL)
2382 attr.c_cflag |= CLOCAL;
2383 #endif
2384 #if defined (CREAD)
2385 attr.c_cflag |= CREAD;
2386 #endif
2388 /* Configure speed. */
2389 if (!NILP (Fplist_member (contact, QCspeed)))
2390 tem = Fplist_get (contact, QCspeed);
2391 else
2392 tem = Fplist_get (p->childp, QCspeed);
2393 CHECK_NUMBER (tem);
2394 err = cfsetspeed (&attr, XINT (tem));
2395 if (err != 0)
2396 error ("cfsetspeed(%"pI"d) failed: %s", XINT (tem),
2397 emacs_strerror (errno));
2398 childp2 = Fplist_put (childp2, QCspeed, tem);
2400 /* Configure bytesize. */
2401 if (!NILP (Fplist_member (contact, QCbytesize)))
2402 tem = Fplist_get (contact, QCbytesize);
2403 else
2404 tem = Fplist_get (p->childp, QCbytesize);
2405 if (NILP (tem))
2406 tem = make_number (8);
2407 CHECK_NUMBER (tem);
2408 if (XINT (tem) != 7 && XINT (tem) != 8)
2409 error (":bytesize must be nil (8), 7, or 8");
2410 summary[0] = XINT (tem) + '0';
2411 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2412 attr.c_cflag &= ~CSIZE;
2413 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2414 #else
2415 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2416 if (XINT (tem) != 8)
2417 error ("Bytesize cannot be changed");
2418 #endif
2419 childp2 = Fplist_put (childp2, QCbytesize, tem);
2421 /* Configure parity. */
2422 if (!NILP (Fplist_member (contact, QCparity)))
2423 tem = Fplist_get (contact, QCparity);
2424 else
2425 tem = Fplist_get (p->childp, QCparity);
2426 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2427 error (":parity must be nil (no parity), `even', or `odd'");
2428 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2429 attr.c_cflag &= ~(PARENB | PARODD);
2430 attr.c_iflag &= ~(IGNPAR | INPCK);
2431 if (NILP (tem))
2433 summary[1] = 'N';
2435 else if (EQ (tem, Qeven))
2437 summary[1] = 'E';
2438 attr.c_cflag |= PARENB;
2439 attr.c_iflag |= (IGNPAR | INPCK);
2441 else if (EQ (tem, Qodd))
2443 summary[1] = 'O';
2444 attr.c_cflag |= (PARENB | PARODD);
2445 attr.c_iflag |= (IGNPAR | INPCK);
2447 #else
2448 /* Don't error on no parity, which should be set by cfmakeraw. */
2449 if (!NILP (tem))
2450 error ("Parity cannot be configured");
2451 #endif
2452 childp2 = Fplist_put (childp2, QCparity, tem);
2454 /* Configure stopbits. */
2455 if (!NILP (Fplist_member (contact, QCstopbits)))
2456 tem = Fplist_get (contact, QCstopbits);
2457 else
2458 tem = Fplist_get (p->childp, QCstopbits);
2459 if (NILP (tem))
2460 tem = make_number (1);
2461 CHECK_NUMBER (tem);
2462 if (XINT (tem) != 1 && XINT (tem) != 2)
2463 error (":stopbits must be nil (1 stopbit), 1, or 2");
2464 summary[2] = XINT (tem) + '0';
2465 #if defined (CSTOPB)
2466 attr.c_cflag &= ~CSTOPB;
2467 if (XINT (tem) == 2)
2468 attr.c_cflag |= CSTOPB;
2469 #else
2470 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2471 if (XINT (tem) != 1)
2472 error ("Stopbits cannot be configured");
2473 #endif
2474 childp2 = Fplist_put (childp2, QCstopbits, tem);
2476 /* Configure flowcontrol. */
2477 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2478 tem = Fplist_get (contact, QCflowcontrol);
2479 else
2480 tem = Fplist_get (p->childp, QCflowcontrol);
2481 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2482 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2483 #if defined (CRTSCTS)
2484 attr.c_cflag &= ~CRTSCTS;
2485 #endif
2486 #if defined (CNEW_RTSCTS)
2487 attr.c_cflag &= ~CNEW_RTSCTS;
2488 #endif
2489 #if defined (IXON) && defined (IXOFF)
2490 attr.c_iflag &= ~(IXON | IXOFF);
2491 #endif
2492 if (NILP (tem))
2494 /* Already configured. */
2496 else if (EQ (tem, Qhw))
2498 #if defined (CRTSCTS)
2499 attr.c_cflag |= CRTSCTS;
2500 #elif defined (CNEW_RTSCTS)
2501 attr.c_cflag |= CNEW_RTSCTS;
2502 #else
2503 error ("Hardware flowcontrol (RTS/CTS) not supported");
2504 #endif
2506 else if (EQ (tem, Qsw))
2508 #if defined (IXON) && defined (IXOFF)
2509 attr.c_iflag |= (IXON | IXOFF);
2510 #else
2511 error ("Software flowcontrol (XON/XOFF) not supported");
2512 #endif
2514 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2516 /* Activate configuration. */
2517 err = tcsetattr (p->outfd, TCSANOW, &attr);
2518 if (err != 0)
2519 error ("tcsetattr() failed: %s", emacs_strerror (errno));
2521 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2522 pset_childp (p, childp2);
2524 #endif /* not DOS_NT */
2526 /* System depended enumeration of and access to system processes a-la ps(1). */
2528 #ifdef HAVE_PROCFS
2530 /* Process enumeration and access via /proc. */
2532 Lisp_Object
2533 list_system_processes (void)
2535 Lisp_Object procdir, match, proclist, next;
2536 struct gcpro gcpro1, gcpro2;
2537 register Lisp_Object tail;
2539 GCPRO2 (procdir, match);
2540 /* For every process on the system, there's a directory in the
2541 "/proc" pseudo-directory whose name is the numeric ID of that
2542 process. */
2543 procdir = build_string ("/proc");
2544 match = build_string ("[0-9]+");
2545 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2547 /* `proclist' gives process IDs as strings. Destructively convert
2548 each string into a number. */
2549 for (tail = proclist; CONSP (tail); tail = next)
2551 next = XCDR (tail);
2552 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2554 UNGCPRO;
2556 /* directory_files_internal returns the files in reverse order; undo
2557 that. */
2558 proclist = Fnreverse (proclist);
2559 return proclist;
2562 #elif defined BSD_SYSTEM
2564 Lisp_Object
2565 list_system_processes (void)
2567 #if defined DARWIN_OS || defined __NetBSD__ || defined __OpenBSD__
2568 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2569 #else
2570 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2571 #endif
2572 size_t len;
2573 struct kinfo_proc *procs;
2574 size_t i;
2576 struct gcpro gcpro1;
2577 Lisp_Object proclist = Qnil;
2579 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2580 return proclist;
2582 procs = xmalloc (len);
2583 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2585 xfree (procs);
2586 return proclist;
2589 GCPRO1 (proclist);
2590 len /= sizeof (struct kinfo_proc);
2591 for (i = 0; i < len; i++)
2593 #if defined DARWIN_OS || defined __NetBSD__
2594 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2595 #elif defined __OpenBSD__
2596 proclist = Fcons (make_fixnum_or_float (procs[i].p_pid), proclist);
2597 #else
2598 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2599 #endif
2601 UNGCPRO;
2603 xfree (procs);
2605 return proclist;
2608 /* The WINDOWSNT implementation is in w32.c.
2609 The MSDOS implementation is in dosfns.c. */
2610 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2612 Lisp_Object
2613 list_system_processes (void)
2615 return Qnil;
2618 #endif /* !defined (WINDOWSNT) */
2620 #ifdef GNU_LINUX
2621 static EMACS_TIME
2622 time_from_jiffies (unsigned long long tval, long hz)
2624 unsigned long long s = tval / hz;
2625 unsigned long long frac = tval % hz;
2626 int ns;
2628 if (TYPE_MAXIMUM (time_t) < s)
2629 time_overflow ();
2630 if (LONG_MAX - 1 <= ULLONG_MAX / EMACS_TIME_RESOLUTION
2631 || frac <= ULLONG_MAX / EMACS_TIME_RESOLUTION)
2632 ns = frac * EMACS_TIME_RESOLUTION / hz;
2633 else
2635 /* This is reachable only in the unlikely case that HZ * HZ
2636 exceeds ULLONG_MAX. It calculates an approximation that is
2637 guaranteed to be in range. */
2638 long hz_per_ns = (hz / EMACS_TIME_RESOLUTION
2639 + (hz % EMACS_TIME_RESOLUTION != 0));
2640 ns = frac / hz_per_ns;
2643 return make_emacs_time (s, ns);
2646 static Lisp_Object
2647 ltime_from_jiffies (unsigned long long tval, long hz)
2649 EMACS_TIME t = time_from_jiffies (tval, hz);
2650 return make_lisp_time (t);
2653 static EMACS_TIME
2654 get_up_time (void)
2656 FILE *fup;
2657 EMACS_TIME up = make_emacs_time (0, 0);
2659 block_input ();
2660 fup = fopen ("/proc/uptime", "r");
2662 if (fup)
2664 unsigned long long upsec, upfrac, idlesec, idlefrac;
2665 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2667 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2668 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2669 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2670 == 4)
2672 if (TYPE_MAXIMUM (time_t) < upsec)
2674 upsec = TYPE_MAXIMUM (time_t);
2675 upfrac = EMACS_TIME_RESOLUTION - 1;
2677 else
2679 int upfraclen = upfrac_end - upfrac_start;
2680 for (; upfraclen < LOG10_EMACS_TIME_RESOLUTION; upfraclen++)
2681 upfrac *= 10;
2682 for (; LOG10_EMACS_TIME_RESOLUTION < upfraclen; upfraclen--)
2683 upfrac /= 10;
2684 upfrac = min (upfrac, EMACS_TIME_RESOLUTION - 1);
2686 up = make_emacs_time (upsec, upfrac);
2688 fclose (fup);
2690 unblock_input ();
2692 return up;
2695 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2696 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2698 static Lisp_Object
2699 procfs_ttyname (int rdev)
2701 FILE *fdev = NULL;
2702 char name[PATH_MAX];
2704 block_input ();
2705 fdev = fopen ("/proc/tty/drivers", "r");
2707 if (fdev)
2709 unsigned major;
2710 unsigned long minor_beg, minor_end;
2711 char minor[25]; /* 2 32-bit numbers + dash */
2712 char *endp;
2714 while (!feof (fdev) && !ferror (fdev))
2716 if (3 <= fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor)
2717 && major == MAJOR (rdev))
2719 minor_beg = strtoul (minor, &endp, 0);
2720 if (*endp == '\0')
2721 minor_end = minor_beg;
2722 else if (*endp == '-')
2723 minor_end = strtoul (endp + 1, &endp, 0);
2724 else
2725 continue;
2727 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2729 sprintf (name + strlen (name), "%u", MINOR (rdev));
2730 break;
2734 fclose (fdev);
2736 unblock_input ();
2737 return build_string (name);
2740 static unsigned long
2741 procfs_get_total_memory (void)
2743 FILE *fmem = NULL;
2744 unsigned long retval = 2 * 1024 * 1024; /* default: 2GB */
2746 block_input ();
2747 fmem = fopen ("/proc/meminfo", "r");
2749 if (fmem)
2751 unsigned long entry_value;
2752 char entry_name[20]; /* the longest I saw is 13+1 */
2754 while (!feof (fmem) && !ferror (fmem))
2756 if (2 <= fscanf (fmem, "%s %lu kB\n", entry_name, &entry_value)
2757 && strcmp (entry_name, "MemTotal:") == 0)
2759 retval = entry_value;
2760 break;
2763 fclose (fmem);
2765 unblock_input ();
2766 return retval;
2769 Lisp_Object
2770 system_process_attributes (Lisp_Object pid)
2772 char procfn[PATH_MAX], fn[PATH_MAX];
2773 struct stat st;
2774 struct passwd *pw;
2775 struct group *gr;
2776 long clocks_per_sec;
2777 char *procfn_end;
2778 char procbuf[1025], *p, *q;
2779 int fd;
2780 ssize_t nread;
2781 static char const default_cmd[] = "???";
2782 const char *cmd = default_cmd;
2783 int cmdsize = sizeof default_cmd - 1;
2784 char *cmdline = NULL;
2785 ptrdiff_t cmdline_size;
2786 unsigned char c;
2787 printmax_t proc_id;
2788 int ppid, pgrp, sess, tty, tpgid, thcount;
2789 uid_t uid;
2790 gid_t gid;
2791 unsigned long long u_time, s_time, cutime, cstime, start;
2792 long priority, niceness, rss;
2793 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
2794 EMACS_TIME tnow, tstart, tboot, telapsed, us_time;
2795 double pcpu, pmem;
2796 Lisp_Object attrs = Qnil;
2797 Lisp_Object cmd_str, decoded_cmd, tem;
2798 struct gcpro gcpro1, gcpro2;
2800 CHECK_NUMBER_OR_FLOAT (pid);
2801 CONS_TO_INTEGER (pid, pid_t, proc_id);
2802 sprintf (procfn, "/proc/%"pMd, proc_id);
2803 if (stat (procfn, &st) < 0)
2804 return attrs;
2806 GCPRO2 (attrs, decoded_cmd);
2808 /* euid egid */
2809 uid = st.st_uid;
2810 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
2811 block_input ();
2812 pw = getpwuid (uid);
2813 unblock_input ();
2814 if (pw)
2815 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
2817 gid = st.st_gid;
2818 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
2819 block_input ();
2820 gr = getgrgid (gid);
2821 unblock_input ();
2822 if (gr)
2823 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
2825 strcpy (fn, procfn);
2826 procfn_end = fn + strlen (fn);
2827 strcpy (procfn_end, "/stat");
2828 fd = emacs_open (fn, O_RDONLY, 0);
2829 if (fd >= 0 && (nread = emacs_read (fd, procbuf, sizeof (procbuf) - 1)) > 0)
2831 procbuf[nread] = '\0';
2832 p = procbuf;
2834 p = strchr (p, '(');
2835 if (p != NULL)
2837 q = strrchr (p + 1, ')');
2838 /* comm */
2839 if (q != NULL)
2841 cmd = p + 1;
2842 cmdsize = q - cmd;
2845 else
2846 q = NULL;
2847 /* Command name is encoded in locale-coding-system; decode it. */
2848 cmd_str = make_unibyte_string (cmd, cmdsize);
2849 decoded_cmd = code_convert_string_norecord (cmd_str,
2850 Vlocale_coding_system, 0);
2851 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
2853 if (q)
2855 EMACS_INT ppid_eint, pgrp_eint, sess_eint, tpgid_eint, thcount_eint;
2856 p = q + 2;
2857 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
2858 sscanf (p, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
2859 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
2860 &minflt, &cminflt, &majflt, &cmajflt,
2861 &u_time, &s_time, &cutime, &cstime,
2862 &priority, &niceness, &thcount, &start, &vsize, &rss);
2864 char state_str[2];
2866 state_str[0] = c;
2867 state_str[1] = '\0';
2868 tem = build_string (state_str);
2869 attrs = Fcons (Fcons (Qstate, tem), attrs);
2871 /* Stops GCC whining about limited range of data type. */
2872 ppid_eint = ppid;
2873 pgrp_eint = pgrp;
2874 sess_eint = sess;
2875 tpgid_eint = tpgid;
2876 thcount_eint = thcount;
2877 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid_eint)), attrs);
2878 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp_eint)), attrs);
2879 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess_eint)), attrs);
2880 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
2881 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid_eint)), attrs);
2882 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
2883 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
2884 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)), attrs);
2885 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)), attrs);
2886 clocks_per_sec = sysconf (_SC_CLK_TCK);
2887 if (clocks_per_sec < 0)
2888 clocks_per_sec = 100;
2889 attrs = Fcons (Fcons (Qutime,
2890 ltime_from_jiffies (u_time, clocks_per_sec)),
2891 attrs);
2892 attrs = Fcons (Fcons (Qstime,
2893 ltime_from_jiffies (s_time, clocks_per_sec)),
2894 attrs);
2895 attrs = Fcons (Fcons (Qtime,
2896 ltime_from_jiffies (s_time + u_time,
2897 clocks_per_sec)),
2898 attrs);
2899 attrs = Fcons (Fcons (Qcutime,
2900 ltime_from_jiffies (cutime, clocks_per_sec)),
2901 attrs);
2902 attrs = Fcons (Fcons (Qcstime,
2903 ltime_from_jiffies (cstime, clocks_per_sec)),
2904 attrs);
2905 attrs = Fcons (Fcons (Qctime,
2906 ltime_from_jiffies (cstime+cutime, clocks_per_sec)),
2907 attrs);
2908 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
2909 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
2910 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount_eint)), attrs);
2911 tnow = current_emacs_time ();
2912 telapsed = get_up_time ();
2913 tboot = sub_emacs_time (tnow, telapsed);
2914 tstart = time_from_jiffies (start, clocks_per_sec);
2915 tstart = add_emacs_time (tboot, tstart);
2916 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
2917 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize/1024)), attrs);
2918 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4*rss)), attrs);
2919 telapsed = sub_emacs_time (tnow, tstart);
2920 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
2921 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
2922 pcpu = (EMACS_TIME_TO_DOUBLE (us_time)
2923 / EMACS_TIME_TO_DOUBLE (telapsed));
2924 if (pcpu > 1.0)
2925 pcpu = 1.0;
2926 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
2927 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
2928 if (pmem > 100)
2929 pmem = 100;
2930 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
2933 if (fd >= 0)
2934 emacs_close (fd);
2936 /* args */
2937 strcpy (procfn_end, "/cmdline");
2938 fd = emacs_open (fn, O_RDONLY, 0);
2939 if (fd >= 0)
2941 char ch;
2942 for (cmdline_size = 0; cmdline_size < STRING_BYTES_BOUND; cmdline_size++)
2944 if (emacs_read (fd, &ch, 1) != 1)
2945 break;
2946 c = ch;
2947 if (c_isspace (c) || c == '\\')
2948 cmdline_size++; /* for later quoting, see below */
2950 if (cmdline_size)
2952 cmdline = xmalloc (cmdline_size + 1);
2953 lseek (fd, 0L, SEEK_SET);
2954 cmdline[0] = '\0';
2955 if ((nread = read (fd, cmdline, cmdline_size)) >= 0)
2956 cmdline[nread++] = '\0';
2957 else
2959 /* Assigning zero to `nread' makes us skip the following
2960 two loops, assign zero to cmdline_size, and enter the
2961 following `if' clause that handles unknown command
2962 lines. */
2963 nread = 0;
2965 /* We don't want trailing null characters. */
2966 for (p = cmdline + nread; p > cmdline + 1 && !p[-1]; p--)
2967 nread--;
2968 for (p = cmdline; p < cmdline + nread; p++)
2970 /* Escape-quote whitespace and backslashes. */
2971 if (c_isspace (*p) || *p == '\\')
2973 memmove (p + 1, p, nread - (p - cmdline));
2974 nread++;
2975 *p++ = '\\';
2977 else if (*p == '\0')
2978 *p = ' ';
2980 cmdline_size = nread;
2982 if (!cmdline_size)
2984 cmdline_size = cmdsize + 2;
2985 cmdline = xmalloc (cmdline_size + 1);
2986 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
2988 emacs_close (fd);
2989 /* Command line is encoded in locale-coding-system; decode it. */
2990 cmd_str = make_unibyte_string (cmdline, cmdline_size);
2991 decoded_cmd = code_convert_string_norecord (cmd_str,
2992 Vlocale_coding_system, 0);
2993 xfree (cmdline);
2994 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
2997 UNGCPRO;
2998 return attrs;
3001 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3003 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3004 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3005 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3006 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3007 #undef _FILE_OFFSET_BITS
3008 #else
3009 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3010 #endif
3012 #include <procfs.h>
3014 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3015 #define _FILE_OFFSET_BITS 64
3016 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3017 #endif
3018 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3020 Lisp_Object
3021 system_process_attributes (Lisp_Object pid)
3023 char procfn[PATH_MAX], fn[PATH_MAX];
3024 struct stat st;
3025 struct passwd *pw;
3026 struct group *gr;
3027 char *procfn_end;
3028 struct psinfo pinfo;
3029 int fd;
3030 ssize_t nread;
3031 printmax_t proc_id;
3032 uid_t uid;
3033 gid_t gid;
3034 Lisp_Object attrs = Qnil;
3035 Lisp_Object decoded_cmd, tem;
3036 struct gcpro gcpro1, gcpro2;
3038 CHECK_NUMBER_OR_FLOAT (pid);
3039 CONS_TO_INTEGER (pid, pid_t, proc_id);
3040 sprintf (procfn, "/proc/%"pMd, proc_id);
3041 if (stat (procfn, &st) < 0)
3042 return attrs;
3044 GCPRO2 (attrs, decoded_cmd);
3046 /* euid egid */
3047 uid = st.st_uid;
3048 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3049 block_input ();
3050 pw = getpwuid (uid);
3051 unblock_input ();
3052 if (pw)
3053 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3055 gid = st.st_gid;
3056 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3057 block_input ();
3058 gr = getgrgid (gid);
3059 unblock_input ();
3060 if (gr)
3061 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3063 strcpy (fn, procfn);
3064 procfn_end = fn + strlen (fn);
3065 strcpy (procfn_end, "/psinfo");
3066 fd = emacs_open (fn, O_RDONLY, 0);
3067 if (fd >= 0
3068 && (nread = read (fd, (char*)&pinfo, sizeof (struct psinfo)) > 0))
3070 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3071 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3072 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3075 char state_str[2];
3076 state_str[0] = pinfo.pr_lwp.pr_sname;
3077 state_str[1] = '\0';
3078 tem = build_string (state_str);
3079 attrs = Fcons (Fcons (Qstate, tem), attrs);
3082 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3083 need to get a string from it. */
3085 /* FIXME: missing: Qtpgid */
3087 /* FIXME: missing:
3088 Qminflt
3089 Qmajflt
3090 Qcminflt
3091 Qcmajflt
3093 Qutime
3094 Qcutime
3095 Qstime
3096 Qcstime
3097 Are they available? */
3099 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3100 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3101 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3102 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3103 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)), attrs);
3105 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3106 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)), attrs);
3107 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)), attrs);
3109 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3110 range 0 .. 2**15, representing 0.0 .. 1.0. */
3111 attrs = Fcons (Fcons (Qpcpu, make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)), attrs);
3112 attrs = Fcons (Fcons (Qpmem, make_float (100.0 / 0x8000 * pinfo.pr_pctmem)), attrs);
3114 decoded_cmd
3115 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_fname,
3116 strlen (pinfo.pr_fname)),
3117 Vlocale_coding_system, 0);
3118 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3119 decoded_cmd
3120 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_psargs,
3121 strlen (pinfo.pr_psargs)),
3122 Vlocale_coding_system, 0);
3123 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3126 if (fd >= 0)
3127 emacs_close (fd);
3129 UNGCPRO;
3130 return attrs;
3133 #elif defined __FreeBSD__
3135 static EMACS_TIME
3136 timeval_to_EMACS_TIME (struct timeval t)
3138 return make_emacs_time (t.tv_sec, t.tv_usec * 1000);
3141 static Lisp_Object
3142 make_lisp_timeval (struct timeval t)
3144 return make_lisp_time (timeval_to_EMACS_TIME (t));
3147 Lisp_Object
3148 system_process_attributes (Lisp_Object pid)
3150 int proc_id;
3151 int pagesize = getpagesize ();
3152 int npages;
3153 int fscale;
3154 struct passwd *pw;
3155 struct group *gr;
3156 char *ttyname;
3157 size_t len;
3158 char args[MAXPATHLEN];
3159 EMACS_TIME t, now;
3161 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3162 struct kinfo_proc proc;
3163 size_t proclen = sizeof proc;
3165 struct gcpro gcpro1, gcpro2;
3166 Lisp_Object attrs = Qnil;
3167 Lisp_Object decoded_comm;
3169 CHECK_NUMBER_OR_FLOAT (pid);
3170 CONS_TO_INTEGER (pid, int, proc_id);
3171 mib[3] = proc_id;
3173 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3174 return attrs;
3176 GCPRO2 (attrs, decoded_comm);
3178 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3180 block_input ();
3181 pw = getpwuid (proc.ki_uid);
3182 unblock_input ();
3183 if (pw)
3184 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3186 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3188 block_input ();
3189 gr = getgrgid (proc.ki_svgid);
3190 unblock_input ();
3191 if (gr)
3192 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3194 decoded_comm = code_convert_string_norecord
3195 (make_unibyte_string (proc.ki_comm, strlen (proc.ki_comm)),
3196 Vlocale_coding_system, 0);
3198 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3200 char state[2] = {'\0', '\0'};
3201 switch (proc.ki_stat)
3203 case SRUN:
3204 state[0] = 'R';
3205 break;
3207 case SSLEEP:
3208 state[0] = 'S';
3209 break;
3211 case SLOCK:
3212 state[0] = 'D';
3213 break;
3215 case SZOMB:
3216 state[0] = 'Z';
3217 break;
3219 case SSTOP:
3220 state[0] = 'T';
3221 break;
3223 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3226 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3227 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3228 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3230 block_input ();
3231 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3232 unblock_input ();
3233 if (ttyname)
3234 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3236 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3237 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3238 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3239 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3240 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3242 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3243 attrs);
3244 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3245 attrs);
3246 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage.ru_utime),
3247 timeval_to_EMACS_TIME (proc.ki_rusage.ru_stime));
3248 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3250 attrs = Fcons (Fcons (Qcutime,
3251 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3252 attrs);
3253 attrs = Fcons (Fcons (Qcstime,
3254 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3255 attrs);
3256 t = add_emacs_time (timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_utime),
3257 timeval_to_EMACS_TIME (proc.ki_rusage_ch.ru_stime));
3258 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3260 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3261 attrs);
3262 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3263 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3264 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3265 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3266 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3267 attrs);
3269 now = current_emacs_time ();
3270 t = sub_emacs_time (now, timeval_to_EMACS_TIME (proc.ki_start));
3271 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3273 len = sizeof fscale;
3274 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3276 double pcpu;
3277 fixpt_t ccpu;
3278 len = sizeof ccpu;
3279 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3281 pcpu = (100.0 * proc.ki_pctcpu / fscale
3282 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3283 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3287 len = sizeof npages;
3288 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3290 double pmem = (proc.ki_flag & P_INMEM
3291 ? 100.0 * proc.ki_rssize / npages
3292 : 0);
3293 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3296 mib[2] = KERN_PROC_ARGS;
3297 len = MAXPATHLEN;
3298 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3300 int i;
3301 for (i = 0; i < len; i++)
3303 if (! args[i] && i < len - 1)
3304 args[i] = ' ';
3307 decoded_comm =
3308 (code_convert_string_norecord
3309 (build_unibyte_string (args),
3310 Vlocale_coding_system, 0));
3312 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3315 UNGCPRO;
3316 return attrs;
3319 /* The WINDOWSNT implementation is in w32.c.
3320 The MSDOS implementation is in dosfns.c. */
3321 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3323 Lisp_Object
3324 system_process_attributes (Lisp_Object pid)
3326 return Qnil;
3329 #endif /* !defined (WINDOWSNT) */