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