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