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