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