authors.el updates and sorting change
[emacs/old-mirror.git] / src / sysdep.c
blobc0d651b296a0844ae8985c46bd5bde370b58cc89
1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2014 Free Software
3 Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #include <execinfo.h>
23 #include "sysstdio.h"
24 #ifdef HAVE_PWD_H
25 #include <pwd.h>
26 #include <grp.h>
27 #endif /* HAVE_PWD_H */
28 #include <limits.h>
29 #include <unistd.h>
31 #include <c-ctype.h>
32 #include <utimens.h>
34 #include "lisp.h"
35 #include "sysselect.h"
36 #include "blockinput.h"
38 #if defined DARWIN_OS || defined __FreeBSD__
39 # include <sys/sysctl.h>
40 #endif
42 #ifdef __FreeBSD__
43 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
44 'struct frame', so rename it. */
45 # define frame freebsd_frame
46 # include <sys/user.h>
47 # undef frame
49 # include <math.h>
50 #endif
52 #ifdef WINDOWSNT
53 #define read sys_read
54 #define write sys_write
55 #ifndef STDERR_FILENO
56 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
57 #endif
58 #include <windows.h>
59 #endif /* not WINDOWSNT */
61 #include <sys/types.h>
62 #include <sys/stat.h>
63 #include <errno.h>
65 /* Get SI_SRPC_DOMAIN, if it is available. */
66 #ifdef HAVE_SYS_SYSTEMINFO_H
67 #include <sys/systeminfo.h>
68 #endif
70 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
71 #include "msdos.h"
72 #endif
74 #ifdef HAVE_SYS_RESOURCE_H
75 #include <sys/resource.h>
76 #endif
77 #include <sys/param.h>
78 #include <sys/file.h>
79 #include <fcntl.h>
81 #include "systty.h"
82 #include "syswait.h"
84 #ifdef HAVE_SYS_UTSNAME_H
85 #include <sys/utsname.h>
86 #include <memory.h>
87 #endif /* HAVE_SYS_UTSNAME_H */
89 #include "keyboard.h"
90 #include "frame.h"
91 #include "window.h"
92 #include "termhooks.h"
93 #include "termchar.h"
94 #include "termopts.h"
95 #include "dispextern.h"
96 #include "process.h"
97 #include "cm.h" /* for reset_sys_modes */
99 #ifdef WINDOWSNT
100 #include <direct.h>
101 /* In process.h which conflicts with the local copy. */
102 #define _P_WAIT 0
103 int _cdecl _spawnlp (int, const char *, const char *, ...);
104 int _cdecl _getpid (void);
105 #endif
107 #include "syssignal.h"
108 #include "systime.h"
110 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
111 #ifndef ULLONG_MAX
112 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
113 #endif
115 /* Declare here, including term.h is problematic on some systems. */
116 extern void tputs (const char *, int, int (*)(int));
118 static const int baud_convert[] =
120 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
121 1800, 2400, 4800, 9600, 19200, 38400
125 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
127 /* Return the current working directory. Returns NULL on errors.
128 Any other returned value must be freed with free. This is used
129 only when get_current_dir_name is not defined on the system. */
130 char *
131 get_current_dir_name (void)
133 char *buf;
134 char *pwd = getenv ("PWD");
135 struct stat dotstat, pwdstat;
136 /* If PWD is accurate, use it instead of calling getcwd. PWD is
137 sometimes a nicer name, and using it may avoid a fatal error if a
138 parent directory is searchable but not readable. */
139 if (pwd
140 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
141 && stat (pwd, &pwdstat) == 0
142 && stat (".", &dotstat) == 0
143 && dotstat.st_ino == pwdstat.st_ino
144 && dotstat.st_dev == pwdstat.st_dev
145 #ifdef MAXPATHLEN
146 && strlen (pwd) < MAXPATHLEN
147 #endif
150 buf = malloc (strlen (pwd) + 1);
151 if (!buf)
152 return NULL;
153 strcpy (buf, pwd);
155 else
157 size_t buf_size = 1024;
158 buf = malloc (buf_size);
159 if (!buf)
160 return NULL;
161 for (;;)
163 if (getcwd (buf, buf_size) == buf)
164 break;
165 if (errno != ERANGE)
167 int tmp_errno = errno;
168 free (buf);
169 errno = tmp_errno;
170 return NULL;
172 buf_size *= 2;
173 buf = realloc (buf, buf_size);
174 if (!buf)
175 return NULL;
178 return buf;
180 #endif
183 /* Discard pending input on all input descriptors. */
185 void
186 discard_tty_input (void)
188 #ifndef WINDOWSNT
189 struct emacs_tty buf;
191 if (noninteractive)
192 return;
194 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
195 while (dos_keyread () != -1)
197 #else /* not MSDOS */
199 struct tty_display_info *tty;
200 for (tty = tty_list; tty; tty = tty->next)
202 if (tty->input) /* Is the device suspended? */
204 emacs_get_tty (fileno (tty->input), &buf);
205 emacs_set_tty (fileno (tty->input), &buf, 0);
209 #endif /* not MSDOS */
210 #endif /* not WINDOWSNT */
214 #ifdef SIGTSTP
216 /* Arrange for character C to be read as the next input from
217 the terminal.
218 XXX What if we have multiple ttys?
221 void
222 stuff_char (char c)
224 if (! (FRAMEP (selected_frame)
225 && FRAME_LIVE_P (XFRAME (selected_frame))
226 && FRAME_TERMCAP_P (XFRAME (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 < ARRAYELTS (baud_convert)
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 (child > 0);
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_timespec (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 /* Set up the terminal at the other end of a pseudo-terminal that
341 we will be controlling an inferior through.
342 It should not echo or do line-editing, since that is done
343 in Emacs. No padding needed for insertion into an Emacs buffer. */
345 void
346 child_setup_tty (int out)
348 #ifndef WINDOWSNT
349 struct emacs_tty s;
351 emacs_get_tty (out, &s);
352 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
353 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
354 #ifdef NLDLY
355 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
356 Some versions of GNU Hurd do not have FFDLY? */
357 #ifdef FFDLY
358 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
359 /* No output delays */
360 #else
361 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
362 /* No output delays */
363 #endif
364 #endif
365 s.main.c_lflag &= ~ECHO; /* Disable echo */
366 s.main.c_lflag |= ISIG; /* Enable signals */
367 #ifdef IUCLC
368 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
369 #endif
370 #ifdef ISTRIP
371 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
372 #endif
373 #ifdef OLCUC
374 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
375 #endif
376 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
377 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
378 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
379 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
381 #ifdef HPUX
382 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
383 #endif /* HPUX */
385 #ifdef SIGNALS_VIA_CHARACTERS
386 /* the QUIT and INTR character are used in process_send_signal
387 so set them here to something useful. */
388 if (s.main.c_cc[VQUIT] == CDISABLE)
389 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
390 if (s.main.c_cc[VINTR] == CDISABLE)
391 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
392 #endif /* not SIGNALS_VIA_CHARACTERS */
394 #ifdef AIX
395 /* Also, PTY overloads NUL and BREAK.
396 don't ignore break, but don't signal either, so it looks like NUL. */
397 s.main.c_iflag &= ~IGNBRK;
398 s.main.c_iflag &= ~BRKINT;
399 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
400 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
401 would force it to 0377. That looks like duplicated code. */
402 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
403 #endif /* AIX */
405 /* We originally enabled ICANON (and set VEOF to 04), and then had
406 process.c send additional EOF chars to flush the output when faced
407 with long lines, but this leads to weird effects when the
408 subprocess has disabled ICANON and ends up seeing those spurious
409 extra EOFs. So we don't send EOFs any more in
410 process.c:send_process. First we tried to disable ICANON by
411 default, so if a subsprocess sets up ICANON, it's his problem (or
412 the Elisp package that talks to it) to deal with lines that are
413 too long. But this disables some features, such as the ability
414 to send EOF signals. So we re-enabled ICANON but there is no
415 more "send eof to flush" going on (which is wrong and unportable
416 in itself). The correct way to handle too much output is to
417 buffer what could not be written and then write it again when
418 select returns ok for writing. This has it own set of
419 problems. Write is now asynchronous, is that a problem? How much
420 do we buffer, and what do we do when that limit is reached? */
422 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
423 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
424 #if 0 /* These settings only apply to non-ICANON mode. */
425 s.main.c_cc[VMIN] = 1;
426 s.main.c_cc[VTIME] = 0;
427 #endif
429 emacs_set_tty (out, &s, 0);
430 #endif /* not WINDOWSNT */
432 #endif /* not MSDOS */
435 /* Record a signal code and the action for it. */
436 struct save_signal
438 int code;
439 struct sigaction action;
442 static void save_signal_handlers (struct save_signal *);
443 static void restore_signal_handlers (struct save_signal *);
445 /* Suspend the Emacs process; give terminal to its superior. */
447 void
448 sys_suspend (void)
450 #ifndef DOS_NT
451 kill (0, SIGTSTP);
452 #else
453 /* On a system where suspending is not implemented,
454 instead fork a subshell and let it talk directly to the terminal
455 while we wait. */
456 sys_subshell ();
458 #endif
461 /* Fork a subshell. */
463 void
464 sys_subshell (void)
466 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
467 int st;
468 #ifdef MSDOS
469 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
470 #else
471 char oldwd[MAX_UTF8_PATH];
472 #endif
473 #endif
474 pid_t pid;
475 int status;
476 struct save_signal saved_handlers[5];
477 char *str = SSDATA (encode_current_directory ());
479 #ifdef DOS_NT
480 pid = 0;
481 #else
483 char *volatile str_volatile = str;
484 pid = vfork ();
485 str = str_volatile;
487 #endif
489 if (pid < 0)
490 error ("Can't spawn subshell");
492 saved_handlers[0].code = SIGINT;
493 saved_handlers[1].code = SIGQUIT;
494 saved_handlers[2].code = SIGTERM;
495 #ifdef USABLE_SIGIO
496 saved_handlers[3].code = SIGIO;
497 saved_handlers[4].code = 0;
498 #else
499 saved_handlers[3].code = 0;
500 #endif
502 #ifdef DOS_NT
503 save_signal_handlers (saved_handlers);
504 #endif
506 if (pid == 0)
508 const char *sh = 0;
510 #ifdef DOS_NT /* MW, Aug 1993 */
511 getcwd (oldwd, sizeof oldwd);
512 if (sh == 0)
513 sh = egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
514 #endif
515 if (sh == 0)
516 sh = egetenv ("SHELL");
517 if (sh == 0)
518 sh = "sh";
520 /* Use our buffer's default directory for the subshell. */
521 if (chdir (str) != 0)
523 #ifndef DOS_NT
524 emacs_perror (str);
525 _exit (EXIT_CANCELED);
526 #endif
529 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
531 char *epwd = getenv ("PWD");
532 char old_pwd[MAXPATHLEN+1+4];
534 /* If PWD is set, pass it with corrected value. */
535 if (epwd)
537 strcpy (old_pwd, epwd);
538 setenv ("PWD", str, 1);
540 st = system (sh);
541 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
542 if (epwd)
543 putenv (old_pwd); /* restore previous value */
545 #else /* not MSDOS */
546 #ifdef WINDOWSNT
547 /* Waits for process completion */
548 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
549 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
550 if (pid == -1)
551 write (1, "Can't execute subshell", 22);
552 #else /* not WINDOWSNT */
553 execlp (sh, sh, (char *) 0);
554 emacs_perror (sh);
555 _exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
556 #endif /* not WINDOWSNT */
557 #endif /* not MSDOS */
560 /* Do this now if we did not do it before. */
561 #ifndef MSDOS
562 save_signal_handlers (saved_handlers);
563 #endif
565 #ifndef DOS_NT
566 wait_for_termination (pid, &status, 0);
567 #endif
568 restore_signal_handlers (saved_handlers);
571 static void
572 save_signal_handlers (struct save_signal *saved_handlers)
574 while (saved_handlers->code)
576 struct sigaction action;
577 emacs_sigaction_init (&action, SIG_IGN);
578 sigaction (saved_handlers->code, &action, &saved_handlers->action);
579 saved_handlers++;
583 static void
584 restore_signal_handlers (struct save_signal *saved_handlers)
586 while (saved_handlers->code)
588 sigaction (saved_handlers->code, &saved_handlers->action, 0);
589 saved_handlers++;
593 #ifdef USABLE_SIGIO
594 static int old_fcntl_flags[FD_SETSIZE];
595 #endif
597 void
598 init_sigio (int fd)
600 #ifdef USABLE_SIGIO
601 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
602 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
603 interrupts_deferred = 0;
604 #endif
607 #ifndef DOS_NT
608 static void
609 reset_sigio (int fd)
611 #ifdef USABLE_SIGIO
612 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
613 #endif
615 #endif
617 void
618 request_sigio (void)
620 #ifdef USABLE_SIGIO
621 sigset_t unblocked;
623 if (noninteractive)
624 return;
626 sigemptyset (&unblocked);
627 # ifdef SIGWINCH
628 sigaddset (&unblocked, SIGWINCH);
629 # endif
630 sigaddset (&unblocked, SIGIO);
631 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
633 interrupts_deferred = 0;
634 #endif
637 void
638 unrequest_sigio (void)
640 #ifdef USABLE_SIGIO
641 sigset_t blocked;
643 if (noninteractive)
644 return;
646 sigemptyset (&blocked);
647 # ifdef SIGWINCH
648 sigaddset (&blocked, SIGWINCH);
649 # endif
650 sigaddset (&blocked, SIGIO);
651 pthread_sigmask (SIG_BLOCK, &blocked, 0);
652 interrupts_deferred = 1;
653 #endif
656 void
657 ignore_sigio (void)
659 #ifdef USABLE_SIGIO
660 signal (SIGIO, SIG_IGN);
661 #endif
664 #ifndef MSDOS
665 /* Block SIGCHLD. */
667 void
668 block_child_signal (sigset_t *oldset)
670 sigset_t blocked;
671 sigemptyset (&blocked);
672 sigaddset (&blocked, SIGCHLD);
673 sigaddset (&blocked, SIGINT);
674 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
677 /* Unblock SIGCHLD. */
679 void
680 unblock_child_signal (sigset_t const *oldset)
682 pthread_sigmask (SIG_SETMASK, oldset, 0);
685 #endif /* !MSDOS */
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 (sigset_t *oldset)
722 #ifdef SIGTTOU
723 sigset_t blocked;
724 sigemptyset (&blocked);
725 sigaddset (&blocked, SIGTTOU);
726 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
727 #endif
730 void
731 unblock_tty_out_signal (sigset_t const *oldset)
733 #ifdef SIGTTOU
734 pthread_sigmask (SIG_SETMASK, oldset, 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 sigset_t oldset;
750 block_input ();
751 block_tty_out_signal (&oldset);
752 tcsetpgrp (fd, pgid);
753 unblock_tty_out_signal (&oldset);
754 unblock_input ();
755 #endif
758 /* Split off the foreground process group to Emacs alone. When we are
759 in the foreground, but not started in our own process group,
760 redirect the tty device handle FD to point to our own process
761 group. FD must be the file descriptor of the controlling tty. */
762 static void
763 narrow_foreground_group (int fd)
765 if (inherited_pgroup && setpgid (0, 0) == 0)
766 tcsetpgrp_without_stopping (fd, getpid ());
769 /* Set the tty to our original foreground group. */
770 static void
771 widen_foreground_group (int fd)
773 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
774 tcsetpgrp_without_stopping (fd, inherited_pgroup);
777 /* Getting and setting emacs_tty structures. */
779 /* Set *TC to the parameters associated with the terminal FD,
780 or clear it if the parameters are not available.
781 Return 0 on success, -1 on failure. */
783 emacs_get_tty (int fd, struct emacs_tty *settings)
785 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
786 memset (&settings->main, 0, sizeof (settings->main));
787 #ifdef DOS_NT
788 #ifdef WINDOWSNT
789 HANDLE h = (HANDLE)_get_osfhandle (fd);
790 DWORD console_mode;
792 if (h && h != INVALID_HANDLE_VALUE && GetConsoleMode (h, &console_mode))
794 settings->main = console_mode;
795 return 0;
797 #endif /* WINDOWSNT */
798 return -1;
799 #else /* !DOS_NT */
800 /* We have those nifty POSIX tcmumbleattr functions. */
801 return tcgetattr (fd, &settings->main);
802 #endif
806 /* Set the parameters of the tty on FD according to the contents of
807 *SETTINGS. If FLUSHP, discard input.
808 Return 0 if all went well, and -1 (setting errno) if anything failed. */
811 emacs_set_tty (int fd, struct emacs_tty *settings, bool flushp)
813 /* Set the primary parameters - baud rate, character size, etcetera. */
814 #ifdef DOS_NT
815 #ifdef WINDOWSNT
816 HANDLE h = (HANDLE)_get_osfhandle (fd);
818 if (h && h != INVALID_HANDLE_VALUE)
820 DWORD new_mode;
822 /* Assume the handle is open for input. */
823 if (flushp)
824 FlushConsoleInputBuffer (h);
825 new_mode = settings->main;
826 SetConsoleMode (h, new_mode);
828 #endif /* WINDOWSNT */
829 #else /* !DOS_NT */
830 int i;
831 /* We have those nifty POSIX tcmumbleattr functions.
832 William J. Smith <wjs@wiis.wang.com> writes:
833 "POSIX 1003.1 defines tcsetattr to return success if it was
834 able to perform any of the requested actions, even if some
835 of the requested actions could not be performed.
836 We must read settings back to ensure tty setup properly.
837 AIX requires this to keep tty from hanging occasionally." */
838 /* This make sure that we don't loop indefinitely in here. */
839 for (i = 0 ; i < 10 ; i++)
840 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
842 if (errno == EINTR)
843 continue;
844 else
845 return -1;
847 else
849 struct termios new;
851 memset (&new, 0, sizeof (new));
852 /* Get the current settings, and see if they're what we asked for. */
853 tcgetattr (fd, &new);
854 /* We cannot use memcmp on the whole structure here because under
855 * aix386 the termios structure has some reserved field that may
856 * not be filled in.
858 if ( new.c_iflag == settings->main.c_iflag
859 && new.c_oflag == settings->main.c_oflag
860 && new.c_cflag == settings->main.c_cflag
861 && new.c_lflag == settings->main.c_lflag
862 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
863 break;
864 else
865 continue;
867 #endif
869 /* We have survived the tempest. */
870 return 0;
875 #ifdef F_SETOWN
876 static int old_fcntl_owner[FD_SETSIZE];
877 #endif /* F_SETOWN */
879 /* This may also be defined in stdio,
880 but if so, this does no harm,
881 and using the same name avoids wasting the other one's space. */
883 #if defined (USG)
884 unsigned char _sobuf[BUFSIZ+8];
885 #else
886 char _sobuf[BUFSIZ];
887 #endif
889 /* Initialize the terminal mode on all tty devices that are currently
890 open. */
892 void
893 init_all_sys_modes (void)
895 struct tty_display_info *tty;
896 for (tty = tty_list; tty; tty = tty->next)
897 init_sys_modes (tty);
900 /* Initialize the terminal mode on the given tty device. */
902 void
903 init_sys_modes (struct tty_display_info *tty_out)
905 struct emacs_tty tty;
906 Lisp_Object terminal;
908 Vtty_erase_char = Qnil;
910 if (noninteractive)
911 return;
913 if (!tty_out->output)
914 return; /* The tty is suspended. */
916 narrow_foreground_group (fileno (tty_out->input));
918 if (! tty_out->old_tty)
919 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
921 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
923 tty = *tty_out->old_tty;
925 #if !defined (DOS_NT)
926 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
928 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
929 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
930 #ifdef INLCR /* I'm just being cautious,
931 since I can't check how widespread INLCR is--rms. */
932 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
933 #endif
934 #ifdef ISTRIP
935 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
936 #endif
937 tty.main.c_lflag &= ~ECHO; /* Disable echo */
938 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
939 #ifdef IEXTEN
940 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
941 #endif
942 tty.main.c_lflag |= ISIG; /* Enable signals */
943 if (tty_out->flow_control)
945 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
946 #ifdef IXANY
947 tty.main.c_iflag &= ~IXANY;
948 #endif /* IXANY */
950 else
951 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
952 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
953 on output */
954 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
955 #ifdef CS8
956 if (tty_out->meta_key)
958 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
959 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
961 #endif
963 XSETTERMINAL(terminal, tty_out->terminal);
964 if (!NILP (Fcontrolling_tty_p (terminal)))
966 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
967 /* Set up C-g for both SIGQUIT and SIGINT.
968 We don't know which we will get, but we handle both alike
969 so which one it really gives us does not matter. */
970 tty.main.c_cc[VQUIT] = quit_char;
972 else
974 /* We normally don't get interrupt or quit signals from tty
975 devices other than our controlling terminal; therefore,
976 we must handle C-g as normal input. Unfortunately, this
977 means that the interrupt and quit feature must be
978 disabled on secondary ttys, or we would not even see the
979 keypress.
981 Note that even though emacsclient could have special code
982 to pass SIGINT to Emacs, we should _not_ enable
983 interrupt/quit keys for emacsclient frames. This means
984 that we can't break out of loops in C code from a
985 secondary tty frame, but we can always decide what
986 display the C-g came from, which is more important from a
987 usability point of view. (Consider the case when two
988 people work together using the same Emacs instance.) */
989 tty.main.c_cc[VINTR] = CDISABLE;
990 tty.main.c_cc[VQUIT] = CDISABLE;
992 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
993 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
994 #ifdef VSWTCH
995 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
996 of C-z */
997 #endif /* VSWTCH */
999 #ifdef VSUSP
1000 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
1001 #endif /* VSUSP */
1002 #ifdef V_DSUSP
1003 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
1004 #endif /* V_DSUSP */
1005 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1006 tty.main.c_cc[VDSUSP] = CDISABLE;
1007 #endif /* VDSUSP */
1008 #ifdef VLNEXT
1009 tty.main.c_cc[VLNEXT] = CDISABLE;
1010 #endif /* VLNEXT */
1011 #ifdef VREPRINT
1012 tty.main.c_cc[VREPRINT] = CDISABLE;
1013 #endif /* VREPRINT */
1014 #ifdef VWERASE
1015 tty.main.c_cc[VWERASE] = CDISABLE;
1016 #endif /* VWERASE */
1017 #ifdef VDISCARD
1018 tty.main.c_cc[VDISCARD] = CDISABLE;
1019 #endif /* VDISCARD */
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 else
1032 #ifdef VSTART
1033 tty.main.c_cc[VSTART] = CDISABLE;
1034 #endif /* VSTART */
1035 #ifdef VSTOP
1036 tty.main.c_cc[VSTOP] = CDISABLE;
1037 #endif /* VSTOP */
1040 #ifdef AIX
1041 tty.main.c_cc[VSTRT] = CDISABLE;
1042 tty.main.c_cc[VSTOP] = CDISABLE;
1043 tty.main.c_cc[VSUSP] = CDISABLE;
1044 tty.main.c_cc[VDSUSP] = CDISABLE;
1045 if (tty_out->flow_control)
1047 #ifdef VSTART
1048 tty.main.c_cc[VSTART] = '\021';
1049 #endif /* VSTART */
1050 #ifdef VSTOP
1051 tty.main.c_cc[VSTOP] = '\023';
1052 #endif /* VSTOP */
1054 /* Also, PTY overloads NUL and BREAK.
1055 don't ignore break, but don't signal either, so it looks like NUL.
1056 This really serves a purpose only if running in an XTERM window
1057 or via TELNET or the like, but does no harm elsewhere. */
1058 tty.main.c_iflag &= ~IGNBRK;
1059 tty.main.c_iflag &= ~BRKINT;
1060 #endif
1061 #endif /* not DOS_NT */
1063 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1064 if (!tty_out->term_initted)
1065 internal_terminal_init ();
1066 dos_ttraw (tty_out);
1067 #endif
1069 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1071 /* This code added to insure that, if flow-control is not to be used,
1072 we have an unlocked terminal at the start. */
1074 #ifdef TCXONC
1075 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1076 #endif
1077 #ifdef TIOCSTART
1078 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1079 #endif
1081 #if !defined (DOS_NT)
1082 #ifdef TCOON
1083 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1084 #endif
1085 #endif
1087 #ifdef F_GETOWN
1088 if (interrupt_input)
1090 old_fcntl_owner[fileno (tty_out->input)] =
1091 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1092 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1093 init_sigio (fileno (tty_out->input));
1094 #ifdef HAVE_GPM
1095 if (gpm_tty == tty_out)
1097 /* Arrange for mouse events to give us SIGIO signals. */
1098 fcntl (gpm_fd, F_SETOWN, getpid ());
1099 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1100 init_sigio (gpm_fd);
1102 #endif /* HAVE_GPM */
1104 #endif /* F_GETOWN */
1106 #ifdef _IOFBF
1107 /* This symbol is defined on recent USG systems.
1108 Someone says without this call USG won't really buffer the file
1109 even with a call to setbuf. */
1110 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1111 #else
1112 setbuf (tty_out->output, (char *) _sobuf);
1113 #endif
1115 if (tty_out->terminal->set_terminal_modes_hook)
1116 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1118 if (!tty_out->term_initted)
1120 Lisp_Object tail, frame;
1121 FOR_EACH_FRAME (tail, frame)
1123 /* XXX This needs to be revised. */
1124 if (FRAME_TERMCAP_P (XFRAME (frame))
1125 && FRAME_TTY (XFRAME (frame)) == tty_out)
1126 init_frame_faces (XFRAME (frame));
1130 if (tty_out->term_initted && no_redraw_on_reenter)
1132 /* We used to call "direct_output_forward_char(0)" here,
1133 but it's not clear why, since it may not do anything anyway. */
1135 else
1137 Lisp_Object tail, frame;
1138 frame_garbaged = 1;
1139 FOR_EACH_FRAME (tail, frame)
1141 if ((FRAME_TERMCAP_P (XFRAME (frame))
1142 || FRAME_MSDOS_P (XFRAME (frame)))
1143 && FRAME_TTY (XFRAME (frame)) == tty_out)
1144 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1148 tty_out->term_initted = 1;
1151 /* Return true if safe to use tabs in output.
1152 At the time this is called, init_sys_modes has not been done yet. */
1154 bool
1155 tabs_safe_p (int fd)
1157 struct emacs_tty etty;
1159 emacs_get_tty (fd, &etty);
1160 #ifndef DOS_NT
1161 #ifdef TABDLY
1162 return ((etty.main.c_oflag & TABDLY) != TAB3);
1163 #else /* not TABDLY */
1164 return 1;
1165 #endif /* not TABDLY */
1166 #else /* DOS_NT */
1167 return 0;
1168 #endif /* DOS_NT */
1171 /* Discard echoing. */
1173 void
1174 suppress_echo_on_tty (int fd)
1176 struct emacs_tty etty;
1178 emacs_get_tty (fd, &etty);
1179 #ifdef DOS_NT
1180 /* Set raw input mode. */
1181 etty.main = 0;
1182 #else
1183 etty.main.c_lflag &= ~ICANON; /* Disable buffering */
1184 etty.main.c_lflag &= ~ECHO; /* Disable echoing */
1185 #endif /* ! WINDOWSNT */
1186 emacs_set_tty (fd, &etty, 0);
1189 /* Get terminal size from system.
1190 Store number of lines into *HEIGHTP and width into *WIDTHP.
1191 We store 0 if there's no valid information. */
1193 void
1194 get_tty_size (int fd, int *widthp, int *heightp)
1196 #if defined TIOCGWINSZ
1198 /* BSD-style. */
1199 struct winsize size;
1201 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1202 *widthp = *heightp = 0;
1203 else
1205 *widthp = size.ws_col;
1206 *heightp = size.ws_row;
1209 #elif defined TIOCGSIZE
1211 /* SunOS - style. */
1212 struct ttysize size;
1214 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1215 *widthp = *heightp = 0;
1216 else
1218 *widthp = size.ts_cols;
1219 *heightp = size.ts_lines;
1222 #elif defined WINDOWSNT
1224 CONSOLE_SCREEN_BUFFER_INFO info;
1225 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1227 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1228 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1230 else
1231 *widthp = *heightp = 0;
1233 #elif defined MSDOS
1235 *widthp = ScreenCols ();
1236 *heightp = ScreenRows ();
1238 #else /* system doesn't know size */
1240 *widthp = 0;
1241 *heightp = 0;
1243 #endif
1246 /* Set the logical window size associated with descriptor FD
1247 to HEIGHT and WIDTH. This is used mainly with ptys.
1248 Return a negative value on failure. */
1251 set_window_size (int fd, int height, int width)
1253 #ifdef TIOCSWINSZ
1255 /* BSD-style. */
1256 struct winsize size;
1257 size.ws_row = height;
1258 size.ws_col = width;
1260 return ioctl (fd, TIOCSWINSZ, &size);
1262 #else
1263 #ifdef TIOCSSIZE
1265 /* SunOS - style. */
1266 struct ttysize size;
1267 size.ts_lines = height;
1268 size.ts_cols = width;
1270 return ioctl (fd, TIOCGSIZE, &size);
1271 #else
1272 return -1;
1273 #endif /* not SunOS-style */
1274 #endif /* not BSD-style */
1279 /* Prepare all terminal devices for exiting Emacs. */
1281 void
1282 reset_all_sys_modes (void)
1284 struct tty_display_info *tty;
1285 for (tty = tty_list; tty; tty = tty->next)
1286 reset_sys_modes (tty);
1289 /* Prepare the terminal for closing it; move the cursor to the
1290 bottom of the frame, turn off interrupt-driven I/O, etc. */
1292 void
1293 reset_sys_modes (struct tty_display_info *tty_out)
1295 if (noninteractive)
1297 fflush (stdout);
1298 return;
1300 if (!tty_out->term_initted)
1301 return;
1303 if (!tty_out->output)
1304 return; /* The tty is suspended. */
1306 /* Go to and clear the last line of the terminal. */
1308 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1310 /* Code adapted from tty_clear_end_of_line. */
1311 if (tty_out->TS_clr_line)
1313 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1315 else
1316 { /* have to do it the hard way */
1317 int i;
1318 tty_turn_off_insert (tty_out);
1320 for (i = cursorX (tty_out); i < FrameCols (tty_out) - 1; i++)
1322 fputc (' ', tty_out->output);
1326 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1327 fflush (tty_out->output);
1329 if (tty_out->terminal->reset_terminal_modes_hook)
1330 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1332 /* Avoid possible loss of output when changing terminal modes. */
1333 while (fdatasync (fileno (tty_out->output)) != 0 && errno == EINTR)
1334 continue;
1336 #ifndef DOS_NT
1337 #ifdef F_SETOWN
1338 if (interrupt_input)
1340 reset_sigio (fileno (tty_out->input));
1341 fcntl (fileno (tty_out->input), F_SETOWN,
1342 old_fcntl_owner[fileno (tty_out->input)]);
1344 #endif /* F_SETOWN */
1345 fcntl (fileno (tty_out->input), F_SETFL,
1346 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1347 #endif
1349 if (tty_out->old_tty)
1350 while (emacs_set_tty (fileno (tty_out->input),
1351 tty_out->old_tty, 0) < 0 && errno == EINTR)
1354 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1355 dos_ttcooked ();
1356 #endif
1358 widen_foreground_group (fileno (tty_out->input));
1361 #ifdef HAVE_PTYS
1363 /* Set up the proper status flags for use of a pty. */
1365 void
1366 setup_pty (int fd)
1368 /* I'm told that TOICREMOTE does not mean control chars
1369 "can't be sent" but rather that they don't have
1370 input-editing or signaling effects.
1371 That should be good, because we have other ways
1372 to do those things in Emacs.
1373 However, telnet mode seems not to work on 4.2.
1374 So TIOCREMOTE is turned off now. */
1376 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1377 will hang. In particular, the "timeout" feature (which
1378 causes a read to return if there is no data available)
1379 does this. Also it is known that telnet mode will hang
1380 in such a way that Emacs must be stopped (perhaps this
1381 is the same problem).
1383 If TIOCREMOTE is turned off, then there is a bug in
1384 hp-ux which sometimes loses data. Apparently the
1385 code which blocks the master process when the internal
1386 buffer fills up does not work. Other than this,
1387 though, everything else seems to work fine.
1389 Since the latter lossage is more benign, we may as well
1390 lose that way. -- cph */
1391 #ifdef FIONBIO
1392 #if defined (UNIX98_PTYS)
1394 int on = 1;
1395 ioctl (fd, FIONBIO, &on);
1397 #endif
1398 #endif
1400 #endif /* HAVE_PTYS */
1402 #ifdef HAVE_SOCKETS
1403 #include <sys/socket.h>
1404 #include <netdb.h>
1405 #endif /* HAVE_SOCKETS */
1407 #ifdef TRY_AGAIN
1408 #ifndef HAVE_H_ERRNO
1409 extern int h_errno;
1410 #endif
1411 #endif /* TRY_AGAIN */
1413 void
1414 init_system_name (void)
1416 #ifndef HAVE_GETHOSTNAME
1417 struct utsname uts;
1418 uname (&uts);
1419 Vsystem_name = build_string (uts.nodename);
1420 #else /* HAVE_GETHOSTNAME */
1421 char *hostname_alloc = NULL;
1422 char hostname_buf[256];
1423 ptrdiff_t hostname_size = sizeof hostname_buf;
1424 char *hostname = hostname_buf;
1426 /* Try to get the host name; if the buffer is too short, try
1427 again. Apparently, the only indication gethostname gives of
1428 whether the buffer was large enough is the presence or absence
1429 of a '\0' in the string. Eech. */
1430 for (;;)
1432 gethostname (hostname, hostname_size - 1);
1433 hostname[hostname_size - 1] = '\0';
1435 /* Was the buffer large enough for the '\0'? */
1436 if (strlen (hostname) < hostname_size - 1)
1437 break;
1439 hostname = hostname_alloc = xpalloc (hostname_alloc, &hostname_size, 1,
1440 min (PTRDIFF_MAX, SIZE_MAX), 1);
1442 #ifdef HAVE_SOCKETS
1443 /* Turn the hostname into the official, fully-qualified hostname.
1444 Don't do this if we're going to dump; this can confuse system
1445 libraries on some machines and make the dumped emacs core dump. */
1446 #ifndef CANNOT_DUMP
1447 if (initialized)
1448 #endif /* not CANNOT_DUMP */
1449 if (! strchr (hostname, '.'))
1451 int count;
1452 #ifdef HAVE_GETADDRINFO
1453 struct addrinfo *res;
1454 struct addrinfo hints;
1455 int ret;
1457 memset (&hints, 0, sizeof (hints));
1458 hints.ai_socktype = SOCK_STREAM;
1459 hints.ai_flags = AI_CANONNAME;
1461 for (count = 0;; count++)
1463 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1464 || ret != EAI_AGAIN)
1465 break;
1467 if (count >= 5)
1468 break;
1469 Fsleep_for (make_number (1), Qnil);
1472 if (ret == 0)
1474 struct addrinfo *it = res;
1475 while (it)
1477 char *fqdn = it->ai_canonname;
1478 if (fqdn && strchr (fqdn, '.')
1479 && strcmp (fqdn, "localhost.localdomain") != 0)
1480 break;
1481 it = it->ai_next;
1483 if (it)
1485 ptrdiff_t len = strlen (it->ai_canonname);
1486 if (hostname_size <= len)
1488 hostname_size = len + 1;
1489 hostname = hostname_alloc = xrealloc (hostname_alloc,
1490 hostname_size);
1492 strcpy (hostname, it->ai_canonname);
1494 freeaddrinfo (res);
1496 #else /* !HAVE_GETADDRINFO */
1497 struct hostent *hp;
1498 for (count = 0;; count++)
1501 #ifdef TRY_AGAIN
1502 h_errno = 0;
1503 #endif
1504 hp = gethostbyname (hostname);
1505 #ifdef TRY_AGAIN
1506 if (! (hp == 0 && h_errno == TRY_AGAIN))
1507 #endif
1509 break;
1511 if (count >= 5)
1512 break;
1513 Fsleep_for (make_number (1), Qnil);
1516 if (hp)
1518 char *fqdn = (char *) hp->h_name;
1520 if (!strchr (fqdn, '.'))
1522 /* We still don't have a fully qualified domain name.
1523 Try to find one in the list of alternate names */
1524 char **alias = hp->h_aliases;
1525 while (*alias
1526 && (!strchr (*alias, '.')
1527 || !strcmp (*alias, "localhost.localdomain")))
1528 alias++;
1529 if (*alias)
1530 fqdn = *alias;
1532 hostname = fqdn;
1534 #endif /* !HAVE_GETADDRINFO */
1536 #endif /* HAVE_SOCKETS */
1537 Vsystem_name = build_string (hostname);
1538 xfree (hostname_alloc);
1539 #endif /* HAVE_GETHOSTNAME */
1541 char *p;
1542 for (p = SSDATA (Vsystem_name); *p; p++)
1543 if (*p == ' ' || *p == '\t')
1544 *p = '-';
1548 sigset_t empty_mask;
1550 static struct sigaction process_fatal_action;
1552 static int
1553 emacs_sigaction_flags (void)
1555 #ifdef SA_RESTART
1556 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1557 'select') to reset their timeout on some platforms (e.g.,
1558 HP-UX 11), which is not what we want. Also, when Emacs is
1559 interactive, we don't want SA_RESTART because we need to poll
1560 for pending input so we need long-running syscalls to be interrupted
1561 after a signal that sets pending_signals.
1563 Non-interactive keyboard input goes through stdio, where we
1564 always want restartable system calls. */
1565 if (noninteractive)
1566 return SA_RESTART;
1567 #endif
1568 return 0;
1571 /* Store into *ACTION a signal action suitable for Emacs, with handler
1572 HANDLER. */
1573 void
1574 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1576 sigemptyset (&action->sa_mask);
1578 /* When handling a signal, block nonfatal system signals that are caught
1579 by Emacs. This makes race conditions less likely. */
1580 sigaddset (&action->sa_mask, SIGALRM);
1581 #ifdef SIGCHLD
1582 sigaddset (&action->sa_mask, SIGCHLD);
1583 #endif
1584 #ifdef SIGDANGER
1585 sigaddset (&action->sa_mask, SIGDANGER);
1586 #endif
1587 #ifdef PROFILER_CPU_SUPPORT
1588 sigaddset (&action->sa_mask, SIGPROF);
1589 #endif
1590 #ifdef SIGWINCH
1591 sigaddset (&action->sa_mask, SIGWINCH);
1592 #endif
1593 if (! noninteractive)
1595 sigaddset (&action->sa_mask, SIGINT);
1596 sigaddset (&action->sa_mask, SIGQUIT);
1597 #ifdef USABLE_SIGIO
1598 sigaddset (&action->sa_mask, SIGIO);
1599 #endif
1602 action->sa_handler = handler;
1603 action->sa_flags = emacs_sigaction_flags ();
1606 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1607 static pthread_t main_thread;
1608 #endif
1610 /* SIG has arrived at the current process. Deliver it to the main
1611 thread, which should handle it with HANDLER.
1613 If we are on the main thread, handle the signal SIG with HANDLER.
1614 Otherwise, redirect the signal to the main thread, blocking it from
1615 this thread. POSIX says any thread can receive a signal that is
1616 associated with a process, process group, or asynchronous event.
1617 On GNU/Linux that is not true, but for other systems (FreeBSD at
1618 least) it is. */
1619 void
1620 deliver_process_signal (int sig, signal_handler_t handler)
1622 /* Preserve errno, to avoid race conditions with signal handlers that
1623 might change errno. Races can occur even in single-threaded hosts. */
1624 int old_errno = errno;
1626 bool on_main_thread = true;
1627 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1628 if (! pthread_equal (pthread_self (), main_thread))
1630 sigset_t blocked;
1631 sigemptyset (&blocked);
1632 sigaddset (&blocked, sig);
1633 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1634 pthread_kill (main_thread, sig);
1635 on_main_thread = false;
1637 #endif
1638 if (on_main_thread)
1639 handler (sig);
1641 errno = old_errno;
1644 /* Static location to save a fatal backtrace in a thread.
1645 FIXME: If two subsidiary threads fail simultaneously, the resulting
1646 backtrace may be garbage. */
1647 enum { BACKTRACE_LIMIT_MAX = 500 };
1648 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1649 static int thread_backtrace_npointers;
1651 /* SIG has arrived at the current thread.
1652 If we are on the main thread, handle the signal SIG with HANDLER.
1653 Otherwise, this is a fatal error in the handling thread. */
1654 static void
1655 deliver_thread_signal (int sig, signal_handler_t handler)
1657 int old_errno = errno;
1659 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1660 if (! pthread_equal (pthread_self (), main_thread))
1662 thread_backtrace_npointers
1663 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1664 sigaction (sig, &process_fatal_action, 0);
1665 pthread_kill (main_thread, sig);
1667 /* Avoid further damage while the main thread is exiting. */
1668 while (1)
1669 sigsuspend (&empty_mask);
1671 #endif
1673 handler (sig);
1674 errno = old_errno;
1677 #if !HAVE_DECL_SYS_SIGLIST
1678 # undef sys_siglist
1679 # ifdef _sys_siglist
1680 # define sys_siglist _sys_siglist
1681 # elif HAVE_DECL___SYS_SIGLIST
1682 # define sys_siglist __sys_siglist
1683 # else
1684 # define sys_siglist my_sys_siglist
1685 static char const *sys_siglist[NSIG];
1686 # endif
1687 #endif
1689 #ifdef _sys_nsig
1690 # define sys_siglist_entries _sys_nsig
1691 #else
1692 # define sys_siglist_entries NSIG
1693 #endif
1695 /* Handle bus errors, invalid instruction, etc. */
1696 static void
1697 handle_fatal_signal (int sig)
1699 terminate_due_to_signal (sig, 40);
1702 static void
1703 deliver_fatal_signal (int sig)
1705 deliver_process_signal (sig, handle_fatal_signal);
1708 static void
1709 deliver_fatal_thread_signal (int sig)
1711 deliver_thread_signal (sig, handle_fatal_signal);
1714 static _Noreturn void
1715 handle_arith_signal (int sig)
1717 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1718 xsignal0 (Qarith_error);
1721 #ifdef HAVE_STACK_OVERFLOW_HANDLING
1723 /* True if stack grows down as expected on most OS/ABI variants. */
1725 static bool stack_grows_down;
1727 /* Alternate stack used by SIGSEGV handler below. */
1729 static unsigned char sigsegv_stack[SIGSTKSZ];
1731 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1733 static void
1734 handle_sigsegv (int sig, siginfo_t *siginfo, void *arg)
1736 /* Hard GC error may lead to stack overflow caused by
1737 too nested calls to mark_object. No way to survive. */
1738 if (!gc_in_progress)
1740 struct rlimit rlim;
1742 if (!getrlimit (RLIMIT_STACK, &rlim))
1744 enum { STACK_EXTRA = 16 * 1024 };
1745 char *fault_addr = (char *) siginfo->si_addr;
1746 unsigned long used = (stack_grows_down
1747 ? stack_bottom - fault_addr
1748 : fault_addr - stack_bottom);
1750 if (used + STACK_EXTRA > rlim.rlim_cur)
1751 /* Most likely this is it. */
1752 siglongjmp (return_to_command_loop, 1);
1757 /* Return true if we have successfully set up SIGSEGV handler on alternate
1758 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1760 static bool
1761 init_sigsegv (void)
1763 struct sigaction sa;
1764 stack_t ss;
1766 stack_grows_down = ((char *) &ss < stack_bottom);
1768 ss.ss_sp = sigsegv_stack;
1769 ss.ss_size = sizeof (sigsegv_stack);
1770 ss.ss_flags = 0;
1771 if (sigaltstack (&ss, NULL) < 0)
1772 return 0;
1774 sigfillset (&sa.sa_mask);
1775 sa.sa_sigaction = handle_sigsegv;
1776 sa.sa_flags = SA_SIGINFO | SA_ONSTACK | emacs_sigaction_flags ();
1777 return sigaction (SIGSEGV, &sa, NULL) < 0 ? 0 : 1;
1780 #else /* not HAVE_STACK_OVERFLOW_HANDLING */
1782 static bool
1783 init_sigsegv (void)
1785 return 0;
1788 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
1790 static void
1791 deliver_arith_signal (int sig)
1793 deliver_thread_signal (sig, handle_arith_signal);
1796 #ifdef SIGDANGER
1798 /* Handler for SIGDANGER. */
1799 static void
1800 handle_danger_signal (int sig)
1802 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1804 /* It might be unsafe to call do_auto_save now. */
1805 force_auto_save_soon ();
1808 static void
1809 deliver_danger_signal (int sig)
1811 deliver_process_signal (sig, handle_danger_signal);
1813 #endif
1815 /* Treat SIG as a terminating signal, unless it is already ignored and
1816 we are in --batch mode. Among other things, this makes nohup work. */
1817 static void
1818 maybe_fatal_sig (int sig)
1820 bool catch_sig = !noninteractive;
1821 if (!catch_sig)
1823 struct sigaction old_action;
1824 sigaction (sig, 0, &old_action);
1825 catch_sig = old_action.sa_handler != SIG_IGN;
1827 if (catch_sig)
1828 sigaction (sig, &process_fatal_action, 0);
1831 void
1832 init_signals (bool dumping)
1834 struct sigaction thread_fatal_action;
1835 struct sigaction action;
1837 sigemptyset (&empty_mask);
1839 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1840 main_thread = pthread_self ();
1841 #endif
1843 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1844 if (! initialized)
1846 sys_siglist[SIGABRT] = "Aborted";
1847 # ifdef SIGAIO
1848 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1849 # endif
1850 sys_siglist[SIGALRM] = "Alarm clock";
1851 # ifdef SIGBUS
1852 sys_siglist[SIGBUS] = "Bus error";
1853 # endif
1854 # ifdef SIGCHLD
1855 sys_siglist[SIGCHLD] = "Child status changed";
1856 # endif
1857 # ifdef SIGCONT
1858 sys_siglist[SIGCONT] = "Continued";
1859 # endif
1860 # ifdef SIGDANGER
1861 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1862 # endif
1863 # ifdef SIGDGNOTIFY
1864 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1865 # endif
1866 # ifdef SIGEMT
1867 sys_siglist[SIGEMT] = "Emulation trap";
1868 # endif
1869 sys_siglist[SIGFPE] = "Arithmetic exception";
1870 # ifdef SIGFREEZE
1871 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1872 # endif
1873 # ifdef SIGGRANT
1874 sys_siglist[SIGGRANT] = "Monitor mode granted";
1875 # endif
1876 sys_siglist[SIGHUP] = "Hangup";
1877 sys_siglist[SIGILL] = "Illegal instruction";
1878 sys_siglist[SIGINT] = "Interrupt";
1879 # ifdef SIGIO
1880 sys_siglist[SIGIO] = "I/O possible";
1881 # endif
1882 # ifdef SIGIOINT
1883 sys_siglist[SIGIOINT] = "I/O intervention required";
1884 # endif
1885 # ifdef SIGIOT
1886 sys_siglist[SIGIOT] = "IOT trap";
1887 # endif
1888 sys_siglist[SIGKILL] = "Killed";
1889 # ifdef SIGLOST
1890 sys_siglist[SIGLOST] = "Resource lost";
1891 # endif
1892 # ifdef SIGLWP
1893 sys_siglist[SIGLWP] = "SIGLWP";
1894 # endif
1895 # ifdef SIGMSG
1896 sys_siglist[SIGMSG] = "Monitor mode data available";
1897 # endif
1898 # ifdef SIGPHONE
1899 sys_siglist[SIGWIND] = "SIGPHONE";
1900 # endif
1901 sys_siglist[SIGPIPE] = "Broken pipe";
1902 # ifdef SIGPOLL
1903 sys_siglist[SIGPOLL] = "Pollable event occurred";
1904 # endif
1905 # ifdef SIGPROF
1906 sys_siglist[SIGPROF] = "Profiling timer expired";
1907 # endif
1908 # ifdef SIGPTY
1909 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1910 # endif
1911 # ifdef SIGPWR
1912 sys_siglist[SIGPWR] = "Power-fail restart";
1913 # endif
1914 sys_siglist[SIGQUIT] = "Quit";
1915 # ifdef SIGRETRACT
1916 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1917 # endif
1918 # ifdef SIGSAK
1919 sys_siglist[SIGSAK] = "Secure attention";
1920 # endif
1921 sys_siglist[SIGSEGV] = "Segmentation violation";
1922 # ifdef SIGSOUND
1923 sys_siglist[SIGSOUND] = "Sound completed";
1924 # endif
1925 # ifdef SIGSTOP
1926 sys_siglist[SIGSTOP] = "Stopped (signal)";
1927 # endif
1928 # ifdef SIGSTP
1929 sys_siglist[SIGSTP] = "Stopped (user)";
1930 # endif
1931 # ifdef SIGSYS
1932 sys_siglist[SIGSYS] = "Bad argument to system call";
1933 # endif
1934 sys_siglist[SIGTERM] = "Terminated";
1935 # ifdef SIGTHAW
1936 sys_siglist[SIGTHAW] = "SIGTHAW";
1937 # endif
1938 # ifdef SIGTRAP
1939 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1940 # endif
1941 # ifdef SIGTSTP
1942 sys_siglist[SIGTSTP] = "Stopped (user)";
1943 # endif
1944 # ifdef SIGTTIN
1945 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1946 # endif
1947 # ifdef SIGTTOU
1948 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1949 # endif
1950 # ifdef SIGURG
1951 sys_siglist[SIGURG] = "Urgent I/O condition";
1952 # endif
1953 # ifdef SIGUSR1
1954 sys_siglist[SIGUSR1] = "User defined signal 1";
1955 # endif
1956 # ifdef SIGUSR2
1957 sys_siglist[SIGUSR2] = "User defined signal 2";
1958 # endif
1959 # ifdef SIGVTALRM
1960 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1961 # endif
1962 # ifdef SIGWAITING
1963 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1964 # endif
1965 # ifdef SIGWINCH
1966 sys_siglist[SIGWINCH] = "Window size changed";
1967 # endif
1968 # ifdef SIGWIND
1969 sys_siglist[SIGWIND] = "SIGWIND";
1970 # endif
1971 # ifdef SIGXCPU
1972 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1973 # endif
1974 # ifdef SIGXFSZ
1975 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1976 # endif
1978 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1980 /* Don't alter signal handlers if dumping. On some machines,
1981 changing signal handlers sets static data that would make signals
1982 fail to work right when the dumped Emacs is run. */
1983 if (dumping)
1984 return;
1986 sigfillset (&process_fatal_action.sa_mask);
1987 process_fatal_action.sa_handler = deliver_fatal_signal;
1988 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1990 sigfillset (&thread_fatal_action.sa_mask);
1991 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1992 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1994 /* SIGINT may need special treatment on MS-Windows. See
1995 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1996 Please update the doc of kill-emacs, kill-emacs-hook, and
1997 NEWS if you change this. */
1999 maybe_fatal_sig (SIGHUP);
2000 maybe_fatal_sig (SIGINT);
2001 maybe_fatal_sig (SIGTERM);
2003 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
2004 However, in batch mode leave SIGPIPE alone, as that causes Emacs
2005 to behave more like typical batch applications do. */
2006 if (! noninteractive)
2007 signal (SIGPIPE, SIG_IGN);
2009 sigaction (SIGQUIT, &process_fatal_action, 0);
2010 sigaction (SIGILL, &thread_fatal_action, 0);
2011 sigaction (SIGTRAP, &thread_fatal_action, 0);
2013 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
2014 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
2015 interpreter's floating point operations, so treat SIGFPE as an
2016 arith-error if it arises in the main thread. */
2017 if (IEEE_FLOATING_POINT)
2018 sigaction (SIGFPE, &thread_fatal_action, 0);
2019 else
2021 emacs_sigaction_init (&action, deliver_arith_signal);
2022 sigaction (SIGFPE, &action, 0);
2025 #ifdef SIGUSR1
2026 add_user_signal (SIGUSR1, "sigusr1");
2027 #endif
2028 #ifdef SIGUSR2
2029 add_user_signal (SIGUSR2, "sigusr2");
2030 #endif
2031 sigaction (SIGABRT, &thread_fatal_action, 0);
2032 #ifdef SIGPRE
2033 sigaction (SIGPRE, &thread_fatal_action, 0);
2034 #endif
2035 #ifdef SIGORE
2036 sigaction (SIGORE, &thread_fatal_action, 0);
2037 #endif
2038 #ifdef SIGUME
2039 sigaction (SIGUME, &thread_fatal_action, 0);
2040 #endif
2041 #ifdef SIGDLK
2042 sigaction (SIGDLK, &process_fatal_action, 0);
2043 #endif
2044 #ifdef SIGCPULIM
2045 sigaction (SIGCPULIM, &process_fatal_action, 0);
2046 #endif
2047 #ifdef SIGIOT
2048 sigaction (SIGIOT, &thread_fatal_action, 0);
2049 #endif
2050 #ifdef SIGEMT
2051 sigaction (SIGEMT, &thread_fatal_action, 0);
2052 #endif
2053 #ifdef SIGBUS
2054 sigaction (SIGBUS, &thread_fatal_action, 0);
2055 #endif
2056 if (!init_sigsegv ())
2057 sigaction (SIGSEGV, &thread_fatal_action, 0);
2058 #ifdef SIGSYS
2059 sigaction (SIGSYS, &thread_fatal_action, 0);
2060 #endif
2061 sigaction (SIGTERM, &process_fatal_action, 0);
2062 #ifdef SIGPROF
2063 signal (SIGPROF, SIG_IGN);
2064 #endif
2065 #ifdef SIGVTALRM
2066 sigaction (SIGVTALRM, &process_fatal_action, 0);
2067 #endif
2068 #ifdef SIGXCPU
2069 sigaction (SIGXCPU, &process_fatal_action, 0);
2070 #endif
2071 #ifdef SIGXFSZ
2072 sigaction (SIGXFSZ, &process_fatal_action, 0);
2073 #endif
2075 #ifdef SIGDANGER
2076 /* This just means available memory is getting low. */
2077 emacs_sigaction_init (&action, deliver_danger_signal);
2078 sigaction (SIGDANGER, &action, 0);
2079 #endif
2081 /* AIX-specific signals. */
2082 #ifdef SIGGRANT
2083 sigaction (SIGGRANT, &process_fatal_action, 0);
2084 #endif
2085 #ifdef SIGMIGRATE
2086 sigaction (SIGMIGRATE, &process_fatal_action, 0);
2087 #endif
2088 #ifdef SIGMSG
2089 sigaction (SIGMSG, &process_fatal_action, 0);
2090 #endif
2091 #ifdef SIGRETRACT
2092 sigaction (SIGRETRACT, &process_fatal_action, 0);
2093 #endif
2094 #ifdef SIGSAK
2095 sigaction (SIGSAK, &process_fatal_action, 0);
2096 #endif
2097 #ifdef SIGSOUND
2098 sigaction (SIGSOUND, &process_fatal_action, 0);
2099 #endif
2100 #ifdef SIGTALRM
2101 sigaction (SIGTALRM, &thread_fatal_action, 0);
2102 #endif
2105 #ifndef HAVE_RANDOM
2106 #ifdef random
2107 #define HAVE_RANDOM
2108 #endif
2109 #endif
2111 /* Figure out how many bits the system's random number generator uses.
2112 `random' and `lrand48' are assumed to return 31 usable bits.
2113 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2114 so we'll shift it and treat it like the 15-bit USG `rand'. */
2116 #ifndef RAND_BITS
2117 # ifdef HAVE_RANDOM
2118 # define RAND_BITS 31
2119 # else /* !HAVE_RANDOM */
2120 # ifdef HAVE_LRAND48
2121 # define RAND_BITS 31
2122 # define random lrand48
2123 # else /* !HAVE_LRAND48 */
2124 # define RAND_BITS 15
2125 # if RAND_MAX == 32767
2126 # define random rand
2127 # else /* RAND_MAX != 32767 */
2128 # if RAND_MAX == 2147483647
2129 # define random() (rand () >> 16)
2130 # else /* RAND_MAX != 2147483647 */
2131 # ifdef USG
2132 # define random rand
2133 # else
2134 # define random() (rand () >> 16)
2135 # endif /* !USG */
2136 # endif /* RAND_MAX != 2147483647 */
2137 # endif /* RAND_MAX != 32767 */
2138 # endif /* !HAVE_LRAND48 */
2139 # endif /* !HAVE_RANDOM */
2140 #endif /* !RAND_BITS */
2142 void
2143 seed_random (void *seed, ptrdiff_t seed_size)
2145 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2146 unsigned int arg = 0;
2147 #else
2148 long int arg = 0;
2149 #endif
2150 unsigned char *argp = (unsigned char *) &arg;
2151 unsigned char *seedp = seed;
2152 ptrdiff_t i;
2153 for (i = 0; i < seed_size; i++)
2154 argp[i % sizeof arg] ^= seedp[i];
2155 #ifdef HAVE_RANDOM
2156 srandom (arg);
2157 #else
2158 # ifdef HAVE_LRAND48
2159 srand48 (arg);
2160 # else
2161 srand (arg);
2162 # endif
2163 #endif
2166 void
2167 init_random (void)
2169 struct timespec t = current_timespec ();
2170 uintmax_t v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2171 seed_random (&v, sizeof v);
2175 * Return a nonnegative random integer out of whatever we've got.
2176 * It contains enough bits to make a random (signed) Emacs fixnum.
2177 * This suffices even for a 64-bit architecture with a 15-bit rand.
2179 EMACS_INT
2180 get_random (void)
2182 EMACS_UINT val = 0;
2183 int i;
2184 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2185 val = (random () ^ (val << RAND_BITS)
2186 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2187 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2188 return val & INTMASK;
2191 #ifndef HAVE_SNPRINTF
2192 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2194 snprintf (char *buf, size_t bufsize, char const *format, ...)
2196 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2197 ptrdiff_t nbytes = size - 1;
2198 va_list ap;
2200 if (size)
2202 va_start (ap, format);
2203 nbytes = doprnt (buf, size, format, 0, ap);
2204 va_end (ap);
2207 if (nbytes == size - 1)
2209 /* Calculate the length of the string that would have been created
2210 had the buffer been large enough. */
2211 char stackbuf[4000];
2212 char *b = stackbuf;
2213 ptrdiff_t bsize = sizeof stackbuf;
2214 va_start (ap, format);
2215 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2216 va_end (ap);
2217 if (b != stackbuf)
2218 xfree (b);
2221 if (INT_MAX < nbytes)
2223 #ifdef EOVERFLOW
2224 errno = EOVERFLOW;
2225 #else
2226 errno = EDOM;
2227 #endif
2228 return -1;
2230 return nbytes;
2232 #endif
2234 /* If a backtrace is available, output the top lines of it to stderr.
2235 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2236 This function may be called from a signal handler, so it should
2237 not invoke async-unsafe functions like malloc. */
2238 void
2239 emacs_backtrace (int backtrace_limit)
2241 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2242 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2243 void *buffer;
2244 int npointers;
2246 if (thread_backtrace_npointers)
2248 buffer = thread_backtrace_buffer;
2249 npointers = thread_backtrace_npointers;
2251 else
2253 buffer = main_backtrace_buffer;
2254 npointers = backtrace (buffer, bounded_limit + 1);
2257 if (npointers)
2259 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2260 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2261 if (bounded_limit < npointers)
2262 emacs_write (STDERR_FILENO, "...\n", 4);
2266 #ifndef HAVE_NTGUI
2267 void
2268 emacs_abort (void)
2270 terminate_due_to_signal (SIGABRT, 40);
2272 #endif
2274 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2275 Use binary I/O on systems that care about text vs binary I/O.
2276 Arrange for subprograms to not inherit the file descriptor.
2277 Prefer a method that is multithread-safe, if available.
2278 Do not fail merely because the open was interrupted by a signal.
2279 Allow the user to quit. */
2282 emacs_open (const char *file, int oflags, int mode)
2284 int fd;
2285 if (! (oflags & O_TEXT))
2286 oflags |= O_BINARY;
2287 oflags |= O_CLOEXEC;
2288 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2289 QUIT;
2290 if (! O_CLOEXEC && 0 <= fd)
2291 fcntl (fd, F_SETFD, FD_CLOEXEC);
2292 return fd;
2295 /* Open FILE as a stream for Emacs use, with mode MODE.
2296 Act like emacs_open with respect to threads, signals, and quits. */
2298 FILE *
2299 emacs_fopen (char const *file, char const *mode)
2301 int fd, omode, oflags;
2302 int bflag = 0;
2303 char const *m = mode;
2305 switch (*m++)
2307 case 'r': omode = O_RDONLY; oflags = 0; break;
2308 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2309 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2310 default: emacs_abort ();
2313 while (*m)
2314 switch (*m++)
2316 case '+': omode = O_RDWR; break;
2317 case 'b': bflag = O_BINARY; break;
2318 case 't': bflag = O_TEXT; break;
2319 default: /* Ignore. */ break;
2322 fd = emacs_open (file, omode | oflags | bflag, 0666);
2323 return fd < 0 ? 0 : fdopen (fd, mode);
2326 /* Create a pipe for Emacs use. */
2329 emacs_pipe (int fd[2])
2331 #ifdef MSDOS
2332 return pipe (fd);
2333 #else /* !MSDOS */
2334 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2335 if (! O_CLOEXEC && result == 0)
2337 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2338 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2340 return result;
2341 #endif /* !MSDOS */
2344 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2345 For the background behind this mess, please see Austin Group defect 529
2346 <http://austingroupbugs.net/view.php?id=529>. */
2348 #ifndef POSIX_CLOSE_RESTART
2349 # define POSIX_CLOSE_RESTART 1
2350 static int
2351 posix_close (int fd, int flag)
2353 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2354 eassert (flag == POSIX_CLOSE_RESTART);
2356 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2357 on a system that does not define POSIX_CLOSE_RESTART.
2359 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2360 closed, and retrying the close could inadvertently close a file
2361 descriptor allocated by some other thread. In other systems
2362 (e.g., HP/UX) FD is not closed. And in still other systems
2363 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2364 multithreaded program there can be no way to tell.
2366 So, in this case, pretend that the close succeeded. This works
2367 well on systems like GNU/Linux that close FD. Although it may
2368 leak a file descriptor on other systems, the leak is unlikely and
2369 it's better to leak than to close a random victim. */
2370 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2372 #endif
2374 /* Close FD, retrying if interrupted. If successful, return 0;
2375 otherwise, return -1 and set errno to a non-EINTR value. Consider
2376 an EINPROGRESS error to be successful, as that's merely a signal
2377 arriving. FD is always closed when this function returns, even
2378 when it returns -1.
2380 Do not call this function if FD is nonnegative and might already be closed,
2381 as that might close an innocent victim opened by some other thread. */
2384 emacs_close (int fd)
2386 while (1)
2388 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2389 if (r == 0)
2390 return r;
2391 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2393 eassert (errno != EBADF || fd < 0);
2394 return errno == EINPROGRESS ? 0 : r;
2399 /* Maximum number of bytes to read or write in a single system call.
2400 This works around a serious bug in Linux kernels before 2.6.16; see
2401 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2402 It's likely to work around similar bugs in other operating systems, so do it
2403 on all platforms. Round INT_MAX down to a page size, with the conservative
2404 assumption that page sizes are at most 2**18 bytes (any kernel with a
2405 page size larger than that shouldn't have the bug). */
2406 #ifndef MAX_RW_COUNT
2407 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2408 #endif
2410 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2411 Return the number of bytes read, which might be less than NBYTE.
2412 On error, set errno and return -1. */
2413 ptrdiff_t
2414 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2416 ssize_t rtnval;
2418 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2419 passes a size that large to emacs_read. */
2421 while ((rtnval = read (fildes, buf, nbyte)) == -1
2422 && (errno == EINTR))
2423 QUIT;
2424 return (rtnval);
2427 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2428 or if a partial write occurs. If interrupted, process pending
2429 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2430 errno if this is less than NBYTE. */
2431 static ptrdiff_t
2432 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2433 bool process_signals)
2435 ptrdiff_t bytes_written = 0;
2437 while (nbyte > 0)
2439 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2441 if (n < 0)
2443 if (errno == EINTR)
2445 /* I originally used `QUIT' but that might causes files to
2446 be truncated if you hit C-g in the middle of it. --Stef */
2447 if (process_signals && pending_signals)
2448 process_pending_signals ();
2449 continue;
2451 else
2452 break;
2455 buf += n;
2456 nbyte -= n;
2457 bytes_written += n;
2460 return bytes_written;
2463 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2464 interrupted or if a partial write occurs. Return the number of
2465 bytes written, setting errno if this is less than NBYTE. */
2466 ptrdiff_t
2467 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2469 return emacs_full_write (fildes, buf, nbyte, 0);
2472 /* Like emacs_write, but also process pending signals if interrupted. */
2473 ptrdiff_t
2474 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2476 return emacs_full_write (fildes, buf, nbyte, 1);
2479 /* Write a diagnostic to standard error that contains MESSAGE and a
2480 string derived from errno. Preserve errno. Do not buffer stderr.
2481 Do not process pending signals if interrupted. */
2482 void
2483 emacs_perror (char const *message)
2485 int err = errno;
2486 char const *error_string = strerror (err);
2487 char const *command = (initial_argv && initial_argv[0]
2488 ? initial_argv[0] : "emacs");
2489 /* Write it out all at once, if it's short; this is less likely to
2490 be interleaved with other output. */
2491 char buf[BUFSIZ];
2492 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2493 command, message, error_string);
2494 if (0 <= nbytes && nbytes < BUFSIZ)
2495 emacs_write (STDERR_FILENO, buf, nbytes);
2496 else
2498 emacs_write (STDERR_FILENO, command, strlen (command));
2499 emacs_write (STDERR_FILENO, ": ", 2);
2500 emacs_write (STDERR_FILENO, message, strlen (message));
2501 emacs_write (STDERR_FILENO, ": ", 2);
2502 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2503 emacs_write (STDERR_FILENO, "\n", 1);
2505 errno = err;
2508 /* Return a struct timeval that is roughly equivalent to T.
2509 Use the least timeval not less than T.
2510 Return an extremal value if the result would overflow. */
2511 struct timeval
2512 make_timeval (struct timespec t)
2514 struct timeval tv;
2515 tv.tv_sec = t.tv_sec;
2516 tv.tv_usec = t.tv_nsec / 1000;
2518 if (t.tv_nsec % 1000 != 0)
2520 if (tv.tv_usec < 999999)
2521 tv.tv_usec++;
2522 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2524 tv.tv_sec++;
2525 tv.tv_usec = 0;
2529 return tv;
2532 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2533 ATIME and MTIME, respectively.
2534 FD must be either negative -- in which case it is ignored --
2535 or a file descriptor that is open on FILE.
2536 If FD is nonnegative, then FILE can be NULL. */
2538 set_file_times (int fd, const char *filename,
2539 struct timespec atime, struct timespec mtime)
2541 struct timespec timespec[2];
2542 timespec[0] = atime;
2543 timespec[1] = mtime;
2544 return fdutimens (fd, filename, timespec);
2547 /* Like strsignal, except async-signal-safe, and this function typically
2548 returns a string in the C locale rather than the current locale. */
2549 char const *
2550 safe_strsignal (int code)
2552 char const *signame = 0;
2554 if (0 <= code && code < sys_siglist_entries)
2555 signame = sys_siglist[code];
2556 if (! signame)
2557 signame = "Unknown signal";
2559 return signame;
2562 #ifndef DOS_NT
2563 /* For make-serial-process */
2565 serial_open (Lisp_Object port)
2567 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2568 if (fd < 0)
2569 report_file_error ("Opening serial port", port);
2570 #ifdef TIOCEXCL
2571 ioctl (fd, TIOCEXCL, (char *) 0);
2572 #endif
2574 return fd;
2577 #if !defined (HAVE_CFMAKERAW)
2578 /* Workaround for targets which are missing cfmakeraw. */
2579 /* Pasted from man page. */
2580 static void
2581 cfmakeraw (struct termios *termios_p)
2583 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2584 termios_p->c_oflag &= ~OPOST;
2585 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2586 termios_p->c_cflag &= ~(CSIZE|PARENB);
2587 termios_p->c_cflag |= CS8;
2589 #endif /* !defined (HAVE_CFMAKERAW */
2591 #if !defined (HAVE_CFSETSPEED)
2592 /* Workaround for targets which are missing cfsetspeed. */
2593 static int
2594 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2596 return (cfsetispeed (termios_p, vitesse)
2597 + cfsetospeed (termios_p, vitesse));
2599 #endif
2601 /* For serial-process-configure */
2602 void
2603 serial_configure (struct Lisp_Process *p,
2604 Lisp_Object contact)
2606 Lisp_Object childp2 = Qnil;
2607 Lisp_Object tem = Qnil;
2608 struct termios attr;
2609 int err;
2610 char summary[4] = "???"; /* This usually becomes "8N1". */
2612 childp2 = Fcopy_sequence (p->childp);
2614 /* Read port attributes and prepare default configuration. */
2615 err = tcgetattr (p->outfd, &attr);
2616 if (err != 0)
2617 report_file_error ("Failed tcgetattr", Qnil);
2618 cfmakeraw (&attr);
2619 #if defined (CLOCAL)
2620 attr.c_cflag |= CLOCAL;
2621 #endif
2622 #if defined (CREAD)
2623 attr.c_cflag |= CREAD;
2624 #endif
2626 /* Configure speed. */
2627 if (!NILP (Fplist_member (contact, QCspeed)))
2628 tem = Fplist_get (contact, QCspeed);
2629 else
2630 tem = Fplist_get (p->childp, QCspeed);
2631 CHECK_NUMBER (tem);
2632 err = cfsetspeed (&attr, XINT (tem));
2633 if (err != 0)
2634 report_file_error ("Failed cfsetspeed", tem);
2635 childp2 = Fplist_put (childp2, QCspeed, tem);
2637 /* Configure bytesize. */
2638 if (!NILP (Fplist_member (contact, QCbytesize)))
2639 tem = Fplist_get (contact, QCbytesize);
2640 else
2641 tem = Fplist_get (p->childp, QCbytesize);
2642 if (NILP (tem))
2643 tem = make_number (8);
2644 CHECK_NUMBER (tem);
2645 if (XINT (tem) != 7 && XINT (tem) != 8)
2646 error (":bytesize must be nil (8), 7, or 8");
2647 summary[0] = XINT (tem) + '0';
2648 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2649 attr.c_cflag &= ~CSIZE;
2650 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2651 #else
2652 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2653 if (XINT (tem) != 8)
2654 error ("Bytesize cannot be changed");
2655 #endif
2656 childp2 = Fplist_put (childp2, QCbytesize, tem);
2658 /* Configure parity. */
2659 if (!NILP (Fplist_member (contact, QCparity)))
2660 tem = Fplist_get (contact, QCparity);
2661 else
2662 tem = Fplist_get (p->childp, QCparity);
2663 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2664 error (":parity must be nil (no parity), `even', or `odd'");
2665 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2666 attr.c_cflag &= ~(PARENB | PARODD);
2667 attr.c_iflag &= ~(IGNPAR | INPCK);
2668 if (NILP (tem))
2670 summary[1] = 'N';
2672 else if (EQ (tem, Qeven))
2674 summary[1] = 'E';
2675 attr.c_cflag |= PARENB;
2676 attr.c_iflag |= (IGNPAR | INPCK);
2678 else if (EQ (tem, Qodd))
2680 summary[1] = 'O';
2681 attr.c_cflag |= (PARENB | PARODD);
2682 attr.c_iflag |= (IGNPAR | INPCK);
2684 #else
2685 /* Don't error on no parity, which should be set by cfmakeraw. */
2686 if (!NILP (tem))
2687 error ("Parity cannot be configured");
2688 #endif
2689 childp2 = Fplist_put (childp2, QCparity, tem);
2691 /* Configure stopbits. */
2692 if (!NILP (Fplist_member (contact, QCstopbits)))
2693 tem = Fplist_get (contact, QCstopbits);
2694 else
2695 tem = Fplist_get (p->childp, QCstopbits);
2696 if (NILP (tem))
2697 tem = make_number (1);
2698 CHECK_NUMBER (tem);
2699 if (XINT (tem) != 1 && XINT (tem) != 2)
2700 error (":stopbits must be nil (1 stopbit), 1, or 2");
2701 summary[2] = XINT (tem) + '0';
2702 #if defined (CSTOPB)
2703 attr.c_cflag &= ~CSTOPB;
2704 if (XINT (tem) == 2)
2705 attr.c_cflag |= CSTOPB;
2706 #else
2707 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2708 if (XINT (tem) != 1)
2709 error ("Stopbits cannot be configured");
2710 #endif
2711 childp2 = Fplist_put (childp2, QCstopbits, tem);
2713 /* Configure flowcontrol. */
2714 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2715 tem = Fplist_get (contact, QCflowcontrol);
2716 else
2717 tem = Fplist_get (p->childp, QCflowcontrol);
2718 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2719 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2720 #if defined (CRTSCTS)
2721 attr.c_cflag &= ~CRTSCTS;
2722 #endif
2723 #if defined (CNEW_RTSCTS)
2724 attr.c_cflag &= ~CNEW_RTSCTS;
2725 #endif
2726 #if defined (IXON) && defined (IXOFF)
2727 attr.c_iflag &= ~(IXON | IXOFF);
2728 #endif
2729 if (NILP (tem))
2731 /* Already configured. */
2733 else if (EQ (tem, Qhw))
2735 #if defined (CRTSCTS)
2736 attr.c_cflag |= CRTSCTS;
2737 #elif defined (CNEW_RTSCTS)
2738 attr.c_cflag |= CNEW_RTSCTS;
2739 #else
2740 error ("Hardware flowcontrol (RTS/CTS) not supported");
2741 #endif
2743 else if (EQ (tem, Qsw))
2745 #if defined (IXON) && defined (IXOFF)
2746 attr.c_iflag |= (IXON | IXOFF);
2747 #else
2748 error ("Software flowcontrol (XON/XOFF) not supported");
2749 #endif
2751 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2753 /* Activate configuration. */
2754 err = tcsetattr (p->outfd, TCSANOW, &attr);
2755 if (err != 0)
2756 report_file_error ("Failed tcsetattr", Qnil);
2758 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2759 pset_childp (p, childp2);
2761 #endif /* not DOS_NT */
2763 /* System depended enumeration of and access to system processes a-la ps(1). */
2765 #ifdef HAVE_PROCFS
2767 /* Process enumeration and access via /proc. */
2769 Lisp_Object
2770 list_system_processes (void)
2772 Lisp_Object procdir, match, proclist, next;
2773 struct gcpro gcpro1, gcpro2;
2774 register Lisp_Object tail;
2776 GCPRO2 (procdir, match);
2777 /* For every process on the system, there's a directory in the
2778 "/proc" pseudo-directory whose name is the numeric ID of that
2779 process. */
2780 procdir = build_string ("/proc");
2781 match = build_string ("[0-9]+");
2782 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2784 /* `proclist' gives process IDs as strings. Destructively convert
2785 each string into a number. */
2786 for (tail = proclist; CONSP (tail); tail = next)
2788 next = XCDR (tail);
2789 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2791 UNGCPRO;
2793 /* directory_files_internal returns the files in reverse order; undo
2794 that. */
2795 proclist = Fnreverse (proclist);
2796 return proclist;
2799 #elif defined DARWIN_OS || defined __FreeBSD__
2801 Lisp_Object
2802 list_system_processes (void)
2804 #ifdef DARWIN_OS
2805 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2806 #else
2807 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2808 #endif
2809 size_t len;
2810 struct kinfo_proc *procs;
2811 size_t i;
2813 struct gcpro gcpro1;
2814 Lisp_Object proclist = Qnil;
2816 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2817 return proclist;
2819 procs = xmalloc (len);
2820 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2822 xfree (procs);
2823 return proclist;
2826 GCPRO1 (proclist);
2827 len /= sizeof (struct kinfo_proc);
2828 for (i = 0; i < len; i++)
2830 #ifdef DARWIN_OS
2831 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2832 #else
2833 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2834 #endif
2836 UNGCPRO;
2838 xfree (procs);
2840 return proclist;
2843 /* The WINDOWSNT implementation is in w32.c.
2844 The MSDOS implementation is in dosfns.c. */
2845 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2847 Lisp_Object
2848 list_system_processes (void)
2850 return Qnil;
2853 #endif /* !defined (WINDOWSNT) */
2855 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2856 static struct timespec
2857 time_from_jiffies (unsigned long long tval, long hz)
2859 unsigned long long s = tval / hz;
2860 unsigned long long frac = tval % hz;
2861 int ns;
2863 if (TYPE_MAXIMUM (time_t) < s)
2864 time_overflow ();
2865 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2866 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2867 ns = frac * TIMESPEC_RESOLUTION / hz;
2868 else
2870 /* This is reachable only in the unlikely case that HZ * HZ
2871 exceeds ULLONG_MAX. It calculates an approximation that is
2872 guaranteed to be in range. */
2873 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2874 + (hz % TIMESPEC_RESOLUTION != 0));
2875 ns = frac / hz_per_ns;
2878 return make_timespec (s, ns);
2881 static Lisp_Object
2882 ltime_from_jiffies (unsigned long long tval, long hz)
2884 struct timespec t = time_from_jiffies (tval, hz);
2885 return make_lisp_time (t);
2888 static struct timespec
2889 get_up_time (void)
2891 FILE *fup;
2892 struct timespec up = make_timespec (0, 0);
2894 block_input ();
2895 fup = emacs_fopen ("/proc/uptime", "r");
2897 if (fup)
2899 unsigned long long upsec, upfrac, idlesec, idlefrac;
2900 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2902 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2903 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2904 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2905 == 4)
2907 if (TYPE_MAXIMUM (time_t) < upsec)
2909 upsec = TYPE_MAXIMUM (time_t);
2910 upfrac = TIMESPEC_RESOLUTION - 1;
2912 else
2914 int upfraclen = upfrac_end - upfrac_start;
2915 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2916 upfrac *= 10;
2917 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2918 upfrac /= 10;
2919 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2921 up = make_timespec (upsec, upfrac);
2923 fclose (fup);
2925 unblock_input ();
2927 return up;
2930 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2931 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2933 static Lisp_Object
2934 procfs_ttyname (int rdev)
2936 FILE *fdev;
2937 char name[PATH_MAX];
2939 block_input ();
2940 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2941 name[0] = 0;
2943 if (fdev)
2945 unsigned major;
2946 unsigned long minor_beg, minor_end;
2947 char minor[25]; /* 2 32-bit numbers + dash */
2948 char *endp;
2950 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2952 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2953 && major == MAJOR (rdev))
2955 minor_beg = strtoul (minor, &endp, 0);
2956 if (*endp == '\0')
2957 minor_end = minor_beg;
2958 else if (*endp == '-')
2959 minor_end = strtoul (endp + 1, &endp, 0);
2960 else
2961 continue;
2963 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2965 sprintf (name + strlen (name), "%u", MINOR (rdev));
2966 break;
2970 fclose (fdev);
2972 unblock_input ();
2973 return build_string (name);
2976 static uintmax_t
2977 procfs_get_total_memory (void)
2979 FILE *fmem;
2980 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2981 int c;
2983 block_input ();
2984 fmem = emacs_fopen ("/proc/meminfo", "r");
2986 if (fmem)
2988 uintmax_t entry_value;
2989 bool done;
2992 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2994 case 1:
2995 retval = entry_value;
2996 done = 1;
2997 break;
2999 case 0:
3000 while ((c = getc (fmem)) != EOF && c != '\n')
3001 continue;
3002 done = c == EOF;
3003 break;
3005 default:
3006 done = 1;
3007 break;
3009 while (!done);
3011 fclose (fmem);
3013 unblock_input ();
3014 return retval;
3017 Lisp_Object
3018 system_process_attributes (Lisp_Object pid)
3020 char procfn[PATH_MAX], fn[PATH_MAX];
3021 struct stat st;
3022 struct passwd *pw;
3023 struct group *gr;
3024 long clocks_per_sec;
3025 char *procfn_end;
3026 char procbuf[1025], *p, *q;
3027 int fd;
3028 ssize_t nread;
3029 static char const default_cmd[] = "???";
3030 const char *cmd = default_cmd;
3031 int cmdsize = sizeof default_cmd - 1;
3032 char *cmdline = NULL;
3033 ptrdiff_t cmdline_size;
3034 char c;
3035 printmax_t proc_id;
3036 int ppid, pgrp, sess, tty, tpgid, thcount;
3037 uid_t uid;
3038 gid_t gid;
3039 unsigned long long u_time, s_time, cutime, cstime, start;
3040 long priority, niceness, rss;
3041 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3042 struct timespec tnow, tstart, tboot, telapsed, us_time;
3043 double pcpu, pmem;
3044 Lisp_Object attrs = Qnil;
3045 Lisp_Object cmd_str, decoded_cmd;
3046 ptrdiff_t count;
3047 struct gcpro gcpro1, gcpro2;
3049 CHECK_NUMBER_OR_FLOAT (pid);
3050 CONS_TO_INTEGER (pid, pid_t, proc_id);
3051 sprintf (procfn, "/proc/%"pMd, proc_id);
3052 if (stat (procfn, &st) < 0)
3053 return attrs;
3055 GCPRO2 (attrs, decoded_cmd);
3057 /* euid egid */
3058 uid = st.st_uid;
3059 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3060 block_input ();
3061 pw = getpwuid (uid);
3062 unblock_input ();
3063 if (pw)
3064 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3066 gid = st.st_gid;
3067 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3068 block_input ();
3069 gr = getgrgid (gid);
3070 unblock_input ();
3071 if (gr)
3072 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3074 count = SPECPDL_INDEX ();
3075 strcpy (fn, procfn);
3076 procfn_end = fn + strlen (fn);
3077 strcpy (procfn_end, "/stat");
3078 fd = emacs_open (fn, O_RDONLY, 0);
3079 if (fd < 0)
3080 nread = 0;
3081 else
3083 record_unwind_protect_int (close_file_unwind, fd);
3084 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3086 if (0 < nread)
3088 procbuf[nread] = '\0';
3089 p = procbuf;
3091 p = strchr (p, '(');
3092 if (p != NULL)
3094 q = strrchr (p + 1, ')');
3095 /* comm */
3096 if (q != NULL)
3098 cmd = p + 1;
3099 cmdsize = q - cmd;
3102 else
3103 q = NULL;
3104 /* Command name is encoded in locale-coding-system; decode it. */
3105 cmd_str = make_unibyte_string (cmd, cmdsize);
3106 decoded_cmd = code_convert_string_norecord (cmd_str,
3107 Vlocale_coding_system, 0);
3108 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3110 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3111 utime stime cutime cstime priority nice thcount . start vsize rss */
3112 if (q
3113 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3114 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3115 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3116 &minflt, &cminflt, &majflt, &cmajflt,
3117 &u_time, &s_time, &cutime, &cstime,
3118 &priority, &niceness, &thcount, &start, &vsize, &rss)
3119 == 20))
3121 char state_str[2];
3122 state_str[0] = c;
3123 state_str[1] = '\0';
3124 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3125 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3126 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3127 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3128 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3129 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3130 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3131 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3132 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3133 attrs);
3134 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3135 attrs);
3136 clocks_per_sec = sysconf (_SC_CLK_TCK);
3137 if (clocks_per_sec < 0)
3138 clocks_per_sec = 100;
3139 attrs = Fcons (Fcons (Qutime,
3140 ltime_from_jiffies (u_time, clocks_per_sec)),
3141 attrs);
3142 attrs = Fcons (Fcons (Qstime,
3143 ltime_from_jiffies (s_time, clocks_per_sec)),
3144 attrs);
3145 attrs = Fcons (Fcons (Qtime,
3146 ltime_from_jiffies (s_time + u_time,
3147 clocks_per_sec)),
3148 attrs);
3149 attrs = Fcons (Fcons (Qcutime,
3150 ltime_from_jiffies (cutime, clocks_per_sec)),
3151 attrs);
3152 attrs = Fcons (Fcons (Qcstime,
3153 ltime_from_jiffies (cstime, clocks_per_sec)),
3154 attrs);
3155 attrs = Fcons (Fcons (Qctime,
3156 ltime_from_jiffies (cstime + cutime,
3157 clocks_per_sec)),
3158 attrs);
3159 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3160 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3161 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3162 attrs);
3163 tnow = current_timespec ();
3164 telapsed = get_up_time ();
3165 tboot = timespec_sub (tnow, telapsed);
3166 tstart = time_from_jiffies (start, clocks_per_sec);
3167 tstart = timespec_add (tboot, tstart);
3168 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3169 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3170 attrs);
3171 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3172 telapsed = timespec_sub (tnow, tstart);
3173 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3174 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3175 pcpu = timespectod (us_time) / timespectod (telapsed);
3176 if (pcpu > 1.0)
3177 pcpu = 1.0;
3178 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3179 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3180 if (pmem > 100)
3181 pmem = 100;
3182 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3185 unbind_to (count, Qnil);
3187 /* args */
3188 strcpy (procfn_end, "/cmdline");
3189 fd = emacs_open (fn, O_RDONLY, 0);
3190 if (fd >= 0)
3192 ptrdiff_t readsize, nread_incr;
3193 record_unwind_protect_int (close_file_unwind, fd);
3194 record_unwind_protect_nothing ();
3195 nread = cmdline_size = 0;
3199 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3200 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3202 /* Leave room even if every byte needs escaping below. */
3203 readsize = (cmdline_size >> 1) - nread;
3205 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3206 nread += max (0, nread_incr);
3208 while (nread_incr == readsize);
3210 if (nread)
3212 /* We don't want trailing null characters. */
3213 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3214 continue;
3216 /* Escape-quote whitespace and backslashes. */
3217 q = cmdline + cmdline_size;
3218 while (cmdline < p)
3220 char c = *--p;
3221 *--q = c ? c : ' ';
3222 if (c_isspace (c) || c == '\\')
3223 *--q = '\\';
3226 nread = cmdline + cmdline_size - q;
3229 if (!nread)
3231 nread = cmdsize + 2;
3232 cmdline_size = nread + 1;
3233 q = cmdline = xrealloc (cmdline, cmdline_size);
3234 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3235 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3237 /* Command line is encoded in locale-coding-system; decode it. */
3238 cmd_str = make_unibyte_string (q, nread);
3239 decoded_cmd = code_convert_string_norecord (cmd_str,
3240 Vlocale_coding_system, 0);
3241 unbind_to (count, Qnil);
3242 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3245 UNGCPRO;
3246 return attrs;
3249 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3251 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3252 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3253 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3254 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3255 #undef _FILE_OFFSET_BITS
3256 #else
3257 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3258 #endif
3260 #include <procfs.h>
3262 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3263 #define _FILE_OFFSET_BITS 64
3264 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3265 #endif
3266 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3268 Lisp_Object
3269 system_process_attributes (Lisp_Object pid)
3271 char procfn[PATH_MAX], fn[PATH_MAX];
3272 struct stat st;
3273 struct passwd *pw;
3274 struct group *gr;
3275 char *procfn_end;
3276 struct psinfo pinfo;
3277 int fd;
3278 ssize_t nread;
3279 printmax_t proc_id;
3280 uid_t uid;
3281 gid_t gid;
3282 Lisp_Object attrs = Qnil;
3283 Lisp_Object decoded_cmd;
3284 struct gcpro gcpro1, gcpro2;
3285 ptrdiff_t count;
3287 CHECK_NUMBER_OR_FLOAT (pid);
3288 CONS_TO_INTEGER (pid, pid_t, proc_id);
3289 sprintf (procfn, "/proc/%"pMd, proc_id);
3290 if (stat (procfn, &st) < 0)
3291 return attrs;
3293 GCPRO2 (attrs, decoded_cmd);
3295 /* euid egid */
3296 uid = st.st_uid;
3297 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3298 block_input ();
3299 pw = getpwuid (uid);
3300 unblock_input ();
3301 if (pw)
3302 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3304 gid = st.st_gid;
3305 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3306 block_input ();
3307 gr = getgrgid (gid);
3308 unblock_input ();
3309 if (gr)
3310 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3312 count = SPECPDL_INDEX ();
3313 strcpy (fn, procfn);
3314 procfn_end = fn + strlen (fn);
3315 strcpy (procfn_end, "/psinfo");
3316 fd = emacs_open (fn, O_RDONLY, 0);
3317 if (fd < 0)
3318 nread = 0;
3319 else
3321 record_unwind_protect (close_file_unwind, fd);
3322 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3325 if (nread == sizeof pinfo)
3327 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3328 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3329 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3332 char state_str[2];
3333 state_str[0] = pinfo.pr_lwp.pr_sname;
3334 state_str[1] = '\0';
3335 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3338 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3339 need to get a string from it. */
3341 /* FIXME: missing: Qtpgid */
3343 /* FIXME: missing:
3344 Qminflt
3345 Qmajflt
3346 Qcminflt
3347 Qcmajflt
3349 Qutime
3350 Qcutime
3351 Qstime
3352 Qcstime
3353 Are they available? */
3355 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3356 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3357 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3358 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3359 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3360 attrs);
3362 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3363 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3364 attrs);
3365 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3366 attrs);
3368 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3369 range 0 .. 2**15, representing 0.0 .. 1.0. */
3370 attrs = Fcons (Fcons (Qpcpu,
3371 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3372 attrs);
3373 attrs = Fcons (Fcons (Qpmem,
3374 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3375 attrs);
3377 decoded_cmd = (code_convert_string_norecord
3378 (build_unibyte_string (pinfo.pr_fname),
3379 Vlocale_coding_system, 0));
3380 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3381 decoded_cmd = (code_convert_string_norecord
3382 (build_unibyte_string (pinfo.pr_psargs),
3383 Vlocale_coding_system, 0));
3384 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3386 unbind_to (count, Qnil);
3387 UNGCPRO;
3388 return attrs;
3391 #elif defined __FreeBSD__
3393 static struct timespec
3394 timeval_to_timespec (struct timeval t)
3396 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3399 static Lisp_Object
3400 make_lisp_timeval (struct timeval t)
3402 return make_lisp_time (timeval_to_timespec (t));
3405 Lisp_Object
3406 system_process_attributes (Lisp_Object pid)
3408 int proc_id;
3409 int pagesize = getpagesize ();
3410 unsigned long npages;
3411 int fscale;
3412 struct passwd *pw;
3413 struct group *gr;
3414 char *ttyname;
3415 size_t len;
3416 char args[MAXPATHLEN];
3417 struct timespec t, now;
3419 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3420 struct kinfo_proc proc;
3421 size_t proclen = sizeof proc;
3423 struct gcpro gcpro1, gcpro2;
3424 Lisp_Object attrs = Qnil;
3425 Lisp_Object decoded_comm;
3427 CHECK_NUMBER_OR_FLOAT (pid);
3428 CONS_TO_INTEGER (pid, int, proc_id);
3429 mib[3] = proc_id;
3431 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3432 return attrs;
3434 GCPRO2 (attrs, decoded_comm);
3436 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3438 block_input ();
3439 pw = getpwuid (proc.ki_uid);
3440 unblock_input ();
3441 if (pw)
3442 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3444 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3446 block_input ();
3447 gr = getgrgid (proc.ki_svgid);
3448 unblock_input ();
3449 if (gr)
3450 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3452 decoded_comm = (code_convert_string_norecord
3453 (build_unibyte_string (proc.ki_comm),
3454 Vlocale_coding_system, 0));
3456 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3458 char state[2] = {'\0', '\0'};
3459 switch (proc.ki_stat)
3461 case SRUN:
3462 state[0] = 'R';
3463 break;
3465 case SSLEEP:
3466 state[0] = 'S';
3467 break;
3469 case SLOCK:
3470 state[0] = 'D';
3471 break;
3473 case SZOMB:
3474 state[0] = 'Z';
3475 break;
3477 case SSTOP:
3478 state[0] = 'T';
3479 break;
3481 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3484 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3485 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3486 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3488 block_input ();
3489 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3490 unblock_input ();
3491 if (ttyname)
3492 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3494 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3495 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3496 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3497 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3498 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3500 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3501 attrs);
3502 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3503 attrs);
3504 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3505 timeval_to_timespec (proc.ki_rusage.ru_stime));
3506 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3508 attrs = Fcons (Fcons (Qcutime,
3509 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3510 attrs);
3511 attrs = Fcons (Fcons (Qcstime,
3512 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3513 attrs);
3514 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3515 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3516 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3518 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3519 attrs);
3520 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3521 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3522 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3523 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3524 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3525 attrs);
3527 now = current_timespec ();
3528 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3529 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3531 len = sizeof fscale;
3532 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3534 double pcpu;
3535 fixpt_t ccpu;
3536 len = sizeof ccpu;
3537 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3539 pcpu = (100.0 * proc.ki_pctcpu / fscale
3540 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3541 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3545 len = sizeof npages;
3546 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3548 double pmem = (proc.ki_flag & P_INMEM
3549 ? 100.0 * proc.ki_rssize / npages
3550 : 0);
3551 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3554 mib[2] = KERN_PROC_ARGS;
3555 len = MAXPATHLEN;
3556 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3558 int i;
3559 for (i = 0; i < len; i++)
3561 if (! args[i] && i < len - 1)
3562 args[i] = ' ';
3565 decoded_comm =
3566 (code_convert_string_norecord
3567 (build_unibyte_string (args),
3568 Vlocale_coding_system, 0));
3570 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3573 UNGCPRO;
3574 return attrs;
3577 /* The WINDOWSNT implementation is in w32.c.
3578 The MSDOS implementation is in dosfns.c. */
3579 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3581 Lisp_Object
3582 system_process_attributes (Lisp_Object pid)
3584 return Qnil;
3587 #endif /* !defined (WINDOWSNT) */
3589 /* Wide character string collation. */
3591 #ifdef __STDC_ISO_10646__
3592 # include <wchar.h>
3594 # if defined HAVE_USELOCALE || defined HAVE_SETLOCALE
3595 # include <locale.h>
3596 # endif
3597 # ifndef HAVE_SETLOCALE
3598 # define setlocale(category, locale) ((char *) 0)
3599 # endif
3601 ptrdiff_t
3602 str_collate (Lisp_Object s1, Lisp_Object s2)
3604 ptrdiff_t res, len, i, i_byte;
3605 wchar_t *p1, *p2;
3606 Lisp_Object lc_collate;
3607 # ifdef HAVE_USELOCALE
3608 locale_t loc = 0, oldloc = 0;
3609 # else
3610 char *oldloc = NULL;
3611 # endif
3613 USE_SAFE_ALLOCA;
3615 /* Convert byte stream to code points. */
3616 len = SCHARS (s1); i = i_byte = 0;
3617 SAFE_NALLOCA (p1, 1, len + 1);
3618 while (i < len)
3619 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3620 *(p1+len) = 0;
3622 len = SCHARS (s2); i = i_byte = 0;
3623 SAFE_NALLOCA (p2, 1, len + 1);
3624 while (i < len)
3625 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3626 *(p2+len) = 0;
3628 /* Create a new locale object, and set it. */
3629 lc_collate =
3630 Fgetenv_internal (build_string ("LC_COLLATE"), Vprocess_environment);
3632 if (STRINGP (lc_collate))
3634 #ifdef HAVE_USELOCALE
3635 loc = newlocale (LC_COLLATE_MASK, SSDATA (lc_collate), 0);
3636 if (loc)
3637 oldloc = uselocale (loc);
3638 #else
3639 oldloc = setlocale (LC_COLLATE, NULL);
3640 if (oldloc)
3642 oldloc = xstrdup (oldloc);
3643 setlocale (LC_COLLATE, SSDATA (lc_collate));
3645 #endif
3648 res = wcscoll (p1, p2);
3650 #ifdef HAVE_USELOCALE
3651 /* Free the locale object, and reset. */
3652 if (loc)
3653 freelocale (loc);
3654 if (oldloc)
3655 uselocale (oldloc);
3656 #else
3657 /* Restore the original locale. */
3658 setlocale (LC_COLLATE, oldloc);
3659 xfree (oldloc);
3660 #endif
3662 /* Return result. */
3663 SAFE_FREE ();
3664 return res;
3666 #endif /* __STDC_ISO_10646__ */
3668 #ifdef WINDOWSNT
3669 ptrdiff_t
3670 str_collate (Lisp_Object s1, Lisp_Object s2)
3672 Lisp_Object lc_collate =
3673 Fgetenv_internal (build_string ("LC_COLLATE"), Vprocess_environment);
3674 char *loc = STRINGP (lc_collate) ? SSDATA (lc_collate) : NULL;
3676 return w32_compare_strings (SDATA (s1), SDATA (s2), loc);
3678 #endif /* WINDOWSNT */