1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2014 Free Software
5 This file is part of GNU Emacs.
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.
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.
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/>. */
22 /* If HYBRID_GET_CURRENT_DIR_NAME is defined in conf_post.h, then we
23 need the following before including unistd.h, in order to pick up
24 the right prototype for gget_current_dir_name. */
25 #ifdef HYBRID_GET_CURRENT_DIR_NAME
26 #undef get_current_dir_name
27 #define get_current_dir_name gget_current_dir_name
35 #endif /* HAVE_PWD_H */
43 #include "sysselect.h"
44 #include "blockinput.h"
46 #if defined DARWIN_OS || defined __FreeBSD__
47 # include <sys/sysctl.h>
51 /* Sparc/ARM machine/frame.h has 'struct frame' which conflicts with Emacs's
52 'struct frame', so rename it. */
53 # define frame freebsd_frame
54 # include <sys/user.h>
62 #define write sys_write
64 #define STDERR_FILENO fileno(GetStdHandle(STD_ERROR_HANDLE))
67 #endif /* not WINDOWSNT */
69 #include <sys/types.h>
73 /* Get SI_SRPC_DOMAIN, if it is available. */
74 #ifdef HAVE_SYS_SYSTEMINFO_H
75 #include <sys/systeminfo.h>
78 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
82 #ifdef HAVE_SYS_RESOURCE_H
83 #include <sys/resource.h>
85 #include <sys/param.h>
92 #ifdef HAVE_SYS_UTSNAME_H
93 #include <sys/utsname.h>
95 #endif /* HAVE_SYS_UTSNAME_H */
100 #include "termhooks.h"
101 #include "termchar.h"
102 #include "termopts.h"
103 #include "dispextern.h"
105 #include "cm.h" /* for reset_sys_modes */
109 /* In process.h which conflicts with the local copy. */
111 int _cdecl
_spawnlp (int, const char *, const char *, ...);
112 int _cdecl
_getpid (void);
115 #include "syssignal.h"
118 /* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
120 #define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
123 /* Declare here, including term.h is problematic on some systems. */
124 extern void tputs (const char *, int, int (*)(int));
126 static const int baud_convert
[] =
128 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
129 1800, 2400, 4800, 9600, 19200, 38400
132 #if !defined HAVE_GET_CURRENT_DIR_NAME || defined BROKEN_GET_CURRENT_DIR_NAME \
133 || (defined HYBRID_GET_CURRENT_DIR_NAME)
134 /* Return the current working directory. Returns NULL on errors.
135 Any other returned value must be freed with free. This is used
136 only when get_current_dir_name is not defined on the system. */
138 get_current_dir_name (void)
141 char *pwd
= getenv ("PWD");
142 struct stat dotstat
, pwdstat
;
143 /* If PWD is accurate, use it instead of calling getcwd. PWD is
144 sometimes a nicer name, and using it may avoid a fatal error if a
145 parent directory is searchable but not readable. */
147 && (IS_DIRECTORY_SEP (*pwd
) || (*pwd
&& IS_DEVICE_SEP (pwd
[1])))
148 && stat (pwd
, &pwdstat
) == 0
149 && stat (".", &dotstat
) == 0
150 && dotstat
.st_ino
== pwdstat
.st_ino
151 && dotstat
.st_dev
== pwdstat
.st_dev
153 && strlen (pwd
) < MAXPATHLEN
157 buf
= malloc (strlen (pwd
) + 1);
164 size_t buf_size
= 1024;
165 buf
= malloc (buf_size
);
170 if (getcwd (buf
, buf_size
) == buf
)
174 int tmp_errno
= errno
;
180 buf
= realloc (buf
, buf_size
);
190 /* Discard pending input on all input descriptors. */
193 discard_tty_input (void)
196 struct emacs_tty buf
;
201 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
202 while (dos_keyread () != -1)
204 #else /* not MSDOS */
206 struct tty_display_info
*tty
;
207 for (tty
= tty_list
; tty
; tty
= tty
->next
)
209 if (tty
->input
) /* Is the device suspended? */
211 emacs_get_tty (fileno (tty
->input
), &buf
);
212 emacs_set_tty (fileno (tty
->input
), &buf
, 0);
216 #endif /* not MSDOS */
217 #endif /* not WINDOWSNT */
223 /* Arrange for character C to be read as the next input from
225 XXX What if we have multiple ttys?
231 if (! (FRAMEP (selected_frame
)
232 && FRAME_LIVE_P (XFRAME (selected_frame
))
233 && FRAME_TERMCAP_P (XFRAME (selected_frame
))))
236 /* Should perhaps error if in batch mode */
238 ioctl (fileno (CURTTY()->input
), TIOCSTI
, &c
);
239 #else /* no TIOCSTI */
240 error ("Cannot stuff terminal input characters in this version of Unix");
241 #endif /* no TIOCSTI */
247 init_baud_rate (int fd
)
257 #else /* not DOS_NT */
262 emacs_ospeed
= cfgetospeed (&sg
);
263 #endif /* not DOS_NT */
266 baud_rate
= (emacs_ospeed
< ARRAYELTS (baud_convert
)
267 ? baud_convert
[emacs_ospeed
] : 9600);
276 /* Wait for the subprocess with process id CHILD to terminate or change status.
277 CHILD must be a child process that has not been reaped.
278 If STATUS is non-null, store the waitpid-style exit status into *STATUS
279 and tell wait_reading_process_output that it needs to look around.
280 Use waitpid-style OPTIONS when waiting.
281 If INTERRUPTIBLE, this function is interruptible by a signal.
283 Return CHILD if successful, 0 if no status is available;
284 the latter is possible only when options & NOHANG. */
286 get_child_status (pid_t child
, int *status
, int options
, bool interruptible
)
290 /* Invoke waitpid only with a known process ID; do not invoke
291 waitpid with a nonpositive argument. Otherwise, Emacs might
292 reap an unwanted process by mistake. For example, invoking
293 waitpid (-1, ...) can mess up glib by reaping glib's subprocesses,
294 so that another thread running glib won't find them. */
297 while ((pid
= waitpid (child
, status
, options
)) < 0)
299 /* Check that CHILD is a child process that has not been reaped,
300 and that STATUS and OPTIONS are valid. Otherwise abort,
301 as continuing after this internal error could cause Emacs to
302 become confused and kill innocent-victim processes. */
306 /* Note: the MS-Windows emulation of waitpid calls QUIT
312 /* If successful and status is requested, tell wait_reading_process_output
313 that it needs to wake up and look around. */
314 if (pid
&& status
&& input_available_clear_time
)
315 *input_available_clear_time
= make_timespec (0, 0);
320 /* Wait for the subprocess with process id CHILD to terminate.
321 CHILD must be a child process that has not been reaped.
322 If STATUS is non-null, store the waitpid-style exit status into *STATUS
323 and tell wait_reading_process_output that it needs to look around.
324 If INTERRUPTIBLE, this function is interruptible by a signal. */
326 wait_for_termination (pid_t child
, int *status
, bool interruptible
)
328 get_child_status (child
, status
, 0, interruptible
);
331 /* Report whether the subprocess with process id CHILD has changed status.
332 Termination counts as a change of status.
333 CHILD must be a child process that has not been reaped.
334 If STATUS is non-null, store the waitpid-style exit status into *STATUS
335 and tell wait_reading_process_output that it needs to look around.
336 Use waitpid-style OPTIONS to check status, but do not wait.
338 Return CHILD if successful, 0 if no status is available because
339 the process's state has not changed. */
341 child_status_changed (pid_t child
, int *status
, int options
)
343 return get_child_status (child
, status
, WNOHANG
| options
, 0);
347 /* Set up the terminal at the other end of a pseudo-terminal that
348 we will be controlling an inferior through.
349 It should not echo or do line-editing, since that is done
350 in Emacs. No padding needed for insertion into an Emacs buffer. */
353 child_setup_tty (int out
)
358 emacs_get_tty (out
, &s
);
359 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
360 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
362 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
363 Some versions of GNU Hurd do not have FFDLY? */
365 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
366 /* No output delays */
368 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
);
369 /* No output delays */
372 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
373 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
375 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
378 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
381 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
383 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
384 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
385 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
386 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
389 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
392 #ifdef SIGNALS_VIA_CHARACTERS
393 /* the QUIT and INTR character are used in process_send_signal
394 so set them here to something useful. */
395 if (s
.main
.c_cc
[VQUIT
] == CDISABLE
)
396 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
397 if (s
.main
.c_cc
[VINTR
] == CDISABLE
)
398 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
399 #endif /* not SIGNALS_VIA_CHARACTERS */
402 /* Also, PTY overloads NUL and BREAK.
403 don't ignore break, but don't signal either, so it looks like NUL. */
404 s
.main
.c_iflag
&= ~IGNBRK
;
405 s
.main
.c_iflag
&= ~BRKINT
;
406 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
407 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
408 would force it to 0377. That looks like duplicated code. */
409 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
412 /* We originally enabled ICANON (and set VEOF to 04), and then had
413 process.c send additional EOF chars to flush the output when faced
414 with long lines, but this leads to weird effects when the
415 subprocess has disabled ICANON and ends up seeing those spurious
416 extra EOFs. So we don't send EOFs any more in
417 process.c:send_process. First we tried to disable ICANON by
418 default, so if a subsprocess sets up ICANON, it's his problem (or
419 the Elisp package that talks to it) to deal with lines that are
420 too long. But this disables some features, such as the ability
421 to send EOF signals. So we re-enabled ICANON but there is no
422 more "send eof to flush" going on (which is wrong and unportable
423 in itself). The correct way to handle too much output is to
424 buffer what could not be written and then write it again when
425 select returns ok for writing. This has it own set of
426 problems. Write is now asynchronous, is that a problem? How much
427 do we buffer, and what do we do when that limit is reached? */
429 s
.main
.c_lflag
|= ICANON
; /* Enable line editing and eof processing */
430 s
.main
.c_cc
[VEOF
] = 'D'&037; /* Control-D */
431 #if 0 /* These settings only apply to non-ICANON mode. */
432 s
.main
.c_cc
[VMIN
] = 1;
433 s
.main
.c_cc
[VTIME
] = 0;
436 emacs_set_tty (out
, &s
, 0);
437 #endif /* not WINDOWSNT */
439 #endif /* not MSDOS */
442 /* Record a signal code and the action for it. */
446 struct sigaction action
;
449 static void save_signal_handlers (struct save_signal
*);
450 static void restore_signal_handlers (struct save_signal
*);
452 /* Suspend the Emacs process; give terminal to its superior. */
460 /* On a system where suspending is not implemented,
461 instead fork a subshell and let it talk directly to the terminal
468 /* Fork a subshell. */
473 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
476 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
478 char oldwd
[MAX_UTF8_PATH
];
483 struct save_signal saved_handlers
[5];
484 char *str
= SSDATA (encode_current_directory ());
490 char *volatile str_volatile
= str
;
497 error ("Can't spawn subshell");
499 saved_handlers
[0].code
= SIGINT
;
500 saved_handlers
[1].code
= SIGQUIT
;
501 saved_handlers
[2].code
= SIGTERM
;
503 saved_handlers
[3].code
= SIGIO
;
504 saved_handlers
[4].code
= 0;
506 saved_handlers
[3].code
= 0;
510 save_signal_handlers (saved_handlers
);
517 #ifdef DOS_NT /* MW, Aug 1993 */
518 getcwd (oldwd
, sizeof oldwd
);
520 sh
= egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
523 sh
= egetenv ("SHELL");
527 /* Use our buffer's default directory for the subshell. */
528 if (chdir (str
) != 0)
532 _exit (EXIT_CANCELED
);
536 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
538 char *epwd
= getenv ("PWD");
539 char old_pwd
[MAXPATHLEN
+1+4];
541 /* If PWD is set, pass it with corrected value. */
544 strcpy (old_pwd
, epwd
);
545 setenv ("PWD", str
, 1);
548 chdir (oldwd
); /* FIXME: Do the right thing on chdir failure. */
550 putenv (old_pwd
); /* restore previous value */
552 #else /* not MSDOS */
554 /* Waits for process completion */
555 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
556 chdir (oldwd
); /* FIXME: Do the right thing on chdir failure. */
558 write (1, "Can't execute subshell", 22);
559 #else /* not WINDOWSNT */
560 execlp (sh
, sh
, (char *) 0);
562 _exit (errno
== ENOENT
? EXIT_ENOENT
: EXIT_CANNOT_INVOKE
);
563 #endif /* not WINDOWSNT */
564 #endif /* not MSDOS */
567 /* Do this now if we did not do it before. */
569 save_signal_handlers (saved_handlers
);
573 wait_for_termination (pid
, &status
, 0);
575 restore_signal_handlers (saved_handlers
);
579 save_signal_handlers (struct save_signal
*saved_handlers
)
581 while (saved_handlers
->code
)
583 struct sigaction action
;
584 emacs_sigaction_init (&action
, SIG_IGN
);
585 sigaction (saved_handlers
->code
, &action
, &saved_handlers
->action
);
591 restore_signal_handlers (struct save_signal
*saved_handlers
)
593 while (saved_handlers
->code
)
595 sigaction (saved_handlers
->code
, &saved_handlers
->action
, 0);
601 static int old_fcntl_flags
[FD_SETSIZE
];
608 old_fcntl_flags
[fd
] = fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
609 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
] | FASYNC
);
610 interrupts_deferred
= 0;
619 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
]);
633 sigemptyset (&unblocked
);
635 sigaddset (&unblocked
, SIGWINCH
);
637 sigaddset (&unblocked
, SIGIO
);
638 pthread_sigmask (SIG_UNBLOCK
, &unblocked
, 0);
640 interrupts_deferred
= 0;
645 unrequest_sigio (void)
653 sigemptyset (&blocked
);
655 sigaddset (&blocked
, SIGWINCH
);
657 sigaddset (&blocked
, SIGIO
);
658 pthread_sigmask (SIG_BLOCK
, &blocked
, 0);
659 interrupts_deferred
= 1;
667 signal (SIGIO
, SIG_IGN
);
675 block_child_signal (sigset_t
*oldset
)
678 sigemptyset (&blocked
);
679 sigaddset (&blocked
, SIGCHLD
);
680 sigaddset (&blocked
, SIGINT
);
681 pthread_sigmask (SIG_BLOCK
, &blocked
, oldset
);
684 /* Unblock SIGCHLD. */
687 unblock_child_signal (sigset_t
const *oldset
)
689 pthread_sigmask (SIG_SETMASK
, oldset
, 0);
694 /* Saving and restoring the process group of Emacs's terminal. */
696 /* The process group of which Emacs was a member when it initially
699 If Emacs was in its own process group (i.e. inherited_pgroup ==
700 getpid ()), then we know we're running under a shell with job
701 control (Emacs would never be run as part of a pipeline).
704 If Emacs was not in its own process group, then we know we're
705 running under a shell (or a caller) that doesn't know how to
706 separate itself from Emacs (like sh). Emacs must be in its own
707 process group in order to receive SIGIO correctly. In this
708 situation, we put ourselves in our own pgroup, forcibly set the
709 tty's pgroup to our pgroup, and make sure to restore and reinstate
710 the tty's pgroup just like any other terminal setting. If
711 inherited_group was not the tty's pgroup, then we'll get a
712 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
713 it goes foreground in the future, which is what should happen. */
715 static pid_t inherited_pgroup
;
718 init_foreground_group (void)
720 pid_t pgrp
= getpgrp ();
721 inherited_pgroup
= getpid () == pgrp
? 0 : pgrp
;
724 /* Block and unblock SIGTTOU. */
727 block_tty_out_signal (sigset_t
*oldset
)
731 sigemptyset (&blocked
);
732 sigaddset (&blocked
, SIGTTOU
);
733 pthread_sigmask (SIG_BLOCK
, &blocked
, oldset
);
738 unblock_tty_out_signal (sigset_t
const *oldset
)
741 pthread_sigmask (SIG_SETMASK
, oldset
, 0);
745 /* Safely set a controlling terminal FD's process group to PGID.
746 If we are not in the foreground already, POSIX requires tcsetpgrp
747 to deliver a SIGTTOU signal, which would stop us. This is an
748 annoyance, so temporarily ignore the signal.
750 In practice, platforms lacking SIGTTOU also lack tcsetpgrp, so
751 skip all this unless SIGTTOU is defined. */
753 tcsetpgrp_without_stopping (int fd
, pid_t pgid
)
758 block_tty_out_signal (&oldset
);
759 tcsetpgrp (fd
, pgid
);
760 unblock_tty_out_signal (&oldset
);
765 /* Split off the foreground process group to Emacs alone. When we are
766 in the foreground, but not started in our own process group,
767 redirect the tty device handle FD to point to our own process
768 group. FD must be the file descriptor of the controlling tty. */
770 narrow_foreground_group (int fd
)
772 if (inherited_pgroup
&& setpgid (0, 0) == 0)
773 tcsetpgrp_without_stopping (fd
, getpid ());
776 /* Set the tty to our original foreground group. */
778 widen_foreground_group (int fd
)
780 if (inherited_pgroup
&& setpgid (0, inherited_pgroup
) == 0)
781 tcsetpgrp_without_stopping (fd
, inherited_pgroup
);
784 /* Getting and setting emacs_tty structures. */
786 /* Set *TC to the parameters associated with the terminal FD,
787 or clear it if the parameters are not available.
788 Return 0 on success, -1 on failure. */
790 emacs_get_tty (int fd
, struct emacs_tty
*settings
)
792 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
793 memset (&settings
->main
, 0, sizeof (settings
->main
));
796 HANDLE h
= (HANDLE
)_get_osfhandle (fd
);
799 if (h
&& h
!= INVALID_HANDLE_VALUE
&& GetConsoleMode (h
, &console_mode
))
801 settings
->main
= console_mode
;
804 #endif /* WINDOWSNT */
807 /* We have those nifty POSIX tcmumbleattr functions. */
808 return tcgetattr (fd
, &settings
->main
);
813 /* Set the parameters of the tty on FD according to the contents of
814 *SETTINGS. If FLUSHP, discard input.
815 Return 0 if all went well, and -1 (setting errno) if anything failed. */
818 emacs_set_tty (int fd
, struct emacs_tty
*settings
, bool flushp
)
820 /* Set the primary parameters - baud rate, character size, etcetera. */
823 HANDLE h
= (HANDLE
)_get_osfhandle (fd
);
825 if (h
&& h
!= INVALID_HANDLE_VALUE
)
829 /* Assume the handle is open for input. */
831 FlushConsoleInputBuffer (h
);
832 new_mode
= settings
->main
;
833 SetConsoleMode (h
, new_mode
);
835 #endif /* WINDOWSNT */
838 /* We have those nifty POSIX tcmumbleattr functions.
839 William J. Smith <wjs@wiis.wang.com> writes:
840 "POSIX 1003.1 defines tcsetattr to return success if it was
841 able to perform any of the requested actions, even if some
842 of the requested actions could not be performed.
843 We must read settings back to ensure tty setup properly.
844 AIX requires this to keep tty from hanging occasionally." */
845 /* This make sure that we don't loop indefinitely in here. */
846 for (i
= 0 ; i
< 10 ; i
++)
847 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
858 memset (&new, 0, sizeof (new));
859 /* Get the current settings, and see if they're what we asked for. */
860 tcgetattr (fd
, &new);
861 /* We cannot use memcmp on the whole structure here because under
862 * aix386 the termios structure has some reserved field that may
865 if ( new.c_iflag
== settings
->main
.c_iflag
866 && new.c_oflag
== settings
->main
.c_oflag
867 && new.c_cflag
== settings
->main
.c_cflag
868 && new.c_lflag
== settings
->main
.c_lflag
869 && memcmp (new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
876 /* We have survived the tempest. */
883 static int old_fcntl_owner
[FD_SETSIZE
];
884 #endif /* F_SETOWN */
886 /* This may also be defined in stdio,
887 but if so, this does no harm,
888 and using the same name avoids wasting the other one's space. */
891 unsigned char _sobuf
[BUFSIZ
+8];
896 /* Initialize the terminal mode on all tty devices that are currently
900 init_all_sys_modes (void)
902 struct tty_display_info
*tty
;
903 for (tty
= tty_list
; tty
; tty
= tty
->next
)
904 init_sys_modes (tty
);
907 /* Initialize the terminal mode on the given tty device. */
910 init_sys_modes (struct tty_display_info
*tty_out
)
912 struct emacs_tty tty
;
913 Lisp_Object terminal
;
915 Vtty_erase_char
= Qnil
;
920 if (!tty_out
->output
)
921 return; /* The tty is suspended. */
923 narrow_foreground_group (fileno (tty_out
->input
));
925 if (! tty_out
->old_tty
)
926 tty_out
->old_tty
= xmalloc (sizeof *tty_out
->old_tty
);
928 emacs_get_tty (fileno (tty_out
->input
), tty_out
->old_tty
);
930 tty
= *tty_out
->old_tty
;
932 #if !defined (DOS_NT)
933 XSETINT (Vtty_erase_char
, tty
.main
.c_cc
[VERASE
]);
935 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
936 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
937 #ifdef INLCR /* I'm just being cautious,
938 since I can't check how widespread INLCR is--rms. */
939 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
942 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
944 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
945 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
947 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
949 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
950 if (tty_out
->flow_control
)
952 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
954 tty
.main
.c_iflag
&= ~IXANY
;
958 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
959 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
961 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
963 if (tty_out
->meta_key
)
965 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
966 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
970 XSETTERMINAL(terminal
, tty_out
->terminal
);
971 if (!NILP (Fcontrolling_tty_p (terminal
)))
973 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
974 /* Set up C-g for both SIGQUIT and SIGINT.
975 We don't know which we will get, but we handle both alike
976 so which one it really gives us does not matter. */
977 tty
.main
.c_cc
[VQUIT
] = quit_char
;
981 /* We normally don't get interrupt or quit signals from tty
982 devices other than our controlling terminal; therefore,
983 we must handle C-g as normal input. Unfortunately, this
984 means that the interrupt and quit feature must be
985 disabled on secondary ttys, or we would not even see the
988 Note that even though emacsclient could have special code
989 to pass SIGINT to Emacs, we should _not_ enable
990 interrupt/quit keys for emacsclient frames. This means
991 that we can't break out of loops in C code from a
992 secondary tty frame, but we can always decide what
993 display the C-g came from, which is more important from a
994 usability point of view. (Consider the case when two
995 people work together using the same Emacs instance.) */
996 tty
.main
.c_cc
[VINTR
] = CDISABLE
;
997 tty
.main
.c_cc
[VQUIT
] = CDISABLE
;
999 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1000 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1002 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1007 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off handling of C-z. */
1010 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off handling of C-y. */
1011 #endif /* V_DSUSP */
1012 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1013 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1016 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1019 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1020 #endif /* VREPRINT */
1022 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1023 #endif /* VWERASE */
1025 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1026 #endif /* VDISCARD */
1028 if (tty_out
->flow_control
)
1031 tty
.main
.c_cc
[VSTART
] = '\021';
1034 tty
.main
.c_cc
[VSTOP
] = '\023';
1040 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1043 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1048 tty
.main
.c_cc
[VSTRT
] = CDISABLE
;
1049 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1050 tty
.main
.c_cc
[VSUSP
] = CDISABLE
;
1051 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1052 if (tty_out
->flow_control
)
1055 tty
.main
.c_cc
[VSTART
] = '\021';
1058 tty
.main
.c_cc
[VSTOP
] = '\023';
1061 /* Also, PTY overloads NUL and BREAK.
1062 don't ignore break, but don't signal either, so it looks like NUL.
1063 This really serves a purpose only if running in an XTERM window
1064 or via TELNET or the like, but does no harm elsewhere. */
1065 tty
.main
.c_iflag
&= ~IGNBRK
;
1066 tty
.main
.c_iflag
&= ~BRKINT
;
1068 #endif /* not DOS_NT */
1070 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1071 if (!tty_out
->term_initted
)
1072 internal_terminal_init ();
1073 dos_ttraw (tty_out
);
1076 emacs_set_tty (fileno (tty_out
->input
), &tty
, 0);
1078 /* This code added to insure that, if flow-control is not to be used,
1079 we have an unlocked terminal at the start. */
1082 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TCXONC
, 1);
1085 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TIOCSTART
, 0);
1088 #if !defined (DOS_NT)
1090 if (!tty_out
->flow_control
) tcflow (fileno (tty_out
->input
), TCOON
);
1095 if (interrupt_input
)
1097 old_fcntl_owner
[fileno (tty_out
->input
)] =
1098 fcntl (fileno (tty_out
->input
), F_GETOWN
, 0);
1099 fcntl (fileno (tty_out
->input
), F_SETOWN
, getpid ());
1100 init_sigio (fileno (tty_out
->input
));
1102 if (gpm_tty
== tty_out
)
1104 /* Arrange for mouse events to give us SIGIO signals. */
1105 fcntl (gpm_fd
, F_SETOWN
, getpid ());
1106 fcntl (gpm_fd
, F_SETFL
, fcntl (gpm_fd
, F_GETFL
, 0) | O_NONBLOCK
);
1107 init_sigio (gpm_fd
);
1109 #endif /* HAVE_GPM */
1111 #endif /* F_GETOWN */
1114 /* This symbol is defined on recent USG systems.
1115 Someone says without this call USG won't really buffer the file
1116 even with a call to setbuf. */
1117 setvbuf (tty_out
->output
, (char *) _sobuf
, _IOFBF
, sizeof _sobuf
);
1119 setbuf (tty_out
->output
, (char *) _sobuf
);
1122 if (tty_out
->terminal
->set_terminal_modes_hook
)
1123 tty_out
->terminal
->set_terminal_modes_hook (tty_out
->terminal
);
1125 if (!tty_out
->term_initted
)
1127 Lisp_Object tail
, frame
;
1128 FOR_EACH_FRAME (tail
, frame
)
1130 /* XXX This needs to be revised. */
1131 if (FRAME_TERMCAP_P (XFRAME (frame
))
1132 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1133 init_frame_faces (XFRAME (frame
));
1137 if (tty_out
->term_initted
&& no_redraw_on_reenter
)
1139 /* We used to call "direct_output_forward_char(0)" here,
1140 but it's not clear why, since it may not do anything anyway. */
1144 Lisp_Object tail
, frame
;
1146 FOR_EACH_FRAME (tail
, frame
)
1148 if ((FRAME_TERMCAP_P (XFRAME (frame
))
1149 || FRAME_MSDOS_P (XFRAME (frame
)))
1150 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1151 FRAME_GARBAGED_P (XFRAME (frame
)) = 1;
1155 tty_out
->term_initted
= 1;
1158 /* Return true if safe to use tabs in output.
1159 At the time this is called, init_sys_modes has not been done yet. */
1162 tabs_safe_p (int fd
)
1164 struct emacs_tty etty
;
1166 emacs_get_tty (fd
, &etty
);
1169 return ((etty
.main
.c_oflag
& TABDLY
) != TAB3
);
1170 #else /* not TABDLY */
1172 #endif /* not TABDLY */
1178 /* Discard echoing. */
1181 suppress_echo_on_tty (int fd
)
1183 struct emacs_tty etty
;
1185 emacs_get_tty (fd
, &etty
);
1187 /* Set raw input mode. */
1190 etty
.main
.c_lflag
&= ~ICANON
; /* Disable buffering */
1191 etty
.main
.c_lflag
&= ~ECHO
; /* Disable echoing */
1192 #endif /* ! WINDOWSNT */
1193 emacs_set_tty (fd
, &etty
, 0);
1196 /* Get terminal size from system.
1197 Store number of lines into *HEIGHTP and width into *WIDTHP.
1198 We store 0 if there's no valid information. */
1201 get_tty_size (int fd
, int *widthp
, int *heightp
)
1203 #if defined TIOCGWINSZ
1206 struct winsize size
;
1208 if (ioctl (fd
, TIOCGWINSZ
, &size
) == -1)
1209 *widthp
= *heightp
= 0;
1212 *widthp
= size
.ws_col
;
1213 *heightp
= size
.ws_row
;
1216 #elif defined TIOCGSIZE
1218 /* SunOS - style. */
1219 struct ttysize size
;
1221 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1222 *widthp
= *heightp
= 0;
1225 *widthp
= size
.ts_cols
;
1226 *heightp
= size
.ts_lines
;
1229 #elif defined WINDOWSNT
1231 CONSOLE_SCREEN_BUFFER_INFO info
;
1232 if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE
), &info
))
1234 *widthp
= info
.srWindow
.Right
- info
.srWindow
.Left
+ 1;
1235 *heightp
= info
.srWindow
.Bottom
- info
.srWindow
.Top
+ 1;
1238 *widthp
= *heightp
= 0;
1242 *widthp
= ScreenCols ();
1243 *heightp
= ScreenRows ();
1245 #else /* system doesn't know size */
1253 /* Set the logical window size associated with descriptor FD
1254 to HEIGHT and WIDTH. This is used mainly with ptys.
1255 Return a negative value on failure. */
1258 set_window_size (int fd
, int height
, int width
)
1263 struct winsize size
;
1264 size
.ws_row
= height
;
1265 size
.ws_col
= width
;
1267 return ioctl (fd
, TIOCSWINSZ
, &size
);
1272 /* SunOS - style. */
1273 struct ttysize size
;
1274 size
.ts_lines
= height
;
1275 size
.ts_cols
= width
;
1277 return ioctl (fd
, TIOCGSIZE
, &size
);
1280 #endif /* not SunOS-style */
1281 #endif /* not BSD-style */
1286 /* Prepare all terminal devices for exiting Emacs. */
1289 reset_all_sys_modes (void)
1291 struct tty_display_info
*tty
;
1292 for (tty
= tty_list
; tty
; tty
= tty
->next
)
1293 reset_sys_modes (tty
);
1296 /* Prepare the terminal for closing it; move the cursor to the
1297 bottom of the frame, turn off interrupt-driven I/O, etc. */
1300 reset_sys_modes (struct tty_display_info
*tty_out
)
1307 if (!tty_out
->term_initted
)
1310 if (!tty_out
->output
)
1311 return; /* The tty is suspended. */
1313 /* Go to and clear the last line of the terminal. */
1315 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1317 /* Code adapted from tty_clear_end_of_line. */
1318 if (tty_out
->TS_clr_line
)
1320 emacs_tputs (tty_out
, tty_out
->TS_clr_line
, 1, cmputc
);
1323 { /* have to do it the hard way */
1325 tty_turn_off_insert (tty_out
);
1327 for (i
= cursorX (tty_out
); i
< FrameCols (tty_out
) - 1; i
++)
1329 fputc (' ', tty_out
->output
);
1333 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1334 fflush (tty_out
->output
);
1336 if (tty_out
->terminal
->reset_terminal_modes_hook
)
1337 tty_out
->terminal
->reset_terminal_modes_hook (tty_out
->terminal
);
1339 /* Avoid possible loss of output when changing terminal modes. */
1340 while (fdatasync (fileno (tty_out
->output
)) != 0 && errno
== EINTR
)
1345 if (interrupt_input
)
1347 reset_sigio (fileno (tty_out
->input
));
1348 fcntl (fileno (tty_out
->input
), F_SETOWN
,
1349 old_fcntl_owner
[fileno (tty_out
->input
)]);
1351 #endif /* F_SETOWN */
1352 fcntl (fileno (tty_out
->input
), F_SETFL
,
1353 fcntl (fileno (tty_out
->input
), F_GETFL
, 0) & ~O_NONBLOCK
);
1356 if (tty_out
->old_tty
)
1357 while (emacs_set_tty (fileno (tty_out
->input
),
1358 tty_out
->old_tty
, 0) < 0 && errno
== EINTR
)
1361 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1365 widen_foreground_group (fileno (tty_out
->input
));
1370 /* Set up the proper status flags for use of a pty. */
1375 /* I'm told that TOICREMOTE does not mean control chars
1376 "can't be sent" but rather that they don't have
1377 input-editing or signaling effects.
1378 That should be good, because we have other ways
1379 to do those things in Emacs.
1380 However, telnet mode seems not to work on 4.2.
1381 So TIOCREMOTE is turned off now. */
1383 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1384 will hang. In particular, the "timeout" feature (which
1385 causes a read to return if there is no data available)
1386 does this. Also it is known that telnet mode will hang
1387 in such a way that Emacs must be stopped (perhaps this
1388 is the same problem).
1390 If TIOCREMOTE is turned off, then there is a bug in
1391 hp-ux which sometimes loses data. Apparently the
1392 code which blocks the master process when the internal
1393 buffer fills up does not work. Other than this,
1394 though, everything else seems to work fine.
1396 Since the latter lossage is more benign, we may as well
1397 lose that way. -- cph */
1399 #if defined (UNIX98_PTYS)
1402 ioctl (fd
, FIONBIO
, &on
);
1407 #endif /* HAVE_PTYS */
1410 #include <sys/socket.h>
1412 #endif /* HAVE_SOCKETS */
1415 #ifndef HAVE_H_ERRNO
1418 #endif /* TRY_AGAIN */
1421 init_system_name (void)
1423 #ifndef HAVE_GETHOSTNAME
1426 Vsystem_name
= build_string (uts
.nodename
);
1427 #else /* HAVE_GETHOSTNAME */
1428 char *hostname_alloc
= NULL
;
1429 char hostname_buf
[256];
1430 ptrdiff_t hostname_size
= sizeof hostname_buf
;
1431 char *hostname
= hostname_buf
;
1433 /* Try to get the host name; if the buffer is too short, try
1434 again. Apparently, the only indication gethostname gives of
1435 whether the buffer was large enough is the presence or absence
1436 of a '\0' in the string. Eech. */
1439 gethostname (hostname
, hostname_size
- 1);
1440 hostname
[hostname_size
- 1] = '\0';
1442 /* Was the buffer large enough for the '\0'? */
1443 if (strlen (hostname
) < hostname_size
- 1)
1446 hostname
= hostname_alloc
= xpalloc (hostname_alloc
, &hostname_size
, 1,
1447 min (PTRDIFF_MAX
, SIZE_MAX
), 1);
1450 /* Turn the hostname into the official, fully-qualified hostname.
1451 Don't do this if we're going to dump; this can confuse system
1452 libraries on some machines and make the dumped emacs core dump. */
1455 #endif /* not CANNOT_DUMP */
1456 if (! strchr (hostname
, '.'))
1459 #ifdef HAVE_GETADDRINFO
1460 struct addrinfo
*res
;
1461 struct addrinfo hints
;
1464 memset (&hints
, 0, sizeof (hints
));
1465 hints
.ai_socktype
= SOCK_STREAM
;
1466 hints
.ai_flags
= AI_CANONNAME
;
1468 for (count
= 0;; count
++)
1470 if ((ret
= getaddrinfo (hostname
, NULL
, &hints
, &res
)) == 0
1471 || ret
!= EAI_AGAIN
)
1476 Fsleep_for (make_number (1), Qnil
);
1481 struct addrinfo
*it
= res
;
1484 char *fqdn
= it
->ai_canonname
;
1485 if (fqdn
&& strchr (fqdn
, '.')
1486 && strcmp (fqdn
, "localhost.localdomain") != 0)
1492 ptrdiff_t len
= strlen (it
->ai_canonname
);
1493 if (hostname_size
<= len
)
1495 hostname_size
= len
+ 1;
1496 hostname
= hostname_alloc
= xrealloc (hostname_alloc
,
1499 strcpy (hostname
, it
->ai_canonname
);
1503 #else /* !HAVE_GETADDRINFO */
1505 for (count
= 0;; count
++)
1511 hp
= gethostbyname (hostname
);
1513 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
1520 Fsleep_for (make_number (1), Qnil
);
1525 char *fqdn
= (char *) hp
->h_name
;
1527 if (!strchr (fqdn
, '.'))
1529 /* We still don't have a fully qualified domain name.
1530 Try to find one in the list of alternate names */
1531 char **alias
= hp
->h_aliases
;
1533 && (!strchr (*alias
, '.')
1534 || !strcmp (*alias
, "localhost.localdomain")))
1541 #endif /* !HAVE_GETADDRINFO */
1543 #endif /* HAVE_SOCKETS */
1544 Vsystem_name
= build_string (hostname
);
1545 xfree (hostname_alloc
);
1546 #endif /* HAVE_GETHOSTNAME */
1549 for (p
= SSDATA (Vsystem_name
); *p
; p
++)
1550 if (*p
== ' ' || *p
== '\t')
1555 sigset_t empty_mask
;
1557 static struct sigaction process_fatal_action
;
1560 emacs_sigaction_flags (void)
1563 /* SA_RESTART causes interruptible functions with timeouts (e.g.,
1564 'select') to reset their timeout on some platforms (e.g.,
1565 HP-UX 11), which is not what we want. Also, when Emacs is
1566 interactive, we don't want SA_RESTART because we need to poll
1567 for pending input so we need long-running syscalls to be interrupted
1568 after a signal that sets pending_signals.
1570 Non-interactive keyboard input goes through stdio, where we
1571 always want restartable system calls. */
1578 /* Store into *ACTION a signal action suitable for Emacs, with handler
1581 emacs_sigaction_init (struct sigaction
*action
, signal_handler_t handler
)
1583 sigemptyset (&action
->sa_mask
);
1585 /* When handling a signal, block nonfatal system signals that are caught
1586 by Emacs. This makes race conditions less likely. */
1587 sigaddset (&action
->sa_mask
, SIGALRM
);
1589 sigaddset (&action
->sa_mask
, SIGCHLD
);
1592 sigaddset (&action
->sa_mask
, SIGDANGER
);
1594 #ifdef PROFILER_CPU_SUPPORT
1595 sigaddset (&action
->sa_mask
, SIGPROF
);
1598 sigaddset (&action
->sa_mask
, SIGWINCH
);
1600 if (! noninteractive
)
1602 sigaddset (&action
->sa_mask
, SIGINT
);
1603 sigaddset (&action
->sa_mask
, SIGQUIT
);
1605 sigaddset (&action
->sa_mask
, SIGIO
);
1609 action
->sa_handler
= handler
;
1610 action
->sa_flags
= emacs_sigaction_flags ();
1613 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1614 static pthread_t main_thread
;
1617 /* SIG has arrived at the current process. Deliver it to the main
1618 thread, which should handle it with HANDLER.
1620 If we are on the main thread, handle the signal SIG with HANDLER.
1621 Otherwise, redirect the signal to the main thread, blocking it from
1622 this thread. POSIX says any thread can receive a signal that is
1623 associated with a process, process group, or asynchronous event.
1624 On GNU/Linux that is not true, but for other systems (FreeBSD at
1627 deliver_process_signal (int sig
, signal_handler_t handler
)
1629 /* Preserve errno, to avoid race conditions with signal handlers that
1630 might change errno. Races can occur even in single-threaded hosts. */
1631 int old_errno
= errno
;
1633 bool on_main_thread
= true;
1634 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1635 if (! pthread_equal (pthread_self (), main_thread
))
1638 sigemptyset (&blocked
);
1639 sigaddset (&blocked
, sig
);
1640 pthread_sigmask (SIG_BLOCK
, &blocked
, 0);
1641 pthread_kill (main_thread
, sig
);
1642 on_main_thread
= false;
1651 /* Static location to save a fatal backtrace in a thread.
1652 FIXME: If two subsidiary threads fail simultaneously, the resulting
1653 backtrace may be garbage. */
1654 enum { BACKTRACE_LIMIT_MAX
= 500 };
1655 static void *thread_backtrace_buffer
[BACKTRACE_LIMIT_MAX
+ 1];
1656 static int thread_backtrace_npointers
;
1658 /* SIG has arrived at the current thread.
1659 If we are on the main thread, handle the signal SIG with HANDLER.
1660 Otherwise, this is a fatal error in the handling thread. */
1662 deliver_thread_signal (int sig
, signal_handler_t handler
)
1664 int old_errno
= errno
;
1666 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1667 if (! pthread_equal (pthread_self (), main_thread
))
1669 thread_backtrace_npointers
1670 = backtrace (thread_backtrace_buffer
, BACKTRACE_LIMIT_MAX
);
1671 sigaction (sig
, &process_fatal_action
, 0);
1672 pthread_kill (main_thread
, sig
);
1674 /* Avoid further damage while the main thread is exiting. */
1676 sigsuspend (&empty_mask
);
1684 #if !HAVE_DECL_SYS_SIGLIST
1686 # ifdef _sys_siglist
1687 # define sys_siglist _sys_siglist
1688 # elif HAVE_DECL___SYS_SIGLIST
1689 # define sys_siglist __sys_siglist
1691 # define sys_siglist my_sys_siglist
1692 static char const *sys_siglist
[NSIG
];
1697 # define sys_siglist_entries _sys_nsig
1699 # define sys_siglist_entries NSIG
1702 /* Handle bus errors, invalid instruction, etc. */
1704 handle_fatal_signal (int sig
)
1706 terminate_due_to_signal (sig
, 40);
1710 deliver_fatal_signal (int sig
)
1712 deliver_process_signal (sig
, handle_fatal_signal
);
1716 deliver_fatal_thread_signal (int sig
)
1718 deliver_thread_signal (sig
, handle_fatal_signal
);
1721 static _Noreturn
void
1722 handle_arith_signal (int sig
)
1724 pthread_sigmask (SIG_SETMASK
, &empty_mask
, 0);
1725 xsignal0 (Qarith_error
);
1728 #ifdef HAVE_STACK_OVERFLOW_HANDLING
1730 /* -1 if stack grows down as expected on most OS/ABI variants, 1 otherwise. */
1732 static int stack_direction
;
1734 /* Alternate stack used by SIGSEGV handler below. */
1736 static unsigned char sigsegv_stack
[SIGSTKSZ
];
1738 /* Attempt to recover from SIGSEGV caused by C stack overflow. */
1741 handle_sigsegv (int sig
, siginfo_t
*siginfo
, void *arg
)
1743 /* Hard GC error may lead to stack overflow caused by
1744 too nested calls to mark_object. No way to survive. */
1745 if (!gc_in_progress
)
1749 if (!getrlimit (RLIMIT_STACK
, &rlim
))
1751 enum { STACK_DANGER_ZONE
= 16 * 1024 };
1752 char *beg
, *end
, *addr
;
1755 end
= stack_bottom
+ stack_direction
* rlim
.rlim_cur
;
1757 addr
= beg
, beg
= end
, end
= addr
;
1758 addr
= (char *) siginfo
->si_addr
;
1759 /* If we're somewhere on stack and too close to
1760 one of its boundaries, most likely this is it. */
1761 if (beg
< addr
&& addr
< end
1762 && (addr
- beg
< STACK_DANGER_ZONE
1763 || end
- addr
< STACK_DANGER_ZONE
))
1764 siglongjmp (return_to_command_loop
, 1);
1768 /* Otherwise we can't do anything with this. */
1769 deliver_fatal_thread_signal (sig
);
1772 /* Return true if we have successfully set up SIGSEGV handler on alternate
1773 stack. Otherwise we just treat SIGSEGV among the rest of fatal signals. */
1778 struct sigaction sa
;
1781 stack_direction
= ((char *) &ss
< stack_bottom
) ? -1 : 1;
1783 ss
.ss_sp
= sigsegv_stack
;
1784 ss
.ss_size
= sizeof (sigsegv_stack
);
1786 if (sigaltstack (&ss
, NULL
) < 0)
1789 sigfillset (&sa
.sa_mask
);
1790 sa
.sa_sigaction
= handle_sigsegv
;
1791 sa
.sa_flags
= SA_SIGINFO
| SA_ONSTACK
| emacs_sigaction_flags ();
1792 return sigaction (SIGSEGV
, &sa
, NULL
) < 0 ? 0 : 1;
1795 #else /* not HAVE_STACK_OVERFLOW_HANDLING */
1803 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
1806 deliver_arith_signal (int sig
)
1808 deliver_thread_signal (sig
, handle_arith_signal
);
1813 /* Handler for SIGDANGER. */
1815 handle_danger_signal (int sig
)
1817 malloc_warning ("Operating system warns that virtual memory is running low.\n");
1819 /* It might be unsafe to call do_auto_save now. */
1820 force_auto_save_soon ();
1824 deliver_danger_signal (int sig
)
1826 deliver_process_signal (sig
, handle_danger_signal
);
1830 /* Treat SIG as a terminating signal, unless it is already ignored and
1831 we are in --batch mode. Among other things, this makes nohup work. */
1833 maybe_fatal_sig (int sig
)
1835 bool catch_sig
= !noninteractive
;
1838 struct sigaction old_action
;
1839 sigaction (sig
, 0, &old_action
);
1840 catch_sig
= old_action
.sa_handler
!= SIG_IGN
;
1843 sigaction (sig
, &process_fatal_action
, 0);
1847 init_signals (bool dumping
)
1849 struct sigaction thread_fatal_action
;
1850 struct sigaction action
;
1852 sigemptyset (&empty_mask
);
1854 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1855 main_thread
= pthread_self ();
1858 #if !HAVE_DECL_SYS_SIGLIST && !defined _sys_siglist
1861 sys_siglist
[SIGABRT
] = "Aborted";
1863 sys_siglist
[SIGAIO
] = "LAN I/O interrupt";
1865 sys_siglist
[SIGALRM
] = "Alarm clock";
1867 sys_siglist
[SIGBUS
] = "Bus error";
1870 sys_siglist
[SIGCHLD
] = "Child status changed";
1873 sys_siglist
[SIGCONT
] = "Continued";
1876 sys_siglist
[SIGDANGER
] = "Swap space dangerously low";
1879 sys_siglist
[SIGDGNOTIFY
] = "Notification message in queue";
1882 sys_siglist
[SIGEMT
] = "Emulation trap";
1884 sys_siglist
[SIGFPE
] = "Arithmetic exception";
1886 sys_siglist
[SIGFREEZE
] = "SIGFREEZE";
1889 sys_siglist
[SIGGRANT
] = "Monitor mode granted";
1891 sys_siglist
[SIGHUP
] = "Hangup";
1892 sys_siglist
[SIGILL
] = "Illegal instruction";
1893 sys_siglist
[SIGINT
] = "Interrupt";
1895 sys_siglist
[SIGIO
] = "I/O possible";
1898 sys_siglist
[SIGIOINT
] = "I/O intervention required";
1901 sys_siglist
[SIGIOT
] = "IOT trap";
1903 sys_siglist
[SIGKILL
] = "Killed";
1905 sys_siglist
[SIGLOST
] = "Resource lost";
1908 sys_siglist
[SIGLWP
] = "SIGLWP";
1911 sys_siglist
[SIGMSG
] = "Monitor mode data available";
1914 sys_siglist
[SIGWIND
] = "SIGPHONE";
1916 sys_siglist
[SIGPIPE
] = "Broken pipe";
1918 sys_siglist
[SIGPOLL
] = "Pollable event occurred";
1921 sys_siglist
[SIGPROF
] = "Profiling timer expired";
1924 sys_siglist
[SIGPTY
] = "PTY I/O interrupt";
1927 sys_siglist
[SIGPWR
] = "Power-fail restart";
1929 sys_siglist
[SIGQUIT
] = "Quit";
1931 sys_siglist
[SIGRETRACT
] = "Need to relinquish monitor mode";
1934 sys_siglist
[SIGSAK
] = "Secure attention";
1936 sys_siglist
[SIGSEGV
] = "Segmentation violation";
1938 sys_siglist
[SIGSOUND
] = "Sound completed";
1941 sys_siglist
[SIGSTOP
] = "Stopped (signal)";
1944 sys_siglist
[SIGSTP
] = "Stopped (user)";
1947 sys_siglist
[SIGSYS
] = "Bad argument to system call";
1949 sys_siglist
[SIGTERM
] = "Terminated";
1951 sys_siglist
[SIGTHAW
] = "SIGTHAW";
1954 sys_siglist
[SIGTRAP
] = "Trace/breakpoint trap";
1957 sys_siglist
[SIGTSTP
] = "Stopped (user)";
1960 sys_siglist
[SIGTTIN
] = "Stopped (tty input)";
1963 sys_siglist
[SIGTTOU
] = "Stopped (tty output)";
1966 sys_siglist
[SIGURG
] = "Urgent I/O condition";
1969 sys_siglist
[SIGUSR1
] = "User defined signal 1";
1972 sys_siglist
[SIGUSR2
] = "User defined signal 2";
1975 sys_siglist
[SIGVTALRM
] = "Virtual timer expired";
1978 sys_siglist
[SIGWAITING
] = "Process's LWPs are blocked";
1981 sys_siglist
[SIGWINCH
] = "Window size changed";
1984 sys_siglist
[SIGWIND
] = "SIGWIND";
1987 sys_siglist
[SIGXCPU
] = "CPU time limit exceeded";
1990 sys_siglist
[SIGXFSZ
] = "File size limit exceeded";
1993 #endif /* !HAVE_DECL_SYS_SIGLIST && !_sys_siglist */
1995 /* Don't alter signal handlers if dumping. On some machines,
1996 changing signal handlers sets static data that would make signals
1997 fail to work right when the dumped Emacs is run. */
2001 sigfillset (&process_fatal_action
.sa_mask
);
2002 process_fatal_action
.sa_handler
= deliver_fatal_signal
;
2003 process_fatal_action
.sa_flags
= emacs_sigaction_flags ();
2005 sigfillset (&thread_fatal_action
.sa_mask
);
2006 thread_fatal_action
.sa_handler
= deliver_fatal_thread_signal
;
2007 thread_fatal_action
.sa_flags
= process_fatal_action
.sa_flags
;
2009 /* SIGINT may need special treatment on MS-Windows. See
2010 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
2011 Please update the doc of kill-emacs, kill-emacs-hook, and
2012 NEWS if you change this. */
2014 maybe_fatal_sig (SIGHUP
);
2015 maybe_fatal_sig (SIGINT
);
2016 maybe_fatal_sig (SIGTERM
);
2018 /* Emacs checks for write errors, so it can safely ignore SIGPIPE.
2019 However, in batch mode leave SIGPIPE alone, as that causes Emacs
2020 to behave more like typical batch applications do. */
2021 if (! noninteractive
)
2022 signal (SIGPIPE
, SIG_IGN
);
2024 sigaction (SIGQUIT
, &process_fatal_action
, 0);
2025 sigaction (SIGILL
, &thread_fatal_action
, 0);
2026 sigaction (SIGTRAP
, &thread_fatal_action
, 0);
2028 /* Typically SIGFPE is thread-specific and is fatal, like SIGILL.
2029 But on a non-IEEE host SIGFPE can come from a trap in the Lisp
2030 interpreter's floating point operations, so treat SIGFPE as an
2031 arith-error if it arises in the main thread. */
2032 if (IEEE_FLOATING_POINT
)
2033 sigaction (SIGFPE
, &thread_fatal_action
, 0);
2036 emacs_sigaction_init (&action
, deliver_arith_signal
);
2037 sigaction (SIGFPE
, &action
, 0);
2041 add_user_signal (SIGUSR1
, "sigusr1");
2044 add_user_signal (SIGUSR2
, "sigusr2");
2046 sigaction (SIGABRT
, &thread_fatal_action
, 0);
2048 sigaction (SIGPRE
, &thread_fatal_action
, 0);
2051 sigaction (SIGORE
, &thread_fatal_action
, 0);
2054 sigaction (SIGUME
, &thread_fatal_action
, 0);
2057 sigaction (SIGDLK
, &process_fatal_action
, 0);
2060 sigaction (SIGCPULIM
, &process_fatal_action
, 0);
2063 sigaction (SIGIOT
, &thread_fatal_action
, 0);
2066 sigaction (SIGEMT
, &thread_fatal_action
, 0);
2069 sigaction (SIGBUS
, &thread_fatal_action
, 0);
2071 if (!init_sigsegv ())
2072 sigaction (SIGSEGV
, &thread_fatal_action
, 0);
2074 sigaction (SIGSYS
, &thread_fatal_action
, 0);
2076 sigaction (SIGTERM
, &process_fatal_action
, 0);
2078 signal (SIGPROF
, SIG_IGN
);
2081 sigaction (SIGVTALRM
, &process_fatal_action
, 0);
2084 sigaction (SIGXCPU
, &process_fatal_action
, 0);
2087 sigaction (SIGXFSZ
, &process_fatal_action
, 0);
2091 /* This just means available memory is getting low. */
2092 emacs_sigaction_init (&action
, deliver_danger_signal
);
2093 sigaction (SIGDANGER
, &action
, 0);
2096 /* AIX-specific signals. */
2098 sigaction (SIGGRANT
, &process_fatal_action
, 0);
2101 sigaction (SIGMIGRATE
, &process_fatal_action
, 0);
2104 sigaction (SIGMSG
, &process_fatal_action
, 0);
2107 sigaction (SIGRETRACT
, &process_fatal_action
, 0);
2110 sigaction (SIGSAK
, &process_fatal_action
, 0);
2113 sigaction (SIGSOUND
, &process_fatal_action
, 0);
2116 sigaction (SIGTALRM
, &thread_fatal_action
, 0);
2126 /* Figure out how many bits the system's random number generator uses.
2127 `random' and `lrand48' are assumed to return 31 usable bits.
2128 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2129 so we'll shift it and treat it like the 15-bit USG `rand'. */
2133 # define RAND_BITS 31
2134 # else /* !HAVE_RANDOM */
2135 # ifdef HAVE_LRAND48
2136 # define RAND_BITS 31
2137 # define random lrand48
2138 # else /* !HAVE_LRAND48 */
2139 # define RAND_BITS 15
2140 # if RAND_MAX == 32767
2141 # define random rand
2142 # else /* RAND_MAX != 32767 */
2143 # if RAND_MAX == 2147483647
2144 # define random() (rand () >> 16)
2145 # else /* RAND_MAX != 2147483647 */
2147 # define random rand
2149 # define random() (rand () >> 16)
2151 # endif /* RAND_MAX != 2147483647 */
2152 # endif /* RAND_MAX != 32767 */
2153 # endif /* !HAVE_LRAND48 */
2154 # endif /* !HAVE_RANDOM */
2155 #endif /* !RAND_BITS */
2158 seed_random (void *seed
, ptrdiff_t seed_size
)
2160 #if defined HAVE_RANDOM || ! defined HAVE_LRAND48
2161 unsigned int arg
= 0;
2165 unsigned char *argp
= (unsigned char *) &arg
;
2166 unsigned char *seedp
= seed
;
2168 for (i
= 0; i
< seed_size
; i
++)
2169 argp
[i
% sizeof arg
] ^= seedp
[i
];
2173 # ifdef HAVE_LRAND48
2184 struct timespec t
= current_timespec ();
2185 uintmax_t v
= getpid () ^ t
.tv_sec
^ t
.tv_nsec
;
2186 seed_random (&v
, sizeof v
);
2190 * Return a nonnegative random integer out of whatever we've got.
2191 * It contains enough bits to make a random (signed) Emacs fixnum.
2192 * This suffices even for a 64-bit architecture with a 15-bit rand.
2199 for (i
= 0; i
< (FIXNUM_BITS
+ RAND_BITS
- 1) / RAND_BITS
; i
++)
2200 val
= (random () ^ (val
<< RAND_BITS
)
2201 ^ (val
>> (BITS_PER_EMACS_INT
- RAND_BITS
)));
2202 val
^= val
>> (BITS_PER_EMACS_INT
- FIXNUM_BITS
);
2203 return val
& INTMASK
;
2206 #ifndef HAVE_SNPRINTF
2207 /* Approximate snprintf as best we can on ancient hosts that lack it. */
2209 snprintf (char *buf
, size_t bufsize
, char const *format
, ...)
2211 ptrdiff_t size
= min (bufsize
, PTRDIFF_MAX
);
2212 ptrdiff_t nbytes
= size
- 1;
2217 va_start (ap
, format
);
2218 nbytes
= doprnt (buf
, size
, format
, 0, ap
);
2222 if (nbytes
== size
- 1)
2224 /* Calculate the length of the string that would have been created
2225 had the buffer been large enough. */
2226 char stackbuf
[4000];
2228 ptrdiff_t bsize
= sizeof stackbuf
;
2229 va_start (ap
, format
);
2230 nbytes
= evxprintf (&b
, &bsize
, stackbuf
, -1, format
, ap
);
2236 if (INT_MAX
< nbytes
)
2249 /* If a backtrace is available, output the top lines of it to stderr.
2250 Do not output more than BACKTRACE_LIMIT or BACKTRACE_LIMIT_MAX lines.
2251 This function may be called from a signal handler, so it should
2252 not invoke async-unsafe functions like malloc. */
2254 emacs_backtrace (int backtrace_limit
)
2256 void *main_backtrace_buffer
[BACKTRACE_LIMIT_MAX
+ 1];
2257 int bounded_limit
= min (backtrace_limit
, BACKTRACE_LIMIT_MAX
);
2261 if (thread_backtrace_npointers
)
2263 buffer
= thread_backtrace_buffer
;
2264 npointers
= thread_backtrace_npointers
;
2268 buffer
= main_backtrace_buffer
;
2269 npointers
= backtrace (buffer
, bounded_limit
+ 1);
2274 emacs_write (STDERR_FILENO
, "\nBacktrace:\n", 12);
2275 backtrace_symbols_fd (buffer
, npointers
, STDERR_FILENO
);
2276 if (bounded_limit
< npointers
)
2277 emacs_write (STDERR_FILENO
, "...\n", 4);
2285 terminate_due_to_signal (SIGABRT
, 40);
2289 /* Open FILE for Emacs use, using open flags OFLAG and mode MODE.
2290 Use binary I/O on systems that care about text vs binary I/O.
2291 Arrange for subprograms to not inherit the file descriptor.
2292 Prefer a method that is multithread-safe, if available.
2293 Do not fail merely because the open was interrupted by a signal.
2294 Allow the user to quit. */
2297 emacs_open (const char *file
, int oflags
, int mode
)
2300 if (! (oflags
& O_TEXT
))
2302 oflags
|= O_CLOEXEC
;
2303 while ((fd
= open (file
, oflags
, mode
)) < 0 && errno
== EINTR
)
2305 if (! O_CLOEXEC
&& 0 <= fd
)
2306 fcntl (fd
, F_SETFD
, FD_CLOEXEC
);
2310 /* Open FILE as a stream for Emacs use, with mode MODE.
2311 Act like emacs_open with respect to threads, signals, and quits. */
2314 emacs_fopen (char const *file
, char const *mode
)
2316 int fd
, omode
, oflags
;
2318 char const *m
= mode
;
2322 case 'r': omode
= O_RDONLY
; oflags
= 0; break;
2323 case 'w': omode
= O_WRONLY
; oflags
= O_CREAT
| O_TRUNC
; break;
2324 case 'a': omode
= O_WRONLY
; oflags
= O_CREAT
| O_APPEND
; break;
2325 default: emacs_abort ();
2331 case '+': omode
= O_RDWR
; break;
2332 case 'b': bflag
= O_BINARY
; break;
2333 case 't': bflag
= O_TEXT
; break;
2334 default: /* Ignore. */ break;
2337 fd
= emacs_open (file
, omode
| oflags
| bflag
, 0666);
2338 return fd
< 0 ? 0 : fdopen (fd
, mode
);
2341 /* Create a pipe for Emacs use. */
2344 emacs_pipe (int fd
[2])
2349 int result
= pipe2 (fd
, O_BINARY
| O_CLOEXEC
);
2350 if (! O_CLOEXEC
&& result
== 0)
2352 fcntl (fd
[0], F_SETFD
, FD_CLOEXEC
);
2353 fcntl (fd
[1], F_SETFD
, FD_CLOEXEC
);
2359 /* Approximate posix_close and POSIX_CLOSE_RESTART well enough for Emacs.
2360 For the background behind this mess, please see Austin Group defect 529
2361 <http://austingroupbugs.net/view.php?id=529>. */
2363 #ifndef POSIX_CLOSE_RESTART
2364 # define POSIX_CLOSE_RESTART 1
2366 posix_close (int fd
, int flag
)
2368 /* Only the POSIX_CLOSE_RESTART case is emulated. */
2369 eassert (flag
== POSIX_CLOSE_RESTART
);
2371 /* Things are tricky if close (fd) returns -1 with errno == EINTR
2372 on a system that does not define POSIX_CLOSE_RESTART.
2374 In this case, in some systems (e.g., GNU/Linux, AIX) FD is
2375 closed, and retrying the close could inadvertently close a file
2376 descriptor allocated by some other thread. In other systems
2377 (e.g., HP/UX) FD is not closed. And in still other systems
2378 (e.g., OS X, Solaris), maybe FD is closed, maybe not, and in a
2379 multithreaded program there can be no way to tell.
2381 So, in this case, pretend that the close succeeded. This works
2382 well on systems like GNU/Linux that close FD. Although it may
2383 leak a file descriptor on other systems, the leak is unlikely and
2384 it's better to leak than to close a random victim. */
2385 return close (fd
) == 0 || errno
== EINTR
? 0 : -1;
2389 /* Close FD, retrying if interrupted. If successful, return 0;
2390 otherwise, return -1 and set errno to a non-EINTR value. Consider
2391 an EINPROGRESS error to be successful, as that's merely a signal
2392 arriving. FD is always closed when this function returns, even
2395 Do not call this function if FD is nonnegative and might already be closed,
2396 as that might close an innocent victim opened by some other thread. */
2399 emacs_close (int fd
)
2403 int r
= posix_close (fd
, POSIX_CLOSE_RESTART
);
2406 if (!POSIX_CLOSE_RESTART
|| errno
!= EINTR
)
2408 eassert (errno
!= EBADF
|| fd
< 0);
2409 return errno
== EINPROGRESS
? 0 : r
;
2414 /* Maximum number of bytes to read or write in a single system call.
2415 This works around a serious bug in Linux kernels before 2.6.16; see
2416 <https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=612839>.
2417 It's likely to work around similar bugs in other operating systems, so do it
2418 on all platforms. Round INT_MAX down to a page size, with the conservative
2419 assumption that page sizes are at most 2**18 bytes (any kernel with a
2420 page size larger than that shouldn't have the bug). */
2421 #ifndef MAX_RW_COUNT
2422 #define MAX_RW_COUNT (INT_MAX >> 18 << 18)
2425 /* Read from FILEDESC to a buffer BUF with size NBYTE, retrying if interrupted.
2426 Return the number of bytes read, which might be less than NBYTE.
2427 On error, set errno and return -1. */
2429 emacs_read (int fildes
, void *buf
, ptrdiff_t nbyte
)
2433 /* There is no need to check against MAX_RW_COUNT, since no caller ever
2434 passes a size that large to emacs_read. */
2436 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
2437 && (errno
== EINTR
))
2442 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if interrupted
2443 or if a partial write occurs. If interrupted, process pending
2444 signals if PROCESS SIGNALS. Return the number of bytes written, setting
2445 errno if this is less than NBYTE. */
2447 emacs_full_write (int fildes
, char const *buf
, ptrdiff_t nbyte
,
2448 bool process_signals
)
2450 ptrdiff_t bytes_written
= 0;
2454 ssize_t n
= write (fildes
, buf
, min (nbyte
, MAX_RW_COUNT
));
2460 /* I originally used `QUIT' but that might cause files to
2461 be truncated if you hit C-g in the middle of it. --Stef */
2462 if (process_signals
&& pending_signals
)
2463 process_pending_signals ();
2475 return bytes_written
;
2478 /* Write to FILEDES from a buffer BUF with size NBYTE, retrying if
2479 interrupted or if a partial write occurs. Return the number of
2480 bytes written, setting errno if this is less than NBYTE. */
2482 emacs_write (int fildes
, void const *buf
, ptrdiff_t nbyte
)
2484 return emacs_full_write (fildes
, buf
, nbyte
, 0);
2487 /* Like emacs_write, but also process pending signals if interrupted. */
2489 emacs_write_sig (int fildes
, void const *buf
, ptrdiff_t nbyte
)
2491 return emacs_full_write (fildes
, buf
, nbyte
, 1);
2494 /* Write a diagnostic to standard error that contains MESSAGE and a
2495 string derived from errno. Preserve errno. Do not buffer stderr.
2496 Do not process pending signals if interrupted. */
2498 emacs_perror (char const *message
)
2501 char const *error_string
= strerror (err
);
2502 char const *command
= (initial_argv
&& initial_argv
[0]
2503 ? initial_argv
[0] : "emacs");
2504 /* Write it out all at once, if it's short; this is less likely to
2505 be interleaved with other output. */
2507 int nbytes
= snprintf (buf
, sizeof buf
, "%s: %s: %s\n",
2508 command
, message
, error_string
);
2509 if (0 <= nbytes
&& nbytes
< BUFSIZ
)
2510 emacs_write (STDERR_FILENO
, buf
, nbytes
);
2513 emacs_write (STDERR_FILENO
, command
, strlen (command
));
2514 emacs_write (STDERR_FILENO
, ": ", 2);
2515 emacs_write (STDERR_FILENO
, message
, strlen (message
));
2516 emacs_write (STDERR_FILENO
, ": ", 2);
2517 emacs_write (STDERR_FILENO
, error_string
, strlen (error_string
));
2518 emacs_write (STDERR_FILENO
, "\n", 1);
2523 /* Return a struct timeval that is roughly equivalent to T.
2524 Use the least timeval not less than T.
2525 Return an extremal value if the result would overflow. */
2527 make_timeval (struct timespec t
)
2530 tv
.tv_sec
= t
.tv_sec
;
2531 tv
.tv_usec
= t
.tv_nsec
/ 1000;
2533 if (t
.tv_nsec
% 1000 != 0)
2535 if (tv
.tv_usec
< 999999)
2537 else if (tv
.tv_sec
< TYPE_MAXIMUM (time_t))
2547 /* Set the access and modification time stamps of FD (a.k.a. FILE) to be
2548 ATIME and MTIME, respectively.
2549 FD must be either negative -- in which case it is ignored --
2550 or a file descriptor that is open on FILE.
2551 If FD is nonnegative, then FILE can be NULL. */
2553 set_file_times (int fd
, const char *filename
,
2554 struct timespec atime
, struct timespec mtime
)
2556 struct timespec timespec
[2];
2557 timespec
[0] = atime
;
2558 timespec
[1] = mtime
;
2559 return fdutimens (fd
, filename
, timespec
);
2562 /* Like strsignal, except async-signal-safe, and this function typically
2563 returns a string in the C locale rather than the current locale. */
2565 safe_strsignal (int code
)
2567 char const *signame
= 0;
2569 if (0 <= code
&& code
< sys_siglist_entries
)
2570 signame
= sys_siglist
[code
];
2572 signame
= "Unknown signal";
2578 /* For make-serial-process */
2580 serial_open (Lisp_Object port
)
2582 int fd
= emacs_open (SSDATA (port
), O_RDWR
| O_NOCTTY
| O_NONBLOCK
, 0);
2584 report_file_error ("Opening serial port", port
);
2586 ioctl (fd
, TIOCEXCL
, (char *) 0);
2592 #if !defined (HAVE_CFMAKERAW)
2593 /* Workaround for targets which are missing cfmakeraw. */
2594 /* Pasted from man page. */
2596 cfmakeraw (struct termios
*termios_p
)
2598 termios_p
->c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
);
2599 termios_p
->c_oflag
&= ~OPOST
;
2600 termios_p
->c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|ISIG
|IEXTEN
);
2601 termios_p
->c_cflag
&= ~(CSIZE
|PARENB
);
2602 termios_p
->c_cflag
|= CS8
;
2604 #endif /* !defined (HAVE_CFMAKERAW */
2606 #if !defined (HAVE_CFSETSPEED)
2607 /* Workaround for targets which are missing cfsetspeed. */
2609 cfsetspeed (struct termios
*termios_p
, speed_t vitesse
)
2611 return (cfsetispeed (termios_p
, vitesse
)
2612 + cfsetospeed (termios_p
, vitesse
));
2616 /* For serial-process-configure */
2618 serial_configure (struct Lisp_Process
*p
,
2619 Lisp_Object contact
)
2621 Lisp_Object childp2
= Qnil
;
2622 Lisp_Object tem
= Qnil
;
2623 struct termios attr
;
2625 char summary
[4] = "???"; /* This usually becomes "8N1". */
2627 childp2
= Fcopy_sequence (p
->childp
);
2629 /* Read port attributes and prepare default configuration. */
2630 err
= tcgetattr (p
->outfd
, &attr
);
2632 report_file_error ("Failed tcgetattr", Qnil
);
2634 #if defined (CLOCAL)
2635 attr
.c_cflag
|= CLOCAL
;
2638 attr
.c_cflag
|= CREAD
;
2641 /* Configure speed. */
2642 if (!NILP (Fplist_member (contact
, QCspeed
)))
2643 tem
= Fplist_get (contact
, QCspeed
);
2645 tem
= Fplist_get (p
->childp
, QCspeed
);
2647 err
= cfsetspeed (&attr
, XINT (tem
));
2649 report_file_error ("Failed cfsetspeed", tem
);
2650 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
2652 /* Configure bytesize. */
2653 if (!NILP (Fplist_member (contact
, QCbytesize
)))
2654 tem
= Fplist_get (contact
, QCbytesize
);
2656 tem
= Fplist_get (p
->childp
, QCbytesize
);
2658 tem
= make_number (8);
2660 if (XINT (tem
) != 7 && XINT (tem
) != 8)
2661 error (":bytesize must be nil (8), 7, or 8");
2662 summary
[0] = XINT (tem
) + '0';
2663 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2664 attr
.c_cflag
&= ~CSIZE
;
2665 attr
.c_cflag
|= ((XINT (tem
) == 7) ? CS7
: CS8
);
2667 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2668 if (XINT (tem
) != 8)
2669 error ("Bytesize cannot be changed");
2671 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
2673 /* Configure parity. */
2674 if (!NILP (Fplist_member (contact
, QCparity
)))
2675 tem
= Fplist_get (contact
, QCparity
);
2677 tem
= Fplist_get (p
->childp
, QCparity
);
2678 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
2679 error (":parity must be nil (no parity), `even', or `odd'");
2680 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2681 attr
.c_cflag
&= ~(PARENB
| PARODD
);
2682 attr
.c_iflag
&= ~(IGNPAR
| INPCK
);
2687 else if (EQ (tem
, Qeven
))
2690 attr
.c_cflag
|= PARENB
;
2691 attr
.c_iflag
|= (IGNPAR
| INPCK
);
2693 else if (EQ (tem
, Qodd
))
2696 attr
.c_cflag
|= (PARENB
| PARODD
);
2697 attr
.c_iflag
|= (IGNPAR
| INPCK
);
2700 /* Don't error on no parity, which should be set by cfmakeraw. */
2702 error ("Parity cannot be configured");
2704 childp2
= Fplist_put (childp2
, QCparity
, tem
);
2706 /* Configure stopbits. */
2707 if (!NILP (Fplist_member (contact
, QCstopbits
)))
2708 tem
= Fplist_get (contact
, QCstopbits
);
2710 tem
= Fplist_get (p
->childp
, QCstopbits
);
2712 tem
= make_number (1);
2714 if (XINT (tem
) != 1 && XINT (tem
) != 2)
2715 error (":stopbits must be nil (1 stopbit), 1, or 2");
2716 summary
[2] = XINT (tem
) + '0';
2717 #if defined (CSTOPB)
2718 attr
.c_cflag
&= ~CSTOPB
;
2719 if (XINT (tem
) == 2)
2720 attr
.c_cflag
|= CSTOPB
;
2722 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2723 if (XINT (tem
) != 1)
2724 error ("Stopbits cannot be configured");
2726 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
2728 /* Configure flowcontrol. */
2729 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
2730 tem
= Fplist_get (contact
, QCflowcontrol
);
2732 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
2733 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
2734 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2735 #if defined (CRTSCTS)
2736 attr
.c_cflag
&= ~CRTSCTS
;
2738 #if defined (CNEW_RTSCTS)
2739 attr
.c_cflag
&= ~CNEW_RTSCTS
;
2741 #if defined (IXON) && defined (IXOFF)
2742 attr
.c_iflag
&= ~(IXON
| IXOFF
);
2746 /* Already configured. */
2748 else if (EQ (tem
, Qhw
))
2750 #if defined (CRTSCTS)
2751 attr
.c_cflag
|= CRTSCTS
;
2752 #elif defined (CNEW_RTSCTS)
2753 attr
.c_cflag
|= CNEW_RTSCTS
;
2755 error ("Hardware flowcontrol (RTS/CTS) not supported");
2758 else if (EQ (tem
, Qsw
))
2760 #if defined (IXON) && defined (IXOFF)
2761 attr
.c_iflag
|= (IXON
| IXOFF
);
2763 error ("Software flowcontrol (XON/XOFF) not supported");
2766 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
2768 /* Activate configuration. */
2769 err
= tcsetattr (p
->outfd
, TCSANOW
, &attr
);
2771 report_file_error ("Failed tcsetattr", Qnil
);
2773 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
2774 pset_childp (p
, childp2
);
2776 #endif /* not DOS_NT */
2778 /* System depended enumeration of and access to system processes a-la ps(1). */
2782 /* Process enumeration and access via /proc. */
2785 list_system_processes (void)
2787 Lisp_Object procdir
, match
, proclist
, next
;
2788 struct gcpro gcpro1
, gcpro2
;
2789 register Lisp_Object tail
;
2791 GCPRO2 (procdir
, match
);
2792 /* For every process on the system, there's a directory in the
2793 "/proc" pseudo-directory whose name is the numeric ID of that
2795 procdir
= build_string ("/proc");
2796 match
= build_string ("[0-9]+");
2797 proclist
= directory_files_internal (procdir
, Qnil
, match
, Qt
, 0, Qnil
);
2799 /* `proclist' gives process IDs as strings. Destructively convert
2800 each string into a number. */
2801 for (tail
= proclist
; CONSP (tail
); tail
= next
)
2804 XSETCAR (tail
, Fstring_to_number (XCAR (tail
), Qnil
));
2808 /* directory_files_internal returns the files in reverse order; undo
2810 proclist
= Fnreverse (proclist
);
2814 #elif defined DARWIN_OS || defined __FreeBSD__
2817 list_system_processes (void)
2820 int mib
[] = {CTL_KERN
, KERN_PROC
, KERN_PROC_ALL
};
2822 int mib
[] = {CTL_KERN
, KERN_PROC
, KERN_PROC_PROC
};
2825 struct kinfo_proc
*procs
;
2828 struct gcpro gcpro1
;
2829 Lisp_Object proclist
= Qnil
;
2831 if (sysctl (mib
, 3, NULL
, &len
, NULL
, 0) != 0)
2834 procs
= xmalloc (len
);
2835 if (sysctl (mib
, 3, procs
, &len
, NULL
, 0) != 0)
2842 len
/= sizeof (struct kinfo_proc
);
2843 for (i
= 0; i
< len
; i
++)
2846 proclist
= Fcons (make_fixnum_or_float (procs
[i
].kp_proc
.p_pid
), proclist
);
2848 proclist
= Fcons (make_fixnum_or_float (procs
[i
].ki_pid
), proclist
);
2858 /* The WINDOWSNT implementation is in w32.c.
2859 The MSDOS implementation is in dosfns.c. */
2860 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2863 list_system_processes (void)
2868 #endif /* !defined (WINDOWSNT) */
2870 #if defined GNU_LINUX && defined HAVE_LONG_LONG_INT
2871 static struct timespec
2872 time_from_jiffies (unsigned long long tval
, long hz
)
2874 unsigned long long s
= tval
/ hz
;
2875 unsigned long long frac
= tval
% hz
;
2878 if (TYPE_MAXIMUM (time_t) < s
)
2880 if (LONG_MAX
- 1 <= ULLONG_MAX
/ TIMESPEC_RESOLUTION
2881 || frac
<= ULLONG_MAX
/ TIMESPEC_RESOLUTION
)
2882 ns
= frac
* TIMESPEC_RESOLUTION
/ hz
;
2885 /* This is reachable only in the unlikely case that HZ * HZ
2886 exceeds ULLONG_MAX. It calculates an approximation that is
2887 guaranteed to be in range. */
2888 long hz_per_ns
= (hz
/ TIMESPEC_RESOLUTION
2889 + (hz
% TIMESPEC_RESOLUTION
!= 0));
2890 ns
= frac
/ hz_per_ns
;
2893 return make_timespec (s
, ns
);
2897 ltime_from_jiffies (unsigned long long tval
, long hz
)
2899 struct timespec t
= time_from_jiffies (tval
, hz
);
2900 return make_lisp_time (t
);
2903 static struct timespec
2907 struct timespec up
= make_timespec (0, 0);
2910 fup
= emacs_fopen ("/proc/uptime", "r");
2914 unsigned long long upsec
, upfrac
, idlesec
, idlefrac
;
2915 int upfrac_start
, upfrac_end
, idlefrac_start
, idlefrac_end
;
2917 if (fscanf (fup
, "%llu.%n%llu%n %llu.%n%llu%n",
2918 &upsec
, &upfrac_start
, &upfrac
, &upfrac_end
,
2919 &idlesec
, &idlefrac_start
, &idlefrac
, &idlefrac_end
)
2922 if (TYPE_MAXIMUM (time_t) < upsec
)
2924 upsec
= TYPE_MAXIMUM (time_t);
2925 upfrac
= TIMESPEC_RESOLUTION
- 1;
2929 int upfraclen
= upfrac_end
- upfrac_start
;
2930 for (; upfraclen
< LOG10_TIMESPEC_RESOLUTION
; upfraclen
++)
2932 for (; LOG10_TIMESPEC_RESOLUTION
< upfraclen
; upfraclen
--)
2934 upfrac
= min (upfrac
, TIMESPEC_RESOLUTION
- 1);
2936 up
= make_timespec (upsec
, upfrac
);
2945 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2946 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2949 procfs_ttyname (int rdev
)
2952 char name
[PATH_MAX
];
2955 fdev
= emacs_fopen ("/proc/tty/drivers", "r");
2961 unsigned long minor_beg
, minor_end
;
2962 char minor
[25]; /* 2 32-bit numbers + dash */
2965 for (; !feof (fdev
) && !ferror (fdev
); name
[0] = 0)
2967 if (fscanf (fdev
, "%*s %s %u %s %*s\n", name
, &major
, minor
) >= 3
2968 && major
== MAJOR (rdev
))
2970 minor_beg
= strtoul (minor
, &endp
, 0);
2972 minor_end
= minor_beg
;
2973 else if (*endp
== '-')
2974 minor_end
= strtoul (endp
+ 1, &endp
, 0);
2978 if (MINOR (rdev
) >= minor_beg
&& MINOR (rdev
) <= minor_end
)
2980 sprintf (name
+ strlen (name
), "%u", MINOR (rdev
));
2988 return build_string (name
);
2992 procfs_get_total_memory (void)
2995 uintmax_t retval
= 2 * 1024 * 1024; /* default: 2 GiB */
2999 fmem
= emacs_fopen ("/proc/meminfo", "r");
3003 uintmax_t entry_value
;
3007 switch (fscanf (fmem
, "MemTotal: %"SCNuMAX
, &entry_value
))
3010 retval
= entry_value
;
3015 while ((c
= getc (fmem
)) != EOF
&& c
!= '\n')
3033 system_process_attributes (Lisp_Object pid
)
3035 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
3039 long clocks_per_sec
;
3041 char procbuf
[1025], *p
, *q
;
3044 static char const default_cmd
[] = "???";
3045 const char *cmd
= default_cmd
;
3046 int cmdsize
= sizeof default_cmd
- 1;
3047 char *cmdline
= NULL
;
3048 ptrdiff_t cmdline_size
;
3051 int ppid
, pgrp
, sess
, tty
, tpgid
, thcount
;
3054 unsigned long long u_time
, s_time
, cutime
, cstime
, start
;
3055 long priority
, niceness
, rss
;
3056 unsigned long minflt
, majflt
, cminflt
, cmajflt
, vsize
;
3057 struct timespec tnow
, tstart
, tboot
, telapsed
, us_time
;
3059 Lisp_Object attrs
= Qnil
;
3060 Lisp_Object cmd_str
, decoded_cmd
;
3062 struct gcpro gcpro1
, gcpro2
;
3064 CHECK_NUMBER_OR_FLOAT (pid
);
3065 CONS_TO_INTEGER (pid
, pid_t
, proc_id
);
3066 sprintf (procfn
, "/proc/%"pMd
, proc_id
);
3067 if (stat (procfn
, &st
) < 0)
3070 GCPRO2 (attrs
, decoded_cmd
);
3074 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid
)), attrs
);
3076 pw
= getpwuid (uid
);
3079 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
3082 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid
)), attrs
);
3084 gr
= getgrgid (gid
);
3087 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
3089 count
= SPECPDL_INDEX ();
3090 strcpy (fn
, procfn
);
3091 procfn_end
= fn
+ strlen (fn
);
3092 strcpy (procfn_end
, "/stat");
3093 fd
= emacs_open (fn
, O_RDONLY
, 0);
3098 record_unwind_protect_int (close_file_unwind
, fd
);
3099 nread
= emacs_read (fd
, procbuf
, sizeof procbuf
- 1);
3103 procbuf
[nread
] = '\0';
3106 p
= strchr (p
, '(');
3109 q
= strrchr (p
+ 1, ')');
3119 /* Command name is encoded in locale-coding-system; decode it. */
3120 cmd_str
= make_unibyte_string (cmd
, cmdsize
);
3121 decoded_cmd
= code_convert_string_norecord (cmd_str
,
3122 Vlocale_coding_system
, 0);
3123 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
3125 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt
3126 utime stime cutime cstime priority nice thcount . start vsize rss */
3128 && (sscanf (q
+ 2, ("%c %d %d %d %d %d %*u %lu %lu %lu %lu "
3129 "%Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld"),
3130 &c
, &ppid
, &pgrp
, &sess
, &tty
, &tpgid
,
3131 &minflt
, &cminflt
, &majflt
, &cmajflt
,
3132 &u_time
, &s_time
, &cutime
, &cstime
,
3133 &priority
, &niceness
, &thcount
, &start
, &vsize
, &rss
)
3138 state_str
[1] = '\0';
3139 attrs
= Fcons (Fcons (Qstate
, build_string (state_str
)), attrs
);
3140 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (ppid
)), attrs
);
3141 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pgrp
)), attrs
);
3142 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (sess
)), attrs
);
3143 attrs
= Fcons (Fcons (Qttname
, procfs_ttyname (tty
)), attrs
);
3144 attrs
= Fcons (Fcons (Qtpgid
, make_fixnum_or_float (tpgid
)), attrs
);
3145 attrs
= Fcons (Fcons (Qminflt
, make_fixnum_or_float (minflt
)), attrs
);
3146 attrs
= Fcons (Fcons (Qmajflt
, make_fixnum_or_float (majflt
)), attrs
);
3147 attrs
= Fcons (Fcons (Qcminflt
, make_fixnum_or_float (cminflt
)),
3149 attrs
= Fcons (Fcons (Qcmajflt
, make_fixnum_or_float (cmajflt
)),
3151 clocks_per_sec
= sysconf (_SC_CLK_TCK
);
3152 if (clocks_per_sec
< 0)
3153 clocks_per_sec
= 100;
3154 attrs
= Fcons (Fcons (Qutime
,
3155 ltime_from_jiffies (u_time
, clocks_per_sec
)),
3157 attrs
= Fcons (Fcons (Qstime
,
3158 ltime_from_jiffies (s_time
, clocks_per_sec
)),
3160 attrs
= Fcons (Fcons (Qtime
,
3161 ltime_from_jiffies (s_time
+ u_time
,
3164 attrs
= Fcons (Fcons (Qcutime
,
3165 ltime_from_jiffies (cutime
, clocks_per_sec
)),
3167 attrs
= Fcons (Fcons (Qcstime
,
3168 ltime_from_jiffies (cstime
, clocks_per_sec
)),
3170 attrs
= Fcons (Fcons (Qctime
,
3171 ltime_from_jiffies (cstime
+ cutime
,
3174 attrs
= Fcons (Fcons (Qpri
, make_number (priority
)), attrs
);
3175 attrs
= Fcons (Fcons (Qnice
, make_number (niceness
)), attrs
);
3176 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (thcount
)),
3178 tnow
= current_timespec ();
3179 telapsed
= get_up_time ();
3180 tboot
= timespec_sub (tnow
, telapsed
);
3181 tstart
= time_from_jiffies (start
, clocks_per_sec
);
3182 tstart
= timespec_add (tboot
, tstart
);
3183 attrs
= Fcons (Fcons (Qstart
, make_lisp_time (tstart
)), attrs
);
3184 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (vsize
/ 1024)),
3186 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (4 * rss
)), attrs
);
3187 telapsed
= timespec_sub (tnow
, tstart
);
3188 attrs
= Fcons (Fcons (Qetime
, make_lisp_time (telapsed
)), attrs
);
3189 us_time
= time_from_jiffies (u_time
+ s_time
, clocks_per_sec
);
3190 pcpu
= timespectod (us_time
) / timespectod (telapsed
);
3193 attrs
= Fcons (Fcons (Qpcpu
, make_float (100 * pcpu
)), attrs
);
3194 pmem
= 4.0 * 100 * rss
/ procfs_get_total_memory ();
3197 attrs
= Fcons (Fcons (Qpmem
, make_float (pmem
)), attrs
);
3200 unbind_to (count
, Qnil
);
3203 strcpy (procfn_end
, "/cmdline");
3204 fd
= emacs_open (fn
, O_RDONLY
, 0);
3207 ptrdiff_t readsize
, nread_incr
;
3208 record_unwind_protect_int (close_file_unwind
, fd
);
3209 record_unwind_protect_nothing ();
3210 nread
= cmdline_size
= 0;
3214 cmdline
= xpalloc (cmdline
, &cmdline_size
, 2, STRING_BYTES_BOUND
, 1);
3215 set_unwind_protect_ptr (count
+ 1, xfree
, cmdline
);
3217 /* Leave room even if every byte needs escaping below. */
3218 readsize
= (cmdline_size
>> 1) - nread
;
3220 nread_incr
= emacs_read (fd
, cmdline
+ nread
, readsize
);
3221 nread
+= max (0, nread_incr
);
3223 while (nread_incr
== readsize
);
3227 /* We don't want trailing null characters. */
3228 for (p
= cmdline
+ nread
; cmdline
< p
&& !p
[-1]; p
--)
3231 /* Escape-quote whitespace and backslashes. */
3232 q
= cmdline
+ cmdline_size
;
3237 if (c_isspace (c
) || c
== '\\')
3241 nread
= cmdline
+ cmdline_size
- q
;
3246 nread
= cmdsize
+ 2;
3247 cmdline_size
= nread
+ 1;
3248 q
= cmdline
= xrealloc (cmdline
, cmdline_size
);
3249 set_unwind_protect_ptr (count
+ 1, xfree
, cmdline
);
3250 sprintf (cmdline
, "[%.*s]", cmdsize
, cmd
);
3252 /* Command line is encoded in locale-coding-system; decode it. */
3253 cmd_str
= make_unibyte_string (q
, nread
);
3254 decoded_cmd
= code_convert_string_norecord (cmd_str
,
3255 Vlocale_coding_system
, 0);
3256 unbind_to (count
, Qnil
);
3257 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
3264 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3266 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3267 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3268 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3269 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3270 #undef _FILE_OFFSET_BITS
3272 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3277 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3278 #define _FILE_OFFSET_BITS 64
3279 #ifdef _FILE_OFFSET_BITS /* Avoid unused-macro warnings. */
3281 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3284 system_process_attributes (Lisp_Object pid
)
3286 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
3291 struct psinfo pinfo
;
3297 Lisp_Object attrs
= Qnil
;
3298 Lisp_Object decoded_cmd
;
3299 struct gcpro gcpro1
, gcpro2
;
3302 CHECK_NUMBER_OR_FLOAT (pid
);
3303 CONS_TO_INTEGER (pid
, pid_t
, proc_id
);
3304 sprintf (procfn
, "/proc/%"pMd
, proc_id
);
3305 if (stat (procfn
, &st
) < 0)
3308 GCPRO2 (attrs
, decoded_cmd
);
3312 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid
)), attrs
);
3314 pw
= getpwuid (uid
);
3317 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
3320 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid
)), attrs
);
3322 gr
= getgrgid (gid
);
3325 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
3327 count
= SPECPDL_INDEX ();
3328 strcpy (fn
, procfn
);
3329 procfn_end
= fn
+ strlen (fn
);
3330 strcpy (procfn_end
, "/psinfo");
3331 fd
= emacs_open (fn
, O_RDONLY
, 0);
3336 record_unwind_protect (close_file_unwind
, fd
);
3337 nread
= emacs_read (fd
, &pinfo
, sizeof pinfo
);
3340 if (nread
== sizeof pinfo
)
3342 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (pinfo
.pr_ppid
)), attrs
);
3343 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pinfo
.pr_pgid
)), attrs
);
3344 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (pinfo
.pr_sid
)), attrs
);
3348 state_str
[0] = pinfo
.pr_lwp
.pr_sname
;
3349 state_str
[1] = '\0';
3350 attrs
= Fcons (Fcons (Qstate
, build_string (state_str
)), attrs
);
3353 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3354 need to get a string from it. */
3356 /* FIXME: missing: Qtpgid */
3368 Are they available? */
3370 attrs
= Fcons (Fcons (Qtime
, make_lisp_time (pinfo
.pr_time
)), attrs
);
3371 attrs
= Fcons (Fcons (Qctime
, make_lisp_time (pinfo
.pr_ctime
)), attrs
);
3372 attrs
= Fcons (Fcons (Qpri
, make_number (pinfo
.pr_lwp
.pr_pri
)), attrs
);
3373 attrs
= Fcons (Fcons (Qnice
, make_number (pinfo
.pr_lwp
.pr_nice
)), attrs
);
3374 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (pinfo
.pr_nlwp
)),
3377 attrs
= Fcons (Fcons (Qstart
, make_lisp_time (pinfo
.pr_start
)), attrs
);
3378 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (pinfo
.pr_size
)),
3380 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (pinfo
.pr_rssize
)),
3383 /* pr_pctcpu and pr_pctmem are unsigned integers in the
3384 range 0 .. 2**15, representing 0.0 .. 1.0. */
3385 attrs
= Fcons (Fcons (Qpcpu
,
3386 make_float (100.0 / 0x8000 * pinfo
.pr_pctcpu
)),
3388 attrs
= Fcons (Fcons (Qpmem
,
3389 make_float (100.0 / 0x8000 * pinfo
.pr_pctmem
)),
3392 decoded_cmd
= (code_convert_string_norecord
3393 (build_unibyte_string (pinfo
.pr_fname
),
3394 Vlocale_coding_system
, 0));
3395 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
3396 decoded_cmd
= (code_convert_string_norecord
3397 (build_unibyte_string (pinfo
.pr_psargs
),
3398 Vlocale_coding_system
, 0));
3399 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
3401 unbind_to (count
, Qnil
);
3406 #elif defined __FreeBSD__
3408 static struct timespec
3409 timeval_to_timespec (struct timeval t
)
3411 return make_timespec (t
.tv_sec
, t
.tv_usec
* 1000);
3415 make_lisp_timeval (struct timeval t
)
3417 return make_lisp_time (timeval_to_timespec (t
));
3421 system_process_attributes (Lisp_Object pid
)
3424 int pagesize
= getpagesize ();
3425 unsigned long npages
;
3431 char args
[MAXPATHLEN
];
3432 struct timespec t
, now
;
3434 int mib
[4] = {CTL_KERN
, KERN_PROC
, KERN_PROC_PID
};
3435 struct kinfo_proc proc
;
3436 size_t proclen
= sizeof proc
;
3438 struct gcpro gcpro1
, gcpro2
;
3439 Lisp_Object attrs
= Qnil
;
3440 Lisp_Object decoded_comm
;
3442 CHECK_NUMBER_OR_FLOAT (pid
);
3443 CONS_TO_INTEGER (pid
, int, proc_id
);
3446 if (sysctl (mib
, 4, &proc
, &proclen
, NULL
, 0) != 0)
3449 GCPRO2 (attrs
, decoded_comm
);
3451 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (proc
.ki_uid
)), attrs
);
3454 pw
= getpwuid (proc
.ki_uid
);
3457 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
3459 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (proc
.ki_svgid
)), attrs
);
3462 gr
= getgrgid (proc
.ki_svgid
);
3465 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
3467 decoded_comm
= (code_convert_string_norecord
3468 (build_unibyte_string (proc
.ki_comm
),
3469 Vlocale_coding_system
, 0));
3471 attrs
= Fcons (Fcons (Qcomm
, decoded_comm
), attrs
);
3473 char state
[2] = {'\0', '\0'};
3474 switch (proc
.ki_stat
)
3496 attrs
= Fcons (Fcons (Qstate
, build_string (state
)), attrs
);
3499 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (proc
.ki_ppid
)), attrs
);
3500 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (proc
.ki_pgid
)), attrs
);
3501 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (proc
.ki_sid
)), attrs
);
3504 ttyname
= proc
.ki_tdev
== NODEV
? NULL
: devname (proc
.ki_tdev
, S_IFCHR
);
3507 attrs
= Fcons (Fcons (Qtty
, build_string (ttyname
)), attrs
);
3509 attrs
= Fcons (Fcons (Qtpgid
, make_fixnum_or_float (proc
.ki_tpgid
)), attrs
);
3510 attrs
= Fcons (Fcons (Qminflt
, make_fixnum_or_float (proc
.ki_rusage
.ru_minflt
)), attrs
);
3511 attrs
= Fcons (Fcons (Qmajflt
, make_fixnum_or_float (proc
.ki_rusage
.ru_majflt
)), attrs
);
3512 attrs
= Fcons (Fcons (Qcminflt
, make_number (proc
.ki_rusage_ch
.ru_minflt
)), attrs
);
3513 attrs
= Fcons (Fcons (Qcmajflt
, make_number (proc
.ki_rusage_ch
.ru_majflt
)), attrs
);
3515 attrs
= Fcons (Fcons (Qutime
, make_lisp_timeval (proc
.ki_rusage
.ru_utime
)),
3517 attrs
= Fcons (Fcons (Qstime
, make_lisp_timeval (proc
.ki_rusage
.ru_stime
)),
3519 t
= timespec_add (timeval_to_timespec (proc
.ki_rusage
.ru_utime
),
3520 timeval_to_timespec (proc
.ki_rusage
.ru_stime
));
3521 attrs
= Fcons (Fcons (Qtime
, make_lisp_time (t
)), attrs
);
3523 attrs
= Fcons (Fcons (Qcutime
,
3524 make_lisp_timeval (proc
.ki_rusage_ch
.ru_utime
)),
3526 attrs
= Fcons (Fcons (Qcstime
,
3527 make_lisp_timeval (proc
.ki_rusage_ch
.ru_utime
)),
3529 t
= timespec_add (timeval_to_timespec (proc
.ki_rusage_ch
.ru_utime
),
3530 timeval_to_timespec (proc
.ki_rusage_ch
.ru_stime
));
3531 attrs
= Fcons (Fcons (Qctime
, make_lisp_time (t
)), attrs
);
3533 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (proc
.ki_numthreads
)),
3535 attrs
= Fcons (Fcons (Qpri
, make_number (proc
.ki_pri
.pri_native
)), attrs
);
3536 attrs
= Fcons (Fcons (Qnice
, make_number (proc
.ki_nice
)), attrs
);
3537 attrs
= Fcons (Fcons (Qstart
, make_lisp_timeval (proc
.ki_start
)), attrs
);
3538 attrs
= Fcons (Fcons (Qvsize
, make_number (proc
.ki_size
>> 10)), attrs
);
3539 attrs
= Fcons (Fcons (Qrss
, make_number (proc
.ki_rssize
* pagesize
>> 10)),
3542 now
= current_timespec ();
3543 t
= timespec_sub (now
, timeval_to_timespec (proc
.ki_start
));
3544 attrs
= Fcons (Fcons (Qetime
, make_lisp_time (t
)), attrs
);
3546 len
= sizeof fscale
;
3547 if (sysctlbyname ("kern.fscale", &fscale
, &len
, NULL
, 0) == 0)
3552 if (sysctlbyname ("kern.ccpu", &ccpu
, &len
, NULL
, 0) == 0)
3554 pcpu
= (100.0 * proc
.ki_pctcpu
/ fscale
3555 / (1 - exp (proc
.ki_swtime
* log ((double) ccpu
/ fscale
))));
3556 attrs
= Fcons (Fcons (Qpcpu
, make_fixnum_or_float (pcpu
)), attrs
);
3560 len
= sizeof npages
;
3561 if (sysctlbyname ("hw.availpages", &npages
, &len
, NULL
, 0) == 0)
3563 double pmem
= (proc
.ki_flag
& P_INMEM
3564 ? 100.0 * proc
.ki_rssize
/ npages
3566 attrs
= Fcons (Fcons (Qpmem
, make_fixnum_or_float (pmem
)), attrs
);
3569 mib
[2] = KERN_PROC_ARGS
;
3571 if (sysctl (mib
, 4, args
, &len
, NULL
, 0) == 0)
3574 for (i
= 0; i
< len
; i
++)
3576 if (! args
[i
] && i
< len
- 1)
3581 (code_convert_string_norecord
3582 (build_unibyte_string (args
),
3583 Vlocale_coding_system
, 0));
3585 attrs
= Fcons (Fcons (Qargs
, decoded_comm
), attrs
);
3592 /* The WINDOWSNT implementation is in w32.c.
3593 The MSDOS implementation is in dosfns.c. */
3594 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3597 system_process_attributes (Lisp_Object pid
)
3602 #endif /* !defined (WINDOWSNT) */
3604 /* Wide character string collation. */
3606 #ifdef __STDC_ISO_10646__
3608 # include <wctype.h>
3610 # if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3611 # include <locale.h>
3614 # define LC_COLLATE 0
3616 # ifndef LC_COLLATE_MASK
3617 # define LC_COLLATE_MASK 0
3622 # ifndef LC_CTYPE_MASK
3623 # define LC_CTYPE_MASK 0
3626 # ifndef HAVE_NEWLOCALE
3632 # define freelocale emacs_freelocale
3633 # define locale_t emacs_locale_t
3634 # define newlocale emacs_newlocale
3635 # define wcscoll_l emacs_wcscoll_l
3636 # define towlower_l emacs_towlower_l
3638 typedef char const *locale_t
;
3641 newlocale (int category_mask
, char const *locale
, locale_t loc
)
3647 freelocale (locale_t loc
)
3652 emacs_setlocale (int category
, char const *locale
)
3654 # ifdef HAVE_SETLOCALE
3656 char *loc
= setlocale (category
, locale
);
3667 wcscoll_l (wchar_t const *a
, wchar_t const *b
, locale_t loc
)
3670 char *oldloc
= emacs_setlocale (LC_COLLATE
, NULL
);
3678 char *oldcopy
= SAFE_ALLOCA (strlen (oldloc
) + 1);
3679 strcpy (oldcopy
, oldloc
);
3680 if (! emacs_setlocale (LC_COLLATE
, loc
))
3685 result
= wcscoll (a
, b
);
3687 if (! emacs_setlocale (LC_COLLATE
, oldcopy
))
3698 towlower_l (wint_t wc
, locale_t loc
)
3701 char *oldloc
= emacs_setlocale (LC_CTYPE
, NULL
);
3706 char *oldcopy
= SAFE_ALLOCA (strlen (oldloc
) + 1);
3707 strcpy (oldcopy
, oldloc
);
3708 if (emacs_setlocale (LC_CTYPE
, loc
))
3710 result
= towlower (wc
);
3711 emacs_setlocale (LC_COLLATE
, oldcopy
);
3721 str_collate (Lisp_Object s1
, Lisp_Object s2
,
3722 Lisp_Object locale
, Lisp_Object ignore_case
)
3725 ptrdiff_t len
, i
, i_byte
;
3730 /* Convert byte stream to code points. */
3731 len
= SCHARS (s1
); i
= i_byte
= 0;
3732 SAFE_NALLOCA (p1
, 1, len
+ 1);
3734 FETCH_STRING_CHAR_ADVANCE (*(p1
+i
-1), s1
, i
, i_byte
);
3737 len
= SCHARS (s2
); i
= i_byte
= 0;
3738 SAFE_NALLOCA (p2
, 1, len
+ 1);
3740 FETCH_STRING_CHAR_ADVANCE (*(p2
+i
-1), s2
, i
, i_byte
);
3743 if (STRINGP (locale
))
3745 locale_t loc
= newlocale (LC_COLLATE_MASK
| LC_CTYPE_MASK
,
3746 SSDATA (locale
), 0);
3748 error ("Invalid locale %s: %s", SSDATA (locale
), strerror (errno
));
3750 if (! NILP (ignore_case
))
3751 for (int i
= 1; i
< 3; i
++)
3753 wchar_t *p
= (i
== 1) ? p1
: p2
;
3755 *p
= towlower_l (*p
, loc
);
3759 res
= wcscoll_l (p1
, p2
, loc
);
3765 if (! NILP (ignore_case
))
3766 for (int i
= 1; i
< 3; i
++)
3768 wchar_t *p
= (i
== 1) ? p1
: p2
;
3774 res
= wcscoll (p1
, p2
);
3777 # ifndef HAVE_NEWLOCALE
3779 error ("Invalid locale or string for collation: %s", strerror (err
));
3782 error ("Invalid string for collation: %s", strerror (err
));
3788 #endif /* __STDC_ISO_10646__ */
3792 str_collate (Lisp_Object s1
, Lisp_Object s2
,
3793 Lisp_Object locale
, Lisp_Object ignore_case
)
3796 char *loc
= STRINGP (locale
) ? SSDATA (locale
) : NULL
;
3797 int res
, err
= errno
;
3800 res
= w32_compare_strings (SDATA (s1
), SDATA (s2
), loc
, !NILP (ignore_case
));
3802 error ("Invalid string for collation: %s", strerror (errno
));
3807 #endif /* WINDOWSNT */