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