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