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 <netinet/in.h>
82 #include <arpa/nameser.h>
97 #endif /* subprocesses */
103 #include "character.h"
108 #include "termhooks.h"
109 #include "termopts.h"
110 #include "commands.h"
111 #include "keyboard.h"
112 #include "blockinput.h"
113 #include "dispextern.h"
114 #include "composite.h"
116 #include "sysselect.h"
117 #include "syssignal.h"
123 #ifdef HAVE_WINDOW_SYSTEM
125 #endif /* HAVE_WINDOW_SYSTEM */
127 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
128 #include "xgselect.h"
132 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
133 EMACS_TIME
*, void *);
136 /* Work around GCC 4.7.0 bug with strict overflow checking; see
137 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>.
138 These lines can be removed once the GCC bug is fixed. */
139 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
140 # pragma GCC diagnostic ignored "-Wstrict-overflow"
143 Lisp_Object Qeuid
, Qegid
, Qcomm
, Qstate
, Qppid
, Qpgrp
, Qsess
, Qttname
, Qtpgid
;
144 Lisp_Object Qminflt
, Qmajflt
, Qcminflt
, Qcmajflt
, Qutime
, Qstime
, Qcstime
;
145 Lisp_Object Qcutime
, Qpri
, Qnice
, Qthcount
, Qstart
, Qvsize
, Qrss
, Qargs
;
146 Lisp_Object Quser
, Qgroup
, Qetime
, Qpcpu
, Qpmem
, Qtime
, Qctime
;
147 Lisp_Object QCname
, QCtype
;
149 /* True if keyboard input is on hold, zero otherwise. */
151 static bool kbd_is_on_hold
;
153 /* Nonzero means don't run process sentinels. This is used
155 bool inhibit_sentinels
;
159 Lisp_Object Qprocessp
;
160 static Lisp_Object Qrun
, Qstop
, Qsignal
;
161 static Lisp_Object Qopen
, Qclosed
, Qconnect
, Qfailed
, Qlisten
;
163 static Lisp_Object Qipv4
, Qdatagram
, Qseqpacket
;
164 static Lisp_Object Qreal
, Qnetwork
, Qserial
;
166 static Lisp_Object Qipv6
;
168 static Lisp_Object QCport
, QCprocess
;
170 Lisp_Object QCbytesize
, QCstopbits
, QCparity
, Qodd
, Qeven
;
171 Lisp_Object QCflowcontrol
, Qhw
, Qsw
, QCsummary
;
172 static Lisp_Object QCbuffer
, QChost
, QCservice
;
173 static Lisp_Object QClocal
, QCremote
, QCcoding
;
174 static Lisp_Object QCserver
, QCnowait
, QCnoquery
, QCstop
;
175 static Lisp_Object QCsentinel
, QClog
, QCoptions
, QCplist
;
176 static Lisp_Object Qlast_nonmenu_event
;
178 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
179 #define NETCONN1_P(p) (EQ (p->type, Qnetwork))
180 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
181 #define SERIALCONN1_P(p) (EQ (p->type, Qserial))
183 /* Number of events of change of status of a process. */
184 static EMACS_INT process_tick
;
185 /* Number of events for which the user or sentinel has been notified. */
186 static EMACS_INT update_tick
;
188 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
190 /* Only W32 has this, it really means that select can't take write mask. */
191 #ifdef BROKEN_NON_BLOCKING_CONNECT
192 #undef NON_BLOCKING_CONNECT
193 #define SELECT_CANT_DO_WRITE_MASK
195 #ifndef NON_BLOCKING_CONNECT
197 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
198 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
199 #define NON_BLOCKING_CONNECT
200 #endif /* EWOULDBLOCK || EINPROGRESS */
201 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
202 #endif /* HAVE_SELECT */
203 #endif /* NON_BLOCKING_CONNECT */
204 #endif /* BROKEN_NON_BLOCKING_CONNECT */
206 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
207 this system. We need to read full packets, so we need a
208 "non-destructive" select. So we require either native select,
209 or emulation of select using FIONREAD. */
211 #ifndef BROKEN_DATAGRAM_SOCKETS
212 # if defined HAVE_SELECT || defined USABLE_FIONREAD
213 # if defined HAVE_SENDTO && defined HAVE_RECVFROM && defined EMSGSIZE
214 # define DATAGRAM_SOCKETS
219 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
220 # define HAVE_SEQPACKET
223 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
224 #define ADAPTIVE_READ_BUFFERING
227 #ifdef ADAPTIVE_READ_BUFFERING
228 #define READ_OUTPUT_DELAY_INCREMENT (EMACS_TIME_RESOLUTION / 100)
229 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
230 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
232 /* Number of processes which have a non-zero read_output_delay,
233 and therefore might be delayed for adaptive read buffering. */
235 static int process_output_delay_count
;
237 /* True if any process has non-nil read_output_skip. */
239 static bool process_output_skip
;
242 #define process_output_delay_count 0
245 static void create_process (Lisp_Object
, char **, Lisp_Object
);
247 static bool keyboard_bit_set (SELECT_TYPE
*);
249 static void deactivate_process (Lisp_Object
);
250 static void status_notify (struct Lisp_Process
*);
251 static int read_process_output (Lisp_Object
, int);
252 static void handle_child_signal (int);
253 static void create_pty (Lisp_Object
);
255 /* If we support a window system, turn on the code to poll periodically
256 to detect C-g. It isn't actually used when doing interrupt input. */
257 #ifdef HAVE_WINDOW_SYSTEM
258 #define POLL_FOR_INPUT
261 static Lisp_Object
get_process (register Lisp_Object name
);
262 static void exec_sentinel (Lisp_Object proc
, Lisp_Object reason
);
264 /* Mask of bits indicating the descriptors that we wait for input on. */
266 static SELECT_TYPE input_wait_mask
;
268 /* Mask that excludes keyboard input descriptor(s). */
270 static SELECT_TYPE non_keyboard_wait_mask
;
272 /* Mask that excludes process input descriptor(s). */
274 static SELECT_TYPE non_process_wait_mask
;
276 /* Mask for selecting for write. */
278 static SELECT_TYPE write_mask
;
280 #ifdef NON_BLOCKING_CONNECT
281 /* Mask of bits indicating the descriptors that we wait for connect to
282 complete on. Once they complete, they are removed from this mask
283 and added to the input_wait_mask and non_keyboard_wait_mask. */
285 static SELECT_TYPE connect_wait_mask
;
287 /* Number of bits set in connect_wait_mask. */
288 static int num_pending_connects
;
289 #endif /* NON_BLOCKING_CONNECT */
291 /* The largest descriptor currently in use for a process object. */
292 static int max_process_desc
;
294 /* The largest descriptor currently in use for input. */
295 static int max_input_desc
;
297 /* Indexed by descriptor, gives the process (if any) for that descriptor */
298 static Lisp_Object chan_process
[MAXDESC
];
300 /* Alist of elements (NAME . PROCESS) */
301 static Lisp_Object Vprocess_alist
;
303 /* Buffered-ahead input char from process, indexed by channel.
304 -1 means empty (no char is buffered).
305 Used on sys V where the only way to tell if there is any
306 output from the process is to read at least one char.
307 Always -1 on systems that support FIONREAD. */
309 static int proc_buffered_char
[MAXDESC
];
311 /* Table of `struct coding-system' for each process. */
312 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
313 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
315 #ifdef DATAGRAM_SOCKETS
316 /* Table of `partner address' for datagram sockets. */
317 static struct sockaddr_and_len
{
320 } datagram_address
[MAXDESC
];
321 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
322 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
324 #define DATAGRAM_CHAN_P(chan) (0)
325 #define DATAGRAM_CONN_P(proc) (0)
328 /* These setters are used only in this file, so they can be private. */
330 pset_buffer (struct Lisp_Process
*p
, Lisp_Object val
)
335 pset_command (struct Lisp_Process
*p
, Lisp_Object val
)
340 pset_decode_coding_system (struct Lisp_Process
*p
, Lisp_Object val
)
342 p
->decode_coding_system
= val
;
345 pset_decoding_buf (struct Lisp_Process
*p
, Lisp_Object val
)
347 p
->decoding_buf
= val
;
350 pset_encode_coding_system (struct Lisp_Process
*p
, Lisp_Object val
)
352 p
->encode_coding_system
= val
;
355 pset_encoding_buf (struct Lisp_Process
*p
, Lisp_Object val
)
357 p
->encoding_buf
= val
;
360 pset_filter (struct Lisp_Process
*p
, Lisp_Object val
)
365 pset_log (struct Lisp_Process
*p
, Lisp_Object val
)
370 pset_mark (struct Lisp_Process
*p
, Lisp_Object val
)
375 pset_name (struct Lisp_Process
*p
, Lisp_Object val
)
380 pset_plist (struct Lisp_Process
*p
, Lisp_Object val
)
385 pset_sentinel (struct Lisp_Process
*p
, Lisp_Object val
)
390 pset_status (struct Lisp_Process
*p
, Lisp_Object val
)
395 pset_tty_name (struct Lisp_Process
*p
, Lisp_Object val
)
400 pset_type (struct Lisp_Process
*p
, Lisp_Object val
)
405 pset_write_queue (struct Lisp_Process
*p
, Lisp_Object val
)
407 p
->write_queue
= val
;
412 static struct fd_callback_data
418 int condition
; /* mask of the defines above. */
419 } fd_callback_info
[MAXDESC
];
422 /* Add a file descriptor FD to be monitored for when read is possible.
423 When read is possible, call FUNC with argument DATA. */
426 add_read_fd (int fd
, fd_callback func
, void *data
)
428 eassert (fd
< MAXDESC
);
429 add_keyboard_wait_descriptor (fd
);
431 fd_callback_info
[fd
].func
= func
;
432 fd_callback_info
[fd
].data
= data
;
433 fd_callback_info
[fd
].condition
|= FOR_READ
;
436 /* Stop monitoring file descriptor FD for when read is possible. */
439 delete_read_fd (int fd
)
441 eassert (fd
< MAXDESC
);
442 delete_keyboard_wait_descriptor (fd
);
444 fd_callback_info
[fd
].condition
&= ~FOR_READ
;
445 if (fd_callback_info
[fd
].condition
== 0)
447 fd_callback_info
[fd
].func
= 0;
448 fd_callback_info
[fd
].data
= 0;
452 /* Add a file descriptor FD to be monitored for when write is possible.
453 When write is possible, call FUNC with argument DATA. */
456 add_write_fd (int fd
, fd_callback func
, void *data
)
458 eassert (fd
< MAXDESC
);
459 FD_SET (fd
, &write_mask
);
460 if (fd
> max_input_desc
)
463 fd_callback_info
[fd
].func
= func
;
464 fd_callback_info
[fd
].data
= data
;
465 fd_callback_info
[fd
].condition
|= FOR_WRITE
;
468 /* Stop monitoring file descriptor FD for when write is possible. */
471 delete_write_fd (int fd
)
473 int lim
= max_input_desc
;
475 eassert (fd
< MAXDESC
);
476 FD_CLR (fd
, &write_mask
);
477 fd_callback_info
[fd
].condition
&= ~FOR_WRITE
;
478 if (fd_callback_info
[fd
].condition
== 0)
480 fd_callback_info
[fd
].func
= 0;
481 fd_callback_info
[fd
].data
= 0;
483 if (fd
== max_input_desc
)
484 for (fd
= lim
; fd
>= 0; fd
--)
485 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
495 /* Compute the Lisp form of the process status, p->status, from
496 the numeric status that was returned by `wait'. */
498 static Lisp_Object
status_convert (int);
501 update_status (struct Lisp_Process
*p
)
503 eassert (p
->raw_status_new
);
504 pset_status (p
, status_convert (p
->raw_status
));
505 p
->raw_status_new
= 0;
508 /* Convert a process status word in Unix format to
509 the list that we use internally. */
512 status_convert (int w
)
515 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
516 else if (WIFEXITED (w
))
517 return Fcons (Qexit
, Fcons (make_number (WEXITSTATUS (w
)),
518 WCOREDUMP (w
) ? Qt
: Qnil
));
519 else if (WIFSIGNALED (w
))
520 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
521 WCOREDUMP (w
) ? Qt
: Qnil
));
526 /* Given a status-list, extract the three pieces of information
527 and store them individually through the three pointers. */
530 decode_status (Lisp_Object l
, Lisp_Object
*symbol
, int *code
, bool *coredump
)
544 *code
= XFASTINT (XCAR (tem
));
546 *coredump
= !NILP (tem
);
550 /* Return a string describing a process status list. */
553 status_message (struct Lisp_Process
*p
)
555 Lisp_Object status
= p
->status
;
559 Lisp_Object string
, string2
;
561 decode_status (status
, &symbol
, &code
, &coredump
);
563 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
566 synchronize_system_messages_locale ();
567 signame
= strsignal (code
);
569 string
= build_string ("unknown");
574 string
= build_unibyte_string (signame
);
575 if (! NILP (Vlocale_coding_system
))
576 string
= (code_convert_string_norecord
577 (string
, Vlocale_coding_system
, 0));
578 c1
= STRING_CHAR (SDATA (string
));
581 Faset (string
, make_number (0), make_number (c2
));
583 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
584 return concat2 (string
, string2
);
586 else if (EQ (symbol
, Qexit
))
589 return build_string (code
== 0 ? "deleted\n" : "connection broken by remote peer\n");
591 return build_string ("finished\n");
592 string
= Fnumber_to_string (make_number (code
));
593 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
594 return concat3 (build_string ("exited abnormally with code "),
597 else if (EQ (symbol
, Qfailed
))
599 string
= Fnumber_to_string (make_number (code
));
600 string2
= build_string ("\n");
601 return concat3 (build_string ("failed with code "),
605 return Fcopy_sequence (Fsymbol_name (symbol
));
610 /* The file name of the pty opened by allocate_pty. */
611 static char pty_name
[24];
613 /* Open an available pty, returning a file descriptor.
614 Return -1 on failure.
615 The file name of the terminal corresponding to the pty
616 is left in the variable pty_name. */
627 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
628 for (i
= 0; i
< 16; i
++)
631 #ifdef PTY_NAME_SPRINTF
634 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
635 #endif /* no PTY_NAME_SPRINTF */
639 #else /* no PTY_OPEN */
640 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
641 #endif /* no PTY_OPEN */
645 /* check to make certain that both sides are available
646 this avoids a nasty yet stupid bug in rlogins */
647 #ifdef PTY_TTY_NAME_SPRINTF
650 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
651 #endif /* no PTY_TTY_NAME_SPRINTF */
652 if (faccessat (AT_FDCWD
, pty_name
, R_OK
| W_OK
, AT_EACCESS
) != 0)
667 #endif /* HAVE_PTYS */
670 make_process (Lisp_Object name
)
672 register Lisp_Object val
, tem
, name1
;
673 register struct Lisp_Process
*p
;
674 char suffix
[sizeof "<>" + INT_STRLEN_BOUND (printmax_t
)];
677 p
= allocate_process ();
678 /* Initialize Lisp data. Note that allocate_process initializes all
679 Lisp data to nil, so do it only for slots which should not be nil. */
680 pset_status (p
, Qrun
);
681 pset_mark (p
, Fmake_marker ());
683 /* Initialize non-Lisp data. Note that allocate_process zeroes out all
684 non-Lisp data, so do it only for slots which should not be zero. */
689 p
->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
692 /* If name is already in use, modify it until it is unused. */
697 tem
= Fget_process (name1
);
698 if (NILP (tem
)) break;
699 name1
= concat2 (name
, make_formatted_string (suffix
, "<%"pMd
">", i
));
703 XSETPROCESS (val
, p
);
704 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
709 remove_process (register Lisp_Object proc
)
711 register Lisp_Object pair
;
713 pair
= Frassq (proc
, Vprocess_alist
);
714 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
716 deactivate_process (proc
);
720 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
721 doc
: /* Return t if OBJECT is a process. */)
724 return PROCESSP (object
) ? Qt
: Qnil
;
727 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
728 doc
: /* Return the process named NAME, or nil if there is none. */)
729 (register Lisp_Object name
)
734 return Fcdr (Fassoc (name
, Vprocess_alist
));
737 /* This is how commands for the user decode process arguments. It
738 accepts a process, a process name, a buffer, a buffer name, or nil.
739 Buffers denote the first process in the buffer, and nil denotes the
743 get_process (register Lisp_Object name
)
745 register Lisp_Object proc
, obj
;
748 obj
= Fget_process (name
);
750 obj
= Fget_buffer (name
);
752 error ("Process %s does not exist", SDATA (name
));
754 else if (NILP (name
))
755 obj
= Fcurrent_buffer ();
759 /* Now obj should be either a buffer object or a process object.
763 proc
= Fget_buffer_process (obj
);
765 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj
), name
)));
776 /* Fdelete_process promises to immediately forget about the process, but in
777 reality, Emacs needs to remember those processes until they have been
778 treated by the SIGCHLD handler and waitpid has been invoked on them;
779 otherwise they might fill up the kernel's process table.
781 Some processes created by call-process are also put onto this list. */
782 static Lisp_Object deleted_pid_list
;
785 record_deleted_pid (pid_t pid
)
787 deleted_pid_list
= Fcons (make_fixnum_or_float (pid
),
788 /* GC treated elements set to nil. */
789 Fdelq (Qnil
, deleted_pid_list
));
793 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
794 doc
: /* Delete PROCESS: kill it and forget about it immediately.
795 PROCESS may be a process, a buffer, the name of a process or buffer, or
796 nil, indicating the current buffer's process. */)
797 (register Lisp_Object process
)
799 register struct Lisp_Process
*p
;
801 process
= get_process (process
);
802 p
= XPROCESS (process
);
804 p
->raw_status_new
= 0;
805 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
807 pset_status (p
, Fcons (Qexit
, Fcons (make_number (0), Qnil
)));
808 p
->tick
= ++process_tick
;
810 redisplay_preserve_echo_area (13);
815 record_kill_process (p
);
819 /* Update P's status, since record_kill_process will make the
820 SIGCHLD handler update deleted_pid_list, not *P. */
822 if (p
->raw_status_new
)
824 symbol
= CONSP (p
->status
) ? XCAR (p
->status
) : p
->status
;
825 if (! (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)))
826 pset_status (p
, list2 (Qsignal
, make_number (SIGKILL
)));
828 p
->tick
= ++process_tick
;
830 redisplay_preserve_echo_area (13);
833 remove_process (process
);
837 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
838 doc
: /* Return the status of PROCESS.
839 The returned value is one of the following symbols:
840 run -- for a process that is running.
841 stop -- for a process stopped but continuable.
842 exit -- for a process that has exited.
843 signal -- for a process that has got a fatal signal.
844 open -- for a network stream connection that is open.
845 listen -- for a network stream server that is listening.
846 closed -- for a network stream connection that is closed.
847 connect -- when waiting for a non-blocking connection to complete.
848 failed -- when a non-blocking connection has failed.
849 nil -- if arg is a process name and no such process exists.
850 PROCESS may be a process, a buffer, the name of a process, or
851 nil, indicating the current buffer's process. */)
852 (register Lisp_Object process
)
854 register struct Lisp_Process
*p
;
855 register Lisp_Object status
;
857 if (STRINGP (process
))
858 process
= Fget_process (process
);
860 process
= get_process (process
);
865 p
= XPROCESS (process
);
866 if (p
->raw_status_new
)
870 status
= XCAR (status
);
871 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
873 if (EQ (status
, Qexit
))
875 else if (EQ (p
->command
, Qt
))
877 else if (EQ (status
, Qrun
))
883 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
885 doc
: /* Return the exit status of PROCESS or the signal number that killed it.
886 If PROCESS has not yet exited or died, return 0. */)
887 (register Lisp_Object process
)
889 CHECK_PROCESS (process
);
890 if (XPROCESS (process
)->raw_status_new
)
891 update_status (XPROCESS (process
));
892 if (CONSP (XPROCESS (process
)->status
))
893 return XCAR (XCDR (XPROCESS (process
)->status
));
894 return make_number (0);
897 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
898 doc
: /* Return the process id of PROCESS.
899 This is the pid of the external process which PROCESS uses or talks to.
900 For a network connection, this value is nil. */)
901 (register Lisp_Object process
)
905 CHECK_PROCESS (process
);
906 pid
= XPROCESS (process
)->pid
;
907 return (pid
? make_fixnum_or_float (pid
) : Qnil
);
910 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
911 doc
: /* Return the name of PROCESS, as a string.
912 This is the name of the program invoked in PROCESS,
913 possibly modified to make it unique among process names. */)
914 (register Lisp_Object process
)
916 CHECK_PROCESS (process
);
917 return XPROCESS (process
)->name
;
920 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
921 doc
: /* Return the command that was executed to start PROCESS.
922 This is a list of strings, the first string being the program executed
923 and the rest of the strings being the arguments given to it.
924 For a network or serial process, this is nil (process is running) or t
925 \(process is stopped). */)
926 (register Lisp_Object process
)
928 CHECK_PROCESS (process
);
929 return XPROCESS (process
)->command
;
932 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
933 doc
: /* Return the name of the terminal PROCESS uses, or nil if none.
934 This is the terminal that the process itself reads and writes on,
935 not the name of the pty that Emacs uses to talk with that terminal. */)
936 (register Lisp_Object process
)
938 CHECK_PROCESS (process
);
939 return XPROCESS (process
)->tty_name
;
942 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
944 doc
: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
946 (register Lisp_Object process
, Lisp_Object buffer
)
948 struct Lisp_Process
*p
;
950 CHECK_PROCESS (process
);
952 CHECK_BUFFER (buffer
);
953 p
= XPROCESS (process
);
954 pset_buffer (p
, buffer
);
955 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
956 pset_childp (p
, Fplist_put (p
->childp
, QCbuffer
, buffer
));
957 setup_process_coding_systems (process
);
961 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
963 doc
: /* Return the buffer PROCESS is associated with.
964 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
965 (register Lisp_Object process
)
967 CHECK_PROCESS (process
);
968 return XPROCESS (process
)->buffer
;
971 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
973 doc
: /* Return the marker for the end of the last output from PROCESS. */)
974 (register Lisp_Object process
)
976 CHECK_PROCESS (process
);
977 return XPROCESS (process
)->mark
;
980 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
982 doc
: /* Give PROCESS the filter function FILTER; nil means no filter.
983 A value of t means stop accepting output from the process.
985 When a process has a filter, its buffer is not used for output.
986 Instead, each time it does output, the entire string of output is
987 passed to the filter.
989 The filter gets two arguments: the process and the string of output.
990 The string argument is normally a multibyte string, except:
991 - if the process' input coding system is no-conversion or raw-text,
992 it is a unibyte string (the non-converted input), or else
993 - if `default-enable-multibyte-characters' is nil, it is a unibyte
994 string (the result of converting the decoded input multibyte
995 string to unibyte with `string-make-unibyte'). */)
996 (register Lisp_Object process
, Lisp_Object filter
)
998 struct Lisp_Process
*p
;
1000 CHECK_PROCESS (process
);
1001 p
= XPROCESS (process
);
1003 /* Don't signal an error if the process' input file descriptor
1004 is closed. This could make debugging Lisp more difficult,
1005 for example when doing something like
1007 (setq process (start-process ...))
1009 (set-process-filter process ...) */
1013 if (EQ (filter
, Qt
) && !EQ (p
->status
, Qlisten
))
1015 FD_CLR (p
->infd
, &input_wait_mask
);
1016 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
1018 else if (EQ (p
->filter
, Qt
)
1019 /* Network or serial process not stopped: */
1020 && !EQ (p
->command
, Qt
))
1022 FD_SET (p
->infd
, &input_wait_mask
);
1023 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
1027 pset_filter (p
, filter
);
1028 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1029 pset_childp (p
, Fplist_put (p
->childp
, QCfilter
, filter
));
1030 setup_process_coding_systems (process
);
1034 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
1036 doc
: /* Returns the filter function of PROCESS; nil if none.
1037 See `set-process-filter' for more info on filter functions. */)
1038 (register Lisp_Object process
)
1040 CHECK_PROCESS (process
);
1041 return XPROCESS (process
)->filter
;
1044 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
1046 doc
: /* Give PROCESS the sentinel SENTINEL; nil for none.
1047 The sentinel is called as a function when the process changes state.
1048 It gets two arguments: the process, and a string describing the change. */)
1049 (register Lisp_Object process
, Lisp_Object sentinel
)
1051 struct Lisp_Process
*p
;
1053 CHECK_PROCESS (process
);
1054 p
= XPROCESS (process
);
1056 pset_sentinel (p
, sentinel
);
1057 if (NETCONN1_P (p
) || SERIALCONN1_P (p
))
1058 pset_childp (p
, Fplist_put (p
->childp
, QCsentinel
, sentinel
));
1062 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
1064 doc
: /* Return the sentinel of PROCESS; nil if none.
1065 See `set-process-sentinel' for more info on sentinels. */)
1066 (register Lisp_Object process
)
1068 CHECK_PROCESS (process
);
1069 return XPROCESS (process
)->sentinel
;
1072 DEFUN ("set-process-window-size", Fset_process_window_size
,
1073 Sset_process_window_size
, 3, 3, 0,
1074 doc
: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1075 (register Lisp_Object process
, Lisp_Object height
, Lisp_Object width
)
1077 CHECK_PROCESS (process
);
1078 CHECK_RANGED_INTEGER (height
, 0, INT_MAX
);
1079 CHECK_RANGED_INTEGER (width
, 0, INT_MAX
);
1081 if (XPROCESS (process
)->infd
< 0
1082 || set_window_size (XPROCESS (process
)->infd
,
1083 XINT (height
), XINT (width
)) <= 0)
1089 DEFUN ("set-process-inherit-coding-system-flag",
1090 Fset_process_inherit_coding_system_flag
,
1091 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
1092 doc
: /* Determine whether buffer of PROCESS will inherit coding-system.
1093 If the second argument FLAG is non-nil, then the variable
1094 `buffer-file-coding-system' of the buffer associated with PROCESS
1095 will be bound to the value of the coding system used to decode
1098 This is useful when the coding system specified for the process buffer
1099 leaves either the character code conversion or the end-of-line conversion
1100 unspecified, or if the coding system used to decode the process output
1101 is more appropriate for saving the process buffer.
1103 Binding the variable `inherit-process-coding-system' to non-nil before
1104 starting the process is an alternative way of setting the inherit flag
1105 for the process which will run.
1107 This function returns FLAG. */)
1108 (register Lisp_Object process
, Lisp_Object flag
)
1110 CHECK_PROCESS (process
);
1111 XPROCESS (process
)->inherit_coding_system_flag
= !NILP (flag
);
1115 DEFUN ("set-process-query-on-exit-flag",
1116 Fset_process_query_on_exit_flag
, Sset_process_query_on_exit_flag
,
1118 doc
: /* Specify if query is needed for PROCESS when Emacs is exited.
1119 If the second argument FLAG is non-nil, Emacs will query the user before
1120 exiting or killing a buffer if PROCESS is running. This function
1122 (register Lisp_Object process
, Lisp_Object flag
)
1124 CHECK_PROCESS (process
);
1125 XPROCESS (process
)->kill_without_query
= NILP (flag
);
1129 DEFUN ("process-query-on-exit-flag",
1130 Fprocess_query_on_exit_flag
, Sprocess_query_on_exit_flag
,
1132 doc
: /* Return the current value of query-on-exit flag for PROCESS. */)
1133 (register Lisp_Object process
)
1135 CHECK_PROCESS (process
);
1136 return (XPROCESS (process
)->kill_without_query
? Qnil
: Qt
);
1139 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
1141 doc
: /* Return the contact info of PROCESS; t for a real child.
1142 For a network or serial connection, the value depends on the optional
1143 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1144 SERVICE) for a network connection or (PORT SPEED) for a serial
1145 connection. If KEY is t, the complete contact information for the
1146 connection is returned, else the specific value for the keyword KEY is
1147 returned. See `make-network-process' or `make-serial-process' for a
1148 list of keywords. */)
1149 (register Lisp_Object process
, Lisp_Object key
)
1151 Lisp_Object contact
;
1153 CHECK_PROCESS (process
);
1154 contact
= XPROCESS (process
)->childp
;
1156 #ifdef DATAGRAM_SOCKETS
1157 if (DATAGRAM_CONN_P (process
)
1158 && (EQ (key
, Qt
) || EQ (key
, QCremote
)))
1159 contact
= Fplist_put (contact
, QCremote
,
1160 Fprocess_datagram_address (process
));
1163 if ((!NETCONN_P (process
) && !SERIALCONN_P (process
)) || EQ (key
, Qt
))
1165 if (NILP (key
) && NETCONN_P (process
))
1166 return Fcons (Fplist_get (contact
, QChost
),
1167 Fcons (Fplist_get (contact
, QCservice
), Qnil
));
1168 if (NILP (key
) && SERIALCONN_P (process
))
1169 return Fcons (Fplist_get (contact
, QCport
),
1170 Fcons (Fplist_get (contact
, QCspeed
), Qnil
));
1171 return Fplist_get (contact
, key
);
1174 DEFUN ("process-plist", Fprocess_plist
, Sprocess_plist
,
1176 doc
: /* Return the plist of PROCESS. */)
1177 (register Lisp_Object process
)
1179 CHECK_PROCESS (process
);
1180 return XPROCESS (process
)->plist
;
1183 DEFUN ("set-process-plist", Fset_process_plist
, Sset_process_plist
,
1185 doc
: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1186 (register Lisp_Object process
, Lisp_Object plist
)
1188 CHECK_PROCESS (process
);
1191 pset_plist (XPROCESS (process
), plist
);
1195 #if 0 /* Turned off because we don't currently record this info
1196 in the process. Perhaps add it. */
1197 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
1198 doc
: /* Return the connection type of PROCESS.
1199 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1200 a socket connection. */)
1201 (Lisp_Object process
)
1203 return XPROCESS (process
)->type
;
1207 DEFUN ("process-type", Fprocess_type
, Sprocess_type
, 1, 1, 0,
1208 doc
: /* Return the connection type of PROCESS.
1209 The value is either the symbol `real', `network', or `serial'.
1210 PROCESS may be a process, a buffer, the name of a process or buffer, or
1211 nil, indicating the current buffer's process. */)
1212 (Lisp_Object process
)
1215 proc
= get_process (process
);
1216 return XPROCESS (proc
)->type
;
1219 DEFUN ("format-network-address", Fformat_network_address
, Sformat_network_address
,
1221 doc
: /* Convert network ADDRESS from internal format to a string.
1222 A 4 or 5 element vector represents an IPv4 address (with port number).
1223 An 8 or 9 element vector represents an IPv6 address (with port number).
1224 If optional second argument OMIT-PORT is non-nil, don't include a port
1225 number in the string, even when present in ADDRESS.
1226 Returns nil if format of ADDRESS is invalid. */)
1227 (Lisp_Object address
, Lisp_Object omit_port
)
1232 if (STRINGP (address
)) /* AF_LOCAL */
1235 if (VECTORP (address
)) /* AF_INET or AF_INET6 */
1237 register struct Lisp_Vector
*p
= XVECTOR (address
);
1238 ptrdiff_t size
= p
->header
.size
;
1239 Lisp_Object args
[10];
1242 if (size
== 4 || (size
== 5 && !NILP (omit_port
)))
1244 args
[0] = build_string ("%d.%d.%d.%d");
1249 args
[0] = build_string ("%d.%d.%d.%d:%d");
1252 else if (size
== 8 || (size
== 9 && !NILP (omit_port
)))
1254 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1259 args
[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1265 for (i
= 0; i
< nargs
; i
++)
1267 if (! RANGED_INTEGERP (0, p
->contents
[i
], 65535))
1270 if (nargs
<= 5 /* IPv4 */
1271 && i
< 4 /* host, not port */
1272 && XINT (p
->contents
[i
]) > 255)
1275 args
[i
+1] = p
->contents
[i
];
1278 return Fformat (nargs
+1, args
);
1281 if (CONSP (address
))
1283 Lisp_Object args
[2];
1284 args
[0] = build_string ("<Family %d>");
1285 args
[1] = Fcar (address
);
1286 return Fformat (2, args
);
1292 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1293 doc
: /* Return a list of all processes. */)
1296 return Fmapcar (Qcdr
, Vprocess_alist
);
1299 /* Starting asynchronous inferior processes. */
1301 static Lisp_Object
start_process_unwind (Lisp_Object proc
);
1303 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1304 doc
: /* Start a program in a subprocess. Return the process object for it.
1305 NAME is name for process. It is modified if necessary to make it unique.
1306 BUFFER is the buffer (or buffer name) to associate with the process.
1308 Process output (both standard output and standard error streams) goes
1309 at end of BUFFER, unless you specify an output stream or filter
1310 function to handle the output. BUFFER may also be nil, meaning that
1311 this process is not associated with any buffer.
1313 PROGRAM is the program file name. It is searched for in `exec-path'
1314 (which see). If nil, just associate a pty with the buffer. Remaining
1315 arguments are strings to give program as arguments.
1317 If you want to separate standard output from standard error, invoke
1318 the command through a shell and redirect one of them using the shell
1321 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1322 (ptrdiff_t nargs
, Lisp_Object
*args
)
1324 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1325 register unsigned char **new_argv
;
1327 ptrdiff_t count
= SPECPDL_INDEX ();
1331 buffer
= Fget_buffer_create (buffer
);
1333 /* Make sure that the child will be able to chdir to the current
1334 buffer's current directory, or its unhandled equivalent. We
1335 can't just have the child check for an error when it does the
1336 chdir, since it's in a vfork.
1338 We have to GCPRO around this because Fexpand_file_name and
1339 Funhandled_file_name_directory might call a file name handling
1340 function. The argument list is protected by the caller, so all
1341 we really have to worry about is buffer. */
1343 struct gcpro gcpro1
, gcpro2
;
1345 current_dir
= BVAR (current_buffer
, directory
);
1347 GCPRO2 (buffer
, current_dir
);
1349 current_dir
= Funhandled_file_name_directory (current_dir
);
1350 if (NILP (current_dir
))
1351 /* If the file name handler says that current_dir is unreachable, use
1352 a sensible default. */
1353 current_dir
= build_string ("~/");
1354 current_dir
= expand_and_dir_to_file (current_dir
, Qnil
);
1355 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1356 report_file_error ("Setting current directory",
1357 Fcons (BVAR (current_buffer
, directory
), Qnil
));
1363 CHECK_STRING (name
);
1367 if (!NILP (program
))
1368 CHECK_STRING (program
);
1370 proc
= make_process (name
);
1371 /* If an error occurs and we can't start the process, we want to
1372 remove it from the process list. This means that each error
1373 check in create_process doesn't need to call remove_process
1374 itself; it's all taken care of here. */
1375 record_unwind_protect (start_process_unwind
, proc
);
1377 pset_childp (XPROCESS (proc
), Qt
);
1378 pset_plist (XPROCESS (proc
), Qnil
);
1379 pset_type (XPROCESS (proc
), Qreal
);
1380 pset_buffer (XPROCESS (proc
), buffer
);
1381 pset_sentinel (XPROCESS (proc
), Qnil
);
1382 pset_filter (XPROCESS (proc
), Qnil
);
1383 pset_command (XPROCESS (proc
), Flist (nargs
- 2, args
+ 2));
1386 /* AKA GNUTLS_INITSTAGE(proc). */
1387 XPROCESS (proc
)->gnutls_initstage
= GNUTLS_STAGE_EMPTY
;
1388 pset_gnutls_cred_type (XPROCESS (proc
), Qnil
);
1391 #ifdef ADAPTIVE_READ_BUFFERING
1392 XPROCESS (proc
)->adaptive_read_buffering
1393 = (NILP (Vprocess_adaptive_read_buffering
) ? 0
1394 : EQ (Vprocess_adaptive_read_buffering
, Qt
) ? 1 : 2);
1397 /* Make the process marker point into the process buffer (if any). */
1398 if (BUFFERP (buffer
))
1399 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1400 BUF_ZV (XBUFFER (buffer
)),
1401 BUF_ZV_BYTE (XBUFFER (buffer
)));
1404 /* Decide coding systems for communicating with the process. Here
1405 we don't setup the structure coding_system nor pay attention to
1406 unibyte mode. They are done in create_process. */
1408 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1409 Lisp_Object coding_systems
= Qt
;
1410 Lisp_Object val
, *args2
;
1411 struct gcpro gcpro1
, gcpro2
;
1413 val
= Vcoding_system_for_read
;
1416 args2
= alloca ((nargs
+ 1) * sizeof *args2
);
1417 args2
[0] = Qstart_process
;
1418 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1419 GCPRO2 (proc
, current_dir
);
1420 if (!NILP (program
))
1421 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1423 if (CONSP (coding_systems
))
1424 val
= XCAR (coding_systems
);
1425 else if (CONSP (Vdefault_process_coding_system
))
1426 val
= XCAR (Vdefault_process_coding_system
);
1428 pset_decode_coding_system (XPROCESS (proc
), val
);
1430 val
= Vcoding_system_for_write
;
1433 if (EQ (coding_systems
, Qt
))
1435 args2
= alloca ((nargs
+ 1) * sizeof *args2
);
1436 args2
[0] = Qstart_process
;
1437 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1438 GCPRO2 (proc
, current_dir
);
1439 if (!NILP (program
))
1440 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1443 if (CONSP (coding_systems
))
1444 val
= XCDR (coding_systems
);
1445 else if (CONSP (Vdefault_process_coding_system
))
1446 val
= XCDR (Vdefault_process_coding_system
);
1448 pset_encode_coding_system (XPROCESS (proc
), val
);
1449 /* Note: At this moment, the above coding system may leave
1450 text-conversion or eol-conversion unspecified. They will be
1451 decided after we read output from the process and decode it by
1452 some coding system, or just before we actually send a text to
1457 pset_decoding_buf (XPROCESS (proc
), empty_unibyte_string
);
1458 XPROCESS (proc
)->decoding_carryover
= 0;
1459 pset_encoding_buf (XPROCESS (proc
), empty_unibyte_string
);
1461 XPROCESS (proc
)->inherit_coding_system_flag
1462 = !(NILP (buffer
) || !inherit_process_coding_system
);
1464 if (!NILP (program
))
1466 /* If program file name is not absolute, search our path for it.
1467 Put the name we will really use in TEM. */
1468 if (!IS_DIRECTORY_SEP (SREF (program
, 0))
1469 && !(SCHARS (program
) > 1
1470 && IS_DEVICE_SEP (SREF (program
, 1))))
1472 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1475 GCPRO4 (name
, program
, buffer
, current_dir
);
1476 openp (Vexec_path
, program
, Vexec_suffixes
, &tem
, make_number (X_OK
));
1479 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1480 tem
= Fexpand_file_name (tem
, Qnil
);
1484 if (!NILP (Ffile_directory_p (program
)))
1485 error ("Specified program for new process is a directory");
1489 /* If program file name starts with /: for quoting a magic name,
1491 if (SBYTES (tem
) > 2 && SREF (tem
, 0) == '/'
1492 && SREF (tem
, 1) == ':')
1493 tem
= Fsubstring (tem
, make_number (2), Qnil
);
1496 Lisp_Object arg_encoding
= Qnil
;
1497 struct gcpro gcpro1
;
1500 /* Encode the file name and put it in NEW_ARGV.
1501 That's where the child will use it to execute the program. */
1502 tem
= Fcons (ENCODE_FILE (tem
), Qnil
);
1504 /* Here we encode arguments by the coding system used for sending
1505 data to the process. We don't support using different coding
1506 systems for encoding arguments and for encoding data sent to the
1509 for (i
= 3; i
< nargs
; i
++)
1511 tem
= Fcons (args
[i
], tem
);
1512 CHECK_STRING (XCAR (tem
));
1513 if (STRING_MULTIBYTE (XCAR (tem
)))
1515 if (NILP (arg_encoding
))
1516 arg_encoding
= (complement_process_encoding_system
1517 (XPROCESS (proc
)->encode_coding_system
));
1519 code_convert_string_norecord
1520 (XCAR (tem
), arg_encoding
, 1));
1527 /* Now that everything is encoded we can collect the strings into
1529 new_argv
= alloca ((nargs
- 1) * sizeof *new_argv
);
1530 new_argv
[nargs
- 2] = 0;
1532 for (i
= nargs
- 2; i
-- != 0; )
1534 new_argv
[i
] = SDATA (XCAR (tem
));
1538 create_process (proc
, (char **) new_argv
, current_dir
);
1543 return unbind_to (count
, proc
);
1546 /* This function is the unwind_protect form for Fstart_process. If
1547 PROC doesn't have its pid set, then we know someone has signaled
1548 an error and the process wasn't started successfully, so we should
1549 remove it from the process list. */
1551 start_process_unwind (Lisp_Object proc
)
1553 if (!PROCESSP (proc
))
1556 /* Was PROC started successfully?
1557 -2 is used for a pty with no process, eg for gdb. */
1558 if (XPROCESS (proc
)->pid
<= 0 && XPROCESS (proc
)->pid
!= -2)
1559 remove_process (proc
);
1565 create_process_1 (struct atimer
*timer
)
1567 /* Nothing to do. */
1572 create_process (Lisp_Object process
, char **new_argv
, Lisp_Object current_dir
)
1574 int inchannel
, outchannel
;
1578 int wait_child_setup
[2];
1581 /* Use volatile to protect variables from being clobbered by vfork. */
1582 volatile int forkin
, forkout
;
1583 volatile bool pty_flag
= 0;
1584 volatile Lisp_Object lisp_pty_name
= Qnil
;
1585 volatile Lisp_Object encoded_current_dir
;
1587 inchannel
= outchannel
= -1;
1590 if (!NILP (Vprocess_connection_type
))
1591 outchannel
= inchannel
= allocate_pty ();
1595 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1596 /* On most USG systems it does not work to open the pty's tty here,
1597 then close it and reopen it in the child. */
1598 /* Don't let this terminal become our controlling terminal
1599 (in case we don't have one). */
1600 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1602 report_file_error ("Opening pty", Qnil
);
1604 forkin
= forkout
= -1;
1605 #endif /* not USG, or USG_SUBTTY_WORKS */
1607 lisp_pty_name
= build_string (pty_name
);
1610 #endif /* HAVE_PTYS */
1615 report_file_error ("Creating pipe", Qnil
);
1621 emacs_close (inchannel
);
1622 emacs_close (forkout
);
1623 report_file_error ("Creating pipe", Qnil
);
1633 tem
= pipe (wait_child_setup
);
1635 report_file_error ("Creating pipe", Qnil
);
1636 tem
= fcntl (wait_child_setup
[1], F_GETFD
, 0);
1638 tem
= fcntl (wait_child_setup
[1], F_SETFD
, tem
| FD_CLOEXEC
);
1641 emacs_close (wait_child_setup
[0]);
1642 emacs_close (wait_child_setup
[1]);
1643 report_file_error ("Setting file descriptor flags", Qnil
);
1648 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1649 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1651 /* Record this as an active process, with its channels.
1652 As a result, child_setup will close Emacs's side of the pipes. */
1653 chan_process
[inchannel
] = process
;
1654 XPROCESS (process
)->infd
= inchannel
;
1655 XPROCESS (process
)->outfd
= outchannel
;
1657 /* Previously we recorded the tty descriptor used in the subprocess.
1658 It was only used for getting the foreground tty process, so now
1659 we just reopen the device (see emacs_get_tty_pgrp) as this is
1660 more portable (see USG_SUBTTY_WORKS above). */
1662 XPROCESS (process
)->pty_flag
= pty_flag
;
1663 pset_status (XPROCESS (process
), Qrun
);
1665 FD_SET (inchannel
, &input_wait_mask
);
1666 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1667 if (inchannel
> max_process_desc
)
1668 max_process_desc
= inchannel
;
1670 /* This may signal an error. */
1671 setup_process_coding_systems (process
);
1673 encoded_current_dir
= ENCODE_FILE (current_dir
);
1677 /* Block SIGCHLD until we have a chance to store the new fork's
1678 pid in its process structure. */
1679 sigemptyset (&blocked
);
1680 sigaddset (&blocked
, SIGCHLD
);
1681 pthread_sigmask (SIG_BLOCK
, &blocked
, 0);
1686 #endif /* not WINDOWSNT */
1688 int xforkin
= forkin
;
1689 int xforkout
= forkout
;
1691 /* Make the pty be the controlling terminal of the process. */
1693 /* First, disconnect its current controlling terminal. */
1694 /* We tried doing setsid only if pty_flag, but it caused
1695 process_set_signal to fail on SGI when using a pipe. */
1697 /* Make the pty's terminal the controlling terminal. */
1698 if (pty_flag
&& xforkin
>= 0)
1701 /* We ignore the return value
1702 because faith@cs.unc.edu says that is necessary on Linux. */
1703 ioctl (xforkin
, TIOCSCTTY
, 0);
1706 #if defined (LDISC1)
1707 if (pty_flag
&& xforkin
>= 0)
1710 tcgetattr (xforkin
, &t
);
1712 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1713 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1716 #if defined (NTTYDISC) && defined (TIOCSETD)
1717 if (pty_flag
&& xforkin
>= 0)
1719 /* Use new line discipline. */
1720 int ldisc
= NTTYDISC
;
1721 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1726 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1727 can do TIOCSPGRP only to the process's controlling tty. */
1730 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1731 I can't test it since I don't have 4.3. */
1732 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1735 ioctl (j
, TIOCNOTTY
, 0);
1739 #endif /* TIOCNOTTY */
1741 #if !defined (DONT_REOPEN_PTY)
1742 /*** There is a suggestion that this ought to be a
1743 conditional on TIOCSPGRP, or !defined TIOCSCTTY.
1744 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1745 that system does seem to need this code, even though
1746 both TIOCSCTTY is defined. */
1747 /* Now close the pty (if we had it open) and reopen it.
1748 This makes the pty the controlling terminal of the subprocess. */
1752 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1755 emacs_close (xforkin
);
1756 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
1760 emacs_write (1, "Couldn't open the pty terminal ", 31);
1761 emacs_write (1, pty_name
, strlen (pty_name
));
1762 emacs_write (1, "\n", 1);
1767 #endif /* not DONT_REOPEN_PTY */
1769 #ifdef SETUP_SLAVE_PTY
1774 #endif /* SETUP_SLAVE_PTY */
1776 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1777 Now reenable it in the child, so it will die when we want it to. */
1779 signal (SIGHUP
, SIG_DFL
);
1781 #endif /* HAVE_PTYS */
1783 signal (SIGINT
, SIG_DFL
);
1784 signal (SIGQUIT
, SIG_DFL
);
1786 /* Emacs ignores SIGPIPE, but the child should not. */
1787 signal (SIGPIPE
, SIG_DFL
);
1789 /* Stop blocking signals in the child. */
1790 pthread_sigmask (SIG_SETMASK
, &empty_mask
, 0);
1793 child_setup_tty (xforkout
);
1795 pid
= child_setup (xforkin
, xforkout
, xforkout
,
1796 new_argv
, 1, encoded_current_dir
);
1797 #else /* not WINDOWSNT */
1798 emacs_close (wait_child_setup
[0]);
1799 child_setup (xforkin
, xforkout
, xforkout
,
1800 new_argv
, 1, encoded_current_dir
);
1801 #endif /* not WINDOWSNT */
1804 /* Back in the parent process. */
1806 XPROCESS (process
)->pid
= pid
;
1808 XPROCESS (process
)->alive
= 1;
1810 /* Stop blocking signals in the parent. */
1811 pthread_sigmask (SIG_SETMASK
, &empty_mask
, 0);
1817 emacs_close (forkin
);
1818 if (forkin
!= forkout
&& forkout
>= 0)
1819 emacs_close (forkout
);
1823 /* vfork succeeded. */
1826 register_child (pid
, inchannel
);
1827 #endif /* WINDOWSNT */
1829 /* If the subfork execv fails, and it exits,
1830 this close hangs. I don't know why.
1831 So have an interrupt jar it loose. */
1833 struct atimer
*timer
;
1834 EMACS_TIME offset
= make_emacs_time (1, 0);
1837 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
1840 emacs_close (forkin
);
1842 cancel_atimer (timer
);
1846 if (forkin
!= forkout
&& forkout
>= 0)
1847 emacs_close (forkout
);
1849 pset_tty_name (XPROCESS (process
), lisp_pty_name
);
1852 /* Wait for child_setup to complete in case that vfork is
1853 actually defined as fork. The descriptor wait_child_setup[1]
1854 of a pipe is closed at the child side either by close-on-exec
1855 on successful execve or the _exit call in child_setup. */
1859 emacs_close (wait_child_setup
[1]);
1860 emacs_read (wait_child_setup
[0], &dummy
, 1);
1861 emacs_close (wait_child_setup
[0]);
1866 /* Now generate the error if vfork failed. */
1868 report_file_error ("Doing vfork", Qnil
);
1872 create_pty (Lisp_Object process
)
1874 int inchannel
, outchannel
;
1877 inchannel
= outchannel
= -1;
1880 if (!NILP (Vprocess_connection_type
))
1881 outchannel
= inchannel
= allocate_pty ();
1885 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1886 /* On most USG systems it does not work to open the pty's tty here,
1887 then close it and reopen it in the child. */
1888 /* Don't let this terminal become our controlling terminal
1889 (in case we don't have one). */
1890 int forkout
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1892 report_file_error ("Opening pty", Qnil
);
1893 #if defined (DONT_REOPEN_PTY)
1894 /* In the case that vfork is defined as fork, the parent process
1895 (Emacs) may send some data before the child process completes
1896 tty options setup. So we setup tty before forking. */
1897 child_setup_tty (forkout
);
1898 #endif /* DONT_REOPEN_PTY */
1899 #endif /* not USG, or USG_SUBTTY_WORKS */
1902 #endif /* HAVE_PTYS */
1904 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1905 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1907 /* Record this as an active process, with its channels.
1908 As a result, child_setup will close Emacs's side of the pipes. */
1909 chan_process
[inchannel
] = process
;
1910 XPROCESS (process
)->infd
= inchannel
;
1911 XPROCESS (process
)->outfd
= outchannel
;
1913 /* Previously we recorded the tty descriptor used in the subprocess.
1914 It was only used for getting the foreground tty process, so now
1915 we just reopen the device (see emacs_get_tty_pgrp) as this is
1916 more portable (see USG_SUBTTY_WORKS above). */
1918 XPROCESS (process
)->pty_flag
= pty_flag
;
1919 pset_status (XPROCESS (process
), Qrun
);
1920 setup_process_coding_systems (process
);
1922 FD_SET (inchannel
, &input_wait_mask
);
1923 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1924 if (inchannel
> max_process_desc
)
1925 max_process_desc
= inchannel
;
1927 XPROCESS (process
)->pid
= -2;
1930 pset_tty_name (XPROCESS (process
), build_string (pty_name
));
1933 pset_tty_name (XPROCESS (process
), Qnil
);
1937 /* Convert an internal struct sockaddr to a lisp object (vector or string).
1938 The address family of sa is not included in the result. */
1941 conv_sockaddr_to_lisp (struct sockaddr
*sa
, int len
)
1943 Lisp_Object address
;
1946 register struct Lisp_Vector
*p
;
1948 /* Workaround for a bug in getsockname on BSD: Names bound to
1949 sockets in the UNIX domain are inaccessible; getsockname returns
1950 a zero length name. */
1951 if (len
< offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
))
1952 return empty_unibyte_string
;
1954 switch (sa
->sa_family
)
1958 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
1959 len
= sizeof (sin
->sin_addr
) + 1;
1960 address
= Fmake_vector (make_number (len
), Qnil
);
1961 p
= XVECTOR (address
);
1962 p
->contents
[--len
] = make_number (ntohs (sin
->sin_port
));
1963 cp
= (unsigned char *) &sin
->sin_addr
;
1969 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
1970 uint16_t *ip6
= (uint16_t *) &sin6
->sin6_addr
;
1971 len
= sizeof (sin6
->sin6_addr
)/2 + 1;
1972 address
= Fmake_vector (make_number (len
), Qnil
);
1973 p
= XVECTOR (address
);
1974 p
->contents
[--len
] = make_number (ntohs (sin6
->sin6_port
));
1975 for (i
= 0; i
< len
; i
++)
1976 p
->contents
[i
] = make_number (ntohs (ip6
[i
]));
1980 #ifdef HAVE_LOCAL_SOCKETS
1983 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
1984 for (i
= 0; i
< sizeof (sockun
->sun_path
); i
++)
1985 if (sockun
->sun_path
[i
] == 0)
1987 return make_unibyte_string (sockun
->sun_path
, i
);
1991 len
-= offsetof (struct sockaddr
, sa_family
) + sizeof (sa
->sa_family
);
1992 address
= Fcons (make_number (sa
->sa_family
),
1993 Fmake_vector (make_number (len
), Qnil
));
1994 p
= XVECTOR (XCDR (address
));
1995 cp
= (unsigned char *) &sa
->sa_family
+ sizeof (sa
->sa_family
);
2001 p
->contents
[i
++] = make_number (*cp
++);
2007 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2010 get_lisp_to_sockaddr_size (Lisp_Object address
, int *familyp
)
2012 register struct Lisp_Vector
*p
;
2014 if (VECTORP (address
))
2016 p
= XVECTOR (address
);
2017 if (p
->header
.size
== 5)
2020 return sizeof (struct sockaddr_in
);
2023 else if (p
->header
.size
== 9)
2025 *familyp
= AF_INET6
;
2026 return sizeof (struct sockaddr_in6
);
2030 #ifdef HAVE_LOCAL_SOCKETS
2031 else if (STRINGP (address
))
2033 *familyp
= AF_LOCAL
;
2034 return sizeof (struct sockaddr_un
);
2037 else if (CONSP (address
) && TYPE_RANGED_INTEGERP (int, XCAR (address
))
2038 && VECTORP (XCDR (address
)))
2040 struct sockaddr
*sa
;
2041 *familyp
= XINT (XCAR (address
));
2042 p
= XVECTOR (XCDR (address
));
2043 return p
->header
.size
+ sizeof (sa
->sa_family
);
2048 /* Convert an address object (vector or string) to an internal sockaddr.
2050 The address format has been basically validated by
2051 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2052 it could have come from user data. So if FAMILY is not valid,
2053 we return after zeroing *SA. */
2056 conv_lisp_to_sockaddr (int family
, Lisp_Object address
, struct sockaddr
*sa
, int len
)
2058 register struct Lisp_Vector
*p
;
2059 register unsigned char *cp
= NULL
;
2063 memset (sa
, 0, len
);
2065 if (VECTORP (address
))
2067 p
= XVECTOR (address
);
2068 if (family
== AF_INET
)
2070 struct sockaddr_in
*sin
= (struct sockaddr_in
*) sa
;
2071 len
= sizeof (sin
->sin_addr
) + 1;
2072 hostport
= XINT (p
->contents
[--len
]);
2073 sin
->sin_port
= htons (hostport
);
2074 cp
= (unsigned char *)&sin
->sin_addr
;
2075 sa
->sa_family
= family
;
2078 else if (family
== AF_INET6
)
2080 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) sa
;
2081 uint16_t *ip6
= (uint16_t *)&sin6
->sin6_addr
;
2082 len
= sizeof (sin6
->sin6_addr
) + 1;
2083 hostport
= XINT (p
->contents
[--len
]);
2084 sin6
->sin6_port
= htons (hostport
);
2085 for (i
= 0; i
< len
; i
++)
2086 if (INTEGERP (p
->contents
[i
]))
2088 int j
= XFASTINT (p
->contents
[i
]) & 0xffff;
2091 sa
->sa_family
= family
;
2098 else if (STRINGP (address
))
2100 #ifdef HAVE_LOCAL_SOCKETS
2101 if (family
== AF_LOCAL
)
2103 struct sockaddr_un
*sockun
= (struct sockaddr_un
*) sa
;
2104 cp
= SDATA (address
);
2105 for (i
= 0; i
< sizeof (sockun
->sun_path
) && *cp
; i
++)
2106 sockun
->sun_path
[i
] = *cp
++;
2107 sa
->sa_family
= family
;
2114 p
= XVECTOR (XCDR (address
));
2115 cp
= (unsigned char *)sa
+ sizeof (sa
->sa_family
);
2118 for (i
= 0; i
< len
; i
++)
2119 if (INTEGERP (p
->contents
[i
]))
2120 *cp
++ = XFASTINT (p
->contents
[i
]) & 0xff;
2123 #ifdef DATAGRAM_SOCKETS
2124 DEFUN ("process-datagram-address", Fprocess_datagram_address
, Sprocess_datagram_address
,
2126 doc
: /* Get the current datagram address associated with PROCESS. */)
2127 (Lisp_Object process
)
2131 CHECK_PROCESS (process
);
2133 if (!DATAGRAM_CONN_P (process
))
2136 channel
= XPROCESS (process
)->infd
;
2137 return conv_sockaddr_to_lisp (datagram_address
[channel
].sa
,
2138 datagram_address
[channel
].len
);
2141 DEFUN ("set-process-datagram-address", Fset_process_datagram_address
, Sset_process_datagram_address
,
2143 doc
: /* Set the datagram address for PROCESS to ADDRESS.
2144 Returns nil upon error setting address, ADDRESS otherwise. */)
2145 (Lisp_Object process
, Lisp_Object address
)
2150 CHECK_PROCESS (process
);
2152 if (!DATAGRAM_CONN_P (process
))
2155 channel
= XPROCESS (process
)->infd
;
2157 len
= get_lisp_to_sockaddr_size (address
, &family
);
2158 if (len
== 0 || datagram_address
[channel
].len
!= len
)
2160 conv_lisp_to_sockaddr (family
, address
, datagram_address
[channel
].sa
, len
);
2166 static const struct socket_options
{
2167 /* The name of this option. Should be lowercase version of option
2168 name without SO_ prefix. */
2170 /* Option level SOL_... */
2172 /* Option number SO_... */
2174 enum { SOPT_UNKNOWN
, SOPT_BOOL
, SOPT_INT
, SOPT_IFNAME
, SOPT_LINGER
} opttype
;
2175 enum { OPIX_NONE
=0, OPIX_MISC
=1, OPIX_REUSEADDR
=2 } optbit
;
2176 } socket_options
[] =
2178 #ifdef SO_BINDTODEVICE
2179 { ":bindtodevice", SOL_SOCKET
, SO_BINDTODEVICE
, SOPT_IFNAME
, OPIX_MISC
},
2182 { ":broadcast", SOL_SOCKET
, SO_BROADCAST
, SOPT_BOOL
, OPIX_MISC
},
2185 { ":dontroute", SOL_SOCKET
, SO_DONTROUTE
, SOPT_BOOL
, OPIX_MISC
},
2188 { ":keepalive", SOL_SOCKET
, SO_KEEPALIVE
, SOPT_BOOL
, OPIX_MISC
},
2191 { ":linger", SOL_SOCKET
, SO_LINGER
, SOPT_LINGER
, OPIX_MISC
},
2194 { ":oobinline", SOL_SOCKET
, SO_OOBINLINE
, SOPT_BOOL
, OPIX_MISC
},
2197 { ":priority", SOL_SOCKET
, SO_PRIORITY
, SOPT_INT
, OPIX_MISC
},
2200 { ":reuseaddr", SOL_SOCKET
, SO_REUSEADDR
, SOPT_BOOL
, OPIX_REUSEADDR
},
2202 { 0, 0, 0, SOPT_UNKNOWN
, OPIX_NONE
}
2205 /* Set option OPT to value VAL on socket S.
2207 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2208 Signals an error if setting a known option fails.
2212 set_socket_option (int s
, Lisp_Object opt
, Lisp_Object val
)
2215 const struct socket_options
*sopt
;
2220 name
= SSDATA (SYMBOL_NAME (opt
));
2221 for (sopt
= socket_options
; sopt
->name
; sopt
++)
2222 if (strcmp (name
, sopt
->name
) == 0)
2225 switch (sopt
->opttype
)
2230 optval
= NILP (val
) ? 0 : 1;
2231 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2232 &optval
, sizeof (optval
));
2239 if (TYPE_RANGED_INTEGERP (int, val
))
2240 optval
= XINT (val
);
2242 error ("Bad option value for %s", name
);
2243 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2244 &optval
, sizeof (optval
));
2248 #ifdef SO_BINDTODEVICE
2251 char devname
[IFNAMSIZ
+1];
2253 /* This is broken, at least in the Linux 2.4 kernel.
2254 To unbind, the arg must be a zero integer, not the empty string.
2255 This should work on all systems. KFS. 2003-09-23. */
2256 memset (devname
, 0, sizeof devname
);
2259 char *arg
= SSDATA (val
);
2260 int len
= min (strlen (arg
), IFNAMSIZ
);
2261 memcpy (devname
, arg
, len
);
2263 else if (!NILP (val
))
2264 error ("Bad option value for %s", name
);
2265 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2274 struct linger linger
;
2277 linger
.l_linger
= 0;
2278 if (TYPE_RANGED_INTEGERP (int, val
))
2279 linger
.l_linger
= XINT (val
);
2281 linger
.l_onoff
= NILP (val
) ? 0 : 1;
2282 ret
= setsockopt (s
, sopt
->optlevel
, sopt
->optnum
,
2283 &linger
, sizeof (linger
));
2293 report_file_error ("Cannot set network option",
2294 Fcons (opt
, Fcons (val
, Qnil
)));
2295 return (1 << sopt
->optbit
);
2299 DEFUN ("set-network-process-option",
2300 Fset_network_process_option
, Sset_network_process_option
,
2302 doc
: /* For network process PROCESS set option OPTION to value VALUE.
2303 See `make-network-process' for a list of options and values.
2304 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2305 OPTION is not a supported option, return nil instead; otherwise return t. */)
2306 (Lisp_Object process
, Lisp_Object option
, Lisp_Object value
, Lisp_Object no_error
)
2309 struct Lisp_Process
*p
;
2311 CHECK_PROCESS (process
);
2312 p
= XPROCESS (process
);
2313 if (!NETCONN1_P (p
))
2314 error ("Process is not a network process");
2318 error ("Process is not running");
2320 if (set_socket_option (s
, option
, value
))
2322 pset_childp (p
, Fplist_put (p
->childp
, option
, value
));
2326 if (NILP (no_error
))
2327 error ("Unknown or unsupported option");
2333 DEFUN ("serial-process-configure",
2334 Fserial_process_configure
,
2335 Sserial_process_configure
,
2337 doc
: /* Configure speed, bytesize, etc. of a serial process.
2339 Arguments are specified as keyword/argument pairs. Attributes that
2340 are not given are re-initialized from the process's current
2341 configuration (available via the function `process-contact') or set to
2342 reasonable default values. The following arguments are defined:
2348 -- Any of these arguments can be given to identify the process that is
2349 to be configured. If none of these arguments is given, the current
2350 buffer's process is used.
2352 :speed SPEED -- SPEED is the speed of the serial port in bits per
2353 second, also called baud rate. Any value can be given for SPEED, but
2354 most serial ports work only at a few defined values between 1200 and
2355 115200, with 9600 being the most common value. If SPEED is nil, the
2356 serial port is not configured any further, i.e., all other arguments
2357 are ignored. This may be useful for special serial ports such as
2358 Bluetooth-to-serial converters which can only be configured through AT
2359 commands. A value of nil for SPEED can be used only when passed
2360 through `make-serial-process' or `serial-term'.
2362 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2363 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2365 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2366 `odd' (use odd parity), or the symbol `even' (use even parity). If
2367 PARITY is not given, no parity is used.
2369 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2370 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2371 is not given or nil, 1 stopbit is used.
2373 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2374 flowcontrol to be used, which is either nil (don't use flowcontrol),
2375 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2376 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2377 flowcontrol is used.
2379 `serial-process-configure' is called by `make-serial-process' for the
2380 initial configuration of the serial port.
2384 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2386 \(serial-process-configure
2387 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2389 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2391 usage: (serial-process-configure &rest ARGS) */)
2392 (ptrdiff_t nargs
, Lisp_Object
*args
)
2394 struct Lisp_Process
*p
;
2395 Lisp_Object contact
= Qnil
;
2396 Lisp_Object proc
= Qnil
;
2397 struct gcpro gcpro1
;
2399 contact
= Flist (nargs
, args
);
2402 proc
= Fplist_get (contact
, QCprocess
);
2404 proc
= Fplist_get (contact
, QCname
);
2406 proc
= Fplist_get (contact
, QCbuffer
);
2408 proc
= Fplist_get (contact
, QCport
);
2409 proc
= get_process (proc
);
2410 p
= XPROCESS (proc
);
2411 if (!EQ (p
->type
, Qserial
))
2412 error ("Not a serial process");
2414 if (NILP (Fplist_get (p
->childp
, QCspeed
)))
2420 serial_configure (p
, contact
);
2426 /* Used by make-serial-process to recover from errors. */
2428 make_serial_process_unwind (Lisp_Object proc
)
2430 if (!PROCESSP (proc
))
2432 remove_process (proc
);
2436 DEFUN ("make-serial-process", Fmake_serial_process
, Smake_serial_process
,
2438 doc
: /* Create and return a serial port process.
2440 In Emacs, serial port connections are represented by process objects,
2441 so input and output work as for subprocesses, and `delete-process'
2442 closes a serial port connection. However, a serial process has no
2443 process id, it cannot be signaled, and the status codes are different
2444 from normal processes.
2446 `make-serial-process' creates a process and a buffer, on which you
2447 probably want to use `process-send-string'. Try \\[serial-term] for
2448 an interactive terminal. See below for examples.
2450 Arguments are specified as keyword/argument pairs. The following
2451 arguments are defined:
2453 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2454 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2455 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2456 the backslashes in strings).
2458 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2459 which this function calls.
2461 :name NAME -- NAME is the name of the process. If NAME is not given,
2462 the value of PORT is used.
2464 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2465 with the process. Process output goes at the end of that buffer,
2466 unless you specify an output stream or filter function to handle the
2467 output. If BUFFER is not given, the value of NAME is used.
2469 :coding CODING -- If CODING is a symbol, it specifies the coding
2470 system used for both reading and writing for this process. If CODING
2471 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2472 ENCODING is used for writing.
2474 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2475 the process is running. If BOOL is not given, query before exiting.
2477 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2478 In the stopped state, a serial process does not accept incoming data,
2479 but you can send outgoing data. The stopped state is cleared by
2480 `continue-process' and set by `stop-process'.
2482 :filter FILTER -- Install FILTER as the process filter.
2484 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2486 :plist PLIST -- Install PLIST as the initial plist of the process.
2492 -- This function calls `serial-process-configure' to handle these
2495 The original argument list, possibly modified by later configuration,
2496 is available via the function `process-contact'.
2500 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2502 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2504 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2506 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2508 usage: (make-serial-process &rest ARGS) */)
2509 (ptrdiff_t nargs
, Lisp_Object
*args
)
2512 Lisp_Object proc
, contact
, port
;
2513 struct Lisp_Process
*p
;
2514 struct gcpro gcpro1
;
2515 Lisp_Object name
, buffer
;
2516 Lisp_Object tem
, val
;
2517 ptrdiff_t specpdl_count
= -1;
2522 contact
= Flist (nargs
, args
);
2525 port
= Fplist_get (contact
, QCport
);
2527 error ("No port specified");
2528 CHECK_STRING (port
);
2530 if (NILP (Fplist_member (contact
, QCspeed
)))
2531 error (":speed not specified");
2532 if (!NILP (Fplist_get (contact
, QCspeed
)))
2533 CHECK_NUMBER (Fplist_get (contact
, QCspeed
));
2535 name
= Fplist_get (contact
, QCname
);
2538 CHECK_STRING (name
);
2539 proc
= make_process (name
);
2540 specpdl_count
= SPECPDL_INDEX ();
2541 record_unwind_protect (make_serial_process_unwind
, proc
);
2542 p
= XPROCESS (proc
);
2544 fd
= serial_open (SSDATA (port
));
2547 if (fd
> max_process_desc
)
2548 max_process_desc
= fd
;
2549 chan_process
[fd
] = proc
;
2551 buffer
= Fplist_get (contact
, QCbuffer
);
2554 buffer
= Fget_buffer_create (buffer
);
2555 pset_buffer (p
, buffer
);
2557 pset_childp (p
, contact
);
2558 pset_plist (p
, Fcopy_sequence (Fplist_get (contact
, QCplist
)));
2559 pset_type (p
, Qserial
);
2560 pset_sentinel (p
, Fplist_get (contact
, QCsentinel
));
2561 pset_filter (p
, Fplist_get (contact
, QCfilter
));
2563 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
2564 p
->kill_without_query
= 1;
2565 if (tem
= Fplist_get (contact
, QCstop
), !NILP (tem
))
2566 pset_command (p
, Qt
);
2569 if (!EQ (p
->command
, Qt
))
2571 FD_SET (fd
, &input_wait_mask
);
2572 FD_SET (fd
, &non_keyboard_wait_mask
);
2575 if (BUFFERP (buffer
))
2577 set_marker_both (p
->mark
, buffer
,
2578 BUF_ZV (XBUFFER (buffer
)),
2579 BUF_ZV_BYTE (XBUFFER (buffer
)));
2582 tem
= Fplist_member (contact
, QCcoding
);
2583 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
2589 val
= XCAR (XCDR (tem
));
2593 else if (!NILP (Vcoding_system_for_read
))
2594 val
= Vcoding_system_for_read
;
2595 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
2596 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
2598 pset_decode_coding_system (p
, val
);
2603 val
= XCAR (XCDR (tem
));
2607 else if (!NILP (Vcoding_system_for_write
))
2608 val
= Vcoding_system_for_write
;
2609 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
2610 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
2612 pset_encode_coding_system (p
, val
);
2614 setup_process_coding_systems (proc
);
2615 pset_decoding_buf (p
, empty_unibyte_string
);
2616 p
->decoding_carryover
= 0;
2617 pset_encoding_buf (p
, empty_unibyte_string
);
2618 p
->inherit_coding_system_flag
2619 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
2621 Fserial_process_configure (nargs
, args
);
2623 specpdl_ptr
= specpdl
+ specpdl_count
;
2629 /* Create a network stream/datagram client/server process. Treated
2630 exactly like a normal process when reading and writing. Primary
2631 differences are in status display and process deletion. A network
2632 connection has no PID; you cannot signal it. All you can do is
2633 stop/continue it and deactivate/close it via delete-process */
2635 DEFUN ("make-network-process", Fmake_network_process
, Smake_network_process
,
2637 doc
: /* Create and return a network server or client process.
2639 In Emacs, network connections are represented by process objects, so
2640 input and output work as for subprocesses and `delete-process' closes
2641 a network connection. However, a network process has no process id,
2642 it cannot be signaled, and the status codes are different from normal
2645 Arguments are specified as keyword/argument pairs. The following
2646 arguments are defined:
2648 :name NAME -- NAME is name for process. It is modified if necessary
2651 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2652 with the process. Process output goes at end of that buffer, unless
2653 you specify an output stream or filter function to handle the output.
2654 BUFFER may be also nil, meaning that this process is not associated
2657 :host HOST -- HOST is name of the host to connect to, or its IP
2658 address. The symbol `local' specifies the local host. If specified
2659 for a server process, it must be a valid name or address for the local
2660 host, and only clients connecting to that address will be accepted.
2662 :service SERVICE -- SERVICE is name of the service desired, or an
2663 integer specifying a port number to connect to. If SERVICE is t,
2664 a random port number is selected for the server. (If Emacs was
2665 compiled with getaddrinfo, a port number can also be specified as a
2666 string, e.g. "80", as well as an integer. This is not portable.)
2668 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2669 stream type connection, `datagram' creates a datagram type connection,
2670 `seqpacket' creates a reliable datagram connection.
2672 :family FAMILY -- FAMILY is the address (and protocol) family for the
2673 service specified by HOST and SERVICE. The default (nil) is to use
2674 whatever address family (IPv4 or IPv6) that is defined for the host
2675 and port number specified by HOST and SERVICE. Other address families
2677 local -- for a local (i.e. UNIX) address specified by SERVICE.
2678 ipv4 -- use IPv4 address family only.
2679 ipv6 -- use IPv6 address family only.
2681 :local ADDRESS -- ADDRESS is the local address used for the connection.
2682 This parameter is ignored when opening a client process. When specified
2683 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2685 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2686 connection. This parameter is ignored when opening a stream server
2687 process. For a datagram server process, it specifies the initial
2688 setting of the remote datagram address. When specified for a client
2689 process, the FAMILY, HOST, and SERVICE args are ignored.
2691 The format of ADDRESS depends on the address family:
2692 - An IPv4 address is represented as an vector of integers [A B C D P]
2693 corresponding to numeric IP address A.B.C.D and port number P.
2694 - A local address is represented as a string with the address in the
2695 local address space.
2696 - An "unsupported family" address is represented by a cons (F . AV)
2697 where F is the family number and AV is a vector containing the socket
2698 address data with one element per address data byte. Do not rely on
2699 this format in portable code, as it may depend on implementation
2700 defined constants, data sizes, and data structure alignment.
2702 :coding CODING -- If CODING is a symbol, it specifies the coding
2703 system used for both reading and writing for this process. If CODING
2704 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2705 ENCODING is used for writing.
2707 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2708 return without waiting for the connection to complete; instead, the
2709 sentinel function will be called with second arg matching "open" (if
2710 successful) or "failed" when the connect completes. Default is to use
2711 a blocking connect (i.e. wait) for stream type connections.
2713 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2714 running when Emacs is exited.
2716 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2717 In the stopped state, a server process does not accept new
2718 connections, and a client process does not handle incoming traffic.
2719 The stopped state is cleared by `continue-process' and set by
2722 :filter FILTER -- Install FILTER as the process filter.
2724 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2725 process filter are multibyte, otherwise they are unibyte.
2726 If this keyword is not specified, the strings are multibyte if
2727 the default value of `enable-multibyte-characters' is non-nil.
2729 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2731 :log LOG -- Install LOG as the server process log function. This
2732 function is called when the server accepts a network connection from a
2733 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2734 is the server process, CLIENT is the new process for the connection,
2735 and MESSAGE is a string.
2737 :plist PLIST -- Install PLIST as the new process' initial plist.
2739 :server QLEN -- if QLEN is non-nil, create a server process for the
2740 specified FAMILY, SERVICE, and connection type (stream or datagram).
2741 If QLEN is an integer, it is used as the max. length of the server's
2742 pending connection queue (also known as the backlog); the default
2743 queue length is 5. Default is to create a client process.
2745 The following network options can be specified for this connection:
2747 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2748 :dontroute BOOL -- Only send to directly connected hosts.
2749 :keepalive BOOL -- Send keep-alive messages on network stream.
2750 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2751 :oobinline BOOL -- Place out-of-band data in receive data stream.
2752 :priority INT -- Set protocol defined priority for sent packets.
2753 :reuseaddr BOOL -- Allow reusing a recently used local address
2754 (this is allowed by default for a server process).
2755 :bindtodevice NAME -- bind to interface NAME. Using this may require
2756 special privileges on some systems.
2758 Consult the relevant system programmer's manual pages for more
2759 information on using these options.
2762 A server process will listen for and accept connections from clients.
2763 When a client connection is accepted, a new network process is created
2764 for the connection with the following parameters:
2766 - The client's process name is constructed by concatenating the server
2767 process' NAME and a client identification string.
2768 - If the FILTER argument is non-nil, the client process will not get a
2769 separate process buffer; otherwise, the client's process buffer is a newly
2770 created buffer named after the server process' BUFFER name or process
2771 NAME concatenated with the client identification string.
2772 - The connection type and the process filter and sentinel parameters are
2773 inherited from the server process' TYPE, FILTER and SENTINEL.
2774 - The client process' contact info is set according to the client's
2775 addressing information (typically an IP address and a port number).
2776 - The client process' plist is initialized from the server's plist.
2778 Notice that the FILTER and SENTINEL args are never used directly by
2779 the server process. Also, the BUFFER argument is not used directly by
2780 the server process, but via the optional :log function, accepted (and
2781 failed) connections may be logged in the server process' buffer.
2783 The original argument list, modified with the actual connection
2784 information, is available via the `process-contact' function.
2786 usage: (make-network-process &rest ARGS) */)
2787 (ptrdiff_t nargs
, Lisp_Object
*args
)
2790 Lisp_Object contact
;
2791 struct Lisp_Process
*p
;
2792 #ifdef HAVE_GETADDRINFO
2793 struct addrinfo ai
, *res
, *lres
;
2794 struct addrinfo hints
;
2795 const char *portstring
;
2797 #else /* HAVE_GETADDRINFO */
2798 struct _emacs_addrinfo
2804 struct sockaddr
*ai_addr
;
2805 struct _emacs_addrinfo
*ai_next
;
2807 #endif /* HAVE_GETADDRINFO */
2808 struct sockaddr_in address_in
;
2809 #ifdef HAVE_LOCAL_SOCKETS
2810 struct sockaddr_un address_un
;
2815 int s
= -1, outch
, inch
;
2816 struct gcpro gcpro1
;
2817 ptrdiff_t count
= SPECPDL_INDEX ();
2819 Lisp_Object QCaddress
; /* one of QClocal or QCremote */
2821 Lisp_Object name
, buffer
, host
, service
, address
;
2822 Lisp_Object filter
, sentinel
;
2823 bool is_non_blocking_client
= 0;
2832 /* Save arguments for process-contact and clone-process. */
2833 contact
= Flist (nargs
, args
);
2837 /* Ensure socket support is loaded if available. */
2838 init_winsock (TRUE
);
2841 /* :type TYPE (nil: stream, datagram */
2842 tem
= Fplist_get (contact
, QCtype
);
2844 socktype
= SOCK_STREAM
;
2845 #ifdef DATAGRAM_SOCKETS
2846 else if (EQ (tem
, Qdatagram
))
2847 socktype
= SOCK_DGRAM
;
2849 #ifdef HAVE_SEQPACKET
2850 else if (EQ (tem
, Qseqpacket
))
2851 socktype
= SOCK_SEQPACKET
;
2854 error ("Unsupported connection type");
2857 tem
= Fplist_get (contact
, QCserver
);
2860 /* Don't support network sockets when non-blocking mode is
2861 not available, since a blocked Emacs is not useful. */
2863 if (TYPE_RANGED_INTEGERP (int, tem
))
2864 backlog
= XINT (tem
);
2867 /* Make QCaddress an alias for :local (server) or :remote (client). */
2868 QCaddress
= is_server
? QClocal
: QCremote
;
2871 if (!is_server
&& socktype
!= SOCK_DGRAM
2872 && (tem
= Fplist_get (contact
, QCnowait
), !NILP (tem
)))
2874 #ifndef NON_BLOCKING_CONNECT
2875 error ("Non-blocking connect not supported");
2877 is_non_blocking_client
= 1;
2881 name
= Fplist_get (contact
, QCname
);
2882 buffer
= Fplist_get (contact
, QCbuffer
);
2883 filter
= Fplist_get (contact
, QCfilter
);
2884 sentinel
= Fplist_get (contact
, QCsentinel
);
2886 CHECK_STRING (name
);
2888 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2889 ai
.ai_socktype
= socktype
;
2894 /* :local ADDRESS or :remote ADDRESS */
2895 address
= Fplist_get (contact
, QCaddress
);
2896 if (!NILP (address
))
2898 host
= service
= Qnil
;
2900 if (!(ai
.ai_addrlen
= get_lisp_to_sockaddr_size (address
, &family
)))
2901 error ("Malformed :address");
2902 ai
.ai_family
= family
;
2903 ai
.ai_addr
= alloca (ai
.ai_addrlen
);
2904 conv_lisp_to_sockaddr (family
, address
, ai
.ai_addr
, ai
.ai_addrlen
);
2908 /* :family FAMILY -- nil (for Inet), local, or integer. */
2909 tem
= Fplist_get (contact
, QCfamily
);
2912 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
2918 #ifdef HAVE_LOCAL_SOCKETS
2919 else if (EQ (tem
, Qlocal
))
2923 else if (EQ (tem
, Qipv6
))
2926 else if (EQ (tem
, Qipv4
))
2928 else if (TYPE_RANGED_INTEGERP (int, tem
))
2929 family
= XINT (tem
);
2931 error ("Unknown address family");
2933 ai
.ai_family
= family
;
2935 /* :service SERVICE -- string, integer (port number), or t (random port). */
2936 service
= Fplist_get (contact
, QCservice
);
2938 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2939 host
= Fplist_get (contact
, QChost
);
2942 if (EQ (host
, Qlocal
))
2943 /* Depending on setup, "localhost" may map to different IPv4 and/or
2944 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
2945 host
= build_string ("127.0.0.1");
2946 CHECK_STRING (host
);
2949 #ifdef HAVE_LOCAL_SOCKETS
2950 if (family
== AF_LOCAL
)
2954 message (":family local ignores the :host \"%s\" property",
2956 contact
= Fplist_put (contact
, QChost
, Qnil
);
2959 CHECK_STRING (service
);
2960 memset (&address_un
, 0, sizeof address_un
);
2961 address_un
.sun_family
= AF_LOCAL
;
2962 if (sizeof address_un
.sun_path
<= SBYTES (service
))
2963 error ("Service name too long");
2964 strcpy (address_un
.sun_path
, SSDATA (service
));
2965 ai
.ai_addr
= (struct sockaddr
*) &address_un
;
2966 ai
.ai_addrlen
= sizeof address_un
;
2971 /* Slow down polling to every ten seconds.
2972 Some kernels have a bug which causes retrying connect to fail
2973 after a connect. Polling can interfere with gethostbyname too. */
2974 #ifdef POLL_FOR_INPUT
2975 if (socktype
!= SOCK_DGRAM
)
2977 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
2978 bind_polling_period (10);
2982 #ifdef HAVE_GETADDRINFO
2983 /* If we have a host, use getaddrinfo to resolve both host and service.
2984 Otherwise, use getservbyname to lookup the service. */
2988 /* SERVICE can either be a string or int.
2989 Convert to a C string for later use by getaddrinfo. */
2990 if (EQ (service
, Qt
))
2992 else if (INTEGERP (service
))
2994 sprintf (portbuf
, "%"pI
"d", XINT (service
));
2995 portstring
= portbuf
;
2999 CHECK_STRING (service
);
3000 portstring
= SSDATA (service
);
3005 memset (&hints
, 0, sizeof (hints
));
3007 hints
.ai_family
= family
;
3008 hints
.ai_socktype
= socktype
;
3009 hints
.ai_protocol
= 0;
3011 #ifdef HAVE_RES_INIT
3015 ret
= getaddrinfo (SSDATA (host
), portstring
, &hints
, &res
);
3017 #ifdef HAVE_GAI_STRERROR
3018 error ("%s/%s %s", SSDATA (host
), portstring
, gai_strerror (ret
));
3020 error ("%s/%s getaddrinfo error %d", SSDATA (host
), portstring
, ret
);
3026 #endif /* HAVE_GETADDRINFO */
3028 /* We end up here if getaddrinfo is not defined, or in case no hostname
3029 has been specified (e.g. for a local server process). */
3031 if (EQ (service
, Qt
))
3033 else if (INTEGERP (service
))
3034 port
= htons ((unsigned short) XINT (service
));
3037 struct servent
*svc_info
;
3038 CHECK_STRING (service
);
3039 svc_info
= getservbyname (SSDATA (service
),
3040 (socktype
== SOCK_DGRAM
? "udp" : "tcp"));
3042 error ("Unknown service: %s", SDATA (service
));
3043 port
= svc_info
->s_port
;
3046 memset (&address_in
, 0, sizeof address_in
);
3047 address_in
.sin_family
= family
;
3048 address_in
.sin_addr
.s_addr
= INADDR_ANY
;
3049 address_in
.sin_port
= port
;
3051 #ifndef HAVE_GETADDRINFO
3054 struct hostent
*host_info_ptr
;
3056 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3057 as it may `hang' Emacs for a very long time. */
3061 #ifdef HAVE_RES_INIT
3065 host_info_ptr
= gethostbyname (SDATA (host
));
3070 memcpy (&address_in
.sin_addr
, host_info_ptr
->h_addr
,
3071 host_info_ptr
->h_length
);
3072 family
= host_info_ptr
->h_addrtype
;
3073 address_in
.sin_family
= family
;
3076 /* Attempt to interpret host as numeric inet address */
3078 unsigned long numeric_addr
;
3079 numeric_addr
= inet_addr (SSDATA (host
));
3080 if (numeric_addr
== -1)
3081 error ("Unknown host \"%s\"", SDATA (host
));
3083 memcpy (&address_in
.sin_addr
, &numeric_addr
,
3084 sizeof (address_in
.sin_addr
));
3088 #endif /* not HAVE_GETADDRINFO */
3090 ai
.ai_family
= family
;
3091 ai
.ai_addr
= (struct sockaddr
*) &address_in
;
3092 ai
.ai_addrlen
= sizeof address_in
;
3096 /* Do this in case we never enter the for-loop below. */
3097 count1
= SPECPDL_INDEX ();
3100 for (lres
= res
; lres
; lres
= lres
->ai_next
)
3109 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
3116 #ifdef DATAGRAM_SOCKETS
3117 if (!is_server
&& socktype
== SOCK_DGRAM
)
3119 #endif /* DATAGRAM_SOCKETS */
3121 #ifdef NON_BLOCKING_CONNECT
3122 if (is_non_blocking_client
)
3124 ret
= fcntl (s
, F_SETFL
, O_NONBLOCK
);
3135 /* Make us close S if quit. */
3136 record_unwind_protect (close_file_unwind
, make_number (s
));
3138 /* Parse network options in the arg list.
3139 We simply ignore anything which isn't a known option (including other keywords).
3140 An error is signaled if setting a known option fails. */
3141 for (optn
= optbits
= 0; optn
< nargs
-1; optn
+= 2)
3142 optbits
|= set_socket_option (s
, args
[optn
], args
[optn
+1]);
3146 /* Configure as a server socket. */
3148 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3149 explicit :reuseaddr key to override this. */
3150 #ifdef HAVE_LOCAL_SOCKETS
3151 if (family
!= AF_LOCAL
)
3153 if (!(optbits
& (1 << OPIX_REUSEADDR
)))
3156 if (setsockopt (s
, SOL_SOCKET
, SO_REUSEADDR
, &optval
, sizeof optval
))
3157 report_file_error ("Cannot set reuse option on server socket", Qnil
);
3160 if (bind (s
, lres
->ai_addr
, lres
->ai_addrlen
))
3161 report_file_error ("Cannot bind server socket", Qnil
);
3163 #ifdef HAVE_GETSOCKNAME
3164 if (EQ (service
, Qt
))
3166 struct sockaddr_in sa1
;
3167 socklen_t len1
= sizeof (sa1
);
3168 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3170 ((struct sockaddr_in
*)(lres
->ai_addr
))->sin_port
= sa1
.sin_port
;
3171 service
= make_number (ntohs (sa1
.sin_port
));
3172 contact
= Fplist_put (contact
, QCservice
, service
);
3177 if (socktype
!= SOCK_DGRAM
&& listen (s
, backlog
))
3178 report_file_error ("Cannot listen on server socket", Qnil
);
3186 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
3189 if (ret
== 0 || xerrno
== EISCONN
)
3191 /* The unwind-protect will be discarded afterwards.
3192 Likewise for immediate_quit. */
3196 #ifdef NON_BLOCKING_CONNECT
3198 if (is_non_blocking_client
&& xerrno
== EINPROGRESS
)
3202 if (is_non_blocking_client
&& xerrno
== EWOULDBLOCK
)
3209 if (xerrno
== EINTR
)
3211 /* Unlike most other syscalls connect() cannot be called
3212 again. (That would return EALREADY.) The proper way to
3213 wait for completion is pselect(). */
3221 sc
= pselect (s
+ 1, NULL
, &fdset
, NULL
, NULL
, NULL
);
3227 report_file_error ("select failed", Qnil
);
3231 len
= sizeof xerrno
;
3232 eassert (FD_ISSET (s
, &fdset
));
3233 if (getsockopt (s
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &len
) == -1)
3234 report_file_error ("getsockopt failed", Qnil
);
3236 errno
= xerrno
, report_file_error ("error during connect", Qnil
);
3240 #endif /* !WINDOWSNT */
3244 /* Discard the unwind protect closing S. */
3245 specpdl_ptr
= specpdl
+ count1
;
3250 if (xerrno
== EINTR
)
3257 #ifdef DATAGRAM_SOCKETS
3258 if (socktype
== SOCK_DGRAM
)
3260 if (datagram_address
[s
].sa
)
3262 datagram_address
[s
].sa
= xmalloc (lres
->ai_addrlen
);
3263 datagram_address
[s
].len
= lres
->ai_addrlen
;
3267 memset (datagram_address
[s
].sa
, 0, lres
->ai_addrlen
);
3268 if (remote
= Fplist_get (contact
, QCremote
), !NILP (remote
))
3271 rlen
= get_lisp_to_sockaddr_size (remote
, &rfamily
);
3272 if (rlen
!= 0 && rfamily
== lres
->ai_family
3273 && rlen
== lres
->ai_addrlen
)
3274 conv_lisp_to_sockaddr (rfamily
, remote
,
3275 datagram_address
[s
].sa
, rlen
);
3279 memcpy (datagram_address
[s
].sa
, lres
->ai_addr
, lres
->ai_addrlen
);
3282 contact
= Fplist_put (contact
, QCaddress
,
3283 conv_sockaddr_to_lisp (lres
->ai_addr
, lres
->ai_addrlen
));
3284 #ifdef HAVE_GETSOCKNAME
3287 struct sockaddr_in sa1
;
3288 socklen_t len1
= sizeof (sa1
);
3289 if (getsockname (s
, (struct sockaddr
*)&sa1
, &len1
) == 0)
3290 contact
= Fplist_put (contact
, QClocal
,
3291 conv_sockaddr_to_lisp ((struct sockaddr
*)&sa1
, len1
));
3298 #ifdef HAVE_GETADDRINFO
3307 /* Discard the unwind protect for closing S, if any. */
3308 specpdl_ptr
= specpdl
+ count1
;
3310 /* Unwind bind_polling_period and request_sigio. */
3311 unbind_to (count
, Qnil
);
3315 /* If non-blocking got this far - and failed - assume non-blocking is
3316 not supported after all. This is probably a wrong assumption, but
3317 the normal blocking calls to open-network-stream handles this error
3319 if (is_non_blocking_client
)
3324 report_file_error ("make server process failed", contact
);
3326 report_file_error ("make client process failed", contact
);
3333 buffer
= Fget_buffer_create (buffer
);
3334 proc
= make_process (name
);
3336 chan_process
[inch
] = proc
;
3338 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
3340 p
= XPROCESS (proc
);
3342 pset_childp (p
, contact
);
3343 pset_plist (p
, Fcopy_sequence (Fplist_get (contact
, QCplist
)));
3344 pset_type (p
, Qnetwork
);
3346 pset_buffer (p
, buffer
);
3347 pset_sentinel (p
, sentinel
);
3348 pset_filter (p
, filter
);
3349 pset_log (p
, Fplist_get (contact
, QClog
));
3350 if (tem
= Fplist_get (contact
, QCnoquery
), !NILP (tem
))
3351 p
->kill_without_query
= 1;
3352 if ((tem
= Fplist_get (contact
, QCstop
), !NILP (tem
)))
3353 pset_command (p
, Qt
);
3357 if (is_server
&& socktype
!= SOCK_DGRAM
)
3358 pset_status (p
, Qlisten
);
3360 /* Make the process marker point into the process buffer (if any). */
3361 if (BUFFERP (buffer
))
3362 set_marker_both (p
->mark
, buffer
,
3363 BUF_ZV (XBUFFER (buffer
)),
3364 BUF_ZV_BYTE (XBUFFER (buffer
)));
3366 #ifdef NON_BLOCKING_CONNECT
3367 if (is_non_blocking_client
)
3369 /* We may get here if connect did succeed immediately. However,
3370 in that case, we still need to signal this like a non-blocking
3372 pset_status (p
, Qconnect
);
3373 if (!FD_ISSET (inch
, &connect_wait_mask
))
3375 FD_SET (inch
, &connect_wait_mask
);
3376 FD_SET (inch
, &write_mask
);
3377 num_pending_connects
++;
3382 /* A server may have a client filter setting of Qt, but it must
3383 still listen for incoming connects unless it is stopped. */
3384 if ((!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
3385 || (EQ (p
->status
, Qlisten
) && NILP (p
->command
)))
3387 FD_SET (inch
, &input_wait_mask
);
3388 FD_SET (inch
, &non_keyboard_wait_mask
);
3391 if (inch
> max_process_desc
)
3392 max_process_desc
= inch
;
3394 tem
= Fplist_member (contact
, QCcoding
);
3395 if (!NILP (tem
) && (!CONSP (tem
) || !CONSP (XCDR (tem
))))
3396 tem
= Qnil
; /* No error message (too late!). */
3399 /* Setup coding systems for communicating with the network stream. */
3400 struct gcpro gcpro1
;
3401 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3402 Lisp_Object coding_systems
= Qt
;
3403 Lisp_Object fargs
[5], val
;
3407 val
= XCAR (XCDR (tem
));
3411 else if (!NILP (Vcoding_system_for_read
))
3412 val
= Vcoding_system_for_read
;
3413 else if ((!NILP (buffer
) && NILP (BVAR (XBUFFER (buffer
), enable_multibyte_characters
)))
3414 || (NILP (buffer
) && NILP (BVAR (&buffer_defaults
, enable_multibyte_characters
))))
3415 /* We dare not decode end-of-line format by setting VAL to
3416 Qraw_text, because the existing Emacs Lisp libraries
3417 assume that they receive bare code including a sequence of
3422 if (NILP (host
) || NILP (service
))
3423 coding_systems
= Qnil
;
3426 fargs
[0] = Qopen_network_stream
, fargs
[1] = name
,
3427 fargs
[2] = buffer
, fargs
[3] = host
, fargs
[4] = service
;
3429 coding_systems
= Ffind_operation_coding_system (5, fargs
);
3432 if (CONSP (coding_systems
))
3433 val
= XCAR (coding_systems
);
3434 else if (CONSP (Vdefault_process_coding_system
))
3435 val
= XCAR (Vdefault_process_coding_system
);
3439 pset_decode_coding_system (p
, val
);
3443 val
= XCAR (XCDR (tem
));
3447 else if (!NILP (Vcoding_system_for_write
))
3448 val
= Vcoding_system_for_write
;
3449 else if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
3453 if (EQ (coding_systems
, Qt
))
3455 if (NILP (host
) || NILP (service
))
3456 coding_systems
= Qnil
;
3459 fargs
[0] = Qopen_network_stream
, fargs
[1] = name
,
3460 fargs
[2] = buffer
, fargs
[3] = host
, fargs
[4] = service
;
3462 coding_systems
= Ffind_operation_coding_system (5, fargs
);
3466 if (CONSP (coding_systems
))
3467 val
= XCDR (coding_systems
);
3468 else if (CONSP (Vdefault_process_coding_system
))
3469 val
= XCDR (Vdefault_process_coding_system
);
3473 pset_encode_coding_system (p
, val
);
3475 setup_process_coding_systems (proc
);
3477 pset_decoding_buf (p
, empty_unibyte_string
);
3478 p
->decoding_carryover
= 0;
3479 pset_encoding_buf (p
, empty_unibyte_string
);
3481 p
->inherit_coding_system_flag
3482 = !(!NILP (tem
) || NILP (buffer
) || !inherit_process_coding_system
);
3489 #if defined (HAVE_NET_IF_H)
3492 DEFUN ("network-interface-list", Fnetwork_interface_list
, Snetwork_interface_list
, 0, 0, 0,
3493 doc
: /* Return an alist of all network interfaces and their network address.
3494 Each element is a cons, the car of which is a string containing the
3495 interface name, and the cdr is the network address in internal
3496 format; see the description of ADDRESS in `make-network-process'. */)
3499 struct ifconf ifconf
;
3500 struct ifreq
*ifreq
;
3502 ptrdiff_t buf_size
= 512;
3506 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3512 buf
= xpalloc (buf
, &buf_size
, 1, INT_MAX
, 1);
3513 ifconf
.ifc_buf
= buf
;
3514 ifconf
.ifc_len
= buf_size
;
3515 if (ioctl (s
, SIOCGIFCONF
, &ifconf
))
3522 while (ifconf
.ifc_len
== buf_size
);
3527 ifreq
= ifconf
.ifc_req
;
3528 while ((char *) ifreq
< (char *) ifconf
.ifc_req
+ ifconf
.ifc_len
)
3530 struct ifreq
*ifq
= ifreq
;
3531 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
3532 #define SIZEOF_IFREQ(sif) \
3533 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
3534 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
3536 int len
= SIZEOF_IFREQ (ifq
);
3538 int len
= sizeof (*ifreq
);
3540 char namebuf
[sizeof (ifq
->ifr_name
) + 1];
3541 ifreq
= (struct ifreq
*) ((char *) ifreq
+ len
);
3543 if (ifq
->ifr_addr
.sa_family
!= AF_INET
)
3546 memcpy (namebuf
, ifq
->ifr_name
, sizeof (ifq
->ifr_name
));
3547 namebuf
[sizeof (ifq
->ifr_name
)] = 0;
3548 res
= Fcons (Fcons (build_string (namebuf
),
3549 conv_sockaddr_to_lisp (&ifq
->ifr_addr
,
3550 sizeof (struct sockaddr
))),
3557 #endif /* SIOCGIFCONF */
3559 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
3563 const char *flag_sym
;
3566 static const struct ifflag_def ifflag_table
[] = {
3570 #ifdef IFF_BROADCAST
3571 { IFF_BROADCAST
, "broadcast" },
3574 { IFF_DEBUG
, "debug" },
3577 { IFF_LOOPBACK
, "loopback" },
3579 #ifdef IFF_POINTOPOINT
3580 { IFF_POINTOPOINT
, "pointopoint" },
3583 { IFF_RUNNING
, "running" },
3586 { IFF_NOARP
, "noarp" },
3589 { IFF_PROMISC
, "promisc" },
3591 #ifdef IFF_NOTRAILERS
3592 #ifdef NS_IMPL_COCOA
3593 /* Really means smart, notrailers is obsolete */
3594 { IFF_NOTRAILERS
, "smart" },
3596 { IFF_NOTRAILERS
, "notrailers" },
3600 { IFF_ALLMULTI
, "allmulti" },
3603 { IFF_MASTER
, "master" },
3606 { IFF_SLAVE
, "slave" },
3608 #ifdef IFF_MULTICAST
3609 { IFF_MULTICAST
, "multicast" },
3612 { IFF_PORTSEL
, "portsel" },
3614 #ifdef IFF_AUTOMEDIA
3615 { IFF_AUTOMEDIA
, "automedia" },
3618 { IFF_DYNAMIC
, "dynamic" },
3621 { IFF_OACTIVE
, "oactive" }, /* OpenBSD: transmission in progress */
3624 { IFF_SIMPLEX
, "simplex" }, /* OpenBSD: can't hear own transmissions */
3627 { IFF_LINK0
, "link0" }, /* OpenBSD: per link layer defined bit */
3630 { IFF_LINK1
, "link1" }, /* OpenBSD: per link layer defined bit */
3633 { IFF_LINK2
, "link2" }, /* OpenBSD: per link layer defined bit */
3638 DEFUN ("network-interface-info", Fnetwork_interface_info
, Snetwork_interface_info
, 1, 1, 0,
3639 doc
: /* Return information about network interface named IFNAME.
3640 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3641 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3642 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
3643 FLAGS is the current flags of the interface. */)
3644 (Lisp_Object ifname
)
3647 Lisp_Object res
= Qnil
;
3651 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
3652 && defined HAVE_GETIFADDRS && defined LLADDR)
3653 struct ifaddrs
*ifap
;
3656 CHECK_STRING (ifname
);
3658 if (sizeof rq
.ifr_name
<= SBYTES (ifname
))
3659 error ("interface name too long");
3660 strcpy (rq
.ifr_name
, SSDATA (ifname
));
3662 s
= socket (AF_INET
, SOCK_STREAM
, 0);
3667 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
3668 if (ioctl (s
, SIOCGIFFLAGS
, &rq
) == 0)
3670 int flags
= rq
.ifr_flags
;
3671 const struct ifflag_def
*fp
;
3674 /* If flags is smaller than int (i.e. short) it may have the high bit set
3675 due to IFF_MULTICAST. In that case, sign extending it into
3677 if (flags
< 0 && sizeof (rq
.ifr_flags
) < sizeof (flags
))
3678 flags
= (unsigned short) rq
.ifr_flags
;
3681 for (fp
= ifflag_table
; flags
!= 0 && fp
->flag_sym
; fp
++)
3683 if (flags
& fp
->flag_bit
)
3685 elt
= Fcons (intern (fp
->flag_sym
), elt
);
3686 flags
-= fp
->flag_bit
;
3689 for (fnum
= 0; flags
&& fnum
< 32; flags
>>= 1, fnum
++)
3693 elt
= Fcons (make_number (fnum
), elt
);
3698 res
= Fcons (elt
, res
);
3701 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
3702 if (ioctl (s
, SIOCGIFHWADDR
, &rq
) == 0)
3704 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3705 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3709 for (n
= 0; n
< 6; n
++)
3710 p
->contents
[n
] = make_number (((unsigned char *)&rq
.ifr_hwaddr
.sa_data
[0])[n
]);
3711 elt
= Fcons (make_number (rq
.ifr_hwaddr
.sa_family
), hwaddr
);
3713 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
3714 if (getifaddrs (&ifap
) != -1)
3716 Lisp_Object hwaddr
= Fmake_vector (make_number (6), Qnil
);
3717 register struct Lisp_Vector
*p
= XVECTOR (hwaddr
);
3720 for (it
= ifap
; it
!= NULL
; it
= it
->ifa_next
)
3722 struct sockaddr_dl
*sdl
= (struct sockaddr_dl
*) it
->ifa_addr
;
3723 unsigned char linkaddr
[6];
3726 if (it
->ifa_addr
->sa_family
!= AF_LINK
3727 || strcmp (it
->ifa_name
, SSDATA (ifname
)) != 0
3728 || sdl
->sdl_alen
!= 6)
3731 memcpy (linkaddr
, LLADDR (sdl
), sdl
->sdl_alen
);
3732 for (n
= 0; n
< 6; n
++)
3733 p
->contents
[n
] = make_number (linkaddr
[n
]);
3735 elt
= Fcons (make_number (it
->ifa_addr
->sa_family
), hwaddr
);
3739 #ifdef HAVE_FREEIFADDRS
3743 #endif /* HAVE_GETIFADDRS && LLADDR */
3745 res
= Fcons (elt
, res
);
3748 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
3749 if (ioctl (s
, SIOCGIFNETMASK
, &rq
) == 0)
3752 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3753 elt
= conv_sockaddr_to_lisp (&rq
.ifr_netmask
, sizeof (rq
.ifr_netmask
));
3755 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3759 res
= Fcons (elt
, res
);
3762 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3763 if (ioctl (s
, SIOCGIFBRDADDR
, &rq
) == 0)
3766 elt
= conv_sockaddr_to_lisp (&rq
.ifr_broadaddr
, sizeof (rq
.ifr_broadaddr
));
3769 res
= Fcons (elt
, res
);
3772 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
3773 if (ioctl (s
, SIOCGIFADDR
, &rq
) == 0)
3776 elt
= conv_sockaddr_to_lisp (&rq
.ifr_addr
, sizeof (rq
.ifr_addr
));
3779 res
= Fcons (elt
, res
);
3783 return any
? res
: Qnil
;
3786 #endif /* defined (HAVE_NET_IF_H) */
3788 /* Turn off input and output for process PROC. */
3791 deactivate_process (Lisp_Object proc
)
3793 register int inchannel
, outchannel
;
3794 register struct Lisp_Process
*p
= XPROCESS (proc
);
3797 /* Delete GnuTLS structures in PROC, if any. */
3798 emacs_gnutls_deinit (proc
);
3799 #endif /* HAVE_GNUTLS */
3801 inchannel
= p
->infd
;
3802 outchannel
= p
->outfd
;
3804 #ifdef ADAPTIVE_READ_BUFFERING
3805 if (p
->read_output_delay
> 0)
3807 if (--process_output_delay_count
< 0)
3808 process_output_delay_count
= 0;
3809 p
->read_output_delay
= 0;
3810 p
->read_output_skip
= 0;
3816 /* Beware SIGCHLD hereabouts. */
3817 flush_pending_output (inchannel
);
3818 emacs_close (inchannel
);
3819 if (outchannel
>= 0 && outchannel
!= inchannel
)
3820 emacs_close (outchannel
);
3824 #ifdef DATAGRAM_SOCKETS
3825 if (DATAGRAM_CHAN_P (inchannel
))
3827 xfree (datagram_address
[inchannel
].sa
);
3828 datagram_address
[inchannel
].sa
= 0;
3829 datagram_address
[inchannel
].len
= 0;
3832 chan_process
[inchannel
] = Qnil
;
3833 FD_CLR (inchannel
, &input_wait_mask
);
3834 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
3835 #ifdef NON_BLOCKING_CONNECT
3836 if (FD_ISSET (inchannel
, &connect_wait_mask
))
3838 FD_CLR (inchannel
, &connect_wait_mask
);
3839 FD_CLR (inchannel
, &write_mask
);
3840 if (--num_pending_connects
< 0)
3844 if (inchannel
== max_process_desc
)
3847 /* We just closed the highest-numbered process input descriptor,
3848 so recompute the highest-numbered one now. */
3849 max_process_desc
= 0;
3850 for (i
= 0; i
< MAXDESC
; i
++)
3851 if (!NILP (chan_process
[i
]))
3852 max_process_desc
= i
;
3858 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
3860 doc
: /* Allow any pending output from subprocesses to be read by Emacs.
3861 It is read into the process' buffers or given to their filter functions.
3862 Non-nil arg PROCESS means do not return until some output has been received
3865 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
3866 and milliseconds to wait; return after that much time whether or not
3867 there is any subprocess output. If SECONDS is a floating point number,
3868 it specifies a fractional number of seconds to wait.
3869 The MILLISEC argument is obsolete and should be avoided.
3871 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3872 from PROCESS, suspending reading output from other processes.
3873 If JUST-THIS-ONE is an integer, don't run any timers either.
3874 Return non-nil if we received any output before the timeout expired. */)
3875 (register Lisp_Object process
, Lisp_Object seconds
, Lisp_Object millisec
, Lisp_Object just_this_one
)
3880 if (! NILP (process
))
3881 CHECK_PROCESS (process
);
3883 just_this_one
= Qnil
;
3885 if (!NILP (millisec
))
3886 { /* Obsolete calling convention using integers rather than floats. */
3887 CHECK_NUMBER (millisec
);
3889 seconds
= make_float (XINT (millisec
) / 1000.0);
3892 CHECK_NUMBER (seconds
);
3893 seconds
= make_float (XINT (millisec
) / 1000.0 + XINT (seconds
));
3900 if (!NILP (seconds
))
3902 if (INTEGERP (seconds
))
3904 if (XINT (seconds
) > 0)
3906 secs
= XINT (seconds
);
3910 else if (FLOATP (seconds
))
3912 if (XFLOAT_DATA (seconds
) > 0)
3914 EMACS_TIME t
= EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (seconds
));
3915 secs
= min (EMACS_SECS (t
), WAIT_READING_MAX
);
3916 nsecs
= EMACS_NSECS (t
);
3920 wrong_type_argument (Qnumberp
, seconds
);
3922 else if (! NILP (process
))
3926 (wait_reading_process_output (secs
, nsecs
, 0, 0,
3928 !NILP (process
) ? XPROCESS (process
) : NULL
,
3929 NILP (just_this_one
) ? 0 :
3930 !INTEGERP (just_this_one
) ? 1 : -1)
3934 /* Accept a connection for server process SERVER on CHANNEL. */
3936 static EMACS_INT connect_counter
= 0;
3939 server_accept_connection (Lisp_Object server
, int channel
)
3941 Lisp_Object proc
, caller
, name
, buffer
;
3942 Lisp_Object contact
, host
, service
;
3943 struct Lisp_Process
*ps
= XPROCESS (server
);
3944 struct Lisp_Process
*p
;
3948 struct sockaddr_in in
;
3950 struct sockaddr_in6 in6
;
3952 #ifdef HAVE_LOCAL_SOCKETS
3953 struct sockaddr_un un
;
3956 socklen_t len
= sizeof saddr
;
3958 s
= accept (channel
, &saddr
.sa
, &len
);
3967 if (code
== EWOULDBLOCK
)
3971 if (!NILP (ps
->log
))
3972 call3 (ps
->log
, server
, Qnil
,
3973 concat3 (build_string ("accept failed with code"),
3974 Fnumber_to_string (make_number (code
)),
3975 build_string ("\n")));
3981 /* Setup a new process to handle the connection. */
3983 /* Generate a unique identification of the caller, and build contact
3984 information for this process. */
3987 switch (saddr
.sa
.sa_family
)
3991 Lisp_Object args
[5];
3992 unsigned char *ip
= (unsigned char *)&saddr
.in
.sin_addr
.s_addr
;
3993 args
[0] = build_string ("%d.%d.%d.%d");
3994 args
[1] = make_number (*ip
++);
3995 args
[2] = make_number (*ip
++);
3996 args
[3] = make_number (*ip
++);
3997 args
[4] = make_number (*ip
++);
3998 host
= Fformat (5, args
);
3999 service
= make_number (ntohs (saddr
.in
.sin_port
));
4001 args
[0] = build_string (" <%s:%d>");
4004 caller
= Fformat (3, args
);
4011 Lisp_Object args
[9];
4012 uint16_t *ip6
= (uint16_t *)&saddr
.in6
.sin6_addr
;
4014 args
[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4015 for (i
= 0; i
< 8; i
++)
4016 args
[i
+1] = make_number (ntohs (ip6
[i
]));
4017 host
= Fformat (9, args
);
4018 service
= make_number (ntohs (saddr
.in
.sin_port
));
4020 args
[0] = build_string (" <[%s]:%d>");
4023 caller
= Fformat (3, args
);
4028 #ifdef HAVE_LOCAL_SOCKETS
4032 caller
= Fnumber_to_string (make_number (connect_counter
));
4033 caller
= concat3 (build_string (" <"), caller
, build_string (">"));
4037 /* Create a new buffer name for this process if it doesn't have a
4038 filter. The new buffer name is based on the buffer name or
4039 process name of the server process concatenated with the caller
4042 if (!NILP (ps
->filter
) && !EQ (ps
->filter
, Qt
))
4046 buffer
= ps
->buffer
;
4048 buffer
= Fbuffer_name (buffer
);
4053 buffer
= concat2 (buffer
, caller
);
4054 buffer
= Fget_buffer_create (buffer
);
4058 /* Generate a unique name for the new server process. Combine the
4059 server process name with the caller identification. */
4061 name
= concat2 (ps
->name
, caller
);
4062 proc
= make_process (name
);
4064 chan_process
[s
] = proc
;
4066 fcntl (s
, F_SETFL
, O_NONBLOCK
);
4068 p
= XPROCESS (proc
);
4070 /* Build new contact information for this setup. */
4071 contact
= Fcopy_sequence (ps
->childp
);
4072 contact
= Fplist_put (contact
, QCserver
, Qnil
);
4073 contact
= Fplist_put (contact
, QChost
, host
);
4074 if (!NILP (service
))
4075 contact
= Fplist_put (contact
, QCservice
, service
);
4076 contact
= Fplist_put (contact
, QCremote
,
4077 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4078 #ifdef HAVE_GETSOCKNAME
4080 if (getsockname (s
, &saddr
.sa
, &len
) == 0)
4081 contact
= Fplist_put (contact
, QClocal
,
4082 conv_sockaddr_to_lisp (&saddr
.sa
, len
));
4085 pset_childp (p
, contact
);
4086 pset_plist (p
, Fcopy_sequence (ps
->plist
));
4087 pset_type (p
, Qnetwork
);
4089 pset_buffer (p
, buffer
);
4090 pset_sentinel (p
, ps
->sentinel
);
4091 pset_filter (p
, ps
->filter
);
4092 pset_command (p
, Qnil
);
4096 pset_status (p
, Qrun
);
4098 /* Client processes for accepted connections are not stopped initially. */
4099 if (!EQ (p
->filter
, Qt
))
4101 FD_SET (s
, &input_wait_mask
);
4102 FD_SET (s
, &non_keyboard_wait_mask
);
4105 if (s
> max_process_desc
)
4106 max_process_desc
= s
;
4108 /* Setup coding system for new process based on server process.
4109 This seems to be the proper thing to do, as the coding system
4110 of the new process should reflect the settings at the time the
4111 server socket was opened; not the current settings. */
4113 pset_decode_coding_system (p
, ps
->decode_coding_system
);
4114 pset_encode_coding_system (p
, ps
->encode_coding_system
);
4115 setup_process_coding_systems (proc
);
4117 pset_decoding_buf (p
, empty_unibyte_string
);
4118 p
->decoding_carryover
= 0;
4119 pset_encoding_buf (p
, empty_unibyte_string
);
4121 p
->inherit_coding_system_flag
4122 = (NILP (buffer
) ? 0 : ps
->inherit_coding_system_flag
);
4124 if (!NILP (ps
->log
))
4125 call3 (ps
->log
, server
, proc
,
4126 concat3 (build_string ("accept from "),
4127 (STRINGP (host
) ? host
: build_string ("-")),
4128 build_string ("\n")));
4130 if (!NILP (p
->sentinel
))
4131 exec_sentinel (proc
,
4132 concat3 (build_string ("open from "),
4133 (STRINGP (host
) ? host
: build_string ("-")),
4134 build_string ("\n")));
4137 /* This variable is different from waiting_for_input in keyboard.c.
4138 It is used to communicate to a lisp process-filter/sentinel (via the
4139 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4140 for user-input when that process-filter was called.
4141 waiting_for_input cannot be used as that is by definition 0 when
4142 lisp code is being evalled.
4143 This is also used in record_asynch_buffer_change.
4144 For that purpose, this must be 0
4145 when not inside wait_reading_process_output. */
4146 static int waiting_for_user_input_p
;
4149 wait_reading_process_output_unwind (Lisp_Object data
)
4151 waiting_for_user_input_p
= XINT (data
);
4155 /* This is here so breakpoints can be put on it. */
4157 wait_reading_process_output_1 (void)
4161 /* Read and dispose of subprocess output while waiting for timeout to
4162 elapse and/or keyboard input to be available.
4166 If negative, gobble data immediately available but don't wait for any.
4169 an additional duration to wait, measured in nanoseconds
4170 If TIME_LIMIT is zero, then:
4171 If NSECS == 0, there is no limit.
4172 If NSECS > 0, the timeout consists of NSECS only.
4173 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4176 0 to ignore keyboard input, or
4177 1 to return when input is available, or
4178 -1 meaning caller will actually read the input, so don't throw to
4179 the quit handler, or
4181 DO_DISPLAY means redisplay should be done to show subprocess
4182 output that arrives.
4184 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4185 (and gobble terminal input into the buffer if any arrives).
4187 If WAIT_PROC is specified, wait until something arrives from that
4188 process. The return value is true if we read some input from
4191 If JUST_WAIT_PROC is nonzero, handle only output from WAIT_PROC
4192 (suspending output from other processes). A negative value
4193 means don't run any timers either.
4195 If WAIT_PROC is specified, then the function returns true if we
4196 received input from that process before the timeout elapsed.
4197 Otherwise, return true if we received input from any process. */
4200 wait_reading_process_output (intmax_t time_limit
, int nsecs
, int read_kbd
,
4202 Lisp_Object wait_for_cell
,
4203 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
4206 SELECT_TYPE Available
;
4207 SELECT_TYPE Writeok
;
4213 EMACS_TIME timeout
, end_time
;
4214 int wait_channel
= -1;
4215 bool got_some_input
= 0;
4216 ptrdiff_t count
= SPECPDL_INDEX ();
4218 FD_ZERO (&Available
);
4221 if (time_limit
== 0 && nsecs
== 0 && wait_proc
&& !NILP (Vinhibit_quit
)
4222 && !(CONSP (wait_proc
->status
)
4223 && EQ (XCAR (wait_proc
->status
), Qexit
)))
4224 message1 ("Blocking call to accept-process-output with quit inhibited!!");
4226 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4227 if (wait_proc
!= NULL
)
4228 wait_channel
= wait_proc
->infd
;
4230 record_unwind_protect (wait_reading_process_output_unwind
,
4231 make_number (waiting_for_user_input_p
));
4232 waiting_for_user_input_p
= read_kbd
;
4239 else if (TYPE_MAXIMUM (time_t) < time_limit
)
4240 time_limit
= TYPE_MAXIMUM (time_t);
4242 /* Since we may need to wait several times,
4243 compute the absolute time to return at. */
4244 if (time_limit
|| nsecs
> 0)
4246 timeout
= make_emacs_time (time_limit
, nsecs
);
4247 end_time
= add_emacs_time (current_emacs_time (), timeout
);
4252 bool timeout_reduced_for_timers
= 0;
4254 /* If calling from keyboard input, do not quit
4255 since we want to return C-g as an input character.
4256 Otherwise, do pending quit if requested. */
4259 else if (pending_signals
)
4260 process_pending_signals ();
4262 /* Exit now if the cell we're waiting for became non-nil. */
4263 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4266 /* Compute time from now till when time limit is up */
4267 /* Exit if already run out */
4270 /* A negative timeout means
4271 gobble output available now
4272 but don't wait at all. */
4274 timeout
= make_emacs_time (0, 0);
4276 else if (time_limit
|| nsecs
> 0)
4278 EMACS_TIME now
= current_emacs_time ();
4279 if (EMACS_TIME_LE (end_time
, now
))
4281 timeout
= sub_emacs_time (end_time
, now
);
4285 timeout
= make_emacs_time (100000, 0);
4288 /* Normally we run timers here.
4289 But not if wait_for_cell; in those cases,
4290 the wait is supposed to be short,
4291 and those callers cannot handle running arbitrary Lisp code here. */
4292 if (NILP (wait_for_cell
)
4293 && just_wait_proc
>= 0)
4295 EMACS_TIME timer_delay
;
4299 unsigned old_timers_run
= timers_run
;
4300 struct buffer
*old_buffer
= current_buffer
;
4301 Lisp_Object old_window
= selected_window
;
4303 timer_delay
= timer_check ();
4305 /* If a timer has run, this might have changed buffers
4306 an alike. Make read_key_sequence aware of that. */
4307 if (timers_run
!= old_timers_run
4308 && (old_buffer
!= current_buffer
4309 || !EQ (old_window
, selected_window
))
4310 && waiting_for_user_input_p
== -1)
4311 record_asynch_buffer_change ();
4313 if (timers_run
!= old_timers_run
&& do_display
)
4314 /* We must retry, since a timer may have requeued itself
4315 and that could alter the time_delay. */
4316 redisplay_preserve_echo_area (9);
4320 while (!detect_input_pending ());
4322 /* If there is unread keyboard input, also return. */
4324 && requeued_events_pending_p ())
4327 /* A negative timeout means do not wait at all. */
4330 if (EMACS_TIME_VALID_P (timer_delay
))
4332 if (EMACS_TIME_LT (timer_delay
, timeout
))
4334 timeout
= timer_delay
;
4335 timeout_reduced_for_timers
= 1;
4340 /* This is so a breakpoint can be put here. */
4341 wait_reading_process_output_1 ();
4346 /* Cause C-g and alarm signals to take immediate action,
4347 and cause input available signals to zero out timeout.
4349 It is important that we do this before checking for process
4350 activity. If we get a SIGCHLD after the explicit checks for
4351 process activity, timeout is the only way we will know. */
4353 set_waiting_for_input (&timeout
);
4355 /* If status of something has changed, and no input is
4356 available, notify the user of the change right away. After
4357 this explicit check, we'll let the SIGCHLD handler zap
4358 timeout to get our attention. */
4359 if (update_tick
!= process_tick
)
4364 if (kbd_on_hold_p ())
4367 Atemp
= input_wait_mask
;
4370 timeout
= make_emacs_time (0, 0);
4371 if ((pselect (max (max_process_desc
, max_input_desc
) + 1,
4373 #ifdef NON_BLOCKING_CONNECT
4374 (num_pending_connects
> 0 ? &Ctemp
: NULL
),
4378 NULL
, &timeout
, NULL
)
4381 /* It's okay for us to do this and then continue with
4382 the loop, since timeout has already been zeroed out. */
4383 clear_waiting_for_input ();
4384 status_notify (NULL
);
4385 if (do_display
) redisplay_preserve_echo_area (13);
4389 /* Don't wait for output from a non-running process. Just
4390 read whatever data has already been received. */
4391 if (wait_proc
&& wait_proc
->raw_status_new
)
4392 update_status (wait_proc
);
4394 && ! EQ (wait_proc
->status
, Qrun
)
4395 && ! EQ (wait_proc
->status
, Qconnect
))
4397 int nread
, total_nread
= 0;
4399 clear_waiting_for_input ();
4400 XSETPROCESS (proc
, wait_proc
);
4402 /* Read data from the process, until we exhaust it. */
4403 while (wait_proc
->infd
>= 0)
4405 nread
= read_process_output (proc
, wait_proc
->infd
);
4412 total_nread
+= nread
;
4415 else if (nread
== -1 && (errno
== EIO
|| errno
== EAGAIN
))
4418 else if (nread
== -1 && EWOULDBLOCK
== errno
)
4422 if (total_nread
> 0 && do_display
)
4423 redisplay_preserve_echo_area (10);
4428 /* Wait till there is something to do */
4430 if (wait_proc
&& just_wait_proc
)
4432 if (wait_proc
->infd
< 0) /* Terminated */
4434 FD_SET (wait_proc
->infd
, &Available
);
4438 else if (!NILP (wait_for_cell
))
4440 Available
= non_process_wait_mask
;
4447 Available
= non_keyboard_wait_mask
;
4449 Available
= input_wait_mask
;
4450 Writeok
= write_mask
;
4451 #ifdef SELECT_CANT_DO_WRITE_MASK
4456 check_delay
= wait_channel
>= 0 ? 0 : process_output_delay_count
;
4459 /* If frame size has changed or the window is newly mapped,
4460 redisplay now, before we start to wait. There is a race
4461 condition here; if a SIGIO arrives between now and the select
4462 and indicates that a frame is trashed, the select may block
4463 displaying a trashed screen. */
4464 if (frame_garbaged
&& do_display
)
4466 clear_waiting_for_input ();
4467 redisplay_preserve_echo_area (11);
4469 set_waiting_for_input (&timeout
);
4472 /* Skip the `select' call if input is available and we're
4473 waiting for keyboard input or a cell change (which can be
4474 triggered by processing X events). In the latter case, set
4475 nfds to 1 to avoid breaking the loop. */
4477 if ((read_kbd
|| !NILP (wait_for_cell
))
4478 && detect_input_pending ())
4480 nfds
= read_kbd
? 0 : 1;
4487 #ifdef ADAPTIVE_READ_BUFFERING
4488 /* Set the timeout for adaptive read buffering if any
4489 process has non-zero read_output_skip and non-zero
4490 read_output_delay, and we are not reading output for a
4491 specific wait_channel. It is not executed if
4492 Vprocess_adaptive_read_buffering is nil. */
4493 if (process_output_skip
&& check_delay
> 0)
4495 int nsecs
= EMACS_NSECS (timeout
);
4496 if (EMACS_SECS (timeout
) > 0 || nsecs
> READ_OUTPUT_DELAY_MAX
)
4497 nsecs
= READ_OUTPUT_DELAY_MAX
;
4498 for (channel
= 0; check_delay
> 0 && channel
<= max_process_desc
; channel
++)
4500 proc
= chan_process
[channel
];
4503 /* Find minimum non-zero read_output_delay among the
4504 processes with non-zero read_output_skip. */
4505 if (XPROCESS (proc
)->read_output_delay
> 0)
4508 if (!XPROCESS (proc
)->read_output_skip
)
4510 FD_CLR (channel
, &Available
);
4511 XPROCESS (proc
)->read_output_skip
= 0;
4512 if (XPROCESS (proc
)->read_output_delay
< nsecs
)
4513 nsecs
= XPROCESS (proc
)->read_output_delay
;
4516 timeout
= make_emacs_time (0, nsecs
);
4517 process_output_skip
= 0;
4521 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
4523 #elif defined (HAVE_NS)
4528 (max (max_process_desc
, max_input_desc
) + 1,
4530 (check_write
? &Writeok
: (SELECT_TYPE
*)0),
4531 NULL
, &timeout
, NULL
);
4534 /* GnuTLS buffers data internally. In lowat mode it leaves
4535 some data in the TCP buffers so that select works, but
4536 with custom pull/push functions we need to check if some
4537 data is available in the buffers manually. */
4542 /* We're not waiting on a specific process, so loop
4543 through all the channels and check for data.
4544 This is a workaround needed for some versions of
4545 the gnutls library -- 2.12.14 has been confirmed
4547 http://comments.gmane.org/gmane.emacs.devel/145074 */
4548 for (channel
= 0; channel
< MAXDESC
; ++channel
)
4549 if (! NILP (chan_process
[channel
]))
4551 struct Lisp_Process
*p
=
4552 XPROCESS (chan_process
[channel
]);
4553 if (p
&& p
->gnutls_p
&& p
->infd
4554 && ((emacs_gnutls_record_check_pending
4559 FD_SET (p
->infd
, &Available
);
4565 /* Check this specific channel. */
4566 if (wait_proc
->gnutls_p
/* Check for valid process. */
4567 /* Do we have pending data? */
4568 && ((emacs_gnutls_record_check_pending
4569 (wait_proc
->gnutls_state
))
4573 /* Set to Available. */
4574 FD_SET (wait_proc
->infd
, &Available
);
4583 /* Make C-g and alarm signals set flags again */
4584 clear_waiting_for_input ();
4586 /* If we woke up due to SIGWINCH, actually change size now. */
4587 do_pending_window_change (0);
4589 if ((time_limit
|| nsecs
) && nfds
== 0 && ! timeout_reduced_for_timers
)
4590 /* We waited the full specified time, so return now. */
4594 if (xerrno
== EINTR
)
4596 else if (xerrno
== EBADF
)
4599 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4600 the child's closure of the pts gives the parent a SIGHUP, and
4601 the ptc file descriptor is automatically closed,
4602 yielding EBADF here or at select() call above.
4603 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4604 in m/ibmrt-aix.h), and here we just ignore the select error.
4605 Cleanup occurs c/o status_notify after SIGCHLD. */
4606 no_avail
= 1; /* Cannot depend on values returned */
4612 error ("select error: %s", emacs_strerror (xerrno
));
4617 FD_ZERO (&Available
);
4621 /* Check for keyboard input */
4622 /* If there is any, return immediately
4623 to give it higher priority than subprocesses */
4627 unsigned old_timers_run
= timers_run
;
4628 struct buffer
*old_buffer
= current_buffer
;
4629 Lisp_Object old_window
= selected_window
;
4632 if (detect_input_pending_run_timers (do_display
))
4634 swallow_events (do_display
);
4635 if (detect_input_pending_run_timers (do_display
))
4639 /* If a timer has run, this might have changed buffers
4640 an alike. Make read_key_sequence aware of that. */
4641 if (timers_run
!= old_timers_run
4642 && waiting_for_user_input_p
== -1
4643 && (old_buffer
!= current_buffer
4644 || !EQ (old_window
, selected_window
)))
4645 record_asynch_buffer_change ();
4651 /* If there is unread keyboard input, also return. */
4653 && requeued_events_pending_p ())
4656 /* If we are not checking for keyboard input now,
4657 do process events (but don't run any timers).
4658 This is so that X events will be processed.
4659 Otherwise they may have to wait until polling takes place.
4660 That would causes delays in pasting selections, for example.
4662 (We used to do this only if wait_for_cell.) */
4663 if (read_kbd
== 0 && detect_input_pending ())
4665 swallow_events (do_display
);
4666 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4667 if (detect_input_pending ())
4672 /* Exit now if the cell we're waiting for became non-nil. */
4673 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
4677 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4678 go read it. This can happen with X on BSD after logging out.
4679 In that case, there really is no input and no SIGIO,
4680 but select says there is input. */
4682 if (read_kbd
&& interrupt_input
4683 && keyboard_bit_set (&Available
) && ! noninteractive
)
4684 handle_input_available_signal (SIGIO
);
4688 got_some_input
|= nfds
> 0;
4690 /* If checking input just got us a size-change event from X,
4691 obey it now if we should. */
4692 if (read_kbd
|| ! NILP (wait_for_cell
))
4693 do_pending_window_change (0);
4695 /* Check for data from a process. */
4696 if (no_avail
|| nfds
== 0)
4699 for (channel
= 0; channel
<= max_input_desc
; ++channel
)
4701 struct fd_callback_data
*d
= &fd_callback_info
[channel
];
4703 && ((d
->condition
& FOR_READ
4704 && FD_ISSET (channel
, &Available
))
4705 || (d
->condition
& FOR_WRITE
4706 && FD_ISSET (channel
, &write_mask
))))
4707 d
->func (channel
, d
->data
);
4710 for (channel
= 0; channel
<= max_process_desc
; channel
++)
4712 if (FD_ISSET (channel
, &Available
)
4713 && FD_ISSET (channel
, &non_keyboard_wait_mask
)
4714 && !FD_ISSET (channel
, &non_process_wait_mask
))
4718 /* If waiting for this channel, arrange to return as
4719 soon as no more input to be processed. No more
4721 if (wait_channel
== channel
)
4727 proc
= chan_process
[channel
];
4731 /* If this is a server stream socket, accept connection. */
4732 if (EQ (XPROCESS (proc
)->status
, Qlisten
))
4734 server_accept_connection (proc
, channel
);
4738 /* Read data from the process, starting with our
4739 buffered-ahead character if we have one. */
4741 nread
= read_process_output (proc
, channel
);
4744 /* Since read_process_output can run a filter,
4745 which can call accept-process-output,
4746 don't try to read from any other processes
4747 before doing the select again. */
4748 FD_ZERO (&Available
);
4751 redisplay_preserve_echo_area (12);
4754 else if (nread
== -1 && errno
== EWOULDBLOCK
)
4757 else if (nread
== -1 && errno
== EAGAIN
)
4760 /* FIXME: Is this special case still needed? */
4761 /* Note that we cannot distinguish between no input
4762 available now and a closed pipe.
4763 With luck, a closed pipe will be accompanied by
4764 subprocess termination and SIGCHLD. */
4765 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
4769 /* On some OSs with ptys, when the process on one end of
4770 a pty exits, the other end gets an error reading with
4771 errno = EIO instead of getting an EOF (0 bytes read).
4772 Therefore, if we get an error reading and errno =
4773 EIO, just continue, because the child process has
4774 exited and should clean itself up soon (e.g. when we
4776 else if (nread
== -1 && errno
== EIO
)
4778 struct Lisp_Process
*p
= XPROCESS (proc
);
4780 /* Clear the descriptor now, so we only raise the
4782 FD_CLR (channel
, &input_wait_mask
);
4783 FD_CLR (channel
, &non_keyboard_wait_mask
);
4787 /* If the EIO occurs on a pty, the SIGCHLD handler's
4788 waitpid call will not find the process object to
4789 delete. Do it here. */
4790 p
->tick
= ++process_tick
;
4791 pset_status (p
, Qfailed
);
4794 #endif /* HAVE_PTYS */
4795 /* If we can detect process termination, don't consider the
4796 process gone just because its pipe is closed. */
4797 else if (nread
== 0 && !NETCONN_P (proc
) && !SERIALCONN_P (proc
))
4801 /* Preserve status of processes already terminated. */
4802 XPROCESS (proc
)->tick
= ++process_tick
;
4803 deactivate_process (proc
);
4804 if (XPROCESS (proc
)->raw_status_new
)
4805 update_status (XPROCESS (proc
));
4806 if (EQ (XPROCESS (proc
)->status
, Qrun
))
4807 pset_status (XPROCESS (proc
),
4808 list2 (Qexit
, make_number (256)));
4811 #ifdef NON_BLOCKING_CONNECT
4812 if (FD_ISSET (channel
, &Writeok
)
4813 && FD_ISSET (channel
, &connect_wait_mask
))
4815 struct Lisp_Process
*p
;
4817 FD_CLR (channel
, &connect_wait_mask
);
4818 FD_CLR (channel
, &write_mask
);
4819 if (--num_pending_connects
< 0)
4822 proc
= chan_process
[channel
];
4826 p
= XPROCESS (proc
);
4829 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4830 So only use it on systems where it is known to work. */
4832 socklen_t xlen
= sizeof (xerrno
);
4833 if (getsockopt (channel
, SOL_SOCKET
, SO_ERROR
, &xerrno
, &xlen
))
4838 struct sockaddr pname
;
4839 int pnamelen
= sizeof (pname
);
4841 /* If connection failed, getpeername will fail. */
4843 if (getpeername (channel
, &pname
, &pnamelen
) < 0)
4845 /* Obtain connect failure code through error slippage. */
4848 if (errno
== ENOTCONN
&& read (channel
, &dummy
, 1) < 0)
4855 p
->tick
= ++process_tick
;
4856 pset_status (p
, list2 (Qfailed
, make_number (xerrno
)));
4857 deactivate_process (proc
);
4861 pset_status (p
, Qrun
);
4862 /* Execute the sentinel here. If we had relied on
4863 status_notify to do it later, it will read input
4864 from the process before calling the sentinel. */
4865 exec_sentinel (proc
, build_string ("open\n"));
4866 if (!EQ (p
->filter
, Qt
) && !EQ (p
->command
, Qt
))
4868 FD_SET (p
->infd
, &input_wait_mask
);
4869 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
4873 #endif /* NON_BLOCKING_CONNECT */
4874 } /* end for each file descriptor */
4875 } /* end while exit conditions not met */
4877 unbind_to (count
, Qnil
);
4879 /* If calling from keyboard input, do not quit
4880 since we want to return C-g as an input character.
4881 Otherwise, do pending quit if requested. */
4884 /* Prevent input_pending from remaining set if we quit. */
4885 clear_input_pending ();
4889 return got_some_input
;
4892 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4895 read_process_output_call (Lisp_Object fun_and_args
)
4897 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
4901 read_process_output_error_handler (Lisp_Object error_val
)
4903 cmd_error_internal (error_val
, "error in process filter: ");
4905 update_echo_area ();
4906 Fsleep_for (make_number (2), Qnil
);
4910 /* Read pending output from the process channel,
4911 starting with our buffered-ahead character if we have one.
4912 Yield number of decoded characters read.
4914 This function reads at most 4096 characters.
4915 If you want to read all available subprocess output,
4916 you must call it repeatedly until it returns zero.
4918 The characters read are decoded according to PROC's coding-system
4922 read_process_output (Lisp_Object proc
, register int channel
)
4924 register ssize_t nbytes
;
4926 register Lisp_Object outstream
;
4927 register struct Lisp_Process
*p
= XPROCESS (proc
);
4928 register ptrdiff_t opoint
;
4929 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
4930 int carryover
= p
->decoding_carryover
;
4932 ptrdiff_t count
= SPECPDL_INDEX ();
4933 Lisp_Object odeactivate
;
4935 chars
= alloca (carryover
+ readmax
);
4937 /* See the comment above. */
4938 memcpy (chars
, SDATA (p
->decoding_buf
), carryover
);
4940 #ifdef DATAGRAM_SOCKETS
4941 /* We have a working select, so proc_buffered_char is always -1. */
4942 if (DATAGRAM_CHAN_P (channel
))
4944 socklen_t len
= datagram_address
[channel
].len
;
4945 nbytes
= recvfrom (channel
, chars
+ carryover
, readmax
,
4946 0, datagram_address
[channel
].sa
, &len
);
4951 bool buffered
= proc_buffered_char
[channel
] >= 0;
4954 chars
[carryover
] = proc_buffered_char
[channel
];
4955 proc_buffered_char
[channel
] = -1;
4959 nbytes
= emacs_gnutls_read (p
, chars
+ carryover
+ buffered
,
4960 readmax
- buffered
);
4963 nbytes
= emacs_read (channel
, chars
+ carryover
+ buffered
,
4964 readmax
- buffered
);
4965 #ifdef ADAPTIVE_READ_BUFFERING
4966 if (nbytes
> 0 && p
->adaptive_read_buffering
)
4968 int delay
= p
->read_output_delay
;
4971 if (delay
< READ_OUTPUT_DELAY_MAX_MAX
)
4974 process_output_delay_count
++;
4975 delay
+= READ_OUTPUT_DELAY_INCREMENT
* 2;
4978 else if (delay
> 0 && nbytes
== readmax
- buffered
)
4980 delay
-= READ_OUTPUT_DELAY_INCREMENT
;
4982 process_output_delay_count
--;
4984 p
->read_output_delay
= delay
;
4987 p
->read_output_skip
= 1;
4988 process_output_skip
= 1;
4993 nbytes
+= buffered
&& nbytes
<= 0;
4996 p
->decoding_carryover
= 0;
4998 /* At this point, NBYTES holds number of bytes just received
4999 (including the one in proc_buffered_char[channel]). */
5002 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
5004 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5007 /* Now set NBYTES how many bytes we must decode. */
5008 nbytes
+= carryover
;
5010 odeactivate
= Vdeactivate_mark
;
5011 /* There's no good reason to let process filters change the current
5012 buffer, and many callers of accept-process-output, sit-for, and
5013 friends don't expect current-buffer to be changed from under them. */
5014 record_unwind_current_buffer ();
5016 /* Read and dispose of the process output. */
5017 outstream
= p
->filter
;
5018 if (!NILP (outstream
))
5021 bool outer_running_asynch_code
= running_asynch_code
;
5022 int waiting
= waiting_for_user_input_p
;
5024 /* No need to gcpro these, because all we do with them later
5025 is test them for EQness, and none of them should be a string. */
5027 Lisp_Object obuffer
, okeymap
;
5028 XSETBUFFER (obuffer
, current_buffer
);
5029 okeymap
= BVAR (current_buffer
, keymap
);
5032 /* We inhibit quit here instead of just catching it so that
5033 hitting ^G when a filter happens to be running won't screw
5035 specbind (Qinhibit_quit
, Qt
);
5036 specbind (Qlast_nonmenu_event
, Qt
);
5038 /* In case we get recursively called,
5039 and we already saved the match data nonrecursively,
5040 save the same match data in safely recursive fashion. */
5041 if (outer_running_asynch_code
)
5044 /* Don't clobber the CURRENT match data, either! */
5045 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
5046 restore_search_regs ();
5047 record_unwind_save_match_data ();
5048 Fset_match_data (tem
, Qt
);
5051 /* For speed, if a search happens within this code,
5052 save the match data in a special nonrecursive fashion. */
5053 running_asynch_code
= 1;
5055 decode_coding_c_string (coding
, (unsigned char *) chars
, nbytes
, Qt
);
5056 text
= coding
->dst_object
;
5057 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5058 /* A new coding system might be found. */
5059 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5061 pset_decode_coding_system (p
, Vlast_coding_system_used
);
5063 /* Don't call setup_coding_system for
5064 proc_decode_coding_system[channel] here. It is done in
5065 detect_coding called via decode_coding above. */
5067 /* If a coding system for encoding is not yet decided, we set
5068 it as the same as coding-system for decoding.
5070 But, before doing that we must check if
5071 proc_encode_coding_system[p->outfd] surely points to a
5072 valid memory because p->outfd will be changed once EOF is
5073 sent to the process. */
5074 if (NILP (p
->encode_coding_system
)
5075 && proc_encode_coding_system
[p
->outfd
])
5077 pset_encode_coding_system
5078 (p
, coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
));
5079 setup_coding_system (p
->encode_coding_system
,
5080 proc_encode_coding_system
[p
->outfd
]);
5084 if (coding
->carryover_bytes
> 0)
5086 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5087 pset_decoding_buf (p
, make_uninit_string (coding
->carryover_bytes
));
5088 memcpy (SDATA (p
->decoding_buf
), coding
->carryover
,
5089 coding
->carryover_bytes
);
5090 p
->decoding_carryover
= coding
->carryover_bytes
;
5092 if (SBYTES (text
) > 0)
5093 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5094 sometimes it's simply wrong to wrap (e.g. when called from
5095 accept-process-output). */
5096 internal_condition_case_1 (read_process_output_call
,
5098 Fcons (proc
, Fcons (text
, Qnil
))),
5099 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
5100 read_process_output_error_handler
);
5102 /* If we saved the match data nonrecursively, restore it now. */
5103 restore_search_regs ();
5104 running_asynch_code
= outer_running_asynch_code
;
5106 /* Restore waiting_for_user_input_p as it was
5107 when we were called, in case the filter clobbered it. */
5108 waiting_for_user_input_p
= waiting
;
5110 #if 0 /* Call record_asynch_buffer_change unconditionally,
5111 because we might have changed minor modes or other things
5112 that affect key bindings. */
5113 if (! EQ (Fcurrent_buffer (), obuffer
)
5114 || ! EQ (current_buffer
->keymap
, okeymap
))
5116 /* But do it only if the caller is actually going to read events.
5117 Otherwise there's no need to make him wake up, and it could
5118 cause trouble (for example it would make sit_for return). */
5119 if (waiting_for_user_input_p
== -1)
5120 record_asynch_buffer_change ();
5123 /* If no filter, write into buffer if it isn't dead. */
5124 else if (!NILP (p
->buffer
) && BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
5126 Lisp_Object old_read_only
;
5127 ptrdiff_t old_begv
, old_zv
;
5128 ptrdiff_t old_begv_byte
, old_zv_byte
;
5129 ptrdiff_t before
, before_byte
;
5130 ptrdiff_t opoint_byte
;
5134 Fset_buffer (p
->buffer
);
5136 opoint_byte
= PT_BYTE
;
5137 old_read_only
= BVAR (current_buffer
, read_only
);
5140 old_begv_byte
= BEGV_BYTE
;
5141 old_zv_byte
= ZV_BYTE
;
5143 bset_read_only (current_buffer
, Qnil
);
5145 /* Insert new output into buffer
5146 at the current end-of-output marker,
5147 thus preserving logical ordering of input and output. */
5148 if (XMARKER (p
->mark
)->buffer
)
5149 SET_PT_BOTH (clip_to_bounds (BEGV
,
5150 marker_position (p
->mark
), ZV
),
5151 clip_to_bounds (BEGV_BYTE
,
5152 marker_byte_position (p
->mark
),
5155 SET_PT_BOTH (ZV
, ZV_BYTE
);
5157 before_byte
= PT_BYTE
;
5159 /* If the output marker is outside of the visible region, save
5160 the restriction and widen. */
5161 if (! (BEGV
<= PT
&& PT
<= ZV
))
5164 decode_coding_c_string (coding
, (unsigned char *) chars
, nbytes
, Qt
);
5165 text
= coding
->dst_object
;
5166 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5167 /* A new coding system might be found. See the comment in the
5168 similar code in the previous `if' block. */
5169 if (!EQ (p
->decode_coding_system
, Vlast_coding_system_used
))
5171 pset_decode_coding_system (p
, Vlast_coding_system_used
);
5172 if (NILP (p
->encode_coding_system
)
5173 && proc_encode_coding_system
[p
->outfd
])
5175 pset_encode_coding_system
5176 (p
, coding_inherit_eol_type (Vlast_coding_system_used
, Qnil
));
5177 setup_coding_system (p
->encode_coding_system
,
5178 proc_encode_coding_system
[p
->outfd
]);
5181 if (coding
->carryover_bytes
> 0)
5183 if (SCHARS (p
->decoding_buf
) < coding
->carryover_bytes
)
5184 pset_decoding_buf (p
, make_uninit_string (coding
->carryover_bytes
));
5185 memcpy (SDATA (p
->decoding_buf
), coding
->carryover
,
5186 coding
->carryover_bytes
);
5187 p
->decoding_carryover
= coding
->carryover_bytes
;
5189 /* Adjust the multibyteness of TEXT to that of the buffer. */
5190 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
))
5191 != ! STRING_MULTIBYTE (text
))
5192 text
= (STRING_MULTIBYTE (text
)
5193 ? Fstring_as_unibyte (text
)
5194 : Fstring_to_multibyte (text
));
5195 /* Insert before markers in case we are inserting where
5196 the buffer's mark is, and the user's next command is Meta-y. */
5197 insert_from_string_before_markers (text
, 0, 0,
5198 SCHARS (text
), SBYTES (text
), 0);
5200 /* Make sure the process marker's position is valid when the
5201 process buffer is changed in the signal_after_change above.
5202 W3 is known to do that. */
5203 if (BUFFERP (p
->buffer
)
5204 && (b
= XBUFFER (p
->buffer
), b
!= current_buffer
))
5205 set_marker_both (p
->mark
, p
->buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
5207 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
5209 update_mode_lines
++;
5211 /* Make sure opoint and the old restrictions
5212 float ahead of any new text just as point would. */
5213 if (opoint
>= before
)
5215 opoint
+= PT
- before
;
5216 opoint_byte
+= PT_BYTE
- before_byte
;
5218 if (old_begv
> before
)
5220 old_begv
+= PT
- before
;
5221 old_begv_byte
+= PT_BYTE
- before_byte
;
5223 if (old_zv
>= before
)
5225 old_zv
+= PT
- before
;
5226 old_zv_byte
+= PT_BYTE
- before_byte
;
5229 /* If the restriction isn't what it should be, set it. */
5230 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
5231 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
5234 bset_read_only (current_buffer
, old_read_only
);
5235 SET_PT_BOTH (opoint
, opoint_byte
);
5237 /* Handling the process output should not deactivate the mark. */
5238 Vdeactivate_mark
= odeactivate
;
5240 unbind_to (count
, Qnil
);
5244 /* Sending data to subprocess */
5246 /* In send_process, when a write fails temporarily,
5247 wait_reading_process_output is called. It may execute user code,
5248 e.g. timers, that attempts to write new data to the same process.
5249 We must ensure that data is sent in the right order, and not
5250 interspersed half-completed with other writes (Bug#10815). This is
5251 handled by the write_queue element of struct process. It is a list
5252 with each entry having the form
5254 (string . (offset . length))
5256 where STRING is a lisp string, OFFSET is the offset into the
5257 string's byte sequence from which we should begin to send, and
5258 LENGTH is the number of bytes left to send. */
5260 /* Create a new entry in write_queue.
5261 INPUT_OBJ should be a buffer, string Qt, or Qnil.
5262 BUF is a pointer to the string sequence of the input_obj or a C
5263 string in case of Qt or Qnil. */
5266 write_queue_push (struct Lisp_Process
*p
, Lisp_Object input_obj
,
5267 const char *buf
, ptrdiff_t len
, bool front
)
5270 Lisp_Object entry
, obj
;
5272 if (STRINGP (input_obj
))
5274 offset
= buf
- SSDATA (input_obj
);
5280 obj
= make_unibyte_string (buf
, len
);
5283 entry
= Fcons (obj
, Fcons (make_number (offset
), make_number (len
)));
5286 pset_write_queue (p
, Fcons (entry
, p
->write_queue
));
5288 pset_write_queue (p
, nconc2 (p
->write_queue
, Fcons (entry
, Qnil
)));
5291 /* Remove the first element in the write_queue of process P, put its
5292 contents in OBJ, BUF and LEN, and return true. If the
5293 write_queue is empty, return false. */
5296 write_queue_pop (struct Lisp_Process
*p
, Lisp_Object
*obj
,
5297 const char **buf
, ptrdiff_t *len
)
5299 Lisp_Object entry
, offset_length
;
5302 if (NILP (p
->write_queue
))
5305 entry
= XCAR (p
->write_queue
);
5306 pset_write_queue (p
, XCDR (p
->write_queue
));
5308 *obj
= XCAR (entry
);
5309 offset_length
= XCDR (entry
);
5311 *len
= XINT (XCDR (offset_length
));
5312 offset
= XINT (XCAR (offset_length
));
5313 *buf
= SSDATA (*obj
) + offset
;
5318 /* Send some data to process PROC.
5319 BUF is the beginning of the data; LEN is the number of characters.
5320 OBJECT is the Lisp object that the data comes from. If OBJECT is
5321 nil or t, it means that the data comes from C string.
5323 If OBJECT is not nil, the data is encoded by PROC's coding-system
5324 for encoding before it is sent.
5326 This function can evaluate Lisp code and can garbage collect. */
5329 send_process (Lisp_Object proc
, const char *buf
, ptrdiff_t len
,
5332 struct Lisp_Process
*p
= XPROCESS (proc
);
5334 struct coding_system
*coding
;
5336 if (p
->raw_status_new
)
5338 if (! EQ (p
->status
, Qrun
))
5339 error ("Process %s not running", SDATA (p
->name
));
5341 error ("Output file descriptor of %s is closed", SDATA (p
->name
));
5343 coding
= proc_encode_coding_system
[p
->outfd
];
5344 Vlast_coding_system_used
= CODING_ID_NAME (coding
->id
);
5346 if ((STRINGP (object
) && STRING_MULTIBYTE (object
))
5347 || (BUFFERP (object
)
5348 && !NILP (BVAR (XBUFFER (object
), enable_multibyte_characters
)))
5351 pset_encode_coding_system
5352 (p
, complement_process_encoding_system (p
->encode_coding_system
));
5353 if (!EQ (Vlast_coding_system_used
, p
->encode_coding_system
))
5355 /* The coding system for encoding was changed to raw-text
5356 because we sent a unibyte text previously. Now we are
5357 sending a multibyte text, thus we must encode it by the
5358 original coding system specified for the current process.
5360 Another reason we come here is that the coding system
5361 was just complemented and a new one was returned by
5362 complement_process_encoding_system. */
5363 setup_coding_system (p
->encode_coding_system
, coding
);
5364 Vlast_coding_system_used
= p
->encode_coding_system
;
5366 coding
->src_multibyte
= 1;
5370 coding
->src_multibyte
= 0;
5371 /* For sending a unibyte text, character code conversion should
5372 not take place but EOL conversion should. So, setup raw-text
5373 or one of the subsidiary if we have not yet done it. */
5374 if (CODING_REQUIRE_ENCODING (coding
))
5376 if (CODING_REQUIRE_FLUSHING (coding
))
5378 /* But, before changing the coding, we must flush out data. */
5379 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
5380 send_process (proc
, "", 0, Qt
);
5381 coding
->mode
&= CODING_MODE_LAST_BLOCK
;
5383 setup_coding_system (raw_text_coding_system
5384 (Vlast_coding_system_used
),
5386 coding
->src_multibyte
= 0;
5389 coding
->dst_multibyte
= 0;
5391 if (CODING_REQUIRE_ENCODING (coding
))
5393 coding
->dst_object
= Qt
;
5394 if (BUFFERP (object
))
5396 ptrdiff_t from_byte
, from
, to
;
5397 ptrdiff_t save_pt
, save_pt_byte
;
5398 struct buffer
*cur
= current_buffer
;
5400 set_buffer_internal (XBUFFER (object
));
5401 save_pt
= PT
, save_pt_byte
= PT_BYTE
;
5403 from_byte
= PTR_BYTE_POS ((unsigned char *) buf
);
5404 from
= BYTE_TO_CHAR (from_byte
);
5405 to
= BYTE_TO_CHAR (from_byte
+ len
);
5406 TEMP_SET_PT_BOTH (from
, from_byte
);
5407 encode_coding_object (coding
, object
, from
, from_byte
,
5408 to
, from_byte
+ len
, Qt
);
5409 TEMP_SET_PT_BOTH (save_pt
, save_pt_byte
);
5410 set_buffer_internal (cur
);
5412 else if (STRINGP (object
))
5414 encode_coding_object (coding
, object
, 0, 0, SCHARS (object
),
5415 SBYTES (object
), Qt
);
5419 coding
->dst_object
= make_unibyte_string (buf
, len
);
5420 coding
->produced
= len
;
5423 len
= coding
->produced
;
5424 object
= coding
->dst_object
;
5425 buf
= SSDATA (object
);
5428 /* If there is already data in the write_queue, put the new data
5429 in the back of queue. Otherwise, ignore it. */
5430 if (!NILP (p
->write_queue
))
5431 write_queue_push (p
, object
, buf
, len
, 0);
5433 do /* while !NILP (p->write_queue) */
5435 ptrdiff_t cur_len
= -1;
5436 const char *cur_buf
;
5437 Lisp_Object cur_object
;
5439 /* If write_queue is empty, ignore it. */
5440 if (!write_queue_pop (p
, &cur_object
, &cur_buf
, &cur_len
))
5444 cur_object
= object
;
5449 /* Send this batch, using one or more write calls. */
5450 ptrdiff_t written
= 0;
5451 int outfd
= p
->outfd
;
5452 #ifdef DATAGRAM_SOCKETS
5453 if (DATAGRAM_CHAN_P (outfd
))
5455 rv
= sendto (outfd
, cur_buf
, cur_len
,
5456 0, datagram_address
[outfd
].sa
,
5457 datagram_address
[outfd
].len
);
5460 else if (errno
== EMSGSIZE
)
5461 report_file_error ("sending datagram", Fcons (proc
, Qnil
));
5468 written
= emacs_gnutls_write (p
, cur_buf
, cur_len
);
5471 written
= emacs_write (outfd
, cur_buf
, cur_len
);
5472 rv
= (written
? 0 : -1);
5473 #ifdef ADAPTIVE_READ_BUFFERING
5474 if (p
->read_output_delay
> 0
5475 && p
->adaptive_read_buffering
== 1)
5477 p
->read_output_delay
= 0;
5478 process_output_delay_count
--;
5479 p
->read_output_skip
= 0;
5488 || errno
== EWOULDBLOCK
5491 /* Buffer is full. Wait, accepting input;
5492 that may allow the program
5493 to finish doing output and read more. */
5495 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5496 /* A gross hack to work around a bug in FreeBSD.
5497 In the following sequence, read(2) returns
5501 write(2) 954 bytes, get EAGAIN
5502 read(2) 1024 bytes in process_read_output
5503 read(2) 11 bytes in process_read_output
5505 That is, read(2) returns more bytes than have
5506 ever been written successfully. The 1033 bytes
5507 read are the 1022 bytes written successfully
5508 after processing (for example with CRs added if
5509 the terminal is set up that way which it is
5510 here). The same bytes will be seen again in a
5511 later read(2), without the CRs. */
5513 if (errno
== EAGAIN
)
5516 ioctl (p
->outfd
, TIOCFLUSH
, &flags
);
5518 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5520 /* Put what we should have written in wait_queue. */
5521 write_queue_push (p
, cur_object
, cur_buf
, cur_len
, 1);
5522 wait_reading_process_output (0, 20 * 1000 * 1000,
5523 0, 0, Qnil
, NULL
, 0);
5524 /* Reread queue, to see what is left. */
5527 else if (errno
== EPIPE
)
5529 p
->raw_status_new
= 0;
5530 pset_status (p
, list2 (Qexit
, make_number (256)));
5531 p
->tick
= ++process_tick
;
5532 deactivate_process (proc
);
5533 error ("process %s no longer connected to pipe; closed it",
5537 /* This is a real error. */
5538 report_file_error ("writing to process", Fcons (proc
, Qnil
));
5544 while (!NILP (p
->write_queue
));
5547 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
5549 doc
: /* Send current contents of region as input to PROCESS.
5550 PROCESS may be a process, a buffer, the name of a process or buffer, or
5551 nil, indicating the current buffer's process.
5552 Called from program, takes three arguments, PROCESS, START and END.
5553 If the region is more than 500 characters long,
5554 it is sent in several bunches. This may happen even for shorter regions.
5555 Output from processes can arrive in between bunches. */)
5556 (Lisp_Object process
, Lisp_Object start
, Lisp_Object end
)
5558 Lisp_Object proc
= get_process (process
);
5559 ptrdiff_t start_byte
, end_byte
;
5561 validate_region (&start
, &end
);
5563 start_byte
= CHAR_TO_BYTE (XINT (start
));
5564 end_byte
= CHAR_TO_BYTE (XINT (end
));
5566 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
5567 move_gap_both (XINT (start
), start_byte
);
5569 send_process (proc
, (char *) BYTE_POS_ADDR (start_byte
),
5570 end_byte
- start_byte
, Fcurrent_buffer ());
5575 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
5577 doc
: /* Send PROCESS the contents of STRING as input.
5578 PROCESS may be a process, a buffer, the name of a process or buffer, or
5579 nil, indicating the current buffer's process.
5580 If STRING is more than 500 characters long,
5581 it is sent in several bunches. This may happen even for shorter strings.
5582 Output from processes can arrive in between bunches. */)
5583 (Lisp_Object process
, Lisp_Object string
)
5586 CHECK_STRING (string
);
5587 proc
= get_process (process
);
5588 send_process (proc
, SSDATA (string
),
5589 SBYTES (string
), string
);
5593 /* Return the foreground process group for the tty/pty that
5594 the process P uses. */
5596 emacs_get_tty_pgrp (struct Lisp_Process
*p
)
5601 if (ioctl (p
->infd
, TIOCGPGRP
, &gid
) == -1 && ! NILP (p
->tty_name
))
5604 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5605 master side. Try the slave side. */
5606 fd
= emacs_open (SSDATA (p
->tty_name
), O_RDONLY
, 0);
5610 ioctl (fd
, TIOCGPGRP
, &gid
);
5614 #endif /* defined (TIOCGPGRP ) */
5619 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
5620 Sprocess_running_child_p
, 0, 1, 0,
5621 doc
: /* Return t if PROCESS has given the terminal to a child.
5622 If the operating system does not make it possible to find out,
5623 return t unconditionally. */)
5624 (Lisp_Object process
)
5626 /* Initialize in case ioctl doesn't exist or gives an error,
5627 in a way that will cause returning t. */
5630 struct Lisp_Process
*p
;
5632 proc
= get_process (process
);
5633 p
= XPROCESS (proc
);
5635 if (!EQ (p
->type
, Qreal
))
5636 error ("Process %s is not a subprocess",
5639 error ("Process %s is not active",
5642 gid
= emacs_get_tty_pgrp (p
);
5649 /* send a signal number SIGNO to PROCESS.
5650 If CURRENT_GROUP is t, that means send to the process group
5651 that currently owns the terminal being used to communicate with PROCESS.
5652 This is used for various commands in shell mode.
5653 If CURRENT_GROUP is lambda, that means send to the process group
5654 that currently owns the terminal, but only if it is NOT the shell itself.
5656 If NOMSG is false, insert signal-announcements into process's buffers
5659 If we can, we try to signal PROCESS by sending control characters
5660 down the pty. This allows us to signal inferiors who have changed
5661 their uid, for which kill would return an EPERM error. */
5664 process_send_signal (Lisp_Object process
, int signo
, Lisp_Object current_group
,
5668 struct Lisp_Process
*p
;
5672 proc
= get_process (process
);
5673 p
= XPROCESS (proc
);
5675 if (!EQ (p
->type
, Qreal
))
5676 error ("Process %s is not a subprocess",
5679 error ("Process %s is not active",
5683 current_group
= Qnil
;
5685 /* If we are using pgrps, get a pgrp number and make it negative. */
5686 if (NILP (current_group
))
5687 /* Send the signal to the shell's process group. */
5691 #ifdef SIGNALS_VIA_CHARACTERS
5692 /* If possible, send signals to the entire pgrp
5693 by sending an input character to it. */
5696 cc_t
*sig_char
= NULL
;
5698 tcgetattr (p
->infd
, &t
);
5703 sig_char
= &t
.c_cc
[VINTR
];
5707 sig_char
= &t
.c_cc
[VQUIT
];
5711 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5712 sig_char
= &t
.c_cc
[VSWTCH
];
5714 sig_char
= &t
.c_cc
[VSUSP
];
5719 if (sig_char
&& *sig_char
!= CDISABLE
)
5721 send_process (proc
, (char *) sig_char
, 1, Qnil
);
5724 /* If we can't send the signal with a character,
5725 fall through and send it another way. */
5727 /* The code above may fall through if it can't
5728 handle the signal. */
5729 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5732 /* Get the current pgrp using the tty itself, if we have that.
5733 Otherwise, use the pty to get the pgrp.
5734 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5735 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5736 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5737 His patch indicates that if TIOCGPGRP returns an error, then
5738 we should just assume that p->pid is also the process group id. */
5740 gid
= emacs_get_tty_pgrp (p
);
5743 /* If we can't get the information, assume
5744 the shell owns the tty. */
5747 /* It is not clear whether anything really can set GID to -1.
5748 Perhaps on some system one of those ioctls can or could do so.
5749 Or perhaps this is vestigial. */
5752 #else /* ! defined (TIOCGPGRP ) */
5753 /* Can't select pgrps on this system, so we know that
5754 the child itself heads the pgrp. */
5756 #endif /* ! defined (TIOCGPGRP ) */
5758 /* If current_group is lambda, and the shell owns the terminal,
5759 don't send any signal. */
5760 if (EQ (current_group
, Qlambda
) && gid
== p
->pid
)
5768 p
->raw_status_new
= 0;
5769 pset_status (p
, Qrun
);
5770 p
->tick
= ++process_tick
;
5773 status_notify (NULL
);
5774 redisplay_preserve_echo_area (13);
5777 #endif /* ! defined (SIGCONT) */
5781 flush_pending_output (p
->infd
);
5785 /* If we don't have process groups, send the signal to the immediate
5786 subprocess. That isn't really right, but it's better than any
5787 obvious alternative. */
5790 kill (p
->pid
, signo
);
5794 /* gid may be a pid, or minus a pgrp's number */
5796 if (!NILP (current_group
))
5798 if (ioctl (p
->infd
, TIOCSIGSEND
, signo
) == -1)
5806 #else /* ! defined (TIOCSIGSEND) */
5808 #endif /* ! defined (TIOCSIGSEND) */
5811 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
5812 doc
: /* Interrupt process PROCESS.
5813 PROCESS may be a process, a buffer, or the name of a process or buffer.
5814 No arg or nil means current buffer's process.
5815 Second arg CURRENT-GROUP non-nil means send signal to
5816 the current process-group of the process's controlling terminal
5817 rather than to the process's own process group.
5818 If the process is a shell, this means interrupt current subjob
5819 rather than the shell.
5821 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5822 don't send the signal. */)
5823 (Lisp_Object process
, Lisp_Object current_group
)
5825 process_send_signal (process
, SIGINT
, current_group
, 0);
5829 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
5830 doc
: /* Kill process PROCESS. May be process or name of one.
5831 See function `interrupt-process' for more details on usage. */)
5832 (Lisp_Object process
, Lisp_Object current_group
)
5834 process_send_signal (process
, SIGKILL
, current_group
, 0);
5838 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
5839 doc
: /* Send QUIT signal to process PROCESS. May be process or name of one.
5840 See function `interrupt-process' for more details on usage. */)
5841 (Lisp_Object process
, Lisp_Object current_group
)
5843 process_send_signal (process
, SIGQUIT
, current_group
, 0);
5847 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
5848 doc
: /* Stop process PROCESS. May be process or name of one.
5849 See function `interrupt-process' for more details on usage.
5850 If PROCESS is a network or serial process, inhibit handling of incoming
5852 (Lisp_Object process
, Lisp_Object current_group
)
5854 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
5856 struct Lisp_Process
*p
;
5858 p
= XPROCESS (process
);
5859 if (NILP (p
->command
)
5862 FD_CLR (p
->infd
, &input_wait_mask
);
5863 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
5865 pset_command (p
, Qt
);
5869 error ("No SIGTSTP support");
5871 process_send_signal (process
, SIGTSTP
, current_group
, 0);
5876 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
5877 doc
: /* Continue process PROCESS. May be process or name of one.
5878 See function `interrupt-process' for more details on usage.
5879 If PROCESS is a network or serial process, resume handling of incoming
5881 (Lisp_Object process
, Lisp_Object current_group
)
5883 if (PROCESSP (process
) && (NETCONN_P (process
) || SERIALCONN_P (process
)))
5885 struct Lisp_Process
*p
;
5887 p
= XPROCESS (process
);
5888 if (EQ (p
->command
, Qt
)
5890 && (!EQ (p
->filter
, Qt
) || EQ (p
->status
, Qlisten
)))
5892 FD_SET (p
->infd
, &input_wait_mask
);
5893 FD_SET (p
->infd
, &non_keyboard_wait_mask
);
5895 if (fd_info
[ p
->infd
].flags
& FILE_SERIAL
)
5896 PurgeComm (fd_info
[ p
->infd
].hnd
, PURGE_RXABORT
| PURGE_RXCLEAR
);
5897 #else /* not WINDOWSNT */
5898 tcflush (p
->infd
, TCIFLUSH
);
5899 #endif /* not WINDOWSNT */
5901 pset_command (p
, Qnil
);
5905 process_send_signal (process
, SIGCONT
, current_group
, 0);
5907 error ("No SIGCONT support");
5912 /* Return the integer value of the signal whose abbreviation is ABBR,
5913 or a negative number if there is no such signal. */
5915 abbr_to_signal (char const *name
)
5918 char sigbuf
[20]; /* Large enough for all valid signal abbreviations. */
5920 if (!strncmp (name
, "SIG", 3) || !strncmp (name
, "sig", 3))
5923 for (i
= 0; i
< sizeof sigbuf
; i
++)
5925 sigbuf
[i
] = c_toupper (name
[i
]);
5927 return str2sig (sigbuf
, &signo
) == 0 ? signo
: -1;
5933 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
5934 2, 2, "sProcess (name or number): \nnSignal code: ",
5935 doc
: /* Send PROCESS the signal with code SIGCODE.
5936 PROCESS may also be a number specifying the process id of the
5937 process to signal; in this case, the process need not be a child of
5939 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5940 (Lisp_Object process
, Lisp_Object sigcode
)
5945 if (STRINGP (process
))
5947 Lisp_Object tem
= Fget_process (process
);
5950 Lisp_Object process_number
=
5951 string_to_number (SSDATA (process
), 10, 1);
5952 if (INTEGERP (process_number
) || FLOATP (process_number
))
5953 tem
= process_number
;
5957 else if (!NUMBERP (process
))
5958 process
= get_process (process
);
5963 if (NUMBERP (process
))
5964 CONS_TO_INTEGER (process
, pid_t
, pid
);
5967 CHECK_PROCESS (process
);
5968 pid
= XPROCESS (process
)->pid
;
5970 error ("Cannot signal process %s", SDATA (XPROCESS (process
)->name
));
5973 if (INTEGERP (sigcode
))
5975 CHECK_TYPE_RANGED_INTEGER (int, sigcode
);
5976 signo
= XINT (sigcode
);
5982 CHECK_SYMBOL (sigcode
);
5983 name
= SSDATA (SYMBOL_NAME (sigcode
));
5985 signo
= abbr_to_signal (name
);
5987 error ("Undefined signal name %s", name
);
5990 return make_number (kill (pid
, signo
));
5993 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
5994 doc
: /* Make PROCESS see end-of-file in its input.
5995 EOF comes after any text already sent to it.
5996 PROCESS may be a process, a buffer, the name of a process or buffer, or
5997 nil, indicating the current buffer's process.
5998 If PROCESS is a network connection, or is a process communicating
5999 through a pipe (as opposed to a pty), then you cannot send any more
6000 text to PROCESS after you call this function.
6001 If PROCESS is a serial process, wait until all output written to the
6002 process has been transmitted to the serial port. */)
6003 (Lisp_Object process
)
6006 struct coding_system
*coding
;
6008 if (DATAGRAM_CONN_P (process
))
6011 proc
= get_process (process
);
6012 coding
= proc_encode_coding_system
[XPROCESS (proc
)->outfd
];
6014 /* Make sure the process is really alive. */
6015 if (XPROCESS (proc
)->raw_status_new
)
6016 update_status (XPROCESS (proc
));
6017 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
6018 error ("Process %s not running", SDATA (XPROCESS (proc
)->name
));
6020 if (CODING_REQUIRE_FLUSHING (coding
))
6022 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
6023 send_process (proc
, "", 0, Qnil
);
6026 if (XPROCESS (proc
)->pty_flag
)
6027 send_process (proc
, "\004", 1, Qnil
);
6028 else if (EQ (XPROCESS (proc
)->type
, Qserial
))
6031 if (tcdrain (XPROCESS (proc
)->outfd
) != 0)
6032 error ("tcdrain() failed: %s", emacs_strerror (errno
));
6033 #endif /* not WINDOWSNT */
6034 /* Do nothing on Windows because writes are blocking. */
6038 int old_outfd
, new_outfd
;
6040 #ifdef HAVE_SHUTDOWN
6041 /* If this is a network connection, or socketpair is used
6042 for communication with the subprocess, call shutdown to cause EOF.
6043 (In some old system, shutdown to socketpair doesn't work.
6044 Then we just can't win.) */
6045 if (EQ (XPROCESS (proc
)->type
, Qnetwork
)
6046 || XPROCESS (proc
)->outfd
== XPROCESS (proc
)->infd
)
6047 shutdown (XPROCESS (proc
)->outfd
, 1);
6048 /* In case of socketpair, outfd == infd, so don't close it. */
6049 if (XPROCESS (proc
)->outfd
!= XPROCESS (proc
)->infd
)
6050 emacs_close (XPROCESS (proc
)->outfd
);
6051 #else /* not HAVE_SHUTDOWN */
6052 emacs_close (XPROCESS (proc
)->outfd
);
6053 #endif /* not HAVE_SHUTDOWN */
6054 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
6057 old_outfd
= XPROCESS (proc
)->outfd
;
6059 if (!proc_encode_coding_system
[new_outfd
])
6060 proc_encode_coding_system
[new_outfd
]
6061 = xmalloc (sizeof (struct coding_system
));
6062 *proc_encode_coding_system
[new_outfd
]
6063 = *proc_encode_coding_system
[old_outfd
];
6064 memset (proc_encode_coding_system
[old_outfd
], 0,
6065 sizeof (struct coding_system
));
6067 XPROCESS (proc
)->outfd
= new_outfd
;
6072 /* The main Emacs thread records child processes in three places:
6074 - Vprocess_alist, for asynchronous subprocesses, which are child
6075 processes visible to Lisp.
6077 - deleted_pid_list, for child processes invisible to Lisp,
6078 typically because of delete-process. These are recorded so that
6079 the processes can be reaped when they exit, so that the operating
6080 system's process table is not cluttered by zombies.
6082 - the local variable PID in Fcall_process, call_process_cleanup and
6083 call_process_kill, for synchronous subprocesses.
6084 record_unwind_protect is used to make sure this process is not
6085 forgotten: if the user interrupts call-process and the child
6086 process refuses to exit immediately even with two C-g's,
6087 call_process_kill adds PID's contents to deleted_pid_list before
6090 The main Emacs thread invokes waitpid only on child processes that
6091 it creates and that have not been reaped. This avoid races on
6092 platforms such as GTK, where other threads create their own
6093 subprocesses which the main thread should not reap. For example,
6094 if the main thread attempted to reap an already-reaped child, it
6095 might inadvertently reap a GTK-created process that happened to
6096 have the same process ID. */
6098 /* Handle a SIGCHLD signal by looking for known child processes of
6099 Emacs whose status have changed. For each one found, record its
6102 All we do is change the status; we do not run sentinels or print
6103 notifications. That is saved for the next time keyboard input is
6104 done, in order to avoid timing errors.
6106 ** WARNING: this can be called during garbage collection.
6107 Therefore, it must not be fooled by the presence of mark bits in
6110 ** USG WARNING: Although it is not obvious from the documentation
6111 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6112 signal() before executing at least one wait(), otherwise the
6113 handler will be called again, resulting in an infinite loop. The
6114 relevant portion of the documentation reads "SIGCLD signals will be
6115 queued and the signal-catching function will be continually
6116 reentered until the queue is empty". Invoking signal() causes the
6117 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6120 ** Malloc WARNING: This should never call malloc either directly or
6121 indirectly; if it does, that is a bug */
6124 handle_child_signal (int sig
)
6128 /* Find the process that signaled us, and record its status. */
6130 /* The process can have been deleted by Fdelete_process, or have
6131 been started asynchronously by Fcall_process. */
6132 for (tail
= deleted_pid_list
; CONSP (tail
); tail
= XCDR (tail
))
6134 bool all_pids_are_fixnums
6135 = (MOST_NEGATIVE_FIXNUM
<= TYPE_MINIMUM (pid_t
)
6136 && TYPE_MAXIMUM (pid_t
) <= MOST_POSITIVE_FIXNUM
);
6137 Lisp_Object xpid
= XCAR (tail
);
6138 if (all_pids_are_fixnums
? INTEGERP (xpid
) : NUMBERP (xpid
))
6141 if (INTEGERP (xpid
))
6142 deleted_pid
= XINT (xpid
);
6144 deleted_pid
= XFLOAT_DATA (xpid
);
6145 if (child_status_changed (deleted_pid
, 0, 0))
6146 XSETCAR (tail
, Qnil
);
6150 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6151 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6153 Lisp_Object proc
= XCDR (XCAR (tail
));
6154 struct Lisp_Process
*p
= XPROCESS (proc
);
6157 if (p
->alive
&& child_status_changed (p
->pid
, &status
, WUNTRACED
))
6159 /* Change the status of the process that was found. */
6160 p
->tick
= ++process_tick
;
6161 p
->raw_status
= status
;
6162 p
->raw_status_new
= 1;
6164 /* If process has terminated, stop waiting for its output. */
6165 if (WIFSIGNALED (status
) || WIFEXITED (status
))
6167 bool clear_desc_flag
= 0;
6170 clear_desc_flag
= 1;
6172 /* clear_desc_flag avoids a compiler bug in Microsoft C. */
6173 if (clear_desc_flag
)
6175 FD_CLR (p
->infd
, &input_wait_mask
);
6176 FD_CLR (p
->infd
, &non_keyboard_wait_mask
);
6184 deliver_child_signal (int sig
)
6186 deliver_process_signal (sig
, handle_child_signal
);
6191 exec_sentinel_unwind (Lisp_Object data
)
6193 pset_sentinel (XPROCESS (XCAR (data
)), XCDR (data
));
6198 exec_sentinel_error_handler (Lisp_Object error_val
)
6200 cmd_error_internal (error_val
, "error in process sentinel: ");
6202 update_echo_area ();
6203 Fsleep_for (make_number (2), Qnil
);
6208 exec_sentinel (Lisp_Object proc
, Lisp_Object reason
)
6210 Lisp_Object sentinel
, odeactivate
;
6211 struct Lisp_Process
*p
= XPROCESS (proc
);
6212 ptrdiff_t count
= SPECPDL_INDEX ();
6213 bool outer_running_asynch_code
= running_asynch_code
;
6214 int waiting
= waiting_for_user_input_p
;
6216 if (inhibit_sentinels
)
6219 /* No need to gcpro these, because all we do with them later
6220 is test them for EQness, and none of them should be a string. */
6221 odeactivate
= Vdeactivate_mark
;
6223 Lisp_Object obuffer
, okeymap
;
6224 XSETBUFFER (obuffer
, current_buffer
);
6225 okeymap
= BVAR (current_buffer
, keymap
);
6228 /* There's no good reason to let sentinels change the current
6229 buffer, and many callers of accept-process-output, sit-for, and
6230 friends don't expect current-buffer to be changed from under them. */
6231 record_unwind_current_buffer ();
6233 sentinel
= p
->sentinel
;
6234 if (NILP (sentinel
))
6237 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6238 assure that it gets restored no matter how the sentinel exits. */
6239 pset_sentinel (p
, Qnil
);
6240 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
6241 /* Inhibit quit so that random quits don't screw up a running filter. */
6242 specbind (Qinhibit_quit
, Qt
);
6243 specbind (Qlast_nonmenu_event
, Qt
); /* Why? --Stef */
6245 /* In case we get recursively called,
6246 and we already saved the match data nonrecursively,
6247 save the same match data in safely recursive fashion. */
6248 if (outer_running_asynch_code
)
6251 tem
= Fmatch_data (Qnil
, Qnil
, Qnil
);
6252 restore_search_regs ();
6253 record_unwind_save_match_data ();
6254 Fset_match_data (tem
, Qt
);
6257 /* For speed, if a search happens within this code,
6258 save the match data in a special nonrecursive fashion. */
6259 running_asynch_code
= 1;
6261 internal_condition_case_1 (read_process_output_call
,
6263 Fcons (proc
, Fcons (reason
, Qnil
))),
6264 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
6265 exec_sentinel_error_handler
);
6267 /* If we saved the match data nonrecursively, restore it now. */
6268 restore_search_regs ();
6269 running_asynch_code
= outer_running_asynch_code
;
6271 Vdeactivate_mark
= odeactivate
;
6273 /* Restore waiting_for_user_input_p as it was
6274 when we were called, in case the filter clobbered it. */
6275 waiting_for_user_input_p
= waiting
;
6278 if (! EQ (Fcurrent_buffer (), obuffer
)
6279 || ! EQ (current_buffer
->keymap
, okeymap
))
6281 /* But do it only if the caller is actually going to read events.
6282 Otherwise there's no need to make him wake up, and it could
6283 cause trouble (for example it would make sit_for return). */
6284 if (waiting_for_user_input_p
== -1)
6285 record_asynch_buffer_change ();
6287 unbind_to (count
, Qnil
);
6290 /* Report all recent events of a change in process status
6291 (either run the sentinel or output a message).
6292 This is usually done while Emacs is waiting for keyboard input
6293 but can be done at other times. */
6296 status_notify (struct Lisp_Process
*deleting_process
)
6298 register Lisp_Object proc
, buffer
;
6299 Lisp_Object tail
, msg
;
6300 struct gcpro gcpro1
, gcpro2
;
6304 /* We need to gcpro tail; if read_process_output calls a filter
6305 which deletes a process and removes the cons to which tail points
6306 from Vprocess_alist, and then causes a GC, tail is an unprotected
6310 /* Set this now, so that if new processes are created by sentinels
6311 that we run, we get called again to handle their status changes. */
6312 update_tick
= process_tick
;
6314 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6317 register struct Lisp_Process
*p
;
6319 proc
= Fcdr (XCAR (tail
));
6320 p
= XPROCESS (proc
);
6322 if (p
->tick
!= p
->update_tick
)
6324 p
->update_tick
= p
->tick
;
6326 /* If process is still active, read any output that remains. */
6327 while (! EQ (p
->filter
, Qt
)
6328 && ! EQ (p
->status
, Qconnect
)
6329 && ! EQ (p
->status
, Qlisten
)
6330 /* Network or serial process not stopped: */
6331 && ! EQ (p
->command
, Qt
)
6333 && p
!= deleting_process
6334 && read_process_output (proc
, p
->infd
) > 0);
6338 /* Get the text to use for the message. */
6339 if (p
->raw_status_new
)
6341 msg
= status_message (p
);
6343 /* If process is terminated, deactivate it or delete it. */
6345 if (CONSP (p
->status
))
6346 symbol
= XCAR (p
->status
);
6348 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
6349 || EQ (symbol
, Qclosed
))
6351 if (delete_exited_processes
)
6352 remove_process (proc
);
6354 deactivate_process (proc
);
6357 /* The actions above may have further incremented p->tick.
6358 So set p->update_tick again
6359 so that an error in the sentinel will not cause
6360 this code to be run again. */
6361 p
->update_tick
= p
->tick
;
6362 /* Now output the message suitably. */
6363 if (!NILP (p
->sentinel
))
6364 exec_sentinel (proc
, msg
);
6365 /* Don't bother with a message in the buffer
6366 when a process becomes runnable. */
6367 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
6370 struct buffer
*old
= current_buffer
;
6371 ptrdiff_t opoint
, opoint_byte
;
6372 ptrdiff_t before
, before_byte
;
6374 /* Avoid error if buffer is deleted
6375 (probably that's why the process is dead, too) */
6376 if (!BUFFER_LIVE_P (XBUFFER (buffer
)))
6378 Fset_buffer (buffer
);
6381 opoint_byte
= PT_BYTE
;
6382 /* Insert new output into buffer
6383 at the current end-of-output marker,
6384 thus preserving logical ordering of input and output. */
6385 if (XMARKER (p
->mark
)->buffer
)
6386 Fgoto_char (p
->mark
);
6388 SET_PT_BOTH (ZV
, ZV_BYTE
);
6391 before_byte
= PT_BYTE
;
6393 tem
= BVAR (current_buffer
, read_only
);
6394 bset_read_only (current_buffer
, Qnil
);
6395 insert_string ("\nProcess ");
6396 { /* FIXME: temporary kludge */
6397 Lisp_Object tem2
= p
->name
; Finsert (1, &tem2
); }
6398 insert_string (" ");
6400 bset_read_only (current_buffer
, tem
);
6401 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
6403 if (opoint
>= before
)
6404 SET_PT_BOTH (opoint
+ (PT
- before
),
6405 opoint_byte
+ (PT_BYTE
- before_byte
));
6407 SET_PT_BOTH (opoint
, opoint_byte
);
6409 set_buffer_internal (old
);
6414 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
6419 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
6420 Sset_process_coding_system
, 1, 3, 0,
6421 doc
: /* Set coding systems of PROCESS to DECODING and ENCODING.
6422 DECODING will be used to decode subprocess output and ENCODING to
6423 encode subprocess input. */)
6424 (register Lisp_Object process
, Lisp_Object decoding
, Lisp_Object encoding
)
6426 register struct Lisp_Process
*p
;
6428 CHECK_PROCESS (process
);
6429 p
= XPROCESS (process
);
6431 error ("Input file descriptor of %s closed", SDATA (p
->name
));
6433 error ("Output file descriptor of %s closed", SDATA (p
->name
));
6434 Fcheck_coding_system (decoding
);
6435 Fcheck_coding_system (encoding
);
6436 encoding
= coding_inherit_eol_type (encoding
, Qnil
);
6437 pset_decode_coding_system (p
, decoding
);
6438 pset_encode_coding_system (p
, encoding
);
6439 setup_process_coding_systems (process
);
6444 DEFUN ("process-coding-system",
6445 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
6446 doc
: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6447 (register Lisp_Object process
)
6449 CHECK_PROCESS (process
);
6450 return Fcons (XPROCESS (process
)->decode_coding_system
,
6451 XPROCESS (process
)->encode_coding_system
);
6454 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte
,
6455 Sset_process_filter_multibyte
, 2, 2, 0,
6456 doc
: /* Set multibyteness of the strings given to PROCESS's filter.
6457 If FLAG is non-nil, the filter is given multibyte strings.
6458 If FLAG is nil, the filter is given unibyte strings. In this case,
6459 all character code conversion except for end-of-line conversion is
6461 (Lisp_Object process
, Lisp_Object flag
)
6463 register struct Lisp_Process
*p
;
6465 CHECK_PROCESS (process
);
6466 p
= XPROCESS (process
);
6468 pset_decode_coding_system
6469 (p
, raw_text_coding_system (p
->decode_coding_system
));
6470 setup_process_coding_systems (process
);
6475 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p
,
6476 Sprocess_filter_multibyte_p
, 1, 1, 0,
6477 doc
: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6478 (Lisp_Object process
)
6480 register struct Lisp_Process
*p
;
6481 struct coding_system
*coding
;
6483 CHECK_PROCESS (process
);
6484 p
= XPROCESS (process
);
6485 coding
= proc_decode_coding_system
[p
->infd
];
6486 return (CODING_FOR_UNIBYTE (coding
) ? Qnil
: Qt
);
6495 add_gpm_wait_descriptor (int desc
)
6497 add_keyboard_wait_descriptor (desc
);
6501 delete_gpm_wait_descriptor (int desc
)
6503 delete_keyboard_wait_descriptor (desc
);
6508 # ifdef USABLE_SIGIO
6510 /* Return true if *MASK has a bit set
6511 that corresponds to one of the keyboard input descriptors. */
6514 keyboard_bit_set (fd_set
*mask
)
6518 for (fd
= 0; fd
<= max_input_desc
; fd
++)
6519 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
6520 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
6527 #else /* not subprocesses */
6529 /* Defined on msdos.c. */
6530 extern int sys_select (int, SELECT_TYPE
*, SELECT_TYPE
*, SELECT_TYPE
*,
6531 EMACS_TIME
*, void *);
6533 /* Implementation of wait_reading_process_output, assuming that there
6534 are no subprocesses. Used only by the MS-DOS build.
6536 Wait for timeout to elapse and/or keyboard input to be available.
6540 If negative, gobble data immediately available but don't wait for any.
6543 an additional duration to wait, measured in nanoseconds
6544 If TIME_LIMIT is zero, then:
6545 If NSECS == 0, there is no limit.
6546 If NSECS > 0, the timeout consists of NSECS only.
6547 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
6550 0 to ignore keyboard input, or
6551 1 to return when input is available, or
6552 -1 means caller will actually read the input, so don't throw to
6555 see full version for other parameters. We know that wait_proc will
6556 always be NULL, since `subprocesses' isn't defined.
6558 DO_DISPLAY means redisplay should be done to show subprocess
6559 output that arrives.
6561 Return true if we received input from any process. */
6564 wait_reading_process_output (intmax_t time_limit
, int nsecs
, int read_kbd
,
6566 Lisp_Object wait_for_cell
,
6567 struct Lisp_Process
*wait_proc
, int just_wait_proc
)
6570 EMACS_TIME end_time
, timeout
;
6577 else if (TYPE_MAXIMUM (time_t) < time_limit
)
6578 time_limit
= TYPE_MAXIMUM (time_t);
6580 /* What does time_limit really mean? */
6581 if (time_limit
|| nsecs
> 0)
6583 timeout
= make_emacs_time (time_limit
, nsecs
);
6584 end_time
= add_emacs_time (current_emacs_time (), timeout
);
6587 /* Turn off periodic alarms (in case they are in use)
6588 and then turn off any other atimers,
6589 because the select emulator uses alarms. */
6591 turn_on_atimers (0);
6595 bool timeout_reduced_for_timers
= 0;
6596 SELECT_TYPE waitchannels
;
6599 /* If calling from keyboard input, do not quit
6600 since we want to return C-g as an input character.
6601 Otherwise, do pending quit if requested. */
6605 /* Exit now if the cell we're waiting for became non-nil. */
6606 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6609 /* Compute time from now till when time limit is up */
6610 /* Exit if already run out */
6613 /* A negative timeout means
6614 gobble output available now
6615 but don't wait at all. */
6617 timeout
= make_emacs_time (0, 0);
6619 else if (time_limit
|| nsecs
> 0)
6621 EMACS_TIME now
= current_emacs_time ();
6622 if (EMACS_TIME_LE (end_time
, now
))
6624 timeout
= sub_emacs_time (end_time
, now
);
6628 timeout
= make_emacs_time (100000, 0);
6631 /* If our caller will not immediately handle keyboard events,
6632 run timer events directly.
6633 (Callers that will immediately read keyboard events
6634 call timer_delay on their own.) */
6635 if (NILP (wait_for_cell
))
6637 EMACS_TIME timer_delay
;
6641 unsigned old_timers_run
= timers_run
;
6642 timer_delay
= timer_check ();
6643 if (timers_run
!= old_timers_run
&& do_display
)
6644 /* We must retry, since a timer may have requeued itself
6645 and that could alter the time delay. */
6646 redisplay_preserve_echo_area (14);
6650 while (!detect_input_pending ());
6652 /* If there is unread keyboard input, also return. */
6654 && requeued_events_pending_p ())
6657 if (EMACS_TIME_VALID_P (timer_delay
) && nsecs
>= 0)
6659 if (EMACS_TIME_LT (timer_delay
, timeout
))
6661 timeout
= timer_delay
;
6662 timeout_reduced_for_timers
= 1;
6667 /* Cause C-g and alarm signals to take immediate action,
6668 and cause input available signals to zero out timeout. */
6670 set_waiting_for_input (&timeout
);
6672 /* If a frame has been newly mapped and needs updating,
6673 reprocess its display stuff. */
6674 if (frame_garbaged
&& do_display
)
6676 clear_waiting_for_input ();
6677 redisplay_preserve_echo_area (15);
6679 set_waiting_for_input (&timeout
);
6682 /* Wait till there is something to do. */
6683 FD_ZERO (&waitchannels
);
6684 if (read_kbd
&& detect_input_pending ())
6688 if (read_kbd
|| !NILP (wait_for_cell
))
6689 FD_SET (0, &waitchannels
);
6690 nfds
= pselect (1, &waitchannels
, NULL
, NULL
, &timeout
, NULL
);
6695 /* Make C-g and alarm signals set flags again */
6696 clear_waiting_for_input ();
6698 /* If we woke up due to SIGWINCH, actually change size now. */
6699 do_pending_window_change (0);
6701 if ((time_limit
|| nsecs
) && nfds
== 0 && ! timeout_reduced_for_timers
)
6702 /* We waited the full specified time, so return now. */
6707 /* If the system call was interrupted, then go around the
6709 if (xerrno
== EINTR
)
6710 FD_ZERO (&waitchannels
);
6712 error ("select error: %s", emacs_strerror (xerrno
));
6715 /* Check for keyboard input */
6718 && detect_input_pending_run_timers (do_display
))
6720 swallow_events (do_display
);
6721 if (detect_input_pending_run_timers (do_display
))
6725 /* If there is unread keyboard input, also return. */
6727 && requeued_events_pending_p ())
6730 /* If wait_for_cell. check for keyboard input
6731 but don't run any timers.
6732 ??? (It seems wrong to me to check for keyboard
6733 input at all when wait_for_cell, but the code
6734 has been this way since July 1994.
6735 Try changing this after version 19.31.) */
6736 if (! NILP (wait_for_cell
)
6737 && detect_input_pending ())
6739 swallow_events (do_display
);
6740 if (detect_input_pending ())
6744 /* Exit now if the cell we're waiting for became non-nil. */
6745 if (! NILP (wait_for_cell
) && ! NILP (XCAR (wait_for_cell
)))
6754 #endif /* not subprocesses */
6756 /* The following functions are needed even if async subprocesses are
6757 not supported. Some of them are no-op stubs in that case. */
6759 /* Add DESC to the set of keyboard input descriptors. */
6762 add_keyboard_wait_descriptor (int desc
)
6764 #ifdef subprocesses /* actually means "not MSDOS" */
6765 FD_SET (desc
, &input_wait_mask
);
6766 FD_SET (desc
, &non_process_wait_mask
);
6767 if (desc
> max_input_desc
)
6768 max_input_desc
= desc
;
6772 /* From now on, do not expect DESC to give keyboard input. */
6775 delete_keyboard_wait_descriptor (int desc
)
6779 int lim
= max_input_desc
;
6781 FD_CLR (desc
, &input_wait_mask
);
6782 FD_CLR (desc
, &non_process_wait_mask
);
6784 if (desc
== max_input_desc
)
6785 for (fd
= 0; fd
< lim
; fd
++)
6786 if (FD_ISSET (fd
, &input_wait_mask
) || FD_ISSET (fd
, &write_mask
))
6787 max_input_desc
= fd
;
6791 /* Setup coding systems of PROCESS. */
6794 setup_process_coding_systems (Lisp_Object process
)
6797 struct Lisp_Process
*p
= XPROCESS (process
);
6799 int outch
= p
->outfd
;
6800 Lisp_Object coding_system
;
6802 if (inch
< 0 || outch
< 0)
6805 if (!proc_decode_coding_system
[inch
])
6806 proc_decode_coding_system
[inch
] = xmalloc (sizeof (struct coding_system
));
6807 coding_system
= p
->decode_coding_system
;
6808 if (! NILP (p
->filter
))
6810 else if (BUFFERP (p
->buffer
))
6812 if (NILP (BVAR (XBUFFER (p
->buffer
), enable_multibyte_characters
)))
6813 coding_system
= raw_text_coding_system (coding_system
);
6815 setup_coding_system (coding_system
, proc_decode_coding_system
[inch
]);
6817 if (!proc_encode_coding_system
[outch
])
6818 proc_encode_coding_system
[outch
] = xmalloc (sizeof (struct coding_system
));
6819 setup_coding_system (p
->encode_coding_system
,
6820 proc_encode_coding_system
[outch
]);
6824 /* Close all descriptors currently in use for communication
6825 with subprocess. This is used in a newly-forked subprocess
6826 to get rid of irrelevant descriptors. */
6829 close_process_descs (void)
6833 for (i
= 0; i
< MAXDESC
; i
++)
6835 Lisp_Object process
;
6836 process
= chan_process
[i
];
6837 if (!NILP (process
))
6839 int in
= XPROCESS (process
)->infd
;
6840 int out
= XPROCESS (process
)->outfd
;
6843 if (out
>= 0 && in
!= out
)
6850 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
6851 doc
: /* Return the (or a) process associated with BUFFER.
6852 BUFFER may be a buffer or the name of one. */)
6853 (register Lisp_Object buffer
)
6856 register Lisp_Object buf
, tail
, proc
;
6858 if (NILP (buffer
)) return Qnil
;
6859 buf
= Fget_buffer (buffer
);
6860 if (NILP (buf
)) return Qnil
;
6862 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6864 proc
= Fcdr (XCAR (tail
));
6865 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
6868 #endif /* subprocesses */
6872 DEFUN ("process-inherit-coding-system-flag",
6873 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
6875 doc
: /* Return the value of inherit-coding-system flag for PROCESS.
6876 If this flag is t, `buffer-file-coding-system' of the buffer
6877 associated with PROCESS will inherit the coding system used to decode
6878 the process output. */)
6879 (register Lisp_Object process
)
6882 CHECK_PROCESS (process
);
6883 return XPROCESS (process
)->inherit_coding_system_flag
? Qt
: Qnil
;
6885 /* Ignore the argument and return the value of
6886 inherit-process-coding-system. */
6887 return inherit_process_coding_system
? Qt
: Qnil
;
6891 /* Kill all processes associated with `buffer'.
6892 If `buffer' is nil, kill all processes */
6895 kill_buffer_processes (Lisp_Object buffer
)
6898 Lisp_Object tail
, proc
;
6900 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
6902 proc
= XCDR (XCAR (tail
));
6904 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
6906 if (NETCONN_P (proc
) || SERIALCONN_P (proc
))
6907 Fdelete_process (proc
);
6908 else if (XPROCESS (proc
)->infd
>= 0)
6909 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
6912 #else /* subprocesses */
6913 /* Since we have no subprocesses, this does nothing. */
6914 #endif /* subprocesses */
6917 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
,
6918 Swaiting_for_user_input_p
, 0, 0, 0,
6919 doc
: /* Returns non-nil if Emacs is waiting for input from the user.
6920 This is intended for use by asynchronous process output filters and sentinels. */)
6924 return (waiting_for_user_input_p
? Qt
: Qnil
);
6930 /* Stop reading input from keyboard sources. */
6933 hold_keyboard_input (void)
6938 /* Resume reading input from keyboard sources. */
6941 unhold_keyboard_input (void)
6946 /* Return true if keyboard input is on hold, zero otherwise. */
6949 kbd_on_hold_p (void)
6951 return kbd_is_on_hold
;
6955 /* Enumeration of and access to system processes a-la ps(1). */
6957 DEFUN ("list-system-processes", Flist_system_processes
, Slist_system_processes
,
6959 doc
: /* Return a list of numerical process IDs of all running processes.
6960 If this functionality is unsupported, return nil.
6962 See `process-attributes' for getting attributes of a process given its ID. */)
6965 return list_system_processes ();
6968 DEFUN ("process-attributes", Fprocess_attributes
,
6969 Sprocess_attributes
, 1, 1, 0,
6970 doc
: /* Return attributes of the process given by its PID, a number.
6972 Value is an alist where each element is a cons cell of the form
6976 If this functionality is unsupported, the value is nil.
6978 See `list-system-processes' for getting a list of all process IDs.
6980 The KEYs of the attributes that this function may return are listed
6981 below, together with the type of the associated VALUE (in parentheses).
6982 Not all platforms support all of these attributes; unsupported
6983 attributes will not appear in the returned alist.
6984 Unless explicitly indicated otherwise, numbers can have either
6985 integer or floating point values.
6987 euid -- Effective user User ID of the process (number)
6988 user -- User name corresponding to euid (string)
6989 egid -- Effective user Group ID of the process (number)
6990 group -- Group name corresponding to egid (string)
6991 comm -- Command name (executable name only) (string)
6992 state -- Process state code, such as "S", "R", or "T" (string)
6993 ppid -- Parent process ID (number)
6994 pgrp -- Process group ID (number)
6995 sess -- Session ID, i.e. process ID of session leader (number)
6996 ttname -- Controlling tty name (string)
6997 tpgid -- ID of foreground process group on the process's tty (number)
6998 minflt -- number of minor page faults (number)
6999 majflt -- number of major page faults (number)
7000 cminflt -- cumulative number of minor page faults (number)
7001 cmajflt -- cumulative number of major page faults (number)
7002 utime -- user time used by the process, in (current-time) format,
7003 which is a list of integers (HIGH LOW USEC PSEC)
7004 stime -- system time used by the process (current-time)
7005 time -- sum of utime and stime (current-time)
7006 cutime -- user time used by the process and its children (current-time)
7007 cstime -- system time used by the process and its children (current-time)
7008 ctime -- sum of cutime and cstime (current-time)
7009 pri -- priority of the process (number)
7010 nice -- nice value of the process (number)
7011 thcount -- process thread count (number)
7012 start -- time the process started (current-time)
7013 vsize -- virtual memory size of the process in KB's (number)
7014 rss -- resident set size of the process in KB's (number)
7015 etime -- elapsed time the process is running, in (HIGH LOW USEC PSEC) format
7016 pcpu -- percents of CPU time used by the process (floating-point number)
7017 pmem -- percents of total physical memory used by process's resident set
7018 (floating-point number)
7019 args -- command line which invoked the process (string). */)
7022 return system_process_attributes (pid
);
7026 /* This is not called "init_process" because that is the name of a
7027 Mach system call, so it would cause problems on Darwin systems. */
7029 init_process_emacs (void)
7034 inhibit_sentinels
= 0;
7037 if (! noninteractive
|| initialized
)
7040 struct sigaction action
;
7041 emacs_sigaction_init (&action
, deliver_child_signal
);
7042 sigaction (SIGCHLD
, &action
, 0);
7045 FD_ZERO (&input_wait_mask
);
7046 FD_ZERO (&non_keyboard_wait_mask
);
7047 FD_ZERO (&non_process_wait_mask
);
7048 FD_ZERO (&write_mask
);
7049 max_process_desc
= 0;
7050 memset (fd_callback_info
, 0, sizeof (fd_callback_info
));
7052 #ifdef NON_BLOCKING_CONNECT
7053 FD_ZERO (&connect_wait_mask
);
7054 num_pending_connects
= 0;
7057 #ifdef ADAPTIVE_READ_BUFFERING
7058 process_output_delay_count
= 0;
7059 process_output_skip
= 0;
7062 /* Don't do this, it caused infinite select loops. The display
7063 method should call add_keyboard_wait_descriptor on stdin if it
7066 FD_SET (0, &input_wait_mask
);
7069 Vprocess_alist
= Qnil
;
7070 deleted_pid_list
= Qnil
;
7071 for (i
= 0; i
< MAXDESC
; i
++)
7073 chan_process
[i
] = Qnil
;
7074 proc_buffered_char
[i
] = -1;
7076 memset (proc_decode_coding_system
, 0, sizeof proc_decode_coding_system
);
7077 memset (proc_encode_coding_system
, 0, sizeof proc_encode_coding_system
);
7078 #ifdef DATAGRAM_SOCKETS
7079 memset (datagram_address
, 0, sizeof datagram_address
);
7083 Lisp_Object subfeatures
= Qnil
;
7084 const struct socket_options
*sopt
;
7086 #define ADD_SUBFEATURE(key, val) \
7087 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7089 #ifdef NON_BLOCKING_CONNECT
7090 ADD_SUBFEATURE (QCnowait
, Qt
);
7092 #ifdef DATAGRAM_SOCKETS
7093 ADD_SUBFEATURE (QCtype
, Qdatagram
);
7095 #ifdef HAVE_SEQPACKET
7096 ADD_SUBFEATURE (QCtype
, Qseqpacket
);
7098 #ifdef HAVE_LOCAL_SOCKETS
7099 ADD_SUBFEATURE (QCfamily
, Qlocal
);
7101 ADD_SUBFEATURE (QCfamily
, Qipv4
);
7103 ADD_SUBFEATURE (QCfamily
, Qipv6
);
7105 #ifdef HAVE_GETSOCKNAME
7106 ADD_SUBFEATURE (QCservice
, Qt
);
7108 ADD_SUBFEATURE (QCserver
, Qt
);
7110 for (sopt
= socket_options
; sopt
->name
; sopt
++)
7111 subfeatures
= pure_cons (intern_c_string (sopt
->name
), subfeatures
);
7113 Fprovide (intern_c_string ("make-network-process"), subfeatures
);
7116 #if defined (DARWIN_OS)
7117 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7118 processes. As such, we only change the default value. */
7121 char const *release
= (STRINGP (Voperating_system_release
)
7122 ? SSDATA (Voperating_system_release
)
7124 if (!release
|| !release
[0] || (release
[0] < '7' && release
[1] == '.')) {
7125 Vprocess_connection_type
= Qnil
;
7129 #endif /* subprocesses */
7134 syms_of_process (void)
7138 DEFSYM (Qprocessp
, "processp");
7139 DEFSYM (Qrun
, "run");
7140 DEFSYM (Qstop
, "stop");
7141 DEFSYM (Qsignal
, "signal");
7143 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7146 Qexit = intern_c_string ("exit");
7147 staticpro (&Qexit); */
7149 DEFSYM (Qopen
, "open");
7150 DEFSYM (Qclosed
, "closed");
7151 DEFSYM (Qconnect
, "connect");
7152 DEFSYM (Qfailed
, "failed");
7153 DEFSYM (Qlisten
, "listen");
7154 DEFSYM (Qlocal
, "local");
7155 DEFSYM (Qipv4
, "ipv4");
7157 DEFSYM (Qipv6
, "ipv6");
7159 DEFSYM (Qdatagram
, "datagram");
7160 DEFSYM (Qseqpacket
, "seqpacket");
7162 DEFSYM (QCport
, ":port");
7163 DEFSYM (QCspeed
, ":speed");
7164 DEFSYM (QCprocess
, ":process");
7166 DEFSYM (QCbytesize
, ":bytesize");
7167 DEFSYM (QCstopbits
, ":stopbits");
7168 DEFSYM (QCparity
, ":parity");
7169 DEFSYM (Qodd
, "odd");
7170 DEFSYM (Qeven
, "even");
7171 DEFSYM (QCflowcontrol
, ":flowcontrol");
7174 DEFSYM (QCsummary
, ":summary");
7176 DEFSYM (Qreal
, "real");
7177 DEFSYM (Qnetwork
, "network");
7178 DEFSYM (Qserial
, "serial");
7179 DEFSYM (QCbuffer
, ":buffer");
7180 DEFSYM (QChost
, ":host");
7181 DEFSYM (QCservice
, ":service");
7182 DEFSYM (QClocal
, ":local");
7183 DEFSYM (QCremote
, ":remote");
7184 DEFSYM (QCcoding
, ":coding");
7185 DEFSYM (QCserver
, ":server");
7186 DEFSYM (QCnowait
, ":nowait");
7187 DEFSYM (QCsentinel
, ":sentinel");
7188 DEFSYM (QClog
, ":log");
7189 DEFSYM (QCnoquery
, ":noquery");
7190 DEFSYM (QCstop
, ":stop");
7191 DEFSYM (QCoptions
, ":options");
7192 DEFSYM (QCplist
, ":plist");
7194 DEFSYM (Qlast_nonmenu_event
, "last-nonmenu-event");
7196 staticpro (&Vprocess_alist
);
7197 staticpro (&deleted_pid_list
);
7199 #endif /* subprocesses */
7201 DEFSYM (QCname
, ":name");
7202 DEFSYM (QCtype
, ":type");
7204 DEFSYM (Qeuid
, "euid");
7205 DEFSYM (Qegid
, "egid");
7206 DEFSYM (Quser
, "user");
7207 DEFSYM (Qgroup
, "group");
7208 DEFSYM (Qcomm
, "comm");
7209 DEFSYM (Qstate
, "state");
7210 DEFSYM (Qppid
, "ppid");
7211 DEFSYM (Qpgrp
, "pgrp");
7212 DEFSYM (Qsess
, "sess");
7213 DEFSYM (Qttname
, "ttname");
7214 DEFSYM (Qtpgid
, "tpgid");
7215 DEFSYM (Qminflt
, "minflt");
7216 DEFSYM (Qmajflt
, "majflt");
7217 DEFSYM (Qcminflt
, "cminflt");
7218 DEFSYM (Qcmajflt
, "cmajflt");
7219 DEFSYM (Qutime
, "utime");
7220 DEFSYM (Qstime
, "stime");
7221 DEFSYM (Qtime
, "time");
7222 DEFSYM (Qcutime
, "cutime");
7223 DEFSYM (Qcstime
, "cstime");
7224 DEFSYM (Qctime
, "ctime");
7225 DEFSYM (Qpri
, "pri");
7226 DEFSYM (Qnice
, "nice");
7227 DEFSYM (Qthcount
, "thcount");
7228 DEFSYM (Qstart
, "start");
7229 DEFSYM (Qvsize
, "vsize");
7230 DEFSYM (Qrss
, "rss");
7231 DEFSYM (Qetime
, "etime");
7232 DEFSYM (Qpcpu
, "pcpu");
7233 DEFSYM (Qpmem
, "pmem");
7234 DEFSYM (Qargs
, "args");
7236 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes
,
7237 doc
: /* Non-nil means delete processes immediately when they exit.
7238 A value of nil means don't delete them until `list-processes' is run. */);
7240 delete_exited_processes
= 1;
7243 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type
,
7244 doc
: /* Control type of device used to communicate with subprocesses.
7245 Values are nil to use a pipe, or t or `pty' to use a pty.
7246 The value has no effect if the system has no ptys or if all ptys are busy:
7247 then a pipe is used in any case.
7248 The value takes effect when `start-process' is called. */);
7249 Vprocess_connection_type
= Qt
;
7251 #ifdef ADAPTIVE_READ_BUFFERING
7252 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering
,
7253 doc
: /* If non-nil, improve receive buffering by delaying after short reads.
7254 On some systems, when Emacs reads the output from a subprocess, the output data
7255 is read in very small blocks, potentially resulting in very poor performance.
7256 This behavior can be remedied to some extent by setting this variable to a
7257 non-nil value, as it will automatically delay reading from such processes, to
7258 allow them to produce more output before Emacs tries to read it.
7259 If the value is t, the delay is reset after each write to the process; any other
7260 non-nil value means that the delay is not reset on write.
7261 The variable takes effect when `start-process' is called. */);
7262 Vprocess_adaptive_read_buffering
= Qt
;
7265 defsubr (&Sprocessp
);
7266 defsubr (&Sget_process
);
7267 defsubr (&Sdelete_process
);
7268 defsubr (&Sprocess_status
);
7269 defsubr (&Sprocess_exit_status
);
7270 defsubr (&Sprocess_id
);
7271 defsubr (&Sprocess_name
);
7272 defsubr (&Sprocess_tty_name
);
7273 defsubr (&Sprocess_command
);
7274 defsubr (&Sset_process_buffer
);
7275 defsubr (&Sprocess_buffer
);
7276 defsubr (&Sprocess_mark
);
7277 defsubr (&Sset_process_filter
);
7278 defsubr (&Sprocess_filter
);
7279 defsubr (&Sset_process_sentinel
);
7280 defsubr (&Sprocess_sentinel
);
7281 defsubr (&Sset_process_window_size
);
7282 defsubr (&Sset_process_inherit_coding_system_flag
);
7283 defsubr (&Sset_process_query_on_exit_flag
);
7284 defsubr (&Sprocess_query_on_exit_flag
);
7285 defsubr (&Sprocess_contact
);
7286 defsubr (&Sprocess_plist
);
7287 defsubr (&Sset_process_plist
);
7288 defsubr (&Sprocess_list
);
7289 defsubr (&Sstart_process
);
7290 defsubr (&Sserial_process_configure
);
7291 defsubr (&Smake_serial_process
);
7292 defsubr (&Sset_network_process_option
);
7293 defsubr (&Smake_network_process
);
7294 defsubr (&Sformat_network_address
);
7295 #if defined (HAVE_NET_IF_H)
7297 defsubr (&Snetwork_interface_list
);
7299 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
7300 defsubr (&Snetwork_interface_info
);
7302 #endif /* defined (HAVE_NET_IF_H) */
7303 #ifdef DATAGRAM_SOCKETS
7304 defsubr (&Sprocess_datagram_address
);
7305 defsubr (&Sset_process_datagram_address
);
7307 defsubr (&Saccept_process_output
);
7308 defsubr (&Sprocess_send_region
);
7309 defsubr (&Sprocess_send_string
);
7310 defsubr (&Sinterrupt_process
);
7311 defsubr (&Skill_process
);
7312 defsubr (&Squit_process
);
7313 defsubr (&Sstop_process
);
7314 defsubr (&Scontinue_process
);
7315 defsubr (&Sprocess_running_child_p
);
7316 defsubr (&Sprocess_send_eof
);
7317 defsubr (&Ssignal_process
);
7318 defsubr (&Swaiting_for_user_input_p
);
7319 defsubr (&Sprocess_type
);
7320 defsubr (&Sset_process_coding_system
);
7321 defsubr (&Sprocess_coding_system
);
7322 defsubr (&Sset_process_filter_multibyte
);
7323 defsubr (&Sprocess_filter_multibyte_p
);
7325 #endif /* subprocesses */
7327 defsubr (&Sget_buffer_process
);
7328 defsubr (&Sprocess_inherit_coding_system_flag
);
7329 defsubr (&Slist_system_processes
);
7330 defsubr (&Sprocess_attributes
);