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