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