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