]> code.delx.au - gnu-emacs/blob - src/sysdep.c
Prefer GnuTLS when acquiring random seed
[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 /* If HYBRID_GET_CURRENT_DIR_NAME is defined in conf_post.h, then we
23 need the following before including unistd.h, in order to pick up
24 the right prototype for gget_current_dir_name. */
25 #ifdef HYBRID_GET_CURRENT_DIR_NAME
26 #undef get_current_dir_name
27 #define get_current_dir_name gget_current_dir_name
28 #endif
29
30 #include <execinfo.h>
31 #include "sysstdio.h"
32 #ifdef HAVE_PWD_H
33 #include <pwd.h>
34 #include <grp.h>
35 #endif /* HAVE_PWD_H */
36 #include <limits.h>
37 #include <unistd.h>
38
39 #include <c-ctype.h>
40 #include <utimens.h>
41
42 #include "lisp.h"
43 #include "sysselect.h"
44 #include "blockinput.h"
45
46 #if defined DARWIN_OS || defined __FreeBSD__
47 # include <sys/sysctl.h>
48 #endif
49
50 #ifdef __FreeBSD__
51 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
52 'struct frame', so rename it. */
53 # define frame freebsd_frame
54 # include <sys/user.h>
55 # undef frame
56
57 # include <math.h>
58 #endif
59
60 #ifdef WINDOWSNT
61 #define read sys_read
62 #define write sys_write
63 #ifndef STDERR_FILENO
64 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
65 #endif
66 #include <windows.h>
67 #endif /* not WINDOWSNT */
68
69 #include <sys/types.h>
70 #include <sys/stat.h>
71 #include <errno.h>
72
73 /* Get SI_SRPC_DOMAIN, if it is available. */
74 #ifdef HAVE_SYS_SYSTEMINFO_H
75 #include <sys/systeminfo.h>
76 #endif
77
78 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
79 #include "msdos.h"
80 #endif
81
82 #include <sys/param.h>
83 #include <sys/file.h>
84 #include <fcntl.h>
85
86 #include "systty.h"
87 #include "syswait.h"
88
89 #ifdef HAVE_SYS_UTSNAME_H
90 #include <sys/utsname.h>
91 #include <memory.h>
92 #endif /* HAVE_SYS_UTSNAME_H */
93
94 #include "keyboard.h"
95 #include "frame.h"
96 #include "termhooks.h"
97 #include "termchar.h"
98 #include "termopts.h"
99 #include "process.h"
100 #include "cm.h"
101
102 #ifdef HAVE_GNUTLS
103 # include <gnutls/gnutls.h>
104 #endif
105 #if 0x020c00 <= GNUTLS_VERSION_NUMBER
106 # include <gnutls/crypto.h>
107 #else
108 # define gnutls_rnd(level, data, len) (-1)
109 #endif
110
111 #ifdef WINDOWSNT
112 #include <direct.h>
113 /* In process.h which conflicts with the local copy. */
114 #define _P_WAIT 0
115 int _cdecl _spawnlp (int, const char *, const char *, ...);
116 int _cdecl _getpid (void);
117 /* The following is needed for O_CLOEXEC, F_SETFD, FD_CLOEXEC, and
118 several prototypes of functions called below. */
119 #include <sys/socket.h>
120 #endif
121
122 #include "syssignal.h"
123 #include "systime.h"
124
125 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
126 #ifndef ULLONG_MAX
127 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
128 #endif
129
130 /* Declare here, including term.h is problematic on some systems. */
131 extern void tputs (const char *, int, int (*)(int));
132
133 static const int baud_convert[] =
134 {
135 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
136 1800, 2400, 4800, 9600, 19200, 38400
137 };
138
139 #if !defined HAVE_GET_CURRENT_DIR_NAME || defined BROKEN_GET_CURRENT_DIR_NAME \
140 || (defined HYBRID_GET_CURRENT_DIR_NAME)
141 /* Return the current working directory. Returns NULL on errors.
142 Any other returned value must be freed with free. This is used
143 only when get_current_dir_name is not defined on the system. */
144 char *
145 get_current_dir_name (void)
146 {
147 char *buf;
148 char *pwd = getenv ("PWD");
149 struct stat dotstat, pwdstat;
150 /* If PWD is accurate, use it instead of calling getcwd. PWD is
151 sometimes a nicer name, and using it may avoid a fatal error if a
152 parent directory is searchable but not readable. */
153 if (pwd
154 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
155 && stat (pwd, &pwdstat) == 0
156 && stat (".", &dotstat) == 0
157 && dotstat.st_ino == pwdstat.st_ino
158 && dotstat.st_dev == pwdstat.st_dev
159 #ifdef MAXPATHLEN
160 && strlen (pwd) < MAXPATHLEN
161 #endif
162 )
163 {
164 buf = malloc (strlen (pwd) + 1);
165 if (!buf)
166 return NULL;
167 strcpy (buf, pwd);
168 }
169 else
170 {
171 size_t buf_size = 1024;
172 buf = malloc (buf_size);
173 if (!buf)
174 return NULL;
175 for (;;)
176 {
177 if (getcwd (buf, buf_size) == buf)
178 break;
179 if (errno != ERANGE)
180 {
181 int tmp_errno = errno;
182 free (buf);
183 errno = tmp_errno;
184 return NULL;
185 }
186 buf_size *= 2;
187 buf = realloc (buf, buf_size);
188 if (!buf)
189 return NULL;
190 }
191 }
192 return buf;
193 }
194 #endif
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 /* In theory, a more-accurate heuristic can be obtained by using
1635 GNU/Linux pthread_getattr_np along with POSIX pthread_attr_getstack
1636 and pthread_attr_getguardsize to find the location and size of the
1637 guard area. In practice, though, these functions are so hard to
1638 use reliably that they're not worth bothering with. E.g., see:
1639 https://sourceware.org/bugzilla/show_bug.cgi?id=16291
1640 Other operating systems also have problems, e.g., Solaris's
1641 stack_violation function is tailor-made for this problem, but it
1642 doesn't work on Solaris 11.2 x86-64 with a 32-bit executable.
1643
1644 GNU libsigsegv is overkill for Emacs; otherwise it might be a
1645 candidate here. */
1646
1647 if (!siginfo)
1648 return false;
1649
1650 /* The faulting address. */
1651 char *addr = siginfo->si_addr;
1652 if (!addr)
1653 return false;
1654
1655 /* The known top and bottom of the stack. The actual stack may
1656 extend a bit beyond these boundaries. */
1657 char *bot = stack_bottom;
1658 char *top = near_C_stack_top ();
1659
1660 /* Log base 2 of the stack heuristic ratio. This ratio is the size
1661 of the known stack divided by the size of the guard area past the
1662 end of the stack top. The heuristic is that a bad address is
1663 considered to be a stack overflow if it occurs within
1664 stacksize>>LG_STACK_HEURISTIC bytes above the top of the known
1665 stack. This heuristic is not exactly correct but it's good
1666 enough in practice. */
1667 enum { LG_STACK_HEURISTIC = 8 };
1668
1669 if (bot < top)
1670 return 0 <= addr - top && addr - top < (top - bot) >> LG_STACK_HEURISTIC;
1671 else
1672 return 0 <= top - addr && top - addr < (bot - top) >> LG_STACK_HEURISTIC;
1673 }
1674
1675
1676 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1677
1678 static void
1679 handle_sigsegv (int sig, siginfo_t *siginfo, void *arg)
1680 {
1681 /* Hard GC error may lead to stack overflow caused by
1682 too nested calls to mark_object. No way to survive. */
1683 bool fatal = gc_in_progress;
1684
1685 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1686 if (!fatal && !pthread_equal (pthread_self (), main_thread))
1687 fatal = true;
1688 #endif
1689
1690 if (!fatal && stack_overflow (siginfo))
1691 siglongjmp (return_to_command_loop, 1);
1692
1693 /* Otherwise we can't do anything with this. */
1694 deliver_fatal_thread_signal (sig);
1695 }
1696
1697 /* Return true if we have successfully set up SIGSEGV handler on alternate
1698 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1699
1700 static bool
1701 init_sigsegv (void)
1702 {
1703 struct sigaction sa;
1704 stack_t ss;
1705
1706 ss.ss_sp = sigsegv_stack;
1707 ss.ss_size = sizeof (sigsegv_stack);
1708 ss.ss_flags = 0;
1709 if (sigaltstack (&ss, NULL) < 0)
1710 return 0;
1711
1712 sigfillset (&sa.sa_mask);
1713 sa.sa_sigaction = handle_sigsegv;
1714 sa.sa_flags = SA_SIGINFO | SA_ONSTACK | emacs_sigaction_flags ();
1715 return sigaction (SIGSEGV, &sa, NULL) < 0 ? 0 : 1;
1716 }
1717
1718 #else /* not HAVE_STACK_OVERFLOW_HANDLING or WINDOWSNT */
1719
1720 static bool
1721 init_sigsegv (void)
1722 {
1723 return 0;
1724 }
1725
1726 #endif /* HAVE_STACK_OVERFLOW_HANDLING && !WINDOWSNT */
1727
1728 static void
1729 deliver_arith_signal (int sig)
1730 {
1731 deliver_thread_signal (sig, handle_arith_signal);
1732 }
1733
1734 #ifdef SIGDANGER
1735
1736 /* Handler for SIGDANGER. */
1737 static void
1738 handle_danger_signal (int sig)
1739 {
1740 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1741
1742 /* It might be unsafe to call do_auto_save now. */
1743 force_auto_save_soon ();
1744 }
1745
1746 static void
1747 deliver_danger_signal (int sig)
1748 {
1749 deliver_process_signal (sig, handle_danger_signal);
1750 }
1751 #endif
1752
1753 /* Treat SIG as a terminating signal, unless it is already ignored and
1754 we are in --batch mode. Among other things, this makes nohup work. */
1755 static void
1756 maybe_fatal_sig (int sig)
1757 {
1758 bool catch_sig = !noninteractive;
1759 if (!catch_sig)
1760 {
1761 struct sigaction old_action;
1762 sigaction (sig, 0, &old_action);
1763 catch_sig = old_action.sa_handler != SIG_IGN;
1764 }
1765 if (catch_sig)
1766 sigaction (sig, &process_fatal_action, 0);
1767 }
1768
1769 void
1770 init_signals (bool dumping)
1771 {
1772 struct sigaction thread_fatal_action;
1773 struct sigaction action;
1774
1775 sigemptyset (&empty_mask);
1776
1777 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1778 main_thread = pthread_self ();
1779 #endif
1780
1781 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1782 if (! initialized)
1783 {
1784 sys_siglist[SIGABRT] = "Aborted";
1785 # ifdef SIGAIO
1786 sys_siglist[SIGAIO] = "LAN I/O interrupt";
1787 # endif
1788 sys_siglist[SIGALRM] = "Alarm clock";
1789 # ifdef SIGBUS
1790 sys_siglist[SIGBUS] = "Bus error";
1791 # endif
1792 # ifdef SIGCHLD
1793 sys_siglist[SIGCHLD] = "Child status changed";
1794 # endif
1795 # ifdef SIGCONT
1796 sys_siglist[SIGCONT] = "Continued";
1797 # endif
1798 # ifdef SIGDANGER
1799 sys_siglist[SIGDANGER] = "Swap space dangerously low";
1800 # endif
1801 # ifdef SIGDGNOTIFY
1802 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
1803 # endif
1804 # ifdef SIGEMT
1805 sys_siglist[SIGEMT] = "Emulation trap";
1806 # endif
1807 sys_siglist[SIGFPE] = "Arithmetic exception";
1808 # ifdef SIGFREEZE
1809 sys_siglist[SIGFREEZE] = "SIGFREEZE";
1810 # endif
1811 # ifdef SIGGRANT
1812 sys_siglist[SIGGRANT] = "Monitor mode granted";
1813 # endif
1814 sys_siglist[SIGHUP] = "Hangup";
1815 sys_siglist[SIGILL] = "Illegal instruction";
1816 sys_siglist[SIGINT] = "Interrupt";
1817 # ifdef SIGIO
1818 sys_siglist[SIGIO] = "I/O possible";
1819 # endif
1820 # ifdef SIGIOINT
1821 sys_siglist[SIGIOINT] = "I/O intervention required";
1822 # endif
1823 # ifdef SIGIOT
1824 sys_siglist[SIGIOT] = "IOT trap";
1825 # endif
1826 sys_siglist[SIGKILL] = "Killed";
1827 # ifdef SIGLOST
1828 sys_siglist[SIGLOST] = "Resource lost";
1829 # endif
1830 # ifdef SIGLWP
1831 sys_siglist[SIGLWP] = "SIGLWP";
1832 # endif
1833 # ifdef SIGMSG
1834 sys_siglist[SIGMSG] = "Monitor mode data available";
1835 # endif
1836 # ifdef SIGPHONE
1837 sys_siglist[SIGWIND] = "SIGPHONE";
1838 # endif
1839 sys_siglist[SIGPIPE] = "Broken pipe";
1840 # ifdef SIGPOLL
1841 sys_siglist[SIGPOLL] = "Pollable event occurred";
1842 # endif
1843 # ifdef SIGPROF
1844 sys_siglist[SIGPROF] = "Profiling timer expired";
1845 # endif
1846 # ifdef SIGPTY
1847 sys_siglist[SIGPTY] = "PTY I/O interrupt";
1848 # endif
1849 # ifdef SIGPWR
1850 sys_siglist[SIGPWR] = "Power-fail restart";
1851 # endif
1852 sys_siglist[SIGQUIT] = "Quit";
1853 # ifdef SIGRETRACT
1854 sys_siglist[SIGRETRACT] = "Need to relinquish monitor mode";
1855 # endif
1856 # ifdef SIGSAK
1857 sys_siglist[SIGSAK] = "Secure attention";
1858 # endif
1859 sys_siglist[SIGSEGV] = "Segmentation violation";
1860 # ifdef SIGSOUND
1861 sys_siglist[SIGSOUND] = "Sound completed";
1862 # endif
1863 # ifdef SIGSTOP
1864 sys_siglist[SIGSTOP] = "Stopped (signal)";
1865 # endif
1866 # ifdef SIGSTP
1867 sys_siglist[SIGSTP] = "Stopped (user)";
1868 # endif
1869 # ifdef SIGSYS
1870 sys_siglist[SIGSYS] = "Bad argument to system call";
1871 # endif
1872 sys_siglist[SIGTERM] = "Terminated";
1873 # ifdef SIGTHAW
1874 sys_siglist[SIGTHAW] = "SIGTHAW";
1875 # endif
1876 # ifdef SIGTRAP
1877 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
1878 # endif
1879 # ifdef SIGTSTP
1880 sys_siglist[SIGTSTP] = "Stopped (user)";
1881 # endif
1882 # ifdef SIGTTIN
1883 sys_siglist[SIGTTIN] = "Stopped (tty input)";
1884 # endif
1885 # ifdef SIGTTOU
1886 sys_siglist[SIGTTOU] = "Stopped (tty output)";
1887 # endif
1888 # ifdef SIGURG
1889 sys_siglist[SIGURG] = "Urgent I/O condition";
1890 # endif
1891 # ifdef SIGUSR1
1892 sys_siglist[SIGUSR1] = "User defined signal 1";
1893 # endif
1894 # ifdef SIGUSR2
1895 sys_siglist[SIGUSR2] = "User defined signal 2";
1896 # endif
1897 # ifdef SIGVTALRM
1898 sys_siglist[SIGVTALRM] = "Virtual timer expired";
1899 # endif
1900 # ifdef SIGWAITING
1901 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
1902 # endif
1903 # ifdef SIGWINCH
1904 sys_siglist[SIGWINCH] = "Window size changed";
1905 # endif
1906 # ifdef SIGWIND
1907 sys_siglist[SIGWIND] = "SIGWIND";
1908 # endif
1909 # ifdef SIGXCPU
1910 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
1911 # endif
1912 # ifdef SIGXFSZ
1913 sys_siglist[SIGXFSZ] = "File size limit exceeded";
1914 # endif
1915 }
1916 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1917
1918 /* Don't alter signal handlers if dumping. On some machines,
1919 changing signal handlers sets static data that would make signals
1920 fail to work right when the dumped Emacs is run. */
1921 if (dumping)
1922 return;
1923
1924 sigfillset (&process_fatal_action.sa_mask);
1925 process_fatal_action.sa_handler = deliver_fatal_signal;
1926 process_fatal_action.sa_flags = emacs_sigaction_flags ();
1927
1928 sigfillset (&thread_fatal_action.sa_mask);
1929 thread_fatal_action.sa_handler = deliver_fatal_thread_signal;
1930 thread_fatal_action.sa_flags = process_fatal_action.sa_flags;
1931
1932 /* SIGINT may need special treatment on MS-Windows. See
1933 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1934 Please update the doc of kill-emacs, kill-emacs-hook, and
1935 NEWS if you change this. */
1936
1937 maybe_fatal_sig (SIGHUP);
1938 maybe_fatal_sig (SIGINT);
1939 maybe_fatal_sig (SIGTERM);
1940
1941 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
1942 However, in batch mode leave SIGPIPE alone, as that causes Emacs
1943 to behave more like typical batch applications do. */
1944 if (! noninteractive)
1945 signal (SIGPIPE, SIG_IGN);
1946
1947 sigaction (SIGQUIT, &process_fatal_action, 0);
1948 sigaction (SIGILL, &thread_fatal_action, 0);
1949 sigaction (SIGTRAP, &thread_fatal_action, 0);
1950
1951 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
1952 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
1953 interpreter's floating point operations, so treat SIGFPE as an
1954 arith-error if it arises in the main thread. */
1955 if (IEEE_FLOATING_POINT)
1956 sigaction (SIGFPE, &thread_fatal_action, 0);
1957 else
1958 {
1959 emacs_sigaction_init (&action, deliver_arith_signal);
1960 sigaction (SIGFPE, &action, 0);
1961 }
1962
1963 #ifdef SIGUSR1
1964 add_user_signal (SIGUSR1, "sigusr1");
1965 #endif
1966 #ifdef SIGUSR2
1967 add_user_signal (SIGUSR2, "sigusr2");
1968 #endif
1969 sigaction (SIGABRT, &thread_fatal_action, 0);
1970 #ifdef SIGPRE
1971 sigaction (SIGPRE, &thread_fatal_action, 0);
1972 #endif
1973 #ifdef SIGORE
1974 sigaction (SIGORE, &thread_fatal_action, 0);
1975 #endif
1976 #ifdef SIGUME
1977 sigaction (SIGUME, &thread_fatal_action, 0);
1978 #endif
1979 #ifdef SIGDLK
1980 sigaction (SIGDLK, &process_fatal_action, 0);
1981 #endif
1982 #ifdef SIGCPULIM
1983 sigaction (SIGCPULIM, &process_fatal_action, 0);
1984 #endif
1985 #ifdef SIGIOT
1986 sigaction (SIGIOT, &thread_fatal_action, 0);
1987 #endif
1988 #ifdef SIGEMT
1989 sigaction (SIGEMT, &thread_fatal_action, 0);
1990 #endif
1991 #ifdef SIGBUS
1992 sigaction (SIGBUS, &thread_fatal_action, 0);
1993 #endif
1994 if (!init_sigsegv ())
1995 sigaction (SIGSEGV, &thread_fatal_action, 0);
1996 #ifdef SIGSYS
1997 sigaction (SIGSYS, &thread_fatal_action, 0);
1998 #endif
1999 sigaction (SIGTERM, &process_fatal_action, 0);
2000 #ifdef SIGPROF
2001 signal (SIGPROF, SIG_IGN);
2002 #endif
2003 #ifdef SIGVTALRM
2004 sigaction (SIGVTALRM, &process_fatal_action, 0);
2005 #endif
2006 #ifdef SIGXCPU
2007 sigaction (SIGXCPU, &process_fatal_action, 0);
2008 #endif
2009 #ifdef SIGXFSZ
2010 sigaction (SIGXFSZ, &process_fatal_action, 0);
2011 #endif
2012
2013 #ifdef SIGDANGER
2014 /* This just means available memory is getting low. */
2015 emacs_sigaction_init (&action, deliver_danger_signal);
2016 sigaction (SIGDANGER, &action, 0);
2017 #endif
2018
2019 /* AIX-specific signals. */
2020 #ifdef SIGGRANT
2021 sigaction (SIGGRANT, &process_fatal_action, 0);
2022 #endif
2023 #ifdef SIGMIGRATE
2024 sigaction (SIGMIGRATE, &process_fatal_action, 0);
2025 #endif
2026 #ifdef SIGMSG
2027 sigaction (SIGMSG, &process_fatal_action, 0);
2028 #endif
2029 #ifdef SIGRETRACT
2030 sigaction (SIGRETRACT, &process_fatal_action, 0);
2031 #endif
2032 #ifdef SIGSAK
2033 sigaction (SIGSAK, &process_fatal_action, 0);
2034 #endif
2035 #ifdef SIGSOUND
2036 sigaction (SIGSOUND, &process_fatal_action, 0);
2037 #endif
2038 #ifdef SIGTALRM
2039 sigaction (SIGTALRM, &thread_fatal_action, 0);
2040 #endif
2041 }
2042 \f
2043 #ifndef HAVE_RANDOM
2044 #ifdef random
2045 #define HAVE_RANDOM
2046 #endif
2047 #endif
2048
2049 /* Figure out how many bits the system's random number generator uses.
2050 `random' and `lrand48' are assumed to return 31 usable bits.
2051 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2052 so we'll shift it and treat it like the 15-bit USG `rand'. */
2053
2054 #ifndef RAND_BITS
2055 # ifdef HAVE_RANDOM
2056 # define RAND_BITS 31
2057 # else /* !HAVE_RANDOM */
2058 # ifdef HAVE_LRAND48
2059 # define RAND_BITS 31
2060 # define random lrand48
2061 # else /* !HAVE_LRAND48 */
2062 # define RAND_BITS 15
2063 # if RAND_MAX == 32767
2064 # define random rand
2065 # else /* RAND_MAX != 32767 */
2066 # if RAND_MAX == 2147483647
2067 # define random() (rand () >> 16)
2068 # else /* RAND_MAX != 2147483647 */
2069 # ifdef USG
2070 # define random rand
2071 # else
2072 # define random() (rand () >> 16)
2073 # endif /* !USG */
2074 # endif /* RAND_MAX != 2147483647 */
2075 # endif /* RAND_MAX != 32767 */
2076 # endif /* !HAVE_LRAND48 */
2077 # endif /* !HAVE_RANDOM */
2078 #endif /* !RAND_BITS */
2079
2080 #ifdef HAVE_RANDOM
2081 typedef unsigned int random_seed;
2082 static void set_random_seed (random_seed arg) { srandom (arg); }
2083 #elif defined HAVE_LRAND48
2084 /* Although srand48 uses a long seed, this is unsigned long to avoid
2085 undefined behavior on signed integer overflow in init_random. */
2086 typedef unsigned long int random_seed;
2087 static void set_random_seed (random_seed arg) { srand48 (arg); }
2088 #else
2089 typedef unsigned int random_seed;
2090 static void set_random_seed (random_seed arg) { srand (arg); }
2091 #endif
2092
2093 void
2094 seed_random (void *seed, ptrdiff_t seed_size)
2095 {
2096 random_seed arg = 0;
2097 unsigned char *argp = (unsigned char *) &arg;
2098 unsigned char *seedp = seed;
2099 for (ptrdiff_t i = 0; i < seed_size; i++)
2100 argp[i % sizeof arg] ^= seedp[i];
2101 set_random_seed (arg);
2102 }
2103
2104 void
2105 init_random (void)
2106 {
2107 random_seed v;
2108 if (gnutls_rnd (GNUTLS_RND_NONCE, &v, sizeof v) != 0)
2109 {
2110 bool success = false;
2111 #ifndef WINDOWSNT
2112 int fd = emacs_open ("/dev/urandom", O_RDONLY | O_BINARY, 0);
2113 if (0 <= fd)
2114 {
2115 success = emacs_read (fd, &v, sizeof v) == sizeof v;
2116 emacs_close (fd);
2117 }
2118 #else
2119 success = w32_init_random (&v, sizeof v) == 0;
2120 #endif
2121 if (! success)
2122 {
2123 /* Fall back to current time value + PID. */
2124 struct timespec t = current_timespec ();
2125 v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2126 }
2127 }
2128 set_random_seed (v);
2129 }
2130
2131 /*
2132 * Return a nonnegative random integer out of whatever we've got.
2133 * It contains enough bits to make a random (signed) Emacs fixnum.
2134 * This suffices even for a 64-bit architecture with a 15-bit rand.
2135 */
2136 EMACS_INT
2137 get_random (void)
2138 {
2139 EMACS_UINT val = 0;
2140 int i;
2141 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2142 val = (random () ^ (val << RAND_BITS)
2143 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2144 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2145 return val & INTMASK;
2146 }
2147
2148 #ifndef HAVE_SNPRINTF
2149 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2150 int
2151 snprintf (char *buf, size_t bufsize, char const *format, ...)
2152 {
2153 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2154 ptrdiff_t nbytes = size - 1;
2155 va_list ap;
2156
2157 if (size)
2158 {
2159 va_start (ap, format);
2160 nbytes = doprnt (buf, size, format, 0, ap);
2161 va_end (ap);
2162 }
2163
2164 if (nbytes == size - 1)
2165 {
2166 /* Calculate the length of the string that would have been created
2167 had the buffer been large enough. */
2168 char stackbuf[4000];
2169 char *b = stackbuf;
2170 ptrdiff_t bsize = sizeof stackbuf;
2171 va_start (ap, format);
2172 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2173 va_end (ap);
2174 if (b != stackbuf)
2175 xfree (b);
2176 }
2177
2178 if (INT_MAX < nbytes)
2179 {
2180 #ifdef EOVERFLOW
2181 errno = EOVERFLOW;
2182 #else
2183 errno = EDOM;
2184 #endif
2185 return -1;
2186 }
2187 return nbytes;
2188 }
2189 #endif
2190 \f
2191 /* If a backtrace is available, output the top lines of it to stderr.
2192 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2193 This function may be called from a signal handler, so it should
2194 not invoke async-unsafe functions like malloc.
2195
2196 If BACKTRACE_LIMIT is -1, initialize tables that 'backtrace' uses
2197 but do not output anything. This avoids some problems that can
2198 otherwise occur if the malloc arena is corrupted before 'backtrace'
2199 is called, since 'backtrace' may call malloc if the tables are not
2200 initialized.
2201
2202 If the static variable THREAD_BACKTRACE_NPOINTERS is nonzero, a
2203 fatal error has occurred in some other thread; generate a thread
2204 backtrace instead, ignoring BACKTRACE_LIMIT. */
2205 void
2206 emacs_backtrace (int backtrace_limit)
2207 {
2208 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2209 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2210 void *buffer;
2211 int npointers;
2212
2213 if (thread_backtrace_npointers)
2214 {
2215 buffer = thread_backtrace_buffer;
2216 npointers = thread_backtrace_npointers;
2217 }
2218 else
2219 {
2220 buffer = main_backtrace_buffer;
2221
2222 /* Work around 'backtrace' bug; see Bug#19959 and glibc bug#18084. */
2223 if (bounded_limit < 0)
2224 {
2225 backtrace (buffer, 1);
2226 return;
2227 }
2228
2229 npointers = backtrace (buffer, bounded_limit + 1);
2230 }
2231
2232 if (npointers)
2233 {
2234 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2235 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2236 if (bounded_limit < npointers)
2237 emacs_write (STDERR_FILENO, "...\n", 4);
2238 }
2239 }
2240 \f
2241 #ifndef HAVE_NTGUI
2242 void
2243 emacs_abort (void)
2244 {
2245 terminate_due_to_signal (SIGABRT, 40);
2246 }
2247 #endif
2248
2249 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2250 Use binary I/O on systems that care about text vs binary I/O.
2251 Arrange for subprograms to not inherit the file descriptor.
2252 Prefer a method that is multithread-safe, if available.
2253 Do not fail merely because the open was interrupted by a signal.
2254 Allow the user to quit. */
2255
2256 int
2257 emacs_open (const char *file, int oflags, int mode)
2258 {
2259 int fd;
2260 if (! (oflags & O_TEXT))
2261 oflags |= O_BINARY;
2262 oflags |= O_CLOEXEC;
2263 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2264 QUIT;
2265 if (! O_CLOEXEC && 0 <= fd)
2266 fcntl (fd, F_SETFD, FD_CLOEXEC);
2267 return fd;
2268 }
2269
2270 /* Open FILE as a stream for Emacs use, with mode MODE.
2271 Act like emacs_open with respect to threads, signals, and quits. */
2272
2273 FILE *
2274 emacs_fopen (char const *file, char const *mode)
2275 {
2276 int fd, omode, oflags;
2277 int bflag = 0;
2278 char const *m = mode;
2279
2280 switch (*m++)
2281 {
2282 case 'r': omode = O_RDONLY; oflags = 0; break;
2283 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2284 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2285 default: emacs_abort ();
2286 }
2287
2288 while (*m)
2289 switch (*m++)
2290 {
2291 case '+': omode = O_RDWR; break;
2292 case 'b': bflag = O_BINARY; break;
2293 case 't': bflag = O_TEXT; break;
2294 default: /* Ignore. */ break;
2295 }
2296
2297 fd = emacs_open (file, omode | oflags | bflag, 0666);
2298 return fd < 0 ? 0 : fdopen (fd, mode);
2299 }
2300
2301 /* Create a pipe for Emacs use. */
2302
2303 int
2304 emacs_pipe (int fd[2])
2305 {
2306 #ifdef MSDOS
2307 return pipe (fd);
2308 #else /* !MSDOS */
2309 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2310 if (! O_CLOEXEC && result == 0)
2311 {
2312 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2313 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2314 }
2315 return result;
2316 #endif /* !MSDOS */
2317 }
2318
2319 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2320 For the background behind this mess, please see Austin Group defect 529
2321 <http://austingroupbugs.net/view.php?id=529>. */
2322
2323 #ifndef POSIX_CLOSE_RESTART
2324 # define POSIX_CLOSE_RESTART 1
2325 static int
2326 posix_close (int fd, int flag)
2327 {
2328 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2329 eassert (flag == POSIX_CLOSE_RESTART);
2330
2331 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2332 on a system that does not define POSIX_CLOSE_RESTART.
2333
2334 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2335 closed, and retrying the close could inadvertently close a file
2336 descriptor allocated by some other thread. In other systems
2337 (e.g., HP/UX) FD is not closed. And in still other systems
2338 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2339 multithreaded program there can be no way to tell.
2340
2341 So, in this case, pretend that the close succeeded. This works
2342 well on systems like GNU/Linux that close FD. Although it may
2343 leak a file descriptor on other systems, the leak is unlikely and
2344 it's better to leak than to close a random victim. */
2345 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2346 }
2347 #endif
2348
2349 /* Close FD, retrying if interrupted. If successful, return 0;
2350 otherwise, return -1 and set errno to a non-EINTR value. Consider
2351 an EINPROGRESS error to be successful, as that's merely a signal
2352 arriving. FD is always closed when this function returns, even
2353 when it returns -1.
2354
2355 Do not call this function if FD is nonnegative and might already be closed,
2356 as that might close an innocent victim opened by some other thread. */
2357
2358 int
2359 emacs_close (int fd)
2360 {
2361 while (1)
2362 {
2363 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2364 if (r == 0)
2365 return r;
2366 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2367 {
2368 eassert (errno != EBADF || fd < 0);
2369 return errno == EINPROGRESS ? 0 : r;
2370 }
2371 }
2372 }
2373
2374 /* Maximum number of bytes to read or write in a single system call.
2375 This works around a serious bug in Linux kernels before 2.6.16; see
2376 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2377 It's likely to work around similar bugs in other operating systems, so do it
2378 on all platforms. Round INT_MAX down to a page size, with the conservative
2379 assumption that page sizes are at most 2**18 bytes (any kernel with a
2380 page size larger than that shouldn't have the bug). */
2381 #ifndef MAX_RW_COUNT
2382 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2383 #endif
2384
2385 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2386 Return the number of bytes read, which might be less than NBYTE.
2387 On error, set errno and return -1. */
2388 ptrdiff_t
2389 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2390 {
2391 ssize_t rtnval;
2392
2393 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2394 passes a size that large to emacs_read. */
2395
2396 while ((rtnval = read (fildes, buf, nbyte)) == -1
2397 && (errno == EINTR))
2398 QUIT;
2399 return (rtnval);
2400 }
2401
2402 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2403 or if a partial write occurs. If interrupted, process pending
2404 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2405 errno if this is less than NBYTE. */
2406 static ptrdiff_t
2407 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2408 bool process_signals)
2409 {
2410 ptrdiff_t bytes_written = 0;
2411
2412 while (nbyte > 0)
2413 {
2414 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2415
2416 if (n < 0)
2417 {
2418 if (errno == EINTR)
2419 {
2420 /* I originally used `QUIT' but that might cause files to
2421 be truncated if you hit C-g in the middle of it. --Stef */
2422 if (process_signals && pending_signals)
2423 process_pending_signals ();
2424 continue;
2425 }
2426 else
2427 break;
2428 }
2429
2430 buf += n;
2431 nbyte -= n;
2432 bytes_written += n;
2433 }
2434
2435 return bytes_written;
2436 }
2437
2438 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2439 interrupted or if a partial write occurs. Return the number of
2440 bytes written, setting errno if this is less than NBYTE. */
2441 ptrdiff_t
2442 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2443 {
2444 return emacs_full_write (fildes, buf, nbyte, 0);
2445 }
2446
2447 /* Like emacs_write, but also process pending signals if interrupted. */
2448 ptrdiff_t
2449 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2450 {
2451 return emacs_full_write (fildes, buf, nbyte, 1);
2452 }
2453
2454 /* Write a diagnostic to standard error that contains MESSAGE and a
2455 string derived from errno. Preserve errno. Do not buffer stderr.
2456 Do not process pending signals if interrupted. */
2457 void
2458 emacs_perror (char const *message)
2459 {
2460 int err = errno;
2461 char const *error_string = strerror (err);
2462 char const *command = (initial_argv && initial_argv[0]
2463 ? initial_argv[0] : "emacs");
2464 /* Write it out all at once, if it's short; this is less likely to
2465 be interleaved with other output. */
2466 char buf[BUFSIZ];
2467 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2468 command, message, error_string);
2469 if (0 <= nbytes && nbytes < BUFSIZ)
2470 emacs_write (STDERR_FILENO, buf, nbytes);
2471 else
2472 {
2473 emacs_write (STDERR_FILENO, command, strlen (command));
2474 emacs_write (STDERR_FILENO, ": ", 2);
2475 emacs_write (STDERR_FILENO, message, strlen (message));
2476 emacs_write (STDERR_FILENO, ": ", 2);
2477 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2478 emacs_write (STDERR_FILENO, "\n", 1);
2479 }
2480 errno = err;
2481 }
2482 \f
2483 /* Return a struct timeval that is roughly equivalent to T.
2484 Use the least timeval not less than T.
2485 Return an extremal value if the result would overflow. */
2486 struct timeval
2487 make_timeval (struct timespec t)
2488 {
2489 struct timeval tv;
2490 tv.tv_sec = t.tv_sec;
2491 tv.tv_usec = t.tv_nsec / 1000;
2492
2493 if (t.tv_nsec % 1000 != 0)
2494 {
2495 if (tv.tv_usec < 999999)
2496 tv.tv_usec++;
2497 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2498 {
2499 tv.tv_sec++;
2500 tv.tv_usec = 0;
2501 }
2502 }
2503
2504 return tv;
2505 }
2506
2507 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2508 ATIME and MTIME, respectively.
2509 FD must be either negative -- in which case it is ignored --
2510 or a file descriptor that is open on FILE.
2511 If FD is nonnegative, then FILE can be NULL. */
2512 int
2513 set_file_times (int fd, const char *filename,
2514 struct timespec atime, struct timespec mtime)
2515 {
2516 struct timespec timespec[2];
2517 timespec[0] = atime;
2518 timespec[1] = mtime;
2519 return fdutimens (fd, filename, timespec);
2520 }
2521 \f
2522 /* Like strsignal, except async-signal-safe, and this function typically
2523 returns a string in the C locale rather than the current locale. */
2524 char const *
2525 safe_strsignal (int code)
2526 {
2527 char const *signame = 0;
2528
2529 if (0 <= code && code < sys_siglist_entries)
2530 signame = sys_siglist[code];
2531 if (! signame)
2532 signame = "Unknown signal";
2533
2534 return signame;
2535 }
2536 \f
2537 #ifndef DOS_NT
2538 /* For make-serial-process */
2539 int
2540 serial_open (Lisp_Object port)
2541 {
2542 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2543 if (fd < 0)
2544 report_file_error ("Opening serial port", port);
2545 #ifdef TIOCEXCL
2546 ioctl (fd, TIOCEXCL, (char *) 0);
2547 #endif
2548
2549 return fd;
2550 }
2551
2552 #if !defined (HAVE_CFMAKERAW)
2553 /* Workaround for targets which are missing cfmakeraw. */
2554 /* Pasted from man page. */
2555 static void
2556 cfmakeraw (struct termios *termios_p)
2557 {
2558 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2559 termios_p->c_oflag &= ~OPOST;
2560 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2561 termios_p->c_cflag &= ~(CSIZE|PARENB);
2562 termios_p->c_cflag |= CS8;
2563 }
2564 #endif /* !defined (HAVE_CFMAKERAW */
2565
2566 #if !defined (HAVE_CFSETSPEED)
2567 /* Workaround for targets which are missing cfsetspeed. */
2568 static int
2569 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2570 {
2571 return (cfsetispeed (termios_p, vitesse)
2572 + cfsetospeed (termios_p, vitesse));
2573 }
2574 #endif
2575
2576 /* For serial-process-configure */
2577 void
2578 serial_configure (struct Lisp_Process *p,
2579 Lisp_Object contact)
2580 {
2581 Lisp_Object childp2 = Qnil;
2582 Lisp_Object tem = Qnil;
2583 struct termios attr;
2584 int err;
2585 char summary[4] = "???"; /* This usually becomes "8N1". */
2586
2587 childp2 = Fcopy_sequence (p->childp);
2588
2589 /* Read port attributes and prepare default configuration. */
2590 err = tcgetattr (p->outfd, &attr);
2591 if (err != 0)
2592 report_file_error ("Failed tcgetattr", Qnil);
2593 cfmakeraw (&attr);
2594 #if defined (CLOCAL)
2595 attr.c_cflag |= CLOCAL;
2596 #endif
2597 #if defined (CREAD)
2598 attr.c_cflag |= CREAD;
2599 #endif
2600
2601 /* Configure speed. */
2602 if (!NILP (Fplist_member (contact, QCspeed)))
2603 tem = Fplist_get (contact, QCspeed);
2604 else
2605 tem = Fplist_get (p->childp, QCspeed);
2606 CHECK_NUMBER (tem);
2607 err = cfsetspeed (&attr, XINT (tem));
2608 if (err != 0)
2609 report_file_error ("Failed cfsetspeed", tem);
2610 childp2 = Fplist_put (childp2, QCspeed, tem);
2611
2612 /* Configure bytesize. */
2613 if (!NILP (Fplist_member (contact, QCbytesize)))
2614 tem = Fplist_get (contact, QCbytesize);
2615 else
2616 tem = Fplist_get (p->childp, QCbytesize);
2617 if (NILP (tem))
2618 tem = make_number (8);
2619 CHECK_NUMBER (tem);
2620 if (XINT (tem) != 7 && XINT (tem) != 8)
2621 error (":bytesize must be nil (8), 7, or 8");
2622 summary[0] = XINT (tem) + '0';
2623 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2624 attr.c_cflag &= ~CSIZE;
2625 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2626 #else
2627 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2628 if (XINT (tem) != 8)
2629 error ("Bytesize cannot be changed");
2630 #endif
2631 childp2 = Fplist_put (childp2, QCbytesize, tem);
2632
2633 /* Configure parity. */
2634 if (!NILP (Fplist_member (contact, QCparity)))
2635 tem = Fplist_get (contact, QCparity);
2636 else
2637 tem = Fplist_get (p->childp, QCparity);
2638 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2639 error (":parity must be nil (no parity), `even', or `odd'");
2640 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2641 attr.c_cflag &= ~(PARENB | PARODD);
2642 attr.c_iflag &= ~(IGNPAR | INPCK);
2643 if (NILP (tem))
2644 {
2645 summary[1] = 'N';
2646 }
2647 else if (EQ (tem, Qeven))
2648 {
2649 summary[1] = 'E';
2650 attr.c_cflag |= PARENB;
2651 attr.c_iflag |= (IGNPAR | INPCK);
2652 }
2653 else if (EQ (tem, Qodd))
2654 {
2655 summary[1] = 'O';
2656 attr.c_cflag |= (PARENB | PARODD);
2657 attr.c_iflag |= (IGNPAR | INPCK);
2658 }
2659 #else
2660 /* Don't error on no parity, which should be set by cfmakeraw. */
2661 if (!NILP (tem))
2662 error ("Parity cannot be configured");
2663 #endif
2664 childp2 = Fplist_put (childp2, QCparity, tem);
2665
2666 /* Configure stopbits. */
2667 if (!NILP (Fplist_member (contact, QCstopbits)))
2668 tem = Fplist_get (contact, QCstopbits);
2669 else
2670 tem = Fplist_get (p->childp, QCstopbits);
2671 if (NILP (tem))
2672 tem = make_number (1);
2673 CHECK_NUMBER (tem);
2674 if (XINT (tem) != 1 && XINT (tem) != 2)
2675 error (":stopbits must be nil (1 stopbit), 1, or 2");
2676 summary[2] = XINT (tem) + '0';
2677 #if defined (CSTOPB)
2678 attr.c_cflag &= ~CSTOPB;
2679 if (XINT (tem) == 2)
2680 attr.c_cflag |= CSTOPB;
2681 #else
2682 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2683 if (XINT (tem) != 1)
2684 error ("Stopbits cannot be configured");
2685 #endif
2686 childp2 = Fplist_put (childp2, QCstopbits, tem);
2687
2688 /* Configure flowcontrol. */
2689 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2690 tem = Fplist_get (contact, QCflowcontrol);
2691 else
2692 tem = Fplist_get (p->childp, QCflowcontrol);
2693 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2694 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2695 #if defined (CRTSCTS)
2696 attr.c_cflag &= ~CRTSCTS;
2697 #endif
2698 #if defined (CNEW_RTSCTS)
2699 attr.c_cflag &= ~CNEW_RTSCTS;
2700 #endif
2701 #if defined (IXON) && defined (IXOFF)
2702 attr.c_iflag &= ~(IXON | IXOFF);
2703 #endif
2704 if (NILP (tem))
2705 {
2706 /* Already configured. */
2707 }
2708 else if (EQ (tem, Qhw))
2709 {
2710 #if defined (CRTSCTS)
2711 attr.c_cflag |= CRTSCTS;
2712 #elif defined (CNEW_RTSCTS)
2713 attr.c_cflag |= CNEW_RTSCTS;
2714 #else
2715 error ("Hardware flowcontrol (RTS/CTS) not supported");
2716 #endif
2717 }
2718 else if (EQ (tem, Qsw))
2719 {
2720 #if defined (IXON) && defined (IXOFF)
2721 attr.c_iflag |= (IXON | IXOFF);
2722 #else
2723 error ("Software flowcontrol (XON/XOFF) not supported");
2724 #endif
2725 }
2726 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2727
2728 /* Activate configuration. */
2729 err = tcsetattr (p->outfd, TCSANOW, &attr);
2730 if (err != 0)
2731 report_file_error ("Failed tcsetattr", Qnil);
2732
2733 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2734 pset_childp (p, childp2);
2735 }
2736 #endif /* not DOS_NT */
2737 \f
2738 /* System depended enumeration of and access to system processes a-la ps(1). */
2739
2740 #ifdef HAVE_PROCFS
2741
2742 /* Process enumeration and access via /proc. */
2743
2744 Lisp_Object
2745 list_system_processes (void)
2746 {
2747 Lisp_Object procdir, match, proclist, next;
2748 Lisp_Object tail;
2749
2750 /* For every process on the system, there's a directory in the
2751 "/proc" pseudo-directory whose name is the numeric ID of that
2752 process. */
2753 procdir = build_string ("/proc");
2754 match = build_string ("[0-9]+");
2755 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2756
2757 /* `proclist' gives process IDs as strings. Destructively convert
2758 each string into a number. */
2759 for (tail = proclist; CONSP (tail); tail = next)
2760 {
2761 next = XCDR (tail);
2762 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2763 }
2764
2765 /* directory_files_internal returns the files in reverse order; undo
2766 that. */
2767 proclist = Fnreverse (proclist);
2768 return proclist;
2769 }
2770
2771 #elif defined DARWIN_OS || defined __FreeBSD__
2772
2773 Lisp_Object
2774 list_system_processes (void)
2775 {
2776 #ifdef DARWIN_OS
2777 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2778 #else
2779 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2780 #endif
2781 size_t len;
2782 struct kinfo_proc *procs;
2783 size_t i;
2784
2785 Lisp_Object proclist = Qnil;
2786
2787 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2788 return proclist;
2789
2790 procs = xmalloc (len);
2791 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2792 {
2793 xfree (procs);
2794 return proclist;
2795 }
2796
2797 len /= sizeof (struct kinfo_proc);
2798 for (i = 0; i < len; i++)
2799 {
2800 #ifdef DARWIN_OS
2801 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2802 #else
2803 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2804 #endif
2805 }
2806
2807 xfree (procs);
2808
2809 return proclist;
2810 }
2811
2812 /* The WINDOWSNT implementation is in w32.c.
2813 The MSDOS implementation is in dosfns.c. */
2814 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2815
2816 Lisp_Object
2817 list_system_processes (void)
2818 {
2819 return Qnil;
2820 }
2821
2822 #endif /* !defined (WINDOWSNT) */
2823
2824 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2825 static struct timespec
2826 time_from_jiffies (unsigned long long tval, long hz)
2827 {
2828 unsigned long long s = tval / hz;
2829 unsigned long long frac = tval % hz;
2830 int ns;
2831
2832 if (TYPE_MAXIMUM (time_t) < s)
2833 time_overflow ();
2834 if (LONG_MAX - 1 <= ULLONG_MAX / TIMESPEC_RESOLUTION
2835 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2836 ns = frac * TIMESPEC_RESOLUTION / hz;
2837 else
2838 {
2839 /* This is reachable only in the unlikely case that HZ * HZ
2840 exceeds ULLONG_MAX. It calculates an approximation that is
2841 guaranteed to be in range. */
2842 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2843 + (hz % TIMESPEC_RESOLUTION != 0));
2844 ns = frac / hz_per_ns;
2845 }
2846
2847 return make_timespec (s, ns);
2848 }
2849
2850 static Lisp_Object
2851 ltime_from_jiffies (unsigned long long tval, long hz)
2852 {
2853 struct timespec t = time_from_jiffies (tval, hz);
2854 return make_lisp_time (t);
2855 }
2856
2857 static struct timespec
2858 get_up_time (void)
2859 {
2860 FILE *fup;
2861 struct timespec up = make_timespec (0, 0);
2862
2863 block_input ();
2864 fup = emacs_fopen ("/proc/uptime", "r");
2865
2866 if (fup)
2867 {
2868 unsigned long long upsec, upfrac, idlesec, idlefrac;
2869 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2870
2871 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2872 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2873 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2874 == 4)
2875 {
2876 if (TYPE_MAXIMUM (time_t) < upsec)
2877 {
2878 upsec = TYPE_MAXIMUM (time_t);
2879 upfrac = TIMESPEC_RESOLUTION - 1;
2880 }
2881 else
2882 {
2883 int upfraclen = upfrac_end - upfrac_start;
2884 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2885 upfrac *= 10;
2886 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2887 upfrac /= 10;
2888 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2889 }
2890 up = make_timespec (upsec, upfrac);
2891 }
2892 fclose (fup);
2893 }
2894 unblock_input ();
2895
2896 return up;
2897 }
2898
2899 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2900 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2901
2902 static Lisp_Object
2903 procfs_ttyname (int rdev)
2904 {
2905 FILE *fdev;
2906 char name[PATH_MAX];
2907
2908 block_input ();
2909 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2910 name[0] = 0;
2911
2912 if (fdev)
2913 {
2914 unsigned major;
2915 unsigned long minor_beg, minor_end;
2916 char minor[25]; /* 2 32-bit numbers + dash */
2917 char *endp;
2918
2919 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2920 {
2921 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2922 && major == MAJOR (rdev))
2923 {
2924 minor_beg = strtoul (minor, &endp, 0);
2925 if (*endp == '\0')
2926 minor_end = minor_beg;
2927 else if (*endp == '-')
2928 minor_end = strtoul (endp + 1, &endp, 0);
2929 else
2930 continue;
2931
2932 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2933 {
2934 sprintf (name + strlen (name), "%u", MINOR (rdev));
2935 break;
2936 }
2937 }
2938 }
2939 fclose (fdev);
2940 }
2941 unblock_input ();
2942 return build_string (name);
2943 }
2944
2945 static uintmax_t
2946 procfs_get_total_memory (void)
2947 {
2948 FILE *fmem;
2949 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2950 int c;
2951
2952 block_input ();
2953 fmem = emacs_fopen ("/proc/meminfo", "r");
2954
2955 if (fmem)
2956 {
2957 uintmax_t entry_value;
2958 bool done;
2959
2960 do
2961 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2962 {
2963 case 1:
2964 retval = entry_value;
2965 done = 1;
2966 break;
2967
2968 case 0:
2969 while ((c = getc (fmem)) != EOF && c != '\n')
2970 continue;
2971 done = c == EOF;
2972 break;
2973
2974 default:
2975 done = 1;
2976 break;
2977 }
2978 while (!done);
2979
2980 fclose (fmem);
2981 }
2982 unblock_input ();
2983 return retval;
2984 }
2985
2986 Lisp_Object
2987 system_process_attributes (Lisp_Object pid)
2988 {
2989 char procfn[PATH_MAX], fn[PATH_MAX];
2990 struct stat st;
2991 struct passwd *pw;
2992 struct group *gr;
2993 long clocks_per_sec;
2994 char *procfn_end;
2995 char procbuf[1025], *p, *q;
2996 int fd;
2997 ssize_t nread;
2998 static char const default_cmd[] = "???";
2999 const char *cmd = default_cmd;
3000 int cmdsize = sizeof default_cmd - 1;
3001 char *cmdline = NULL;
3002 ptrdiff_t cmdline_size;
3003 char c;
3004 printmax_t proc_id;
3005 int ppid, pgrp, sess, tty, tpgid, thcount;
3006 uid_t uid;
3007 gid_t gid;
3008 unsigned long long u_time, s_time, cutime, cstime, start;
3009 long priority, niceness, rss;
3010 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3011 struct timespec tnow, tstart, tboot, telapsed, us_time;
3012 double pcpu, pmem;
3013 Lisp_Object attrs = Qnil;
3014 Lisp_Object cmd_str, decoded_cmd;
3015 ptrdiff_t count;
3016
3017 CHECK_NUMBER_OR_FLOAT (pid);
3018 CONS_TO_INTEGER (pid, pid_t, proc_id);
3019 sprintf (procfn, "/proc/%"pMd, proc_id);
3020 if (stat (procfn, &st) < 0)
3021 return attrs;
3022
3023 /* euid egid */
3024 uid = st.st_uid;
3025 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3026 block_input ();
3027 pw = getpwuid (uid);
3028 unblock_input ();
3029 if (pw)
3030 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3031
3032 gid = st.st_gid;
3033 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3034 block_input ();
3035 gr = getgrgid (gid);
3036 unblock_input ();
3037 if (gr)
3038 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3039
3040 count = SPECPDL_INDEX ();
3041 strcpy (fn, procfn);
3042 procfn_end = fn + strlen (fn);
3043 strcpy (procfn_end, "/stat");
3044 fd = emacs_open (fn, O_RDONLY, 0);
3045 if (fd < 0)
3046 nread = 0;
3047 else
3048 {
3049 record_unwind_protect_int (close_file_unwind, fd);
3050 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3051 }
3052 if (0 < nread)
3053 {
3054 procbuf[nread] = '\0';
3055 p = procbuf;
3056
3057 p = strchr (p, '(');
3058 if (p != NULL)
3059 {
3060 q = strrchr (p + 1, ')');
3061 /* comm */
3062 if (q != NULL)
3063 {
3064 cmd = p + 1;
3065 cmdsize = q - cmd;
3066 }
3067 }
3068 else
3069 q = NULL;
3070 /* Command name is encoded in locale-coding-system; decode it. */
3071 cmd_str = make_unibyte_string (cmd, cmdsize);
3072 decoded_cmd = code_convert_string_norecord (cmd_str,
3073 Vlocale_coding_system, 0);
3074 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3075
3076 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3077 utime stime cutime cstime priority nice thcount . start vsize rss */
3078 if (q
3079 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3080 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3081 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3082 &minflt, &cminflt, &majflt, &cmajflt,
3083 &u_time, &s_time, &cutime, &cstime,
3084 &priority, &niceness, &thcount, &start, &vsize, &rss)
3085 == 20))
3086 {
3087 char state_str[2];
3088 state_str[0] = c;
3089 state_str[1] = '\0';
3090 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3091 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3092 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3093 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3094 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3095 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3096 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3097 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3098 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3099 attrs);
3100 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3101 attrs);
3102 clocks_per_sec = sysconf (_SC_CLK_TCK);
3103 if (clocks_per_sec < 0)
3104 clocks_per_sec = 100;
3105 attrs = Fcons (Fcons (Qutime,
3106 ltime_from_jiffies (u_time, clocks_per_sec)),
3107 attrs);
3108 attrs = Fcons (Fcons (Qstime,
3109 ltime_from_jiffies (s_time, clocks_per_sec)),
3110 attrs);
3111 attrs = Fcons (Fcons (Qtime,
3112 ltime_from_jiffies (s_time + u_time,
3113 clocks_per_sec)),
3114 attrs);
3115 attrs = Fcons (Fcons (Qcutime,
3116 ltime_from_jiffies (cutime, clocks_per_sec)),
3117 attrs);
3118 attrs = Fcons (Fcons (Qcstime,
3119 ltime_from_jiffies (cstime, clocks_per_sec)),
3120 attrs);
3121 attrs = Fcons (Fcons (Qctime,
3122 ltime_from_jiffies (cstime + cutime,
3123 clocks_per_sec)),
3124 attrs);
3125 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3126 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3127 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3128 attrs);
3129 tnow = current_timespec ();
3130 telapsed = get_up_time ();
3131 tboot = timespec_sub (tnow, telapsed);
3132 tstart = time_from_jiffies (start, clocks_per_sec);
3133 tstart = timespec_add (tboot, tstart);
3134 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3135 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3136 attrs);
3137 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3138 telapsed = timespec_sub (tnow, tstart);
3139 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3140 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3141 pcpu = timespectod (us_time) / timespectod (telapsed);
3142 if (pcpu > 1.0)
3143 pcpu = 1.0;
3144 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3145 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3146 if (pmem > 100)
3147 pmem = 100;
3148 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3149 }
3150 }
3151 unbind_to (count, Qnil);
3152
3153 /* args */
3154 strcpy (procfn_end, "/cmdline");
3155 fd = emacs_open (fn, O_RDONLY, 0);
3156 if (fd >= 0)
3157 {
3158 ptrdiff_t readsize, nread_incr;
3159 record_unwind_protect_int (close_file_unwind, fd);
3160 record_unwind_protect_nothing ();
3161 nread = cmdline_size = 0;
3162
3163 do
3164 {
3165 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3166 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3167
3168 /* Leave room even if every byte needs escaping below. */
3169 readsize = (cmdline_size >> 1) - nread;
3170
3171 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3172 nread += max (0, nread_incr);
3173 }
3174 while (nread_incr == readsize);
3175
3176 if (nread)
3177 {
3178 /* We don't want trailing null characters. */
3179 for (p = cmdline + nread; cmdline < p && !p[-1]; p--)
3180 continue;
3181
3182 /* Escape-quote whitespace and backslashes. */
3183 q = cmdline + cmdline_size;
3184 while (cmdline < p)
3185 {
3186 char c = *--p;
3187 *--q = c ? c : ' ';
3188 if (c_isspace (c) || c == '\\')
3189 *--q = '\\';
3190 }
3191
3192 nread = cmdline + cmdline_size - q;
3193 }
3194
3195 if (!nread)
3196 {
3197 nread = cmdsize + 2;
3198 cmdline_size = nread + 1;
3199 q = cmdline = xrealloc (cmdline, cmdline_size);
3200 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3201 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3202 }
3203 /* Command line is encoded in locale-coding-system; decode it. */
3204 cmd_str = make_unibyte_string (q, nread);
3205 decoded_cmd = code_convert_string_norecord (cmd_str,
3206 Vlocale_coding_system, 0);
3207 unbind_to (count, Qnil);
3208 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3209 }
3210
3211 return attrs;
3212 }
3213
3214 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3215
3216 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3217 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3218 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3219 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3220 #undef _FILE_OFFSET_BITS
3221 #else
3222 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3223 #endif
3224
3225 #include <procfs.h>
3226
3227 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3228 #define _FILE_OFFSET_BITS 64
3229 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3230 #endif
3231 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3232
3233 Lisp_Object
3234 system_process_attributes (Lisp_Object pid)
3235 {
3236 char procfn[PATH_MAX], fn[PATH_MAX];
3237 struct stat st;
3238 struct passwd *pw;
3239 struct group *gr;
3240 char *procfn_end;
3241 struct psinfo pinfo;
3242 int fd;
3243 ssize_t nread;
3244 printmax_t proc_id;
3245 uid_t uid;
3246 gid_t gid;
3247 Lisp_Object attrs = Qnil;
3248 Lisp_Object decoded_cmd;
3249 ptrdiff_t count;
3250
3251 CHECK_NUMBER_OR_FLOAT (pid);
3252 CONS_TO_INTEGER (pid, pid_t, proc_id);
3253 sprintf (procfn, "/proc/%"pMd, proc_id);
3254 if (stat (procfn, &st) < 0)
3255 return attrs;
3256
3257 /* euid egid */
3258 uid = st.st_uid;
3259 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3260 block_input ();
3261 pw = getpwuid (uid);
3262 unblock_input ();
3263 if (pw)
3264 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3265
3266 gid = st.st_gid;
3267 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3268 block_input ();
3269 gr = getgrgid (gid);
3270 unblock_input ();
3271 if (gr)
3272 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3273
3274 count = SPECPDL_INDEX ();
3275 strcpy (fn, procfn);
3276 procfn_end = fn + strlen (fn);
3277 strcpy (procfn_end, "/psinfo");
3278 fd = emacs_open (fn, O_RDONLY, 0);
3279 if (fd < 0)
3280 nread = 0;
3281 else
3282 {
3283 record_unwind_protect (close_file_unwind, fd);
3284 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3285 }
3286
3287 if (nread == sizeof pinfo)
3288 {
3289 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3290 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3291 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3292
3293 {
3294 char state_str[2];
3295 state_str[0] = pinfo.pr_lwp.pr_sname;
3296 state_str[1] = '\0';
3297 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3298 }
3299
3300 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3301 need to get a string from it. */
3302
3303 /* FIXME: missing: Qtpgid */
3304
3305 /* FIXME: missing:
3306 Qminflt
3307 Qmajflt
3308 Qcminflt
3309 Qcmajflt
3310
3311 Qutime
3312 Qcutime
3313 Qstime
3314 Qcstime
3315 Are they available? */
3316
3317 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3318 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3319 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3320 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3321 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3322 attrs);
3323
3324 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3325 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3326 attrs);
3327 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3328 attrs);
3329
3330 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3331 range 0 .. 2**15, representing 0.0 .. 1.0. */
3332 attrs = Fcons (Fcons (Qpcpu,
3333 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3334 attrs);
3335 attrs = Fcons (Fcons (Qpmem,
3336 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3337 attrs);
3338
3339 decoded_cmd = (code_convert_string_norecord
3340 (build_unibyte_string (pinfo.pr_fname),
3341 Vlocale_coding_system, 0));
3342 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3343 decoded_cmd = (code_convert_string_norecord
3344 (build_unibyte_string (pinfo.pr_psargs),
3345 Vlocale_coding_system, 0));
3346 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3347 }
3348 unbind_to (count, Qnil);
3349 return attrs;
3350 }
3351
3352 #elif defined __FreeBSD__
3353
3354 static struct timespec
3355 timeval_to_timespec (struct timeval t)
3356 {
3357 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3358 }
3359
3360 static Lisp_Object
3361 make_lisp_timeval (struct timeval t)
3362 {
3363 return make_lisp_time (timeval_to_timespec (t));
3364 }
3365
3366 Lisp_Object
3367 system_process_attributes (Lisp_Object pid)
3368 {
3369 int proc_id;
3370 int pagesize = getpagesize ();
3371 unsigned long npages;
3372 int fscale;
3373 struct passwd *pw;
3374 struct group *gr;
3375 char *ttyname;
3376 size_t len;
3377 char args[MAXPATHLEN];
3378 struct timespec t, now;
3379
3380 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3381 struct kinfo_proc proc;
3382 size_t proclen = sizeof proc;
3383
3384 Lisp_Object attrs = Qnil;
3385 Lisp_Object decoded_comm;
3386
3387 CHECK_NUMBER_OR_FLOAT (pid);
3388 CONS_TO_INTEGER (pid, int, proc_id);
3389 mib[3] = proc_id;
3390
3391 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3392 return attrs;
3393
3394 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3395
3396 block_input ();
3397 pw = getpwuid (proc.ki_uid);
3398 unblock_input ();
3399 if (pw)
3400 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3401
3402 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3403
3404 block_input ();
3405 gr = getgrgid (proc.ki_svgid);
3406 unblock_input ();
3407 if (gr)
3408 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3409
3410 decoded_comm = (code_convert_string_norecord
3411 (build_unibyte_string (proc.ki_comm),
3412 Vlocale_coding_system, 0));
3413
3414 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3415 {
3416 char state[2] = {'\0', '\0'};
3417 switch (proc.ki_stat)
3418 {
3419 case SRUN:
3420 state[0] = 'R';
3421 break;
3422
3423 case SSLEEP:
3424 state[0] = 'S';
3425 break;
3426
3427 case SLOCK:
3428 state[0] = 'D';
3429 break;
3430
3431 case SZOMB:
3432 state[0] = 'Z';
3433 break;
3434
3435 case SSTOP:
3436 state[0] = 'T';
3437 break;
3438 }
3439 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3440 }
3441
3442 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3443 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3444 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3445
3446 block_input ();
3447 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3448 unblock_input ();
3449 if (ttyname)
3450 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3451
3452 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3453 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3454 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3455 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3456 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3457
3458 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3459 attrs);
3460 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3461 attrs);
3462 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3463 timeval_to_timespec (proc.ki_rusage.ru_stime));
3464 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3465
3466 attrs = Fcons (Fcons (Qcutime,
3467 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3468 attrs);
3469 attrs = Fcons (Fcons (Qcstime,
3470 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3471 attrs);
3472 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3473 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3474 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3475
3476 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3477 attrs);
3478 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3479 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3480 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3481 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3482 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3483 attrs);
3484
3485 now = current_timespec ();
3486 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3487 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3488
3489 len = sizeof fscale;
3490 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3491 {
3492 double pcpu;
3493 fixpt_t ccpu;
3494 len = sizeof ccpu;
3495 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3496 {
3497 pcpu = (100.0 * proc.ki_pctcpu / fscale
3498 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3499 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3500 }
3501 }
3502
3503 len = sizeof npages;
3504 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3505 {
3506 double pmem = (proc.ki_flag & P_INMEM
3507 ? 100.0 * proc.ki_rssize / npages
3508 : 0);
3509 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3510 }
3511
3512 mib[2] = KERN_PROC_ARGS;
3513 len = MAXPATHLEN;
3514 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3515 {
3516 int i;
3517 for (i = 0; i < len; i++)
3518 {
3519 if (! args[i] && i < len - 1)
3520 args[i] = ' ';
3521 }
3522
3523 decoded_comm =
3524 (code_convert_string_norecord
3525 (build_unibyte_string (args),
3526 Vlocale_coding_system, 0));
3527
3528 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3529 }
3530
3531 return attrs;
3532 }
3533
3534 /* The WINDOWSNT implementation is in w32.c.
3535 The MSDOS implementation is in dosfns.c. */
3536 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3537
3538 Lisp_Object
3539 system_process_attributes (Lisp_Object pid)
3540 {
3541 return Qnil;
3542 }
3543
3544 #endif /* !defined (WINDOWSNT) */
3545 \f
3546 /* Wide character string collation. */
3547
3548 #ifdef __STDC_ISO_10646__
3549 # include <wchar.h>
3550 # include <wctype.h>
3551
3552 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3553 # include <locale.h>
3554 # endif
3555 # ifndef LC_COLLATE
3556 # define LC_COLLATE 0
3557 # endif
3558 # ifndef LC_COLLATE_MASK
3559 # define LC_COLLATE_MASK 0
3560 # endif
3561 # ifndef LC_CTYPE
3562 # define LC_CTYPE 0
3563 # endif
3564 # ifndef LC_CTYPE_MASK
3565 # define LC_CTYPE_MASK 0
3566 # endif
3567
3568 # ifndef HAVE_NEWLOCALE
3569 # undef freelocale
3570 # undef locale_t
3571 # undef newlocale
3572 # undef wcscoll_l
3573 # undef towlower_l
3574 # define freelocale emacs_freelocale
3575 # define locale_t emacs_locale_t
3576 # define newlocale emacs_newlocale
3577 # define wcscoll_l emacs_wcscoll_l
3578 # define towlower_l emacs_towlower_l
3579
3580 typedef char const *locale_t;
3581
3582 static locale_t
3583 newlocale (int category_mask, char const *locale, locale_t loc)
3584 {
3585 return locale;
3586 }
3587
3588 static void
3589 freelocale (locale_t loc)
3590 {
3591 }
3592
3593 static char *
3594 emacs_setlocale (int category, char const *locale)
3595 {
3596 # ifdef HAVE_SETLOCALE
3597 errno = 0;
3598 char *loc = setlocale (category, locale);
3599 if (loc || errno)
3600 return loc;
3601 errno = EINVAL;
3602 # else
3603 errno = ENOTSUP;
3604 # endif
3605 return 0;
3606 }
3607
3608 static int
3609 wcscoll_l (wchar_t const *a, wchar_t const *b, locale_t loc)
3610 {
3611 int result = 0;
3612 char *oldloc = emacs_setlocale (LC_COLLATE, NULL);
3613 int err;
3614
3615 if (! oldloc)
3616 err = errno;
3617 else
3618 {
3619 USE_SAFE_ALLOCA;
3620 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3621 strcpy (oldcopy, oldloc);
3622 if (! emacs_setlocale (LC_COLLATE, loc))
3623 err = errno;
3624 else
3625 {
3626 errno = 0;
3627 result = wcscoll (a, b);
3628 err = errno;
3629 if (! emacs_setlocale (LC_COLLATE, oldcopy))
3630 err = errno;
3631 }
3632 SAFE_FREE ();
3633 }
3634
3635 errno = err;
3636 return result;
3637 }
3638
3639 static wint_t
3640 towlower_l (wint_t wc, locale_t loc)
3641 {
3642 wint_t result = wc;
3643 char *oldloc = emacs_setlocale (LC_CTYPE, NULL);
3644
3645 if (oldloc)
3646 {
3647 USE_SAFE_ALLOCA;
3648 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3649 strcpy (oldcopy, oldloc);
3650 if (emacs_setlocale (LC_CTYPE, loc))
3651 {
3652 result = towlower (wc);
3653 emacs_setlocale (LC_COLLATE, oldcopy);
3654 }
3655 SAFE_FREE ();
3656 }
3657
3658 return result;
3659 }
3660 # endif
3661
3662 int
3663 str_collate (Lisp_Object s1, Lisp_Object s2,
3664 Lisp_Object locale, Lisp_Object ignore_case)
3665 {
3666 int res, err;
3667 ptrdiff_t len, i, i_byte;
3668 wchar_t *p1, *p2;
3669
3670 USE_SAFE_ALLOCA;
3671
3672 /* Convert byte stream to code points. */
3673 len = SCHARS (s1); i = i_byte = 0;
3674 SAFE_NALLOCA (p1, 1, len + 1);
3675 while (i < len)
3676 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3677 *(p1+len) = 0;
3678
3679 len = SCHARS (s2); i = i_byte = 0;
3680 SAFE_NALLOCA (p2, 1, len + 1);
3681 while (i < len)
3682 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3683 *(p2+len) = 0;
3684
3685 if (STRINGP (locale))
3686 {
3687 locale_t loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK,
3688 SSDATA (locale), 0);
3689 if (!loc)
3690 error ("Invalid locale %s: %s", SSDATA (locale), strerror (errno));
3691
3692 if (! NILP (ignore_case))
3693 for (int i = 1; i < 3; i++)
3694 {
3695 wchar_t *p = (i == 1) ? p1 : p2;
3696 for (; *p; p++)
3697 *p = towlower_l (*p, loc);
3698 }
3699
3700 errno = 0;
3701 res = wcscoll_l (p1, p2, loc);
3702 err = errno;
3703 freelocale (loc);
3704 }
3705 else
3706 {
3707 if (! NILP (ignore_case))
3708 for (int i = 1; i < 3; i++)
3709 {
3710 wchar_t *p = (i == 1) ? p1 : p2;
3711 for (; *p; p++)
3712 *p = towlower (*p);
3713 }
3714
3715 errno = 0;
3716 res = wcscoll (p1, p2);
3717 err = errno;
3718 }
3719 # ifndef HAVE_NEWLOCALE
3720 if (err)
3721 error ("Invalid locale or string for collation: %s", strerror (err));
3722 # else
3723 if (err)
3724 error ("Invalid string for collation: %s", strerror (err));
3725 # endif
3726
3727 SAFE_FREE ();
3728 return res;
3729 }
3730 #endif /* __STDC_ISO_10646__ */
3731
3732 #ifdef WINDOWSNT
3733 int
3734 str_collate (Lisp_Object s1, Lisp_Object s2,
3735 Lisp_Object locale, Lisp_Object ignore_case)
3736 {
3737
3738 char *loc = STRINGP (locale) ? SSDATA (locale) : NULL;
3739 int res, err = errno;
3740
3741 errno = 0;
3742 res = w32_compare_strings (SDATA (s1), SDATA (s2), loc, !NILP (ignore_case));
3743 if (errno)
3744 error ("Invalid string for collation: %s", strerror (errno));
3745
3746 errno = err;
3747 return res;
3748 }
3749 #endif /* WINDOWSNT */