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