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