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