]> code.delx.au - gnu-emacs/blob - src/sysdep.c
Don't use GnuTLS before it is initialized
[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 #ifdef HAVE_RANDOM
2072 typedef unsigned int random_seed;
2073 static void set_random_seed (random_seed arg) { srandom (arg); }
2074 #elif defined HAVE_LRAND48
2075 /* Although srand48 uses a long seed, this is unsigned long to avoid
2076 undefined behavior on signed integer overflow in init_random. */
2077 typedef unsigned long int random_seed;
2078 static void set_random_seed (random_seed arg) { srand48 (arg); }
2079 #else
2080 typedef unsigned int random_seed;
2081 static void set_random_seed (random_seed arg) { srand (arg); }
2082 #endif
2083
2084 void
2085 seed_random (void *seed, ptrdiff_t seed_size)
2086 {
2087 random_seed arg = 0;
2088 unsigned char *argp = (unsigned char *) &arg;
2089 unsigned char *seedp = seed;
2090 for (ptrdiff_t i = 0; i < seed_size; i++)
2091 argp[i % sizeof arg] ^= seedp[i];
2092 set_random_seed (arg);
2093 }
2094
2095 void
2096 init_random (void)
2097 {
2098 random_seed v;
2099 bool success = false;
2100 #ifndef WINDOWSNT
2101 int fd = emacs_open ("/dev/urandom", O_RDONLY | O_BINARY, 0);
2102 if (fd >= 0)
2103 {
2104 success = emacs_read (fd, &v, sizeof v) == sizeof v;
2105 emacs_close (fd);
2106 }
2107 #else
2108 success = w32_init_random (&v, sizeof v) == 0;
2109 #endif
2110 if (! success)
2111 {
2112 /* Fall back to current time value + PID. */
2113 struct timespec t = current_timespec ();
2114 v = getpid () ^ t.tv_sec ^ t.tv_nsec;
2115 }
2116 set_random_seed (v);
2117 }
2118
2119 /*
2120 * Return a nonnegative random integer out of whatever we've got.
2121 * It contains enough bits to make a random (signed) Emacs fixnum.
2122 * This suffices even for a 64-bit architecture with a 15-bit rand.
2123 */
2124 EMACS_INT
2125 get_random (void)
2126 {
2127 EMACS_UINT val = 0;
2128 int i;
2129 for (i = 0; i < (FIXNUM_BITS + RAND_BITS - 1) / RAND_BITS; i++)
2130 val = (random () ^ (val << RAND_BITS)
2131 ^ (val >> (BITS_PER_EMACS_INT - RAND_BITS)));
2132 val ^= val >> (BITS_PER_EMACS_INT - FIXNUM_BITS);
2133 return val & INTMASK;
2134 }
2135
2136 #ifndef HAVE_SNPRINTF
2137 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2138 int
2139 snprintf (char *buf, size_t bufsize, char const *format, ...)
2140 {
2141 ptrdiff_t size = min (bufsize, PTRDIFF_MAX);
2142 ptrdiff_t nbytes = size - 1;
2143 va_list ap;
2144
2145 if (size)
2146 {
2147 va_start (ap, format);
2148 nbytes = doprnt (buf, size, format, 0, ap);
2149 va_end (ap);
2150 }
2151
2152 if (nbytes == size - 1)
2153 {
2154 /* Calculate the length of the string that would have been created
2155 had the buffer been large enough. */
2156 char stackbuf[4000];
2157 char *b = stackbuf;
2158 ptrdiff_t bsize = sizeof stackbuf;
2159 va_start (ap, format);
2160 nbytes = evxprintf (&b, &bsize, stackbuf, -1, format, ap);
2161 va_end (ap);
2162 if (b != stackbuf)
2163 xfree (b);
2164 }
2165
2166 if (nbytes > INT_MAX)
2167 {
2168 #ifdef EOVERFLOW
2169 errno = EOVERFLOW;
2170 #else
2171 errno = EDOM;
2172 #endif
2173 return -1;
2174 }
2175 return nbytes;
2176 }
2177 #endif
2178 \f
2179 /* If a backtrace is available, output the top lines of it to stderr.
2180 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2181 This function may be called from a signal handler, so it should
2182 not invoke async-unsafe functions like malloc.
2183
2184 If BACKTRACE_LIMIT is -1, initialize tables that 'backtrace' uses
2185 but do not output anything. This avoids some problems that can
2186 otherwise occur if the malloc arena is corrupted before 'backtrace'
2187 is called, since 'backtrace' may call malloc if the tables are not
2188 initialized.
2189
2190 If the static variable THREAD_BACKTRACE_NPOINTERS is nonzero, a
2191 fatal error has occurred in some other thread; generate a thread
2192 backtrace instead, ignoring BACKTRACE_LIMIT. */
2193 void
2194 emacs_backtrace (int backtrace_limit)
2195 {
2196 void *main_backtrace_buffer[BACKTRACE_LIMIT_MAX + 1];
2197 int bounded_limit = min (backtrace_limit, BACKTRACE_LIMIT_MAX);
2198 void *buffer;
2199 int npointers;
2200
2201 if (thread_backtrace_npointers)
2202 {
2203 buffer = thread_backtrace_buffer;
2204 npointers = thread_backtrace_npointers;
2205 }
2206 else
2207 {
2208 buffer = main_backtrace_buffer;
2209
2210 /* Work around 'backtrace' bug; see Bug#19959 and glibc bug#18084. */
2211 if (bounded_limit < 0)
2212 {
2213 backtrace (buffer, 1);
2214 return;
2215 }
2216
2217 npointers = backtrace (buffer, bounded_limit + 1);
2218 }
2219
2220 if (npointers)
2221 {
2222 emacs_write (STDERR_FILENO, "\nBacktrace:\n", 12);
2223 backtrace_symbols_fd (buffer, npointers, STDERR_FILENO);
2224 if (npointers > bounded_limit)
2225 emacs_write (STDERR_FILENO, "...\n", 4);
2226 }
2227 }
2228 \f
2229 #ifndef HAVE_NTGUI
2230 void
2231 emacs_abort (void)
2232 {
2233 terminate_due_to_signal (SIGABRT, 40);
2234 }
2235 #endif
2236
2237 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2238 Use binary I/O on systems that care about text vs binary I/O.
2239 Arrange for subprograms to not inherit the file descriptor.
2240 Prefer a method that is multithread-safe, if available.
2241 Do not fail merely because the open was interrupted by a signal.
2242 Allow the user to quit. */
2243
2244 int
2245 emacs_open (const char *file, int oflags, int mode)
2246 {
2247 int fd;
2248 if (! (oflags & O_TEXT))
2249 oflags |= O_BINARY;
2250 oflags |= O_CLOEXEC;
2251 while ((fd = open (file, oflags, mode)) < 0 && errno == EINTR)
2252 QUIT;
2253 if (! O_CLOEXEC && fd >= 0)
2254 fcntl (fd, F_SETFD, FD_CLOEXEC);
2255 return fd;
2256 }
2257
2258 /* Open FILE as a stream for Emacs use, with mode MODE.
2259 Act like emacs_open with respect to threads, signals, and quits. */
2260
2261 FILE *
2262 emacs_fopen (char const *file, char const *mode)
2263 {
2264 int fd, omode, oflags;
2265 int bflag = 0;
2266 char const *m = mode;
2267
2268 switch (*m++)
2269 {
2270 case 'r': omode = O_RDONLY; oflags = 0; break;
2271 case 'w': omode = O_WRONLY; oflags = O_CREAT | O_TRUNC; break;
2272 case 'a': omode = O_WRONLY; oflags = O_CREAT | O_APPEND; break;
2273 default: emacs_abort ();
2274 }
2275
2276 while (*m)
2277 switch (*m++)
2278 {
2279 case '+': omode = O_RDWR; break;
2280 case 'b': bflag = O_BINARY; break;
2281 case 't': bflag = O_TEXT; break;
2282 default: /* Ignore. */ break;
2283 }
2284
2285 fd = emacs_open (file, omode | oflags | bflag, 0666);
2286 return fd < 0 ? 0 : fdopen (fd, mode);
2287 }
2288
2289 /* Create a pipe for Emacs use. */
2290
2291 int
2292 emacs_pipe (int fd[2])
2293 {
2294 #ifdef MSDOS
2295 return pipe (fd);
2296 #else /* !MSDOS */
2297 int result = pipe2 (fd, O_BINARY | O_CLOEXEC);
2298 if (! O_CLOEXEC && result == 0)
2299 {
2300 fcntl (fd[0], F_SETFD, FD_CLOEXEC);
2301 fcntl (fd[1], F_SETFD, FD_CLOEXEC);
2302 }
2303 return result;
2304 #endif /* !MSDOS */
2305 }
2306
2307 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2308 For the background behind this mess, please see Austin Group defect 529
2309 <http://austingroupbugs.net/view.php?id=529>. */
2310
2311 #ifndef POSIX_CLOSE_RESTART
2312 # define POSIX_CLOSE_RESTART 1
2313 static int
2314 posix_close (int fd, int flag)
2315 {
2316 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2317 eassert (flag == POSIX_CLOSE_RESTART);
2318
2319 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2320 on a system that does not define POSIX_CLOSE_RESTART.
2321
2322 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2323 closed, and retrying the close could inadvertently close a file
2324 descriptor allocated by some other thread. In other systems
2325 (e.g., HP/UX) FD is not closed. And in still other systems
2326 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2327 multithreaded program there can be no way to tell.
2328
2329 So, in this case, pretend that the close succeeded. This works
2330 well on systems like GNU/Linux that close FD. Although it may
2331 leak a file descriptor on other systems, the leak is unlikely and
2332 it's better to leak than to close a random victim. */
2333 return close (fd) == 0 || errno == EINTR ? 0 : -1;
2334 }
2335 #endif
2336
2337 /* Close FD, retrying if interrupted. If successful, return 0;
2338 otherwise, return -1 and set errno to a non-EINTR value. Consider
2339 an EINPROGRESS error to be successful, as that's merely a signal
2340 arriving. FD is always closed when this function returns, even
2341 when it returns -1.
2342
2343 Do not call this function if FD is nonnegative and might already be closed,
2344 as that might close an innocent victim opened by some other thread. */
2345
2346 int
2347 emacs_close (int fd)
2348 {
2349 while (1)
2350 {
2351 int r = posix_close (fd, POSIX_CLOSE_RESTART);
2352 if (r == 0)
2353 return r;
2354 if (!POSIX_CLOSE_RESTART || errno != EINTR)
2355 {
2356 eassert (errno != EBADF || fd < 0);
2357 return errno == EINPROGRESS ? 0 : r;
2358 }
2359 }
2360 }
2361
2362 /* Maximum number of bytes to read or write in a single system call.
2363 This works around a serious bug in Linux kernels before 2.6.16; see
2364 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2365 It's likely to work around similar bugs in other operating systems, so do it
2366 on all platforms. Round INT_MAX down to a page size, with the conservative
2367 assumption that page sizes are at most 2**18 bytes (any kernel with a
2368 page size larger than that shouldn't have the bug). */
2369 #ifndef MAX_RW_COUNT
2370 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2371 #endif
2372
2373 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2374 Return the number of bytes read, which might be less than NBYTE.
2375 On error, set errno and return -1. */
2376 ptrdiff_t
2377 emacs_read (int fildes, void *buf, ptrdiff_t nbyte)
2378 {
2379 ssize_t rtnval;
2380
2381 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2382 passes a size that large to emacs_read. */
2383
2384 while ((rtnval = read (fildes, buf, nbyte)) == -1
2385 && (errno == EINTR))
2386 QUIT;
2387 return (rtnval);
2388 }
2389
2390 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2391 or if a partial write occurs. If interrupted, process pending
2392 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2393 errno if this is less than NBYTE. */
2394 static ptrdiff_t
2395 emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte,
2396 bool process_signals)
2397 {
2398 ptrdiff_t bytes_written = 0;
2399
2400 while (nbyte > 0)
2401 {
2402 ssize_t n = write (fildes, buf, min (nbyte, MAX_RW_COUNT));
2403
2404 if (n < 0)
2405 {
2406 if (errno == EINTR)
2407 {
2408 /* I originally used `QUIT' but that might cause files to
2409 be truncated if you hit C-g in the middle of it. --Stef */
2410 if (process_signals && pending_signals)
2411 process_pending_signals ();
2412 continue;
2413 }
2414 else
2415 break;
2416 }
2417
2418 buf += n;
2419 nbyte -= n;
2420 bytes_written += n;
2421 }
2422
2423 return bytes_written;
2424 }
2425
2426 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2427 interrupted or if a partial write occurs. Return the number of
2428 bytes written, setting errno if this is less than NBYTE. */
2429 ptrdiff_t
2430 emacs_write (int fildes, void const *buf, ptrdiff_t nbyte)
2431 {
2432 return emacs_full_write (fildes, buf, nbyte, 0);
2433 }
2434
2435 /* Like emacs_write, but also process pending signals if interrupted. */
2436 ptrdiff_t
2437 emacs_write_sig (int fildes, void const *buf, ptrdiff_t nbyte)
2438 {
2439 return emacs_full_write (fildes, buf, nbyte, 1);
2440 }
2441
2442 /* Write a diagnostic to standard error that contains MESSAGE and a
2443 string derived from errno. Preserve errno. Do not buffer stderr.
2444 Do not process pending signals if interrupted. */
2445 void
2446 emacs_perror (char const *message)
2447 {
2448 int err = errno;
2449 char const *error_string = strerror (err);
2450 char const *command = (initial_argv && initial_argv[0]
2451 ? initial_argv[0] : "emacs");
2452 /* Write it out all at once, if it's short; this is less likely to
2453 be interleaved with other output. */
2454 char buf[BUFSIZ];
2455 int nbytes = snprintf (buf, sizeof buf, "%s: %s: %s\n",
2456 command, message, error_string);
2457 if (0 <= nbytes && nbytes < BUFSIZ)
2458 emacs_write (STDERR_FILENO, buf, nbytes);
2459 else
2460 {
2461 emacs_write (STDERR_FILENO, command, strlen (command));
2462 emacs_write (STDERR_FILENO, ": ", 2);
2463 emacs_write (STDERR_FILENO, message, strlen (message));
2464 emacs_write (STDERR_FILENO, ": ", 2);
2465 emacs_write (STDERR_FILENO, error_string, strlen (error_string));
2466 emacs_write (STDERR_FILENO, "\n", 1);
2467 }
2468 errno = err;
2469 }
2470 \f
2471 /* Return a struct timeval that is roughly equivalent to T.
2472 Use the least timeval not less than T.
2473 Return an extremal value if the result would overflow. */
2474 struct timeval
2475 make_timeval (struct timespec t)
2476 {
2477 struct timeval tv;
2478 tv.tv_sec = t.tv_sec;
2479 tv.tv_usec = t.tv_nsec / 1000;
2480
2481 if (t.tv_nsec % 1000 != 0)
2482 {
2483 if (tv.tv_usec < 999999)
2484 tv.tv_usec++;
2485 else if (tv.tv_sec < TYPE_MAXIMUM (time_t))
2486 {
2487 tv.tv_sec++;
2488 tv.tv_usec = 0;
2489 }
2490 }
2491
2492 return tv;
2493 }
2494
2495 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2496 ATIME and MTIME, respectively.
2497 FD must be either negative -- in which case it is ignored --
2498 or a file descriptor that is open on FILE.
2499 If FD is nonnegative, then FILE can be NULL. */
2500 int
2501 set_file_times (int fd, const char *filename,
2502 struct timespec atime, struct timespec mtime)
2503 {
2504 struct timespec timespec[2];
2505 timespec[0] = atime;
2506 timespec[1] = mtime;
2507 return fdutimens (fd, filename, timespec);
2508 }
2509 \f
2510 /* Like strsignal, except async-signal-safe, and this function typically
2511 returns a string in the C locale rather than the current locale. */
2512 char const *
2513 safe_strsignal (int code)
2514 {
2515 char const *signame = 0;
2516
2517 if (0 <= code && code < sys_siglist_entries)
2518 signame = sys_siglist[code];
2519 if (! signame)
2520 signame = "Unknown signal";
2521
2522 return signame;
2523 }
2524 \f
2525 #ifndef DOS_NT
2526 /* For make-serial-process */
2527 int
2528 serial_open (Lisp_Object port)
2529 {
2530 int fd = emacs_open (SSDATA (port), O_RDWR | O_NOCTTY | O_NONBLOCK, 0);
2531 if (fd < 0)
2532 report_file_error ("Opening serial port", port);
2533 #ifdef TIOCEXCL
2534 ioctl (fd, TIOCEXCL, (char *) 0);
2535 #endif
2536
2537 return fd;
2538 }
2539
2540 #if !defined (HAVE_CFMAKERAW)
2541 /* Workaround for targets which are missing cfmakeraw. */
2542 /* Pasted from man page. */
2543 static void
2544 cfmakeraw (struct termios *termios_p)
2545 {
2546 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
2547 termios_p->c_oflag &= ~OPOST;
2548 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
2549 termios_p->c_cflag &= ~(CSIZE|PARENB);
2550 termios_p->c_cflag |= CS8;
2551 }
2552 #endif /* !defined (HAVE_CFMAKERAW */
2553
2554 #if !defined (HAVE_CFSETSPEED)
2555 /* Workaround for targets which are missing cfsetspeed. */
2556 static int
2557 cfsetspeed (struct termios *termios_p, speed_t vitesse)
2558 {
2559 return (cfsetispeed (termios_p, vitesse)
2560 + cfsetospeed (termios_p, vitesse));
2561 }
2562 #endif
2563
2564 /* For serial-process-configure */
2565 void
2566 serial_configure (struct Lisp_Process *p,
2567 Lisp_Object contact)
2568 {
2569 Lisp_Object childp2 = Qnil;
2570 Lisp_Object tem = Qnil;
2571 struct termios attr;
2572 int err;
2573 char summary[4] = "???"; /* This usually becomes "8N1". */
2574
2575 childp2 = Fcopy_sequence (p->childp);
2576
2577 /* Read port attributes and prepare default configuration. */
2578 err = tcgetattr (p->outfd, &attr);
2579 if (err != 0)
2580 report_file_error ("Failed tcgetattr", Qnil);
2581 cfmakeraw (&attr);
2582 #if defined (CLOCAL)
2583 attr.c_cflag |= CLOCAL;
2584 #endif
2585 #if defined (CREAD)
2586 attr.c_cflag |= CREAD;
2587 #endif
2588
2589 /* Configure speed. */
2590 if (!NILP (Fplist_member (contact, QCspeed)))
2591 tem = Fplist_get (contact, QCspeed);
2592 else
2593 tem = Fplist_get (p->childp, QCspeed);
2594 CHECK_NUMBER (tem);
2595 err = cfsetspeed (&attr, XINT (tem));
2596 if (err != 0)
2597 report_file_error ("Failed cfsetspeed", tem);
2598 childp2 = Fplist_put (childp2, QCspeed, tem);
2599
2600 /* Configure bytesize. */
2601 if (!NILP (Fplist_member (contact, QCbytesize)))
2602 tem = Fplist_get (contact, QCbytesize);
2603 else
2604 tem = Fplist_get (p->childp, QCbytesize);
2605 if (NILP (tem))
2606 tem = make_number (8);
2607 CHECK_NUMBER (tem);
2608 if (XINT (tem) != 7 && XINT (tem) != 8)
2609 error (":bytesize must be nil (8), 7, or 8");
2610 summary[0] = XINT (tem) + '0';
2611 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2612 attr.c_cflag &= ~CSIZE;
2613 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
2614 #else
2615 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2616 if (XINT (tem) != 8)
2617 error ("Bytesize cannot be changed");
2618 #endif
2619 childp2 = Fplist_put (childp2, QCbytesize, tem);
2620
2621 /* Configure parity. */
2622 if (!NILP (Fplist_member (contact, QCparity)))
2623 tem = Fplist_get (contact, QCparity);
2624 else
2625 tem = Fplist_get (p->childp, QCparity);
2626 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
2627 error (":parity must be nil (no parity), `even', or `odd'");
2628 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2629 attr.c_cflag &= ~(PARENB | PARODD);
2630 attr.c_iflag &= ~(IGNPAR | INPCK);
2631 if (NILP (tem))
2632 {
2633 summary[1] = 'N';
2634 }
2635 else if (EQ (tem, Qeven))
2636 {
2637 summary[1] = 'E';
2638 attr.c_cflag |= PARENB;
2639 attr.c_iflag |= (IGNPAR | INPCK);
2640 }
2641 else if (EQ (tem, Qodd))
2642 {
2643 summary[1] = 'O';
2644 attr.c_cflag |= (PARENB | PARODD);
2645 attr.c_iflag |= (IGNPAR | INPCK);
2646 }
2647 #else
2648 /* Don't error on no parity, which should be set by cfmakeraw. */
2649 if (!NILP (tem))
2650 error ("Parity cannot be configured");
2651 #endif
2652 childp2 = Fplist_put (childp2, QCparity, tem);
2653
2654 /* Configure stopbits. */
2655 if (!NILP (Fplist_member (contact, QCstopbits)))
2656 tem = Fplist_get (contact, QCstopbits);
2657 else
2658 tem = Fplist_get (p->childp, QCstopbits);
2659 if (NILP (tem))
2660 tem = make_number (1);
2661 CHECK_NUMBER (tem);
2662 if (XINT (tem) != 1 && XINT (tem) != 2)
2663 error (":stopbits must be nil (1 stopbit), 1, or 2");
2664 summary[2] = XINT (tem) + '0';
2665 #if defined (CSTOPB)
2666 attr.c_cflag &= ~CSTOPB;
2667 if (XINT (tem) == 2)
2668 attr.c_cflag |= CSTOPB;
2669 #else
2670 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2671 if (XINT (tem) != 1)
2672 error ("Stopbits cannot be configured");
2673 #endif
2674 childp2 = Fplist_put (childp2, QCstopbits, tem);
2675
2676 /* Configure flowcontrol. */
2677 if (!NILP (Fplist_member (contact, QCflowcontrol)))
2678 tem = Fplist_get (contact, QCflowcontrol);
2679 else
2680 tem = Fplist_get (p->childp, QCflowcontrol);
2681 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
2682 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2683 #if defined (CRTSCTS)
2684 attr.c_cflag &= ~CRTSCTS;
2685 #endif
2686 #if defined (CNEW_RTSCTS)
2687 attr.c_cflag &= ~CNEW_RTSCTS;
2688 #endif
2689 #if defined (IXON) && defined (IXOFF)
2690 attr.c_iflag &= ~(IXON | IXOFF);
2691 #endif
2692 if (NILP (tem))
2693 {
2694 /* Already configured. */
2695 }
2696 else if (EQ (tem, Qhw))
2697 {
2698 #if defined (CRTSCTS)
2699 attr.c_cflag |= CRTSCTS;
2700 #elif defined (CNEW_RTSCTS)
2701 attr.c_cflag |= CNEW_RTSCTS;
2702 #else
2703 error ("Hardware flowcontrol (RTS/CTS) not supported");
2704 #endif
2705 }
2706 else if (EQ (tem, Qsw))
2707 {
2708 #if defined (IXON) && defined (IXOFF)
2709 attr.c_iflag |= (IXON | IXOFF);
2710 #else
2711 error ("Software flowcontrol (XON/XOFF) not supported");
2712 #endif
2713 }
2714 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
2715
2716 /* Activate configuration. */
2717 err = tcsetattr (p->outfd, TCSANOW, &attr);
2718 if (err != 0)
2719 report_file_error ("Failed tcsetattr", Qnil);
2720
2721 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
2722 pset_childp (p, childp2);
2723 }
2724 #endif /* not DOS_NT */
2725 \f
2726 /* System depended enumeration of and access to system processes a-la ps(1). */
2727
2728 #ifdef HAVE_PROCFS
2729
2730 /* Process enumeration and access via /proc. */
2731
2732 Lisp_Object
2733 list_system_processes (void)
2734 {
2735 Lisp_Object procdir, match, proclist, next;
2736 Lisp_Object tail;
2737
2738 /* For every process on the system, there's a directory in the
2739 "/proc" pseudo-directory whose name is the numeric ID of that
2740 process. */
2741 procdir = build_string ("/proc");
2742 match = build_string ("[0-9]+");
2743 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
2744
2745 /* `proclist' gives process IDs as strings. Destructively convert
2746 each string into a number. */
2747 for (tail = proclist; CONSP (tail); tail = next)
2748 {
2749 next = XCDR (tail);
2750 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
2751 }
2752
2753 /* directory_files_internal returns the files in reverse order; undo
2754 that. */
2755 proclist = Fnreverse (proclist);
2756 return proclist;
2757 }
2758
2759 #elif defined DARWIN_OS || defined __FreeBSD__
2760
2761 Lisp_Object
2762 list_system_processes (void)
2763 {
2764 #ifdef DARWIN_OS
2765 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL};
2766 #else
2767 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PROC};
2768 #endif
2769 size_t len;
2770 struct kinfo_proc *procs;
2771 size_t i;
2772
2773 Lisp_Object proclist = Qnil;
2774
2775 if (sysctl (mib, 3, NULL, &len, NULL, 0) != 0)
2776 return proclist;
2777
2778 procs = xmalloc (len);
2779 if (sysctl (mib, 3, procs, &len, NULL, 0) != 0)
2780 {
2781 xfree (procs);
2782 return proclist;
2783 }
2784
2785 len /= sizeof (struct kinfo_proc);
2786 for (i = 0; i < len; i++)
2787 {
2788 #ifdef DARWIN_OS
2789 proclist = Fcons (make_fixnum_or_float (procs[i].kp_proc.p_pid), proclist);
2790 #else
2791 proclist = Fcons (make_fixnum_or_float (procs[i].ki_pid), proclist);
2792 #endif
2793 }
2794
2795 xfree (procs);
2796
2797 return proclist;
2798 }
2799
2800 /* The WINDOWSNT implementation is in w32.c.
2801 The MSDOS implementation is in dosfns.c. */
2802 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2803
2804 Lisp_Object
2805 list_system_processes (void)
2806 {
2807 return Qnil;
2808 }
2809
2810 #endif /* !defined (WINDOWSNT) */
2811
2812 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2813 static struct timespec
2814 time_from_jiffies (unsigned long long tval, long hz)
2815 {
2816 unsigned long long s = tval / hz;
2817 unsigned long long frac = tval % hz;
2818 int ns;
2819
2820 if (s > TYPE_MAXIMUM (time_t))
2821 time_overflow ();
2822 if (ULLONG_MAX / TIMESPEC_RESOLUTION >= LONG_MAX - 1
2823 || frac <= ULLONG_MAX / TIMESPEC_RESOLUTION)
2824 ns = frac * TIMESPEC_RESOLUTION / hz;
2825 else
2826 {
2827 /* This is reachable only in the unlikely case that HZ * HZ
2828 exceeds ULLONG_MAX. It calculates an approximation that is
2829 guaranteed to be in range. */
2830 long hz_per_ns = (hz / TIMESPEC_RESOLUTION
2831 + (hz % TIMESPEC_RESOLUTION != 0));
2832 ns = frac / hz_per_ns;
2833 }
2834
2835 return make_timespec (s, ns);
2836 }
2837
2838 static Lisp_Object
2839 ltime_from_jiffies (unsigned long long tval, long hz)
2840 {
2841 struct timespec t = time_from_jiffies (tval, hz);
2842 return make_lisp_time (t);
2843 }
2844
2845 static struct timespec
2846 get_up_time (void)
2847 {
2848 FILE *fup;
2849 struct timespec up = make_timespec (0, 0);
2850
2851 block_input ();
2852 fup = emacs_fopen ("/proc/uptime", "r");
2853
2854 if (fup)
2855 {
2856 unsigned long long upsec, upfrac, idlesec, idlefrac;
2857 int upfrac_start, upfrac_end, idlefrac_start, idlefrac_end;
2858
2859 if (fscanf (fup, "%llu.%n%llu%n %llu.%n%llu%n",
2860 &upsec, &upfrac_start, &upfrac, &upfrac_end,
2861 &idlesec, &idlefrac_start, &idlefrac, &idlefrac_end)
2862 == 4)
2863 {
2864 if (TYPE_MAXIMUM (time_t) < upsec)
2865 {
2866 upsec = TYPE_MAXIMUM (time_t);
2867 upfrac = TIMESPEC_RESOLUTION - 1;
2868 }
2869 else
2870 {
2871 int upfraclen = upfrac_end - upfrac_start;
2872 for (; upfraclen < LOG10_TIMESPEC_RESOLUTION; upfraclen++)
2873 upfrac *= 10;
2874 for (; LOG10_TIMESPEC_RESOLUTION < upfraclen; upfraclen--)
2875 upfrac /= 10;
2876 upfrac = min (upfrac, TIMESPEC_RESOLUTION - 1);
2877 }
2878 up = make_timespec (upsec, upfrac);
2879 }
2880 fclose (fup);
2881 }
2882 unblock_input ();
2883
2884 return up;
2885 }
2886
2887 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2888 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2889
2890 static Lisp_Object
2891 procfs_ttyname (int rdev)
2892 {
2893 FILE *fdev;
2894 char name[PATH_MAX];
2895
2896 block_input ();
2897 fdev = emacs_fopen ("/proc/tty/drivers", "r");
2898 name[0] = 0;
2899
2900 if (fdev)
2901 {
2902 unsigned major;
2903 unsigned long minor_beg, minor_end;
2904 char minor[25]; /* 2 32-bit numbers + dash */
2905 char *endp;
2906
2907 for (; !feof (fdev) && !ferror (fdev); name[0] = 0)
2908 {
2909 if (fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor) >= 3
2910 && major == MAJOR (rdev))
2911 {
2912 minor_beg = strtoul (minor, &endp, 0);
2913 if (*endp == '\0')
2914 minor_end = minor_beg;
2915 else if (*endp == '-')
2916 minor_end = strtoul (endp + 1, &endp, 0);
2917 else
2918 continue;
2919
2920 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
2921 {
2922 sprintf (name + strlen (name), "%u", MINOR (rdev));
2923 break;
2924 }
2925 }
2926 }
2927 fclose (fdev);
2928 }
2929 unblock_input ();
2930 return build_string (name);
2931 }
2932
2933 static uintmax_t
2934 procfs_get_total_memory (void)
2935 {
2936 FILE *fmem;
2937 uintmax_t retval = 2 * 1024 * 1024; /* default: 2 GiB */
2938 int c;
2939
2940 block_input ();
2941 fmem = emacs_fopen ("/proc/meminfo", "r");
2942
2943 if (fmem)
2944 {
2945 uintmax_t entry_value;
2946 bool done;
2947
2948 do
2949 switch (fscanf (fmem, "MemTotal: %"SCNuMAX, &entry_value))
2950 {
2951 case 1:
2952 retval = entry_value;
2953 done = 1;
2954 break;
2955
2956 case 0:
2957 while ((c = getc (fmem)) != EOF && c != '\n')
2958 continue;
2959 done = c == EOF;
2960 break;
2961
2962 default:
2963 done = 1;
2964 break;
2965 }
2966 while (!done);
2967
2968 fclose (fmem);
2969 }
2970 unblock_input ();
2971 return retval;
2972 }
2973
2974 Lisp_Object
2975 system_process_attributes (Lisp_Object pid)
2976 {
2977 char procfn[PATH_MAX], fn[PATH_MAX];
2978 struct stat st;
2979 struct passwd *pw;
2980 struct group *gr;
2981 long clocks_per_sec;
2982 char *procfn_end;
2983 char procbuf[1025], *p, *q;
2984 int fd;
2985 ssize_t nread;
2986 static char const default_cmd[] = "???";
2987 const char *cmd = default_cmd;
2988 int cmdsize = sizeof default_cmd - 1;
2989 char *cmdline = NULL;
2990 ptrdiff_t cmdline_size;
2991 char c;
2992 printmax_t proc_id;
2993 int ppid, pgrp, sess, tty, tpgid, thcount;
2994 uid_t uid;
2995 gid_t gid;
2996 unsigned long long u_time, s_time, cutime, cstime, start;
2997 long priority, niceness, rss;
2998 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
2999 struct timespec tnow, tstart, tboot, telapsed, us_time;
3000 double pcpu, pmem;
3001 Lisp_Object attrs = Qnil;
3002 Lisp_Object cmd_str, decoded_cmd;
3003 ptrdiff_t count;
3004
3005 CHECK_NUMBER_OR_FLOAT (pid);
3006 CONS_TO_INTEGER (pid, pid_t, proc_id);
3007 sprintf (procfn, "/proc/%"pMd, proc_id);
3008 if (stat (procfn, &st) < 0)
3009 return attrs;
3010
3011 /* euid egid */
3012 uid = st.st_uid;
3013 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3014 block_input ();
3015 pw = getpwuid (uid);
3016 unblock_input ();
3017 if (pw)
3018 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3019
3020 gid = st.st_gid;
3021 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3022 block_input ();
3023 gr = getgrgid (gid);
3024 unblock_input ();
3025 if (gr)
3026 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3027
3028 count = SPECPDL_INDEX ();
3029 strcpy (fn, procfn);
3030 procfn_end = fn + strlen (fn);
3031 strcpy (procfn_end, "/stat");
3032 fd = emacs_open (fn, O_RDONLY, 0);
3033 if (fd < 0)
3034 nread = 0;
3035 else
3036 {
3037 record_unwind_protect_int (close_file_unwind, fd);
3038 nread = emacs_read (fd, procbuf, sizeof procbuf - 1);
3039 }
3040 if (nread > 0)
3041 {
3042 procbuf[nread] = '\0';
3043 p = procbuf;
3044
3045 p = strchr (p, '(');
3046 if (p != NULL)
3047 {
3048 q = strrchr (p + 1, ')');
3049 /* comm */
3050 if (q != NULL)
3051 {
3052 cmd = p + 1;
3053 cmdsize = q - cmd;
3054 }
3055 }
3056 else
3057 q = NULL;
3058 /* Command name is encoded in locale-coding-system; decode it. */
3059 cmd_str = make_unibyte_string (cmd, cmdsize);
3060 decoded_cmd = code_convert_string_norecord (cmd_str,
3061 Vlocale_coding_system, 0);
3062 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3063
3064 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3065 utime stime cutime cstime priority nice thcount . start vsize rss */
3066 if (q
3067 && (sscanf (q + 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3068 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3069 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3070 &minflt, &cminflt, &majflt, &cmajflt,
3071 &u_time, &s_time, &cutime, &cstime,
3072 &priority, &niceness, &thcount, &start, &vsize, &rss)
3073 == 20))
3074 {
3075 char state_str[2];
3076 state_str[0] = c;
3077 state_str[1] = '\0';
3078 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3079 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid)), attrs);
3080 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp)), attrs);
3081 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess)), attrs);
3082 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3083 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid)), attrs);
3084 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3085 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3086 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)),
3087 attrs);
3088 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)),
3089 attrs);
3090 clocks_per_sec = sysconf (_SC_CLK_TCK);
3091 if (clocks_per_sec < 0)
3092 clocks_per_sec = 100;
3093 attrs = Fcons (Fcons (Qutime,
3094 ltime_from_jiffies (u_time, clocks_per_sec)),
3095 attrs);
3096 attrs = Fcons (Fcons (Qstime,
3097 ltime_from_jiffies (s_time, clocks_per_sec)),
3098 attrs);
3099 attrs = Fcons (Fcons (Qtime,
3100 ltime_from_jiffies (s_time + u_time,
3101 clocks_per_sec)),
3102 attrs);
3103 attrs = Fcons (Fcons (Qcutime,
3104 ltime_from_jiffies (cutime, clocks_per_sec)),
3105 attrs);
3106 attrs = Fcons (Fcons (Qcstime,
3107 ltime_from_jiffies (cstime, clocks_per_sec)),
3108 attrs);
3109 attrs = Fcons (Fcons (Qctime,
3110 ltime_from_jiffies (cstime + cutime,
3111 clocks_per_sec)),
3112 attrs);
3113 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3114 attrs = Fcons (Fcons (Qnice, make_number (niceness)), attrs);
3115 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount)),
3116 attrs);
3117 tnow = current_timespec ();
3118 telapsed = get_up_time ();
3119 tboot = timespec_sub (tnow, telapsed);
3120 tstart = time_from_jiffies (start, clocks_per_sec);
3121 tstart = timespec_add (tboot, tstart);
3122 attrs = Fcons (Fcons (Qstart, make_lisp_time (tstart)), attrs);
3123 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize / 1024)),
3124 attrs);
3125 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4 * rss)), attrs);
3126 telapsed = timespec_sub (tnow, tstart);
3127 attrs = Fcons (Fcons (Qetime, make_lisp_time (telapsed)), attrs);
3128 us_time = time_from_jiffies (u_time + s_time, clocks_per_sec);
3129 pcpu = timespectod (us_time) / timespectod (telapsed);
3130 if (pcpu > 1.0)
3131 pcpu = 1.0;
3132 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3133 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3134 if (pmem > 100)
3135 pmem = 100;
3136 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3137 }
3138 }
3139 unbind_to (count, Qnil);
3140
3141 /* args */
3142 strcpy (procfn_end, "/cmdline");
3143 fd = emacs_open (fn, O_RDONLY, 0);
3144 if (fd >= 0)
3145 {
3146 ptrdiff_t readsize, nread_incr;
3147 record_unwind_protect_int (close_file_unwind, fd);
3148 record_unwind_protect_nothing ();
3149 nread = cmdline_size = 0;
3150
3151 do
3152 {
3153 cmdline = xpalloc (cmdline, &cmdline_size, 2, STRING_BYTES_BOUND, 1);
3154 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3155
3156 /* Leave room even if every byte needs escaping below. */
3157 readsize = (cmdline_size >> 1) - nread;
3158
3159 nread_incr = emacs_read (fd, cmdline + nread, readsize);
3160 nread += max (0, nread_incr);
3161 }
3162 while (nread_incr == readsize);
3163
3164 if (nread)
3165 {
3166 /* We don't want trailing null characters. */
3167 for (p = cmdline + nread; p > cmdline && !p[-1]; p--)
3168 continue;
3169
3170 /* Escape-quote whitespace and backslashes. */
3171 q = cmdline + cmdline_size;
3172 while (p > cmdline)
3173 {
3174 char c = *--p;
3175 *--q = c ? c : ' ';
3176 if (c_isspace (c) || c == '\\')
3177 *--q = '\\';
3178 }
3179
3180 nread = cmdline + cmdline_size - q;
3181 }
3182
3183 if (!nread)
3184 {
3185 nread = cmdsize + 2;
3186 cmdline_size = nread + 1;
3187 q = cmdline = xrealloc (cmdline, cmdline_size);
3188 set_unwind_protect_ptr (count + 1, xfree, cmdline);
3189 sprintf (cmdline, "[%.*s]", cmdsize, cmd);
3190 }
3191 /* Command line is encoded in locale-coding-system; decode it. */
3192 cmd_str = make_unibyte_string (q, nread);
3193 decoded_cmd = code_convert_string_norecord (cmd_str,
3194 Vlocale_coding_system, 0);
3195 unbind_to (count, Qnil);
3196 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3197 }
3198
3199 return attrs;
3200 }
3201
3202 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3203
3204 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3205 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3206 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3207 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3208 #undef _FILE_OFFSET_BITS
3209 #else
3210 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3211 #endif
3212
3213 #include <procfs.h>
3214
3215 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3216 #define _FILE_OFFSET_BITS 64
3217 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3218 #endif
3219 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3220
3221 Lisp_Object
3222 system_process_attributes (Lisp_Object pid)
3223 {
3224 char procfn[PATH_MAX], fn[PATH_MAX];
3225 struct stat st;
3226 struct passwd *pw;
3227 struct group *gr;
3228 char *procfn_end;
3229 struct psinfo pinfo;
3230 int fd;
3231 ssize_t nread;
3232 printmax_t proc_id;
3233 uid_t uid;
3234 gid_t gid;
3235 Lisp_Object attrs = Qnil;
3236 Lisp_Object decoded_cmd;
3237 ptrdiff_t count;
3238
3239 CHECK_NUMBER_OR_FLOAT (pid);
3240 CONS_TO_INTEGER (pid, pid_t, proc_id);
3241 sprintf (procfn, "/proc/%"pMd, proc_id);
3242 if (stat (procfn, &st) < 0)
3243 return attrs;
3244
3245 /* euid egid */
3246 uid = st.st_uid;
3247 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs);
3248 block_input ();
3249 pw = getpwuid (uid);
3250 unblock_input ();
3251 if (pw)
3252 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3253
3254 gid = st.st_gid;
3255 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs);
3256 block_input ();
3257 gr = getgrgid (gid);
3258 unblock_input ();
3259 if (gr)
3260 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3261
3262 count = SPECPDL_INDEX ();
3263 strcpy (fn, procfn);
3264 procfn_end = fn + strlen (fn);
3265 strcpy (procfn_end, "/psinfo");
3266 fd = emacs_open (fn, O_RDONLY, 0);
3267 if (fd < 0)
3268 nread = 0;
3269 else
3270 {
3271 record_unwind_protect (close_file_unwind, fd);
3272 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3273 }
3274
3275 if (nread == sizeof pinfo)
3276 {
3277 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3278 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3279 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3280
3281 {
3282 char state_str[2];
3283 state_str[0] = pinfo.pr_lwp.pr_sname;
3284 state_str[1] = '\0';
3285 attrs = Fcons (Fcons (Qstate, build_string (state_str)), attrs);
3286 }
3287
3288 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3289 need to get a string from it. */
3290
3291 /* FIXME: missing: Qtpgid */
3292
3293 /* FIXME: missing:
3294 Qminflt
3295 Qmajflt
3296 Qcminflt
3297 Qcmajflt
3298
3299 Qutime
3300 Qcutime
3301 Qstime
3302 Qcstime
3303 Are they available? */
3304
3305 attrs = Fcons (Fcons (Qtime, make_lisp_time (pinfo.pr_time)), attrs);
3306 attrs = Fcons (Fcons (Qctime, make_lisp_time (pinfo.pr_ctime)), attrs);
3307 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3308 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3309 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)),
3310 attrs);
3311
3312 attrs = Fcons (Fcons (Qstart, make_lisp_time (pinfo.pr_start)), attrs);
3313 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)),
3314 attrs);
3315 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)),
3316 attrs);
3317
3318 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3319 range 0 .. 2**15, representing 0.0 .. 1.0. */
3320 attrs = Fcons (Fcons (Qpcpu,
3321 make_float (100.0 / 0x8000 * pinfo.pr_pctcpu)),
3322 attrs);
3323 attrs = Fcons (Fcons (Qpmem,
3324 make_float (100.0 / 0x8000 * pinfo.pr_pctmem)),
3325 attrs);
3326
3327 decoded_cmd = (code_convert_string_norecord
3328 (build_unibyte_string (pinfo.pr_fname),
3329 Vlocale_coding_system, 0));
3330 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3331 decoded_cmd = (code_convert_string_norecord
3332 (build_unibyte_string (pinfo.pr_psargs),
3333 Vlocale_coding_system, 0));
3334 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3335 }
3336 unbind_to (count, Qnil);
3337 return attrs;
3338 }
3339
3340 #elif defined __FreeBSD__
3341
3342 static struct timespec
3343 timeval_to_timespec (struct timeval t)
3344 {
3345 return make_timespec (t.tv_sec, t.tv_usec * 1000);
3346 }
3347
3348 static Lisp_Object
3349 make_lisp_timeval (struct timeval t)
3350 {
3351 return make_lisp_time (timeval_to_timespec (t));
3352 }
3353
3354 Lisp_Object
3355 system_process_attributes (Lisp_Object pid)
3356 {
3357 int proc_id;
3358 int pagesize = getpagesize ();
3359 unsigned long npages;
3360 int fscale;
3361 struct passwd *pw;
3362 struct group *gr;
3363 char *ttyname;
3364 size_t len;
3365 char args[MAXPATHLEN];
3366 struct timespec t, now;
3367
3368 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID};
3369 struct kinfo_proc proc;
3370 size_t proclen = sizeof proc;
3371
3372 Lisp_Object attrs = Qnil;
3373 Lisp_Object decoded_comm;
3374
3375 CHECK_NUMBER_OR_FLOAT (pid);
3376 CONS_TO_INTEGER (pid, int, proc_id);
3377 mib[3] = proc_id;
3378
3379 if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0)
3380 return attrs;
3381
3382 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (proc.ki_uid)), attrs);
3383
3384 block_input ();
3385 pw = getpwuid (proc.ki_uid);
3386 unblock_input ();
3387 if (pw)
3388 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3389
3390 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (proc.ki_svgid)), attrs);
3391
3392 block_input ();
3393 gr = getgrgid (proc.ki_svgid);
3394 unblock_input ();
3395 if (gr)
3396 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3397
3398 decoded_comm = (code_convert_string_norecord
3399 (build_unibyte_string (proc.ki_comm),
3400 Vlocale_coding_system, 0));
3401
3402 attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs);
3403 {
3404 char state[2] = {'\0', '\0'};
3405 switch (proc.ki_stat)
3406 {
3407 case SRUN:
3408 state[0] = 'R';
3409 break;
3410
3411 case SSLEEP:
3412 state[0] = 'S';
3413 break;
3414
3415 case SLOCK:
3416 state[0] = 'D';
3417 break;
3418
3419 case SZOMB:
3420 state[0] = 'Z';
3421 break;
3422
3423 case SSTOP:
3424 state[0] = 'T';
3425 break;
3426 }
3427 attrs = Fcons (Fcons (Qstate, build_string (state)), attrs);
3428 }
3429
3430 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.ki_ppid)), attrs);
3431 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.ki_pgid)), attrs);
3432 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (proc.ki_sid)), attrs);
3433
3434 block_input ();
3435 ttyname = proc.ki_tdev == NODEV ? NULL : devname (proc.ki_tdev, S_IFCHR);
3436 unblock_input ();
3437 if (ttyname)
3438 attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs);
3439
3440 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.ki_tpgid)), attrs);
3441 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (proc.ki_rusage.ru_minflt)), attrs);
3442 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (proc.ki_rusage.ru_majflt)), attrs);
3443 attrs = Fcons (Fcons (Qcminflt, make_number (proc.ki_rusage_ch.ru_minflt)), attrs);
3444 attrs = Fcons (Fcons (Qcmajflt, make_number (proc.ki_rusage_ch.ru_majflt)), attrs);
3445
3446 attrs = Fcons (Fcons (Qutime, make_lisp_timeval (proc.ki_rusage.ru_utime)),
3447 attrs);
3448 attrs = Fcons (Fcons (Qstime, make_lisp_timeval (proc.ki_rusage.ru_stime)),
3449 attrs);
3450 t = timespec_add (timeval_to_timespec (proc.ki_rusage.ru_utime),
3451 timeval_to_timespec (proc.ki_rusage.ru_stime));
3452 attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs);
3453
3454 attrs = Fcons (Fcons (Qcutime,
3455 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3456 attrs);
3457 attrs = Fcons (Fcons (Qcstime,
3458 make_lisp_timeval (proc.ki_rusage_ch.ru_utime)),
3459 attrs);
3460 t = timespec_add (timeval_to_timespec (proc.ki_rusage_ch.ru_utime),
3461 timeval_to_timespec (proc.ki_rusage_ch.ru_stime));
3462 attrs = Fcons (Fcons (Qctime, make_lisp_time (t)), attrs);
3463
3464 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (proc.ki_numthreads)),
3465 attrs);
3466 attrs = Fcons (Fcons (Qpri, make_number (proc.ki_pri.pri_native)), attrs);
3467 attrs = Fcons (Fcons (Qnice, make_number (proc.ki_nice)), attrs);
3468 attrs = Fcons (Fcons (Qstart, make_lisp_timeval (proc.ki_start)), attrs);
3469 attrs = Fcons (Fcons (Qvsize, make_number (proc.ki_size >> 10)), attrs);
3470 attrs = Fcons (Fcons (Qrss, make_number (proc.ki_rssize * pagesize >> 10)),
3471 attrs);
3472
3473 now = current_timespec ();
3474 t = timespec_sub (now, timeval_to_timespec (proc.ki_start));
3475 attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs);
3476
3477 len = sizeof fscale;
3478 if (sysctlbyname ("kern.fscale", &fscale, &len, NULL, 0) == 0)
3479 {
3480 double pcpu;
3481 fixpt_t ccpu;
3482 len = sizeof ccpu;
3483 if (sysctlbyname ("kern.ccpu", &ccpu, &len, NULL, 0) == 0)
3484 {
3485 pcpu = (100.0 * proc.ki_pctcpu / fscale
3486 / (1 - exp (proc.ki_swtime * log ((double) ccpu / fscale))));
3487 attrs = Fcons (Fcons (Qpcpu, make_fixnum_or_float (pcpu)), attrs);
3488 }
3489 }
3490
3491 len = sizeof npages;
3492 if (sysctlbyname ("hw.availpages", &npages, &len, NULL, 0) == 0)
3493 {
3494 double pmem = (proc.ki_flag & P_INMEM
3495 ? 100.0 * proc.ki_rssize / npages
3496 : 0);
3497 attrs = Fcons (Fcons (Qpmem, make_fixnum_or_float (pmem)), attrs);
3498 }
3499
3500 mib[2] = KERN_PROC_ARGS;
3501 len = MAXPATHLEN;
3502 if (sysctl (mib, 4, args, &len, NULL, 0) == 0)
3503 {
3504 int i;
3505 for (i = 0; i < len; i++)
3506 {
3507 if (! args[i] && i < len - 1)
3508 args[i] = ' ';
3509 }
3510
3511 decoded_comm =
3512 (code_convert_string_norecord
3513 (build_unibyte_string (args),
3514 Vlocale_coding_system, 0));
3515
3516 attrs = Fcons (Fcons (Qargs, decoded_comm), attrs);
3517 }
3518
3519 return attrs;
3520 }
3521
3522 /* The WINDOWSNT implementation is in w32.c.
3523 The MSDOS implementation is in dosfns.c. */
3524 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3525
3526 Lisp_Object
3527 system_process_attributes (Lisp_Object pid)
3528 {
3529 return Qnil;
3530 }
3531
3532 #endif /* !defined (WINDOWSNT) */
3533 \f
3534 /* Wide character string collation. */
3535
3536 #ifdef __STDC_ISO_10646__
3537 # include <wchar.h>
3538 # include <wctype.h>
3539
3540 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3541 # include <locale.h>
3542 # endif
3543 # ifndef LC_COLLATE
3544 # define LC_COLLATE 0
3545 # endif
3546 # ifndef LC_COLLATE_MASK
3547 # define LC_COLLATE_MASK 0
3548 # endif
3549 # ifndef LC_CTYPE
3550 # define LC_CTYPE 0
3551 # endif
3552 # ifndef LC_CTYPE_MASK
3553 # define LC_CTYPE_MASK 0
3554 # endif
3555
3556 # ifndef HAVE_NEWLOCALE
3557 # undef freelocale
3558 # undef locale_t
3559 # undef newlocale
3560 # undef wcscoll_l
3561 # undef towlower_l
3562 # define freelocale emacs_freelocale
3563 # define locale_t emacs_locale_t
3564 # define newlocale emacs_newlocale
3565 # define wcscoll_l emacs_wcscoll_l
3566 # define towlower_l emacs_towlower_l
3567
3568 typedef char const *locale_t;
3569
3570 static locale_t
3571 newlocale (int category_mask, char const *locale, locale_t loc)
3572 {
3573 return locale;
3574 }
3575
3576 static void
3577 freelocale (locale_t loc)
3578 {
3579 }
3580
3581 static char *
3582 emacs_setlocale (int category, char const *locale)
3583 {
3584 # ifdef HAVE_SETLOCALE
3585 errno = 0;
3586 char *loc = setlocale (category, locale);
3587 if (loc || errno)
3588 return loc;
3589 errno = EINVAL;
3590 # else
3591 errno = ENOTSUP;
3592 # endif
3593 return 0;
3594 }
3595
3596 static int
3597 wcscoll_l (wchar_t const *a, wchar_t const *b, locale_t loc)
3598 {
3599 int result = 0;
3600 char *oldloc = emacs_setlocale (LC_COLLATE, NULL);
3601 int err;
3602
3603 if (! oldloc)
3604 err = errno;
3605 else
3606 {
3607 USE_SAFE_ALLOCA;
3608 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3609 strcpy (oldcopy, oldloc);
3610 if (! emacs_setlocale (LC_COLLATE, loc))
3611 err = errno;
3612 else
3613 {
3614 errno = 0;
3615 result = wcscoll (a, b);
3616 err = errno;
3617 if (! emacs_setlocale (LC_COLLATE, oldcopy))
3618 err = errno;
3619 }
3620 SAFE_FREE ();
3621 }
3622
3623 errno = err;
3624 return result;
3625 }
3626
3627 static wint_t
3628 towlower_l (wint_t wc, locale_t loc)
3629 {
3630 wint_t result = wc;
3631 char *oldloc = emacs_setlocale (LC_CTYPE, NULL);
3632
3633 if (oldloc)
3634 {
3635 USE_SAFE_ALLOCA;
3636 char *oldcopy = SAFE_ALLOCA (strlen (oldloc) + 1);
3637 strcpy (oldcopy, oldloc);
3638 if (emacs_setlocale (LC_CTYPE, loc))
3639 {
3640 result = towlower (wc);
3641 emacs_setlocale (LC_COLLATE, oldcopy);
3642 }
3643 SAFE_FREE ();
3644 }
3645
3646 return result;
3647 }
3648 # endif
3649
3650 int
3651 str_collate (Lisp_Object s1, Lisp_Object s2,
3652 Lisp_Object locale, Lisp_Object ignore_case)
3653 {
3654 int res, err;
3655 ptrdiff_t len, i, i_byte;
3656 wchar_t *p1, *p2;
3657
3658 USE_SAFE_ALLOCA;
3659
3660 /* Convert byte stream to code points. */
3661 len = SCHARS (s1); i = i_byte = 0;
3662 SAFE_NALLOCA (p1, 1, len + 1);
3663 while (i < len)
3664 FETCH_STRING_CHAR_ADVANCE (*(p1+i-1), s1, i, i_byte);
3665 *(p1+len) = 0;
3666
3667 len = SCHARS (s2); i = i_byte = 0;
3668 SAFE_NALLOCA (p2, 1, len + 1);
3669 while (i < len)
3670 FETCH_STRING_CHAR_ADVANCE (*(p2+i-1), s2, i, i_byte);
3671 *(p2+len) = 0;
3672
3673 if (STRINGP (locale))
3674 {
3675 locale_t loc = newlocale (LC_COLLATE_MASK | LC_CTYPE_MASK,
3676 SSDATA (locale), 0);
3677 if (!loc)
3678 error ("Invalid locale %s: %s", SSDATA (locale), strerror (errno));
3679
3680 if (! NILP (ignore_case))
3681 for (int i = 1; i < 3; i++)
3682 {
3683 wchar_t *p = (i == 1) ? p1 : p2;
3684 for (; *p; p++)
3685 *p = towlower_l (*p, loc);
3686 }
3687
3688 errno = 0;
3689 res = wcscoll_l (p1, p2, loc);
3690 err = errno;
3691 freelocale (loc);
3692 }
3693 else
3694 {
3695 if (! NILP (ignore_case))
3696 for (int i = 1; i < 3; i++)
3697 {
3698 wchar_t *p = (i == 1) ? p1 : p2;
3699 for (; *p; p++)
3700 *p = towlower (*p);
3701 }
3702
3703 errno = 0;
3704 res = wcscoll (p1, p2);
3705 err = errno;
3706 }
3707 # ifndef HAVE_NEWLOCALE
3708 if (err)
3709 error ("Invalid locale or string for collation: %s", strerror (err));
3710 # else
3711 if (err)
3712 error ("Invalid string for collation: %s", strerror (err));
3713 # endif
3714
3715 SAFE_FREE ();
3716 return res;
3717 }
3718 #endif /* __STDC_ISO_10646__ */
3719
3720 #ifdef WINDOWSNT
3721 int
3722 str_collate (Lisp_Object s1, Lisp_Object s2,
3723 Lisp_Object locale, Lisp_Object ignore_case)
3724 {
3725
3726 char *loc = STRINGP (locale) ? SSDATA (locale) : NULL;
3727 int res, err = errno;
3728
3729 errno = 0;
3730 res = w32_compare_strings (SDATA (s1), SDATA (s2), loc, !NILP (ignore_case));
3731 if (errno)
3732 error ("Invalid string for collation: %s", strerror (errno));
3733
3734 errno = err;
3735 return res;
3736 }
3737 #endif /* WINDOWSNT */