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