Merge from origin/emacs-24
[emacs.git] / src / sysdep.c
blob24cc5cb0b40eee8868359f73ba448f7ac295efd1
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 /* If HYBRID_GET_CURRENT_DIR_NAME is defined in conf_post.h, then we
23 need the following before including unistd.h, in order to pick up
24 the right prototype for gget_current_dir_name. */
25 #ifdef HYBRID_GET_CURRENT_DIR_NAME
26 #undef get_current_dir_name
27 #define get_current_dir_name gget_current_dir_name
28 #endif
30 #include <execinfo.h>
31 #include "sysstdio.h"
32 #ifdef HAVE_PWD_H
33 #include <pwd.h>
34 #include <grp.h>
35 #endif /* HAVE_PWD_H */
36 #include <limits.h>
37 #include <unistd.h>
39 #include <c-ctype.h>
40 #include <utimens.h>
42 #include "lisp.h"
43 #include "sysselect.h"
44 #include "blockinput.h"
46 #if defined DARWIN_OS || defined __FreeBSD__
47 # include <sys/sysctl.h>
48 #endif
50 #ifdef __FreeBSD__
51 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
52 'struct frame', so rename it. */
53 # define frame freebsd_frame
54 # include <sys/user.h>
55 # undef frame
57 # include <math.h>
58 #endif
60 #ifdef WINDOWSNT
61 #define read sys_read
62 #define write sys_write
63 #ifndef STDERR_FILENO
64 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
65 #endif
66 #include <windows.h>
67 #endif /* not WINDOWSNT */
69 #include <sys/types.h>
70 #include <sys/stat.h>
71 #include <errno.h>
73 /* Get SI_SRPC_DOMAIN, if it is available. */
74 #ifdef HAVE_SYS_SYSTEMINFO_H
75 #include <sys/systeminfo.h>
76 #endif
78 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
79 #include "msdos.h"
80 #endif
82 #ifdef HAVE_SYS_RESOURCE_H
83 #include <sys/resource.h>
84 #endif
85 #include <sys/param.h>
86 #include <sys/file.h>
87 #include <fcntl.h>
89 #include "systty.h"
90 #include "syswait.h"
92 #ifdef HAVE_SYS_UTSNAME_H
93 #include <sys/utsname.h>
94 #include <memory.h>
95 #endif /* HAVE_SYS_UTSNAME_H */
97 #include "keyboard.h"
98 #include "frame.h"
99 #include "window.h"
100 #include "termhooks.h"
101 #include "termchar.h"
102 #include "termopts.h"
103 #include "dispextern.h"
104 #include "process.h"
105 #include "cm.h" /* for reset_sys_modes */
107 #ifdef WINDOWSNT
108 #include <direct.h>
109 /* In process.h which conflicts with the local copy. */
110 #define _P_WAIT 0
111 int _cdecl _spawnlp (int, const char *, const char *, ...);
112 int _cdecl _getpid (void);
113 #endif
115 #include "syssignal.h"
116 #include "systime.h"
118 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
119 #ifndef ULLONG_MAX
120 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
121 #endif
123 /* Declare here, including term.h is problematic on some systems. */
124 extern void tputs (const char *, int, int (*)(int));
126 static const int baud_convert[] =
128 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
129 1800, 2400, 4800, 9600, 19200, 38400
132 #if !defined HAVE_GET_CURRENT_DIR_NAME || defined BROKEN_GET_CURRENT_DIR_NAME \
133 || (defined HYBRID_GET_CURRENT_DIR_NAME)
134 /* Return the current working directory. Returns NULL on errors.
135 Any other returned value must be freed with free. This is used
136 only when get_current_dir_name is not defined on the system. */
137 char *
138 get_current_dir_name (void)
140 char *buf;
141 char *pwd = getenv ("PWD");
142 struct stat dotstat, pwdstat;
143 /* If PWD is accurate, use it instead of calling getcwd. PWD is
144 sometimes a nicer name, and using it may avoid a fatal error if a
145 parent directory is searchable but not readable. */
146 if (pwd
147 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
148 && stat (pwd, &pwdstat) == 0
149 && stat (".", &dotstat) == 0
150 && dotstat.st_ino == pwdstat.st_ino
151 && dotstat.st_dev == pwdstat.st_dev
152 #ifdef MAXPATHLEN
153 && strlen (pwd) < MAXPATHLEN
154 #endif
157 buf = malloc (strlen (pwd) + 1);
158 if (!buf)
159 return NULL;
160 strcpy (buf, pwd);
162 else
164 size_t buf_size = 1024;
165 buf = malloc (buf_size);
166 if (!buf)
167 return NULL;
168 for (;;)
170 if (getcwd (buf, buf_size) == buf)
171 break;
172 if (errno != ERANGE)
174 int tmp_errno = errno;
175 free (buf);
176 errno = tmp_errno;
177 return NULL;
179 buf_size *= 2;
180 buf = realloc (buf, buf_size);
181 if (!buf)
182 return NULL;
185 return buf;
187 #endif
190 /* Discard pending input on all input descriptors. */
192 void
193 discard_tty_input (void)
195 #ifndef WINDOWSNT
196 struct emacs_tty buf;
198 if (noninteractive)
199 return;
201 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
202 while (dos_keyread () != -1)
204 #else /* not MSDOS */
206 struct tty_display_info *tty;
207 for (tty = tty_list; tty; tty = tty->next)
209 if (tty->input) /* Is the device suspended? */
211 emacs_get_tty (fileno (tty->input), &buf);
212 emacs_set_tty (fileno (tty->input), &buf, 0);
216 #endif /* not MSDOS */
217 #endif /* not WINDOWSNT */
221 #ifdef SIGTSTP
223 /* Arrange for character C to be read as the next input from
224 the terminal.
225 XXX What if we have multiple ttys?
228 void
229 stuff_char (char c)
231 if (! (FRAMEP (selected_frame)
232 && FRAME_LIVE_P (XFRAME (selected_frame))
233 && FRAME_TERMCAP_P (XFRAME (selected_frame))))
234 return;
236 /* Should perhaps error if in batch mode */
237 #ifdef TIOCSTI
238 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
239 #else /* no TIOCSTI */
240 error ("Cannot stuff terminal input characters in this version of Unix");
241 #endif /* no TIOCSTI */
244 #endif /* SIGTSTP */
246 void
247 init_baud_rate (int fd)
249 int emacs_ospeed;
251 if (noninteractive)
252 emacs_ospeed = 0;
253 else
255 #ifdef DOS_NT
256 emacs_ospeed = 15;
257 #else /* not DOS_NT */
258 struct termios sg;
260 sg.c_cflag = B9600;
261 tcgetattr (fd, &sg);
262 emacs_ospeed = cfgetospeed (&sg);
263 #endif /* not DOS_NT */
266 baud_rate = (emacs_ospeed < ARRAYELTS (baud_convert)
267 ? baud_convert[emacs_ospeed] : 9600);
268 if (baud_rate == 0)
269 baud_rate = 1200;
274 #ifndef MSDOS
276 /* Wait for the subprocess with process id CHILD to terminate or change status.
277 CHILD must be a child process that has not been reaped.
278 If STATUS is non-null, store the waitpid-style exit status into *STATUS
279 and tell wait_reading_process_output that it needs to look around.
280 Use waitpid-style OPTIONS when waiting.
281 If INTERRUPTIBLE, this function is interruptible by a signal.
283 Return CHILD if successful, 0 if no status is available;
284 the latter is possible only when options & NOHANG. */
285 static pid_t
286 get_child_status (pid_t child, int *status, int options, bool interruptible)
288 pid_t pid;
290 /* Invoke waitpid only with a known process ID; do not invoke
291 waitpid with a nonpositive argument. Otherwise, Emacs might
292 reap an unwanted process by mistake. For example, invoking
293 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
294 so that another thread running glib won't find them. */
295 eassert (child > 0);
297 while ((pid = waitpid (child, status, options)) < 0)
299 /* Check that CHILD is a child process that has not been reaped,
300 and that STATUS and OPTIONS are valid. Otherwise abort,
301 as continuing after this internal error could cause Emacs to
302 become confused and kill innocent-victim processes. */
303 if (errno != EINTR)
304 emacs_abort ();
306 /* Note: the MS-Windows emulation of waitpid calls QUIT
307 internally. */
308 if (interruptible)
309 QUIT;
312 /* If successful and status is requested, tell wait_reading_process_output
313 that it needs to wake up and look around. */
314 if (pid && status && input_available_clear_time)
315 *input_available_clear_time = make_timespec (0, 0);
317 return pid;
320 /* Wait for the subprocess with process id CHILD to terminate.
321 CHILD must be a child process that has not been reaped.
322 If STATUS is non-null, store the waitpid-style exit status into *STATUS
323 and tell wait_reading_process_output that it needs to look around.
324 If INTERRUPTIBLE, this function is interruptible by a signal. */
325 void
326 wait_for_termination (pid_t child, int *status, bool interruptible)
328 get_child_status (child, status, 0, interruptible);
331 /* Report whether the subprocess with process id CHILD has changed status.
332 Termination counts as a change of status.
333 CHILD must be a child process that has not been reaped.
334 If STATUS is non-null, store the waitpid-style exit status into *STATUS
335 and tell wait_reading_process_output that it needs to look around.
336 Use waitpid-style OPTIONS to check status, but do not wait.
338 Return CHILD if successful, 0 if no status is available because
339 the process's state has not changed. */
340 pid_t
341 child_status_changed (pid_t child, int *status, int options)
343 return get_child_status (child, status, WNOHANG | options, 0);
347 /* Set up the terminal at the other end of a pseudo-terminal that
348 we will be controlling an inferior through.
349 It should not echo or do line-editing, since that is done
350 in Emacs. No padding needed for insertion into an Emacs buffer. */
352 void
353 child_setup_tty (int out)
355 #ifndef WINDOWSNT
356 struct emacs_tty s;
358 emacs_get_tty (out, &s);
359 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
360 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
361 #ifdef NLDLY
362 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
363 Some versions of GNU Hurd do not have FFDLY? */
364 #ifdef FFDLY
365 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
366 /* No output delays */
367 #else
368 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
369 /* No output delays */
370 #endif
371 #endif
372 s.main.c_lflag &= ~ECHO; /* Disable echo */
373 s.main.c_lflag |= ISIG; /* Enable signals */
374 #ifdef IUCLC
375 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
376 #endif
377 #ifdef ISTRIP
378 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
379 #endif
380 #ifdef OLCUC
381 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
382 #endif
383 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
384 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
385 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
386 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
388 #ifdef HPUX
389 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
390 #endif /* HPUX */
392 #ifdef SIGNALS_VIA_CHARACTERS
393 /* the QUIT and INTR character are used in process_send_signal
394 so set them here to something useful. */
395 if (s.main.c_cc[VQUIT] == CDISABLE)
396 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
397 if (s.main.c_cc[VINTR] == CDISABLE)
398 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
399 #endif /* not SIGNALS_VIA_CHARACTERS */
401 #ifdef AIX
402 /* Also, PTY overloads NUL and BREAK.
403 don't ignore break, but don't signal either, so it looks like NUL. */
404 s.main.c_iflag &= ~IGNBRK;
405 s.main.c_iflag &= ~BRKINT;
406 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
407 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
408 would force it to 0377. That looks like duplicated code. */
409 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
410 #endif /* AIX */
412 /* We originally enabled ICANON (and set VEOF to 04), and then had
413 process.c send additional EOF chars to flush the output when faced
414 with long lines, but this leads to weird effects when the
415 subprocess has disabled ICANON and ends up seeing those spurious
416 extra EOFs. So we don't send EOFs any more in
417 process.c:send_process. First we tried to disable ICANON by
418 default, so if a subsprocess sets up ICANON, it's his problem (or
419 the Elisp package that talks to it) to deal with lines that are
420 too long. But this disables some features, such as the ability
421 to send EOF signals. So we re-enabled ICANON but there is no
422 more "send eof to flush" going on (which is wrong and unportable
423 in itself). The correct way to handle too much output is to
424 buffer what could not be written and then write it again when
425 select returns ok for writing. This has it own set of
426 problems. Write is now asynchronous, is that a problem? How much
427 do we buffer, and what do we do when that limit is reached? */
429 s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */
430 s.main.c_cc[VEOF] = 'D'&037; /* Control-D */
431 #if 0 /* These settings only apply to non-ICANON mode. */
432 s.main.c_cc[VMIN] = 1;
433 s.main.c_cc[VTIME] = 0;
434 #endif
436 emacs_set_tty (out, &s, 0);
437 #endif /* not WINDOWSNT */
439 #endif /* not MSDOS */
442 /* Record a signal code and the action for it. */
443 struct save_signal
445 int code;
446 struct sigaction action;
449 static void save_signal_handlers (struct save_signal *);
450 static void restore_signal_handlers (struct save_signal *);
452 /* Suspend the Emacs process; give terminal to its superior. */
454 void
455 sys_suspend (void)
457 #ifndef DOS_NT
458 kill (0, SIGTSTP);
459 #else
460 /* On a system where suspending is not implemented,
461 instead fork a subshell and let it talk directly to the terminal
462 while we wait. */
463 sys_subshell ();
465 #endif
468 /* Fork a subshell. */
470 void
471 sys_subshell (void)
473 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
474 int st;
475 #ifdef MSDOS
476 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
477 #else
478 char oldwd[MAX_UTF8_PATH];
479 #endif
480 #endif
481 pid_t pid;
482 int status;
483 struct save_signal saved_handlers[5];
484 char *str = SSDATA (encode_current_directory ());
486 #ifdef DOS_NT
487 pid = 0;
488 #else
490 char *volatile str_volatile = str;
491 pid = vfork ();
492 str = str_volatile;
494 #endif
496 if (pid < 0)
497 error ("Can't spawn subshell");
499 saved_handlers[0].code = SIGINT;
500 saved_handlers[1].code = SIGQUIT;
501 saved_handlers[2].code = SIGTERM;
502 #ifdef USABLE_SIGIO
503 saved_handlers[3].code = SIGIO;
504 saved_handlers[4].code = 0;
505 #else
506 saved_handlers[3].code = 0;
507 #endif
509 #ifdef DOS_NT
510 save_signal_handlers (saved_handlers);
511 #endif
513 if (pid == 0)
515 const char *sh = 0;
517 #ifdef DOS_NT /* MW, Aug 1993 */
518 getcwd (oldwd, sizeof oldwd);
519 if (sh == 0)
520 sh = egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
521 #endif
522 if (sh == 0)
523 sh = egetenv ("SHELL");
524 if (sh == 0)
525 sh = "sh";
527 /* Use our buffer's default directory for the subshell. */
528 if (chdir (str) != 0)
530 #ifndef DOS_NT
531 emacs_perror (str);
532 _exit (EXIT_CANCELED);
533 #endif
536 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
538 char *epwd = getenv ("PWD");
539 char old_pwd[MAXPATHLEN+1+4];
541 /* If PWD is set, pass it with corrected value. */
542 if (epwd)
544 strcpy (old_pwd, epwd);
545 setenv ("PWD", str, 1);
547 st = system (sh);
548 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
549 if (epwd)
550 putenv (old_pwd); /* restore previous value */
552 #else /* not MSDOS */
553 #ifdef WINDOWSNT
554 /* Waits for process completion */
555 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
556 chdir (oldwd); /* FIXME: Do the right thing on chdir failure. */
557 if (pid == -1)
558 write (1, "Can't execute subshell", 22);
559 #else /* not WINDOWSNT */
560 execlp (sh, sh, (char *) 0);
561 emacs_perror (sh);
562 _exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
563 #endif /* not WINDOWSNT */
564 #endif /* not MSDOS */
567 /* Do this now if we did not do it before. */
568 #ifndef MSDOS
569 save_signal_handlers (saved_handlers);
570 #endif
572 #ifndef DOS_NT
573 wait_for_termination (pid, &status, 0);
574 #endif
575 restore_signal_handlers (saved_handlers);
578 static void
579 save_signal_handlers (struct save_signal *saved_handlers)
581 while (saved_handlers->code)
583 struct sigaction action;
584 emacs_sigaction_init (&action, SIG_IGN);
585 sigaction (saved_handlers->code, &action, &saved_handlers->action);
586 saved_handlers++;
590 static void
591 restore_signal_handlers (struct save_signal *saved_handlers)
593 while (saved_handlers->code)
595 sigaction (saved_handlers->code, &saved_handlers->action, 0);
596 saved_handlers++;
600 #ifdef USABLE_SIGIO
601 static int old_fcntl_flags[FD_SETSIZE];
602 #endif
604 void
605 init_sigio (int fd)
607 #ifdef USABLE_SIGIO
608 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
609 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
610 interrupts_deferred = 0;
611 #endif
614 #ifndef DOS_NT
615 static void
616 reset_sigio (int fd)
618 #ifdef USABLE_SIGIO
619 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
620 #endif
622 #endif
624 void
625 request_sigio (void)
627 #ifdef USABLE_SIGIO
628 sigset_t unblocked;
630 if (noninteractive)
631 return;
633 sigemptyset (&unblocked);
634 # ifdef SIGWINCH
635 sigaddset (&unblocked, SIGWINCH);
636 # endif
637 sigaddset (&unblocked, SIGIO);
638 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
640 interrupts_deferred = 0;
641 #endif
644 void
645 unrequest_sigio (void)
647 #ifdef USABLE_SIGIO
648 sigset_t blocked;
650 if (noninteractive)
651 return;
653 sigemptyset (&blocked);
654 # ifdef SIGWINCH
655 sigaddset (&blocked, SIGWINCH);
656 # endif
657 sigaddset (&blocked, SIGIO);
658 pthread_sigmask (SIG_BLOCK, &blocked, 0);
659 interrupts_deferred = 1;
660 #endif
663 void
664 ignore_sigio (void)
666 #ifdef USABLE_SIGIO
667 signal (SIGIO, SIG_IGN);
668 #endif
671 #ifndef MSDOS
672 /* Block SIGCHLD. */
674 void
675 block_child_signal (sigset_t *oldset)
677 sigset_t blocked;
678 sigemptyset (&blocked);
679 sigaddset (&blocked, SIGCHLD);
680 sigaddset (&blocked, SIGINT);
681 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
684 /* Unblock SIGCHLD. */
686 void
687 unblock_child_signal (sigset_t const *oldset)
689 pthread_sigmask (SIG_SETMASK, oldset, 0);
692 #endif /* !MSDOS */
694 /* Saving and restoring the process group of Emacs's terminal. */
696 /* The process group of which Emacs was a member when it initially
697 started.
699 If Emacs was in its own process group (i.e. inherited_pgroup ==
700 getpid ()), then we know we're running under a shell with job
701 control (Emacs would never be run as part of a pipeline).
702 Everything is fine.
704 If Emacs was not in its own process group, then we know we're
705 running under a shell (or a caller) that doesn't know how to
706 separate itself from Emacs (like sh). Emacs must be in its own
707 process group in order to receive SIGIO correctly. In this
708 situation, we put ourselves in our own pgroup, forcibly set the
709 tty's pgroup to our pgroup, and make sure to restore and reinstate
710 the tty's pgroup just like any other terminal setting. If
711 inherited_group was not the tty's pgroup, then we'll get a
712 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
713 it goes foreground in the future, which is what should happen. */
715 static pid_t inherited_pgroup;
717 void
718 init_foreground_group (void)
720 pid_t pgrp = getpgrp ();
721 inherited_pgroup = getpid () == pgrp ? 0 : pgrp;
724 /* Block and unblock SIGTTOU. */
726 void
727 block_tty_out_signal (sigset_t *oldset)
729 #ifdef SIGTTOU
730 sigset_t blocked;
731 sigemptyset (&blocked);
732 sigaddset (&blocked, SIGTTOU);
733 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
734 #endif
737 void
738 unblock_tty_out_signal (sigset_t const *oldset)
740 #ifdef SIGTTOU
741 pthread_sigmask (SIG_SETMASK, oldset, 0);
742 #endif
745 /* Safely set a controlling terminal FD's process group to PGID.
746 If we are not in the foreground already, POSIX requires tcsetpgrp
747 to deliver a SIGTTOU signal, which would stop us. This is an
748 annoyance, so temporarily ignore the signal.
750 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
751 skip all this unless SIGTTOU is defined. */
752 static void
753 tcsetpgrp_without_stopping (int fd, pid_t pgid)
755 #ifdef SIGTTOU
756 sigset_t oldset;
757 block_input ();
758 block_tty_out_signal (&oldset);
759 tcsetpgrp (fd, pgid);
760 unblock_tty_out_signal (&oldset);
761 unblock_input ();
762 #endif
765 /* Split off the foreground process group to Emacs alone. When we are
766 in the foreground, but not started in our own process group,
767 redirect the tty device handle FD to point to our own process
768 group. FD must be the file descriptor of the controlling tty. */
769 static void
770 narrow_foreground_group (int fd)
772 if (inherited_pgroup && setpgid (0, 0) == 0)
773 tcsetpgrp_without_stopping (fd, getpid ());
776 /* Set the tty to our original foreground group. */
777 static void
778 widen_foreground_group (int fd)
780 if (inherited_pgroup && setpgid (0, inherited_pgroup) == 0)
781 tcsetpgrp_without_stopping (fd, inherited_pgroup);
784 /* Getting and setting emacs_tty structures. */
786 /* Set *TC to the parameters associated with the terminal FD,
787 or clear it if the parameters are not available.
788 Return 0 on success, -1 on failure. */
790 emacs_get_tty (int fd, struct emacs_tty *settings)
792 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
793 memset (&settings->main, 0, sizeof (settings->main));
794 #ifdef DOS_NT
795 #ifdef WINDOWSNT
796 HANDLE h = (HANDLE)_get_osfhandle (fd);
797 DWORD console_mode;
799 if (h && h != INVALID_HANDLE_VALUE && GetConsoleMode (h, &console_mode))
801 settings->main = console_mode;
802 return 0;
804 #endif /* WINDOWSNT */
805 return -1;
806 #else /* !DOS_NT */
807 /* We have those nifty POSIX tcmumbleattr functions. */
808 return tcgetattr (fd, &settings->main);
809 #endif
813 /* Set the parameters of the tty on FD according to the contents of
814 *SETTINGS. If FLUSHP, discard input.
815 Return 0 if all went well, and -1 (setting errno) if anything failed. */
818 emacs_set_tty (int fd, struct emacs_tty *settings, bool flushp)
820 /* Set the primary parameters - baud rate, character size, etcetera. */
821 #ifdef DOS_NT
822 #ifdef WINDOWSNT
823 HANDLE h = (HANDLE)_get_osfhandle (fd);
825 if (h && h != INVALID_HANDLE_VALUE)
827 DWORD new_mode;
829 /* Assume the handle is open for input. */
830 if (flushp)
831 FlushConsoleInputBuffer (h);
832 new_mode = settings->main;
833 SetConsoleMode (h, new_mode);
835 #endif /* WINDOWSNT */
836 #else /* !DOS_NT */
837 int i;
838 /* We have those nifty POSIX tcmumbleattr functions.
839 William J. Smith <wjs@wiis.wang.com> writes:
840 "POSIX 1003.1 defines tcsetattr to return success if it was
841 able to perform any of the requested actions, even if some
842 of the requested actions could not be performed.
843 We must read settings back to ensure tty setup properly.
844 AIX requires this to keep tty from hanging occasionally." */
845 /* This make sure that we don't loop indefinitely in here. */
846 for (i = 0 ; i < 10 ; i++)
847 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
849 if (errno == EINTR)
850 continue;
851 else
852 return -1;
854 else
856 struct termios new;
858 memset (&new, 0, sizeof (new));
859 /* Get the current settings, and see if they're what we asked for. */
860 tcgetattr (fd, &new);
861 /* We cannot use memcmp on the whole structure here because under
862 * aix386 the termios structure has some reserved field that may
863 * not be filled in.
865 if ( new.c_iflag == settings->main.c_iflag
866 && new.c_oflag == settings->main.c_oflag
867 && new.c_cflag == settings->main.c_cflag
868 && new.c_lflag == settings->main.c_lflag
869 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
870 break;
871 else
872 continue;
874 #endif
876 /* We have survived the tempest. */
877 return 0;
882 #ifdef F_SETOWN
883 static int old_fcntl_owner[FD_SETSIZE];
884 #endif /* F_SETOWN */
886 /* This may also be defined in stdio,
887 but if so, this does no harm,
888 and using the same name avoids wasting the other one's space. */
890 #if defined (USG)
891 unsigned char _sobuf[BUFSIZ+8];
892 #else
893 char _sobuf[BUFSIZ];
894 #endif
896 /* Initialize the terminal mode on all tty devices that are currently
897 open. */
899 void
900 init_all_sys_modes (void)
902 struct tty_display_info *tty;
903 for (tty = tty_list; tty; tty = tty->next)
904 init_sys_modes (tty);
907 /* Initialize the terminal mode on the given tty device. */
909 void
910 init_sys_modes (struct tty_display_info *tty_out)
912 struct emacs_tty tty;
913 Lisp_Object terminal;
915 Vtty_erase_char = Qnil;
917 if (noninteractive)
918 return;
920 if (!tty_out->output)
921 return; /* The tty is suspended. */
923 narrow_foreground_group (fileno (tty_out->input));
925 if (! tty_out->old_tty)
926 tty_out->old_tty = xmalloc (sizeof *tty_out->old_tty);
928 emacs_get_tty (fileno (tty_out->input), tty_out->old_tty);
930 tty = *tty_out->old_tty;
932 #if !defined (DOS_NT)
933 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
935 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
936 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
937 #ifdef INLCR /* I'm just being cautious,
938 since I can't check how widespread INLCR is--rms. */
939 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
940 #endif
941 #ifdef ISTRIP
942 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
943 #endif
944 tty.main.c_lflag &= ~ECHO; /* Disable echo */
945 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
946 #ifdef IEXTEN
947 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
948 #endif
949 tty.main.c_lflag |= ISIG; /* Enable signals */
950 if (tty_out->flow_control)
952 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
953 #ifdef IXANY
954 tty.main.c_iflag &= ~IXANY;
955 #endif /* IXANY */
957 else
958 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
959 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
960 on output */
961 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
962 #ifdef CS8
963 if (tty_out->meta_key)
965 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
966 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
968 #endif
970 XSETTERMINAL(terminal, tty_out->terminal);
971 if (!NILP (Fcontrolling_tty_p (terminal)))
973 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
974 /* Set up C-g for both SIGQUIT and SIGINT.
975 We don't know which we will get, but we handle both alike
976 so which one it really gives us does not matter. */
977 tty.main.c_cc[VQUIT] = quit_char;
979 else
981 /* We normally don't get interrupt or quit signals from tty
982 devices other than our controlling terminal; therefore,
983 we must handle C-g as normal input. Unfortunately, this
984 means that the interrupt and quit feature must be
985 disabled on secondary ttys, or we would not even see the
986 keypress.
988 Note that even though emacsclient could have special code
989 to pass SIGINT to Emacs, we should _not_ enable
990 interrupt/quit keys for emacsclient frames. This means
991 that we can't break out of loops in C code from a
992 secondary tty frame, but we can always decide what
993 display the C-g came from, which is more important from a
994 usability point of view. (Consider the case when two
995 people work together using the same Emacs instance.) */
996 tty.main.c_cc[VINTR] = CDISABLE;
997 tty.main.c_cc[VQUIT] = CDISABLE;
999 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1000 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
1001 #ifdef VSWTCH
1002 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
1003 of C-z */
1004 #endif /* VSWTCH */
1006 #ifdef VSUSP
1007 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off handling of C-z. */
1008 #endif /* VSUSP */
1009 #ifdef V_DSUSP
1010 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off handling of C-y. */
1011 #endif /* V_DSUSP */
1012 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1013 tty.main.c_cc[VDSUSP] = CDISABLE;
1014 #endif /* VDSUSP */
1015 #ifdef VLNEXT
1016 tty.main.c_cc[VLNEXT] = CDISABLE;
1017 #endif /* VLNEXT */
1018 #ifdef VREPRINT
1019 tty.main.c_cc[VREPRINT] = CDISABLE;
1020 #endif /* VREPRINT */
1021 #ifdef VWERASE
1022 tty.main.c_cc[VWERASE] = CDISABLE;
1023 #endif /* VWERASE */
1024 #ifdef VDISCARD
1025 tty.main.c_cc[VDISCARD] = CDISABLE;
1026 #endif /* VDISCARD */
1028 if (tty_out->flow_control)
1030 #ifdef VSTART
1031 tty.main.c_cc[VSTART] = '\021';
1032 #endif /* VSTART */
1033 #ifdef VSTOP
1034 tty.main.c_cc[VSTOP] = '\023';
1035 #endif /* VSTOP */
1037 else
1039 #ifdef VSTART
1040 tty.main.c_cc[VSTART] = CDISABLE;
1041 #endif /* VSTART */
1042 #ifdef VSTOP
1043 tty.main.c_cc[VSTOP] = CDISABLE;
1044 #endif /* VSTOP */
1047 #ifdef AIX
1048 tty.main.c_cc[VSTRT] = CDISABLE;
1049 tty.main.c_cc[VSTOP] = CDISABLE;
1050 tty.main.c_cc[VSUSP] = CDISABLE;
1051 tty.main.c_cc[VDSUSP] = CDISABLE;
1052 if (tty_out->flow_control)
1054 #ifdef VSTART
1055 tty.main.c_cc[VSTART] = '\021';
1056 #endif /* VSTART */
1057 #ifdef VSTOP
1058 tty.main.c_cc[VSTOP] = '\023';
1059 #endif /* VSTOP */
1061 /* Also, PTY overloads NUL and BREAK.
1062 don't ignore break, but don't signal either, so it looks like NUL.
1063 This really serves a purpose only if running in an XTERM window
1064 or via TELNET or the like, but does no harm elsewhere. */
1065 tty.main.c_iflag &= ~IGNBRK;
1066 tty.main.c_iflag &= ~BRKINT;
1067 #endif
1068 #endif /* not DOS_NT */
1070 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1071 if (!tty_out->term_initted)
1072 internal_terminal_init ();
1073 dos_ttraw (tty_out);
1074 #endif
1076 emacs_set_tty (fileno (tty_out->input), &tty, 0);
1078 /* This code added to insure that, if flow-control is not to be used,
1079 we have an unlocked terminal at the start. */
1081 #ifdef TCXONC
1082 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1083 #endif
1084 #ifdef TIOCSTART
1085 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1086 #endif
1088 #if !defined (DOS_NT)
1089 #ifdef TCOON
1090 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1091 #endif
1092 #endif
1094 #ifdef F_GETOWN
1095 if (interrupt_input)
1097 old_fcntl_owner[fileno (tty_out->input)] =
1098 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1099 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1100 init_sigio (fileno (tty_out->input));
1101 #ifdef HAVE_GPM
1102 if (gpm_tty == tty_out)
1104 /* Arrange for mouse events to give us SIGIO signals. */
1105 fcntl (gpm_fd, F_SETOWN, getpid ());
1106 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1107 init_sigio (gpm_fd);
1109 #endif /* HAVE_GPM */
1111 #endif /* F_GETOWN */
1113 #ifdef _IOFBF
1114 /* This symbol is defined on recent USG systems.
1115 Someone says without this call USG won't really buffer the file
1116 even with a call to setbuf. */
1117 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1118 #else
1119 setbuf (tty_out->output, (char *) _sobuf);
1120 #endif
1122 if (tty_out->terminal->set_terminal_modes_hook)
1123 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1125 if (!tty_out->term_initted)
1127 Lisp_Object tail, frame;
1128 FOR_EACH_FRAME (tail, frame)
1130 /* XXX This needs to be revised. */
1131 if (FRAME_TERMCAP_P (XFRAME (frame))
1132 && FRAME_TTY (XFRAME (frame)) == tty_out)
1133 init_frame_faces (XFRAME (frame));
1137 if (tty_out->term_initted && no_redraw_on_reenter)
1139 /* We used to call "direct_output_forward_char(0)" here,
1140 but it's not clear why, since it may not do anything anyway. */
1142 else
1144 Lisp_Object tail, frame;
1145 frame_garbaged = 1;
1146 FOR_EACH_FRAME (tail, frame)
1148 if ((FRAME_TERMCAP_P (XFRAME (frame))
1149 || FRAME_MSDOS_P (XFRAME (frame)))
1150 && FRAME_TTY (XFRAME (frame)) == tty_out)
1151 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1155 tty_out->term_initted = 1;
1158 /* Return true if safe to use tabs in output.
1159 At the time this is called, init_sys_modes has not been done yet. */
1161 bool
1162 tabs_safe_p (int fd)
1164 struct emacs_tty etty;
1166 emacs_get_tty (fd, &etty);
1167 #ifndef DOS_NT
1168 #ifdef TABDLY
1169 return ((etty.main.c_oflag & TABDLY) != TAB3);
1170 #else /* not TABDLY */
1171 return 1;
1172 #endif /* not TABDLY */
1173 #else /* DOS_NT */
1174 return 0;
1175 #endif /* DOS_NT */
1178 /* Discard echoing. */
1180 void
1181 suppress_echo_on_tty (int fd)
1183 struct emacs_tty etty;
1185 emacs_get_tty (fd, &etty);
1186 #ifdef DOS_NT
1187 /* Set raw input mode. */
1188 etty.main = 0;
1189 #else
1190 etty.main.c_lflag &= ~ICANON; /* Disable buffering */
1191 etty.main.c_lflag &= ~ECHO; /* Disable echoing */
1192 #endif /* ! WINDOWSNT */
1193 emacs_set_tty (fd, &etty, 0);
1196 /* Get terminal size from system.
1197 Store number of lines into *HEIGHTP and width into *WIDTHP.
1198 We store 0 if there's no valid information. */
1200 void
1201 get_tty_size (int fd, int *widthp, int *heightp)
1203 #if defined TIOCGWINSZ
1205 /* BSD-style. */
1206 struct winsize size;
1208 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1209 *widthp = *heightp = 0;
1210 else
1212 *widthp = size.ws_col;
1213 *heightp = size.ws_row;
1216 #elif defined TIOCGSIZE
1218 /* SunOS - style. */
1219 struct ttysize size;
1221 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1222 *widthp = *heightp = 0;
1223 else
1225 *widthp = size.ts_cols;
1226 *heightp = size.ts_lines;
1229 #elif defined WINDOWSNT
1231 CONSOLE_SCREEN_BUFFER_INFO info;
1232 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &info))
1234 *widthp = info.srWindow.Right - info.srWindow.Left + 1;
1235 *heightp = info.srWindow.Bottom - info.srWindow.Top + 1;
1237 else
1238 *widthp = *heightp = 0;
1240 #elif defined MSDOS
1242 *widthp = ScreenCols ();
1243 *heightp = ScreenRows ();
1245 #else /* system doesn't know size */
1247 *widthp = 0;
1248 *heightp = 0;
1250 #endif
1253 /* Set the logical window size associated with descriptor FD
1254 to HEIGHT and WIDTH. This is used mainly with ptys.
1255 Return a negative value on failure. */
1258 set_window_size (int fd, int height, int width)
1260 #ifdef TIOCSWINSZ
1262 /* BSD-style. */
1263 struct winsize size;
1264 size.ws_row = height;
1265 size.ws_col = width;
1267 return ioctl (fd, TIOCSWINSZ, &size);
1269 #else
1270 #ifdef TIOCSSIZE
1272 /* SunOS - style. */
1273 struct ttysize size;
1274 size.ts_lines = height;
1275 size.ts_cols = width;
1277 return ioctl (fd, TIOCGSIZE, &size);
1278 #else
1279 return -1;
1280 #endif /* not SunOS-style */
1281 #endif /* not BSD-style */
1286 /* Prepare all terminal devices for exiting Emacs. */
1288 void
1289 reset_all_sys_modes (void)
1291 struct tty_display_info *tty;
1292 for (tty = tty_list; tty; tty = tty->next)
1293 reset_sys_modes (tty);
1296 /* Prepare the terminal for closing it; move the cursor to the
1297 bottom of the frame, turn off interrupt-driven I/O, etc. */
1299 void
1300 reset_sys_modes (struct tty_display_info *tty_out)
1302 if (noninteractive)
1304 fflush (stdout);
1305 return;
1307 if (!tty_out->term_initted)
1308 return;
1310 if (!tty_out->output)
1311 return; /* The tty is suspended. */
1313 /* Go to and clear the last line of the terminal. */
1315 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1317 /* Code adapted from tty_clear_end_of_line. */
1318 if (tty_out->TS_clr_line)
1320 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1322 else
1323 { /* have to do it the hard way */
1324 int i;
1325 tty_turn_off_insert (tty_out);
1327 for (i = cursorX (tty_out); i < FrameCols (tty_out) - 1; i++)
1329 fputc (' ', tty_out->output);
1333 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1334 fflush (tty_out->output);
1336 if (tty_out->terminal->reset_terminal_modes_hook)
1337 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1339 /* Avoid possible loss of output when changing terminal modes. */
1340 while (fdatasync (fileno (tty_out->output)) != 0 && errno == EINTR)
1341 continue;
1343 #ifndef DOS_NT
1344 #ifdef F_SETOWN
1345 if (interrupt_input)
1347 reset_sigio (fileno (tty_out->input));
1348 fcntl (fileno (tty_out->input), F_SETOWN,
1349 old_fcntl_owner[fileno (tty_out->input)]);
1351 #endif /* F_SETOWN */
1352 fcntl (fileno (tty_out->input), F_SETFL,
1353 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
1354 #endif
1356 if (tty_out->old_tty)
1357 while (emacs_set_tty (fileno (tty_out->input),
1358 tty_out->old_tty, 0) < 0 && errno == EINTR)
1361 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1362 dos_ttcooked ();
1363 #endif
1365 widen_foreground_group (fileno (tty_out->input));
1368 #ifdef HAVE_PTYS
1370 /* Set up the proper status flags for use of a pty. */
1372 void
1373 setup_pty (int fd)
1375 /* I'm told that TOICREMOTE does not mean control chars
1376 "can't be sent" but rather that they don't have
1377 input-editing or signaling effects.
1378 That should be good, because we have other ways
1379 to do those things in Emacs.
1380 However, telnet mode seems not to work on 4.2.
1381 So TIOCREMOTE is turned off now. */
1383 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1384 will hang. In particular, the "timeout" feature (which
1385 causes a read to return if there is no data available)
1386 does this. Also it is known that telnet mode will hang
1387 in such a way that Emacs must be stopped (perhaps this
1388 is the same problem).
1390 If TIOCREMOTE is turned off, then there is a bug in
1391 hp-ux which sometimes loses data. Apparently the
1392 code which blocks the master process when the internal
1393 buffer fills up does not work. Other than this,
1394 though, everything else seems to work fine.
1396 Since the latter lossage is more benign, we may as well
1397 lose that way. -- cph */
1398 #ifdef FIONBIO
1399 #if defined (UNIX98_PTYS)
1401 int on = 1;
1402 ioctl (fd, FIONBIO, &on);
1404 #endif
1405 #endif
1407 #endif /* HAVE_PTYS */
1409 #ifdef HAVE_SOCKETS
1410 #include <sys/socket.h>
1411 #include <netdb.h>
1412 #endif /* HAVE_SOCKETS */
1414 #ifdef TRY_AGAIN
1415 #ifndef HAVE_H_ERRNO
1416 extern int h_errno;
1417 #endif
1418 #endif /* TRY_AGAIN */
1420 void
1421 init_system_name (void)
1423 #ifndef HAVE_GETHOSTNAME
1424 struct utsname uts;
1425 uname (&uts);
1426 Vsystem_name = build_string (uts.nodename);
1427 #else /* HAVE_GETHOSTNAME */
1428 char *hostname_alloc = NULL;
1429 char hostname_buf[256];
1430 ptrdiff_t hostname_size = sizeof hostname_buf;
1431 char *hostname = hostname_buf;
1433 /* Try to get the host name; if the buffer is too short, try
1434 again. Apparently, the only indication gethostname gives of
1435 whether the buffer was large enough is the presence or absence
1436 of a '\0' in the string. Eech. */
1437 for (;;)
1439 gethostname (hostname, hostname_size - 1);
1440 hostname[hostname_size - 1] = '\0';
1442 /* Was the buffer large enough for the '\0'? */
1443 if (strlen (hostname) < hostname_size - 1)
1444 break;
1446 hostname = hostname_alloc = xpalloc (hostname_alloc, &hostname_size, 1,
1447 min (PTRDIFF_MAX, SIZE_MAX), 1);
1449 #ifdef HAVE_SOCKETS
1450 /* Turn the hostname into the official, fully-qualified hostname.
1451 Don't do this if we're going to dump; this can confuse system
1452 libraries on some machines and make the dumped emacs core dump. */
1453 #ifndef CANNOT_DUMP
1454 if (initialized)
1455 #endif /* not CANNOT_DUMP */
1456 if (! strchr (hostname, '.'))
1458 int count;
1459 #ifdef HAVE_GETADDRINFO
1460 struct addrinfo *res;
1461 struct addrinfo hints;
1462 int ret;
1464 memset (&hints, 0, sizeof (hints));
1465 hints.ai_socktype = SOCK_STREAM;
1466 hints.ai_flags = AI_CANONNAME;
1468 for (count = 0;; count++)
1470 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1471 || ret != EAI_AGAIN)
1472 break;
1474 if (count >= 5)
1475 break;
1476 Fsleep_for (make_number (1), Qnil);
1479 if (ret == 0)
1481 struct addrinfo *it = res;
1482 while (it)
1484 char *fqdn = it->ai_canonname;
1485 if (fqdn && strchr (fqdn, '.')
1486 && strcmp (fqdn, "localhost.localdomain") != 0)
1487 break;
1488 it = it->ai_next;
1490 if (it)
1492 ptrdiff_t len = strlen (it->ai_canonname);
1493 if (hostname_size <= len)
1495 hostname_size = len + 1;
1496 hostname = hostname_alloc = xrealloc (hostname_alloc,
1497 hostname_size);
1499 strcpy (hostname, it->ai_canonname);
1501 freeaddrinfo (res);
1503 #else /* !HAVE_GETADDRINFO */
1504 struct hostent *hp;
1505 for (count = 0;; count++)
1508 #ifdef TRY_AGAIN
1509 h_errno = 0;
1510 #endif
1511 hp = gethostbyname (hostname);
1512 #ifdef TRY_AGAIN
1513 if (! (hp == 0 && h_errno == TRY_AGAIN))
1514 #endif
1516 break;
1518 if (count >= 5)
1519 break;
1520 Fsleep_for (make_number (1), Qnil);
1523 if (hp)
1525 char *fqdn = (char *) hp->h_name;
1527 if (!strchr (fqdn, '.'))
1529 /* We still don't have a fully qualified domain name.
1530 Try to find one in the list of alternate names */
1531 char **alias = hp->h_aliases;
1532 while (*alias
1533 && (!strchr (*alias, '.')
1534 || !strcmp (*alias, "localhost.localdomain")))
1535 alias++;
1536 if (*alias)
1537 fqdn = *alias;
1539 hostname = fqdn;
1541 #endif /* !HAVE_GETADDRINFO */
1543 #endif /* HAVE_SOCKETS */
1544 Vsystem_name = build_string (hostname);
1545 xfree (hostname_alloc);
1546 #endif /* HAVE_GETHOSTNAME */
1548 char *p;
1549 for (p = SSDATA (Vsystem_name); *p; p++)
1550 if (*p == ' ' || *p == '\t')
1551 *p = '-';
1555 sigset_t empty_mask;
1557 static struct sigaction process_fatal_action;
1559 static int
1560 emacs_sigaction_flags (void)
1562 #ifdef SA_RESTART
1563 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1564 'select') to reset their timeout on some platforms (e.g.,
1565 HP-UX 11), which is not what we want. Also, when Emacs is
1566 interactive, we don't want SA_RESTART because we need to poll
1567 for pending input so we need long-running syscalls to be interrupted
1568 after a signal that sets pending_signals.
1570 Non-interactive keyboard input goes through stdio, where we
1571 always want restartable system calls. */
1572 if (noninteractive)
1573 return SA_RESTART;
1574 #endif
1575 return 0;
1578 /* Store into *ACTION a signal action suitable for Emacs, with handler
1579 HANDLER. */
1580 void
1581 emacs_sigaction_init (struct sigaction *action, signal_handler_t handler)
1583 sigemptyset (&action->sa_mask);
1585 /* When handling a signal, block nonfatal system signals that are caught
1586 by Emacs. This makes race conditions less likely. */
1587 sigaddset (&action->sa_mask, SIGALRM);
1588 #ifdef SIGCHLD
1589 sigaddset (&action->sa_mask, SIGCHLD);
1590 #endif
1591 #ifdef SIGDANGER
1592 sigaddset (&action->sa_mask, SIGDANGER);
1593 #endif
1594 #ifdef PROFILER_CPU_SUPPORT
1595 sigaddset (&action->sa_mask, SIGPROF);
1596 #endif
1597 #ifdef SIGWINCH
1598 sigaddset (&action->sa_mask, SIGWINCH);
1599 #endif
1600 if (! noninteractive)
1602 sigaddset (&action->sa_mask, SIGINT);
1603 sigaddset (&action->sa_mask, SIGQUIT);
1604 #ifdef USABLE_SIGIO
1605 sigaddset (&action->sa_mask, SIGIO);
1606 #endif
1609 action->sa_handler = handler;
1610 action->sa_flags = emacs_sigaction_flags ();
1613 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1614 static pthread_t main_thread;
1615 #endif
1617 /* SIG has arrived at the current process. Deliver it to the main
1618 thread, which should handle it with HANDLER.
1620 If we are on the main thread, handle the signal SIG with HANDLER.
1621 Otherwise, redirect the signal to the main thread, blocking it from
1622 this thread. POSIX says any thread can receive a signal that is
1623 associated with a process, process group, or asynchronous event.
1624 On GNU/Linux that is not true, but for other systems (FreeBSD at
1625 least) it is. */
1626 void
1627 deliver_process_signal (int sig, signal_handler_t handler)
1629 /* Preserve errno, to avoid race conditions with signal handlers that
1630 might change errno. Races can occur even in single-threaded hosts. */
1631 int old_errno = errno;
1633 bool on_main_thread = true;
1634 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1635 if (! pthread_equal (pthread_self (), main_thread))
1637 sigset_t blocked;
1638 sigemptyset (&blocked);
1639 sigaddset (&blocked, sig);
1640 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1641 pthread_kill (main_thread, sig);
1642 on_main_thread = false;
1644 #endif
1645 if (on_main_thread)
1646 handler (sig);
1648 errno = old_errno;
1651 /* Static location to save a fatal backtrace in a thread.
1652 FIXME: If two subsidiary threads fail simultaneously, the resulting
1653 backtrace may be garbage. */
1654 enum { BACKTRACE_LIMIT_MAX = 500 };
1655 static void *thread_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
1656 static int thread_backtrace_npointers;
1658 /* SIG has arrived at the current thread.
1659 If we are on the main thread, handle the signal SIG with HANDLER.
1660 Otherwise, this is a fatal error in the handling thread. */
1661 static void
1662 deliver_thread_signal (int sig, signal_handler_t handler)
1664 int old_errno = errno;
1666 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1667 if (! pthread_equal (pthread_self (), main_thread))
1669 thread_backtrace_npointers
1670 = backtrace (thread_backtrace_buffer, BACKTRACE_LIMIT_MAX);
1671 sigaction (sig, &process_fatal_action, 0);
1672 pthread_kill (main_thread, sig);
1674 /* Avoid further damage while the main thread is exiting. */
1675 while (1)
1676 sigsuspend (&empty_mask);
1678 #endif
1680 handler (sig);
1681 errno = old_errno;
1684 #if !HAVE_DECL_SYS_SIGLIST
1685 # undef sys_siglist
1686 # ifdef _sys_siglist
1687 # define sys_siglist _sys_siglist
1688 # elif HAVE_DECL___SYS_SIGLIST
1689 # define sys_siglist __sys_siglist
1690 # else
1691 # define sys_siglist my_sys_siglist
1692 static char const *sys_siglist[NSIG];
1693 # endif
1694 #endif
1696 #ifdef _sys_nsig
1697 # define sys_siglist_entries _sys_nsig
1698 #else
1699 # define sys_siglist_entries NSIG
1700 #endif
1702 /* Handle bus errors, invalid instruction, etc. */
1703 static void
1704 handle_fatal_signal (int sig)
1706 terminate_due_to_signal (sig, 40);
1709 static void
1710 deliver_fatal_signal (int sig)
1712 deliver_process_signal (sig, handle_fatal_signal);
1715 static void
1716 deliver_fatal_thread_signal (int sig)
1718 deliver_thread_signal (sig, handle_fatal_signal);
1721 static _Noreturn void
1722 handle_arith_signal (int sig)
1724 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1725 xsignal0 (Qarith_error);
1728 #ifdef HAVE_STACK_OVERFLOW_HANDLING
1730 /* -1 if stack grows down as expected on most OS/ABI variants, 1 otherwise. */
1732 static int stack_direction;
1734 /* Alternate stack used by SIGSEGV handler below. */
1736 static unsigned char sigsegv_stack[SIGSTKSZ];
1738 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1740 static void
1741 handle_sigsegv (int sig, siginfo_t *siginfo, void *arg)
1743 /* Hard GC error may lead to stack overflow caused by
1744 too nested calls to mark_object. No way to survive. */
1745 if (!gc_in_progress)
1747 struct rlimit rlim;
1749 if (!getrlimit (RLIMIT_STACK, &rlim))
1751 enum { STACK_DANGER_ZONE = 16 * 1024 };
1752 char *beg, *end, *addr;
1754 beg = stack_bottom;
1755 end = stack_bottom + stack_direction * rlim.rlim_cur;
1756 if (beg > end)
1757 addr = beg, beg = end, end = addr;
1758 addr = (char *) siginfo->si_addr;
1759 /* If we're somewhere on stack and too close to
1760 one of its boundaries, most likely this is it. */
1761 if (beg < addr && addr < end
1762 && (addr - beg < STACK_DANGER_ZONE
1763 || end - addr < STACK_DANGER_ZONE))
1764 siglongjmp (return_to_command_loop, 1);
1768 /* Otherwise we can't do anything with this. */
1769 deliver_fatal_thread_signal (sig);
1772 /* Return true if we have successfully set up SIGSEGV handler on alternate
1773 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1775 static bool
1776 init_sigsegv (void)
1778 struct sigaction sa;
1779 stack_t ss;
1781 stack_direction = ((char *) &ss < stack_bottom) ? -1 : 1;
1783 ss.ss_sp = sigsegv_stack;
1784 ss.ss_size = sizeof (sigsegv_stack);
1785 ss.ss_flags = 0;
1786 if (sigaltstack (&ss, NULL) < 0)
1787 return 0;
1789 sigfillset (&sa.sa_mask);
1790 sa.sa_sigaction = handle_sigsegv;
1791 sa.sa_flags = SA_SIGINFO | SA_ONSTACK | emacs_sigaction_flags ();
1792 return sigaction (SIGSEGV, &sa, NULL) < 0 ? 0 : 1;
1795 #else /* not HAVE_STACK_OVERFLOW_HANDLING */
1797 static bool
1798 init_sigsegv (void)
1800 return 0;
1803 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
1805 static void
1806 deliver_arith_signal (int sig)
1808 deliver_thread_signal (sig, handle_arith_signal);
1811 #ifdef SIGDANGER
1813 /* Handler for SIGDANGER. */
1814 static void
1815 handle_danger_signal (int sig)
1817 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1819 /* It might be unsafe to call do_auto_save now. */
1820 force_auto_save_soon ();
1823 static void
1824 deliver_danger_signal (int sig)
1826 deliver_process_signal (sig, handle_danger_signal);
1828 #endif
1830 /* Treat SIG as a terminating signal, unless it is already ignored and
1831 we are in --batch mode. Among other things, this makes nohup work. */
1832 static void
1833 maybe_fatal_sig (int sig)
1835 bool catch_sig = !noninteractive;
1836 if (!catch_sig)
1838 struct sigaction old_action;
1839 sigaction (sig, 0, &old_action);
1840 catch_sig = old_action.sa_handler != SIG_IGN;
1842 if (catch_sig)
1843 sigaction (sig, &process_fatal_action, 0);
1846 void
1847 init_signals (bool dumping)
1849 struct sigaction thread_fatal_action;
1850 struct sigaction action;
1852 sigemptyset (&empty_mask);
1854 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1855 main_thread = pthread_self ();
1856 #endif
1858 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1859 if (! initialized)
1861 sys_siglist[SIGABRT] = "Aborted";
1862 # ifdef SIGAIO
1863 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1864 # endif
1865 sys_siglist[SIGALRM] = "Alarm clock";
1866 # ifdef SIGBUS
1867 sys_siglist[SIGBUS] = "Bus error";
1868 # endif
1869 # ifdef SIGCHLD
1870 sys_siglist[SIGCHLD] = "Child status changed";
1871 # endif
1872 # ifdef SIGCONT
1873 sys_siglist[SIGCONT] = "Continued";
1874 # endif
1875 # ifdef SIGDANGER
1876 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1877 # endif
1878 # ifdef SIGDGNOTIFY
1879 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1880 # endif
1881 # ifdef SIGEMT
1882 sys_siglist[SIGEMT] = "Emulation trap";
1883 # endif
1884 sys_siglist[SIGFPE] = "Arithmetic exception";
1885 # ifdef SIGFREEZE
1886 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1887 # endif
1888 # ifdef SIGGRANT
1889 sys_siglist[SIGGRANT] = "Monitor mode granted";
1890 # endif
1891 sys_siglist[SIGHUP] = "Hangup";
1892 sys_siglist[SIGILL] = "Illegal instruction";
1893 sys_siglist[SIGINT] = "Interrupt";
1894 # ifdef SIGIO
1895 sys_siglist[SIGIO] = "I/O possible";
1896 # endif
1897 # ifdef SIGIOINT
1898 sys_siglist[SIGIOINT] = "I/O intervention required";
1899 # endif
1900 # ifdef SIGIOT
1901 sys_siglist[SIGIOT] = "IOT trap";
1902 # endif
1903 sys_siglist[SIGKILL] = "Killed";
1904 # ifdef SIGLOST
1905 sys_siglist[SIGLOST] = "Resource lost";
1906 # endif
1907 # ifdef SIGLWP
1908 sys_siglist[SIGLWP] = "SIGLWP";
1909 # endif
1910 # ifdef SIGMSG
1911 sys_siglist[SIGMSG] = "Monitor mode data available";
1912 # endif
1913 # ifdef SIGPHONE
1914 sys_siglist[SIGWIND] = "SIGPHONE";
1915 # endif
1916 sys_siglist[SIGPIPE] = "Broken pipe";
1917 # ifdef SIGPOLL
1918 sys_siglist[SIGPOLL] = "Pollable event occurred";
1919 # endif
1920 # ifdef SIGPROF
1921 sys_siglist[SIGPROF] = "Profiling timer expired";
1922 # endif
1923 # ifdef SIGPTY
1924 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1925 # endif
1926 # ifdef SIGPWR
1927 sys_siglist[SIGPWR] = "Power-fail restart";
1928 # endif
1929 sys_siglist[SIGQUIT] = "Quit";
1930 # ifdef SIGRETRACT
1931 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1932 # endif
1933 # ifdef SIGSAK
1934 sys_siglist[SIGSAK] = "Secure attention";
1935 # endif
1936 sys_siglist[SIGSEGV] = "Segmentation violation";
1937 # ifdef SIGSOUND
1938 sys_siglist[SIGSOUND] = "Sound completed";
1939 # endif
1940 # ifdef SIGSTOP
1941 sys_siglist[SIGSTOP] = "Stopped (signal)";
1942 # endif
1943 # ifdef SIGSTP
1944 sys_siglist[SIGSTP] = "Stopped (user)";
1945 # endif
1946 # ifdef SIGSYS
1947 sys_siglist[SIGSYS] = "Bad argument to system call";
1948 # endif
1949 sys_siglist[SIGTERM] = "Terminated";
1950 # ifdef SIGTHAW
1951 sys_siglist[SIGTHAW] = "SIGTHAW";
1952 # endif
1953 # ifdef SIGTRAP
1954 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1955 # endif
1956 # ifdef SIGTSTP
1957 sys_siglist[SIGTSTP] = "Stopped (user)";
1958 # endif
1959 # ifdef SIGTTIN
1960 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1961 # endif
1962 # ifdef SIGTTOU
1963 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1964 # endif
1965 # ifdef SIGURG
1966 sys_siglist[SIGURG] = "Urgent I/O condition";
1967 # endif
1968 # ifdef SIGUSR1
1969 sys_siglist[SIGUSR1] = "User defined signal 1";
1970 # endif
1971 # ifdef SIGUSR2
1972 sys_siglist[SIGUSR2] = "User defined signal 2";
1973 # endif
1974 # ifdef SIGVTALRM
1975 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1976 # endif
1977 # ifdef SIGWAITING
1978 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1979 # endif
1980 # ifdef SIGWINCH
1981 sys_siglist[SIGWINCH] = "Window size changed";
1982 # endif
1983 # ifdef SIGWIND
1984 sys_siglist[SIGWIND] = "SIGWIND";
1985 # endif
1986 # ifdef SIGXCPU
1987 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1988 # endif
1989 # ifdef SIGXFSZ
1990 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1991 # endif
1993 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1995 /* Don't alter signal handlers if dumping. On some machines,
1996 changing signal handlers sets static data that would make signals
1997 fail to work right when the dumped Emacs is run. */
1998 if (dumping)
1999 return;
2001 sigfillset (&process_fatal_action.sa_mask);
2002 process_fatal_action.sa_handler = deliver_fatal_signal;
2003 process_fatal_action.sa_flags = emacs_sigaction_flags ();
2005 sigfillset (&thread_fatal_action.sa_mask);
2006 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
2007 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
2009 /* SIGINT may need special treatment on MS-Windows. See
2010 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
2011 Please update the doc of kill-emacs, kill-emacs-hook, and
2012 NEWS if you change this. */
2014 maybe_fatal_sig (SIGHUP);
2015 maybe_fatal_sig (SIGINT);
2016 maybe_fatal_sig (SIGTERM);
2018 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
2019 However, in batch mode leave SIGPIPE alone, as that causes Emacs
2020 to behave more like typical batch applications do. */
2021 if (! noninteractive)
2022 signal (SIGPIPE, SIG_IGN);
2024 sigaction (SIGQUIT, &process_fatal_action, 0);
2025 sigaction (SIGILL, &thread_fatal_action, 0);
2026 sigaction (SIGTRAP, &thread_fatal_action, 0);
2028 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
2029 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
2030 interpreter's floating point operations, so treat SIGFPE as an
2031 arith-error if it arises in the main thread. */
2032 if (IEEE_FLOATING_POINT)
2033 sigaction (SIGFPE, &thread_fatal_action, 0);
2034 else
2036 emacs_sigaction_init (&action, deliver_arith_signal);
2037 sigaction (SIGFPE, &action, 0);
2040 #ifdef SIGUSR1
2041 add_user_signal (SIGUSR1, "sigusr1");
2042 #endif
2043 #ifdef SIGUSR2
2044 add_user_signal (SIGUSR2, "sigusr2");
2045 #endif
2046 sigaction (SIGABRT, &thread_fatal_action, 0);
2047 #ifdef SIGPRE
2048 sigaction (SIGPRE, &thread_fatal_action, 0);
2049 #endif
2050 #ifdef SIGORE
2051 sigaction (SIGORE, &thread_fatal_action, 0);
2052 #endif
2053 #ifdef SIGUME
2054 sigaction (SIGUME, &thread_fatal_action, 0);
2055 #endif
2056 #ifdef SIGDLK
2057 sigaction (SIGDLK, &process_fatal_action, 0);
2058 #endif
2059 #ifdef SIGCPULIM
2060 sigaction (SIGCPULIM, &process_fatal_action, 0);
2061 #endif
2062 #ifdef SIGIOT
2063 sigaction (SIGIOT, &thread_fatal_action, 0);
2064 #endif
2065 #ifdef SIGEMT
2066 sigaction (SIGEMT, &thread_fatal_action, 0);
2067 #endif
2068 #ifdef SIGBUS
2069 sigaction (SIGBUS, &thread_fatal_action, 0);
2070 #endif
2071 if (!init_sigsegv ())
2072 sigaction (SIGSEGV, &thread_fatal_action, 0);
2073 #ifdef SIGSYS
2074 sigaction (SIGSYS, &thread_fatal_action, 0);
2075 #endif
2076 sigaction (SIGTERM, &process_fatal_action, 0);
2077 #ifdef SIGPROF
2078 signal (SIGPROF, SIG_IGN);
2079 #endif
2080 #ifdef SIGVTALRM
2081 sigaction (SIGVTALRM, &process_fatal_action, 0);
2082 #endif
2083 #ifdef SIGXCPU
2084 sigaction (SIGXCPU, &process_fatal_action, 0);
2085 #endif
2086 #ifdef SIGXFSZ
2087 sigaction (SIGXFSZ, &process_fatal_action, 0);
2088 #endif
2090 #ifdef SIGDANGER
2091 /* This just means available memory is getting low. */
2092 emacs_sigaction_init (&action, deliver_danger_signal);
2093 sigaction (SIGDANGER, &action, 0);
2094 #endif
2096 /* AIX-specific signals. */
2097 #ifdef SIGGRANT
2098 sigaction (SIGGRANT, &process_fatal_action, 0);
2099 #endif
2100 #ifdef SIGMIGRATE
2101 sigaction (SIGMIGRATE, &process_fatal_action, 0);
2102 #endif
2103 #ifdef SIGMSG
2104 sigaction (SIGMSG, &process_fatal_action, 0);
2105 #endif
2106 #ifdef SIGRETRACT
2107 sigaction (SIGRETRACT, &process_fatal_action, 0);
2108 #endif
2109 #ifdef SIGSAK
2110 sigaction (SIGSAK, &process_fatal_action, 0);
2111 #endif
2112 #ifdef SIGSOUND
2113 sigaction (SIGSOUND, &process_fatal_action, 0);
2114 #endif
2115 #ifdef SIGTALRM
2116 sigaction (SIGTALRM, &thread_fatal_action, 0);
2117 #endif
2120 #ifndef HAVE_RANDOM
2121 #ifdef random
2122 #define HAVE_RANDOM
2123 #endif
2124 #endif
2126 /* Figure out how many bits the system's random number generator uses.
2127 `random' and `lrand48' are assumed to return 31 usable bits.
2128 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2129 so we'll shift it and treat it like the 15-bit USG `rand'. */
2131 #ifndef RAND_BITS
2132 # ifdef HAVE_RANDOM
2133 # define RAND_BITS 31
2134 # else /* !HAVE_RANDOM */
2135 # ifdef HAVE_LRAND48
2136 # define RAND_BITS 31
2137 # define random lrand48
2138 # else /* !HAVE_LRAND48 */
2139 # define RAND_BITS 15
2140 # if RAND_MAX == 32767
2141 # define random rand
2142 # else /* RAND_MAX != 32767 */
2143 # if RAND_MAX == 2147483647
2144 # define random() (rand () >> 16)
2145 # else /* RAND_MAX != 2147483647 */
2146 # ifdef USG
2147 # define random rand
2148 # else
2149 # define random() (rand () >> 16)
2150 # endif /* !USG */
2151 # endif /* RAND_MAX != 2147483647 */
2152 # endif /* RAND_MAX != 32767 */
2153 # endif /* !HAVE_LRAND48 */
2154 # endif /* !HAVE_RANDOM */
2155 #endif /* !RAND_BITS */
2157 void
2158 seed_random (void *seed, ptrdiff_t seed_size)
2160 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2161 unsigned int arg = 0;
2162 #else
2163 long int arg = 0;
2164 #endif
2165 unsigned char *argp = (unsigned char *) &arg;
2166 unsigned char *seedp = seed;
2167 ptrdiff_t i;
2168 for (i = 0; i < seed_size; i++)
2169 argp[i % sizeof arg] ^= seedp[i];
2170 #ifdef HAVE_RANDOM
2171 srandom (arg);
2172 #else
2173 # ifdef HAVE_LRAND48
2174 srand48 (arg);
2175 # else
2176 srand (arg);
2177 # endif
2178 #endif
2181 void
2182 init_random (void)
2184 struct timespec t = current_timespec ();
2185 uintmax_t v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2186 seed_random (&v, sizeof v);
2190 * Return a nonnegative random integer out of whatever we've got.
2191 * It contains enough bits to make a random (signed) Emacs fixnum.
2192 * This suffices even for a 64-bit architecture with a 15-bit rand.
2194 EMACS_INT
2195 get_random (void)
2197 EMACS_UINT val = 0;
2198 int i;
2199 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2200 val = (random () ^ (val << RAND_BITS)
2201 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2202 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2203 return val & INTMASK;
2206 #ifndef HAVE_SNPRINTF
2207 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2209 snprintf (char *buf, size_t bufsize, char const *format, ...)
2211 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2212 ptrdiff_t nbytes = size - 1;
2213 va_list ap;
2215 if (size)
2217 va_start (ap, format);
2218 nbytes = doprnt (buf, size, format, 0, ap);
2219 va_end (ap);
2222 if (nbytes == size - 1)
2224 /* Calculate the length of the string that would have been created
2225 had the buffer been large enough. */
2226 char stackbuf[4000];
2227 char *b = stackbuf;
2228 ptrdiff_t bsize = sizeof stackbuf;
2229 va_start (ap, format);
2230 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2231 va_end (ap);
2232 if (b != stackbuf)
2233 xfree (b);
2236 if (INT_MAX < nbytes)
2238 #ifdef EOVERFLOW
2239 errno = EOVERFLOW;
2240 #else
2241 errno = EDOM;
2242 #endif
2243 return -1;
2245 return nbytes;
2247 #endif
2249 /* If a backtrace is available, output the top lines of it to stderr.
2250 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2251 This function may be called from a signal handler, so it should
2252 not invoke async-unsafe functions like malloc. */
2253 void
2254 emacs_backtrace (int backtrace_limit)
2256 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2257 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2258 void *buffer;
2259 int npointers;
2261 if (thread_backtrace_npointers)
2263 buffer = thread_backtrace_buffer;
2264 npointers = thread_backtrace_npointers;
2266 else
2268 buffer = main_backtrace_buffer;
2269 npointers = backtrace (buffer, bounded_limit + 1);
2272 if (npointers)
2274 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2275 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2276 if (bounded_limit < npointers)
2277 emacs_write (STDERR_FILENO, "...\n", 4);
2281 #ifndef HAVE_NTGUI
2282 void
2283 emacs_abort (void)
2285 terminate_due_to_signal (SIGABRT, 40);
2287 #endif
2289 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2290 Use binary I/O on systems that care about text vs binary I/O.
2291 Arrange for subprograms to not inherit the file descriptor.
2292 Prefer a method that is multithread-safe, if available.
2293 Do not fail merely because the open was interrupted by a signal.
2294 Allow the user to quit. */
2297 emacs_open (const char *file, int oflags, int mode)
2299 int fd;
2300 if (! (oflags & O_TEXT))
2301 oflags |= O_BINARY;
2302 oflags |= O_CLOEXEC;
2303 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2304 QUIT;
2305 if (! O_CLOEXEC && 0 <= fd)
2306 fcntl (fd, F_SETFD, FD_CLOEXEC);
2307 return fd;
2310 /* Open FILE as a stream for Emacs use, with mode MODE.
2311 Act like emacs_open with respect to threads, signals, and quits. */
2313 FILE *
2314 emacs_fopen (char const *file, char const *mode)
2316 int fd, omode, oflags;
2317 int bflag = 0;
2318 char const *m = mode;
2320 switch (*m++)
2322 case 'r': omode = O_RDONLY; oflags = 0; break;
2323 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2324 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2325 default: emacs_abort ();
2328 while (*m)
2329 switch (*m++)
2331 case '+': omode = O_RDWR; break;
2332 case 'b': bflag = O_BINARY; break;
2333 case 't': bflag = O_TEXT; break;
2334 default: /* Ignore. */ break;
2337 fd = emacs_open (file, omode | oflags | bflag, 0666);
2338 return fd < 0 ? 0 : fdopen (fd, mode);
2341 /* Create a pipe for Emacs use. */
2344 emacs_pipe (int fd[2])
2346 #ifdef MSDOS
2347 return pipe (fd);
2348 #else /* !MSDOS */
2349 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2350 if (! O_CLOEXEC && result == 0)
2352 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2353 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2355 return result;
2356 #endif /* !MSDOS */
2359 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2360 For the background behind this mess, please see Austin Group defect 529
2361 <http://austingroupbugs.net/view.php?id=529>. */
2363 #ifndef POSIX_CLOSE_RESTART
2364 # define POSIX_CLOSE_RESTART 1
2365 static int
2366 posix_close (int fd, int flag)
2368 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2369 eassert (flag == POSIX_CLOSE_RESTART);
2371 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2372 on a system that does not define POSIX_CLOSE_RESTART.
2374 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2375 closed, and retrying the close could inadvertently close a file
2376 descriptor allocated by some other thread. In other systems
2377 (e.g., HP/UX) FD is not closed. And in still other systems
2378 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2379 multithreaded program there can be no way to tell.
2381 So, in this case, pretend that the close succeeded. This works
2382 well on systems like GNU/Linux that close FD. Although it may
2383 leak a file descriptor on other systems, the leak is unlikely and
2384 it's better to leak than to close a random victim. */
2385 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2387 #endif
2389 /* Close FD, retrying if interrupted. If successful, return 0;
2390 otherwise, return -1 and set errno to a non-EINTR value. Consider
2391 an EINPROGRESS error to be successful, as that's merely a signal
2392 arriving. FD is always closed when this function returns, even
2393 when it returns -1.
2395 Do not call this function if FD is nonnegative and might already be closed,
2396 as that might close an innocent victim opened by some other thread. */
2399 emacs_close (int fd)
2401 while (1)
2403 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2404 if (r == 0)
2405 return r;
2406 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2408 eassert (errno != EBADF || fd < 0);
2409 return errno == EINPROGRESS ? 0 : r;
2414 /* Maximum number of bytes to read or write in a single system call.
2415 This works around a serious bug in Linux kernels before 2.6.16; see
2416 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2417 It's likely to work around similar bugs in other operating systems, so do it
2418 on all platforms. Round INT_MAX down to a page size, with the conservative
2419 assumption that page sizes are at most 2**18 bytes (any kernel with a
2420 page size larger than that shouldn't have the bug). */
2421 #ifndef MAX_RW_COUNT
2422 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2423 #endif
2425 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2426 Return the number of bytes read, which might be less than NBYTE.
2427 On error, set errno and return -1. */
2428 ptrdiff_t
2429 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2431 ssize_t rtnval;
2433 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2434 passes a size that large to emacs_read. */
2436 while ((rtnval = read (fildes, buf, nbyte)) == -1
2437 && (errno == EINTR))
2438 QUIT;
2439 return (rtnval);
2442 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2443 or if a partial write occurs. If interrupted, process pending
2444 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2445 errno if this is less than NBYTE. */
2446 static ptrdiff_t
2447 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2448 bool process_signals)
2450 ptrdiff_t bytes_written = 0;
2452 while (nbyte > 0)
2454 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2456 if (n < 0)
2458 if (errno == EINTR)
2460 /* I originally used `QUIT' but that might cause files to
2461 be truncated if you hit C-g in the middle of it. --Stef */
2462 if (process_signals && pending_signals)
2463 process_pending_signals ();
2464 continue;
2466 else
2467 break;
2470 buf += n;
2471 nbyte -= n;
2472 bytes_written += n;
2475 return bytes_written;
2478 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2479 interrupted or if a partial write occurs. Return the number of
2480 bytes written, setting errno if this is less than NBYTE. */
2481 ptrdiff_t
2482 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2484 return emacs_full_write (fildes, buf, nbyte, 0);
2487 /* Like emacs_write, but also process pending signals if interrupted. */
2488 ptrdiff_t
2489 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2491 return emacs_full_write (fildes, buf, nbyte, 1);
2494 /* Write a diagnostic to standard error that contains MESSAGE and a
2495 string derived from errno. Preserve errno. Do not buffer stderr.
2496 Do not process pending signals if interrupted. */
2497 void
2498 emacs_perror (char const *message)
2500 int err = errno;
2501 char const *error_string = strerror (err);
2502 char const *command = (initial_argv && initial_argv[0]
2503 ? initial_argv[0] : "emacs");
2504 /* Write it out all at once, if it's short; this is less likely to
2505 be interleaved with other output. */
2506 char buf[BUFSIZ];
2507 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2508 command, message, error_string);
2509 if (0 <= nbytes && nbytes < BUFSIZ)
2510 emacs_write (STDERR_FILENO, buf, nbytes);
2511 else
2513 emacs_write (STDERR_FILENO, command, strlen (command));
2514 emacs_write (STDERR_FILENO, ": ", 2);
2515 emacs_write (STDERR_FILENO, message, strlen (message));
2516 emacs_write (STDERR_FILENO, ": ", 2);
2517 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2518 emacs_write (STDERR_FILENO, "\n", 1);
2520 errno = err;
2523 /* Return a struct timeval that is roughly equivalent to T.
2524 Use the least timeval not less than T.
2525 Return an extremal value if the result would overflow. */
2526 struct timeval
2527 make_timeval (struct timespec t)
2529 struct timeval tv;
2530 tv.tv_sec = t.tv_sec;
2531 tv.tv_usec = t.tv_nsec / 1000;
2533 if (t.tv_nsec % 1000 != 0)
2535 if (tv.tv_usec < 999999)
2536 tv.tv_usec++;
2537 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2539 tv.tv_sec++;
2540 tv.tv_usec = 0;
2544 return tv;
2547 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2548 ATIME and MTIME, respectively.
2549 FD must be either negative -- in which case it is ignored --
2550 or a file descriptor that is open on FILE.
2551 If FD is nonnegative, then FILE can be NULL. */
2553 set_file_times (int fd, const char *filename,
2554 struct timespec atime, struct timespec mtime)
2556 struct timespec timespec[2];
2557 timespec[0] = atime;
2558 timespec[1] = mtime;
2559 return fdutimens (fd, filename, timespec);
2562 /* Like strsignal, except async-signal-safe, and this function typically
2563 returns a string in the C locale rather than the current locale. */
2564 char const *
2565 safe_strsignal (int code)
2567 char const *signame = 0;
2569 if (0 <= code && code < sys_siglist_entries)
2570 signame = sys_siglist[code];
2571 if (! signame)
2572 signame = "Unknown signal";
2574 return signame;
2577 #ifndef DOS_NT
2578 /* For make-serial-process */
2580 serial_open (Lisp_Object port)
2582 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2583 if (fd < 0)
2584 report_file_error ("Opening serial port", port);
2585 #ifdef TIOCEXCL
2586 ioctl (fd, TIOCEXCL, (char *) 0);
2587 #endif
2589 return fd;
2592 #if !defined (HAVE_CFMAKERAW)
2593 /* Workaround for targets which are missing cfmakeraw. */
2594 /* Pasted from man page. */
2595 static void
2596 cfmakeraw (struct termios *termios_p)
2598 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2599 termios_p->c_oflag &= ~OPOST;
2600 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2601 termios_p->c_cflag &= ~(CSIZE|PARENB);
2602 termios_p->c_cflag |= CS8;
2604 #endif /* !defined (HAVE_CFMAKERAW */
2606 #if !defined (HAVE_CFSETSPEED)
2607 /* Workaround for targets which are missing cfsetspeed. */
2608 static int
2609 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2611 return (cfsetispeed (termios_p, vitesse)
2612 + cfsetospeed (termios_p, vitesse));
2614 #endif
2616 /* For serial-process-configure */
2617 void
2618 serial_configure (struct Lisp_Process *p,
2619 Lisp_Object contact)
2621 Lisp_Object childp2 = Qnil;
2622 Lisp_Object tem = Qnil;
2623 struct termios attr;
2624 int err;
2625 char summary[4] = "???"; /* This usually becomes "8N1". */
2627 childp2 = Fcopy_sequence (p->childp);
2629 /* Read port attributes and prepare default configuration. */
2630 err = tcgetattr (p->outfd, &attr);
2631 if (err != 0)
2632 report_file_error ("Failed tcgetattr", Qnil);
2633 cfmakeraw (&attr);
2634 #if defined (CLOCAL)
2635 attr.c_cflag |= CLOCAL;
2636 #endif
2637 #if defined (CREAD)
2638 attr.c_cflag |= CREAD;
2639 #endif
2641 /* Configure speed. */
2642 if (!NILP (Fplist_member (contact, QCspeed)))
2643 tem = Fplist_get (contact, QCspeed);
2644 else
2645 tem = Fplist_get (p->childp, QCspeed);
2646 CHECK_NUMBER (tem);
2647 err = cfsetspeed (&attr, XINT (tem));
2648 if (err != 0)
2649 report_file_error ("Failed cfsetspeed", tem);
2650 childp2 = Fplist_put (childp2, QCspeed, tem);
2652 /* Configure bytesize. */
2653 if (!NILP (Fplist_member (contact, QCbytesize)))
2654 tem = Fplist_get (contact, QCbytesize);
2655 else
2656 tem = Fplist_get (p->childp, QCbytesize);
2657 if (NILP (tem))
2658 tem = make_number (8);
2659 CHECK_NUMBER (tem);
2660 if (XINT (tem) != 7 && XINT (tem) != 8)
2661 error (":bytesize must be nil (8), 7, or 8");
2662 summary[0] = XINT (tem) + '0';
2663 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2664 attr.c_cflag &= ~CSIZE;
2665 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2666 #else
2667 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2668 if (XINT (tem) != 8)
2669 error ("Bytesize cannot be changed");
2670 #endif
2671 childp2 = Fplist_put (childp2, QCbytesize, tem);
2673 /* Configure parity. */
2674 if (!NILP (Fplist_member (contact, QCparity)))
2675 tem = Fplist_get (contact, QCparity);
2676 else
2677 tem = Fplist_get (p->childp, QCparity);
2678 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2679 error (":parity must be nil (no parity), `even', or `odd'");
2680 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2681 attr.c_cflag &= ~(PARENB | PARODD);
2682 attr.c_iflag &= ~(IGNPAR | INPCK);
2683 if (NILP (tem))
2685 summary[1] = 'N';
2687 else if (EQ (tem, Qeven))
2689 summary[1] = 'E';
2690 attr.c_cflag |= PARENB;
2691 attr.c_iflag |= (IGNPAR | INPCK);
2693 else if (EQ (tem, Qodd))
2695 summary[1] = 'O';
2696 attr.c_cflag |= (PARENB | PARODD);
2697 attr.c_iflag |= (IGNPAR | INPCK);
2699 #else
2700 /* Don't error on no parity, which should be set by cfmakeraw. */
2701 if (!NILP (tem))
2702 error ("Parity cannot be configured");
2703 #endif
2704 childp2 = Fplist_put (childp2, QCparity, tem);
2706 /* Configure stopbits. */
2707 if (!NILP (Fplist_member (contact, QCstopbits)))
2708 tem = Fplist_get (contact, QCstopbits);
2709 else
2710 tem = Fplist_get (p->childp, QCstopbits);
2711 if (NILP (tem))
2712 tem = make_number (1);
2713 CHECK_NUMBER (tem);
2714 if (XINT (tem) != 1 && XINT (tem) != 2)
2715 error (":stopbits must be nil (1 stopbit), 1, or 2");
2716 summary[2] = XINT (tem) + '0';
2717 #if defined (CSTOPB)
2718 attr.c_cflag &= ~CSTOPB;
2719 if (XINT (tem) == 2)
2720 attr.c_cflag |= CSTOPB;
2721 #else
2722 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2723 if (XINT (tem) != 1)
2724 error ("Stopbits cannot be configured");
2725 #endif
2726 childp2 = Fplist_put (childp2, QCstopbits, tem);
2728 /* Configure flowcontrol. */
2729 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2730 tem = Fplist_get (contact, QCflowcontrol);
2731 else
2732 tem = Fplist_get (p->childp, QCflowcontrol);
2733 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2734 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2735 #if defined (CRTSCTS)
2736 attr.c_cflag &= ~CRTSCTS;
2737 #endif
2738 #if defined (CNEW_RTSCTS)
2739 attr.c_cflag &= ~CNEW_RTSCTS;
2740 #endif
2741 #if defined (IXON) && defined (IXOFF)
2742 attr.c_iflag &= ~(IXON | IXOFF);
2743 #endif
2744 if (NILP (tem))
2746 /* Already configured. */
2748 else if (EQ (tem, Qhw))
2750 #if defined (CRTSCTS)
2751 attr.c_cflag |= CRTSCTS;
2752 #elif defined (CNEW_RTSCTS)
2753 attr.c_cflag |= CNEW_RTSCTS;
2754 #else
2755 error ("Hardware flowcontrol (RTS/CTS) not supported");
2756 #endif
2758 else if (EQ (tem, Qsw))
2760 #if defined (IXON) && defined (IXOFF)
2761 attr.c_iflag |= (IXON | IXOFF);
2762 #else
2763 error ("Software flowcontrol (XON/XOFF) not supported");
2764 #endif
2766 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2768 /* Activate configuration. */
2769 err = tcsetattr (p->outfd, TCSANOW, &attr);
2770 if (err != 0)
2771 report_file_error ("Failed tcsetattr", Qnil);
2773 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2774 pset_childp (p, childp2);
2776 #endif /* not DOS_NT */
2778 /* System depended enumeration of and access to system processes a-la ps(1). */
2780 #ifdef HAVE_PROCFS
2782 /* Process enumeration and access via /proc. */
2784 Lisp_Object
2785 list_system_processes (void)
2787 Lisp_Object procdir, match, proclist, next;
2788 struct gcpro gcpro1, gcpro2;
2789 register Lisp_Object tail;
2791 GCPRO2 (procdir, match);
2792 /* For every process on the system, there's a directory in the
2793 "/proc" pseudo-directory whose name is the numeric ID of that
2794 process. */
2795 procdir = build_string ("/proc");
2796 match = build_string ("[0-9]+");
2797 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2799 /* `proclist' gives process IDs as strings. Destructively convert
2800 each string into a number. */
2801 for (tail = proclist; CONSP (tail); tail = next)
2803 next = XCDR (tail);
2804 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2806 UNGCPRO;
2808 /* directory_files_internal returns the files in reverse order; undo
2809 that. */
2810 proclist = Fnreverse (proclist);
2811 return proclist;
2814 #elif defined DARWIN_OS || defined __FreeBSD__
2816 Lisp_Object
2817 list_system_processes (void)
2819 #ifdef DARWIN_OS
2820 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2821 #else
2822 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2823 #endif
2824 size_t len;
2825 struct kinfo_proc *procs;
2826 size_t i;
2828 struct gcpro gcpro1;
2829 Lisp_Object proclist = Qnil;
2831 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2832 return proclist;
2834 procs = xmalloc (len);
2835 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2837 xfree (procs);
2838 return proclist;
2841 GCPRO1 (proclist);
2842 len /= sizeof (struct kinfo_proc);
2843 for (i = 0; i < len; i++)
2845 #ifdef DARWIN_OS
2846 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2847 #else
2848 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2849 #endif
2851 UNGCPRO;
2853 xfree (procs);
2855 return proclist;
2858 /* The WINDOWSNT implementation is in w32.c.
2859 The MSDOS implementation is in dosfns.c. */
2860 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2862 Lisp_Object
2863 list_system_processes (void)
2865 return Qnil;
2868 #endif /* !defined (WINDOWSNT) */
2870 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2871 static struct timespec
2872 time_from_jiffies (unsigned long long tval, long hz)
2874 unsigned long long s = tval / hz;
2875 unsigned long long frac = tval % hz;
2876 int ns;
2878 if (TYPE_MAXIMUM (time_t) < s)
2879 time_overflow ();
2880 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2881 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2882 ns = frac * TIMESPEC_RESOLUTION / hz;
2883 else
2885 /* This is reachable only in the unlikely case that HZ * HZ
2886 exceeds ULLONG_MAX. It calculates an approximation that is
2887 guaranteed to be in range. */
2888 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2889 + (hz % TIMESPEC_RESOLUTION != 0));
2890 ns = frac / hz_per_ns;
2893 return make_timespec (s, ns);
2896 static Lisp_Object
2897 ltime_from_jiffies (unsigned long long tval, long hz)
2899 struct timespec t = time_from_jiffies (tval, hz);
2900 return make_lisp_time (t);
2903 static struct timespec
2904 get_up_time (void)
2906 FILE *fup;
2907 struct timespec up = make_timespec (0, 0);
2909 block_input ();
2910 fup = emacs_fopen ("/proc/uptime", "r");
2912 if (fup)
2914 unsigned long long upsec, upfrac, idlesec, idlefrac;
2915 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2917 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2918 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2919 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2920 == 4)
2922 if (TYPE_MAXIMUM (time_t) < upsec)
2924 upsec = TYPE_MAXIMUM (time_t);
2925 upfrac = TIMESPEC_RESOLUTION - 1;
2927 else
2929 int upfraclen = upfrac_end - upfrac_start;
2930 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2931 upfrac *= 10;
2932 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2933 upfrac /= 10;
2934 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2936 up = make_timespec (upsec, upfrac);
2938 fclose (fup);
2940 unblock_input ();
2942 return up;
2945 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2946 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2948 static Lisp_Object
2949 procfs_ttyname (int rdev)
2951 FILE *fdev;
2952 char name[PATH_MAX];
2954 block_input ();
2955 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2956 name[0] = 0;
2958 if (fdev)
2960 unsigned major;
2961 unsigned long minor_beg, minor_end;
2962 char minor[25]; /* 2 32-bit numbers + dash */
2963 char *endp;
2965 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2967 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2968 && major == MAJOR (rdev))
2970 minor_beg = strtoul (minor, &endp, 0);
2971 if (*endp == '\0')
2972 minor_end = minor_beg;
2973 else if (*endp == '-')
2974 minor_end = strtoul (endp + 1, &endp, 0);
2975 else
2976 continue;
2978 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2980 sprintf (name + strlen (name), "%u", MINOR (rdev));
2981 break;
2985 fclose (fdev);
2987 unblock_input ();
2988 return build_string (name);
2991 static uintmax_t
2992 procfs_get_total_memory (void)
2994 FILE *fmem;
2995 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2996 int c;
2998 block_input ();
2999 fmem = emacs_fopen ("/proc/meminfo", "r");
3001 if (fmem)
3003 uintmax_t entry_value;
3004 bool done;
3007 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
3009 case 1:
3010 retval = entry_value;
3011 done = 1;
3012 break;
3014 case 0:
3015 while ((c = getc (fmem)) != EOF && c != '\n')
3016 continue;
3017 done = c == EOF;
3018 break;
3020 default:
3021 done = 1;
3022 break;
3024 while (!done);
3026 fclose (fmem);
3028 unblock_input ();
3029 return retval;
3032 Lisp_Object
3033 system_process_attributes (Lisp_Object pid)
3035 char procfn[PATH_MAX], fn[PATH_MAX];
3036 struct stat st;
3037 struct passwd *pw;
3038 struct group *gr;
3039 long clocks_per_sec;
3040 char *procfn_end;
3041 char procbuf[1025], *p, *q;
3042 int fd;
3043 ssize_t nread;
3044 static char const default_cmd[] = "???";
3045 const char *cmd = default_cmd;
3046 int cmdsize = sizeof default_cmd - 1;
3047 char *cmdline = NULL;
3048 ptrdiff_t cmdline_size;
3049 char c;
3050 printmax_t proc_id;
3051 int ppid, pgrp, sess, tty, tpgid, thcount;
3052 uid_t uid;
3053 gid_t gid;
3054 unsigned long long u_time, s_time, cutime, cstime, start;
3055 long priority, niceness, rss;
3056 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3057 struct timespec tnow, tstart, tboot, telapsed, us_time;
3058 double pcpu, pmem;
3059 Lisp_Object attrs = Qnil;
3060 Lisp_Object cmd_str, decoded_cmd;
3061 ptrdiff_t count;
3062 struct gcpro gcpro1, gcpro2;
3064 CHECK_NUMBER_OR_FLOAT (pid);
3065 CONS_TO_INTEGER (pid, pid_t, proc_id);
3066 sprintf (procfn, "/proc/%"pMd, proc_id);
3067 if (stat (procfn, &st) < 0)
3068 return attrs;
3070 GCPRO2 (attrs, decoded_cmd);
3072 /* euid egid */
3073 uid = st.st_uid;
3074 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3075 block_input ();
3076 pw = getpwuid (uid);
3077 unblock_input ();
3078 if (pw)
3079 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3081 gid = st.st_gid;
3082 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3083 block_input ();
3084 gr = getgrgid (gid);
3085 unblock_input ();
3086 if (gr)
3087 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3089 count = SPECPDL_INDEX ();
3090 strcpy (fn, procfn);
3091 procfn_end = fn + strlen (fn);
3092 strcpy (procfn_end, "/stat");
3093 fd = emacs_open (fn, O_RDONLY, 0);
3094 if (fd < 0)
3095 nread = 0;
3096 else
3098 record_unwind_protect_int (close_file_unwind, fd);
3099 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3101 if (0 < nread)
3103 procbuf[nread] = '\0';
3104 p = procbuf;
3106 p = strchr (p, '(');
3107 if (p != NULL)
3109 q = strrchr (p + 1, ')');
3110 /* comm */
3111 if (q != NULL)
3113 cmd = p + 1;
3114 cmdsize = q - cmd;
3117 else
3118 q = NULL;
3119 /* Command name is encoded in locale-coding-system; decode it. */
3120 cmd_str = make_unibyte_string (cmd, cmdsize);
3121 decoded_cmd = code_convert_string_norecord (cmd_str,
3122 Vlocale_coding_system, 0);
3123 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3125 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3126 utime stime cutime cstime priority nice thcount . start vsize rss */
3127 if (q
3128 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3129 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3130 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3131 &minflt, &cminflt, &majflt, &cmajflt,
3132 &u_time, &s_time, &cutime, &cstime,
3133 &priority, &niceness, &thcount, &start, &vsize, &rss)
3134 == 20))
3136 char state_str[2];
3137 state_str[0] = c;
3138 state_str[1] = '\0';
3139 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3140 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3141 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3142 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3143 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3144 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3145 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3146 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3147 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3148 attrs);
3149 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3150 attrs);
3151 clocks_per_sec = sysconf (_SC_CLK_TCK);
3152 if (clocks_per_sec < 0)
3153 clocks_per_sec = 100;
3154 attrs = Fcons (Fcons (Qutime,
3155 ltime_from_jiffies (u_time, clocks_per_sec)),
3156 attrs);
3157 attrs = Fcons (Fcons (Qstime,
3158 ltime_from_jiffies (s_time, clocks_per_sec)),
3159 attrs);
3160 attrs = Fcons (Fcons (Qtime,
3161 ltime_from_jiffies (s_time + u_time,
3162 clocks_per_sec)),
3163 attrs);
3164 attrs = Fcons (Fcons (Qcutime,
3165 ltime_from_jiffies (cutime, clocks_per_sec)),
3166 attrs);
3167 attrs = Fcons (Fcons (Qcstime,
3168 ltime_from_jiffies (cstime, clocks_per_sec)),
3169 attrs);
3170 attrs = Fcons (Fcons (Qctime,
3171 ltime_from_jiffies (cstime + cutime,
3172 clocks_per_sec)),
3173 attrs);
3174 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3175 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3176 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3177 attrs);
3178 tnow = current_timespec ();
3179 telapsed = get_up_time ();
3180 tboot = timespec_sub (tnow, telapsed);
3181 tstart = time_from_jiffies (start, clocks_per_sec);
3182 tstart = timespec_add (tboot, tstart);
3183 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3184 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3185 attrs);
3186 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3187 telapsed = timespec_sub (tnow, tstart);
3188 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3189 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3190 pcpu = timespectod (us_time) / timespectod (telapsed);
3191 if (pcpu > 1.0)
3192 pcpu = 1.0;
3193 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3194 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3195 if (pmem > 100)
3196 pmem = 100;
3197 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3200 unbind_to (count, Qnil);
3202 /* args */
3203 strcpy (procfn_end, "/cmdline");
3204 fd = emacs_open (fn, O_RDONLY, 0);
3205 if (fd >= 0)
3207 ptrdiff_t readsize, nread_incr;
3208 record_unwind_protect_int (close_file_unwind, fd);
3209 record_unwind_protect_nothing ();
3210 nread = cmdline_size = 0;
3214 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3215 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3217 /* Leave room even if every byte needs escaping below. */
3218 readsize = (cmdline_size >> 1) - nread;
3220 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3221 nread += max (0, nread_incr);
3223 while (nread_incr == readsize);
3225 if (nread)
3227 /* We don't want trailing null characters. */
3228 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3229 continue;
3231 /* Escape-quote whitespace and backslashes. */
3232 q = cmdline + cmdline_size;
3233 while (cmdline < p)
3235 char c = *--p;
3236 *--q = c ? c : ' ';
3237 if (c_isspace (c) || c == '\\')
3238 *--q = '\\';
3241 nread = cmdline + cmdline_size - q;
3244 if (!nread)
3246 nread = cmdsize + 2;
3247 cmdline_size = nread + 1;
3248 q = cmdline = xrealloc (cmdline, cmdline_size);
3249 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3250 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3252 /* Command line is encoded in locale-coding-system; decode it. */
3253 cmd_str = make_unibyte_string (q, nread);
3254 decoded_cmd = code_convert_string_norecord (cmd_str,
3255 Vlocale_coding_system, 0);
3256 unbind_to (count, Qnil);
3257 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3260 UNGCPRO;
3261 return attrs;
3264 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3266 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3267 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3268 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3269 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3270 #undef _FILE_OFFSET_BITS
3271 #else
3272 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3273 #endif
3275 #include <procfs.h>
3277 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3278 #define _FILE_OFFSET_BITS 64
3279 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3280 #endif
3281 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3283 Lisp_Object
3284 system_process_attributes (Lisp_Object pid)
3286 char procfn[PATH_MAX], fn[PATH_MAX];
3287 struct stat st;
3288 struct passwd *pw;
3289 struct group *gr;
3290 char *procfn_end;
3291 struct psinfo pinfo;
3292 int fd;
3293 ssize_t nread;
3294 printmax_t proc_id;
3295 uid_t uid;
3296 gid_t gid;
3297 Lisp_Object attrs = Qnil;
3298 Lisp_Object decoded_cmd;
3299 struct gcpro gcpro1, gcpro2;
3300 ptrdiff_t count;
3302 CHECK_NUMBER_OR_FLOAT (pid);
3303 CONS_TO_INTEGER (pid, pid_t, proc_id);
3304 sprintf (procfn, "/proc/%"pMd, proc_id);
3305 if (stat (procfn, &st) < 0)
3306 return attrs;
3308 GCPRO2 (attrs, decoded_cmd);
3310 /* euid egid */
3311 uid = st.st_uid;
3312 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3313 block_input ();
3314 pw = getpwuid (uid);
3315 unblock_input ();
3316 if (pw)
3317 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3319 gid = st.st_gid;
3320 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3321 block_input ();
3322 gr = getgrgid (gid);
3323 unblock_input ();
3324 if (gr)
3325 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3327 count = SPECPDL_INDEX ();
3328 strcpy (fn, procfn);
3329 procfn_end = fn + strlen (fn);
3330 strcpy (procfn_end, "/psinfo");
3331 fd = emacs_open (fn, O_RDONLY, 0);
3332 if (fd < 0)
3333 nread = 0;
3334 else
3336 record_unwind_protect (close_file_unwind, fd);
3337 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3340 if (nread == sizeof pinfo)
3342 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3343 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3344 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3347 char state_str[2];
3348 state_str[0] = pinfo.pr_lwp.pr_sname;
3349 state_str[1] = '\0';
3350 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3353 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3354 need to get a string from it. */
3356 /* FIXME: missing: Qtpgid */
3358 /* FIXME: missing:
3359 Qminflt
3360 Qmajflt
3361 Qcminflt
3362 Qcmajflt
3364 Qutime
3365 Qcutime
3366 Qstime
3367 Qcstime
3368 Are they available? */
3370 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3371 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3372 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3373 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3374 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3375 attrs);
3377 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3378 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3379 attrs);
3380 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3381 attrs);
3383 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3384 range 0 .. 2**15, representing 0.0 .. 1.0. */
3385 attrs = Fcons (Fcons (Qpcpu,
3386 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3387 attrs);
3388 attrs = Fcons (Fcons (Qpmem,
3389 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3390 attrs);
3392 decoded_cmd = (code_convert_string_norecord
3393 (build_unibyte_string (pinfo.pr_fname),
3394 Vlocale_coding_system, 0));
3395 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3396 decoded_cmd = (code_convert_string_norecord
3397 (build_unibyte_string (pinfo.pr_psargs),
3398 Vlocale_coding_system, 0));
3399 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3401 unbind_to (count, Qnil);
3402 UNGCPRO;
3403 return attrs;
3406 #elif defined __FreeBSD__
3408 static struct timespec
3409 timeval_to_timespec (struct timeval t)
3411 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3414 static Lisp_Object
3415 make_lisp_timeval (struct timeval t)
3417 return make_lisp_time (timeval_to_timespec (t));
3420 Lisp_Object
3421 system_process_attributes (Lisp_Object pid)
3423 int proc_id;
3424 int pagesize = getpagesize ();
3425 unsigned long npages;
3426 int fscale;
3427 struct passwd *pw;
3428 struct group *gr;
3429 char *ttyname;
3430 size_t len;
3431 char args[MAXPATHLEN];
3432 struct timespec t, now;
3434 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3435 struct kinfo_proc proc;
3436 size_t proclen = sizeof proc;
3438 struct gcpro gcpro1, gcpro2;
3439 Lisp_Object attrs = Qnil;
3440 Lisp_Object decoded_comm;
3442 CHECK_NUMBER_OR_FLOAT (pid);
3443 CONS_TO_INTEGER (pid, int, proc_id);
3444 mib[3] = proc_id;
3446 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3447 return attrs;
3449 GCPRO2 (attrs, decoded_comm);
3451 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3453 block_input ();
3454 pw = getpwuid (proc.ki_uid);
3455 unblock_input ();
3456 if (pw)
3457 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3459 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3461 block_input ();
3462 gr = getgrgid (proc.ki_svgid);
3463 unblock_input ();
3464 if (gr)
3465 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3467 decoded_comm = (code_convert_string_norecord
3468 (build_unibyte_string (proc.ki_comm),
3469 Vlocale_coding_system, 0));
3471 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3473 char state[2] = {'\0', '\0'};
3474 switch (proc.ki_stat)
3476 case SRUN:
3477 state[0] = 'R';
3478 break;
3480 case SSLEEP:
3481 state[0] = 'S';
3482 break;
3484 case SLOCK:
3485 state[0] = 'D';
3486 break;
3488 case SZOMB:
3489 state[0] = 'Z';
3490 break;
3492 case SSTOP:
3493 state[0] = 'T';
3494 break;
3496 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3499 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3500 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3501 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3503 block_input ();
3504 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3505 unblock_input ();
3506 if (ttyname)
3507 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3509 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3510 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3511 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3512 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3513 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3515 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3516 attrs);
3517 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3518 attrs);
3519 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3520 timeval_to_timespec (proc.ki_rusage.ru_stime));
3521 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3523 attrs = Fcons (Fcons (Qcutime,
3524 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3525 attrs);
3526 attrs = Fcons (Fcons (Qcstime,
3527 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3528 attrs);
3529 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3530 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3531 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3533 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3534 attrs);
3535 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3536 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3537 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3538 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3539 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3540 attrs);
3542 now = current_timespec ();
3543 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3544 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3546 len = sizeof fscale;
3547 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3549 double pcpu;
3550 fixpt_t ccpu;
3551 len = sizeof ccpu;
3552 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3554 pcpu = (100.0 * proc.ki_pctcpu / fscale
3555 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3556 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3560 len = sizeof npages;
3561 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3563 double pmem = (proc.ki_flag & P_INMEM
3564 ? 100.0 * proc.ki_rssize / npages
3565 : 0);
3566 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3569 mib[2] = KERN_PROC_ARGS;
3570 len = MAXPATHLEN;
3571 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3573 int i;
3574 for (i = 0; i < len; i++)
3576 if (! args[i] && i < len - 1)
3577 args[i] = ' ';
3580 decoded_comm =
3581 (code_convert_string_norecord
3582 (build_unibyte_string (args),
3583 Vlocale_coding_system, 0));
3585 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3588 UNGCPRO;
3589 return attrs;
3592 /* The WINDOWSNT implementation is in w32.c.
3593 The MSDOS implementation is in dosfns.c. */
3594 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3596 Lisp_Object
3597 system_process_attributes (Lisp_Object pid)
3599 return Qnil;
3602 #endif /* !defined (WINDOWSNT) */
3604 /* Wide character string collation. */
3606 #ifdef __STDC_ISO_10646__
3607 # include <wchar.h>
3608 # include <wctype.h>
3610 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3611 # include <locale.h>
3612 # endif
3613 # ifndef LC_COLLATE
3614 # define LC_COLLATE 0
3615 # endif
3616 # ifndef LC_COLLATE_MASK
3617 # define LC_COLLATE_MASK 0
3618 # endif
3619 # ifndef LC_CTYPE
3620 # define LC_CTYPE 0
3621 # endif
3622 # ifndef LC_CTYPE_MASK
3623 # define LC_CTYPE_MASK 0
3624 # endif
3626 # ifndef HAVE_NEWLOCALE
3627 # undef freelocale
3628 # undef locale_t
3629 # undef newlocale
3630 # undef wcscoll_l
3631 # undef towlower_l
3632 # define freelocale emacs_freelocale
3633 # define locale_t emacs_locale_t
3634 # define newlocale emacs_newlocale
3635 # define wcscoll_l emacs_wcscoll_l
3636 # define towlower_l emacs_towlower_l
3638 typedef char const *locale_t;
3640 static locale_t
3641 newlocale (int category_mask, char const *locale, locale_t loc)
3643 return locale;
3646 static void
3647 freelocale (locale_t loc)
3651 static char *
3652 emacs_setlocale (int category, char const *locale)
3654 # ifdef HAVE_SETLOCALE
3655 errno = 0;
3656 char *loc = setlocale (category, locale);
3657 if (loc || errno)
3658 return loc;
3659 errno = EINVAL;
3660 # else
3661 errno = ENOTSUP;
3662 # endif
3663 return 0;
3666 static int
3667 wcscoll_l (wchar_t const *a, wchar_t const *b, locale_t loc)
3669 int result = 0;
3670 char *oldloc = emacs_setlocale (LC_COLLATE, NULL);
3671 int err;
3673 if (! oldloc)
3674 err = errno;
3675 else
3677 USE_SAFE_ALLOCA;
3678 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3679 strcpy (oldcopy, oldloc);
3680 if (! emacs_setlocale (LC_COLLATE, loc))
3681 err = errno;
3682 else
3684 errno = 0;
3685 result = wcscoll (a, b);
3686 err = errno;
3687 if (! emacs_setlocale (LC_COLLATE, oldcopy))
3688 err = errno;
3690 SAFE_FREE ();
3693 errno = err;
3694 return result;
3697 static wint_t
3698 towlower_l (wint_t wc, locale_t loc)
3700 wint_t result = wc;
3701 char *oldloc = emacs_setlocale (LC_CTYPE, NULL);
3703 if (oldloc)
3705 USE_SAFE_ALLOCA;
3706 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3707 strcpy (oldcopy, oldloc);
3708 if (emacs_setlocale (LC_CTYPE, loc))
3710 result = towlower (wc);
3711 emacs_setlocale (LC_COLLATE, oldcopy);
3713 SAFE_FREE ();
3716 return result;
3718 # endif
3721 str_collate (Lisp_Object s1, Lisp_Object s2,
3722 Lisp_Object locale, Lisp_Object ignore_case)
3724 int res, err;
3725 ptrdiff_t len, i, i_byte;
3726 wchar_t *p1, *p2;
3728 USE_SAFE_ALLOCA;
3730 /* Convert byte stream to code points. */
3731 len = SCHARS (s1); i = i_byte = 0;
3732 SAFE_NALLOCA (p1, 1, len + 1);
3733 while (i < len)
3734 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3735 *(p1+len) = 0;
3737 len = SCHARS (s2); i = i_byte = 0;
3738 SAFE_NALLOCA (p2, 1, len + 1);
3739 while (i < len)
3740 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3741 *(p2+len) = 0;
3743 if (STRINGP (locale))
3745 locale_t loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK,
3746 SSDATA (locale), 0);
3747 if (!loc)
3748 error ("Invalid locale %s: %s", SSDATA (locale), strerror (errno));
3750 if (! NILP (ignore_case))
3751 for (int i = 1; i < 3; i++)
3753 wchar_t *p = (i == 1) ? p1 : p2;
3754 for (; *p; p++)
3755 *p = towlower_l (*p, loc);
3758 errno = 0;
3759 res = wcscoll_l (p1, p2, loc);
3760 err = errno;
3761 freelocale (loc);
3763 else
3765 if (! NILP (ignore_case))
3766 for (int i = 1; i < 3; i++)
3768 wchar_t *p = (i == 1) ? p1 : p2;
3769 for (; *p; p++)
3770 *p = towlower (*p);
3773 errno = 0;
3774 res = wcscoll (p1, p2);
3775 err = errno;
3777 # ifndef HAVE_NEWLOCALE
3778 if (err)
3779 error ("Invalid locale or string for collation: %s", strerror (err));
3780 # else
3781 if (err)
3782 error ("Invalid string for collation: %s", strerror (err));
3783 # endif
3785 SAFE_FREE ();
3786 return res;
3788 #endif /* __STDC_ISO_10646__ */
3790 #ifdef WINDOWSNT
3792 str_collate (Lisp_Object s1, Lisp_Object s2,
3793 Lisp_Object locale, Lisp_Object ignore_case)
3796 char *loc = STRINGP (locale) ? SSDATA (locale) : NULL;
3797 int res, err = errno;
3799 errno = 0;
3800 res = w32_compare_strings (SDATA (s1), SDATA (s2), loc, !NILP (ignore_case));
3801 if (errno)
3802 error ("Invalid string for collation: %s", strerror (errno));
3804 errno = err;
3805 return res;
3807 #endif /* WINDOWSNT */