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