1 /* Asynchronous subprocess control for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2013 Free Software
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 #define PROCESS_INLINE EXTERN_INLINE
28 #include <sys/types.h> /* Some typedefs are used in sys/file.h. */
36 /* Only MS-DOS does not define `subprocesses'. */
39 #include <sys/socket.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
44 /* Are local (unix) sockets supported? */
45 #if defined (HAVE_SYS_UN_H)
46 #if !defined (AF_LOCAL) && defined (AF_UNIX)
47 #define AF_LOCAL AF_UNIX
50 #define HAVE_LOCAL_SOCKETS
55 #include <sys/ioctl.h>
56 #if defined (HAVE_NET_IF_H)
58 #endif /* HAVE_NET_IF_H */
60 #if defined (HAVE_IFADDRS_H)
61 /* Must be after net/if.h */
64 /* We only use structs from this header when we use getifaddrs. */
65 #if defined (HAVE_NET_IF_DL_H)
66 #include <net/if_dl.h>
76 # include <sys/stream.h>
77 # include <sys/stropts.h>
81 #include <arpa/nameser.h>
96 #endif /* subprocesses */
102 #include "character.h"
107 #include "termhooks.h"
108 #include "termopts.h"
109 #include "commands.h"
110 #include "keyboard.h"
111 #include "blockinput.h"
112 #include "dispextern.h"
113 #include "composite.h"
115 #include "sysselect.h"
116 #include "syssignal.h"
122 #ifdef HAVE_WINDOW_SYSTEM
124 #endif /* HAVE_WINDOW_SYSTEM */
127 #include "xgselect.h"
134 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
135 EMACS_TIME
*, void *);
138 /* Work around GCC 4.7.0 bug with strict overflow checking; see
139 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>.
140 These lines can be removed once the GCC bug is fixed. */
141 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
142 # pragma GCC diagnostic ignored "-Wstrict-overflow"
145 Lisp_Object Qeuid
, Qegid
, Qcomm
, Qstate
, Qppid
, Qpgrp
, Qsess
, Qttname
, Qtpgid
;
146 Lisp_Object Qminflt
, Qmajflt
, Qcminflt
, Qcmajflt
, Qutime
, Qstime
, Qcstime
;
147 Lisp_Object Qcutime
, Qpri
, Qnice
, Qthcount
, Qstart
, Qvsize
, Qrss
, Qargs
;
148 Lisp_Object Quser
, Qgroup
, Qetime
, Qpcpu
, Qpmem
, Qtime
, Qctime
;
149 Lisp_Object QCname
, QCtype
;
151 /* True if keyboard input is on hold, zero otherwise. */
153 static bool kbd_is_on_hold
;
155 /* Nonzero means don't run process sentinels. This is used
157 bool inhibit_sentinels
;
161 Lisp_Object Qprocessp
;
162 static Lisp_Object Qrun
, Qstop
, Qsignal
;
163 static Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
165 static Lisp_Object Qipv4
, Qdatagram
, Qseqpacket
;
166 static Lisp_Object Qreal
, Qnetwork
, Qserial
;
168 static Lisp_Object Qipv6
;
170 static Lisp_Object QCport
, QCprocess
;
172 Lisp_Object QCbytesize
, QCstopbits
, QCparity
, Qodd
, Qeven
;
173 Lisp_Object QCflowcontrol
, Qhw
, Qsw
, QCsummary
;
174 static Lisp_Object QCbuffer
, QChost
, QCservice
;
175 static Lisp_Object QClocal
, QCremote
, QCcoding
;
176 static Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
177 static Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
178 static Lisp_Object Qlast_nonmenu_event
;
179 static Lisp_Object Qinternal_default_process_sentinel
;
180 static Lisp_Object Qinternal_default_process_filter
;
182 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
183 #define NETCONN1_P(p) (EQ (p->type, Qnetwork))
184 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
185 #define SERIALCONN1_P(p) (EQ (p->type, Qserial))
187 /* Number of events of change of status of a process. */
188 static EMACS_INT process_tick
;
189 /* Number of events for which the user or sentinel has been notified. */
190 static EMACS_INT update_tick
;
192 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
194 /* Only W32 has this, it really means that select can't take write mask. */
195 #ifdef BROKEN_NON_BLOCKING_CONNECT
196 #undef NON_BLOCKING_CONNECT
197 #define SELECT_CANT_DO_WRITE_MASK
199 #ifndef NON_BLOCKING_CONNECT
201 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
202 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
203 #define NON_BLOCKING_CONNECT
204 #endif /* EWOULDBLOCK || EINPROGRESS */
205 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
206 #endif /* HAVE_SELECT */
207 #endif /* NON_BLOCKING_CONNECT */
208 #endif /* BROKEN_NON_BLOCKING_CONNECT */
210 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
211 this system. We need to read full packets, so we need a
212 "non-destructive" select. So we require either native select,
213 or emulation of select using FIONREAD. */
215 #ifndef BROKEN_DATAGRAM_SOCKETS
216 # if defined HAVE_SELECT || defined USABLE_FIONREAD
217 # if defined HAVE_SENDTO && defined HAVE_RECVFROM && defined EMSGSIZE
218 # define DATAGRAM_SOCKETS
223 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
224 # define HAVE_SEQPACKET
227 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
228 #define ADAPTIVE_READ_BUFFERING
231 #ifdef ADAPTIVE_READ_BUFFERING
232 #define READ_OUTPUT_DELAY_INCREMENT (EMACS_TIME_RESOLUTION / 100)
233 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
234 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
236 /* Number of processes which have a non-zero read_output_delay,
237 and therefore might be delayed for adaptive read buffering. */
239 static int process_output_delay_count
;
241 /* True if any process has non-nil read_output_skip. */
243 static bool process_output_skip
;
246 #define process_output_delay_count 0
249 static void create_process (Lisp_Object
, char **, Lisp_Object
);
251 static bool keyboard_bit_set (SELECT_TYPE
*);
253 static void deactivate_process (Lisp_Object
);
254 static void status_notify (struct Lisp_Process
*);
255 static int read_process_output (Lisp_Object
, int);
256 static void handle_child_signal (int);
257 static void create_pty (Lisp_Object
);
259 /* If we support a window system, turn on the code to poll periodically
260 to detect C-g. It isn't actually used when doing interrupt input. */
261 #ifdef HAVE_WINDOW_SYSTEM
262 #define POLL_FOR_INPUT
265 static Lisp_Object
get_process (register Lisp_Object name
);
266 static void exec_sentinel (Lisp_Object proc
, Lisp_Object reason
);
268 /* Mask of bits indicating the descriptors that we wait for input on. */
270 static SELECT_TYPE input_wait_mask
;
272 /* Mask that excludes keyboard input descriptor(s). */
274 static SELECT_TYPE non_keyboard_wait_mask
;
276 /* Mask that excludes process input descriptor(s). */
278 static SELECT_TYPE non_process_wait_mask
;
280 /* Mask for selecting for write. */
282 static SELECT_TYPE write_mask
;
284 #ifdef NON_BLOCKING_CONNECT
285 /* Mask of bits indicating the descriptors that we wait for connect to
286 complete on. Once they complete, they are removed from this mask
287 and added to the input_wait_mask and non_keyboard_wait_mask. */
289 static SELECT_TYPE connect_wait_mask
;
291 /* Number of bits set in connect_wait_mask. */
292 static int num_pending_connects
;
293 #endif /* NON_BLOCKING_CONNECT */
295 /* The largest descriptor currently in use for a process object. */
296 static int max_process_desc
;
298 /* The largest descriptor currently in use for input. */
299 static int max_input_desc
;
301 /* Indexed by descriptor, gives the process (if any) for that descriptor */
302 static Lisp_Object chan_process
[MAXDESC
];
304 /* Alist of elements (NAME . PROCESS) */
305 static Lisp_Object Vprocess_alist
;
307 /* Buffered-ahead input char from process, indexed by channel.
308 -1 means empty (no char is buffered).
309 Used on sys V where the only way to tell if there is any
310 output from the process is to read at least one char.
311 Always -1 on systems that support FIONREAD. */
313 static int proc_buffered_char
[MAXDESC
];
315 /* Table of `struct coding-system' for each process. */
316 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
317 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
319 #ifdef DATAGRAM_SOCKETS
320 /* Table of `partner address' for datagram sockets. */
321 static struct sockaddr_and_len
{
324 } datagram_address
[MAXDESC
];
325 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
326 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
328 #define DATAGRAM_CHAN_P(chan) (0)
329 #define DATAGRAM_CONN_P(proc) (0)
332 /* These setters are used only in this file, so they can be private. */
334 pset_buffer (struct Lisp_Process
*p
, Lisp_Object val
)
339 pset_command (struct Lisp_Process
*p
, Lisp_Object val
)
344 pset_decode_coding_system (struct Lisp_Process
*p
, Lisp_Object val
)
346 p
->decode_coding_system
= val
;
349 pset_decoding_buf (struct Lisp_Process
*p
, Lisp_Object val
)
351 p
->decoding_buf
= val
;
354 pset_encode_coding_system (struct Lisp_Process
*p
, Lisp_Object val
)
356 p
->encode_coding_system
= val
;
359 pset_encoding_buf (struct Lisp_Process
*p
, Lisp_Object val
)
361 p
->encoding_buf
= val
;
364 pset_filter (struct Lisp_Process
*p
, Lisp_Object val
)
366 p
->filter
= NILP (val
) ? Qinternal_default_process_filter
: val
;
369 pset_log (struct Lisp_Process
*p
, Lisp_Object val
)
374 pset_mark (struct Lisp_Process
*p
, Lisp_Object val
)
379 pset_name (struct Lisp_Process
*p
, Lisp_Object val
)
384 pset_plist (struct Lisp_Process
*p
, Lisp_Object val
)
389 pset_sentinel (struct Lisp_Process
*p
, Lisp_Object val
)
391 p
->sentinel
= NILP (val
) ? Qinternal_default_process_sentinel
: val
;
394 pset_status (struct Lisp_Process
*p
, Lisp_Object val
)
399 pset_tty_name (struct Lisp_Process
*p
, Lisp_Object val
)
404 pset_type (struct Lisp_Process
*p
, Lisp_Object val
)
409 pset_write_queue (struct Lisp_Process
*p
, Lisp_Object val
)
411 p
->write_queue
= val
;
416 static struct fd_callback_data
422 int condition
; /* mask of the defines above. */
423 } fd_callback_info
[MAXDESC
];
426 /* Add a file descriptor FD to be monitored for when read is possible.
427 When read is possible, call FUNC with argument DATA. */
430 add_read_fd (int fd
, fd_callback func
, void *data
)
432 eassert (fd
< MAXDESC
);
433 add_keyboard_wait_descriptor (fd
);
435 fd_callback_info
[fd
].func
= func
;
436 fd_callback_info
[fd
].data
= data
;
437 fd_callback_info
[fd
].condition
|= FOR_READ
;
440 /* Stop monitoring file descriptor FD for when read is possible. */
443 delete_read_fd (int fd
)
445 eassert (fd
< MAXDESC
);
446 delete_keyboard_wait_descriptor (fd
);
448 fd_callback_info
[fd
].condition
&= ~FOR_READ
;
449 if (fd_callback_info
[fd
].condition
== 0)
451 fd_callback_info
[fd
].func
= 0;
452 fd_callback_info
[fd
].data
= 0;
456 /* Add a file descriptor FD to be monitored for when write is possible.
457 When write is possible, call FUNC with argument DATA. */
460 add_write_fd (int fd
, fd_callback func
, void *data
)
462 eassert (fd
< MAXDESC
);
463 FD_SET (fd
, &write_mask
);
464 if (fd
> max_input_desc
)
467 fd_callback_info
[fd
].func
= func
;
468 fd_callback_info
[fd
].data
= data
;
469 fd_callback_info
[fd
].condition
|= FOR_WRITE
;
472 /* Stop monitoring file descriptor FD for when write is possible. */
475 delete_write_fd (int fd
)
477 int lim
= max_input_desc
;
479 eassert (fd
< MAXDESC
);
480 FD_CLR (fd
, &write_mask
);
481 fd_callback_info
[fd
].condition
&= ~FOR_WRITE
;
482 if (fd_callback_info
[fd
].condition
== 0)
484 fd_callback_info
[fd
].func
= 0;
485 fd_callback_info
[fd
].data
= 0;
487 if (fd
== max_input_desc
)
488 for (fd
= lim
; fd
>= 0; fd
--)
489 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
499 /* Compute the Lisp form of the process status, p->status, from
500 the numeric status that was returned by `wait'. */
502 static Lisp_Object
status_convert (int);
505 update_status (struct Lisp_Process
*p
)
507 eassert (p
->raw_status_new
);
508 pset_status (p
, status_convert (p
->raw_status
));
509 p
->raw_status_new
= 0;
512 /* Convert a process status word in Unix format to
513 the list that we use internally. */
516 status_convert (int w
)
519 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
520 else if (WIFEXITED (w
))
521 return Fcons (Qexit
, Fcons (make_number (WEXITSTATUS (w
)),
522 WCOREDUMP (w
) ? Qt
: Qnil
));
523 else if (WIFSIGNALED (w
))
524 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
525 WCOREDUMP (w
) ? Qt
: Qnil
));
530 /* Given a status-list, extract the three pieces of information
531 and store them individually through the three pointers. */
534 decode_status (Lisp_Object l
, Lisp_Object
*symbol
, int *code
, bool *coredump
)
548 *code
= XFASTINT (XCAR (tem
));
550 *coredump
= !NILP (tem
);
554 /* Return a string describing a process status list. */
557 status_message (struct Lisp_Process
*p
)
559 Lisp_Object status
= p
->status
;
563 Lisp_Object string
, string2
;
565 decode_status (status
, &symbol
, &code
, &coredump
);
567 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
570 synchronize_system_messages_locale ();
571 signame
= strsignal (code
);
573 string
= build_string ("unknown");
578 string
= build_unibyte_string (signame
);
579 if (! NILP (Vlocale_coding_system
))
580 string
= (code_convert_string_norecord
581 (string
, Vlocale_coding_system
, 0));
582 c1
= STRING_CHAR (SDATA (string
));
585 Faset (string
, make_number (0), make_number (c2
));
587 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
588 return concat2 (string
, string2
);
590 else if (EQ (symbol
, Qexit
))
593 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
595 return build_string ("finished\n");
596 string
= Fnumber_to_string (make_number (code
));
597 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
598 return concat3 (build_string ("exited abnormally with code "),
601 else if (EQ (symbol
, Qfailed
))
603 string
= Fnumber_to_string (make_number (code
));
604 string2
= build_string ("\n");
605 return concat3 (build_string ("failed with code "),
609 return Fcopy_sequence (Fsymbol_name (symbol
));
614 /* The file name of the pty opened by allocate_pty. */
615 static char pty_name
[24];
617 /* Open an available pty, returning a file descriptor.
618 Return -1 on failure.
619 The file name of the terminal corresponding to the pty
620 is left in the variable pty_name. */
631 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
632 for (i
= 0; i
< 16; i
++)
635 #ifdef PTY_NAME_SPRINTF
638 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
639 #endif /* no PTY_NAME_SPRINTF */
643 #else /* no PTY_OPEN */
644 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
645 #endif /* no PTY_OPEN */
649 /* check to make certain that both sides are available
650 this avoids a nasty yet stupid bug in rlogins */
651 #ifdef PTY_TTY_NAME_SPRINTF
654 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
655 #endif /* no PTY_TTY_NAME_SPRINTF */
656 if (faccessat (AT_FDCWD
, pty_name
, R_OK
| W_OK
, AT_EACCESS
) != 0)
671 #endif /* HAVE_PTYS */
674 make_process (Lisp_Object name
)
676 register Lisp_Object val
, tem
, name1
;
677 register struct Lisp_Process
*p
;
678 char suffix
[sizeof "<>" + INT_STRLEN_BOUND (printmax_t
)];
681 p
= allocate_process ();
682 /* Initialize Lisp data. Note that allocate_process initializes all
683 Lisp data to nil, so do it only for slots which should not be nil. */
684 pset_status (p
, Qrun
);
685 pset_mark (p
, Fmake_marker ());
687 /* Initialize non-Lisp data. Note that allocate_process zeroes out all
688 non-Lisp data, so do it only for slots which should not be zero. */
693 p
->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
696 /* If name is already in use, modify it until it is unused. */
701 tem
= Fget_process (name1
);
702 if (NILP (tem
)) break;
703 name1
= concat2 (name
, make_formatted_string (suffix
, "<%"pMd
">", i
));
707 pset_sentinel (p
, Qinternal_default_process_sentinel
);
708 pset_filter (p
, Qinternal_default_process_filter
);
709 XSETPROCESS (val
, p
);
710 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
715 remove_process (register Lisp_Object proc
)
717 register Lisp_Object pair
;
719 pair
= Frassq (proc
, Vprocess_alist
);
720 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
722 deactivate_process (proc
);
726 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
727 doc
: /* Return t if OBJECT is a process. */)
730 return PROCESSP (object
) ? Qt
: Qnil
;
733 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
734 doc
: /* Return the process named NAME, or nil if there is none. */)
735 (register Lisp_Object name
)
740 return Fcdr (Fassoc (name
, Vprocess_alist
));
743 /* This is how commands for the user decode process arguments. It
744 accepts a process, a process name, a buffer, a buffer name, or nil.
745 Buffers denote the first process in the buffer, and nil denotes the
749 get_process (register Lisp_Object name
)
751 register Lisp_Object proc
, obj
;
754 obj
= Fget_process (name
);
756 obj
= Fget_buffer (name
);
758 error ("Process %s does not exist", SDATA (name
));
760 else if (NILP (name
))
761 obj
= Fcurrent_buffer ();
765 /* Now obj should be either a buffer object or a process object.
769 proc
= Fget_buffer_process (obj
);
771 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj
), name
)));
782 /* Fdelete_process promises to immediately forget about the process, but in
783 reality, Emacs needs to remember those processes until they have been
784 treated by the SIGCHLD handler and waitpid has been invoked on them;
785 otherwise they might fill up the kernel's process table.
787 Some processes created by call-process are also put onto this list. */
788 static Lisp_Object deleted_pid_list
;
791 record_deleted_pid (pid_t pid
)
793 deleted_pid_list
= Fcons (make_fixnum_or_float (pid
),
794 /* GC treated elements set to nil. */
795 Fdelq (Qnil
, deleted_pid_list
));
799 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
800 doc
: /* Delete PROCESS: kill it and forget about it immediately.
801 PROCESS may be a process, a buffer, the name of a process or buffer, or
802 nil, indicating the current buffer's process. */)
803 (register Lisp_Object process
)
805 register struct Lisp_Process
*p
;
807 process
= get_process (process
);
808 p
= XPROCESS (process
);
810 p
->raw_status_new
= 0;
811 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
813 pset_status (p
, Fcons (Qexit
, Fcons (make_number (0), Qnil
)));
814 p
->tick
= ++process_tick
;
816 redisplay_preserve_echo_area (13);
821 record_kill_process (p
);
825 /* Update P's status, since record_kill_process will make the
826 SIGCHLD handler update deleted_pid_list, not *P. */
828 if (p
->raw_status_new
)
830 symbol
= CONSP (p
->status
) ? XCAR (p
->status
) : p
->status
;
831 if (! (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)))
832 pset_status (p
, list2 (Qsignal
, make_number (SIGKILL
)));
834 p
->tick
= ++process_tick
;
836 redisplay_preserve_echo_area (13);
839 remove_process (process
);
843 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
844 doc
: /* Return the status of PROCESS.
845 The returned value is one of the following symbols:
846 run -- for a process that is running.
847 stop -- for a process stopped but continuable.
848 exit -- for a process that has exited.
849 signal -- for a process that has got a fatal signal.
850 open -- for a network stream connection that is open.
851 listen -- for a network stream server that is listening.
852 closed -- for a network stream connection that is closed.
853 connect -- when waiting for a non-blocking connection to complete.
854 failed -- when a non-blocking connection has failed.
855 nil -- if arg is a process name and no such process exists.
856 PROCESS may be a process, a buffer, the name of a process, or
857 nil, indicating the current buffer's process. */)
858 (register Lisp_Object process
)
860 register struct Lisp_Process
*p
;
861 register Lisp_Object status
;
863 if (STRINGP (process
))
864 process
= Fget_process (process
);
866 process
= get_process (process
);
871 p
= XPROCESS (process
);
872 if (p
->raw_status_new
)
876 status
= XCAR (status
);
877 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
879 if (EQ (status
, Qexit
))
881 else if (EQ (p
->command
, Qt
))
883 else if (EQ (status
, Qrun
))
889 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
891 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
892 If PROCESS has not yet exited or died, return 0. */)
893 (register Lisp_Object process
)
895 CHECK_PROCESS (process
);
896 if (XPROCESS (process
)->raw_status_new
)
897 update_status (XPROCESS (process
));
898 if (CONSP (XPROCESS (process
)->status
))
899 return XCAR (XCDR (XPROCESS (process
)->status
));
900 return make_number (0);
903 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
904 doc
: /* Return the process id of PROCESS.
905 This is the pid of the external process which PROCESS uses or talks to.
906 For a network connection, this value is nil. */)
907 (register Lisp_Object process
)
911 CHECK_PROCESS (process
);
912 pid
= XPROCESS (process
)->pid
;
913 return (pid
? make_fixnum_or_float (pid
) : Qnil
);
916 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
917 doc
: /* Return the name of PROCESS, as a string.
918 This is the name of the program invoked in PROCESS,
919 possibly modified to make it unique among process names. */)
920 (register Lisp_Object process
)
922 CHECK_PROCESS (process
);
923 return XPROCESS (process
)->name
;
926 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
927 doc
: /* Return the command that was executed to start PROCESS.
928 This is a list of strings, the first string being the program executed
929 and the rest of the strings being the arguments given to it.
930 For a network or serial process, this is nil (process is running) or t
931 \(process is stopped). */)
932 (register Lisp_Object process
)
934 CHECK_PROCESS (process
);
935 return XPROCESS (process
)->command
;
938 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
939 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
940 This is the terminal that the process itself reads and writes on,
941 not the name of the pty that Emacs uses to talk with that terminal. */)
942 (register Lisp_Object process
)
944 CHECK_PROCESS (process
);
945 return XPROCESS (process
)->tty_name
;
948 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
950 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
952 (register Lisp_Object process
, Lisp_Object buffer
)
954 struct Lisp_Process
*p
;
956 CHECK_PROCESS (process
);
958 CHECK_BUFFER (buffer
);
959 p
= XPROCESS (process
);
960 pset_buffer (p
, buffer
);
961 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
962 pset_childp (p
, Fplist_put (p
->childp
, QCbuffer
, buffer
));
963 setup_process_coding_systems (process
);
967 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
969 doc
: /* Return the buffer PROCESS is associated with.
970 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
971 (register Lisp_Object process
)
973 CHECK_PROCESS (process
);
974 return XPROCESS (process
)->buffer
;
977 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
979 doc
: /* Return the marker for the end of the last output from PROCESS. */)
980 (register Lisp_Object process
)
982 CHECK_PROCESS (process
);
983 return XPROCESS (process
)->mark
;
986 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
988 doc
: /* Give PROCESS the filter function FILTER; nil means default.
989 A value of t means stop accepting output from the process.
991 When a process has a non-default filter, its buffer is not used for output.
992 Instead, each time it does output, the entire string of output is
993 passed to the filter.
995 The filter gets two arguments: the process and the string of output.
996 The string argument is normally a multibyte string, except:
997 - if the process' input coding system is no-conversion or raw-text,
998 it is a unibyte string (the non-converted input), or else
999 - if `default-enable-multibyte-characters' is nil, it is a unibyte
1000 string (the result of converting the decoded input multibyte
1001 string to unibyte with `string-make-unibyte'). */)
1002 (register Lisp_Object process
, Lisp_Object filter
)
1004 struct Lisp_Process
*p
;
1006 CHECK_PROCESS (process
);
1007 p
= XPROCESS (process
);
1009 /* Don't signal an error if the process' input file descriptor
1010 is closed. This could make debugging Lisp more difficult,
1011 for example when doing something like
1013 (setq process (start-process ...))
1015 (set-process-filter process ...) */
1018 filter
= Qinternal_default_process_filter
;
1022 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
1024 FD_CLR (p
->infd
, &input_wait_mask
);
1025 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
1027 else if (EQ (p
->filter
, Qt
)
1028 /* Network or serial process not stopped: */
1029 && !EQ (p
->command
, Qt
))
1031 FD_SET (p
->infd
, &input_wait_mask
);
1032 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
1036 pset_filter (p
, filter
);
1037 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1038 pset_childp (p
, Fplist_put (p
->childp
, QCfilter
, filter
));
1039 setup_process_coding_systems (process
);
1043 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
1045 doc
: /* Return the filter function of PROCESS.
1046 See `set-process-filter' for more info on filter functions. */)
1047 (register Lisp_Object process
)
1049 CHECK_PROCESS (process
);
1050 return XPROCESS (process
)->filter
;
1053 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1055 doc
: /* Give PROCESS the sentinel SENTINEL; nil for default.
1056 The sentinel is called as a function when the process changes state.
1057 It gets two arguments: the process, and a string describing the change. */)
1058 (register Lisp_Object process
, Lisp_Object sentinel
)
1060 struct Lisp_Process
*p
;
1062 CHECK_PROCESS (process
);
1063 p
= XPROCESS (process
);
1065 if (NILP (sentinel
))
1066 sentinel
= Qinternal_default_process_sentinel
;
1068 pset_sentinel (p
, sentinel
);
1069 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1070 pset_childp (p
, Fplist_put (p
->childp
, QCsentinel
, sentinel
));
1074 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1076 doc
: /* Return the sentinel of PROCESS.
1077 See `set-process-sentinel' for more info on sentinels. */)
1078 (register Lisp_Object process
)
1080 CHECK_PROCESS (process
);
1081 return XPROCESS (process
)->sentinel
;
1084 DEFUN ("set-process-window-size", Fset_process_window_size
,
1085 Sset_process_window_size
, 3, 3, 0,
1086 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1087 (register Lisp_Object process
, Lisp_Object height
, Lisp_Object width
)
1089 CHECK_PROCESS (process
);
1090 CHECK_RANGED_INTEGER (height
, 0, INT_MAX
);
1091 CHECK_RANGED_INTEGER (width
, 0, INT_MAX
);
1093 if (XPROCESS (process
)->infd
< 0
1094 || set_window_size (XPROCESS (process
)->infd
,
1095 XINT (height
), XINT (width
)) <= 0)
1101 DEFUN ("set-process-inherit-coding-system-flag",
1102 Fset_process_inherit_coding_system_flag
,
1103 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1104 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1105 If the second argument FLAG is non-nil, then the variable
1106 `buffer-file-coding-system' of the buffer associated with PROCESS
1107 will be bound to the value of the coding system used to decode
1110 This is useful when the coding system specified for the process buffer
1111 leaves either the character code conversion or the end-of-line conversion
1112 unspecified, or if the coding system used to decode the process output
1113 is more appropriate for saving the process buffer.
1115 Binding the variable `inherit-process-coding-system' to non-nil before
1116 starting the process is an alternative way of setting the inherit flag
1117 for the process which will run.
1119 This function returns FLAG. */)
1120 (register Lisp_Object process
, Lisp_Object flag
)
1122 CHECK_PROCESS (process
);
1123 XPROCESS (process
)->inherit_coding_system_flag
= !NILP (flag
);
1127 DEFUN ("set-process-query-on-exit-flag",
1128 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1130 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1131 If the second argument FLAG is non-nil, Emacs will query the user before
1132 exiting or killing a buffer if PROCESS is running. This function
1134 (register Lisp_Object process
, Lisp_Object flag
)
1136 CHECK_PROCESS (process
);
1137 XPROCESS (process
)->kill_without_query
= NILP (flag
);
1141 DEFUN ("process-query-on-exit-flag",
1142 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1144 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1145 (register Lisp_Object process
)
1147 CHECK_PROCESS (process
);
1148 return (XPROCESS (process
)->kill_without_query
? Qnil
: Qt
);
1151 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1153 doc
: /* Return the contact info of PROCESS; t for a real child.
1154 For a network or serial connection, the value depends on the optional
1155 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1156 SERVICE) for a network connection or (PORT SPEED) for a serial
1157 connection. If KEY is t, the complete contact information for the
1158 connection is returned, else the specific value for the keyword KEY is
1159 returned. See `make-network-process' or `make-serial-process' for a
1160 list of keywords. */)
1161 (register Lisp_Object process
, Lisp_Object key
)
1163 Lisp_Object contact
;
1165 CHECK_PROCESS (process
);
1166 contact
= XPROCESS (process
)->childp
;
1168 #ifdef DATAGRAM_SOCKETS
1169 if (DATAGRAM_CONN_P (process
)
1170 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1171 contact
= Fplist_put (contact
, QCremote
,
1172 Fprocess_datagram_address (process
));
1175 if ((!NETCONN_P (process
) && !SERIALCONN_P (process
)) || EQ (key
, Qt
))
1177 if (NILP (key
) && NETCONN_P (process
))
1178 return Fcons (Fplist_get (contact
, QChost
),
1179 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1180 if (NILP (key
) && SERIALCONN_P (process
))
1181 return Fcons (Fplist_get (contact
, QCport
),
1182 Fcons (Fplist_get (contact
, QCspeed
), Qnil
));
1183 return Fplist_get (contact
, key
);
1186 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1188 doc
: /* Return the plist of PROCESS. */)
1189 (register Lisp_Object process
)
1191 CHECK_PROCESS (process
);
1192 return XPROCESS (process
)->plist
;
1195 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1197 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1198 (register Lisp_Object process
, Lisp_Object plist
)
1200 CHECK_PROCESS (process
);
1203 pset_plist (XPROCESS (process
), plist
);
1207 #if 0 /* Turned off because we don't currently record this info
1208 in the process. Perhaps add it. */
1209 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1210 doc
: /* Return the connection type of PROCESS.
1211 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1212 a socket connection. */)
1213 (Lisp_Object process
)
1215 return XPROCESS (process
)->type
;
1219 DEFUN ("process-type", Fprocess_type
, Sprocess_type
, 1, 1, 0,
1220 doc
: /* Return the connection type of PROCESS.
1221 The value is either the symbol `real', `network', or `serial'.
1222 PROCESS may be a process, a buffer, the name of a process or buffer, or
1223 nil, indicating the current buffer's process. */)
1224 (Lisp_Object process
)
1227 proc
= get_process (process
);
1228 return XPROCESS (proc
)->type
;
1231 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1233 doc
: /* Convert network ADDRESS from internal format to a string.
1234 A 4 or 5 element vector represents an IPv4 address (with port number).
1235 An 8 or 9 element vector represents an IPv6 address (with port number).
1236 If optional second argument OMIT-PORT is non-nil, don't include a port
1237 number in the string, even when present in ADDRESS.
1238 Returns nil if format of ADDRESS is invalid. */)
1239 (Lisp_Object address
, Lisp_Object omit_port
)
1244 if (STRINGP (address
)) /* AF_LOCAL */
1247 if (VECTORP (address
)) /* AF_INET or AF_INET6 */
1249 register struct Lisp_Vector
*p
= XVECTOR (address
);
1250 ptrdiff_t size
= p
->header
.size
;
1251 Lisp_Object args
[10];
1254 if (size
== 4 || (size
== 5 && !NILP (omit_port
)))
1256 args
[0] = build_string ("%d.%d.%d.%d");
1261 args
[0] = build_string ("%d.%d.%d.%d:%d");
1264 else if (size
== 8 || (size
== 9 && !NILP (omit_port
)))
1266 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1271 args
[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1277 for (i
= 0; i
< nargs
; i
++)
1279 if (! RANGED_INTEGERP (0, p
->contents
[i
], 65535))
1282 if (nargs
<= 5 /* IPv4 */
1283 && i
< 4 /* host, not port */
1284 && XINT (p
->contents
[i
]) > 255)
1287 args
[i
+1] = p
->contents
[i
];
1290 return Fformat (nargs
+1, args
);
1293 if (CONSP (address
))
1295 Lisp_Object args
[2];
1296 args
[0] = build_string ("<Family %d>");
1297 args
[1] = Fcar (address
);
1298 return Fformat (2, args
);
1304 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1305 doc
: /* Return a list of all processes. */)
1308 return Fmapcar (Qcdr
, Vprocess_alist
);
1311 /* Starting asynchronous inferior processes. */
1313 static Lisp_Object
start_process_unwind (Lisp_Object proc
);
1315 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1316 doc
: /* Start a program in a subprocess. Return the process object for it.
1317 NAME is name for process. It is modified if necessary to make it unique.
1318 BUFFER is the buffer (or buffer name) to associate with the process.
1320 Process output (both standard output and standard error streams) goes
1321 at end of BUFFER, unless you specify an output stream or filter
1322 function to handle the output. BUFFER may also be nil, meaning that
1323 this process is not associated with any buffer.
1325 PROGRAM is the program file name. It is searched for in `exec-path'
1326 (which see). If nil, just associate a pty with the buffer. Remaining
1327 arguments are strings to give program as arguments.
1329 If you want to separate standard output from standard error, invoke
1330 the command through a shell and redirect one of them using the shell
1333 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1334 (ptrdiff_t nargs
, Lisp_Object
*args
)
1336 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1337 register unsigned char **new_argv
;
1339 ptrdiff_t count
= SPECPDL_INDEX ();
1343 buffer
= Fget_buffer_create (buffer
);
1345 /* Make sure that the child will be able to chdir to the current
1346 buffer's current directory, or its unhandled equivalent. We
1347 can't just have the child check for an error when it does the
1348 chdir, since it's in a vfork.
1350 We have to GCPRO around this because Fexpand_file_name and
1351 Funhandled_file_name_directory might call a file name handling
1352 function. The argument list is protected by the caller, so all
1353 we really have to worry about is buffer. */
1355 struct gcpro gcpro1
, gcpro2
;
1357 current_dir
= BVAR (current_buffer
, directory
);
1359 GCPRO2 (buffer
, current_dir
);
1361 current_dir
= Funhandled_file_name_directory (current_dir
);
1362 if (NILP (current_dir
))
1363 /* If the file name handler says that current_dir is unreachable, use
1364 a sensible default. */
1365 current_dir
= build_string ("~/");
1366 current_dir
= expand_and_dir_to_file (current_dir
, Qnil
);
1367 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1368 report_file_error ("Setting current directory",
1369 Fcons (BVAR (current_buffer
, directory
), Qnil
));
1375 CHECK_STRING (name
);
1379 if (!NILP (program
))
1380 CHECK_STRING (program
);
1382 proc
= make_process (name
);
1383 /* If an error occurs and we can't start the process, we want to
1384 remove it from the process list. This means that each error
1385 check in create_process doesn't need to call remove_process
1386 itself; it's all taken care of here. */
1387 record_unwind_protect (start_process_unwind
, proc
);
1389 pset_childp (XPROCESS (proc
), Qt
);
1390 pset_plist (XPROCESS (proc
), Qnil
);
1391 pset_type (XPROCESS (proc
), Qreal
);
1392 pset_buffer (XPROCESS (proc
), buffer
);
1393 pset_sentinel (XPROCESS (proc
), Qinternal_default_process_sentinel
);
1394 pset_filter (XPROCESS (proc
), Qinternal_default_process_filter
);
1395 pset_command (XPROCESS (proc
), Flist (nargs
- 2, args
+ 2));
1398 /* AKA GNUTLS_INITSTAGE(proc). */
1399 XPROCESS (proc
)->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
1400 pset_gnutls_cred_type (XPROCESS (proc
), Qnil
);
1403 #ifdef ADAPTIVE_READ_BUFFERING
1404 XPROCESS (proc
)->adaptive_read_buffering
1405 = (NILP (Vprocess_adaptive_read_buffering
) ? 0
1406 : EQ (Vprocess_adaptive_read_buffering
, Qt
) ? 1 : 2);
1409 /* Make the process marker point into the process buffer (if any). */
1410 if (BUFFERP (buffer
))
1411 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1412 BUF_ZV (XBUFFER (buffer
)),
1413 BUF_ZV_BYTE (XBUFFER (buffer
)));
1416 /* Decide coding systems for communicating with the process. Here
1417 we don't setup the structure coding_system nor pay attention to
1418 unibyte mode. They are done in create_process. */
1420 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1421 Lisp_Object coding_systems
= Qt
;
1422 Lisp_Object val
, *args2
;
1423 struct gcpro gcpro1
, gcpro2
;
1425 val
= Vcoding_system_for_read
;
1428 args2
= alloca ((nargs
+ 1) * sizeof *args2
);
1429 args2
[0] = Qstart_process
;
1430 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1431 GCPRO2 (proc
, current_dir
);
1432 if (!NILP (program
))
1433 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1435 if (CONSP (coding_systems
))
1436 val
= XCAR (coding_systems
);
1437 else if (CONSP (Vdefault_process_coding_system
))
1438 val
= XCAR (Vdefault_process_coding_system
);
1440 pset_decode_coding_system (XPROCESS (proc
), val
);
1442 val
= Vcoding_system_for_write
;
1445 if (EQ (coding_systems
, Qt
))
1447 args2
= alloca ((nargs
+ 1) * sizeof *args2
);
1448 args2
[0] = Qstart_process
;
1449 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1450 GCPRO2 (proc
, current_dir
);
1451 if (!NILP (program
))
1452 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1455 if (CONSP (coding_systems
))
1456 val
= XCDR (coding_systems
);
1457 else if (CONSP (Vdefault_process_coding_system
))
1458 val
= XCDR (Vdefault_process_coding_system
);
1460 pset_encode_coding_system (XPROCESS (proc
), val
);
1461 /* Note: At this moment, the above coding system may leave
1462 text-conversion or eol-conversion unspecified. They will be
1463 decided after we read output from the process and decode it by
1464 some coding system, or just before we actually send a text to
1469 pset_decoding_buf (XPROCESS (proc
), empty_unibyte_string
);
1470 XPROCESS (proc
)->decoding_carryover
= 0;
1471 pset_encoding_buf (XPROCESS (proc
), empty_unibyte_string
);
1473 XPROCESS (proc
)->inherit_coding_system_flag
1474 = !(NILP (buffer
) || !inherit_process_coding_system
);
1476 if (!NILP (program
))
1478 /* If program file name is not absolute, search our path for it.
1479 Put the name we will really use in TEM. */
1480 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1481 && !(SCHARS (program
) > 1
1482 && IS_DEVICE_SEP (SREF (program
, 1))))
1484 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1487 GCPRO4 (name
, program
, buffer
, current_dir
);
1488 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1491 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1492 tem
= Fexpand_file_name (tem
, Qnil
);
1496 if (!NILP (Ffile_directory_p (program
)))
1497 error ("Specified program for new process is a directory");
1501 /* If program file name starts with /: for quoting a magic name,
1503 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1504 && SREF (tem
, 1) == ':')
1505 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1508 Lisp_Object arg_encoding
= Qnil
;
1509 struct gcpro gcpro1
;
1512 /* Encode the file name and put it in NEW_ARGV.
1513 That's where the child will use it to execute the program. */
1514 tem
= Fcons (ENCODE_FILE (tem
), Qnil
);
1516 /* Here we encode arguments by the coding system used for sending
1517 data to the process. We don't support using different coding
1518 systems for encoding arguments and for encoding data sent to the
1521 for (i
= 3; i
< nargs
; i
++)
1523 tem
= Fcons (args
[i
], tem
);
1524 CHECK_STRING (XCAR (tem
));
1525 if (STRING_MULTIBYTE (XCAR (tem
)))
1527 if (NILP (arg_encoding
))
1528 arg_encoding
= (complement_process_encoding_system
1529 (XPROCESS (proc
)->encode_coding_system
));
1531 code_convert_string_norecord
1532 (XCAR (tem
), arg_encoding
, 1));
1539 /* Now that everything is encoded we can collect the strings into
1541 new_argv
= alloca ((nargs
- 1) * sizeof *new_argv
);
1542 new_argv
[nargs
- 2] = 0;
1544 for (i
= nargs
- 2; i
-- != 0; )
1546 new_argv
[i
] = SDATA (XCAR (tem
));
1550 create_process (proc
, (char **) new_argv
, current_dir
);
1555 return unbind_to (count
, proc
);
1558 /* This function is the unwind_protect form for Fstart_process. If
1559 PROC doesn't have its pid set, then we know someone has signaled
1560 an error and the process wasn't started successfully, so we should
1561 remove it from the process list. */
1563 start_process_unwind (Lisp_Object proc
)
1565 if (!PROCESSP (proc
))
1568 /* Was PROC started successfully?
1569 -2 is used for a pty with no process, eg for gdb. */
1570 if (XPROCESS (proc
)->pid
<= 0 && XPROCESS (proc
)->pid
!= -2)
1571 remove_process (proc
);
1577 create_process_1 (struct atimer
*timer
)
1579 /* Nothing to do. */
1584 create_process (Lisp_Object process
, char **new_argv
, Lisp_Object current_dir
)
1586 int inchannel
, outchannel
;
1590 int wait_child_setup
[2];
1592 int forkin
, forkout
;
1594 Lisp_Object lisp_pty_name
= Qnil
;
1595 Lisp_Object encoded_current_dir
;
1597 inchannel
= outchannel
= -1;
1600 if (!NILP (Vprocess_connection_type
))
1601 outchannel
= inchannel
= allocate_pty ();
1605 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1606 /* On most USG systems it does not work to open the pty's tty here,
1607 then close it and reopen it in the child. */
1608 /* Don't let this terminal become our controlling terminal
1609 (in case we don't have one). */
1610 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1612 report_file_error ("Opening pty", Qnil
);
1614 forkin
= forkout
= -1;
1615 #endif /* not USG, or USG_SUBTTY_WORKS */
1617 lisp_pty_name
= build_string (pty_name
);
1620 #endif /* HAVE_PTYS */
1625 report_file_error ("Creating pipe", Qnil
);
1631 emacs_close (inchannel
);
1632 emacs_close (forkout
);
1633 report_file_error ("Creating pipe", Qnil
);
1643 tem
= pipe (wait_child_setup
);
1645 report_file_error ("Creating pipe", Qnil
);
1646 tem
= fcntl (wait_child_setup
[1], F_GETFD
, 0);
1648 tem
= fcntl (wait_child_setup
[1], F_SETFD
, tem
| FD_CLOEXEC
);
1651 emacs_close (wait_child_setup
[0]);
1652 emacs_close (wait_child_setup
[1]);
1653 report_file_error ("Setting file descriptor flags", Qnil
);
1658 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1659 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1661 /* Record this as an active process, with its channels.
1662 As a result, child_setup will close Emacs's side of the pipes. */
1663 chan_process
[inchannel
] = process
;
1664 XPROCESS (process
)->infd
= inchannel
;
1665 XPROCESS (process
)->outfd
= outchannel
;
1667 /* Previously we recorded the tty descriptor used in the subprocess.
1668 It was only used for getting the foreground tty process, so now
1669 we just reopen the device (see emacs_get_tty_pgrp) as this is
1670 more portable (see USG_SUBTTY_WORKS above). */
1672 XPROCESS (process
)->pty_flag
= pty_flag
;
1673 pset_status (XPROCESS (process
), Qrun
);
1675 FD_SET (inchannel
, &input_wait_mask
);
1676 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1677 if (inchannel
> max_process_desc
)
1678 max_process_desc
= inchannel
;
1680 /* This may signal an error. */
1681 setup_process_coding_systems (process
);
1683 encoded_current_dir
= ENCODE_FILE (current_dir
);
1686 block_child_signal ();
1689 /* vfork, and prevent local vars from being clobbered by the vfork. */
1691 Lisp_Object
volatile encoded_current_dir_volatile
= encoded_current_dir
;
1692 Lisp_Object
volatile lisp_pty_name_volatile
= lisp_pty_name
;
1693 Lisp_Object
volatile process_volatile
= process
;
1694 bool volatile pty_flag_volatile
= pty_flag
;
1695 char **volatile new_argv_volatile
= new_argv
;
1696 int volatile forkin_volatile
= forkin
;
1697 int volatile forkout_volatile
= forkout
;
1698 int volatile wait_child_setup_0_volatile
= wait_child_setup
[0];
1699 int volatile wait_child_setup_1_volatile
= wait_child_setup
[1];
1703 encoded_current_dir
= encoded_current_dir_volatile
;
1704 lisp_pty_name
= lisp_pty_name_volatile
;
1705 process
= process_volatile
;
1706 pty_flag
= pty_flag_volatile
;
1707 new_argv
= new_argv_volatile
;
1708 forkin
= forkin_volatile
;
1709 forkout
= forkout_volatile
;
1710 wait_child_setup
[0] = wait_child_setup_0_volatile
;
1711 wait_child_setup
[1] = wait_child_setup_1_volatile
;
1715 #endif /* not WINDOWSNT */
1717 int xforkin
= forkin
;
1718 int xforkout
= forkout
;
1720 /* Make the pty be the controlling terminal of the process. */
1722 /* First, disconnect its current controlling terminal. */
1723 /* We tried doing setsid only if pty_flag, but it caused
1724 process_set_signal to fail on SGI when using a pipe. */
1726 /* Make the pty's terminal the controlling terminal. */
1727 if (pty_flag
&& xforkin
>= 0)
1730 /* We ignore the return value
1731 because faith@cs.unc.edu says that is necessary on Linux. */
1732 ioctl (xforkin
, TIOCSCTTY
, 0);
1735 #if defined (LDISC1)
1736 if (pty_flag
&& xforkin
>= 0)
1739 tcgetattr (xforkin
, &t
);
1741 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1742 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1745 #if defined (NTTYDISC) && defined (TIOCSETD)
1746 if (pty_flag
&& xforkin
>= 0)
1748 /* Use new line discipline. */
1749 int ldisc
= NTTYDISC
;
1750 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1755 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1756 can do TIOCSPGRP only to the process's controlling tty. */
1759 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1760 I can't test it since I don't have 4.3. */
1761 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1764 ioctl (j
, TIOCNOTTY
, 0);
1768 #endif /* TIOCNOTTY */
1770 #if !defined (DONT_REOPEN_PTY)
1771 /*** There is a suggestion that this ought to be a
1772 conditional on TIOCSPGRP, or !defined TIOCSCTTY.
1773 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1774 that system does seem to need this code, even though
1775 both TIOCSCTTY is defined. */
1776 /* Now close the pty (if we had it open) and reopen it.
1777 This makes the pty the controlling terminal of the subprocess. */
1781 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1784 emacs_close (xforkin
);
1785 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
1789 emacs_write (1, "Couldn't open the pty terminal ", 31);
1790 emacs_write (1, pty_name
, strlen (pty_name
));
1791 emacs_write (1, "\n", 1);
1796 #endif /* not DONT_REOPEN_PTY */
1798 #ifdef SETUP_SLAVE_PTY
1803 #endif /* SETUP_SLAVE_PTY */
1805 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1806 Now reenable it in the child, so it will die when we want it to. */
1808 signal (SIGHUP
, SIG_DFL
);
1810 #endif /* HAVE_PTYS */
1812 signal (SIGINT
, SIG_DFL
);
1813 signal (SIGQUIT
, SIG_DFL
);
1815 /* Emacs ignores SIGPIPE, but the child should not. */
1816 signal (SIGPIPE
, SIG_DFL
);
1818 /* Stop blocking SIGCHLD in the child. */
1819 unblock_child_signal ();
1822 child_setup_tty (xforkout
);
1824 pid
= child_setup (xforkin
, xforkout
, xforkout
,
1825 new_argv
, 1, encoded_current_dir
);
1826 #else /* not WINDOWSNT */
1827 emacs_close (wait_child_setup
[0]);
1828 child_setup (xforkin
, xforkout
, xforkout
,
1829 new_argv
, 1, encoded_current_dir
);
1830 #endif /* not WINDOWSNT */
1833 /* Back in the parent process. */
1835 XPROCESS (process
)->pid
= pid
;
1837 XPROCESS (process
)->alive
= 1;
1839 /* Stop blocking in the parent. */
1840 unblock_child_signal ();
1846 emacs_close (forkin
);
1847 if (forkin
!= forkout
&& forkout
>= 0)
1848 emacs_close (forkout
);
1852 /* vfork succeeded. */
1855 register_child (pid
, inchannel
);
1856 #endif /* WINDOWSNT */
1858 /* If the subfork execv fails, and it exits,
1859 this close hangs. I don't know why.
1860 So have an interrupt jar it loose. */
1862 struct atimer
*timer
;
1863 EMACS_TIME offset
= make_emacs_time (1, 0);
1866 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
1869 emacs_close (forkin
);
1871 cancel_atimer (timer
);
1875 if (forkin
!= forkout
&& forkout
>= 0)
1876 emacs_close (forkout
);
1878 pset_tty_name (XPROCESS (process
), lisp_pty_name
);
1881 /* Wait for child_setup to complete in case that vfork is
1882 actually defined as fork. The descriptor wait_child_setup[1]
1883 of a pipe is closed at the child side either by close-on-exec
1884 on successful execve or the _exit call in child_setup. */
1888 emacs_close (wait_child_setup
[1]);
1889 emacs_read (wait_child_setup
[0], &dummy
, 1);
1890 emacs_close (wait_child_setup
[0]);
1895 /* Now generate the error if vfork failed. */
1897 report_file_error ("Doing vfork", Qnil
);
1901 create_pty (Lisp_Object process
)
1903 int inchannel
, outchannel
;
1906 inchannel
= outchannel
= -1;
1909 if (!NILP (Vprocess_connection_type
))
1910 outchannel
= inchannel
= allocate_pty ();
1914 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1915 /* On most USG systems it does not work to open the pty's tty here,
1916 then close it and reopen it in the child. */
1917 /* Don't let this terminal become our controlling terminal
1918 (in case we don't have one). */
1919 int forkout
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1921 report_file_error ("Opening pty", Qnil
);
1922 #if defined (DONT_REOPEN_PTY)
1923 /* In the case that vfork is defined as fork, the parent process
1924 (Emacs) may send some data before the child process completes
1925 tty options setup. So we setup tty before forking. */
1926 child_setup_tty (forkout
);
1927 #endif /* DONT_REOPEN_PTY */
1928 #endif /* not USG, or USG_SUBTTY_WORKS */
1931 #endif /* HAVE_PTYS */
1933 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1934 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1936 /* Record this as an active process, with its channels.
1937 As a result, child_setup will close Emacs's side of the pipes. */
1938 chan_process
[inchannel
] = process
;
1939 XPROCESS (process
)->infd
= inchannel
;
1940 XPROCESS (process
)->outfd
= outchannel
;
1942 /* Previously we recorded the tty descriptor used in the subprocess.
1943 It was only used for getting the foreground tty process, so now
1944 we just reopen the device (see emacs_get_tty_pgrp) as this is
1945 more portable (see USG_SUBTTY_WORKS above). */
1947 XPROCESS (process
)->pty_flag
= pty_flag
;
1948 pset_status (XPROCESS (process
), Qrun
);
1949 setup_process_coding_systems (process
);
1951 FD_SET (inchannel
, &input_wait_mask
);
1952 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1953 if (inchannel
> max_process_desc
)
1954 max_process_desc
= inchannel
;
1956 XPROCESS (process
)->pid
= -2;
1959 pset_tty_name (XPROCESS (process
), build_string (pty_name
));
1962 pset_tty_name (XPROCESS (process
), Qnil
);
1966 /* Convert an internal struct sockaddr to a lisp object (vector or string).
1967 The address family of sa is not included in the result. */
1970 conv_sockaddr_to_lisp (struct sockaddr
*sa
, int len
)
1972 Lisp_Object address
;
1975 register struct Lisp_Vector
*p
;
1977 /* Workaround for a bug in getsockname on BSD: Names bound to
1978 sockets in the UNIX domain are inaccessible; getsockname returns
1979 a zero length name. */
1980 if (len
< offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
))
1981 return empty_unibyte_string
;
1983 switch (sa
->sa_family
)
1987 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
1988 len
= sizeof (sin
->sin_addr
) + 1;
1989 address
= Fmake_vector (make_number (len
), Qnil
);
1990 p
= XVECTOR (address
);
1991 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
1992 cp
= (unsigned char *) &sin
->sin_addr
;
1998 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
1999 uint16_t *ip6
= (uint16_t *) &sin6
->sin6_addr
;
2000 len
= sizeof (sin6
->sin6_addr
)/2 + 1;
2001 address
= Fmake_vector (make_number (len
), Qnil
);
2002 p
= XVECTOR (address
);
2003 p
->contents
[--len
] = make_number (ntohs (sin6
->sin6_port
));
2004 for (i
= 0; i
< len
; i
++)
2005 p
->contents
[i
] = make_number (ntohs (ip6
[i
]));
2009 #ifdef HAVE_LOCAL_SOCKETS
2012 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2013 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
2014 if (sockun
->sun_path
[i
] == 0)
2016 return make_unibyte_string (sockun
->sun_path
, i
);
2020 len
-= offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
);
2021 address
= Fcons (make_number (sa
->sa_family
),
2022 Fmake_vector (make_number (len
), Qnil
));
2023 p
= XVECTOR (XCDR (address
));
2024 cp
= (unsigned char *) &sa
->sa_family
+ sizeof (sa
->sa_family
);
2030 p
->contents
[i
++] = make_number (*cp
++);
2036 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2039 get_lisp_to_sockaddr_size (Lisp_Object address
, int *familyp
)
2041 register struct Lisp_Vector
*p
;
2043 if (VECTORP (address
))
2045 p
= XVECTOR (address
);
2046 if (p
->header
.size
== 5)
2049 return sizeof (struct sockaddr_in
);
2052 else if (p
->header
.size
== 9)
2054 *familyp
= AF_INET6
;
2055 return sizeof (struct sockaddr_in6
);
2059 #ifdef HAVE_LOCAL_SOCKETS
2060 else if (STRINGP (address
))
2062 *familyp
= AF_LOCAL
;
2063 return sizeof (struct sockaddr_un
);
2066 else if (CONSP (address
) && TYPE_RANGED_INTEGERP (int, XCAR (address
))
2067 && VECTORP (XCDR (address
)))
2069 struct sockaddr
*sa
;
2070 *familyp
= XINT (XCAR (address
));
2071 p
= XVECTOR (XCDR (address
));
2072 return p
->header
.size
+ sizeof (sa
->sa_family
);
2077 /* Convert an address object (vector or string) to an internal sockaddr.
2079 The address format has been basically validated by
2080 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2081 it could have come from user data. So if FAMILY is not valid,
2082 we return after zeroing *SA. */
2085 conv_lisp_to_sockaddr (int family
, Lisp_Object address
, struct sockaddr
*sa
, int len
)
2087 register struct Lisp_Vector
*p
;
2088 register unsigned char *cp
= NULL
;
2092 memset (sa
, 0, len
);
2094 if (VECTORP (address
))
2096 p
= XVECTOR (address
);
2097 if (family
== AF_INET
)
2099 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2100 len
= sizeof (sin
->sin_addr
) + 1;
2101 hostport
= XINT (p
->contents
[--len
]);
2102 sin
->sin_port
= htons (hostport
);
2103 cp
= (unsigned char *)&sin
->sin_addr
;
2104 sa
->sa_family
= family
;
2107 else if (family
== AF_INET6
)
2109 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2110 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2111 len
= sizeof (sin6
->sin6_addr
) + 1;
2112 hostport
= XINT (p
->contents
[--len
]);
2113 sin6
->sin6_port
= htons (hostport
);
2114 for (i
= 0; i
< len
; i
++)
2115 if (INTEGERP (p
->contents
[i
]))
2117 int j
= XFASTINT (p
->contents
[i
]) & 0xffff;
2120 sa
->sa_family
= family
;
2127 else if (STRINGP (address
))
2129 #ifdef HAVE_LOCAL_SOCKETS
2130 if (family
== AF_LOCAL
)
2132 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2133 cp
= SDATA (address
);
2134 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2135 sockun
->sun_path
[i
] = *cp
++;
2136 sa
->sa_family
= family
;
2143 p
= XVECTOR (XCDR (address
));
2144 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2147 for (i
= 0; i
< len
; i
++)
2148 if (INTEGERP (p
->contents
[i
]))
2149 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2152 #ifdef DATAGRAM_SOCKETS
2153 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2155 doc
: /* Get the current datagram address associated with PROCESS. */)
2156 (Lisp_Object process
)
2160 CHECK_PROCESS (process
);
2162 if (!DATAGRAM_CONN_P (process
))
2165 channel
= XPROCESS (process
)->infd
;
2166 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2167 datagram_address
[channel
].len
);
2170 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2172 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2173 Returns nil upon error setting address, ADDRESS otherwise. */)
2174 (Lisp_Object process
, Lisp_Object address
)
2179 CHECK_PROCESS (process
);
2181 if (!DATAGRAM_CONN_P (process
))
2184 channel
= XPROCESS (process
)->infd
;
2186 len
= get_lisp_to_sockaddr_size (address
, &family
);
2187 if (len
== 0 || datagram_address
[channel
].len
!= len
)
2189 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2195 static const struct socket_options
{
2196 /* The name of this option. Should be lowercase version of option
2197 name without SO_ prefix. */
2199 /* Option level SOL_... */
2201 /* Option number SO_... */
2203 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2204 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2205 } socket_options
[] =
2207 #ifdef SO_BINDTODEVICE
2208 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2211 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2214 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2217 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2220 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2223 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2226 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2229 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2231 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2234 /* Set option OPT to value VAL on socket S.
2236 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2237 Signals an error if setting a known option fails.
2241 set_socket_option (int s
, Lisp_Object opt
, Lisp_Object val
)
2244 const struct socket_options
*sopt
;
2249 name
= SSDATA (SYMBOL_NAME (opt
));
2250 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2251 if (strcmp (name
, sopt
->name
) == 0)
2254 switch (sopt
->opttype
)
2259 optval
= NILP (val
) ? 0 : 1;
2260 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2261 &optval
, sizeof (optval
));
2268 if (TYPE_RANGED_INTEGERP (int, val
))
2269 optval
= XINT (val
);
2271 error ("Bad option value for %s", name
);
2272 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2273 &optval
, sizeof (optval
));
2277 #ifdef SO_BINDTODEVICE
2280 char devname
[IFNAMSIZ
+1];
2282 /* This is broken, at least in the Linux 2.4 kernel.
2283 To unbind, the arg must be a zero integer, not the empty string.
2284 This should work on all systems. KFS. 2003-09-23. */
2285 memset (devname
, 0, sizeof devname
);
2288 char *arg
= SSDATA (val
);
2289 int len
= min (strlen (arg
), IFNAMSIZ
);
2290 memcpy (devname
, arg
, len
);
2292 else if (!NILP (val
))
2293 error ("Bad option value for %s", name
);
2294 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2303 struct linger linger
;
2306 linger
.l_linger
= 0;
2307 if (TYPE_RANGED_INTEGERP (int, val
))
2308 linger
.l_linger
= XINT (val
);
2310 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2311 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2312 &linger
, sizeof (linger
));
2322 report_file_error ("Cannot set network option",
2323 Fcons (opt
, Fcons (val
, Qnil
)));
2324 return (1 << sopt
->optbit
);
2328 DEFUN ("set-network-process-option",
2329 Fset_network_process_option
, Sset_network_process_option
,
2331 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2332 See `make-network-process' for a list of options and values.
2333 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2334 OPTION is not a supported option, return nil instead; otherwise return t. */)
2335 (Lisp_Object process
, Lisp_Object option
, Lisp_Object value
, Lisp_Object no_error
)
2338 struct Lisp_Process
*p
;
2340 CHECK_PROCESS (process
);
2341 p
= XPROCESS (process
);
2342 if (!NETCONN1_P (p
))
2343 error ("Process is not a network process");
2347 error ("Process is not running");
2349 if (set_socket_option (s
, option
, value
))
2351 pset_childp (p
, Fplist_put (p
->childp
, option
, value
));
2355 if (NILP (no_error
))
2356 error ("Unknown or unsupported option");
2362 DEFUN ("serial-process-configure",
2363 Fserial_process_configure
,
2364 Sserial_process_configure
,
2366 doc
: /* Configure speed, bytesize, etc. of a serial process.
2368 Arguments are specified as keyword/argument pairs. Attributes that
2369 are not given are re-initialized from the process's current
2370 configuration (available via the function `process-contact') or set to
2371 reasonable default values. The following arguments are defined:
2377 -- Any of these arguments can be given to identify the process that is
2378 to be configured. If none of these arguments is given, the current
2379 buffer's process is used.
2381 :speed SPEED -- SPEED is the speed of the serial port in bits per
2382 second, also called baud rate. Any value can be given for SPEED, but
2383 most serial ports work only at a few defined values between 1200 and
2384 115200, with 9600 being the most common value. If SPEED is nil, the
2385 serial port is not configured any further, i.e., all other arguments
2386 are ignored. This may be useful for special serial ports such as
2387 Bluetooth-to-serial converters which can only be configured through AT
2388 commands. A value of nil for SPEED can be used only when passed
2389 through `make-serial-process' or `serial-term'.
2391 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2392 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2394 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2395 `odd' (use odd parity), or the symbol `even' (use even parity). If
2396 PARITY is not given, no parity is used.
2398 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2399 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2400 is not given or nil, 1 stopbit is used.
2402 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2403 flowcontrol to be used, which is either nil (don't use flowcontrol),
2404 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2405 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2406 flowcontrol is used.
2408 `serial-process-configure' is called by `make-serial-process' for the
2409 initial configuration of the serial port.
2413 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2415 \(serial-process-configure
2416 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2418 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2420 usage: (serial-process-configure &rest ARGS) */)
2421 (ptrdiff_t nargs
, Lisp_Object
*args
)
2423 struct Lisp_Process
*p
;
2424 Lisp_Object contact
= Qnil
;
2425 Lisp_Object proc
= Qnil
;
2426 struct gcpro gcpro1
;
2428 contact
= Flist (nargs
, args
);
2431 proc
= Fplist_get (contact
, QCprocess
);
2433 proc
= Fplist_get (contact
, QCname
);
2435 proc
= Fplist_get (contact
, QCbuffer
);
2437 proc
= Fplist_get (contact
, QCport
);
2438 proc
= get_process (proc
);
2439 p
= XPROCESS (proc
);
2440 if (!EQ (p
->type
, Qserial
))
2441 error ("Not a serial process");
2443 if (NILP (Fplist_get (p
->childp
, QCspeed
)))
2449 serial_configure (p
, contact
);
2455 /* Used by make-serial-process to recover from errors. */
2457 make_serial_process_unwind (Lisp_Object proc
)
2459 if (!PROCESSP (proc
))
2461 remove_process (proc
);
2465 DEFUN ("make-serial-process", Fmake_serial_process
, Smake_serial_process
,
2467 doc
: /* Create and return a serial port process.
2469 In Emacs, serial port connections are represented by process objects,
2470 so input and output work as for subprocesses, and `delete-process'
2471 closes a serial port connection. However, a serial process has no
2472 process id, it cannot be signaled, and the status codes are different
2473 from normal processes.
2475 `make-serial-process' creates a process and a buffer, on which you
2476 probably want to use `process-send-string'. Try \\[serial-term] for
2477 an interactive terminal. See below for examples.
2479 Arguments are specified as keyword/argument pairs. The following
2480 arguments are defined:
2482 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2483 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2484 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2485 the backslashes in strings).
2487 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2488 which this function calls.
2490 :name NAME -- NAME is the name of the process. If NAME is not given,
2491 the value of PORT is used.
2493 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2494 with the process. Process output goes at the end of that buffer,
2495 unless you specify an output stream or filter function to handle the
2496 output. If BUFFER is not given, the value of NAME is used.
2498 :coding CODING -- If CODING is a symbol, it specifies the coding
2499 system used for both reading and writing for this process. If CODING
2500 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2501 ENCODING is used for writing.
2503 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2504 the process is running. If BOOL is not given, query before exiting.
2506 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2507 In the stopped state, a serial process does not accept incoming data,
2508 but you can send outgoing data. The stopped state is cleared by
2509 `continue-process' and set by `stop-process'.
2511 :filter FILTER -- Install FILTER as the process filter.
2513 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2515 :plist PLIST -- Install PLIST as the initial plist of the process.
2521 -- This function calls `serial-process-configure' to handle these
2524 The original argument list, possibly modified by later configuration,
2525 is available via the function `process-contact'.
2529 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2531 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2533 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2535 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2537 usage: (make-serial-process &rest ARGS) */)
2538 (ptrdiff_t nargs
, Lisp_Object
*args
)
2541 Lisp_Object proc
, contact
, port
;
2542 struct Lisp_Process
*p
;
2543 struct gcpro gcpro1
;
2544 Lisp_Object name
, buffer
;
2545 Lisp_Object tem
, val
;
2546 ptrdiff_t specpdl_count
;
2551 contact
= Flist (nargs
, args
);
2554 port
= Fplist_get (contact
, QCport
);
2556 error ("No port specified");
2557 CHECK_STRING (port
);
2559 if (NILP (Fplist_member (contact
, QCspeed
)))
2560 error (":speed not specified");
2561 if (!NILP (Fplist_get (contact
, QCspeed
)))
2562 CHECK_NUMBER (Fplist_get (contact
, QCspeed
));
2564 name
= Fplist_get (contact
, QCname
);
2567 CHECK_STRING (name
);
2568 proc
= make_process (name
);
2569 specpdl_count
= SPECPDL_INDEX ();
2570 record_unwind_protect (make_serial_process_unwind
, proc
);
2571 p
= XPROCESS (proc
);
2573 fd
= serial_open (SSDATA (port
));
2576 if (fd
> max_process_desc
)
2577 max_process_desc
= fd
;
2578 chan_process
[fd
] = proc
;
2580 buffer
= Fplist_get (contact
, QCbuffer
);
2583 buffer
= Fget_buffer_create (buffer
);
2584 pset_buffer (p
, buffer
);
2586 pset_childp (p
, contact
);
2587 pset_plist (p
, Fcopy_sequence (Fplist_get (contact
, QCplist
)));
2588 pset_type (p
, Qserial
);
2589 pset_sentinel (p
, Fplist_get (contact
, QCsentinel
));
2590 pset_filter (p
, Fplist_get (contact
, QCfilter
));
2592 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
2593 p
->kill_without_query
= 1;
2594 if (tem
= Fplist_get (contact
, QCstop
), !NILP (tem
))
2595 pset_command (p
, Qt
);
2598 if (!EQ (p
->command
, Qt
))
2600 FD_SET (fd
, &input_wait_mask
);
2601 FD_SET (fd
, &non_keyboard_wait_mask
);
2604 if (BUFFERP (buffer
))
2606 set_marker_both (p
->mark
, buffer
,
2607 BUF_ZV (XBUFFER (buffer
)),
2608 BUF_ZV_BYTE (XBUFFER (buffer
)));
2611 tem
= Fplist_member (contact
, QCcoding
);
2612 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
2618 val
= XCAR (XCDR (tem
));
2622 else if (!NILP (Vcoding_system_for_read
))
2623 val
= Vcoding_system_for_read
;
2624 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
2625 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
2627 pset_decode_coding_system (p
, val
);
2632 val
= XCAR (XCDR (tem
));
2636 else if (!NILP (Vcoding_system_for_write
))
2637 val
= Vcoding_system_for_write
;
2638 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
2639 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
2641 pset_encode_coding_system (p
, val
);
2643 setup_process_coding_systems (proc
);
2644 pset_decoding_buf (p
, empty_unibyte_string
);
2645 p
->decoding_carryover
= 0;
2646 pset_encoding_buf (p
, empty_unibyte_string
);
2647 p
->inherit_coding_system_flag
2648 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
2650 Fserial_process_configure (nargs
, args
);
2652 specpdl_ptr
= specpdl
+ specpdl_count
;
2658 /* Create a network stream/datagram client/server process. Treated
2659 exactly like a normal process when reading and writing. Primary
2660 differences are in status display and process deletion. A network
2661 connection has no PID; you cannot signal it. All you can do is
2662 stop/continue it and deactivate/close it via delete-process */
2664 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2666 doc
: /* Create and return a network server or client process.
2668 In Emacs, network connections are represented by process objects, so
2669 input and output work as for subprocesses and `delete-process' closes
2670 a network connection. However, a network process has no process id,
2671 it cannot be signaled, and the status codes are different from normal
2674 Arguments are specified as keyword/argument pairs. The following
2675 arguments are defined:
2677 :name NAME -- NAME is name for process. It is modified if necessary
2680 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2681 with the process. Process output goes at end of that buffer, unless
2682 you specify an output stream or filter function to handle the output.
2683 BUFFER may be also nil, meaning that this process is not associated
2686 :host HOST -- HOST is name of the host to connect to, or its IP
2687 address. The symbol `local' specifies the local host. If specified
2688 for a server process, it must be a valid name or address for the local
2689 host, and only clients connecting to that address will be accepted.
2691 :service SERVICE -- SERVICE is name of the service desired, or an
2692 integer specifying a port number to connect to. If SERVICE is t,
2693 a random port number is selected for the server. (If Emacs was
2694 compiled with getaddrinfo, a port number can also be specified as a
2695 string, e.g. "80", as well as an integer. This is not portable.)
2697 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2698 stream type connection, `datagram' creates a datagram type connection,
2699 `seqpacket' creates a reliable datagram connection.
2701 :family FAMILY -- FAMILY is the address (and protocol) family for the
2702 service specified by HOST and SERVICE. The default (nil) is to use
2703 whatever address family (IPv4 or IPv6) that is defined for the host
2704 and port number specified by HOST and SERVICE. Other address families
2706 local -- for a local (i.e. UNIX) address specified by SERVICE.
2707 ipv4 -- use IPv4 address family only.
2708 ipv6 -- use IPv6 address family only.
2710 :local ADDRESS -- ADDRESS is the local address used for the connection.
2711 This parameter is ignored when opening a client process. When specified
2712 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2714 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2715 connection. This parameter is ignored when opening a stream server
2716 process. For a datagram server process, it specifies the initial
2717 setting of the remote datagram address. When specified for a client
2718 process, the FAMILY, HOST, and SERVICE args are ignored.
2720 The format of ADDRESS depends on the address family:
2721 - An IPv4 address is represented as an vector of integers [A B C D P]
2722 corresponding to numeric IP address A.B.C.D and port number P.
2723 - A local address is represented as a string with the address in the
2724 local address space.
2725 - An "unsupported family" address is represented by a cons (F . AV)
2726 where F is the family number and AV is a vector containing the socket
2727 address data with one element per address data byte. Do not rely on
2728 this format in portable code, as it may depend on implementation
2729 defined constants, data sizes, and data structure alignment.
2731 :coding CODING -- If CODING is a symbol, it specifies the coding
2732 system used for both reading and writing for this process. If CODING
2733 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2734 ENCODING is used for writing.
2736 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2737 return without waiting for the connection to complete; instead, the
2738 sentinel function will be called with second arg matching "open" (if
2739 successful) or "failed" when the connect completes. Default is to use
2740 a blocking connect (i.e. wait) for stream type connections.
2742 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2743 running when Emacs is exited.
2745 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2746 In the stopped state, a server process does not accept new
2747 connections, and a client process does not handle incoming traffic.
2748 The stopped state is cleared by `continue-process' and set by
2751 :filter FILTER -- Install FILTER as the process filter.
2753 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2754 process filter are multibyte, otherwise they are unibyte.
2755 If this keyword is not specified, the strings are multibyte if
2756 the default value of `enable-multibyte-characters' is non-nil.
2758 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2760 :log LOG -- Install LOG as the server process log function. This
2761 function is called when the server accepts a network connection from a
2762 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2763 is the server process, CLIENT is the new process for the connection,
2764 and MESSAGE is a string.
2766 :plist PLIST -- Install PLIST as the new process' initial plist.
2768 :server QLEN -- if QLEN is non-nil, create a server process for the
2769 specified FAMILY, SERVICE, and connection type (stream or datagram).
2770 If QLEN is an integer, it is used as the max. length of the server's
2771 pending connection queue (also known as the backlog); the default
2772 queue length is 5. Default is to create a client process.
2774 The following network options can be specified for this connection:
2776 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2777 :dontroute BOOL -- Only send to directly connected hosts.
2778 :keepalive BOOL -- Send keep-alive messages on network stream.
2779 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2780 :oobinline BOOL -- Place out-of-band data in receive data stream.
2781 :priority INT -- Set protocol defined priority for sent packets.
2782 :reuseaddr BOOL -- Allow reusing a recently used local address
2783 (this is allowed by default for a server process).
2784 :bindtodevice NAME -- bind to interface NAME. Using this may require
2785 special privileges on some systems.
2787 Consult the relevant system programmer's manual pages for more
2788 information on using these options.
2791 A server process will listen for and accept connections from clients.
2792 When a client connection is accepted, a new network process is created
2793 for the connection with the following parameters:
2795 - The client's process name is constructed by concatenating the server
2796 process' NAME and a client identification string.
2797 - If the FILTER argument is non-nil, the client process will not get a
2798 separate process buffer; otherwise, the client's process buffer is a newly
2799 created buffer named after the server process' BUFFER name or process
2800 NAME concatenated with the client identification string.
2801 - The connection type and the process filter and sentinel parameters are
2802 inherited from the server process' TYPE, FILTER and SENTINEL.
2803 - The client process' contact info is set according to the client's
2804 addressing information (typically an IP address and a port number).
2805 - The client process' plist is initialized from the server's plist.
2807 Notice that the FILTER and SENTINEL args are never used directly by
2808 the server process. Also, the BUFFER argument is not used directly by
2809 the server process, but via the optional :log function, accepted (and
2810 failed) connections may be logged in the server process' buffer.
2812 The original argument list, modified with the actual connection
2813 information, is available via the `process-contact' function.
2815 usage: (make-network-process &rest ARGS) */)
2816 (ptrdiff_t nargs
, Lisp_Object
*args
)
2819 Lisp_Object contact
;
2820 struct Lisp_Process
*p
;
2821 #ifdef HAVE_GETADDRINFO
2822 struct addrinfo ai
, *res
, *lres
;
2823 struct addrinfo hints
;
2824 const char *portstring
;
2826 #else /* HAVE_GETADDRINFO */
2827 struct _emacs_addrinfo
2833 struct sockaddr
*ai_addr
;
2834 struct _emacs_addrinfo
*ai_next
;
2836 #endif /* HAVE_GETADDRINFO */
2837 struct sockaddr_in address_in
;
2838 #ifdef HAVE_LOCAL_SOCKETS
2839 struct sockaddr_un address_un
;
2844 int s
= -1, outch
, inch
;
2845 struct gcpro gcpro1
;
2846 ptrdiff_t count
= SPECPDL_INDEX ();
2848 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
2850 Lisp_Object name
, buffer
, host
, service
, address
;
2851 Lisp_Object filter
, sentinel
;
2852 bool is_non_blocking_client
= 0;
2861 /* Save arguments for process-contact and clone-process. */
2862 contact
= Flist (nargs
, args
);
2866 /* Ensure socket support is loaded if available. */
2867 init_winsock (TRUE
);
2870 /* :type TYPE (nil: stream, datagram */
2871 tem
= Fplist_get (contact
, QCtype
);
2873 socktype
= SOCK_STREAM
;
2874 #ifdef DATAGRAM_SOCKETS
2875 else if (EQ (tem
, Qdatagram
))
2876 socktype
= SOCK_DGRAM
;
2878 #ifdef HAVE_SEQPACKET
2879 else if (EQ (tem
, Qseqpacket
))
2880 socktype
= SOCK_SEQPACKET
;
2883 error ("Unsupported connection type");
2886 tem
= Fplist_get (contact
, QCserver
);
2889 /* Don't support network sockets when non-blocking mode is
2890 not available, since a blocked Emacs is not useful. */
2892 if (TYPE_RANGED_INTEGERP (int, tem
))
2893 backlog
= XINT (tem
);
2896 /* Make QCaddress an alias for :local (server) or :remote (client). */
2897 QCaddress
= is_server
? QClocal
: QCremote
;
2900 if (!is_server
&& socktype
!= SOCK_DGRAM
2901 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
2903 #ifndef NON_BLOCKING_CONNECT
2904 error ("Non-blocking connect not supported");
2906 is_non_blocking_client
= 1;
2910 name
= Fplist_get (contact
, QCname
);
2911 buffer
= Fplist_get (contact
, QCbuffer
);
2912 filter
= Fplist_get (contact
, QCfilter
);
2913 sentinel
= Fplist_get (contact
, QCsentinel
);
2915 CHECK_STRING (name
);
2917 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2918 ai
.ai_socktype
= socktype
;
2923 /* :local ADDRESS or :remote ADDRESS */
2924 address
= Fplist_get (contact
, QCaddress
);
2925 if (!NILP (address
))
2927 host
= service
= Qnil
;
2929 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
2930 error ("Malformed :address");
2931 ai
.ai_family
= family
;
2932 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
2933 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
2937 /* :family FAMILY -- nil (for Inet), local, or integer. */
2938 tem
= Fplist_get (contact
, QCfamily
);
2941 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
2947 #ifdef HAVE_LOCAL_SOCKETS
2948 else if (EQ (tem
, Qlocal
))
2952 else if (EQ (tem
, Qipv6
))
2955 else if (EQ (tem
, Qipv4
))
2957 else if (TYPE_RANGED_INTEGERP (int, tem
))
2958 family
= XINT (tem
);
2960 error ("Unknown address family");
2962 ai
.ai_family
= family
;
2964 /* :service SERVICE -- string, integer (port number), or t (random port). */
2965 service
= Fplist_get (contact
, QCservice
);
2967 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2968 host
= Fplist_get (contact
, QChost
);
2971 if (EQ (host
, Qlocal
))
2972 /* Depending on setup, "localhost" may map to different IPv4 and/or
2973 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
2974 host
= build_string ("127.0.0.1");
2975 CHECK_STRING (host
);
2978 #ifdef HAVE_LOCAL_SOCKETS
2979 if (family
== AF_LOCAL
)
2983 message (":family local ignores the :host \"%s\" property",
2985 contact
= Fplist_put (contact
, QChost
, Qnil
);
2988 CHECK_STRING (service
);
2989 memset (&address_un
, 0, sizeof address_un
);
2990 address_un
.sun_family
= AF_LOCAL
;
2991 if (sizeof address_un
.sun_path
<= SBYTES (service
))
2992 error ("Service name too long");
2993 strcpy (address_un
.sun_path
, SSDATA (service
));
2994 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
2995 ai
.ai_addrlen
= sizeof address_un
;
3000 /* Slow down polling to every ten seconds.
3001 Some kernels have a bug which causes retrying connect to fail
3002 after a connect. Polling can interfere with gethostbyname too. */
3003 #ifdef POLL_FOR_INPUT
3004 if (socktype
!= SOCK_DGRAM
)
3006 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
3007 bind_polling_period (10);
3011 #ifdef HAVE_GETADDRINFO
3012 /* If we have a host, use getaddrinfo to resolve both host and service.
3013 Otherwise, use getservbyname to lookup the service. */
3017 /* SERVICE can either be a string or int.
3018 Convert to a C string for later use by getaddrinfo. */
3019 if (EQ (service
, Qt
))
3021 else if (INTEGERP (service
))
3023 sprintf (portbuf
, "%"pI
"d", XINT (service
));
3024 portstring
= portbuf
;
3028 CHECK_STRING (service
);
3029 portstring
= SSDATA (service
);
3034 memset (&hints
, 0, sizeof (hints
));
3036 hints
.ai_family
= family
;
3037 hints
.ai_socktype
= socktype
;
3038 hints
.ai_protocol
= 0;
3040 #ifdef HAVE_RES_INIT
3044 ret
= getaddrinfo (SSDATA (host
), portstring
, &hints
, &res
);
3046 #ifdef HAVE_GAI_STRERROR
3047 error ("%s/%s %s", SSDATA (host
), portstring
, gai_strerror (ret
));
3049 error ("%s/%s getaddrinfo error %d", SSDATA (host
), portstring
, ret
);
3055 #endif /* HAVE_GETADDRINFO */
3057 /* We end up here if getaddrinfo is not defined, or in case no hostname
3058 has been specified (e.g. for a local server process). */
3060 if (EQ (service
, Qt
))
3062 else if (INTEGERP (service
))
3063 port
= htons ((unsigned short) XINT (service
));
3066 struct servent
*svc_info
;
3067 CHECK_STRING (service
);
3068 svc_info
= getservbyname (SSDATA (service
),
3069 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
3071 error ("Unknown service: %s", SDATA (service
));
3072 port
= svc_info
->s_port
;
3075 memset (&address_in
, 0, sizeof address_in
);
3076 address_in
.sin_family
= family
;
3077 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
3078 address_in
.sin_port
= port
;
3080 #ifndef HAVE_GETADDRINFO
3083 struct hostent
*host_info_ptr
;
3085 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3086 as it may `hang' Emacs for a very long time. */
3090 #ifdef HAVE_RES_INIT
3094 host_info_ptr
= gethostbyname (SDATA (host
));
3099 memcpy (&address_in
.sin_addr
, host_info_ptr
->h_addr
,
3100 host_info_ptr
->h_length
);
3101 family
= host_info_ptr
->h_addrtype
;
3102 address_in
.sin_family
= family
;
3105 /* Attempt to interpret host as numeric inet address */
3107 unsigned long numeric_addr
;
3108 numeric_addr
= inet_addr (SSDATA (host
));
3109 if (numeric_addr
== -1)
3110 error ("Unknown host \"%s\"", SDATA (host
));
3112 memcpy (&address_in
.sin_addr
, &numeric_addr
,
3113 sizeof (address_in
.sin_addr
));
3117 #endif /* not HAVE_GETADDRINFO */
3119 ai
.ai_family
= family
;
3120 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3121 ai
.ai_addrlen
= sizeof address_in
;
3125 /* Do this in case we never enter the for-loop below. */
3126 count1
= SPECPDL_INDEX ();
3129 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3138 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3145 #ifdef DATAGRAM_SOCKETS
3146 if (!is_server
&& socktype
== SOCK_DGRAM
)
3148 #endif /* DATAGRAM_SOCKETS */
3150 #ifdef NON_BLOCKING_CONNECT
3151 if (is_non_blocking_client
)
3153 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3164 /* Make us close S if quit. */
3165 record_unwind_protect (close_file_unwind
, make_number (s
));
3167 /* Parse network options in the arg list.
3168 We simply ignore anything which isn't a known option (including other keywords).
3169 An error is signaled if setting a known option fails. */
3170 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3171 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3175 /* Configure as a server socket. */
3177 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3178 explicit :reuseaddr key to override this. */
3179 #ifdef HAVE_LOCAL_SOCKETS
3180 if (family
!= AF_LOCAL
)
3182 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3185 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3186 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3189 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3190 report_file_error ("Cannot bind server socket", Qnil
);
3192 #ifdef HAVE_GETSOCKNAME
3193 if (EQ (service
, Qt
))
3195 struct sockaddr_in sa1
;
3196 socklen_t len1
= sizeof (sa1
);
3197 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3199 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3200 service
= make_number (ntohs (sa1
.sin_port
));
3201 contact
= Fplist_put (contact
, QCservice
, service
);
3206 if (socktype
!= SOCK_DGRAM
&& listen (s
, backlog
))
3207 report_file_error ("Cannot listen on server socket", Qnil
);
3215 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3218 if (ret
== 0 || xerrno
== EISCONN
)
3220 /* The unwind-protect will be discarded afterwards.
3221 Likewise for immediate_quit. */
3225 #ifdef NON_BLOCKING_CONNECT
3227 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3231 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3238 if (xerrno
== EINTR
)
3240 /* Unlike most other syscalls connect() cannot be called
3241 again. (That would return EALREADY.) The proper way to
3242 wait for completion is pselect(). */
3250 sc
= pselect (s
+ 1, NULL
, &fdset
, NULL
, NULL
, NULL
);
3256 report_file_error ("select failed", Qnil
);
3260 len
= sizeof xerrno
;
3261 eassert (FD_ISSET (s
, &fdset
));
3262 if (getsockopt (s
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &len
) == -1)
3263 report_file_error ("getsockopt failed", Qnil
);
3265 errno
= xerrno
, report_file_error ("error during connect", Qnil
);
3269 #endif /* !WINDOWSNT */
3273 /* Discard the unwind protect closing S. */
3274 specpdl_ptr
= specpdl
+ count1
;
3279 if (xerrno
== EINTR
)
3286 #ifdef DATAGRAM_SOCKETS
3287 if (socktype
== SOCK_DGRAM
)
3289 if (datagram_address
[s
].sa
)
3291 datagram_address
[s
].sa
= xmalloc (lres
->ai_addrlen
);
3292 datagram_address
[s
].len
= lres
->ai_addrlen
;
3296 memset (datagram_address
[s
].sa
, 0, lres
->ai_addrlen
);
3297 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3300 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3301 if (rlen
!= 0 && rfamily
== lres
->ai_family
3302 && rlen
== lres
->ai_addrlen
)
3303 conv_lisp_to_sockaddr (rfamily
, remote
,
3304 datagram_address
[s
].sa
, rlen
);
3308 memcpy (datagram_address
[s
].sa
, lres
->ai_addr
, lres
->ai_addrlen
);
3311 contact
= Fplist_put (contact
, QCaddress
,
3312 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3313 #ifdef HAVE_GETSOCKNAME
3316 struct sockaddr_in sa1
;
3317 socklen_t len1
= sizeof (sa1
);
3318 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3319 contact
= Fplist_put (contact
, QClocal
,
3320 conv_sockaddr_to_lisp ((struct sockaddr
*)&sa1
, len1
));
3327 #ifdef HAVE_GETADDRINFO
3336 /* Discard the unwind protect for closing S, if any. */
3337 specpdl_ptr
= specpdl
+ count1
;
3339 /* Unwind bind_polling_period and request_sigio. */
3340 unbind_to (count
, Qnil
);
3344 /* If non-blocking got this far - and failed - assume non-blocking is
3345 not supported after all. This is probably a wrong assumption, but
3346 the normal blocking calls to open-network-stream handles this error
3348 if (is_non_blocking_client
)
3353 report_file_error ("make server process failed", contact
);
3355 report_file_error ("make client process failed", contact
);
3362 buffer
= Fget_buffer_create (buffer
);
3363 proc
= make_process (name
);
3365 chan_process
[inch
] = proc
;
3367 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3369 p
= XPROCESS (proc
);
3371 pset_childp (p
, contact
);
3372 pset_plist (p
, Fcopy_sequence (Fplist_get (contact
, QCplist
)));
3373 pset_type (p
, Qnetwork
);
3375 pset_buffer (p
, buffer
);
3376 pset_sentinel (p
, sentinel
);
3377 pset_filter (p
, filter
);
3378 pset_log (p
, Fplist_get (contact
, QClog
));
3379 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3380 p
->kill_without_query
= 1;
3381 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3382 pset_command (p
, Qt
);
3386 if (is_server
&& socktype
!= SOCK_DGRAM
)
3387 pset_status (p
, Qlisten
);
3389 /* Make the process marker point into the process buffer (if any). */
3390 if (BUFFERP (buffer
))
3391 set_marker_both (p
->mark
, buffer
,
3392 BUF_ZV (XBUFFER (buffer
)),
3393 BUF_ZV_BYTE (XBUFFER (buffer
)));
3395 #ifdef NON_BLOCKING_CONNECT
3396 if (is_non_blocking_client
)
3398 /* We may get here if connect did succeed immediately. However,
3399 in that case, we still need to signal this like a non-blocking
3401 pset_status (p
, Qconnect
);
3402 if (!FD_ISSET (inch
, &connect_wait_mask
))
3404 FD_SET (inch
, &connect_wait_mask
);
3405 FD_SET (inch
, &write_mask
);
3406 num_pending_connects
++;
3411 /* A server may have a client filter setting of Qt, but it must
3412 still listen for incoming connects unless it is stopped. */
3413 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3414 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3416 FD_SET (inch
, &input_wait_mask
);
3417 FD_SET (inch
, &non_keyboard_wait_mask
);
3420 if (inch
> max_process_desc
)
3421 max_process_desc
= inch
;
3423 tem
= Fplist_member (contact
, QCcoding
);
3424 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3425 tem
= Qnil
; /* No error message (too late!). */
3428 /* Setup coding systems for communicating with the network stream. */
3429 struct gcpro gcpro1
;
3430 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3431 Lisp_Object coding_systems
= Qt
;
3432 Lisp_Object fargs
[5], val
;
3436 val
= XCAR (XCDR (tem
));
3440 else if (!NILP (Vcoding_system_for_read
))
3441 val
= Vcoding_system_for_read
;
3442 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
3443 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
3444 /* We dare not decode end-of-line format by setting VAL to
3445 Qraw_text, because the existing Emacs Lisp libraries
3446 assume that they receive bare code including a sequence of
3451 if (NILP (host
) || NILP (service
))
3452 coding_systems
= Qnil
;
3455 fargs
[0] = Qopen_network_stream
, fargs
[1] = name
,
3456 fargs
[2] = buffer
, fargs
[3] = host
, fargs
[4] = service
;
3458 coding_systems
= Ffind_operation_coding_system (5, fargs
);
3461 if (CONSP (coding_systems
))
3462 val
= XCAR (coding_systems
);
3463 else if (CONSP (Vdefault_process_coding_system
))
3464 val
= XCAR (Vdefault_process_coding_system
);
3468 pset_decode_coding_system (p
, val
);
3472 val
= XCAR (XCDR (tem
));
3476 else if (!NILP (Vcoding_system_for_write
))
3477 val
= Vcoding_system_for_write
;
3478 else if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
3482 if (EQ (coding_systems
, Qt
))
3484 if (NILP (host
) || NILP (service
))
3485 coding_systems
= Qnil
;
3488 fargs
[0] = Qopen_network_stream
, fargs
[1] = name
,
3489 fargs
[2] = buffer
, fargs
[3] = host
, fargs
[4] = service
;
3491 coding_systems
= Ffind_operation_coding_system (5, fargs
);
3495 if (CONSP (coding_systems
))
3496 val
= XCDR (coding_systems
);
3497 else if (CONSP (Vdefault_process_coding_system
))
3498 val
= XCDR (Vdefault_process_coding_system
);
3502 pset_encode_coding_system (p
, val
);
3504 setup_process_coding_systems (proc
);
3506 pset_decoding_buf (p
, empty_unibyte_string
);
3507 p
->decoding_carryover
= 0;
3508 pset_encoding_buf (p
, empty_unibyte_string
);
3510 p
->inherit_coding_system_flag
3511 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
3518 #if defined (HAVE_NET_IF_H)
3521 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3522 doc
: /* Return an alist of all network interfaces and their network address.
3523 Each element is a cons, the car of which is a string containing the
3524 interface name, and the cdr is the network address in internal
3525 format; see the description of ADDRESS in `make-network-process'. */)
3528 struct ifconf ifconf
;
3529 struct ifreq
*ifreq
;
3531 ptrdiff_t buf_size
= 512;
3535 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3541 buf
= xpalloc (buf
, &buf_size
, 1, INT_MAX
, 1);
3542 ifconf
.ifc_buf
= buf
;
3543 ifconf
.ifc_len
= buf_size
;
3544 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3551 while (ifconf
.ifc_len
== buf_size
);
3556 ifreq
= ifconf
.ifc_req
;
3557 while ((char *) ifreq
< (char *) ifconf
.ifc_req
+ ifconf
.ifc_len
)
3559 struct ifreq
*ifq
= ifreq
;
3560 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
3561 #define SIZEOF_IFREQ(sif) \
3562 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
3563 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
3565 int len
= SIZEOF_IFREQ (ifq
);
3567 int len
= sizeof (*ifreq
);
3569 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3570 ifreq
= (struct ifreq
*) ((char *) ifreq
+ len
);
3572 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3575 memcpy (namebuf
, ifq
->ifr_name
, sizeof (ifq
->ifr_name
));
3576 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3577 res
= Fcons (Fcons (build_string (namebuf
),
3578 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3579 sizeof (struct sockaddr
))),
3586 #endif /* SIOCGIFCONF */
3588 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
3592 const char *flag_sym
;
3595 static const struct ifflag_def ifflag_table
[] = {
3599 #ifdef IFF_BROADCAST
3600 { IFF_BROADCAST
, "broadcast" },
3603 { IFF_DEBUG
, "debug" },
3606 { IFF_LOOPBACK
, "loopback" },
3608 #ifdef IFF_POINTOPOINT
3609 { IFF_POINTOPOINT
, "pointopoint" },
3612 { IFF_RUNNING
, "running" },
3615 { IFF_NOARP
, "noarp" },
3618 { IFF_PROMISC
, "promisc" },
3620 #ifdef IFF_NOTRAILERS
3621 #ifdef NS_IMPL_COCOA
3622 /* Really means smart, notrailers is obsolete */
3623 { IFF_NOTRAILERS
, "smart" },
3625 { IFF_NOTRAILERS
, "notrailers" },
3629 { IFF_ALLMULTI
, "allmulti" },
3632 { IFF_MASTER
, "master" },
3635 { IFF_SLAVE
, "slave" },
3637 #ifdef IFF_MULTICAST
3638 { IFF_MULTICAST
, "multicast" },
3641 { IFF_PORTSEL
, "portsel" },
3643 #ifdef IFF_AUTOMEDIA
3644 { IFF_AUTOMEDIA
, "automedia" },
3647 { IFF_DYNAMIC
, "dynamic" },
3650 { IFF_OACTIVE
, "oactive" }, /* OpenBSD: transmission in progress */
3653 { IFF_SIMPLEX
, "simplex" }, /* OpenBSD: can't hear own transmissions */
3656 { IFF_LINK0
, "link0" }, /* OpenBSD: per link layer defined bit */
3659 { IFF_LINK1
, "link1" }, /* OpenBSD: per link layer defined bit */
3662 { IFF_LINK2
, "link2" }, /* OpenBSD: per link layer defined bit */
3667 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3668 doc
: /* Return information about network interface named IFNAME.
3669 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3670 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3671 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
3672 FLAGS is the current flags of the interface. */)
3673 (Lisp_Object ifname
)
3676 Lisp_Object res
= Qnil
;
3680 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
3681 && defined HAVE_GETIFADDRS && defined LLADDR)
3682 struct ifaddrs
*ifap
;
3685 CHECK_STRING (ifname
);
3687 if (sizeof rq
.ifr_name
<= SBYTES (ifname
))
3688 error ("interface name too long");
3689 strcpy (rq
.ifr_name
, SSDATA (ifname
));
3691 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3696 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
3697 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3699 int flags
= rq
.ifr_flags
;
3700 const struct ifflag_def
*fp
;
3703 /* If flags is smaller than int (i.e. short) it may have the high bit set
3704 due to IFF_MULTICAST. In that case, sign extending it into
3706 if (flags
< 0 && sizeof (rq
.ifr_flags
) < sizeof (flags
))
3707 flags
= (unsigned short) rq
.ifr_flags
;
3710 for (fp
= ifflag_table
; flags
!= 0 && fp
->flag_sym
; fp
++)
3712 if (flags
& fp
->flag_bit
)
3714 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3715 flags
-= fp
->flag_bit
;
3718 for (fnum
= 0; flags
&& fnum
< 32; flags
>>= 1, fnum
++)
3722 elt
= Fcons (make_number (fnum
), elt
);
3727 res
= Fcons (elt
, res
);
3730 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
3731 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3733 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3734 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3738 for (n
= 0; n
< 6; n
++)
3739 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3740 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3742 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
3743 if (getifaddrs (&ifap
) != -1)
3745 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3746 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3749 for (it
= ifap
; it
!= NULL
; it
= it
->ifa_next
)
3751 struct sockaddr_dl
*sdl
= (struct sockaddr_dl
*) it
->ifa_addr
;
3752 unsigned char linkaddr
[6];
3755 if (it
->ifa_addr
->sa_family
!= AF_LINK
3756 || strcmp (it
->ifa_name
, SSDATA (ifname
)) != 0
3757 || sdl
->sdl_alen
!= 6)
3760 memcpy (linkaddr
, LLADDR (sdl
), sdl
->sdl_alen
);
3761 for (n
= 0; n
< 6; n
++)
3762 p
->contents
[n
] = make_number (linkaddr
[n
]);
3764 elt
= Fcons (make_number (it
->ifa_addr
->sa_family
), hwaddr
);
3768 #ifdef HAVE_FREEIFADDRS
3772 #endif /* HAVE_GETIFADDRS && LLADDR */
3774 res
= Fcons (elt
, res
);
3777 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
3778 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
3781 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3782 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
3784 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3788 res
= Fcons (elt
, res
);
3791 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3792 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
3795 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
3798 res
= Fcons (elt
, res
);
3801 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
3802 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
3805 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3808 res
= Fcons (elt
, res
);
3812 return any
? res
: Qnil
;
3815 #endif /* defined (HAVE_NET_IF_H) */
3817 /* Turn off input and output for process PROC. */
3820 deactivate_process (Lisp_Object proc
)
3822 register int inchannel
, outchannel
;
3823 register struct Lisp_Process
*p
= XPROCESS (proc
);
3826 /* Delete GnuTLS structures in PROC, if any. */
3827 emacs_gnutls_deinit (proc
);
3828 #endif /* HAVE_GNUTLS */
3830 inchannel
= p
->infd
;
3831 outchannel
= p
->outfd
;
3833 #ifdef ADAPTIVE_READ_BUFFERING
3834 if (p
->read_output_delay
> 0)
3836 if (--process_output_delay_count
< 0)
3837 process_output_delay_count
= 0;
3838 p
->read_output_delay
= 0;
3839 p
->read_output_skip
= 0;
3845 /* Beware SIGCHLD hereabouts. */
3846 flush_pending_output (inchannel
);
3847 emacs_close (inchannel
);
3848 if (outchannel
>= 0 && outchannel
!= inchannel
)
3849 emacs_close (outchannel
);
3853 #ifdef DATAGRAM_SOCKETS
3854 if (DATAGRAM_CHAN_P (inchannel
))
3856 xfree (datagram_address
[inchannel
].sa
);
3857 datagram_address
[inchannel
].sa
= 0;
3858 datagram_address
[inchannel
].len
= 0;
3861 chan_process
[inchannel
] = Qnil
;
3862 FD_CLR (inchannel
, &input_wait_mask
);
3863 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
3864 #ifdef NON_BLOCKING_CONNECT
3865 if (FD_ISSET (inchannel
, &connect_wait_mask
))
3867 FD_CLR (inchannel
, &connect_wait_mask
);
3868 FD_CLR (inchannel
, &write_mask
);
3869 if (--num_pending_connects
< 0)
3873 if (inchannel
== max_process_desc
)
3876 /* We just closed the highest-numbered process input descriptor,
3877 so recompute the highest-numbered one now. */
3878 max_process_desc
= 0;
3879 for (i
= 0; i
< MAXDESC
; i
++)
3880 if (!NILP (chan_process
[i
]))
3881 max_process_desc
= i
;
3887 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
3889 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
3890 It is read into the process' buffers or given to their filter functions.
3891 Non-nil arg PROCESS means do not return until some output has been received
3894 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
3895 and milliseconds to wait; return after that much time whether or not
3896 there is any subprocess output. If SECONDS is a floating point number,
3897 it specifies a fractional number of seconds to wait.
3898 The MILLISEC argument is obsolete and should be avoided.
3900 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3901 from PROCESS, suspending reading output from other processes.
3902 If JUST-THIS-ONE is an integer, don't run any timers either.
3903 Return non-nil if we received any output before the timeout expired. */)
3904 (register Lisp_Object process
, Lisp_Object seconds
, Lisp_Object millisec
, Lisp_Object just_this_one
)
3909 if (! NILP (process
))
3910 CHECK_PROCESS (process
);
3912 just_this_one
= Qnil
;
3914 if (!NILP (millisec
))
3915 { /* Obsolete calling convention using integers rather than floats. */
3916 CHECK_NUMBER (millisec
);
3918 seconds
= make_float (XINT (millisec
) / 1000.0);
3921 CHECK_NUMBER (seconds
);
3922 seconds
= make_float (XINT (millisec
) / 1000.0 + XINT (seconds
));
3929 if (!NILP (seconds
))
3931 if (INTEGERP (seconds
))
3933 if (XINT (seconds
) > 0)
3935 secs
= XINT (seconds
);
3939 else if (FLOATP (seconds
))
3941 if (XFLOAT_DATA (seconds
) > 0)
3943 EMACS_TIME t
= EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (seconds
));
3944 secs
= min (EMACS_SECS (t
), WAIT_READING_MAX
);
3945 nsecs
= EMACS_NSECS (t
);
3949 wrong_type_argument (Qnumberp
, seconds
);
3951 else if (! NILP (process
))
3955 (wait_reading_process_output (secs
, nsecs
, 0, 0,
3957 !NILP (process
) ? XPROCESS (process
) : NULL
,
3958 NILP (just_this_one
) ? 0 :
3959 !INTEGERP (just_this_one
) ? 1 : -1)
3963 /* Accept a connection for server process SERVER on CHANNEL. */
3965 static EMACS_INT connect_counter
= 0;
3968 server_accept_connection (Lisp_Object server
, int channel
)
3970 Lisp_Object proc
, caller
, name
, buffer
;
3971 Lisp_Object contact
, host
, service
;
3972 struct Lisp_Process
*ps
= XPROCESS (server
);
3973 struct Lisp_Process
*p
;
3977 struct sockaddr_in in
;
3979 struct sockaddr_in6 in6
;
3981 #ifdef HAVE_LOCAL_SOCKETS
3982 struct sockaddr_un un
;
3985 socklen_t len
= sizeof saddr
;
3987 s
= accept (channel
, &saddr
.sa
, &len
);
3996 if (code
== EWOULDBLOCK
)
4000 if (!NILP (ps
->log
))
4001 call3 (ps
->log
, server
, Qnil
,
4002 concat3 (build_string ("accept failed with code"),
4003 Fnumber_to_string (make_number (code
)),
4004 build_string ("\n")));
4010 /* Setup a new process to handle the connection. */
4012 /* Generate a unique identification of the caller, and build contact
4013 information for this process. */
4016 switch (saddr
.sa
.sa_family
)
4020 Lisp_Object args
[5];
4021 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
4022 args
[0] = build_string ("%d.%d.%d.%d");
4023 args
[1] = make_number (*ip
++);
4024 args
[2] = make_number (*ip
++);
4025 args
[3] = make_number (*ip
++);
4026 args
[4] = make_number (*ip
++);
4027 host
= Fformat (5, args
);
4028 service
= make_number (ntohs (saddr
.in
.sin_port
));
4030 args
[0] = build_string (" <%s:%d>");
4033 caller
= Fformat (3, args
);
4040 Lisp_Object args
[9];
4041 uint16_t *ip6
= (uint16_t *)&saddr
.in6
.sin6_addr
;
4043 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4044 for (i
= 0; i
< 8; i
++)
4045 args
[i
+1] = make_number (ntohs (ip6
[i
]));
4046 host
= Fformat (9, args
);
4047 service
= make_number (ntohs (saddr
.in
.sin_port
));
4049 args
[0] = build_string (" <[%s]:%d>");
4052 caller
= Fformat (3, args
);
4057 #ifdef HAVE_LOCAL_SOCKETS
4061 caller
= Fnumber_to_string (make_number (connect_counter
));
4062 caller
= concat3 (build_string (" <"), caller
, build_string (">"));
4066 /* Create a new buffer name for this process if it doesn't have a
4067 filter. The new buffer name is based on the buffer name or
4068 process name of the server process concatenated with the caller
4071 if (!(EQ (ps
->filter
, Qinternal_default_process_filter
)
4072 || EQ (ps
->filter
, Qt
)))
4076 buffer
= ps
->buffer
;
4078 buffer
= Fbuffer_name (buffer
);
4083 buffer
= concat2 (buffer
, caller
);
4084 buffer
= Fget_buffer_create (buffer
);
4088 /* Generate a unique name for the new server process. Combine the
4089 server process name with the caller identification. */
4091 name
= concat2 (ps
->name
, caller
);
4092 proc
= make_process (name
);
4094 chan_process
[s
] = proc
;
4096 fcntl (s
, F_SETFL
, O_NONBLOCK
);
4098 p
= XPROCESS (proc
);
4100 /* Build new contact information for this setup. */
4101 contact
= Fcopy_sequence (ps
->childp
);
4102 contact
= Fplist_put (contact
, QCserver
, Qnil
);
4103 contact
= Fplist_put (contact
, QChost
, host
);
4104 if (!NILP (service
))
4105 contact
= Fplist_put (contact
, QCservice
, service
);
4106 contact
= Fplist_put (contact
, QCremote
,
4107 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4108 #ifdef HAVE_GETSOCKNAME
4110 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
4111 contact
= Fplist_put (contact
, QClocal
,
4112 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4115 pset_childp (p
, contact
);
4116 pset_plist (p
, Fcopy_sequence (ps
->plist
));
4117 pset_type (p
, Qnetwork
);
4119 pset_buffer (p
, buffer
);
4120 pset_sentinel (p
, ps
->sentinel
);
4121 pset_filter (p
, ps
->filter
);
4122 pset_command (p
, Qnil
);
4126 pset_status (p
, Qrun
);
4128 /* Client processes for accepted connections are not stopped initially. */
4129 if (!EQ (p
->filter
, Qt
))
4131 FD_SET (s
, &input_wait_mask
);
4132 FD_SET (s
, &non_keyboard_wait_mask
);
4135 if (s
> max_process_desc
)
4136 max_process_desc
= s
;
4138 /* Setup coding system for new process based on server process.
4139 This seems to be the proper thing to do, as the coding system
4140 of the new process should reflect the settings at the time the
4141 server socket was opened; not the current settings. */
4143 pset_decode_coding_system (p
, ps
->decode_coding_system
);
4144 pset_encode_coding_system (p
, ps
->encode_coding_system
);
4145 setup_process_coding_systems (proc
);
4147 pset_decoding_buf (p
, empty_unibyte_string
);
4148 p
->decoding_carryover
= 0;
4149 pset_encoding_buf (p
, empty_unibyte_string
);
4151 p
->inherit_coding_system_flag
4152 = (NILP (buffer
) ? 0 : ps
->inherit_coding_system_flag
);
4154 if (!NILP (ps
->log
))
4155 call3 (ps
->log
, server
, proc
,
4156 concat3 (build_string ("accept from "),
4157 (STRINGP (host
) ? host
: build_string ("-")),
4158 build_string ("\n")));
4160 exec_sentinel (proc
,
4161 concat3 (build_string ("open from "),
4162 (STRINGP (host
) ? host
: build_string ("-")),
4163 build_string ("\n")));
4166 /* This variable is different from waiting_for_input in keyboard.c.
4167 It is used to communicate to a lisp process-filter/sentinel (via the
4168 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4169 for user-input when that process-filter was called.
4170 waiting_for_input cannot be used as that is by definition 0 when
4171 lisp code is being evalled.
4172 This is also used in record_asynch_buffer_change.
4173 For that purpose, this must be 0
4174 when not inside wait_reading_process_output. */
4175 static int waiting_for_user_input_p
;
4178 wait_reading_process_output_unwind (Lisp_Object data
)
4180 waiting_for_user_input_p
= XINT (data
);
4184 /* This is here so breakpoints can be put on it. */
4186 wait_reading_process_output_1 (void)
4190 /* Read and dispose of subprocess output while waiting for timeout to
4191 elapse and/or keyboard input to be available.
4195 If negative, gobble data immediately available but don't wait for any.
4198 an additional duration to wait, measured in nanoseconds
4199 If TIME_LIMIT is zero, then:
4200 If NSECS == 0, there is no limit.
4201 If NSECS > 0, the timeout consists of NSECS only.
4202 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4205 0 to ignore keyboard input, or
4206 1 to return when input is available, or
4207 -1 meaning caller will actually read the input, so don't throw to
4208 the quit handler, or
4210 DO_DISPLAY means redisplay should be done to show subprocess
4211 output that arrives.
4213 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4214 (and gobble terminal input into the buffer if any arrives).
4216 If WAIT_PROC is specified, wait until something arrives from that
4217 process. The return value is true if we read some input from
4220 If JUST_WAIT_PROC is nonzero, handle only output from WAIT_PROC
4221 (suspending output from other processes). A negative value
4222 means don't run any timers either.
4224 If WAIT_PROC is specified, then the function returns true if we
4225 received input from that process before the timeout elapsed.
4226 Otherwise, return true if we received input from any process. */
4229 wait_reading_process_output (intmax_t time_limit
, int nsecs
, int read_kbd
,
4231 Lisp_Object wait_for_cell
,
4232 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
4235 SELECT_TYPE Available
;
4236 SELECT_TYPE Writeok
;
4242 EMACS_TIME timeout
, end_time
;
4243 int wait_channel
= -1;
4244 bool got_some_input
= 0;
4245 ptrdiff_t count
= SPECPDL_INDEX ();
4247 FD_ZERO (&Available
);
4250 if (time_limit
== 0 && nsecs
== 0 && wait_proc
&& !NILP (Vinhibit_quit
)
4251 && !(CONSP (wait_proc
->status
)
4252 && EQ (XCAR (wait_proc
->status
), Qexit
)))
4253 message1 ("Blocking call to accept-process-output with quit inhibited!!");
4255 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4256 if (wait_proc
!= NULL
)
4257 wait_channel
= wait_proc
->infd
;
4259 record_unwind_protect (wait_reading_process_output_unwind
,
4260 make_number (waiting_for_user_input_p
));
4261 waiting_for_user_input_p
= read_kbd
;
4268 else if (TYPE_MAXIMUM (time_t) < time_limit
)
4269 time_limit
= TYPE_MAXIMUM (time_t);
4271 /* Since we may need to wait several times,
4272 compute the absolute time to return at. */
4273 if (time_limit
|| nsecs
> 0)
4275 timeout
= make_emacs_time (time_limit
, nsecs
);
4276 end_time
= add_emacs_time (current_emacs_time (), timeout
);
4281 bool timeout_reduced_for_timers
= 0;
4283 /* If calling from keyboard input, do not quit
4284 since we want to return C-g as an input character.
4285 Otherwise, do pending quit if requested. */
4288 else if (pending_signals
)
4289 process_pending_signals ();
4291 /* Exit now if the cell we're waiting for became non-nil. */
4292 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4295 /* Compute time from now till when time limit is up. */
4296 /* Exit if already run out. */
4299 /* A negative timeout means
4300 gobble output available now
4301 but don't wait at all. */
4303 timeout
= make_emacs_time (0, 0);
4305 else if (time_limit
|| nsecs
> 0)
4307 EMACS_TIME now
= current_emacs_time ();
4308 if (EMACS_TIME_LE (end_time
, now
))
4310 timeout
= sub_emacs_time (end_time
, now
);
4314 timeout
= make_emacs_time (100000, 0);
4317 /* Normally we run timers here.
4318 But not if wait_for_cell; in those cases,
4319 the wait is supposed to be short,
4320 and those callers cannot handle running arbitrary Lisp code here. */
4321 if (NILP (wait_for_cell
)
4322 && just_wait_proc
>= 0)
4324 EMACS_TIME timer_delay
;
4328 unsigned old_timers_run
= timers_run
;
4329 struct buffer
*old_buffer
= current_buffer
;
4330 Lisp_Object old_window
= selected_window
;
4332 timer_delay
= timer_check ();
4334 /* If a timer has run, this might have changed buffers
4335 an alike. Make read_key_sequence aware of that. */
4336 if (timers_run
!= old_timers_run
4337 && (old_buffer
!= current_buffer
4338 || !EQ (old_window
, selected_window
))
4339 && waiting_for_user_input_p
== -1)
4340 record_asynch_buffer_change ();
4342 if (timers_run
!= old_timers_run
&& do_display
)
4343 /* We must retry, since a timer may have requeued itself
4344 and that could alter the time_delay. */
4345 redisplay_preserve_echo_area (9);
4349 while (!detect_input_pending ());
4351 /* If there is unread keyboard input, also return. */
4353 && requeued_events_pending_p ())
4356 /* A negative timeout means do not wait at all. */
4359 if (EMACS_TIME_VALID_P (timer_delay
))
4361 if (EMACS_TIME_LT (timer_delay
, timeout
))
4363 timeout
= timer_delay
;
4364 timeout_reduced_for_timers
= 1;
4369 /* This is so a breakpoint can be put here. */
4370 wait_reading_process_output_1 ();
4375 /* Cause C-g and alarm signals to take immediate action,
4376 and cause input available signals to zero out timeout.
4378 It is important that we do this before checking for process
4379 activity. If we get a SIGCHLD after the explicit checks for
4380 process activity, timeout is the only way we will know. */
4382 set_waiting_for_input (&timeout
);
4384 /* If status of something has changed, and no input is
4385 available, notify the user of the change right away. After
4386 this explicit check, we'll let the SIGCHLD handler zap
4387 timeout to get our attention. */
4388 if (update_tick
!= process_tick
)
4393 if (kbd_on_hold_p ())
4396 Atemp
= input_wait_mask
;
4399 timeout
= make_emacs_time (0, 0);
4400 if ((pselect (max (max_process_desc
, max_input_desc
) + 1,
4402 #ifdef NON_BLOCKING_CONNECT
4403 (num_pending_connects
> 0 ? &Ctemp
: NULL
),
4407 NULL
, &timeout
, NULL
)
4410 /* It's okay for us to do this and then continue with
4411 the loop, since timeout has already been zeroed out. */
4412 clear_waiting_for_input ();
4413 status_notify (NULL
);
4414 if (do_display
) redisplay_preserve_echo_area (13);
4418 /* Don't wait for output from a non-running process. Just
4419 read whatever data has already been received. */
4420 if (wait_proc
&& wait_proc
->raw_status_new
)
4421 update_status (wait_proc
);
4423 && ! EQ (wait_proc
->status
, Qrun
)
4424 && ! EQ (wait_proc
->status
, Qconnect
))
4426 bool read_some_bytes
= 0;
4428 clear_waiting_for_input ();
4429 XSETPROCESS (proc
, wait_proc
);
4431 /* Read data from the process, until we exhaust it. */
4432 while (wait_proc
->infd
>= 0)
4434 int nread
= read_process_output (proc
, wait_proc
->infd
);
4440 got_some_input
= read_some_bytes
= 1;
4441 else if (nread
== -1 && (errno
== EIO
|| errno
== EAGAIN
))
4444 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4448 if (read_some_bytes
&& do_display
)
4449 redisplay_preserve_echo_area (10);
4454 /* Wait till there is something to do */
4456 if (wait_proc
&& just_wait_proc
)
4458 if (wait_proc
->infd
< 0) /* Terminated */
4460 FD_SET (wait_proc
->infd
, &Available
);
4464 else if (!NILP (wait_for_cell
))
4466 Available
= non_process_wait_mask
;
4473 Available
= non_keyboard_wait_mask
;
4475 Available
= input_wait_mask
;
4476 Writeok
= write_mask
;
4477 #ifdef SELECT_CANT_DO_WRITE_MASK
4482 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4485 /* If frame size has changed or the window is newly mapped,
4486 redisplay now, before we start to wait. There is a race
4487 condition here; if a SIGIO arrives between now and the select
4488 and indicates that a frame is trashed, the select may block
4489 displaying a trashed screen. */
4490 if (frame_garbaged
&& do_display
)
4492 clear_waiting_for_input ();
4493 redisplay_preserve_echo_area (11);
4495 set_waiting_for_input (&timeout
);
4498 /* Skip the `select' call if input is available and we're
4499 waiting for keyboard input or a cell change (which can be
4500 triggered by processing X events). In the latter case, set
4501 nfds to 1 to avoid breaking the loop. */
4503 if ((read_kbd
|| !NILP (wait_for_cell
))
4504 && detect_input_pending ())
4506 nfds
= read_kbd
? 0 : 1;
4513 #ifdef ADAPTIVE_READ_BUFFERING
4514 /* Set the timeout for adaptive read buffering if any
4515 process has non-zero read_output_skip and non-zero
4516 read_output_delay, and we are not reading output for a
4517 specific wait_channel. It is not executed if
4518 Vprocess_adaptive_read_buffering is nil. */
4519 if (process_output_skip
&& check_delay
> 0)
4521 int nsecs
= EMACS_NSECS (timeout
);
4522 if (EMACS_SECS (timeout
) > 0 || nsecs
> READ_OUTPUT_DELAY_MAX
)
4523 nsecs
= READ_OUTPUT_DELAY_MAX
;
4524 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4526 proc
= chan_process
[channel
];
4529 /* Find minimum non-zero read_output_delay among the
4530 processes with non-zero read_output_skip. */
4531 if (XPROCESS (proc
)->read_output_delay
> 0)
4534 if (!XPROCESS (proc
)->read_output_skip
)
4536 FD_CLR (channel
, &Available
);
4537 XPROCESS (proc
)->read_output_skip
= 0;
4538 if (XPROCESS (proc
)->read_output_delay
< nsecs
)
4539 nsecs
= XPROCESS (proc
)->read_output_delay
;
4542 timeout
= make_emacs_time (0, nsecs
);
4543 process_output_skip
= 0;
4547 #if defined (HAVE_NS)
4549 #elif defined (HAVE_GLIB)
4554 (max (max_process_desc
, max_input_desc
) + 1,
4556 (check_write
? &Writeok
: (SELECT_TYPE
*)0),
4557 NULL
, &timeout
, NULL
);
4560 /* GnuTLS buffers data internally. In lowat mode it leaves
4561 some data in the TCP buffers so that select works, but
4562 with custom pull/push functions we need to check if some
4563 data is available in the buffers manually. */
4568 /* We're not waiting on a specific process, so loop
4569 through all the channels and check for data.
4570 This is a workaround needed for some versions of
4571 the gnutls library -- 2.12.14 has been confirmed
4573 http://comments.gmane.org/gmane.emacs.devel/145074 */
4574 for (channel
= 0; channel
< MAXDESC
; ++channel
)
4575 if (! NILP (chan_process
[channel
]))
4577 struct Lisp_Process
*p
=
4578 XPROCESS (chan_process
[channel
]);
4579 if (p
&& p
->gnutls_p
&& p
->infd
4580 && ((emacs_gnutls_record_check_pending
4585 FD_SET (p
->infd
, &Available
);
4591 /* Check this specific channel. */
4592 if (wait_proc
->gnutls_p
/* Check for valid process. */
4593 /* Do we have pending data? */
4594 && ((emacs_gnutls_record_check_pending
4595 (wait_proc
->gnutls_state
))
4599 /* Set to Available. */
4600 FD_SET (wait_proc
->infd
, &Available
);
4609 /* Make C-g and alarm signals set flags again */
4610 clear_waiting_for_input ();
4612 /* If we woke up due to SIGWINCH, actually change size now. */
4613 do_pending_window_change (0);
4615 if ((time_limit
|| nsecs
) && nfds
== 0 && ! timeout_reduced_for_timers
)
4616 /* We waited the full specified time, so return now. */
4620 if (xerrno
== EINTR
)
4622 else if (xerrno
== EBADF
)
4625 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4626 the child's closure of the pts gives the parent a SIGHUP, and
4627 the ptc file descriptor is automatically closed,
4628 yielding EBADF here or at select() call above.
4629 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4630 in m/ibmrt-aix.h), and here we just ignore the select error.
4631 Cleanup occurs c/o status_notify after SIGCHLD. */
4632 no_avail
= 1; /* Cannot depend on values returned */
4638 error ("select error: %s", emacs_strerror (xerrno
));
4643 FD_ZERO (&Available
);
4647 /* Check for keyboard input */
4648 /* If there is any, return immediately
4649 to give it higher priority than subprocesses */
4653 unsigned old_timers_run
= timers_run
;
4654 struct buffer
*old_buffer
= current_buffer
;
4655 Lisp_Object old_window
= selected_window
;
4658 if (detect_input_pending_run_timers (do_display
))
4660 swallow_events (do_display
);
4661 if (detect_input_pending_run_timers (do_display
))
4665 /* If a timer has run, this might have changed buffers
4666 an alike. Make read_key_sequence aware of that. */
4667 if (timers_run
!= old_timers_run
4668 && waiting_for_user_input_p
== -1
4669 && (old_buffer
!= current_buffer
4670 || !EQ (old_window
, selected_window
)))
4671 record_asynch_buffer_change ();
4677 /* If there is unread keyboard input, also return. */
4679 && requeued_events_pending_p ())
4682 /* If we are not checking for keyboard input now,
4683 do process events (but don't run any timers).
4684 This is so that X events will be processed.
4685 Otherwise they may have to wait until polling takes place.
4686 That would causes delays in pasting selections, for example.
4688 (We used to do this only if wait_for_cell.) */
4689 if (read_kbd
== 0 && detect_input_pending ())
4691 swallow_events (do_display
);
4692 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4693 if (detect_input_pending ())
4698 /* Exit now if the cell we're waiting for became non-nil. */
4699 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4703 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4704 go read it. This can happen with X on BSD after logging out.
4705 In that case, there really is no input and no SIGIO,
4706 but select says there is input. */
4708 if (read_kbd
&& interrupt_input
4709 && keyboard_bit_set (&Available
) && ! noninteractive
)
4710 handle_input_available_signal (SIGIO
);
4714 got_some_input
|= nfds
> 0;
4716 /* If checking input just got us a size-change event from X,
4717 obey it now if we should. */
4718 if (read_kbd
|| ! NILP (wait_for_cell
))
4719 do_pending_window_change (0);
4721 /* Check for data from a process. */
4722 if (no_avail
|| nfds
== 0)
4725 for (channel
= 0; channel
<= max_input_desc
; ++channel
)
4727 struct fd_callback_data
*d
= &fd_callback_info
[channel
];
4729 && ((d
->condition
& FOR_READ
4730 && FD_ISSET (channel
, &Available
))
4731 || (d
->condition
& FOR_WRITE
4732 && FD_ISSET (channel
, &write_mask
))))
4733 d
->func (channel
, d
->data
);
4736 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4738 if (FD_ISSET (channel
, &Available
)
4739 && FD_ISSET (channel
, &non_keyboard_wait_mask
)
4740 && !FD_ISSET (channel
, &non_process_wait_mask
))
4744 /* If waiting for this channel, arrange to return as
4745 soon as no more input to be processed. No more
4747 if (wait_channel
== channel
)
4753 proc
= chan_process
[channel
];
4757 /* If this is a server stream socket, accept connection. */
4758 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4760 server_accept_connection (proc
, channel
);
4764 /* Read data from the process, starting with our
4765 buffered-ahead character if we have one. */
4767 nread
= read_process_output (proc
, channel
);
4770 /* Since read_process_output can run a filter,
4771 which can call accept-process-output,
4772 don't try to read from any other processes
4773 before doing the select again. */
4774 FD_ZERO (&Available
);
4777 redisplay_preserve_echo_area (12);
4780 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4783 else if (nread
== -1 && errno
== EAGAIN
)
4786 /* FIXME: Is this special case still needed? */
4787 /* Note that we cannot distinguish between no input
4788 available now and a closed pipe.
4789 With luck, a closed pipe will be accompanied by
4790 subprocess termination and SIGCHLD. */
4791 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
4795 /* On some OSs with ptys, when the process on one end of
4796 a pty exits, the other end gets an error reading with
4797 errno = EIO instead of getting an EOF (0 bytes read).
4798 Therefore, if we get an error reading and errno =
4799 EIO, just continue, because the child process has
4800 exited and should clean itself up soon (e.g. when we
4802 else if (nread
== -1 && errno
== EIO
)
4804 struct Lisp_Process
*p
= XPROCESS (proc
);
4806 /* Clear the descriptor now, so we only raise the
4808 FD_CLR (channel
, &input_wait_mask
);
4809 FD_CLR (channel
, &non_keyboard_wait_mask
);
4813 /* If the EIO occurs on a pty, the SIGCHLD handler's
4814 waitpid call will not find the process object to
4815 delete. Do it here. */
4816 p
->tick
= ++process_tick
;
4817 pset_status (p
, Qfailed
);
4820 #endif /* HAVE_PTYS */
4821 /* If we can detect process termination, don't consider the
4822 process gone just because its pipe is closed. */
4823 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
4827 /* Preserve status of processes already terminated. */
4828 XPROCESS (proc
)->tick
= ++process_tick
;
4829 deactivate_process (proc
);
4830 if (XPROCESS (proc
)->raw_status_new
)
4831 update_status (XPROCESS (proc
));
4832 if (EQ (XPROCESS (proc
)->status
, Qrun
))
4833 pset_status (XPROCESS (proc
),
4834 list2 (Qexit
, make_number (256)));
4837 #ifdef NON_BLOCKING_CONNECT
4838 if (FD_ISSET (channel
, &Writeok
)
4839 && FD_ISSET (channel
, &connect_wait_mask
))
4841 struct Lisp_Process
*p
;
4843 FD_CLR (channel
, &connect_wait_mask
);
4844 FD_CLR (channel
, &write_mask
);
4845 if (--num_pending_connects
< 0)
4848 proc
= chan_process
[channel
];
4852 p
= XPROCESS (proc
);
4855 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4856 So only use it on systems where it is known to work. */
4858 socklen_t xlen
= sizeof (xerrno
);
4859 if (getsockopt (channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
4864 struct sockaddr pname
;
4865 int pnamelen
= sizeof (pname
);
4867 /* If connection failed, getpeername will fail. */
4869 if (getpeername (channel
, &pname
, &pnamelen
) < 0)
4871 /* Obtain connect failure code through error slippage. */
4874 if (errno
== ENOTCONN
&& read (channel
, &dummy
, 1) < 0)
4881 p
->tick
= ++process_tick
;
4882 pset_status (p
, list2 (Qfailed
, make_number (xerrno
)));
4883 deactivate_process (proc
);
4887 pset_status (p
, Qrun
);
4888 /* Execute the sentinel here. If we had relied on
4889 status_notify to do it later, it will read input
4890 from the process before calling the sentinel. */
4891 exec_sentinel (proc
, build_string ("open\n"));
4892 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
4894 FD_SET (p
->infd
, &input_wait_mask
);
4895 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
4899 #endif /* NON_BLOCKING_CONNECT */
4900 } /* End for each file descriptor. */
4901 } /* End while exit conditions not met. */
4903 unbind_to (count
, Qnil
);
4905 /* If calling from keyboard input, do not quit
4906 since we want to return C-g as an input character.
4907 Otherwise, do pending quit if requested. */
4910 /* Prevent input_pending from remaining set if we quit. */
4911 clear_input_pending ();
4915 return got_some_input
;
4918 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4921 read_process_output_call (Lisp_Object fun_and_args
)
4923 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
4927 read_process_output_error_handler (Lisp_Object error_val
)
4929 cmd_error_internal (error_val
, "error in process filter: ");
4931 update_echo_area ();
4932 Fsleep_for (make_number (2), Qnil
);
4937 read_and_dispose_of_process_output (struct Lisp_Process
*p
, char *chars
,
4939 struct coding_system
*coding
);
4941 /* Read pending output from the process channel,
4942 starting with our buffered-ahead character if we have one.
4943 Yield number of decoded characters read.
4945 This function reads at most 4096 characters.
4946 If you want to read all available subprocess output,
4947 you must call it repeatedly until it returns zero.
4949 The characters read are decoded according to PROC's coding-system
4953 read_process_output (Lisp_Object proc
, register int channel
)
4955 register ssize_t nbytes
;
4957 register struct Lisp_Process
*p
= XPROCESS (proc
);
4958 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
4959 int carryover
= p
->decoding_carryover
;
4961 ptrdiff_t count
= SPECPDL_INDEX ();
4962 Lisp_Object odeactivate
;
4964 chars
= alloca (carryover
+ readmax
);
4966 /* See the comment above. */
4967 memcpy (chars
, SDATA (p
->decoding_buf
), carryover
);
4969 #ifdef DATAGRAM_SOCKETS
4970 /* We have a working select, so proc_buffered_char is always -1. */
4971 if (DATAGRAM_CHAN_P (channel
))
4973 socklen_t len
= datagram_address
[channel
].len
;
4974 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
4975 0, datagram_address
[channel
].sa
, &len
);
4980 bool buffered
= proc_buffered_char
[channel
] >= 0;
4983 chars
[carryover
] = proc_buffered_char
[channel
];
4984 proc_buffered_char
[channel
] = -1;
4988 nbytes
= emacs_gnutls_read (p
, chars
+ carryover
+ buffered
,
4989 readmax
- buffered
);
4992 nbytes
= emacs_read (channel
, chars
+ carryover
+ buffered
,
4993 readmax
- buffered
);
4994 #ifdef ADAPTIVE_READ_BUFFERING
4995 if (nbytes
> 0 && p
->adaptive_read_buffering
)
4997 int delay
= p
->read_output_delay
;
5000 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
5003 process_output_delay_count
++;
5004 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
5007 else if (delay
> 0 && nbytes
== readmax
- buffered
)
5009 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
5011 process_output_delay_count
--;
5013 p
->read_output_delay
= delay
;
5016 p
->read_output_skip
= 1;
5017 process_output_skip
= 1;
5022 nbytes
+= buffered
&& nbytes
<= 0;
5025 p
->decoding_carryover
= 0;
5027 /* At this point, NBYTES holds number of bytes just received
5028 (including the one in proc_buffered_char[channel]). */
5031 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5033 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5036 /* Now set NBYTES how many bytes we must decode. */
5037 nbytes
+= carryover
;
5039 odeactivate
= Vdeactivate_mark
;
5040 /* There's no good reason to let process filters change the current
5041 buffer, and many callers of accept-process-output, sit-for, and
5042 friends don't expect current-buffer to be changed from under them. */
5043 record_unwind_current_buffer ();
5045 read_and_dispose_of_process_output (p
, chars
, nbytes
, coding
);
5047 /* Handling the process output should not deactivate the mark. */
5048 Vdeactivate_mark
= odeactivate
;
5050 unbind_to (count
, Qnil
);
5055 read_and_dispose_of_process_output (struct Lisp_Process
*p
, char *chars
,
5057 struct coding_system
*coding
)
5059 Lisp_Object outstream
= p
->filter
;
5061 bool outer_running_asynch_code
= running_asynch_code
;
5062 int waiting
= waiting_for_user_input_p
;
5064 /* No need to gcpro these, because all we do with them later
5065 is test them for EQness, and none of them should be a string. */
5067 Lisp_Object obuffer
, okeymap
;
5068 XSETBUFFER (obuffer
, current_buffer
);
5069 okeymap
= BVAR (current_buffer
, keymap
);
5072 /* We inhibit quit here instead of just catching it so that
5073 hitting ^G when a filter happens to be running won't screw
5075 specbind (Qinhibit_quit
, Qt
);
5076 specbind (Qlast_nonmenu_event
, Qt
);
5078 /* In case we get recursively called,
5079 and we already saved the match data nonrecursively,
5080 save the same match data in safely recursive fashion. */
5081 if (outer_running_asynch_code
)
5084 /* Don't clobber the CURRENT match data, either! */
5085 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
5086 restore_search_regs ();
5087 record_unwind_save_match_data ();
5088 Fset_match_data (tem
, Qt
);
5091 /* For speed, if a search happens within this code,
5092 save the match data in a special nonrecursive fashion. */
5093 running_asynch_code
= 1;
5095 decode_coding_c_string (coding
, (unsigned char *) chars
, nbytes
, Qt
);
5096 text
= coding
->dst_object
;
5097 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5098 /* A new coding system might be found. */
5099 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5101 pset_decode_coding_system (p
, Vlast_coding_system_used
);
5103 /* Don't call setup_coding_system for
5104 proc_decode_coding_system[channel] here. It is done in
5105 detect_coding called via decode_coding above. */
5107 /* If a coding system for encoding is not yet decided, we set
5108 it as the same as coding-system for decoding.
5110 But, before doing that we must check if
5111 proc_encode_coding_system[p->outfd] surely points to a
5112 valid memory because p->outfd will be changed once EOF is
5113 sent to the process. */
5114 if (NILP (p
->encode_coding_system
)
5115 && proc_encode_coding_system
[p
->outfd
])
5117 pset_encode_coding_system
5118 (p
, coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
));
5119 setup_coding_system (p
->encode_coding_system
,
5120 proc_encode_coding_system
[p
->outfd
]);
5124 if (coding
->carryover_bytes
> 0)
5126 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5127 pset_decoding_buf (p
, make_uninit_string (coding
->carryover_bytes
));
5128 memcpy (SDATA (p
->decoding_buf
), coding
->carryover
,
5129 coding
->carryover_bytes
);
5130 p
->decoding_carryover
= coding
->carryover_bytes
;
5132 if (SBYTES (text
) > 0)
5133 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5134 sometimes it's simply wrong to wrap (e.g. when called from
5135 accept-process-output). */
5136 internal_condition_case_1 (read_process_output_call
,
5138 Fcons (make_lisp_proc (p
),
5139 Fcons (text
, Qnil
))),
5140 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
5141 read_process_output_error_handler
);
5143 /* If we saved the match data nonrecursively, restore it now. */
5144 restore_search_regs ();
5145 running_asynch_code
= outer_running_asynch_code
;
5147 /* Restore waiting_for_user_input_p as it was
5148 when we were called, in case the filter clobbered it. */
5149 waiting_for_user_input_p
= waiting
;
5151 #if 0 /* Call record_asynch_buffer_change unconditionally,
5152 because we might have changed minor modes or other things
5153 that affect key bindings. */
5154 if (! EQ (Fcurrent_buffer (), obuffer
)
5155 || ! EQ (current_buffer
->keymap
, okeymap
))
5157 /* But do it only if the caller is actually going to read events.
5158 Otherwise there's no need to make him wake up, and it could
5159 cause trouble (for example it would make sit_for return). */
5160 if (waiting_for_user_input_p
== -1)
5161 record_asynch_buffer_change ();
5164 DEFUN ("internal-default-process-filter", Finternal_default_process_filter
,
5165 Sinternal_default_process_filter
, 2, 2, 0,
5166 doc
: /* Function used as default process filter. */)
5167 (Lisp_Object proc
, Lisp_Object text
)
5169 struct Lisp_Process
*p
;
5172 CHECK_PROCESS (proc
);
5173 p
= XPROCESS (proc
);
5174 CHECK_STRING (text
);
5176 if (!NILP (p
->buffer
) && BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
5178 Lisp_Object old_read_only
;
5179 ptrdiff_t old_begv
, old_zv
;
5180 ptrdiff_t old_begv_byte
, old_zv_byte
;
5181 ptrdiff_t before
, before_byte
;
5182 ptrdiff_t opoint_byte
;
5185 Fset_buffer (p
->buffer
);
5187 opoint_byte
= PT_BYTE
;
5188 old_read_only
= BVAR (current_buffer
, read_only
);
5191 old_begv_byte
= BEGV_BYTE
;
5192 old_zv_byte
= ZV_BYTE
;
5194 bset_read_only (current_buffer
, Qnil
);
5196 /* Insert new output into buffer
5197 at the current end-of-output marker,
5198 thus preserving logical ordering of input and output. */
5199 if (XMARKER (p
->mark
)->buffer
)
5200 SET_PT_BOTH (clip_to_bounds (BEGV
,
5201 marker_position (p
->mark
), ZV
),
5202 clip_to_bounds (BEGV_BYTE
,
5203 marker_byte_position (p
->mark
),
5206 SET_PT_BOTH (ZV
, ZV_BYTE
);
5208 before_byte
= PT_BYTE
;
5210 /* If the output marker is outside of the visible region, save
5211 the restriction and widen. */
5212 if (! (BEGV
<= PT
&& PT
<= ZV
))
5215 /* Adjust the multibyteness of TEXT to that of the buffer. */
5216 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
5217 != ! STRING_MULTIBYTE (text
))
5218 text
= (STRING_MULTIBYTE (text
)
5219 ? Fstring_as_unibyte (text
)
5220 : Fstring_to_multibyte (text
));
5221 /* Insert before markers in case we are inserting where
5222 the buffer's mark is, and the user's next command is Meta-y. */
5223 insert_from_string_before_markers (text
, 0, 0,
5224 SCHARS (text
), SBYTES (text
), 0);
5226 /* Make sure the process marker's position is valid when the
5227 process buffer is changed in the signal_after_change above.
5228 W3 is known to do that. */
5229 if (BUFFERP (p
->buffer
)
5230 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5231 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5233 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5235 update_mode_lines
++;
5237 /* Make sure opoint and the old restrictions
5238 float ahead of any new text just as point would. */
5239 if (opoint
>= before
)
5241 opoint
+= PT
- before
;
5242 opoint_byte
+= PT_BYTE
- before_byte
;
5244 if (old_begv
> before
)
5246 old_begv
+= PT
- before
;
5247 old_begv_byte
+= PT_BYTE
- before_byte
;
5249 if (old_zv
>= before
)
5251 old_zv
+= PT
- before
;
5252 old_zv_byte
+= PT_BYTE
- before_byte
;
5255 /* If the restriction isn't what it should be, set it. */
5256 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5257 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5259 bset_read_only (current_buffer
, old_read_only
);
5260 SET_PT_BOTH (opoint
, opoint_byte
);
5265 /* Sending data to subprocess. */
5267 /* In send_process, when a write fails temporarily,
5268 wait_reading_process_output is called. It may execute user code,
5269 e.g. timers, that attempts to write new data to the same process.
5270 We must ensure that data is sent in the right order, and not
5271 interspersed half-completed with other writes (Bug#10815). This is
5272 handled by the write_queue element of struct process. It is a list
5273 with each entry having the form
5275 (string . (offset . length))
5277 where STRING is a lisp string, OFFSET is the offset into the
5278 string's byte sequence from which we should begin to send, and
5279 LENGTH is the number of bytes left to send. */
5281 /* Create a new entry in write_queue.
5282 INPUT_OBJ should be a buffer, string Qt, or Qnil.
5283 BUF is a pointer to the string sequence of the input_obj or a C
5284 string in case of Qt or Qnil. */
5287 write_queue_push (struct Lisp_Process
*p
, Lisp_Object input_obj
,
5288 const char *buf
, ptrdiff_t len
, bool front
)
5291 Lisp_Object entry
, obj
;
5293 if (STRINGP (input_obj
))
5295 offset
= buf
- SSDATA (input_obj
);
5301 obj
= make_unibyte_string (buf
, len
);
5304 entry
= Fcons (obj
, Fcons (make_number (offset
), make_number (len
)));
5307 pset_write_queue (p
, Fcons (entry
, p
->write_queue
));
5309 pset_write_queue (p
, nconc2 (p
->write_queue
, Fcons (entry
, Qnil
)));
5312 /* Remove the first element in the write_queue of process P, put its
5313 contents in OBJ, BUF and LEN, and return true. If the
5314 write_queue is empty, return false. */
5317 write_queue_pop (struct Lisp_Process
*p
, Lisp_Object
*obj
,
5318 const char **buf
, ptrdiff_t *len
)
5320 Lisp_Object entry
, offset_length
;
5323 if (NILP (p
->write_queue
))
5326 entry
= XCAR (p
->write_queue
);
5327 pset_write_queue (p
, XCDR (p
->write_queue
));
5329 *obj
= XCAR (entry
);
5330 offset_length
= XCDR (entry
);
5332 *len
= XINT (XCDR (offset_length
));
5333 offset
= XINT (XCAR (offset_length
));
5334 *buf
= SSDATA (*obj
) + offset
;
5339 /* Send some data to process PROC.
5340 BUF is the beginning of the data; LEN is the number of characters.
5341 OBJECT is the Lisp object that the data comes from. If OBJECT is
5342 nil or t, it means that the data comes from C string.
5344 If OBJECT is not nil, the data is encoded by PROC's coding-system
5345 for encoding before it is sent.
5347 This function can evaluate Lisp code and can garbage collect. */
5350 send_process (Lisp_Object proc
, const char *buf
, ptrdiff_t len
,
5353 struct Lisp_Process
*p
= XPROCESS (proc
);
5355 struct coding_system
*coding
;
5357 if (p
->raw_status_new
)
5359 if (! EQ (p
->status
, Qrun
))
5360 error ("Process %s not running", SDATA (p
->name
));
5362 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5364 coding
= proc_encode_coding_system
[p
->outfd
];
5365 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5367 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5368 || (BUFFERP (object
)
5369 && !NILP (BVAR (XBUFFER (object
), enable_multibyte_characters
)))
5372 pset_encode_coding_system
5373 (p
, complement_process_encoding_system (p
->encode_coding_system
));
5374 if (!EQ (Vlast_coding_system_used
, p
->encode_coding_system
))
5376 /* The coding system for encoding was changed to raw-text
5377 because we sent a unibyte text previously. Now we are
5378 sending a multibyte text, thus we must encode it by the
5379 original coding system specified for the current process.
5381 Another reason we come here is that the coding system
5382 was just complemented and a new one was returned by
5383 complement_process_encoding_system. */
5384 setup_coding_system (p
->encode_coding_system
, coding
);
5385 Vlast_coding_system_used
= p
->encode_coding_system
;
5387 coding
->src_multibyte
= 1;
5391 coding
->src_multibyte
= 0;
5392 /* For sending a unibyte text, character code conversion should
5393 not take place but EOL conversion should. So, setup raw-text
5394 or one of the subsidiary if we have not yet done it. */
5395 if (CODING_REQUIRE_ENCODING (coding
))
5397 if (CODING_REQUIRE_FLUSHING (coding
))
5399 /* But, before changing the coding, we must flush out data. */
5400 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5401 send_process (proc
, "", 0, Qt
);
5402 coding
->mode
&= CODING_MODE_LAST_BLOCK
;
5404 setup_coding_system (raw_text_coding_system
5405 (Vlast_coding_system_used
),
5407 coding
->src_multibyte
= 0;
5410 coding
->dst_multibyte
= 0;
5412 if (CODING_REQUIRE_ENCODING (coding
))
5414 coding
->dst_object
= Qt
;
5415 if (BUFFERP (object
))
5417 ptrdiff_t from_byte
, from
, to
;
5418 ptrdiff_t save_pt
, save_pt_byte
;
5419 struct buffer
*cur
= current_buffer
;
5421 set_buffer_internal (XBUFFER (object
));
5422 save_pt
= PT
, save_pt_byte
= PT_BYTE
;
5424 from_byte
= PTR_BYTE_POS ((unsigned char *) buf
);
5425 from
= BYTE_TO_CHAR (from_byte
);
5426 to
= BYTE_TO_CHAR (from_byte
+ len
);
5427 TEMP_SET_PT_BOTH (from
, from_byte
);
5428 encode_coding_object (coding
, object
, from
, from_byte
,
5429 to
, from_byte
+ len
, Qt
);
5430 TEMP_SET_PT_BOTH (save_pt
, save_pt_byte
);
5431 set_buffer_internal (cur
);
5433 else if (STRINGP (object
))
5435 encode_coding_object (coding
, object
, 0, 0, SCHARS (object
),
5436 SBYTES (object
), Qt
);
5440 coding
->dst_object
= make_unibyte_string (buf
, len
);
5441 coding
->produced
= len
;
5444 len
= coding
->produced
;
5445 object
= coding
->dst_object
;
5446 buf
= SSDATA (object
);
5449 /* If there is already data in the write_queue, put the new data
5450 in the back of queue. Otherwise, ignore it. */
5451 if (!NILP (p
->write_queue
))
5452 write_queue_push (p
, object
, buf
, len
, 0);
5454 do /* while !NILP (p->write_queue) */
5456 ptrdiff_t cur_len
= -1;
5457 const char *cur_buf
;
5458 Lisp_Object cur_object
;
5460 /* If write_queue is empty, ignore it. */
5461 if (!write_queue_pop (p
, &cur_object
, &cur_buf
, &cur_len
))
5465 cur_object
= object
;
5470 /* Send this batch, using one or more write calls. */
5471 ptrdiff_t written
= 0;
5472 int outfd
= p
->outfd
;
5473 #ifdef DATAGRAM_SOCKETS
5474 if (DATAGRAM_CHAN_P (outfd
))
5476 rv
= sendto (outfd
, cur_buf
, cur_len
,
5477 0, datagram_address
[outfd
].sa
,
5478 datagram_address
[outfd
].len
);
5481 else if (errno
== EMSGSIZE
)
5482 report_file_error ("sending datagram", Fcons (proc
, Qnil
));
5489 written
= emacs_gnutls_write (p
, cur_buf
, cur_len
);
5492 written
= emacs_write (outfd
, cur_buf
, cur_len
);
5493 rv
= (written
? 0 : -1);
5494 #ifdef ADAPTIVE_READ_BUFFERING
5495 if (p
->read_output_delay
> 0
5496 && p
->adaptive_read_buffering
== 1)
5498 p
->read_output_delay
= 0;
5499 process_output_delay_count
--;
5500 p
->read_output_skip
= 0;
5509 || errno
== EWOULDBLOCK
5512 /* Buffer is full. Wait, accepting input;
5513 that may allow the program
5514 to finish doing output and read more. */
5516 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5517 /* A gross hack to work around a bug in FreeBSD.
5518 In the following sequence, read(2) returns
5522 write(2) 954 bytes, get EAGAIN
5523 read(2) 1024 bytes in process_read_output
5524 read(2) 11 bytes in process_read_output
5526 That is, read(2) returns more bytes than have
5527 ever been written successfully. The 1033 bytes
5528 read are the 1022 bytes written successfully
5529 after processing (for example with CRs added if
5530 the terminal is set up that way which it is
5531 here). The same bytes will be seen again in a
5532 later read(2), without the CRs. */
5534 if (errno
== EAGAIN
)
5537 ioctl (p
->outfd
, TIOCFLUSH
, &flags
);
5539 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5541 /* Put what we should have written in wait_queue. */
5542 write_queue_push (p
, cur_object
, cur_buf
, cur_len
, 1);
5543 wait_reading_process_output (0, 20 * 1000 * 1000,
5544 0, 0, Qnil
, NULL
, 0);
5545 /* Reread queue, to see what is left. */
5548 else if (errno
== EPIPE
)
5550 p
->raw_status_new
= 0;
5551 pset_status (p
, list2 (Qexit
, make_number (256)));
5552 p
->tick
= ++process_tick
;
5553 deactivate_process (proc
);
5554 error ("process %s no longer connected to pipe; closed it",
5558 /* This is a real error. */
5559 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5565 while (!NILP (p
->write_queue
));
5568 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5570 doc
: /* Send current contents of region as input to PROCESS.
5571 PROCESS may be a process, a buffer, the name of a process or buffer, or
5572 nil, indicating the current buffer's process.
5573 Called from program, takes three arguments, PROCESS, START and END.
5574 If the region is more than 500 characters long,
5575 it is sent in several bunches. This may happen even for shorter regions.
5576 Output from processes can arrive in between bunches. */)
5577 (Lisp_Object process
, Lisp_Object start
, Lisp_Object end
)
5579 Lisp_Object proc
= get_process (process
);
5580 ptrdiff_t start_byte
, end_byte
;
5582 validate_region (&start
, &end
);
5584 start_byte
= CHAR_TO_BYTE (XINT (start
));
5585 end_byte
= CHAR_TO_BYTE (XINT (end
));
5587 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5588 move_gap_both (XINT (start
), start_byte
);
5590 send_process (proc
, (char *) BYTE_POS_ADDR (start_byte
),
5591 end_byte
- start_byte
, Fcurrent_buffer ());
5596 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5598 doc
: /* Send PROCESS the contents of STRING as input.
5599 PROCESS may be a process, a buffer, the name of a process or buffer, or
5600 nil, indicating the current buffer's process.
5601 If STRING is more than 500 characters long,
5602 it is sent in several bunches. This may happen even for shorter strings.
5603 Output from processes can arrive in between bunches. */)
5604 (Lisp_Object process
, Lisp_Object string
)
5607 CHECK_STRING (string
);
5608 proc
= get_process (process
);
5609 send_process (proc
, SSDATA (string
),
5610 SBYTES (string
), string
);
5614 /* Return the foreground process group for the tty/pty that
5615 the process P uses. */
5617 emacs_get_tty_pgrp (struct Lisp_Process
*p
)
5622 if (ioctl (p
->infd
, TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5625 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5626 master side. Try the slave side. */
5627 fd
= emacs_open (SSDATA (p
->tty_name
), O_RDONLY
, 0);
5631 ioctl (fd
, TIOCGPGRP
, &gid
);
5635 #endif /* defined (TIOCGPGRP ) */
5640 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5641 Sprocess_running_child_p
, 0, 1, 0,
5642 doc
: /* Return t if PROCESS has given the terminal to a child.
5643 If the operating system does not make it possible to find out,
5644 return t unconditionally. */)
5645 (Lisp_Object process
)
5647 /* Initialize in case ioctl doesn't exist or gives an error,
5648 in a way that will cause returning t. */
5651 struct Lisp_Process
*p
;
5653 proc
= get_process (process
);
5654 p
= XPROCESS (proc
);
5656 if (!EQ (p
->type
, Qreal
))
5657 error ("Process %s is not a subprocess",
5660 error ("Process %s is not active",
5663 gid
= emacs_get_tty_pgrp (p
);
5670 /* send a signal number SIGNO to PROCESS.
5671 If CURRENT_GROUP is t, that means send to the process group
5672 that currently owns the terminal being used to communicate with PROCESS.
5673 This is used for various commands in shell mode.
5674 If CURRENT_GROUP is lambda, that means send to the process group
5675 that currently owns the terminal, but only if it is NOT the shell itself.
5677 If NOMSG is false, insert signal-announcements into process's buffers
5680 If we can, we try to signal PROCESS by sending control characters
5681 down the pty. This allows us to signal inferiors who have changed
5682 their uid, for which kill would return an EPERM error. */
5685 process_send_signal (Lisp_Object process
, int signo
, Lisp_Object current_group
,
5689 struct Lisp_Process
*p
;
5693 proc
= get_process (process
);
5694 p
= XPROCESS (proc
);
5696 if (!EQ (p
->type
, Qreal
))
5697 error ("Process %s is not a subprocess",
5700 error ("Process %s is not active",
5704 current_group
= Qnil
;
5706 /* If we are using pgrps, get a pgrp number and make it negative. */
5707 if (NILP (current_group
))
5708 /* Send the signal to the shell's process group. */
5712 #ifdef SIGNALS_VIA_CHARACTERS
5713 /* If possible, send signals to the entire pgrp
5714 by sending an input character to it. */
5717 cc_t
*sig_char
= NULL
;
5719 tcgetattr (p
->infd
, &t
);
5724 sig_char
= &t
.c_cc
[VINTR
];
5728 sig_char
= &t
.c_cc
[VQUIT
];
5732 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5733 sig_char
= &t
.c_cc
[VSWTCH
];
5735 sig_char
= &t
.c_cc
[VSUSP
];
5740 if (sig_char
&& *sig_char
!= CDISABLE
)
5742 send_process (proc
, (char *) sig_char
, 1, Qnil
);
5745 /* If we can't send the signal with a character,
5746 fall through and send it another way. */
5748 /* The code above may fall through if it can't
5749 handle the signal. */
5750 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5753 /* Get the current pgrp using the tty itself, if we have that.
5754 Otherwise, use the pty to get the pgrp.
5755 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5756 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5757 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5758 His patch indicates that if TIOCGPGRP returns an error, then
5759 we should just assume that p->pid is also the process group id. */
5761 gid
= emacs_get_tty_pgrp (p
);
5764 /* If we can't get the information, assume
5765 the shell owns the tty. */
5768 /* It is not clear whether anything really can set GID to -1.
5769 Perhaps on some system one of those ioctls can or could do so.
5770 Or perhaps this is vestigial. */
5773 #else /* ! defined (TIOCGPGRP ) */
5774 /* Can't select pgrps on this system, so we know that
5775 the child itself heads the pgrp. */
5777 #endif /* ! defined (TIOCGPGRP ) */
5779 /* If current_group is lambda, and the shell owns the terminal,
5780 don't send any signal. */
5781 if (EQ (current_group
, Qlambda
) && gid
== p
->pid
)
5789 p
->raw_status_new
= 0;
5790 pset_status (p
, Qrun
);
5791 p
->tick
= ++process_tick
;
5794 status_notify (NULL
);
5795 redisplay_preserve_echo_area (13);
5798 #endif /* ! defined (SIGCONT) */
5802 flush_pending_output (p
->infd
);
5806 /* If we don't have process groups, send the signal to the immediate
5807 subprocess. That isn't really right, but it's better than any
5808 obvious alternative. */
5811 kill (p
->pid
, signo
);
5815 /* gid may be a pid, or minus a pgrp's number */
5817 if (!NILP (current_group
))
5819 if (ioctl (p
->infd
, TIOCSIGSEND
, signo
) == -1)
5827 #else /* ! defined (TIOCSIGSEND) */
5829 #endif /* ! defined (TIOCSIGSEND) */
5832 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
5833 doc
: /* Interrupt process PROCESS.
5834 PROCESS may be a process, a buffer, or the name of a process or buffer.
5835 No arg or nil means current buffer's process.
5836 Second arg CURRENT-GROUP non-nil means send signal to
5837 the current process-group of the process's controlling terminal
5838 rather than to the process's own process group.
5839 If the process is a shell, this means interrupt current subjob
5840 rather than the shell.
5842 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5843 don't send the signal. */)
5844 (Lisp_Object process
, Lisp_Object current_group
)
5846 process_send_signal (process
, SIGINT
, current_group
, 0);
5850 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
5851 doc
: /* Kill process PROCESS. May be process or name of one.
5852 See function `interrupt-process' for more details on usage. */)
5853 (Lisp_Object process
, Lisp_Object current_group
)
5855 process_send_signal (process
, SIGKILL
, current_group
, 0);
5859 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
5860 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
5861 See function `interrupt-process' for more details on usage. */)
5862 (Lisp_Object process
, Lisp_Object current_group
)
5864 process_send_signal (process
, SIGQUIT
, current_group
, 0);
5868 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
5869 doc
: /* Stop process PROCESS. May be process or name of one.
5870 See function `interrupt-process' for more details on usage.
5871 If PROCESS is a network or serial process, inhibit handling of incoming
5873 (Lisp_Object process
, Lisp_Object current_group
)
5875 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
5877 struct Lisp_Process
*p
;
5879 p
= XPROCESS (process
);
5880 if (NILP (p
->command
)
5883 FD_CLR (p
->infd
, &input_wait_mask
);
5884 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
5886 pset_command (p
, Qt
);
5890 error ("No SIGTSTP support");
5892 process_send_signal (process
, SIGTSTP
, current_group
, 0);
5897 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
5898 doc
: /* Continue process PROCESS. May be process or name of one.
5899 See function `interrupt-process' for more details on usage.
5900 If PROCESS is a network or serial process, resume handling of incoming
5902 (Lisp_Object process
, Lisp_Object current_group
)
5904 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
5906 struct Lisp_Process
*p
;
5908 p
= XPROCESS (process
);
5909 if (EQ (p
->command
, Qt
)
5911 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
5913 FD_SET (p
->infd
, &input_wait_mask
);
5914 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
5916 if (fd_info
[ p
->infd
].flags
& FILE_SERIAL
)
5917 PurgeComm (fd_info
[ p
->infd
].hnd
, PURGE_RXABORT
| PURGE_RXCLEAR
);
5918 #else /* not WINDOWSNT */
5919 tcflush (p
->infd
, TCIFLUSH
);
5920 #endif /* not WINDOWSNT */
5922 pset_command (p
, Qnil
);
5926 process_send_signal (process
, SIGCONT
, current_group
, 0);
5928 error ("No SIGCONT support");
5933 /* Return the integer value of the signal whose abbreviation is ABBR,
5934 or a negative number if there is no such signal. */
5936 abbr_to_signal (char const *name
)
5939 char sigbuf
[20]; /* Large enough for all valid signal abbreviations. */
5941 if (!strncmp (name
, "SIG", 3) || !strncmp (name
, "sig", 3))
5944 for (i
= 0; i
< sizeof sigbuf
; i
++)
5946 sigbuf
[i
] = c_toupper (name
[i
]);
5948 return str2sig (sigbuf
, &signo
) == 0 ? signo
: -1;
5954 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
5955 2, 2, "sProcess (name or number): \nnSignal code: ",
5956 doc
: /* Send PROCESS the signal with code SIGCODE.
5957 PROCESS may also be a number specifying the process id of the
5958 process to signal; in this case, the process need not be a child of
5960 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5961 (Lisp_Object process
, Lisp_Object sigcode
)
5966 if (STRINGP (process
))
5968 Lisp_Object tem
= Fget_process (process
);
5971 Lisp_Object process_number
=
5972 string_to_number (SSDATA (process
), 10, 1);
5973 if (INTEGERP (process_number
) || FLOATP (process_number
))
5974 tem
= process_number
;
5978 else if (!NUMBERP (process
))
5979 process
= get_process (process
);
5984 if (NUMBERP (process
))
5985 CONS_TO_INTEGER (process
, pid_t
, pid
);
5988 CHECK_PROCESS (process
);
5989 pid
= XPROCESS (process
)->pid
;
5991 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
5994 if (INTEGERP (sigcode
))
5996 CHECK_TYPE_RANGED_INTEGER (int, sigcode
);
5997 signo
= XINT (sigcode
);
6003 CHECK_SYMBOL (sigcode
);
6004 name
= SSDATA (SYMBOL_NAME (sigcode
));
6006 signo
= abbr_to_signal (name
);
6008 error ("Undefined signal name %s", name
);
6011 return make_number (kill (pid
, signo
));
6014 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
6015 doc
: /* Make PROCESS see end-of-file in its input.
6016 EOF comes after any text already sent to it.
6017 PROCESS may be a process, a buffer, the name of a process or buffer, or
6018 nil, indicating the current buffer's process.
6019 If PROCESS is a network connection, or is a process communicating
6020 through a pipe (as opposed to a pty), then you cannot send any more
6021 text to PROCESS after you call this function.
6022 If PROCESS is a serial process, wait until all output written to the
6023 process has been transmitted to the serial port. */)
6024 (Lisp_Object process
)
6027 struct coding_system
*coding
;
6029 if (DATAGRAM_CONN_P (process
))
6032 proc
= get_process (process
);
6033 coding
= proc_encode_coding_system
[XPROCESS (proc
)->outfd
];
6035 /* Make sure the process is really alive. */
6036 if (XPROCESS (proc
)->raw_status_new
)
6037 update_status (XPROCESS (proc
));
6038 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6039 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6041 if (CODING_REQUIRE_FLUSHING (coding
))
6043 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6044 send_process (proc
, "", 0, Qnil
);
6047 if (XPROCESS (proc
)->pty_flag
)
6048 send_process (proc
, "\004", 1, Qnil
);
6049 else if (EQ (XPROCESS (proc
)->type
, Qserial
))
6052 if (tcdrain (XPROCESS (proc
)->outfd
) != 0)
6053 error ("tcdrain() failed: %s", emacs_strerror (errno
));
6054 #endif /* not WINDOWSNT */
6055 /* Do nothing on Windows because writes are blocking. */
6059 int old_outfd
, new_outfd
;
6061 #ifdef HAVE_SHUTDOWN
6062 /* If this is a network connection, or socketpair is used
6063 for communication with the subprocess, call shutdown to cause EOF.
6064 (In some old system, shutdown to socketpair doesn't work.
6065 Then we just can't win.) */
6066 if (EQ (XPROCESS (proc
)->type
, Qnetwork
)
6067 || XPROCESS (proc
)->outfd
== XPROCESS (proc
)->infd
)
6068 shutdown (XPROCESS (proc
)->outfd
, 1);
6069 /* In case of socketpair, outfd == infd, so don't close it. */
6070 if (XPROCESS (proc
)->outfd
!= XPROCESS (proc
)->infd
)
6071 emacs_close (XPROCESS (proc
)->outfd
);
6072 #else /* not HAVE_SHUTDOWN */
6073 emacs_close (XPROCESS (proc
)->outfd
);
6074 #endif /* not HAVE_SHUTDOWN */
6075 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6078 old_outfd
= XPROCESS (proc
)->outfd
;
6080 if (!proc_encode_coding_system
[new_outfd
])
6081 proc_encode_coding_system
[new_outfd
]
6082 = xmalloc (sizeof (struct coding_system
));
6083 *proc_encode_coding_system
[new_outfd
]
6084 = *proc_encode_coding_system
[old_outfd
];
6085 memset (proc_encode_coding_system
[old_outfd
], 0,
6086 sizeof (struct coding_system
));
6088 XPROCESS (proc
)->outfd
= new_outfd
;
6093 /* The main Emacs thread records child processes in three places:
6095 - Vprocess_alist, for asynchronous subprocesses, which are child
6096 processes visible to Lisp.
6098 - deleted_pid_list, for child processes invisible to Lisp,
6099 typically because of delete-process. These are recorded so that
6100 the processes can be reaped when they exit, so that the operating
6101 system's process table is not cluttered by zombies.
6103 - the local variable PID in Fcall_process, call_process_cleanup and
6104 call_process_kill, for synchronous subprocesses.
6105 record_unwind_protect is used to make sure this process is not
6106 forgotten: if the user interrupts call-process and the child
6107 process refuses to exit immediately even with two C-g's,
6108 call_process_kill adds PID's contents to deleted_pid_list before
6111 The main Emacs thread invokes waitpid only on child processes that
6112 it creates and that have not been reaped. This avoid races on
6113 platforms such as GTK, where other threads create their own
6114 subprocesses which the main thread should not reap. For example,
6115 if the main thread attempted to reap an already-reaped child, it
6116 might inadvertently reap a GTK-created process that happened to
6117 have the same process ID. */
6119 /* LIB_CHILD_HANDLER is a SIGCHLD handler that Emacs calls while doing
6120 its own SIGCHLD handling. On POSIXish systems, glib needs this to
6121 keep track of its own children. GNUstep is similar. */
6123 static void dummy_handler (int sig
) {}
6124 static signal_handler_t
volatile lib_child_handler
;
6126 /* Handle a SIGCHLD signal by looking for known child processes of
6127 Emacs whose status have changed. For each one found, record its
6130 All we do is change the status; we do not run sentinels or print
6131 notifications. That is saved for the next time keyboard input is
6132 done, in order to avoid timing errors.
6134 ** WARNING: this can be called during garbage collection.
6135 Therefore, it must not be fooled by the presence of mark bits in
6138 ** USG WARNING: Although it is not obvious from the documentation
6139 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6140 signal() before executing at least one wait(), otherwise the
6141 handler will be called again, resulting in an infinite loop. The
6142 relevant portion of the documentation reads "SIGCLD signals will be
6143 queued and the signal-catching function will be continually
6144 reentered until the queue is empty". Invoking signal() causes the
6145 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6148 ** Malloc WARNING: This should never call malloc either directly or
6149 indirectly; if it does, that is a bug */
6152 handle_child_signal (int sig
)
6156 /* Find the process that signaled us, and record its status. */
6158 /* The process can have been deleted by Fdelete_process, or have
6159 been started asynchronously by Fcall_process. */
6160 for (tail
= deleted_pid_list
; CONSP (tail
); tail
= XCDR (tail
))
6162 bool all_pids_are_fixnums
6163 = (MOST_NEGATIVE_FIXNUM
<= TYPE_MINIMUM (pid_t
)
6164 && TYPE_MAXIMUM (pid_t
) <= MOST_POSITIVE_FIXNUM
);
6165 Lisp_Object xpid
= XCAR (tail
);
6166 if (all_pids_are_fixnums
? INTEGERP (xpid
) : NUMBERP (xpid
))
6169 if (INTEGERP (xpid
))
6170 deleted_pid
= XINT (xpid
);
6172 deleted_pid
= XFLOAT_DATA (xpid
);
6173 if (child_status_changed (deleted_pid
, 0, 0))
6174 XSETCAR (tail
, Qnil
);
6178 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6179 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6181 Lisp_Object proc
= XCDR (XCAR (tail
));
6182 struct Lisp_Process
*p
= XPROCESS (proc
);
6186 && child_status_changed (p
->pid
, &status
, WUNTRACED
| WCONTINUED
))
6188 /* Change the status of the process that was found. */
6189 p
->tick
= ++process_tick
;
6190 p
->raw_status
= status
;
6191 p
->raw_status_new
= 1;
6193 /* If process has terminated, stop waiting for its output. */
6194 if (WIFSIGNALED (status
) || WIFEXITED (status
))
6196 bool clear_desc_flag
= 0;
6199 clear_desc_flag
= 1;
6201 /* clear_desc_flag avoids a compiler bug in Microsoft C. */
6202 if (clear_desc_flag
)
6204 FD_CLR (p
->infd
, &input_wait_mask
);
6205 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6211 lib_child_handler (sig
);
6212 #ifdef NS_IMPL_GNUSTEP
6213 /* NSTask in GNUStep sets its child handler each time it is called.
6214 So we must re-set ours. */
6215 catch_child_signal();
6220 deliver_child_signal (int sig
)
6222 deliver_process_signal (sig
, handle_child_signal
);
6227 exec_sentinel_error_handler (Lisp_Object error_val
)
6229 cmd_error_internal (error_val
, "error in process sentinel: ");
6231 update_echo_area ();
6232 Fsleep_for (make_number (2), Qnil
);
6237 exec_sentinel (Lisp_Object proc
, Lisp_Object reason
)
6239 Lisp_Object sentinel
, odeactivate
;
6240 struct Lisp_Process
*p
= XPROCESS (proc
);
6241 ptrdiff_t count
= SPECPDL_INDEX ();
6242 bool outer_running_asynch_code
= running_asynch_code
;
6243 int waiting
= waiting_for_user_input_p
;
6245 if (inhibit_sentinels
)
6248 /* No need to gcpro these, because all we do with them later
6249 is test them for EQness, and none of them should be a string. */
6250 odeactivate
= Vdeactivate_mark
;
6252 Lisp_Object obuffer
, okeymap
;
6253 XSETBUFFER (obuffer
, current_buffer
);
6254 okeymap
= BVAR (current_buffer
, keymap
);
6257 /* There's no good reason to let sentinels change the current
6258 buffer, and many callers of accept-process-output, sit-for, and
6259 friends don't expect current-buffer to be changed from under them. */
6260 record_unwind_current_buffer ();
6262 sentinel
= p
->sentinel
;
6264 /* Inhibit quit so that random quits don't screw up a running filter. */
6265 specbind (Qinhibit_quit
, Qt
);
6266 specbind (Qlast_nonmenu_event
, Qt
); /* Why? --Stef */
6268 /* In case we get recursively called,
6269 and we already saved the match data nonrecursively,
6270 save the same match data in safely recursive fashion. */
6271 if (outer_running_asynch_code
)
6274 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6275 restore_search_regs ();
6276 record_unwind_save_match_data ();
6277 Fset_match_data (tem
, Qt
);
6280 /* For speed, if a search happens within this code,
6281 save the match data in a special nonrecursive fashion. */
6282 running_asynch_code
= 1;
6284 internal_condition_case_1 (read_process_output_call
,
6286 Fcons (proc
, Fcons (reason
, Qnil
))),
6287 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6288 exec_sentinel_error_handler
);
6290 /* If we saved the match data nonrecursively, restore it now. */
6291 restore_search_regs ();
6292 running_asynch_code
= outer_running_asynch_code
;
6294 Vdeactivate_mark
= odeactivate
;
6296 /* Restore waiting_for_user_input_p as it was
6297 when we were called, in case the filter clobbered it. */
6298 waiting_for_user_input_p
= waiting
;
6301 if (! EQ (Fcurrent_buffer (), obuffer
)
6302 || ! EQ (current_buffer
->keymap
, okeymap
))
6304 /* But do it only if the caller is actually going to read events.
6305 Otherwise there's no need to make him wake up, and it could
6306 cause trouble (for example it would make sit_for return). */
6307 if (waiting_for_user_input_p
== -1)
6308 record_asynch_buffer_change ();
6310 unbind_to (count
, Qnil
);
6313 /* Report all recent events of a change in process status
6314 (either run the sentinel or output a message).
6315 This is usually done while Emacs is waiting for keyboard input
6316 but can be done at other times. */
6319 status_notify (struct Lisp_Process
*deleting_process
)
6321 register Lisp_Object proc
;
6322 Lisp_Object tail
, msg
;
6323 struct gcpro gcpro1
, gcpro2
;
6327 /* We need to gcpro tail; if read_process_output calls a filter
6328 which deletes a process and removes the cons to which tail points
6329 from Vprocess_alist, and then causes a GC, tail is an unprotected
6333 /* Set this now, so that if new processes are created by sentinels
6334 that we run, we get called again to handle their status changes. */
6335 update_tick
= process_tick
;
6337 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6340 register struct Lisp_Process
*p
;
6342 proc
= Fcdr (XCAR (tail
));
6343 p
= XPROCESS (proc
);
6345 if (p
->tick
!= p
->update_tick
)
6347 p
->update_tick
= p
->tick
;
6349 /* If process is still active, read any output that remains. */
6350 while (! EQ (p
->filter
, Qt
)
6351 && ! EQ (p
->status
, Qconnect
)
6352 && ! EQ (p
->status
, Qlisten
)
6353 /* Network or serial process not stopped: */
6354 && ! EQ (p
->command
, Qt
)
6356 && p
!= deleting_process
6357 && read_process_output (proc
, p
->infd
) > 0);
6359 /* Get the text to use for the message. */
6360 if (p
->raw_status_new
)
6362 msg
= status_message (p
);
6364 /* If process is terminated, deactivate it or delete it. */
6366 if (CONSP (p
->status
))
6367 symbol
= XCAR (p
->status
);
6369 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6370 || EQ (symbol
, Qclosed
))
6372 if (delete_exited_processes
)
6373 remove_process (proc
);
6375 deactivate_process (proc
);
6378 /* The actions above may have further incremented p->tick.
6379 So set p->update_tick again so that an error in the sentinel will
6380 not cause this code to be run again. */
6381 p
->update_tick
= p
->tick
;
6382 /* Now output the message suitably. */
6383 exec_sentinel (proc
, msg
);
6387 update_mode_lines
++; /* In case buffers use %s in mode-line-format. */
6391 DEFUN ("internal-default-process-sentinel", Finternal_default_process_sentinel
,
6392 Sinternal_default_process_sentinel
, 2, 2, 0,
6393 doc
: /* Function used as default sentinel for processes. */)
6394 (Lisp_Object proc
, Lisp_Object msg
)
6396 Lisp_Object buffer
, symbol
;
6397 struct Lisp_Process
*p
;
6398 CHECK_PROCESS (proc
);
6399 p
= XPROCESS (proc
);
6403 symbol
= XCAR (symbol
);
6405 if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6408 struct buffer
*old
= current_buffer
;
6409 ptrdiff_t opoint
, opoint_byte
;
6410 ptrdiff_t before
, before_byte
;
6412 /* Avoid error if buffer is deleted
6413 (probably that's why the process is dead, too). */
6414 if (!BUFFER_LIVE_P (XBUFFER (buffer
)))
6416 Fset_buffer (buffer
);
6418 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
6419 msg
= (code_convert_string_norecord
6420 (msg
, Vlocale_coding_system
, 1));
6423 opoint_byte
= PT_BYTE
;
6424 /* Insert new output into buffer
6425 at the current end-of-output marker,
6426 thus preserving logical ordering of input and output. */
6427 if (XMARKER (p
->mark
)->buffer
)
6428 Fgoto_char (p
->mark
);
6430 SET_PT_BOTH (ZV
, ZV_BYTE
);
6433 before_byte
= PT_BYTE
;
6435 tem
= BVAR (current_buffer
, read_only
);
6436 bset_read_only (current_buffer
, Qnil
);
6437 insert_string ("\nProcess ");
6438 { /* FIXME: temporary kludge. */
6439 Lisp_Object tem2
= p
->name
; Finsert (1, &tem2
); }
6440 insert_string (" ");
6442 bset_read_only (current_buffer
, tem
);
6443 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6445 if (opoint
>= before
)
6446 SET_PT_BOTH (opoint
+ (PT
- before
),
6447 opoint_byte
+ (PT_BYTE
- before_byte
));
6449 SET_PT_BOTH (opoint
, opoint_byte
);
6451 set_buffer_internal (old
);
6457 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6458 Sset_process_coding_system
, 1, 3, 0,
6459 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6460 DECODING will be used to decode subprocess output and ENCODING to
6461 encode subprocess input. */)
6462 (register Lisp_Object process
, Lisp_Object decoding
, Lisp_Object encoding
)
6464 register struct Lisp_Process
*p
;
6466 CHECK_PROCESS (process
);
6467 p
= XPROCESS (process
);
6469 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6471 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6472 Fcheck_coding_system (decoding
);
6473 Fcheck_coding_system (encoding
);
6474 encoding
= coding_inherit_eol_type (encoding
, Qnil
);
6475 pset_decode_coding_system (p
, decoding
);
6476 pset_encode_coding_system (p
, encoding
);
6477 setup_process_coding_systems (process
);
6482 DEFUN ("process-coding-system",
6483 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6484 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6485 (register Lisp_Object process
)
6487 CHECK_PROCESS (process
);
6488 return Fcons (XPROCESS (process
)->decode_coding_system
,
6489 XPROCESS (process
)->encode_coding_system
);
6492 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6493 Sset_process_filter_multibyte
, 2, 2, 0,
6494 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6495 If FLAG is non-nil, the filter is given multibyte strings.
6496 If FLAG is nil, the filter is given unibyte strings. In this case,
6497 all character code conversion except for end-of-line conversion is
6499 (Lisp_Object process
, Lisp_Object flag
)
6501 register struct Lisp_Process
*p
;
6503 CHECK_PROCESS (process
);
6504 p
= XPROCESS (process
);
6506 pset_decode_coding_system
6507 (p
, raw_text_coding_system (p
->decode_coding_system
));
6508 setup_process_coding_systems (process
);
6513 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6514 Sprocess_filter_multibyte_p
, 1, 1, 0,
6515 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6516 (Lisp_Object process
)
6518 register struct Lisp_Process
*p
;
6519 struct coding_system
*coding
;
6521 CHECK_PROCESS (process
);
6522 p
= XPROCESS (process
);
6523 coding
= proc_decode_coding_system
[p
->infd
];
6524 return (CODING_FOR_UNIBYTE (coding
) ? Qnil
: Qt
);
6533 add_gpm_wait_descriptor (int desc
)
6535 add_keyboard_wait_descriptor (desc
);
6539 delete_gpm_wait_descriptor (int desc
)
6541 delete_keyboard_wait_descriptor (desc
);
6546 # ifdef USABLE_SIGIO
6548 /* Return true if *MASK has a bit set
6549 that corresponds to one of the keyboard input descriptors. */
6552 keyboard_bit_set (fd_set
*mask
)
6556 for (fd
= 0; fd
<= max_input_desc
; fd
++)
6557 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
6558 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6565 #else /* not subprocesses */
6567 /* Defined on msdos.c. */
6568 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
6569 EMACS_TIME
*, void *);
6571 /* Implementation of wait_reading_process_output, assuming that there
6572 are no subprocesses. Used only by the MS-DOS build.
6574 Wait for timeout to elapse and/or keyboard input to be available.
6578 If negative, gobble data immediately available but don't wait for any.
6581 an additional duration to wait, measured in nanoseconds
6582 If TIME_LIMIT is zero, then:
6583 If NSECS == 0, there is no limit.
6584 If NSECS > 0, the timeout consists of NSECS only.
6585 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
6588 0 to ignore keyboard input, or
6589 1 to return when input is available, or
6590 -1 means caller will actually read the input, so don't throw to
6593 see full version for other parameters. We know that wait_proc will
6594 always be NULL, since `subprocesses' isn't defined.
6596 DO_DISPLAY means redisplay should be done to show subprocess
6597 output that arrives.
6599 Return true if we received input from any process. */
6602 wait_reading_process_output (intmax_t time_limit
, int nsecs
, int read_kbd
,
6604 Lisp_Object wait_for_cell
,
6605 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
6608 EMACS_TIME end_time
, timeout
;
6615 else if (TYPE_MAXIMUM (time_t) < time_limit
)
6616 time_limit
= TYPE_MAXIMUM (time_t);
6618 /* What does time_limit really mean? */
6619 if (time_limit
|| nsecs
> 0)
6621 timeout
= make_emacs_time (time_limit
, nsecs
);
6622 end_time
= add_emacs_time (current_emacs_time (), timeout
);
6625 /* Turn off periodic alarms (in case they are in use)
6626 and then turn off any other atimers,
6627 because the select emulator uses alarms. */
6629 turn_on_atimers (0);
6633 bool timeout_reduced_for_timers
= 0;
6634 SELECT_TYPE waitchannels
;
6637 /* If calling from keyboard input, do not quit
6638 since we want to return C-g as an input character.
6639 Otherwise, do pending quit if requested. */
6643 /* Exit now if the cell we're waiting for became non-nil. */
6644 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6647 /* Compute time from now till when time limit is up. */
6648 /* Exit if already run out. */
6651 /* A negative timeout means
6652 gobble output available now
6653 but don't wait at all. */
6655 timeout
= make_emacs_time (0, 0);
6657 else if (time_limit
|| nsecs
> 0)
6659 EMACS_TIME now
= current_emacs_time ();
6660 if (EMACS_TIME_LE (end_time
, now
))
6662 timeout
= sub_emacs_time (end_time
, now
);
6666 timeout
= make_emacs_time (100000, 0);
6669 /* If our caller will not immediately handle keyboard events,
6670 run timer events directly.
6671 (Callers that will immediately read keyboard events
6672 call timer_delay on their own.) */
6673 if (NILP (wait_for_cell
))
6675 EMACS_TIME timer_delay
;
6679 unsigned old_timers_run
= timers_run
;
6680 timer_delay
= timer_check ();
6681 if (timers_run
!= old_timers_run
&& do_display
)
6682 /* We must retry, since a timer may have requeued itself
6683 and that could alter the time delay. */
6684 redisplay_preserve_echo_area (14);
6688 while (!detect_input_pending ());
6690 /* If there is unread keyboard input, also return. */
6692 && requeued_events_pending_p ())
6695 if (EMACS_TIME_VALID_P (timer_delay
) && nsecs
>= 0)
6697 if (EMACS_TIME_LT (timer_delay
, timeout
))
6699 timeout
= timer_delay
;
6700 timeout_reduced_for_timers
= 1;
6705 /* Cause C-g and alarm signals to take immediate action,
6706 and cause input available signals to zero out timeout. */
6708 set_waiting_for_input (&timeout
);
6710 /* If a frame has been newly mapped and needs updating,
6711 reprocess its display stuff. */
6712 if (frame_garbaged
&& do_display
)
6714 clear_waiting_for_input ();
6715 redisplay_preserve_echo_area (15);
6717 set_waiting_for_input (&timeout
);
6720 /* Wait till there is something to do. */
6721 FD_ZERO (&waitchannels
);
6722 if (read_kbd
&& detect_input_pending ())
6726 if (read_kbd
|| !NILP (wait_for_cell
))
6727 FD_SET (0, &waitchannels
);
6728 nfds
= pselect (1, &waitchannels
, NULL
, NULL
, &timeout
, NULL
);
6733 /* Make C-g and alarm signals set flags again */
6734 clear_waiting_for_input ();
6736 /* If we woke up due to SIGWINCH, actually change size now. */
6737 do_pending_window_change (0);
6739 if ((time_limit
|| nsecs
) && nfds
== 0 && ! timeout_reduced_for_timers
)
6740 /* We waited the full specified time, so return now. */
6745 /* If the system call was interrupted, then go around the
6747 if (xerrno
== EINTR
)
6748 FD_ZERO (&waitchannels
);
6750 error ("select error: %s", emacs_strerror (xerrno
));
6753 /* Check for keyboard input */
6756 && detect_input_pending_run_timers (do_display
))
6758 swallow_events (do_display
);
6759 if (detect_input_pending_run_timers (do_display
))
6763 /* If there is unread keyboard input, also return. */
6765 && requeued_events_pending_p ())
6768 /* If wait_for_cell. check for keyboard input
6769 but don't run any timers.
6770 ??? (It seems wrong to me to check for keyboard
6771 input at all when wait_for_cell, but the code
6772 has been this way since July 1994.
6773 Try changing this after version 19.31.) */
6774 if (! NILP (wait_for_cell
)
6775 && detect_input_pending ())
6777 swallow_events (do_display
);
6778 if (detect_input_pending ())
6782 /* Exit now if the cell we're waiting for became non-nil. */
6783 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6792 #endif /* not subprocesses */
6794 /* The following functions are needed even if async subprocesses are
6795 not supported. Some of them are no-op stubs in that case. */
6797 /* Add DESC to the set of keyboard input descriptors. */
6800 add_keyboard_wait_descriptor (int desc
)
6802 #ifdef subprocesses /* actually means "not MSDOS" */
6803 FD_SET (desc
, &input_wait_mask
);
6804 FD_SET (desc
, &non_process_wait_mask
);
6805 if (desc
> max_input_desc
)
6806 max_input_desc
= desc
;
6810 /* From now on, do not expect DESC to give keyboard input. */
6813 delete_keyboard_wait_descriptor (int desc
)
6817 int lim
= max_input_desc
;
6819 FD_CLR (desc
, &input_wait_mask
);
6820 FD_CLR (desc
, &non_process_wait_mask
);
6822 if (desc
== max_input_desc
)
6823 for (fd
= 0; fd
< lim
; fd
++)
6824 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
6825 max_input_desc
= fd
;
6829 /* Setup coding systems of PROCESS. */
6832 setup_process_coding_systems (Lisp_Object process
)
6835 struct Lisp_Process
*p
= XPROCESS (process
);
6837 int outch
= p
->outfd
;
6838 Lisp_Object coding_system
;
6840 if (inch
< 0 || outch
< 0)
6843 if (!proc_decode_coding_system
[inch
])
6844 proc_decode_coding_system
[inch
] = xmalloc (sizeof (struct coding_system
));
6845 coding_system
= p
->decode_coding_system
;
6846 if (EQ (p
->filter
, Qinternal_default_process_filter
)
6847 && BUFFERP (p
->buffer
))
6849 if (NILP (BVAR (XBUFFER (p
->buffer
), enable_multibyte_characters
)))
6850 coding_system
= raw_text_coding_system (coding_system
);
6852 setup_coding_system (coding_system
, proc_decode_coding_system
[inch
]);
6854 if (!proc_encode_coding_system
[outch
])
6855 proc_encode_coding_system
[outch
] = xmalloc (sizeof (struct coding_system
));
6856 setup_coding_system (p
->encode_coding_system
,
6857 proc_encode_coding_system
[outch
]);
6861 /* Close all descriptors currently in use for communication
6862 with subprocess. This is used in a newly-forked subprocess
6863 to get rid of irrelevant descriptors. */
6866 close_process_descs (void)
6870 for (i
= 0; i
< MAXDESC
; i
++)
6872 Lisp_Object process
;
6873 process
= chan_process
[i
];
6874 if (!NILP (process
))
6876 int in
= XPROCESS (process
)->infd
;
6877 int out
= XPROCESS (process
)->outfd
;
6880 if (out
>= 0 && in
!= out
)
6887 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
6888 doc
: /* Return the (or a) process associated with BUFFER.
6889 BUFFER may be a buffer or the name of one. */)
6890 (register Lisp_Object buffer
)
6893 register Lisp_Object buf
, tail
, proc
;
6895 if (NILP (buffer
)) return Qnil
;
6896 buf
= Fget_buffer (buffer
);
6897 if (NILP (buf
)) return Qnil
;
6899 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6901 proc
= Fcdr (XCAR (tail
));
6902 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
6905 #endif /* subprocesses */
6909 DEFUN ("process-inherit-coding-system-flag",
6910 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
6912 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
6913 If this flag is t, `buffer-file-coding-system' of the buffer
6914 associated with PROCESS will inherit the coding system used to decode
6915 the process output. */)
6916 (register Lisp_Object process
)
6919 CHECK_PROCESS (process
);
6920 return XPROCESS (process
)->inherit_coding_system_flag
? Qt
: Qnil
;
6922 /* Ignore the argument and return the value of
6923 inherit-process-coding-system. */
6924 return inherit_process_coding_system
? Qt
: Qnil
;
6928 /* Kill all processes associated with `buffer'.
6929 If `buffer' is nil, kill all processes */
6932 kill_buffer_processes (Lisp_Object buffer
)
6935 Lisp_Object tail
, proc
;
6937 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6939 proc
= XCDR (XCAR (tail
));
6941 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6943 if (NETCONN_P (proc
) || SERIALCONN_P (proc
))
6944 Fdelete_process (proc
);
6945 else if (XPROCESS (proc
)->infd
>= 0)
6946 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6949 #else /* subprocesses */
6950 /* Since we have no subprocesses, this does nothing. */
6951 #endif /* subprocesses */
6954 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
,
6955 Swaiting_for_user_input_p
, 0, 0, 0,
6956 doc
: /* Return non-nil if Emacs is waiting for input from the user.
6957 This is intended for use by asynchronous process output filters and sentinels. */)
6961 return (waiting_for_user_input_p
? Qt
: Qnil
);
6967 /* Stop reading input from keyboard sources. */
6970 hold_keyboard_input (void)
6975 /* Resume reading input from keyboard sources. */
6978 unhold_keyboard_input (void)
6983 /* Return true if keyboard input is on hold, zero otherwise. */
6986 kbd_on_hold_p (void)
6988 return kbd_is_on_hold
;
6992 /* Enumeration of and access to system processes a-la ps(1). */
6994 DEFUN ("list-system-processes", Flist_system_processes
, Slist_system_processes
,
6996 doc
: /* Return a list of numerical process IDs of all running processes.
6997 If this functionality is unsupported, return nil.
6999 See `process-attributes' for getting attributes of a process given its ID. */)
7002 return list_system_processes ();
7005 DEFUN ("process-attributes", Fprocess_attributes
,
7006 Sprocess_attributes
, 1, 1, 0,
7007 doc
: /* Return attributes of the process given by its PID, a number.
7009 Value is an alist where each element is a cons cell of the form
7013 If this functionality is unsupported, the value is nil.
7015 See `list-system-processes' for getting a list of all process IDs.
7017 The KEYs of the attributes that this function may return are listed
7018 below, together with the type of the associated VALUE (in parentheses).
7019 Not all platforms support all of these attributes; unsupported
7020 attributes will not appear in the returned alist.
7021 Unless explicitly indicated otherwise, numbers can have either
7022 integer or floating point values.
7024 euid -- Effective user User ID of the process (number)
7025 user -- User name corresponding to euid (string)
7026 egid -- Effective user Group ID of the process (number)
7027 group -- Group name corresponding to egid (string)
7028 comm -- Command name (executable name only) (string)
7029 state -- Process state code, such as "S", "R", or "T" (string)
7030 ppid -- Parent process ID (number)
7031 pgrp -- Process group ID (number)
7032 sess -- Session ID, i.e. process ID of session leader (number)
7033 ttname -- Controlling tty name (string)
7034 tpgid -- ID of foreground process group on the process's tty (number)
7035 minflt -- number of minor page faults (number)
7036 majflt -- number of major page faults (number)
7037 cminflt -- cumulative number of minor page faults (number)
7038 cmajflt -- cumulative number of major page faults (number)
7039 utime -- user time used by the process, in (current-time) format,
7040 which is a list of integers (HIGH LOW USEC PSEC)
7041 stime -- system time used by the process (current-time)
7042 time -- sum of utime and stime (current-time)
7043 cutime -- user time used by the process and its children (current-time)
7044 cstime -- system time used by the process and its children (current-time)
7045 ctime -- sum of cutime and cstime (current-time)
7046 pri -- priority of the process (number)
7047 nice -- nice value of the process (number)
7048 thcount -- process thread count (number)
7049 start -- time the process started (current-time)
7050 vsize -- virtual memory size of the process in KB's (number)
7051 rss -- resident set size of the process in KB's (number)
7052 etime -- elapsed time the process is running, in (HIGH LOW USEC PSEC) format
7053 pcpu -- percents of CPU time used by the process (floating-point number)
7054 pmem -- percents of total physical memory used by process's resident set
7055 (floating-point number)
7056 args -- command line which invoked the process (string). */)
7059 return system_process_attributes (pid
);
7062 /* Arrange to catch SIGCHLD if this hasn't already been arranged.
7063 Invoke this after init_process_emacs, and after glib and/or GNUstep
7064 futz with the SIGCHLD handler, but before Emacs forks any children.
7065 This function's caller should block SIGCHLD. */
7067 #ifndef NS_IMPL_GNUSTEP
7071 catch_child_signal (void)
7073 struct sigaction action
, old_action
;
7074 emacs_sigaction_init (&action
, deliver_child_signal
);
7075 block_child_signal ();
7076 sigaction (SIGCHLD
, &action
, &old_action
);
7077 eassert (! (old_action
.sa_flags
& SA_SIGINFO
));
7079 if (old_action
.sa_handler
!= deliver_child_signal
)
7081 = (old_action
.sa_handler
== SIG_DFL
|| old_action
.sa_handler
== SIG_IGN
7083 : old_action
.sa_handler
);
7084 unblock_child_signal ();
7088 /* This is not called "init_process" because that is the name of a
7089 Mach system call, so it would cause problems on Darwin systems. */
7091 init_process_emacs (void)
7096 inhibit_sentinels
= 0;
7099 if (! noninteractive
|| initialized
)
7102 #if defined HAVE_GLIB && !defined WINDOWSNT
7103 /* Tickle glib's child-handling code. Ask glib to wait for Emacs itself;
7104 this should always fail, but is enough to initialize glib's
7105 private SIGCHLD handler, allowing catch_child_signal to copy
7106 it into lib_child_handler. */
7107 g_source_unref (g_child_watch_source_new (getpid ()));
7109 catch_child_signal ();
7112 FD_ZERO (&input_wait_mask
);
7113 FD_ZERO (&non_keyboard_wait_mask
);
7114 FD_ZERO (&non_process_wait_mask
);
7115 FD_ZERO (&write_mask
);
7116 max_process_desc
= 0;
7117 memset (fd_callback_info
, 0, sizeof (fd_callback_info
));
7119 #ifdef NON_BLOCKING_CONNECT
7120 FD_ZERO (&connect_wait_mask
);
7121 num_pending_connects
= 0;
7124 #ifdef ADAPTIVE_READ_BUFFERING
7125 process_output_delay_count
= 0;
7126 process_output_skip
= 0;
7129 /* Don't do this, it caused infinite select loops. The display
7130 method should call add_keyboard_wait_descriptor on stdin if it
7133 FD_SET (0, &input_wait_mask
);
7136 Vprocess_alist
= Qnil
;
7137 deleted_pid_list
= Qnil
;
7138 for (i
= 0; i
< MAXDESC
; i
++)
7140 chan_process
[i
] = Qnil
;
7141 proc_buffered_char
[i
] = -1;
7143 memset (proc_decode_coding_system
, 0, sizeof proc_decode_coding_system
);
7144 memset (proc_encode_coding_system
, 0, sizeof proc_encode_coding_system
);
7145 #ifdef DATAGRAM_SOCKETS
7146 memset (datagram_address
, 0, sizeof datagram_address
);
7150 Lisp_Object subfeatures
= Qnil
;
7151 const struct socket_options
*sopt
;
7153 #define ADD_SUBFEATURE(key, val) \
7154 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7156 #ifdef NON_BLOCKING_CONNECT
7157 ADD_SUBFEATURE (QCnowait
, Qt
);
7159 #ifdef DATAGRAM_SOCKETS
7160 ADD_SUBFEATURE (QCtype
, Qdatagram
);
7162 #ifdef HAVE_SEQPACKET
7163 ADD_SUBFEATURE (QCtype
, Qseqpacket
);
7165 #ifdef HAVE_LOCAL_SOCKETS
7166 ADD_SUBFEATURE (QCfamily
, Qlocal
);
7168 ADD_SUBFEATURE (QCfamily
, Qipv4
);
7170 ADD_SUBFEATURE (QCfamily
, Qipv6
);
7172 #ifdef HAVE_GETSOCKNAME
7173 ADD_SUBFEATURE (QCservice
, Qt
);
7175 ADD_SUBFEATURE (QCserver
, Qt
);
7177 for (sopt
= socket_options
; sopt
->name
; sopt
++)
7178 subfeatures
= pure_cons (intern_c_string (sopt
->name
), subfeatures
);
7180 Fprovide (intern_c_string ("make-network-process"), subfeatures
);
7183 #if defined (DARWIN_OS)
7184 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7185 processes. As such, we only change the default value. */
7188 char const *release
= (STRINGP (Voperating_system_release
)
7189 ? SSDATA (Voperating_system_release
)
7191 if (!release
|| !release
[0] || (release
[0] < '7' && release
[1] == '.')) {
7192 Vprocess_connection_type
= Qnil
;
7196 #endif /* subprocesses */
7201 syms_of_process (void)
7205 DEFSYM (Qprocessp
, "processp");
7206 DEFSYM (Qrun
, "run");
7207 DEFSYM (Qstop
, "stop");
7208 DEFSYM (Qsignal
, "signal");
7210 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7213 Qexit = intern_c_string ("exit");
7214 staticpro (&Qexit); */
7216 DEFSYM (Qopen
, "open");
7217 DEFSYM (Qclosed
, "closed");
7218 DEFSYM (Qconnect
, "connect");
7219 DEFSYM (Qfailed
, "failed");
7220 DEFSYM (Qlisten
, "listen");
7221 DEFSYM (Qlocal
, "local");
7222 DEFSYM (Qipv4
, "ipv4");
7224 DEFSYM (Qipv6
, "ipv6");
7226 DEFSYM (Qdatagram
, "datagram");
7227 DEFSYM (Qseqpacket
, "seqpacket");
7229 DEFSYM (QCport
, ":port");
7230 DEFSYM (QCspeed
, ":speed");
7231 DEFSYM (QCprocess
, ":process");
7233 DEFSYM (QCbytesize
, ":bytesize");
7234 DEFSYM (QCstopbits
, ":stopbits");
7235 DEFSYM (QCparity
, ":parity");
7236 DEFSYM (Qodd
, "odd");
7237 DEFSYM (Qeven
, "even");
7238 DEFSYM (QCflowcontrol
, ":flowcontrol");
7241 DEFSYM (QCsummary
, ":summary");
7243 DEFSYM (Qreal
, "real");
7244 DEFSYM (Qnetwork
, "network");
7245 DEFSYM (Qserial
, "serial");
7246 DEFSYM (QCbuffer
, ":buffer");
7247 DEFSYM (QChost
, ":host");
7248 DEFSYM (QCservice
, ":service");
7249 DEFSYM (QClocal
, ":local");
7250 DEFSYM (QCremote
, ":remote");
7251 DEFSYM (QCcoding
, ":coding");
7252 DEFSYM (QCserver
, ":server");
7253 DEFSYM (QCnowait
, ":nowait");
7254 DEFSYM (QCsentinel
, ":sentinel");
7255 DEFSYM (QClog
, ":log");
7256 DEFSYM (QCnoquery
, ":noquery");
7257 DEFSYM (QCstop
, ":stop");
7258 DEFSYM (QCoptions
, ":options");
7259 DEFSYM (QCplist
, ":plist");
7261 DEFSYM (Qlast_nonmenu_event
, "last-nonmenu-event");
7263 staticpro (&Vprocess_alist
);
7264 staticpro (&deleted_pid_list
);
7266 #endif /* subprocesses */
7268 DEFSYM (QCname
, ":name");
7269 DEFSYM (QCtype
, ":type");
7271 DEFSYM (Qeuid
, "euid");
7272 DEFSYM (Qegid
, "egid");
7273 DEFSYM (Quser
, "user");
7274 DEFSYM (Qgroup
, "group");
7275 DEFSYM (Qcomm
, "comm");
7276 DEFSYM (Qstate
, "state");
7277 DEFSYM (Qppid
, "ppid");
7278 DEFSYM (Qpgrp
, "pgrp");
7279 DEFSYM (Qsess
, "sess");
7280 DEFSYM (Qttname
, "ttname");
7281 DEFSYM (Qtpgid
, "tpgid");
7282 DEFSYM (Qminflt
, "minflt");
7283 DEFSYM (Qmajflt
, "majflt");
7284 DEFSYM (Qcminflt
, "cminflt");
7285 DEFSYM (Qcmajflt
, "cmajflt");
7286 DEFSYM (Qutime
, "utime");
7287 DEFSYM (Qstime
, "stime");
7288 DEFSYM (Qtime
, "time");
7289 DEFSYM (Qcutime
, "cutime");
7290 DEFSYM (Qcstime
, "cstime");
7291 DEFSYM (Qctime
, "ctime");
7292 DEFSYM (Qinternal_default_process_sentinel
,
7293 "internal-default-process-sentinel");
7294 DEFSYM (Qinternal_default_process_filter
,
7295 "internal-default-process-filter");
7296 DEFSYM (Qpri
, "pri");
7297 DEFSYM (Qnice
, "nice");
7298 DEFSYM (Qthcount
, "thcount");
7299 DEFSYM (Qstart
, "start");
7300 DEFSYM (Qvsize
, "vsize");
7301 DEFSYM (Qrss
, "rss");
7302 DEFSYM (Qetime
, "etime");
7303 DEFSYM (Qpcpu
, "pcpu");
7304 DEFSYM (Qpmem
, "pmem");
7305 DEFSYM (Qargs
, "args");
7307 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes
,
7308 doc
: /* Non-nil means delete processes immediately when they exit.
7309 A value of nil means don't delete them until `list-processes' is run. */);
7311 delete_exited_processes
= 1;
7314 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type
,
7315 doc
: /* Control type of device used to communicate with subprocesses.
7316 Values are nil to use a pipe, or t or `pty' to use a pty.
7317 The value has no effect if the system has no ptys or if all ptys are busy:
7318 then a pipe is used in any case.
7319 The value takes effect when `start-process' is called. */);
7320 Vprocess_connection_type
= Qt
;
7322 #ifdef ADAPTIVE_READ_BUFFERING
7323 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering
,
7324 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
7325 On some systems, when Emacs reads the output from a subprocess, the output data
7326 is read in very small blocks, potentially resulting in very poor performance.
7327 This behavior can be remedied to some extent by setting this variable to a
7328 non-nil value, as it will automatically delay reading from such processes, to
7329 allow them to produce more output before Emacs tries to read it.
7330 If the value is t, the delay is reset after each write to the process; any other
7331 non-nil value means that the delay is not reset on write.
7332 The variable takes effect when `start-process' is called. */);
7333 Vprocess_adaptive_read_buffering
= Qt
;
7336 defsubr (&Sprocessp
);
7337 defsubr (&Sget_process
);
7338 defsubr (&Sdelete_process
);
7339 defsubr (&Sprocess_status
);
7340 defsubr (&Sprocess_exit_status
);
7341 defsubr (&Sprocess_id
);
7342 defsubr (&Sprocess_name
);
7343 defsubr (&Sprocess_tty_name
);
7344 defsubr (&Sprocess_command
);
7345 defsubr (&Sset_process_buffer
);
7346 defsubr (&Sprocess_buffer
);
7347 defsubr (&Sprocess_mark
);
7348 defsubr (&Sset_process_filter
);
7349 defsubr (&Sprocess_filter
);
7350 defsubr (&Sset_process_sentinel
);
7351 defsubr (&Sprocess_sentinel
);
7352 defsubr (&Sset_process_window_size
);
7353 defsubr (&Sset_process_inherit_coding_system_flag
);
7354 defsubr (&Sset_process_query_on_exit_flag
);
7355 defsubr (&Sprocess_query_on_exit_flag
);
7356 defsubr (&Sprocess_contact
);
7357 defsubr (&Sprocess_plist
);
7358 defsubr (&Sset_process_plist
);
7359 defsubr (&Sprocess_list
);
7360 defsubr (&Sstart_process
);
7361 defsubr (&Sserial_process_configure
);
7362 defsubr (&Smake_serial_process
);
7363 defsubr (&Sset_network_process_option
);
7364 defsubr (&Smake_network_process
);
7365 defsubr (&Sformat_network_address
);
7366 #if defined (HAVE_NET_IF_H)
7368 defsubr (&Snetwork_interface_list
);
7370 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
7371 defsubr (&Snetwork_interface_info
);
7373 #endif /* defined (HAVE_NET_IF_H) */
7374 #ifdef DATAGRAM_SOCKETS
7375 defsubr (&Sprocess_datagram_address
);
7376 defsubr (&Sset_process_datagram_address
);
7378 defsubr (&Saccept_process_output
);
7379 defsubr (&Sprocess_send_region
);
7380 defsubr (&Sprocess_send_string
);
7381 defsubr (&Sinterrupt_process
);
7382 defsubr (&Skill_process
);
7383 defsubr (&Squit_process
);
7384 defsubr (&Sstop_process
);
7385 defsubr (&Scontinue_process
);
7386 defsubr (&Sprocess_running_child_p
);
7387 defsubr (&Sprocess_send_eof
);
7388 defsubr (&Ssignal_process
);
7389 defsubr (&Swaiting_for_user_input_p
);
7390 defsubr (&Sprocess_type
);
7391 defsubr (&Sinternal_default_process_sentinel
);
7392 defsubr (&Sinternal_default_process_filter
);
7393 defsubr (&Sset_process_coding_system
);
7394 defsubr (&Sprocess_coding_system
);
7395 defsubr (&Sset_process_filter_multibyte
);
7396 defsubr (&Sprocess_filter_multibyte_p
);
7398 #endif /* subprocesses */
7400 defsubr (&Sget_buffer_process
);
7401 defsubr (&Sprocess_inherit_coding_system_flag
);
7402 defsubr (&Slist_system_processes
);
7403 defsubr (&Sprocess_attributes
);