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