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