* process.c (wait_reading_process_output): 'waitchannels' was unset
[emacs.git] / src / process.c
blobb8c3a18b33da11e435824fd8336c5efc81f73dbd
1 /* Asynchronous subprocess control for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2012
4 Free Software Foundation, Inc.
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/>. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <errno.h>
26 #include <setjmp.h>
27 #include <sys/types.h> /* Some typedefs are used in sys/file.h. */
28 #include <sys/file.h>
29 #include <sys/stat.h>
30 #include <setjmp.h>
32 #include <unistd.h>
33 #include <fcntl.h>
35 #include "lisp.h"
37 /* Only MS-DOS does not define `subprocesses'. */
38 #ifdef subprocesses
40 #include <sys/socket.h>
41 #include <netdb.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
45 /* Are local (unix) sockets supported? */
46 #if defined (HAVE_SYS_UN_H)
47 #if !defined (AF_LOCAL) && defined (AF_UNIX)
48 #define AF_LOCAL AF_UNIX
49 #endif
50 #ifdef AF_LOCAL
51 #define HAVE_LOCAL_SOCKETS
52 #include <sys/un.h>
53 #endif
54 #endif
56 #include <sys/ioctl.h>
57 #if defined (HAVE_NET_IF_H)
58 #include <net/if.h>
59 #endif /* HAVE_NET_IF_H */
61 #if defined (HAVE_IFADDRS_H)
62 /* Must be after net/if.h */
63 #include <ifaddrs.h>
65 /* We only use structs from this header when we use getifaddrs. */
66 #if defined (HAVE_NET_IF_DL_H)
67 #include <net/if_dl.h>
68 #endif
70 #endif
72 #ifdef NEED_BSDTTY
73 #include <bsdtty.h>
74 #endif
76 #ifdef HAVE_RES_INIT
77 #include <netinet/in.h>
78 #include <arpa/nameser.h>
79 #include <resolv.h>
80 #endif
82 #ifdef HAVE_UTIL_H
83 #include <util.h>
84 #endif
86 #ifdef HAVE_PTY_H
87 #include <pty.h>
88 #endif
90 #endif /* subprocesses */
92 #include "systime.h"
93 #include "systty.h"
95 #include "window.h"
96 #include "character.h"
97 #include "buffer.h"
98 #include "coding.h"
99 #include "process.h"
100 #include "frame.h"
101 #include "termhooks.h"
102 #include "termopts.h"
103 #include "commands.h"
104 #include "keyboard.h"
105 #include "blockinput.h"
106 #include "dispextern.h"
107 #include "composite.h"
108 #include "atimer.h"
109 #include "sysselect.h"
110 #include "syssignal.h"
111 #include "syswait.h"
112 #ifdef HAVE_GNUTLS
113 #include "gnutls.h"
114 #endif
116 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
117 #include "xgselect.h"
118 #endif
119 #ifdef HAVE_NS
120 #include "nsterm.h"
121 #endif
123 /* Work around GCC 4.7.0 bug with strict overflow checking; see
124 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>.
125 These lines can be removed once the GCC bug is fixed. */
126 #if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
127 # pragma GCC diagnostic ignored "-Wstrict-overflow"
128 #endif
130 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
131 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
132 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
133 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
134 Lisp_Object QCname, QCtype;
136 /* Non-zero if keyboard input is on hold, zero otherwise. */
138 static int kbd_is_on_hold;
140 /* Nonzero means don't run process sentinels. This is used
141 when exiting. */
142 int inhibit_sentinels;
144 #ifdef subprocesses
146 Lisp_Object Qprocessp;
147 static Lisp_Object Qrun, Qstop, Qsignal;
148 static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
149 Lisp_Object Qlocal;
150 static Lisp_Object Qipv4, Qdatagram, Qseqpacket;
151 static Lisp_Object Qreal, Qnetwork, Qserial;
152 #ifdef AF_INET6
153 static Lisp_Object Qipv6;
154 #endif
155 static Lisp_Object QCport, QCprocess;
156 Lisp_Object QCspeed;
157 Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
158 Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
159 static Lisp_Object QCbuffer, QChost, QCservice;
160 static Lisp_Object QClocal, QCremote, QCcoding;
161 static Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
162 static Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
163 static Lisp_Object Qlast_nonmenu_event;
164 /* QCfamily is declared and initialized in xfaces.c,
165 QCfilter in keyboard.c. */
166 extern Lisp_Object QCfamily, QCfilter;
168 /* Qexit is declared and initialized in eval.c. */
170 /* QCfamily is defined in xfaces.c. */
171 extern Lisp_Object QCfamily;
172 /* QCfilter is defined in keyboard.c. */
173 extern Lisp_Object QCfilter;
175 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
176 #define NETCONN1_P(p) (EQ ((p)->type, Qnetwork))
177 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
178 #define SERIALCONN1_P(p) (EQ ((p)->type, Qserial))
180 #ifndef HAVE_H_ERRNO
181 extern int h_errno;
182 #endif
184 /* Number of events of change of status of a process. */
185 static EMACS_INT process_tick;
186 /* Number of events for which the user or sentinel has been notified. */
187 static EMACS_INT update_tick;
189 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
191 /* Only W32 has this, it really means that select can't take write mask. */
192 #ifdef BROKEN_NON_BLOCKING_CONNECT
193 #undef NON_BLOCKING_CONNECT
194 #define SELECT_CANT_DO_WRITE_MASK
195 #else
196 #ifndef NON_BLOCKING_CONNECT
197 #ifdef HAVE_SELECT
198 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
199 #if defined (O_NONBLOCK) || defined (O_NDELAY)
200 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
201 #define NON_BLOCKING_CONNECT
202 #endif /* EWOULDBLOCK || EINPROGRESS */
203 #endif /* O_NONBLOCK || O_NDELAY */
204 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
205 #endif /* HAVE_SELECT */
206 #endif /* NON_BLOCKING_CONNECT */
207 #endif /* BROKEN_NON_BLOCKING_CONNECT */
209 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
210 this system. We need to read full packets, so we need a
211 "non-destructive" select. So we require either native select,
212 or emulation of select using FIONREAD. */
214 #ifdef BROKEN_DATAGRAM_SOCKETS
215 #undef DATAGRAM_SOCKETS
216 #else
217 #ifndef DATAGRAM_SOCKETS
218 #if defined (HAVE_SELECT) || defined (FIONREAD)
219 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
220 #define DATAGRAM_SOCKETS
221 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
222 #endif /* HAVE_SELECT || FIONREAD */
223 #endif /* DATAGRAM_SOCKETS */
224 #endif /* BROKEN_DATAGRAM_SOCKETS */
226 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
227 # define HAVE_SEQPACKET
228 #endif
230 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
231 #define ADAPTIVE_READ_BUFFERING
232 #endif
234 #ifdef ADAPTIVE_READ_BUFFERING
235 #define READ_OUTPUT_DELAY_INCREMENT (EMACS_TIME_RESOLUTION / 100)
236 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
237 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
239 /* Number of processes which have a non-zero read_output_delay,
240 and therefore might be delayed for adaptive read buffering. */
242 static int process_output_delay_count;
244 /* Non-zero if any process has non-nil read_output_skip. */
246 static int process_output_skip;
248 #else
249 #define process_output_delay_count 0
250 #endif
252 static void create_process (Lisp_Object, char **, Lisp_Object);
253 #ifdef SIGIO
254 static int keyboard_bit_set (SELECT_TYPE *);
255 #endif
256 static void deactivate_process (Lisp_Object);
257 static void status_notify (struct Lisp_Process *);
258 static int read_process_output (Lisp_Object, int);
259 static void create_pty (Lisp_Object);
261 /* If we support a window system, turn on the code to poll periodically
262 to detect C-g. It isn't actually used when doing interrupt input. */
263 #if defined (HAVE_WINDOW_SYSTEM) && !defined (USE_ASYNC_EVENTS)
264 #define POLL_FOR_INPUT
265 #endif
267 static Lisp_Object get_process (register Lisp_Object name);
268 static void exec_sentinel (Lisp_Object proc, Lisp_Object reason);
270 /* Mask of bits indicating the descriptors that we wait for input on. */
272 static SELECT_TYPE input_wait_mask;
274 /* Mask that excludes keyboard input descriptor(s). */
276 static SELECT_TYPE non_keyboard_wait_mask;
278 /* Mask that excludes process input descriptor(s). */
280 static SELECT_TYPE non_process_wait_mask;
282 /* Mask for selecting for write. */
284 static SELECT_TYPE write_mask;
286 #ifdef NON_BLOCKING_CONNECT
287 /* Mask of bits indicating the descriptors that we wait for connect to
288 complete on. Once they complete, they are removed from this mask
289 and added to the input_wait_mask and non_keyboard_wait_mask. */
291 static SELECT_TYPE connect_wait_mask;
293 /* Number of bits set in connect_wait_mask. */
294 static int num_pending_connects;
295 #endif /* NON_BLOCKING_CONNECT */
297 /* The largest descriptor currently in use for a process object. */
298 static int max_process_desc;
300 /* The largest descriptor currently in use for input. */
301 static int max_input_desc;
303 /* Indexed by descriptor, gives the process (if any) for that descriptor */
304 static Lisp_Object chan_process[MAXDESC];
306 /* Alist of elements (NAME . PROCESS) */
307 static Lisp_Object Vprocess_alist;
309 /* Buffered-ahead input char from process, indexed by channel.
310 -1 means empty (no char is buffered).
311 Used on sys V where the only way to tell if there is any
312 output from the process is to read at least one char.
313 Always -1 on systems that support FIONREAD. */
315 static int proc_buffered_char[MAXDESC];
317 /* Table of `struct coding-system' for each process. */
318 static struct coding_system *proc_decode_coding_system[MAXDESC];
319 static struct coding_system *proc_encode_coding_system[MAXDESC];
321 #ifdef DATAGRAM_SOCKETS
322 /* Table of `partner address' for datagram sockets. */
323 static struct sockaddr_and_len {
324 struct sockaddr *sa;
325 int len;
326 } datagram_address[MAXDESC];
327 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
328 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
329 #else
330 #define DATAGRAM_CHAN_P(chan) (0)
331 #define DATAGRAM_CONN_P(proc) (0)
332 #endif
334 /* Maximum number of bytes to send to a pty without an eof. */
335 static int pty_max_bytes;
339 static struct fd_callback_data
341 fd_callback func;
342 void *data;
343 #define FOR_READ 1
344 #define FOR_WRITE 2
345 int condition; /* mask of the defines above. */
346 } fd_callback_info[MAXDESC];
349 /* Add a file descriptor FD to be monitored for when read is possible.
350 When read is possible, call FUNC with argument DATA. */
352 void
353 add_read_fd (int fd, fd_callback func, void *data)
355 eassert (fd < MAXDESC);
356 add_keyboard_wait_descriptor (fd);
358 fd_callback_info[fd].func = func;
359 fd_callback_info[fd].data = data;
360 fd_callback_info[fd].condition |= FOR_READ;
363 /* Stop monitoring file descriptor FD for when read is possible. */
365 void
366 delete_read_fd (int fd)
368 eassert (fd < MAXDESC);
369 delete_keyboard_wait_descriptor (fd);
371 fd_callback_info[fd].condition &= ~FOR_READ;
372 if (fd_callback_info[fd].condition == 0)
374 fd_callback_info[fd].func = 0;
375 fd_callback_info[fd].data = 0;
379 /* Add a file descriptor FD to be monitored for when write is possible.
380 When write is possible, call FUNC with argument DATA. */
382 void
383 add_write_fd (int fd, fd_callback func, void *data)
385 eassert (fd < MAXDESC);
386 FD_SET (fd, &write_mask);
387 if (fd > max_input_desc)
388 max_input_desc = fd;
390 fd_callback_info[fd].func = func;
391 fd_callback_info[fd].data = data;
392 fd_callback_info[fd].condition |= FOR_WRITE;
395 /* Stop monitoring file descriptor FD for when write is possible. */
397 void
398 delete_write_fd (int fd)
400 int lim = max_input_desc;
402 eassert (fd < MAXDESC);
403 FD_CLR (fd, &write_mask);
404 fd_callback_info[fd].condition &= ~FOR_WRITE;
405 if (fd_callback_info[fd].condition == 0)
407 fd_callback_info[fd].func = 0;
408 fd_callback_info[fd].data = 0;
410 if (fd == max_input_desc)
411 for (fd = lim; fd >= 0; fd--)
412 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
414 max_input_desc = fd;
415 break;
422 /* Compute the Lisp form of the process status, p->status, from
423 the numeric status that was returned by `wait'. */
425 static Lisp_Object status_convert (int);
427 static void
428 update_status (struct Lisp_Process *p)
430 eassert (p->raw_status_new);
431 p->status = status_convert (p->raw_status);
432 p->raw_status_new = 0;
435 /* Convert a process status word in Unix format to
436 the list that we use internally. */
438 static Lisp_Object
439 status_convert (int w)
441 if (WIFSTOPPED (w))
442 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
443 else if (WIFEXITED (w))
444 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
445 WCOREDUMP (w) ? Qt : Qnil));
446 else if (WIFSIGNALED (w))
447 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
448 WCOREDUMP (w) ? Qt : Qnil));
449 else
450 return Qrun;
453 /* Given a status-list, extract the three pieces of information
454 and store them individually through the three pointers. */
456 static void
457 decode_status (Lisp_Object l, Lisp_Object *symbol, int *code, int *coredump)
459 Lisp_Object tem;
461 if (SYMBOLP (l))
463 *symbol = l;
464 *code = 0;
465 *coredump = 0;
467 else
469 *symbol = XCAR (l);
470 tem = XCDR (l);
471 *code = XFASTINT (XCAR (tem));
472 tem = XCDR (tem);
473 *coredump = !NILP (tem);
477 /* Return a string describing a process status list. */
479 static Lisp_Object
480 status_message (struct Lisp_Process *p)
482 Lisp_Object status = p->status;
483 Lisp_Object symbol;
484 int code, coredump;
485 Lisp_Object string, string2;
487 decode_status (status, &symbol, &code, &coredump);
489 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
491 char *signame;
492 synchronize_system_messages_locale ();
493 signame = strsignal (code);
494 if (signame == 0)
495 string = build_string ("unknown");
496 else
498 int c1, c2;
500 string = make_unibyte_string (signame, strlen (signame));
501 if (! NILP (Vlocale_coding_system))
502 string = (code_convert_string_norecord
503 (string, Vlocale_coding_system, 0));
504 c1 = STRING_CHAR (SDATA (string));
505 c2 = downcase (c1);
506 if (c1 != c2)
507 Faset (string, make_number (0), make_number (c2));
509 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
510 return concat2 (string, string2);
512 else if (EQ (symbol, Qexit))
514 if (NETCONN1_P (p))
515 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
516 if (code == 0)
517 return build_string ("finished\n");
518 string = Fnumber_to_string (make_number (code));
519 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
520 return concat3 (build_string ("exited abnormally with code "),
521 string, string2);
523 else if (EQ (symbol, Qfailed))
525 string = Fnumber_to_string (make_number (code));
526 string2 = build_string ("\n");
527 return concat3 (build_string ("failed with code "),
528 string, string2);
530 else
531 return Fcopy_sequence (Fsymbol_name (symbol));
534 #ifdef HAVE_PTYS
536 /* The file name of the pty opened by allocate_pty. */
537 static char pty_name[24];
539 /* Open an available pty, returning a file descriptor.
540 Return -1 on failure.
541 The file name of the terminal corresponding to the pty
542 is left in the variable pty_name. */
544 static int
545 allocate_pty (void)
547 int fd;
549 #ifdef PTY_ITERATION
550 PTY_ITERATION
551 #else
552 register int c, i;
553 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
554 for (i = 0; i < 16; i++)
555 #endif
557 #ifdef PTY_NAME_SPRINTF
558 PTY_NAME_SPRINTF
559 #else
560 sprintf (pty_name, "/dev/pty%c%x", c, i);
561 #endif /* no PTY_NAME_SPRINTF */
563 #ifdef PTY_OPEN
564 PTY_OPEN;
565 #else /* no PTY_OPEN */
567 { /* Some systems name their pseudoterminals so that there are gaps in
568 the usual sequence - for example, on HP9000/S700 systems, there
569 are no pseudoterminals with names ending in 'f'. So we wait for
570 three failures in a row before deciding that we've reached the
571 end of the ptys. */
572 int failed_count = 0;
573 struct stat stb;
575 if (stat (pty_name, &stb) < 0)
577 failed_count++;
578 if (failed_count >= 3)
579 return -1;
581 else
582 failed_count = 0;
584 # ifdef O_NONBLOCK
585 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
586 # else
587 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
588 # endif
590 #endif /* no PTY_OPEN */
592 if (fd >= 0)
594 /* check to make certain that both sides are available
595 this avoids a nasty yet stupid bug in rlogins */
596 #ifdef PTY_TTY_NAME_SPRINTF
597 PTY_TTY_NAME_SPRINTF
598 #else
599 sprintf (pty_name, "/dev/tty%c%x", c, i);
600 #endif /* no PTY_TTY_NAME_SPRINTF */
601 if (access (pty_name, 6) != 0)
603 emacs_close (fd);
604 # ifndef __sgi
605 continue;
606 # else
607 return -1;
608 # endif /* __sgi */
610 setup_pty (fd);
611 return fd;
614 return -1;
616 #endif /* HAVE_PTYS */
618 static Lisp_Object
619 make_process (Lisp_Object name)
621 register Lisp_Object val, tem, name1;
622 register struct Lisp_Process *p;
623 char suffix[sizeof "<>" + INT_STRLEN_BOUND (printmax_t)];
624 printmax_t i;
626 p = allocate_process ();
627 /* Initialize Lisp data. Note that allocate_process initializes all
628 Lisp data to nil, so do it only for slots which should not be nil. */
629 p->status = Qrun;
630 p->mark = Fmake_marker ();
632 /* Initialize non-Lisp data. Note that allocate_process zeroes out all
633 non-Lisp data, so do it only for slots which should not be zero. */
634 p->infd = -1;
635 p->outfd = -1;
637 #ifdef HAVE_GNUTLS
638 p->gnutls_initstage = GNUTLS_STAGE_EMPTY;
639 #endif
641 /* If name is already in use, modify it until it is unused. */
643 name1 = name;
644 for (i = 1; ; i++)
646 tem = Fget_process (name1);
647 if (NILP (tem)) break;
648 name1 = concat2 (name, make_formatted_string (suffix, "<%"pMd">", i));
650 name = name1;
651 p->name = name;
652 XSETPROCESS (val, p);
653 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
654 return val;
657 static void
658 remove_process (register Lisp_Object proc)
660 register Lisp_Object pair;
662 pair = Frassq (proc, Vprocess_alist);
663 Vprocess_alist = Fdelq (pair, Vprocess_alist);
665 deactivate_process (proc);
669 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
670 doc: /* Return t if OBJECT is a process. */)
671 (Lisp_Object object)
673 return PROCESSP (object) ? Qt : Qnil;
676 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
677 doc: /* Return the process named NAME, or nil if there is none. */)
678 (register Lisp_Object name)
680 if (PROCESSP (name))
681 return name;
682 CHECK_STRING (name);
683 return Fcdr (Fassoc (name, Vprocess_alist));
686 /* This is how commands for the user decode process arguments. It
687 accepts a process, a process name, a buffer, a buffer name, or nil.
688 Buffers denote the first process in the buffer, and nil denotes the
689 current buffer. */
691 static Lisp_Object
692 get_process (register Lisp_Object name)
694 register Lisp_Object proc, obj;
695 if (STRINGP (name))
697 obj = Fget_process (name);
698 if (NILP (obj))
699 obj = Fget_buffer (name);
700 if (NILP (obj))
701 error ("Process %s does not exist", SDATA (name));
703 else if (NILP (name))
704 obj = Fcurrent_buffer ();
705 else
706 obj = name;
708 /* Now obj should be either a buffer object or a process object.
710 if (BUFFERP (obj))
712 proc = Fget_buffer_process (obj);
713 if (NILP (proc))
714 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj), name)));
716 else
718 CHECK_PROCESS (obj);
719 proc = obj;
721 return proc;
725 #ifdef SIGCHLD
726 /* Fdelete_process promises to immediately forget about the process, but in
727 reality, Emacs needs to remember those processes until they have been
728 treated by sigchld_handler; otherwise this handler would consider the
729 process as being synchronous and say that the synchronous process is
730 dead. */
731 static Lisp_Object deleted_pid_list;
732 #endif
734 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
735 doc: /* Delete PROCESS: kill it and forget about it immediately.
736 PROCESS may be a process, a buffer, the name of a process or buffer, or
737 nil, indicating the current buffer's process. */)
738 (register Lisp_Object process)
740 register struct Lisp_Process *p;
742 process = get_process (process);
743 p = XPROCESS (process);
745 p->raw_status_new = 0;
746 if (NETCONN1_P (p) || SERIALCONN1_P (p))
748 p->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
749 p->tick = ++process_tick;
750 status_notify (p);
751 redisplay_preserve_echo_area (13);
753 else if (p->infd >= 0)
755 #ifdef SIGCHLD
756 Lisp_Object symbol;
757 pid_t pid = p->pid;
759 /* No problem storing the pid here, as it is still in Vprocess_alist. */
760 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
761 /* GC treated elements set to nil. */
762 Fdelq (Qnil, deleted_pid_list));
763 /* If the process has already signaled, remove it from the list. */
764 if (p->raw_status_new)
765 update_status (p);
766 symbol = p->status;
767 if (CONSP (p->status))
768 symbol = XCAR (p->status);
769 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
770 deleted_pid_list
771 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
772 else
773 #endif
775 Fkill_process (process, Qnil);
776 /* Do this now, since remove_process will make sigchld_handler do nothing. */
777 p->status
778 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
779 p->tick = ++process_tick;
780 status_notify (p);
781 redisplay_preserve_echo_area (13);
784 remove_process (process);
785 return Qnil;
788 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
789 doc: /* Return the status of PROCESS.
790 The returned value is one of the following symbols:
791 run -- for a process that is running.
792 stop -- for a process stopped but continuable.
793 exit -- for a process that has exited.
794 signal -- for a process that has got a fatal signal.
795 open -- for a network stream connection that is open.
796 listen -- for a network stream server that is listening.
797 closed -- for a network stream connection that is closed.
798 connect -- when waiting for a non-blocking connection to complete.
799 failed -- when a non-blocking connection has failed.
800 nil -- if arg is a process name and no such process exists.
801 PROCESS may be a process, a buffer, the name of a process, or
802 nil, indicating the current buffer's process. */)
803 (register Lisp_Object process)
805 register struct Lisp_Process *p;
806 register Lisp_Object status;
808 if (STRINGP (process))
809 process = Fget_process (process);
810 else
811 process = get_process (process);
813 if (NILP (process))
814 return process;
816 p = XPROCESS (process);
817 if (p->raw_status_new)
818 update_status (p);
819 status = p->status;
820 if (CONSP (status))
821 status = XCAR (status);
822 if (NETCONN1_P (p) || SERIALCONN1_P (p))
824 if (EQ (status, Qexit))
825 status = Qclosed;
826 else if (EQ (p->command, Qt))
827 status = Qstop;
828 else if (EQ (status, Qrun))
829 status = Qopen;
831 return status;
834 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
835 1, 1, 0,
836 doc: /* Return the exit status of PROCESS or the signal number that killed it.
837 If PROCESS has not yet exited or died, return 0. */)
838 (register Lisp_Object process)
840 CHECK_PROCESS (process);
841 if (XPROCESS (process)->raw_status_new)
842 update_status (XPROCESS (process));
843 if (CONSP (XPROCESS (process)->status))
844 return XCAR (XCDR (XPROCESS (process)->status));
845 return make_number (0);
848 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
849 doc: /* Return the process id of PROCESS.
850 This is the pid of the external process which PROCESS uses or talks to.
851 For a network connection, this value is nil. */)
852 (register Lisp_Object process)
854 pid_t pid;
856 CHECK_PROCESS (process);
857 pid = XPROCESS (process)->pid;
858 return (pid ? make_fixnum_or_float (pid) : Qnil);
861 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
862 doc: /* Return the name of PROCESS, as a string.
863 This is the name of the program invoked in PROCESS,
864 possibly modified to make it unique among process names. */)
865 (register Lisp_Object process)
867 CHECK_PROCESS (process);
868 return XPROCESS (process)->name;
871 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
872 doc: /* Return the command that was executed to start PROCESS.
873 This is a list of strings, the first string being the program executed
874 and the rest of the strings being the arguments given to it.
875 For a network or serial process, this is nil (process is running) or t
876 \(process is stopped). */)
877 (register Lisp_Object process)
879 CHECK_PROCESS (process);
880 return XPROCESS (process)->command;
883 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
884 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
885 This is the terminal that the process itself reads and writes on,
886 not the name of the pty that Emacs uses to talk with that terminal. */)
887 (register Lisp_Object process)
889 CHECK_PROCESS (process);
890 return XPROCESS (process)->tty_name;
893 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
894 2, 2, 0,
895 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
896 Return BUFFER. */)
897 (register Lisp_Object process, Lisp_Object buffer)
899 struct Lisp_Process *p;
901 CHECK_PROCESS (process);
902 if (!NILP (buffer))
903 CHECK_BUFFER (buffer);
904 p = XPROCESS (process);
905 p->buffer = buffer;
906 if (NETCONN1_P (p) || SERIALCONN1_P (p))
907 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
908 setup_process_coding_systems (process);
909 return buffer;
912 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
913 1, 1, 0,
914 doc: /* Return the buffer PROCESS is associated with.
915 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
916 (register Lisp_Object process)
918 CHECK_PROCESS (process);
919 return XPROCESS (process)->buffer;
922 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
923 1, 1, 0,
924 doc: /* Return the marker for the end of the last output from PROCESS. */)
925 (register Lisp_Object process)
927 CHECK_PROCESS (process);
928 return XPROCESS (process)->mark;
931 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
932 2, 2, 0,
933 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
934 A value of t means stop accepting output from the process.
936 When a process has a filter, its buffer is not used for output.
937 Instead, each time it does output, the entire string of output is
938 passed to the filter.
940 The filter gets two arguments: the process and the string of output.
941 The string argument is normally a multibyte string, except:
942 - if the process' input coding system is no-conversion or raw-text,
943 it is a unibyte string (the non-converted input), or else
944 - if `default-enable-multibyte-characters' is nil, it is a unibyte
945 string (the result of converting the decoded input multibyte
946 string to unibyte with `string-make-unibyte'). */)
947 (register Lisp_Object process, Lisp_Object filter)
949 struct Lisp_Process *p;
951 CHECK_PROCESS (process);
952 p = XPROCESS (process);
954 /* Don't signal an error if the process' input file descriptor
955 is closed. This could make debugging Lisp more difficult,
956 for example when doing something like
958 (setq process (start-process ...))
959 (debug)
960 (set-process-filter process ...) */
962 if (p->infd >= 0)
964 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
966 FD_CLR (p->infd, &input_wait_mask);
967 FD_CLR (p->infd, &non_keyboard_wait_mask);
969 else if (EQ (p->filter, Qt)
970 /* Network or serial process not stopped: */
971 && !EQ (p->command, Qt))
973 FD_SET (p->infd, &input_wait_mask);
974 FD_SET (p->infd, &non_keyboard_wait_mask);
978 p->filter = filter;
979 if (NETCONN1_P (p) || SERIALCONN1_P (p))
980 p->childp = Fplist_put (p->childp, QCfilter, filter);
981 setup_process_coding_systems (process);
982 return filter;
985 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
986 1, 1, 0,
987 doc: /* Returns the filter function of PROCESS; nil if none.
988 See `set-process-filter' for more info on filter functions. */)
989 (register Lisp_Object process)
991 CHECK_PROCESS (process);
992 return XPROCESS (process)->filter;
995 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
996 2, 2, 0,
997 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
998 The sentinel is called as a function when the process changes state.
999 It gets two arguments: the process, and a string describing the change. */)
1000 (register Lisp_Object process, Lisp_Object sentinel)
1002 struct Lisp_Process *p;
1004 CHECK_PROCESS (process);
1005 p = XPROCESS (process);
1007 p->sentinel = sentinel;
1008 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1009 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
1010 return sentinel;
1013 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1014 1, 1, 0,
1015 doc: /* Return the sentinel of PROCESS; nil if none.
1016 See `set-process-sentinel' for more info on sentinels. */)
1017 (register Lisp_Object process)
1019 CHECK_PROCESS (process);
1020 return XPROCESS (process)->sentinel;
1023 DEFUN ("set-process-window-size", Fset_process_window_size,
1024 Sset_process_window_size, 3, 3, 0,
1025 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1026 (register Lisp_Object process, Lisp_Object height, Lisp_Object width)
1028 CHECK_PROCESS (process);
1029 CHECK_RANGED_INTEGER (height, 0, INT_MAX);
1030 CHECK_RANGED_INTEGER (width, 0, INT_MAX);
1032 if (XPROCESS (process)->infd < 0
1033 || set_window_size (XPROCESS (process)->infd,
1034 XINT (height), XINT (width)) <= 0)
1035 return Qnil;
1036 else
1037 return Qt;
1040 DEFUN ("set-process-inherit-coding-system-flag",
1041 Fset_process_inherit_coding_system_flag,
1042 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1043 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1044 If the second argument FLAG is non-nil, then the variable
1045 `buffer-file-coding-system' of the buffer associated with PROCESS
1046 will be bound to the value of the coding system used to decode
1047 the process output.
1049 This is useful when the coding system specified for the process buffer
1050 leaves either the character code conversion or the end-of-line conversion
1051 unspecified, or if the coding system used to decode the process output
1052 is more appropriate for saving the process buffer.
1054 Binding the variable `inherit-process-coding-system' to non-nil before
1055 starting the process is an alternative way of setting the inherit flag
1056 for the process which will run.
1058 This function returns FLAG. */)
1059 (register Lisp_Object process, Lisp_Object flag)
1061 CHECK_PROCESS (process);
1062 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1063 return flag;
1066 DEFUN ("set-process-query-on-exit-flag",
1067 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1068 2, 2, 0,
1069 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1070 If the second argument FLAG is non-nil, Emacs will query the user before
1071 exiting or killing a buffer if PROCESS is running. This function
1072 returns FLAG. */)
1073 (register Lisp_Object process, Lisp_Object flag)
1075 CHECK_PROCESS (process);
1076 XPROCESS (process)->kill_without_query = NILP (flag);
1077 return flag;
1080 DEFUN ("process-query-on-exit-flag",
1081 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1082 1, 1, 0,
1083 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1084 (register Lisp_Object process)
1086 CHECK_PROCESS (process);
1087 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1090 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1091 1, 2, 0,
1092 doc: /* Return the contact info of PROCESS; t for a real child.
1093 For a network or serial connection, the value depends on the optional
1094 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1095 SERVICE) for a network connection or (PORT SPEED) for a serial
1096 connection. If KEY is t, the complete contact information for the
1097 connection is returned, else the specific value for the keyword KEY is
1098 returned. See `make-network-process' or `make-serial-process' for a
1099 list of keywords. */)
1100 (register Lisp_Object process, Lisp_Object key)
1102 Lisp_Object contact;
1104 CHECK_PROCESS (process);
1105 contact = XPROCESS (process)->childp;
1107 #ifdef DATAGRAM_SOCKETS
1108 if (DATAGRAM_CONN_P (process)
1109 && (EQ (key, Qt) || EQ (key, QCremote)))
1110 contact = Fplist_put (contact, QCremote,
1111 Fprocess_datagram_address (process));
1112 #endif
1114 if ((!NETCONN_P (process) && !SERIALCONN_P (process)) || EQ (key, Qt))
1115 return contact;
1116 if (NILP (key) && NETCONN_P (process))
1117 return Fcons (Fplist_get (contact, QChost),
1118 Fcons (Fplist_get (contact, QCservice), Qnil));
1119 if (NILP (key) && SERIALCONN_P (process))
1120 return Fcons (Fplist_get (contact, QCport),
1121 Fcons (Fplist_get (contact, QCspeed), Qnil));
1122 return Fplist_get (contact, key);
1125 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1126 1, 1, 0,
1127 doc: /* Return the plist of PROCESS. */)
1128 (register Lisp_Object process)
1130 CHECK_PROCESS (process);
1131 return XPROCESS (process)->plist;
1134 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1135 2, 2, 0,
1136 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1137 (register Lisp_Object process, Lisp_Object plist)
1139 CHECK_PROCESS (process);
1140 CHECK_LIST (plist);
1142 XPROCESS (process)->plist = plist;
1143 return plist;
1146 #if 0 /* Turned off because we don't currently record this info
1147 in the process. Perhaps add it. */
1148 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1149 doc: /* Return the connection type of PROCESS.
1150 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1151 a socket connection. */)
1152 (Lisp_Object process)
1154 return XPROCESS (process)->type;
1156 #endif
1158 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1159 doc: /* Return the connection type of PROCESS.
1160 The value is either the symbol `real', `network', or `serial'.
1161 PROCESS may be a process, a buffer, the name of a process or buffer, or
1162 nil, indicating the current buffer's process. */)
1163 (Lisp_Object process)
1165 Lisp_Object proc;
1166 proc = get_process (process);
1167 return XPROCESS (proc)->type;
1170 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1171 1, 2, 0,
1172 doc: /* Convert network ADDRESS from internal format to a string.
1173 A 4 or 5 element vector represents an IPv4 address (with port number).
1174 An 8 or 9 element vector represents an IPv6 address (with port number).
1175 If optional second argument OMIT-PORT is non-nil, don't include a port
1176 number in the string, even when present in ADDRESS.
1177 Returns nil if format of ADDRESS is invalid. */)
1178 (Lisp_Object address, Lisp_Object omit_port)
1180 if (NILP (address))
1181 return Qnil;
1183 if (STRINGP (address)) /* AF_LOCAL */
1184 return address;
1186 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1188 register struct Lisp_Vector *p = XVECTOR (address);
1189 ptrdiff_t size = p->header.size;
1190 Lisp_Object args[10];
1191 int nargs, i;
1193 if (size == 4 || (size == 5 && !NILP (omit_port)))
1195 args[0] = build_string ("%d.%d.%d.%d");
1196 nargs = 4;
1198 else if (size == 5)
1200 args[0] = build_string ("%d.%d.%d.%d:%d");
1201 nargs = 5;
1203 else if (size == 8 || (size == 9 && !NILP (omit_port)))
1205 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1206 nargs = 8;
1208 else if (size == 9)
1210 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1211 nargs = 9;
1213 else
1214 return Qnil;
1216 for (i = 0; i < nargs; i++)
1218 if (! RANGED_INTEGERP (0, p->contents[i], 65535))
1219 return Qnil;
1221 if (nargs <= 5 /* IPv4 */
1222 && i < 4 /* host, not port */
1223 && XINT (p->contents[i]) > 255)
1224 return Qnil;
1226 args[i+1] = p->contents[i];
1229 return Fformat (nargs+1, args);
1232 if (CONSP (address))
1234 Lisp_Object args[2];
1235 args[0] = build_string ("<Family %d>");
1236 args[1] = Fcar (address);
1237 return Fformat (2, args);
1240 return Qnil;
1243 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1244 doc: /* Return a list of all processes. */)
1245 (void)
1247 return Fmapcar (Qcdr, Vprocess_alist);
1250 /* Starting asynchronous inferior processes. */
1252 static Lisp_Object start_process_unwind (Lisp_Object proc);
1254 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1255 doc: /* Start a program in a subprocess. Return the process object for it.
1256 NAME is name for process. It is modified if necessary to make it unique.
1257 BUFFER is the buffer (or buffer name) to associate with the process.
1259 Process output (both standard output and standard error streams) goes
1260 at end of BUFFER, unless you specify an output stream or filter
1261 function to handle the output. BUFFER may also be nil, meaning that
1262 this process is not associated with any buffer.
1264 PROGRAM is the program file name. It is searched for in `exec-path'
1265 (which see). If nil, just associate a pty with the buffer. Remaining
1266 arguments are strings to give program as arguments.
1268 If you want to separate standard output from standard error, invoke
1269 the command through a shell and redirect one of them using the shell
1270 syntax.
1272 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1273 (ptrdiff_t nargs, Lisp_Object *args)
1275 Lisp_Object buffer, name, program, proc, current_dir, tem;
1276 register unsigned char **new_argv;
1277 ptrdiff_t i;
1278 ptrdiff_t count = SPECPDL_INDEX ();
1280 buffer = args[1];
1281 if (!NILP (buffer))
1282 buffer = Fget_buffer_create (buffer);
1284 /* Make sure that the child will be able to chdir to the current
1285 buffer's current directory, or its unhandled equivalent. We
1286 can't just have the child check for an error when it does the
1287 chdir, since it's in a vfork.
1289 We have to GCPRO around this because Fexpand_file_name and
1290 Funhandled_file_name_directory might call a file name handling
1291 function. The argument list is protected by the caller, so all
1292 we really have to worry about is buffer. */
1294 struct gcpro gcpro1, gcpro2;
1296 current_dir = BVAR (current_buffer, directory);
1298 GCPRO2 (buffer, current_dir);
1300 current_dir = Funhandled_file_name_directory (current_dir);
1301 if (NILP (current_dir))
1302 /* If the file name handler says that current_dir is unreachable, use
1303 a sensible default. */
1304 current_dir = build_string ("~/");
1305 current_dir = expand_and_dir_to_file (current_dir, Qnil);
1306 if (NILP (Ffile_accessible_directory_p (current_dir)))
1307 report_file_error ("Setting current directory",
1308 Fcons (BVAR (current_buffer, directory), Qnil));
1310 UNGCPRO;
1313 name = args[0];
1314 CHECK_STRING (name);
1316 program = args[2];
1318 if (!NILP (program))
1319 CHECK_STRING (program);
1321 proc = make_process (name);
1322 /* If an error occurs and we can't start the process, we want to
1323 remove it from the process list. This means that each error
1324 check in create_process doesn't need to call remove_process
1325 itself; it's all taken care of here. */
1326 record_unwind_protect (start_process_unwind, proc);
1328 XPROCESS (proc)->childp = Qt;
1329 XPROCESS (proc)->plist = Qnil;
1330 XPROCESS (proc)->type = Qreal;
1331 XPROCESS (proc)->buffer = buffer;
1332 XPROCESS (proc)->sentinel = Qnil;
1333 XPROCESS (proc)->filter = Qnil;
1334 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1336 #ifdef HAVE_GNUTLS
1337 /* AKA GNUTLS_INITSTAGE(proc). */
1338 XPROCESS (proc)->gnutls_initstage = GNUTLS_STAGE_EMPTY;
1339 XPROCESS (proc)->gnutls_cred_type = Qnil;
1340 #endif
1342 #ifdef ADAPTIVE_READ_BUFFERING
1343 XPROCESS (proc)->adaptive_read_buffering
1344 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1345 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1346 #endif
1348 /* Make the process marker point into the process buffer (if any). */
1349 if (BUFFERP (buffer))
1350 set_marker_both (XPROCESS (proc)->mark, buffer,
1351 BUF_ZV (XBUFFER (buffer)),
1352 BUF_ZV_BYTE (XBUFFER (buffer)));
1355 /* Decide coding systems for communicating with the process. Here
1356 we don't setup the structure coding_system nor pay attention to
1357 unibyte mode. They are done in create_process. */
1359 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1360 Lisp_Object coding_systems = Qt;
1361 Lisp_Object val, *args2;
1362 struct gcpro gcpro1, gcpro2;
1364 val = Vcoding_system_for_read;
1365 if (NILP (val))
1367 args2 = alloca ((nargs + 1) * sizeof *args2);
1368 args2[0] = Qstart_process;
1369 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1370 GCPRO2 (proc, current_dir);
1371 if (!NILP (program))
1372 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1373 UNGCPRO;
1374 if (CONSP (coding_systems))
1375 val = XCAR (coding_systems);
1376 else if (CONSP (Vdefault_process_coding_system))
1377 val = XCAR (Vdefault_process_coding_system);
1379 XPROCESS (proc)->decode_coding_system = val;
1381 val = Vcoding_system_for_write;
1382 if (NILP (val))
1384 if (EQ (coding_systems, Qt))
1386 args2 = alloca ((nargs + 1) * sizeof *args2);
1387 args2[0] = Qstart_process;
1388 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1389 GCPRO2 (proc, current_dir);
1390 if (!NILP (program))
1391 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1392 UNGCPRO;
1394 if (CONSP (coding_systems))
1395 val = XCDR (coding_systems);
1396 else if (CONSP (Vdefault_process_coding_system))
1397 val = XCDR (Vdefault_process_coding_system);
1399 XPROCESS (proc)->encode_coding_system = val;
1400 /* Note: At this moment, the above coding system may leave
1401 text-conversion or eol-conversion unspecified. They will be
1402 decided after we read output from the process and decode it by
1403 some coding system, or just before we actually send a text to
1404 the process. */
1408 XPROCESS (proc)->decoding_buf = empty_unibyte_string;
1409 XPROCESS (proc)->decoding_carryover = 0;
1410 XPROCESS (proc)->encoding_buf = empty_unibyte_string;
1412 XPROCESS (proc)->inherit_coding_system_flag
1413 = !(NILP (buffer) || !inherit_process_coding_system);
1415 if (!NILP (program))
1417 /* If program file name is not absolute, search our path for it.
1418 Put the name we will really use in TEM. */
1419 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1420 && !(SCHARS (program) > 1
1421 && IS_DEVICE_SEP (SREF (program, 1))))
1423 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1425 tem = Qnil;
1426 GCPRO4 (name, program, buffer, current_dir);
1427 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1428 UNGCPRO;
1429 if (NILP (tem))
1430 report_file_error ("Searching for program", Fcons (program, Qnil));
1431 tem = Fexpand_file_name (tem, Qnil);
1433 else
1435 if (!NILP (Ffile_directory_p (program)))
1436 error ("Specified program for new process is a directory");
1437 tem = program;
1440 /* If program file name starts with /: for quoting a magic name,
1441 discard that. */
1442 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1443 && SREF (tem, 1) == ':')
1444 tem = Fsubstring (tem, make_number (2), Qnil);
1447 Lisp_Object arg_encoding = Qnil;
1448 struct gcpro gcpro1;
1449 GCPRO1 (tem);
1451 /* Encode the file name and put it in NEW_ARGV.
1452 That's where the child will use it to execute the program. */
1453 tem = Fcons (ENCODE_FILE (tem), Qnil);
1455 /* Here we encode arguments by the coding system used for sending
1456 data to the process. We don't support using different coding
1457 systems for encoding arguments and for encoding data sent to the
1458 process. */
1460 for (i = 3; i < nargs; i++)
1462 tem = Fcons (args[i], tem);
1463 CHECK_STRING (XCAR (tem));
1464 if (STRING_MULTIBYTE (XCAR (tem)))
1466 if (NILP (arg_encoding))
1467 arg_encoding = (complement_process_encoding_system
1468 (XPROCESS (proc)->encode_coding_system));
1469 XSETCAR (tem,
1470 code_convert_string_norecord
1471 (XCAR (tem), arg_encoding, 1));
1475 UNGCPRO;
1478 /* Now that everything is encoded we can collect the strings into
1479 NEW_ARGV. */
1480 new_argv = alloca ((nargs - 1) * sizeof *new_argv);
1481 new_argv[nargs - 2] = 0;
1483 for (i = nargs - 2; i-- != 0; )
1485 new_argv[i] = SDATA (XCAR (tem));
1486 tem = XCDR (tem);
1489 create_process (proc, (char **) new_argv, current_dir);
1491 else
1492 create_pty (proc);
1494 return unbind_to (count, proc);
1497 /* This function is the unwind_protect form for Fstart_process. If
1498 PROC doesn't have its pid set, then we know someone has signaled
1499 an error and the process wasn't started successfully, so we should
1500 remove it from the process list. */
1501 static Lisp_Object
1502 start_process_unwind (Lisp_Object proc)
1504 if (!PROCESSP (proc))
1505 abort ();
1507 /* Was PROC started successfully?
1508 -2 is used for a pty with no process, eg for gdb. */
1509 if (XPROCESS (proc)->pid <= 0 && XPROCESS (proc)->pid != -2)
1510 remove_process (proc);
1512 return Qnil;
1515 static void
1516 create_process_1 (struct atimer *timer)
1518 /* Nothing to do. */
1522 static void
1523 create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1525 int inchannel, outchannel;
1526 pid_t pid;
1527 int sv[2];
1528 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1529 int wait_child_setup[2];
1530 #endif
1531 sigset_t procmask;
1532 sigset_t blocked;
1533 struct sigaction sigint_action;
1534 struct sigaction sigquit_action;
1535 struct sigaction sigpipe_action;
1536 #ifdef AIX
1537 struct sigaction sighup_action;
1538 #endif
1539 /* Use volatile to protect variables from being clobbered by longjmp. */
1540 volatile int forkin, forkout;
1541 volatile int pty_flag = 0;
1542 #ifndef USE_CRT_DLL
1543 extern char **environ;
1544 #endif
1546 inchannel = outchannel = -1;
1548 #ifdef HAVE_PTYS
1549 if (!NILP (Vprocess_connection_type))
1550 outchannel = inchannel = allocate_pty ();
1552 if (inchannel >= 0)
1554 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1555 /* On most USG systems it does not work to open the pty's tty here,
1556 then close it and reopen it in the child. */
1557 #ifdef O_NOCTTY
1558 /* Don't let this terminal become our controlling terminal
1559 (in case we don't have one). */
1560 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1561 #else
1562 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
1563 #endif
1564 if (forkin < 0)
1565 report_file_error ("Opening pty", Qnil);
1566 #else
1567 forkin = forkout = -1;
1568 #endif /* not USG, or USG_SUBTTY_WORKS */
1569 pty_flag = 1;
1571 else
1572 #endif /* HAVE_PTYS */
1574 int tem;
1575 tem = pipe (sv);
1576 if (tem < 0)
1577 report_file_error ("Creating pipe", Qnil);
1578 inchannel = sv[0];
1579 forkout = sv[1];
1580 tem = pipe (sv);
1581 if (tem < 0)
1583 emacs_close (inchannel);
1584 emacs_close (forkout);
1585 report_file_error ("Creating pipe", Qnil);
1587 outchannel = sv[1];
1588 forkin = sv[0];
1591 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1593 int tem;
1595 tem = pipe (wait_child_setup);
1596 if (tem < 0)
1597 report_file_error ("Creating pipe", Qnil);
1598 tem = fcntl (wait_child_setup[1], F_GETFD, 0);
1599 if (tem >= 0)
1600 tem = fcntl (wait_child_setup[1], F_SETFD, tem | FD_CLOEXEC);
1601 if (tem < 0)
1603 emacs_close (wait_child_setup[0]);
1604 emacs_close (wait_child_setup[1]);
1605 report_file_error ("Setting file descriptor flags", Qnil);
1608 #endif
1610 #ifdef O_NONBLOCK
1611 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1612 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1613 #else
1614 #ifdef O_NDELAY
1615 fcntl (inchannel, F_SETFL, O_NDELAY);
1616 fcntl (outchannel, F_SETFL, O_NDELAY);
1617 #endif
1618 #endif
1620 /* Record this as an active process, with its channels.
1621 As a result, child_setup will close Emacs's side of the pipes. */
1622 chan_process[inchannel] = process;
1623 XPROCESS (process)->infd = inchannel;
1624 XPROCESS (process)->outfd = outchannel;
1626 /* Previously we recorded the tty descriptor used in the subprocess.
1627 It was only used for getting the foreground tty process, so now
1628 we just reopen the device (see emacs_get_tty_pgrp) as this is
1629 more portable (see USG_SUBTTY_WORKS above). */
1631 XPROCESS (process)->pty_flag = pty_flag;
1632 XPROCESS (process)->status = Qrun;
1634 /* Delay interrupts until we have a chance to store
1635 the new fork's pid in its process structure */
1636 sigemptyset (&blocked);
1637 #ifdef SIGCHLD
1638 sigaddset (&blocked, SIGCHLD);
1639 #endif
1640 #ifdef HAVE_WORKING_VFORK
1641 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1642 this sets the parent's signal handlers as well as the child's.
1643 So delay all interrupts whose handlers the child might munge,
1644 and record the current handlers so they can be restored later. */
1645 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1646 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1647 sigaddset (&blocked, SIGPIPE); sigaction (SIGPIPE, 0, &sigpipe_action);
1648 #ifdef AIX
1649 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1650 #endif
1651 #endif /* HAVE_WORKING_VFORK */
1652 pthread_sigmask (SIG_BLOCK, &blocked, &procmask);
1654 FD_SET (inchannel, &input_wait_mask);
1655 FD_SET (inchannel, &non_keyboard_wait_mask);
1656 if (inchannel > max_process_desc)
1657 max_process_desc = inchannel;
1659 /* Until we store the proper pid, enable sigchld_handler
1660 to recognize an unknown pid as standing for this process.
1661 It is very important not to let this `marker' value stay
1662 in the table after this function has returned; if it does
1663 it might cause call-process to hang and subsequent asynchronous
1664 processes to get their return values scrambled. */
1665 XPROCESS (process)->pid = -1;
1667 /* This must be called after the above line because it may signal an
1668 error. */
1669 setup_process_coding_systems (process);
1671 BLOCK_INPUT;
1674 /* child_setup must clobber environ on systems with true vfork.
1675 Protect it from permanent change. */
1676 char **save_environ = environ;
1677 volatile Lisp_Object encoded_current_dir = ENCODE_FILE (current_dir);
1679 #ifndef WINDOWSNT
1680 pid = vfork ();
1681 if (pid == 0)
1682 #endif /* not WINDOWSNT */
1684 int xforkin = forkin;
1685 int xforkout = forkout;
1687 #if 0 /* This was probably a mistake--it duplicates code later on,
1688 but fails to handle all the cases. */
1689 /* Make sure SIGCHLD is not blocked in the child. */
1690 sigsetmask (SIGEMPTYMASK);
1691 #endif
1693 /* Make the pty be the controlling terminal of the process. */
1694 #ifdef HAVE_PTYS
1695 /* First, disconnect its current controlling terminal. */
1696 #ifdef HAVE_SETSID
1697 /* We tried doing setsid only if pty_flag, but it caused
1698 process_set_signal to fail on SGI when using a pipe. */
1699 setsid ();
1700 /* Make the pty's terminal the controlling terminal. */
1701 if (pty_flag && xforkin >= 0)
1703 #ifdef TIOCSCTTY
1704 /* We ignore the return value
1705 because faith@cs.unc.edu says that is necessary on Linux. */
1706 ioctl (xforkin, TIOCSCTTY, 0);
1707 #endif
1709 #else /* not HAVE_SETSID */
1710 #ifdef USG
1711 /* It's very important to call setpgrp here and no time
1712 afterwards. Otherwise, we lose our controlling tty which
1713 is set when we open the pty. */
1714 setpgrp ();
1715 #endif /* USG */
1716 #endif /* not HAVE_SETSID */
1717 #if defined (LDISC1)
1718 if (pty_flag && xforkin >= 0)
1720 struct termios t;
1721 tcgetattr (xforkin, &t);
1722 t.c_lflag = LDISC1;
1723 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1724 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1726 #else
1727 #if defined (NTTYDISC) && defined (TIOCSETD)
1728 if (pty_flag && xforkin >= 0)
1730 /* Use new line discipline. */
1731 int ldisc = NTTYDISC;
1732 ioctl (xforkin, TIOCSETD, &ldisc);
1734 #endif
1735 #endif
1736 #ifdef TIOCNOTTY
1737 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1738 can do TIOCSPGRP only to the process's controlling tty. */
1739 if (pty_flag)
1741 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1742 I can't test it since I don't have 4.3. */
1743 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1744 if (j >= 0)
1746 ioctl (j, TIOCNOTTY, 0);
1747 emacs_close (j);
1749 #ifndef USG
1750 /* In order to get a controlling terminal on some versions
1751 of BSD, it is necessary to put the process in pgrp 0
1752 before it opens the terminal. */
1753 #ifdef HAVE_SETPGID
1754 setpgid (0, 0);
1755 #else
1756 setpgrp (0, 0);
1757 #endif
1758 #endif
1760 #endif /* TIOCNOTTY */
1762 #if !defined (DONT_REOPEN_PTY)
1763 /*** There is a suggestion that this ought to be a
1764 conditional on TIOCSPGRP,
1765 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1766 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1767 that system does seem to need this code, even though
1768 both HAVE_SETSID and TIOCSCTTY are defined. */
1769 /* Now close the pty (if we had it open) and reopen it.
1770 This makes the pty the controlling terminal of the subprocess. */
1771 if (pty_flag)
1774 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1775 would work? */
1776 if (xforkin >= 0)
1777 emacs_close (xforkin);
1778 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
1780 if (xforkin < 0)
1782 emacs_write (1, "Couldn't open the pty terminal ", 31);
1783 emacs_write (1, pty_name, strlen (pty_name));
1784 emacs_write (1, "\n", 1);
1785 _exit (1);
1789 #endif /* not DONT_REOPEN_PTY */
1791 #ifdef SETUP_SLAVE_PTY
1792 if (pty_flag)
1794 SETUP_SLAVE_PTY;
1796 #endif /* SETUP_SLAVE_PTY */
1797 #ifdef AIX
1798 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1799 Now reenable it in the child, so it will die when we want it to. */
1800 if (pty_flag)
1801 signal (SIGHUP, SIG_DFL);
1802 #endif
1803 #endif /* HAVE_PTYS */
1805 signal (SIGINT, SIG_DFL);
1806 signal (SIGQUIT, SIG_DFL);
1807 /* GConf causes us to ignore SIGPIPE, make sure it is restored
1808 in the child. */
1809 signal (SIGPIPE, SIG_DFL);
1811 /* Stop blocking signals in the child. */
1812 pthread_sigmask (SIG_SETMASK, &procmask, 0);
1814 if (pty_flag)
1815 child_setup_tty (xforkout);
1816 #ifdef WINDOWSNT
1817 pid = child_setup (xforkin, xforkout, xforkout,
1818 new_argv, 1, encoded_current_dir);
1819 #else /* not WINDOWSNT */
1820 #ifdef FD_CLOEXEC
1821 emacs_close (wait_child_setup[0]);
1822 #endif
1823 child_setup (xforkin, xforkout, xforkout,
1824 new_argv, 1, encoded_current_dir);
1825 #endif /* not WINDOWSNT */
1827 environ = save_environ;
1830 UNBLOCK_INPUT;
1832 /* This runs in the Emacs process. */
1833 if (pid < 0)
1835 if (forkin >= 0)
1836 emacs_close (forkin);
1837 if (forkin != forkout && forkout >= 0)
1838 emacs_close (forkout);
1840 else
1842 /* vfork succeeded. */
1843 XPROCESS (process)->pid = pid;
1845 #ifdef WINDOWSNT
1846 register_child (pid, inchannel);
1847 #endif /* WINDOWSNT */
1849 /* If the subfork execv fails, and it exits,
1850 this close hangs. I don't know why.
1851 So have an interrupt jar it loose. */
1853 struct atimer *timer;
1854 EMACS_TIME offset;
1856 stop_polling ();
1857 EMACS_SET_SECS_USECS (offset, 1, 0);
1858 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
1860 if (forkin >= 0)
1861 emacs_close (forkin);
1863 cancel_atimer (timer);
1864 start_polling ();
1867 if (forkin != forkout && forkout >= 0)
1868 emacs_close (forkout);
1870 #ifdef HAVE_PTYS
1871 if (pty_flag)
1872 XPROCESS (process)->tty_name = build_string (pty_name);
1873 else
1874 #endif
1875 XPROCESS (process)->tty_name = Qnil;
1877 #if !defined (WINDOWSNT) && defined (FD_CLOEXEC)
1878 /* Wait for child_setup to complete in case that vfork is
1879 actually defined as fork. The descriptor wait_child_setup[1]
1880 of a pipe is closed at the child side either by close-on-exec
1881 on successful execvp or the _exit call in child_setup. */
1883 char dummy;
1885 emacs_close (wait_child_setup[1]);
1886 emacs_read (wait_child_setup[0], &dummy, 1);
1887 emacs_close (wait_child_setup[0]);
1889 #endif
1892 /* Restore the signal state whether vfork succeeded or not.
1893 (We will signal an error, below, if it failed.) */
1894 #ifdef HAVE_WORKING_VFORK
1895 /* Restore the parent's signal handlers. */
1896 sigaction (SIGINT, &sigint_action, 0);
1897 sigaction (SIGQUIT, &sigquit_action, 0);
1898 sigaction (SIGPIPE, &sigpipe_action, 0);
1899 #ifdef AIX
1900 sigaction (SIGHUP, &sighup_action, 0);
1901 #endif
1902 #endif /* HAVE_WORKING_VFORK */
1903 /* Stop blocking signals in the parent. */
1904 pthread_sigmask (SIG_SETMASK, &procmask, 0);
1906 /* Now generate the error if vfork failed. */
1907 if (pid < 0)
1908 report_file_error ("Doing vfork", Qnil);
1911 void
1912 create_pty (Lisp_Object process)
1914 int inchannel, outchannel;
1915 int pty_flag = 0;
1917 inchannel = outchannel = -1;
1919 #ifdef HAVE_PTYS
1920 if (!NILP (Vprocess_connection_type))
1921 outchannel = inchannel = allocate_pty ();
1923 if (inchannel >= 0)
1925 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1926 /* On most USG systems it does not work to open the pty's tty here,
1927 then close it and reopen it in the child. */
1928 #ifdef O_NOCTTY
1929 /* Don't let this terminal become our controlling terminal
1930 (in case we don't have one). */
1931 int forkout = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1932 #else
1933 int forkout = emacs_open (pty_name, O_RDWR, 0);
1934 #endif
1935 if (forkout < 0)
1936 report_file_error ("Opening pty", Qnil);
1937 #if defined (DONT_REOPEN_PTY)
1938 /* In the case that vfork is defined as fork, the parent process
1939 (Emacs) may send some data before the child process completes
1940 tty options setup. So we setup tty before forking. */
1941 child_setup_tty (forkout);
1942 #endif /* DONT_REOPEN_PTY */
1943 #endif /* not USG, or USG_SUBTTY_WORKS */
1944 pty_flag = 1;
1946 #endif /* HAVE_PTYS */
1948 #ifdef O_NONBLOCK
1949 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1950 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1951 #else
1952 #ifdef O_NDELAY
1953 fcntl (inchannel, F_SETFL, O_NDELAY);
1954 fcntl (outchannel, F_SETFL, O_NDELAY);
1955 #endif
1956 #endif
1958 /* Record this as an active process, with its channels.
1959 As a result, child_setup will close Emacs's side of the pipes. */
1960 chan_process[inchannel] = process;
1961 XPROCESS (process)->infd = inchannel;
1962 XPROCESS (process)->outfd = outchannel;
1964 /* Previously we recorded the tty descriptor used in the subprocess.
1965 It was only used for getting the foreground tty process, so now
1966 we just reopen the device (see emacs_get_tty_pgrp) as this is
1967 more portable (see USG_SUBTTY_WORKS above). */
1969 XPROCESS (process)->pty_flag = pty_flag;
1970 XPROCESS (process)->status = Qrun;
1971 setup_process_coding_systems (process);
1973 FD_SET (inchannel, &input_wait_mask);
1974 FD_SET (inchannel, &non_keyboard_wait_mask);
1975 if (inchannel > max_process_desc)
1976 max_process_desc = inchannel;
1978 XPROCESS (process)->pid = -2;
1979 #ifdef HAVE_PTYS
1980 if (pty_flag)
1981 XPROCESS (process)->tty_name = build_string (pty_name);
1982 else
1983 #endif
1984 XPROCESS (process)->tty_name = Qnil;
1988 /* Convert an internal struct sockaddr to a lisp object (vector or string).
1989 The address family of sa is not included in the result. */
1991 static Lisp_Object
1992 conv_sockaddr_to_lisp (struct sockaddr *sa, int len)
1994 Lisp_Object address;
1995 int i;
1996 unsigned char *cp;
1997 register struct Lisp_Vector *p;
1999 /* Workaround for a bug in getsockname on BSD: Names bound to
2000 sockets in the UNIX domain are inaccessible; getsockname returns
2001 a zero length name. */
2002 if (len < offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family))
2003 return empty_unibyte_string;
2005 switch (sa->sa_family)
2007 case AF_INET:
2009 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2010 len = sizeof (sin->sin_addr) + 1;
2011 address = Fmake_vector (make_number (len), Qnil);
2012 p = XVECTOR (address);
2013 p->contents[--len] = make_number (ntohs (sin->sin_port));
2014 cp = (unsigned char *) &sin->sin_addr;
2015 break;
2017 #ifdef AF_INET6
2018 case AF_INET6:
2020 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2021 uint16_t *ip6 = (uint16_t *) &sin6->sin6_addr;
2022 len = sizeof (sin6->sin6_addr)/2 + 1;
2023 address = Fmake_vector (make_number (len), Qnil);
2024 p = XVECTOR (address);
2025 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
2026 for (i = 0; i < len; i++)
2027 p->contents[i] = make_number (ntohs (ip6[i]));
2028 return address;
2030 #endif
2031 #ifdef HAVE_LOCAL_SOCKETS
2032 case AF_LOCAL:
2034 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2035 for (i = 0; i < sizeof (sockun->sun_path); i++)
2036 if (sockun->sun_path[i] == 0)
2037 break;
2038 return make_unibyte_string (sockun->sun_path, i);
2040 #endif
2041 default:
2042 len -= offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family);
2043 address = Fcons (make_number (sa->sa_family),
2044 Fmake_vector (make_number (len), Qnil));
2045 p = XVECTOR (XCDR (address));
2046 cp = (unsigned char *) &sa->sa_family + sizeof (sa->sa_family);
2047 break;
2050 i = 0;
2051 while (i < len)
2052 p->contents[i++] = make_number (*cp++);
2054 return address;
2058 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2060 static int
2061 get_lisp_to_sockaddr_size (Lisp_Object address, int *familyp)
2063 register struct Lisp_Vector *p;
2065 if (VECTORP (address))
2067 p = XVECTOR (address);
2068 if (p->header.size == 5)
2070 *familyp = AF_INET;
2071 return sizeof (struct sockaddr_in);
2073 #ifdef AF_INET6
2074 else if (p->header.size == 9)
2076 *familyp = AF_INET6;
2077 return sizeof (struct sockaddr_in6);
2079 #endif
2081 #ifdef HAVE_LOCAL_SOCKETS
2082 else if (STRINGP (address))
2084 *familyp = AF_LOCAL;
2085 return sizeof (struct sockaddr_un);
2087 #endif
2088 else if (CONSP (address) && TYPE_RANGED_INTEGERP (int, XCAR (address))
2089 && VECTORP (XCDR (address)))
2091 struct sockaddr *sa;
2092 *familyp = XINT (XCAR (address));
2093 p = XVECTOR (XCDR (address));
2094 return p->header.size + sizeof (sa->sa_family);
2096 return 0;
2099 /* Convert an address object (vector or string) to an internal sockaddr.
2101 The address format has been basically validated by
2102 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2103 it could have come from user data. So if FAMILY is not valid,
2104 we return after zeroing *SA. */
2106 static void
2107 conv_lisp_to_sockaddr (int family, Lisp_Object address, struct sockaddr *sa, int len)
2109 register struct Lisp_Vector *p;
2110 register unsigned char *cp = NULL;
2111 register int i;
2112 EMACS_INT hostport;
2114 memset (sa, 0, len);
2116 if (VECTORP (address))
2118 p = XVECTOR (address);
2119 if (family == AF_INET)
2121 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2122 len = sizeof (sin->sin_addr) + 1;
2123 hostport = XINT (p->contents[--len]);
2124 sin->sin_port = htons (hostport);
2125 cp = (unsigned char *)&sin->sin_addr;
2126 sa->sa_family = family;
2128 #ifdef AF_INET6
2129 else if (family == AF_INET6)
2131 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2132 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2133 len = sizeof (sin6->sin6_addr) + 1;
2134 hostport = XINT (p->contents[--len]);
2135 sin6->sin6_port = htons (hostport);
2136 for (i = 0; i < len; i++)
2137 if (INTEGERP (p->contents[i]))
2139 int j = XFASTINT (p->contents[i]) & 0xffff;
2140 ip6[i] = ntohs (j);
2142 sa->sa_family = family;
2143 return;
2145 #endif
2146 else
2147 return;
2149 else if (STRINGP (address))
2151 #ifdef HAVE_LOCAL_SOCKETS
2152 if (family == AF_LOCAL)
2154 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2155 cp = SDATA (address);
2156 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2157 sockun->sun_path[i] = *cp++;
2158 sa->sa_family = family;
2160 #endif
2161 return;
2163 else
2165 p = XVECTOR (XCDR (address));
2166 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2169 for (i = 0; i < len; i++)
2170 if (INTEGERP (p->contents[i]))
2171 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2174 #ifdef DATAGRAM_SOCKETS
2175 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2176 1, 1, 0,
2177 doc: /* Get the current datagram address associated with PROCESS. */)
2178 (Lisp_Object process)
2180 int channel;
2182 CHECK_PROCESS (process);
2184 if (!DATAGRAM_CONN_P (process))
2185 return Qnil;
2187 channel = XPROCESS (process)->infd;
2188 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2189 datagram_address[channel].len);
2192 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2193 2, 2, 0,
2194 doc: /* Set the datagram address for PROCESS to ADDRESS.
2195 Returns nil upon error setting address, ADDRESS otherwise. */)
2196 (Lisp_Object process, Lisp_Object address)
2198 int channel;
2199 int family, len;
2201 CHECK_PROCESS (process);
2203 if (!DATAGRAM_CONN_P (process))
2204 return Qnil;
2206 channel = XPROCESS (process)->infd;
2208 len = get_lisp_to_sockaddr_size (address, &family);
2209 if (datagram_address[channel].len != len)
2210 return Qnil;
2211 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2212 return address;
2214 #endif
2217 static const struct socket_options {
2218 /* The name of this option. Should be lowercase version of option
2219 name without SO_ prefix. */
2220 const char *name;
2221 /* Option level SOL_... */
2222 int optlevel;
2223 /* Option number SO_... */
2224 int optnum;
2225 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2226 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
2227 } socket_options[] =
2229 #ifdef SO_BINDTODEVICE
2230 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2231 #endif
2232 #ifdef SO_BROADCAST
2233 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2234 #endif
2235 #ifdef SO_DONTROUTE
2236 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2237 #endif
2238 #ifdef SO_KEEPALIVE
2239 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2240 #endif
2241 #ifdef SO_LINGER
2242 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2243 #endif
2244 #ifdef SO_OOBINLINE
2245 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2246 #endif
2247 #ifdef SO_PRIORITY
2248 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2249 #endif
2250 #ifdef SO_REUSEADDR
2251 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2252 #endif
2253 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2256 /* Set option OPT to value VAL on socket S.
2258 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2259 Signals an error if setting a known option fails.
2262 static int
2263 set_socket_option (int s, Lisp_Object opt, Lisp_Object val)
2265 char *name;
2266 const struct socket_options *sopt;
2267 int ret = 0;
2269 CHECK_SYMBOL (opt);
2271 name = SSDATA (SYMBOL_NAME (opt));
2272 for (sopt = socket_options; sopt->name; sopt++)
2273 if (strcmp (name, sopt->name) == 0)
2274 break;
2276 switch (sopt->opttype)
2278 case SOPT_BOOL:
2280 int optval;
2281 optval = NILP (val) ? 0 : 1;
2282 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2283 &optval, sizeof (optval));
2284 break;
2287 case SOPT_INT:
2289 int optval;
2290 if (TYPE_RANGED_INTEGERP (int, val))
2291 optval = XINT (val);
2292 else
2293 error ("Bad option value for %s", name);
2294 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2295 &optval, sizeof (optval));
2296 break;
2299 #ifdef SO_BINDTODEVICE
2300 case SOPT_IFNAME:
2302 char devname[IFNAMSIZ+1];
2304 /* This is broken, at least in the Linux 2.4 kernel.
2305 To unbind, the arg must be a zero integer, not the empty string.
2306 This should work on all systems. KFS. 2003-09-23. */
2307 memset (devname, 0, sizeof devname);
2308 if (STRINGP (val))
2310 char *arg = SSDATA (val);
2311 int len = min (strlen (arg), IFNAMSIZ);
2312 memcpy (devname, arg, len);
2314 else if (!NILP (val))
2315 error ("Bad option value for %s", name);
2316 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2317 devname, IFNAMSIZ);
2318 break;
2320 #endif
2322 #ifdef SO_LINGER
2323 case SOPT_LINGER:
2325 struct linger linger;
2327 linger.l_onoff = 1;
2328 linger.l_linger = 0;
2329 if (TYPE_RANGED_INTEGERP (int, val))
2330 linger.l_linger = XINT (val);
2331 else
2332 linger.l_onoff = NILP (val) ? 0 : 1;
2333 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2334 &linger, sizeof (linger));
2335 break;
2337 #endif
2339 default:
2340 return 0;
2343 if (ret < 0)
2344 report_file_error ("Cannot set network option",
2345 Fcons (opt, Fcons (val, Qnil)));
2346 return (1 << sopt->optbit);
2350 DEFUN ("set-network-process-option",
2351 Fset_network_process_option, Sset_network_process_option,
2352 3, 4, 0,
2353 doc: /* For network process PROCESS set option OPTION to value VALUE.
2354 See `make-network-process' for a list of options and values.
2355 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2356 OPTION is not a supported option, return nil instead; otherwise return t. */)
2357 (Lisp_Object process, Lisp_Object option, Lisp_Object value, Lisp_Object no_error)
2359 int s;
2360 struct Lisp_Process *p;
2362 CHECK_PROCESS (process);
2363 p = XPROCESS (process);
2364 if (!NETCONN1_P (p))
2365 error ("Process is not a network process");
2367 s = p->infd;
2368 if (s < 0)
2369 error ("Process is not running");
2371 if (set_socket_option (s, option, value))
2373 p->childp = Fplist_put (p->childp, option, value);
2374 return Qt;
2377 if (NILP (no_error))
2378 error ("Unknown or unsupported option");
2380 return Qnil;
2384 DEFUN ("serial-process-configure",
2385 Fserial_process_configure,
2386 Sserial_process_configure,
2387 0, MANY, 0,
2388 doc: /* Configure speed, bytesize, etc. of a serial process.
2390 Arguments are specified as keyword/argument pairs. Attributes that
2391 are not given are re-initialized from the process's current
2392 configuration (available via the function `process-contact') or set to
2393 reasonable default values. The following arguments are defined:
2395 :process PROCESS
2396 :name NAME
2397 :buffer BUFFER
2398 :port PORT
2399 -- Any of these arguments can be given to identify the process that is
2400 to be configured. If none of these arguments is given, the current
2401 buffer's process is used.
2403 :speed SPEED -- SPEED is the speed of the serial port in bits per
2404 second, also called baud rate. Any value can be given for SPEED, but
2405 most serial ports work only at a few defined values between 1200 and
2406 115200, with 9600 being the most common value. If SPEED is nil, the
2407 serial port is not configured any further, i.e., all other arguments
2408 are ignored. This may be useful for special serial ports such as
2409 Bluetooth-to-serial converters which can only be configured through AT
2410 commands. A value of nil for SPEED can be used only when passed
2411 through `make-serial-process' or `serial-term'.
2413 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2414 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2416 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2417 `odd' (use odd parity), or the symbol `even' (use even parity). If
2418 PARITY is not given, no parity is used.
2420 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2421 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2422 is not given or nil, 1 stopbit is used.
2424 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2425 flowcontrol to be used, which is either nil (don't use flowcontrol),
2426 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2427 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2428 flowcontrol is used.
2430 `serial-process-configure' is called by `make-serial-process' for the
2431 initial configuration of the serial port.
2433 Examples:
2435 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2437 \(serial-process-configure
2438 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2440 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2442 usage: (serial-process-configure &rest ARGS) */)
2443 (ptrdiff_t nargs, Lisp_Object *args)
2445 struct Lisp_Process *p;
2446 Lisp_Object contact = Qnil;
2447 Lisp_Object proc = Qnil;
2448 struct gcpro gcpro1;
2450 contact = Flist (nargs, args);
2451 GCPRO1 (contact);
2453 proc = Fplist_get (contact, QCprocess);
2454 if (NILP (proc))
2455 proc = Fplist_get (contact, QCname);
2456 if (NILP (proc))
2457 proc = Fplist_get (contact, QCbuffer);
2458 if (NILP (proc))
2459 proc = Fplist_get (contact, QCport);
2460 proc = get_process (proc);
2461 p = XPROCESS (proc);
2462 if (!EQ (p->type, Qserial))
2463 error ("Not a serial process");
2465 if (NILP (Fplist_get (p->childp, QCspeed)))
2467 UNGCPRO;
2468 return Qnil;
2471 serial_configure (p, contact);
2473 UNGCPRO;
2474 return Qnil;
2477 /* Used by make-serial-process to recover from errors. */
2478 static Lisp_Object
2479 make_serial_process_unwind (Lisp_Object proc)
2481 if (!PROCESSP (proc))
2482 abort ();
2483 remove_process (proc);
2484 return Qnil;
2487 DEFUN ("make-serial-process", Fmake_serial_process, Smake_serial_process,
2488 0, MANY, 0,
2489 doc: /* Create and return a serial port process.
2491 In Emacs, serial port connections are represented by process objects,
2492 so input and output work as for subprocesses, and `delete-process'
2493 closes a serial port connection. However, a serial process has no
2494 process id, it cannot be signaled, and the status codes are different
2495 from normal processes.
2497 `make-serial-process' creates a process and a buffer, on which you
2498 probably want to use `process-send-string'. Try \\[serial-term] for
2499 an interactive terminal. See below for examples.
2501 Arguments are specified as keyword/argument pairs. The following
2502 arguments are defined:
2504 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2505 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2506 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2507 the backslashes in strings).
2509 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2510 which this function calls.
2512 :name NAME -- NAME is the name of the process. If NAME is not given,
2513 the value of PORT is used.
2515 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2516 with the process. Process output goes at the end of that buffer,
2517 unless you specify an output stream or filter function to handle the
2518 output. If BUFFER is not given, the value of NAME is used.
2520 :coding CODING -- If CODING is a symbol, it specifies the coding
2521 system used for both reading and writing for this process. If CODING
2522 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2523 ENCODING is used for writing.
2525 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2526 the process is running. If BOOL is not given, query before exiting.
2528 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2529 In the stopped state, a serial process does not accept incoming data,
2530 but you can send outgoing data. The stopped state is cleared by
2531 `continue-process' and set by `stop-process'.
2533 :filter FILTER -- Install FILTER as the process filter.
2535 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2537 :plist PLIST -- Install PLIST as the initial plist of the process.
2539 :bytesize
2540 :parity
2541 :stopbits
2542 :flowcontrol
2543 -- This function calls `serial-process-configure' to handle these
2544 arguments.
2546 The original argument list, possibly modified by later configuration,
2547 is available via the function `process-contact'.
2549 Examples:
2551 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2553 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2555 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2557 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2559 usage: (make-serial-process &rest ARGS) */)
2560 (ptrdiff_t nargs, Lisp_Object *args)
2562 int fd = -1;
2563 Lisp_Object proc, contact, port;
2564 struct Lisp_Process *p;
2565 struct gcpro gcpro1;
2566 Lisp_Object name, buffer;
2567 Lisp_Object tem, val;
2568 ptrdiff_t specpdl_count = -1;
2570 if (nargs == 0)
2571 return Qnil;
2573 contact = Flist (nargs, args);
2574 GCPRO1 (contact);
2576 port = Fplist_get (contact, QCport);
2577 if (NILP (port))
2578 error ("No port specified");
2579 CHECK_STRING (port);
2581 if (NILP (Fplist_member (contact, QCspeed)))
2582 error (":speed not specified");
2583 if (!NILP (Fplist_get (contact, QCspeed)))
2584 CHECK_NUMBER (Fplist_get (contact, QCspeed));
2586 name = Fplist_get (contact, QCname);
2587 if (NILP (name))
2588 name = port;
2589 CHECK_STRING (name);
2590 proc = make_process (name);
2591 specpdl_count = SPECPDL_INDEX ();
2592 record_unwind_protect (make_serial_process_unwind, proc);
2593 p = XPROCESS (proc);
2595 fd = serial_open (SSDATA (port));
2596 p->infd = fd;
2597 p->outfd = fd;
2598 if (fd > max_process_desc)
2599 max_process_desc = fd;
2600 chan_process[fd] = proc;
2602 buffer = Fplist_get (contact, QCbuffer);
2603 if (NILP (buffer))
2604 buffer = name;
2605 buffer = Fget_buffer_create (buffer);
2606 p->buffer = buffer;
2608 p->childp = contact;
2609 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
2610 p->type = Qserial;
2611 p->sentinel = Fplist_get (contact, QCsentinel);
2612 p->filter = Fplist_get (contact, QCfilter);
2613 p->log = Qnil;
2614 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
2615 p->kill_without_query = 1;
2616 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
2617 p->command = Qt;
2618 p->pty_flag = 0;
2620 if (!EQ (p->command, Qt))
2622 FD_SET (fd, &input_wait_mask);
2623 FD_SET (fd, &non_keyboard_wait_mask);
2626 if (BUFFERP (buffer))
2628 set_marker_both (p->mark, buffer,
2629 BUF_ZV (XBUFFER (buffer)),
2630 BUF_ZV_BYTE (XBUFFER (buffer)));
2633 tem = Fplist_member (contact, QCcoding);
2634 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
2635 tem = Qnil;
2637 val = Qnil;
2638 if (!NILP (tem))
2640 val = XCAR (XCDR (tem));
2641 if (CONSP (val))
2642 val = XCAR (val);
2644 else if (!NILP (Vcoding_system_for_read))
2645 val = Vcoding_system_for_read;
2646 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2647 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2648 val = Qnil;
2649 p->decode_coding_system = val;
2651 val = Qnil;
2652 if (!NILP (tem))
2654 val = XCAR (XCDR (tem));
2655 if (CONSP (val))
2656 val = XCDR (val);
2658 else if (!NILP (Vcoding_system_for_write))
2659 val = Vcoding_system_for_write;
2660 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2661 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2662 val = Qnil;
2663 p->encode_coding_system = val;
2665 setup_process_coding_systems (proc);
2666 p->decoding_buf = empty_unibyte_string;
2667 p->decoding_carryover = 0;
2668 p->encoding_buf = empty_unibyte_string;
2669 p->inherit_coding_system_flag
2670 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
2672 Fserial_process_configure (nargs, args);
2674 specpdl_ptr = specpdl + specpdl_count;
2676 UNGCPRO;
2677 return proc;
2680 /* Create a network stream/datagram client/server process. Treated
2681 exactly like a normal process when reading and writing. Primary
2682 differences are in status display and process deletion. A network
2683 connection has no PID; you cannot signal it. All you can do is
2684 stop/continue it and deactivate/close it via delete-process */
2686 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2687 0, MANY, 0,
2688 doc: /* Create and return a network server or client process.
2690 In Emacs, network connections are represented by process objects, so
2691 input and output work as for subprocesses and `delete-process' closes
2692 a network connection. However, a network process has no process id,
2693 it cannot be signaled, and the status codes are different from normal
2694 processes.
2696 Arguments are specified as keyword/argument pairs. The following
2697 arguments are defined:
2699 :name NAME -- NAME is name for process. It is modified if necessary
2700 to make it unique.
2702 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2703 with the process. Process output goes at end of that buffer, unless
2704 you specify an output stream or filter function to handle the output.
2705 BUFFER may be also nil, meaning that this process is not associated
2706 with any buffer.
2708 :host HOST -- HOST is name of the host to connect to, or its IP
2709 address. The symbol `local' specifies the local host. If specified
2710 for a server process, it must be a valid name or address for the local
2711 host, and only clients connecting to that address will be accepted.
2713 :service SERVICE -- SERVICE is name of the service desired, or an
2714 integer specifying a port number to connect to. If SERVICE is t,
2715 a random port number is selected for the server. (If Emacs was
2716 compiled with getaddrinfo, a port number can also be specified as a
2717 string, e.g. "80", as well as an integer. This is not portable.)
2719 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2720 stream type connection, `datagram' creates a datagram type connection,
2721 `seqpacket' creates a reliable datagram connection.
2723 :family FAMILY -- FAMILY is the address (and protocol) family for the
2724 service specified by HOST and SERVICE. The default (nil) is to use
2725 whatever address family (IPv4 or IPv6) that is defined for the host
2726 and port number specified by HOST and SERVICE. Other address families
2727 supported are:
2728 local -- for a local (i.e. UNIX) address specified by SERVICE.
2729 ipv4 -- use IPv4 address family only.
2730 ipv6 -- use IPv6 address family only.
2732 :local ADDRESS -- ADDRESS is the local address used for the connection.
2733 This parameter is ignored when opening a client process. When specified
2734 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2736 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2737 connection. This parameter is ignored when opening a stream server
2738 process. For a datagram server process, it specifies the initial
2739 setting of the remote datagram address. When specified for a client
2740 process, the FAMILY, HOST, and SERVICE args are ignored.
2742 The format of ADDRESS depends on the address family:
2743 - An IPv4 address is represented as an vector of integers [A B C D P]
2744 corresponding to numeric IP address A.B.C.D and port number P.
2745 - A local address is represented as a string with the address in the
2746 local address space.
2747 - An "unsupported family" address is represented by a cons (F . AV)
2748 where F is the family number and AV is a vector containing the socket
2749 address data with one element per address data byte. Do not rely on
2750 this format in portable code, as it may depend on implementation
2751 defined constants, data sizes, and data structure alignment.
2753 :coding CODING -- If CODING is a symbol, it specifies the coding
2754 system used for both reading and writing for this process. If CODING
2755 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2756 ENCODING is used for writing.
2758 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2759 return without waiting for the connection to complete; instead, the
2760 sentinel function will be called with second arg matching "open" (if
2761 successful) or "failed" when the connect completes. Default is to use
2762 a blocking connect (i.e. wait) for stream type connections.
2764 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2765 running when Emacs is exited.
2767 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2768 In the stopped state, a server process does not accept new
2769 connections, and a client process does not handle incoming traffic.
2770 The stopped state is cleared by `continue-process' and set by
2771 `stop-process'.
2773 :filter FILTER -- Install FILTER as the process filter.
2775 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2776 process filter are multibyte, otherwise they are unibyte.
2777 If this keyword is not specified, the strings are multibyte if
2778 the default value of `enable-multibyte-characters' is non-nil.
2780 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2782 :log LOG -- Install LOG as the server process log function. This
2783 function is called when the server accepts a network connection from a
2784 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2785 is the server process, CLIENT is the new process for the connection,
2786 and MESSAGE is a string.
2788 :plist PLIST -- Install PLIST as the new process' initial plist.
2790 :server QLEN -- if QLEN is non-nil, create a server process for the
2791 specified FAMILY, SERVICE, and connection type (stream or datagram).
2792 If QLEN is an integer, it is used as the max. length of the server's
2793 pending connection queue (also known as the backlog); the default
2794 queue length is 5. Default is to create a client process.
2796 The following network options can be specified for this connection:
2798 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2799 :dontroute BOOL -- Only send to directly connected hosts.
2800 :keepalive BOOL -- Send keep-alive messages on network stream.
2801 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2802 :oobinline BOOL -- Place out-of-band data in receive data stream.
2803 :priority INT -- Set protocol defined priority for sent packets.
2804 :reuseaddr BOOL -- Allow reusing a recently used local address
2805 (this is allowed by default for a server process).
2806 :bindtodevice NAME -- bind to interface NAME. Using this may require
2807 special privileges on some systems.
2809 Consult the relevant system programmer's manual pages for more
2810 information on using these options.
2813 A server process will listen for and accept connections from clients.
2814 When a client connection is accepted, a new network process is created
2815 for the connection with the following parameters:
2817 - The client's process name is constructed by concatenating the server
2818 process' NAME and a client identification string.
2819 - If the FILTER argument is non-nil, the client process will not get a
2820 separate process buffer; otherwise, the client's process buffer is a newly
2821 created buffer named after the server process' BUFFER name or process
2822 NAME concatenated with the client identification string.
2823 - The connection type and the process filter and sentinel parameters are
2824 inherited from the server process' TYPE, FILTER and SENTINEL.
2825 - The client process' contact info is set according to the client's
2826 addressing information (typically an IP address and a port number).
2827 - The client process' plist is initialized from the server's plist.
2829 Notice that the FILTER and SENTINEL args are never used directly by
2830 the server process. Also, the BUFFER argument is not used directly by
2831 the server process, but via the optional :log function, accepted (and
2832 failed) connections may be logged in the server process' buffer.
2834 The original argument list, modified with the actual connection
2835 information, is available via the `process-contact' function.
2837 usage: (make-network-process &rest ARGS) */)
2838 (ptrdiff_t nargs, Lisp_Object *args)
2840 Lisp_Object proc;
2841 Lisp_Object contact;
2842 struct Lisp_Process *p;
2843 #ifdef HAVE_GETADDRINFO
2844 struct addrinfo ai, *res, *lres;
2845 struct addrinfo hints;
2846 const char *portstring;
2847 char portbuf[128];
2848 #else /* HAVE_GETADDRINFO */
2849 struct _emacs_addrinfo
2851 int ai_family;
2852 int ai_socktype;
2853 int ai_protocol;
2854 int ai_addrlen;
2855 struct sockaddr *ai_addr;
2856 struct _emacs_addrinfo *ai_next;
2857 } ai, *res, *lres;
2858 #endif /* HAVE_GETADDRINFO */
2859 struct sockaddr_in address_in;
2860 #ifdef HAVE_LOCAL_SOCKETS
2861 struct sockaddr_un address_un;
2862 #endif
2863 int port;
2864 int ret = 0;
2865 int xerrno = 0;
2866 int s = -1, outch, inch;
2867 struct gcpro gcpro1;
2868 ptrdiff_t count = SPECPDL_INDEX ();
2869 ptrdiff_t count1;
2870 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2871 Lisp_Object tem;
2872 Lisp_Object name, buffer, host, service, address;
2873 Lisp_Object filter, sentinel;
2874 int is_non_blocking_client = 0;
2875 int is_server = 0, backlog = 5;
2876 int socktype;
2877 int family = -1;
2879 if (nargs == 0)
2880 return Qnil;
2882 /* Save arguments for process-contact and clone-process. */
2883 contact = Flist (nargs, args);
2884 GCPRO1 (contact);
2886 #ifdef WINDOWSNT
2887 /* Ensure socket support is loaded if available. */
2888 init_winsock (TRUE);
2889 #endif
2891 /* :type TYPE (nil: stream, datagram */
2892 tem = Fplist_get (contact, QCtype);
2893 if (NILP (tem))
2894 socktype = SOCK_STREAM;
2895 #ifdef DATAGRAM_SOCKETS
2896 else if (EQ (tem, Qdatagram))
2897 socktype = SOCK_DGRAM;
2898 #endif
2899 #ifdef HAVE_SEQPACKET
2900 else if (EQ (tem, Qseqpacket))
2901 socktype = SOCK_SEQPACKET;
2902 #endif
2903 else
2904 error ("Unsupported connection type");
2906 /* :server BOOL */
2907 tem = Fplist_get (contact, QCserver);
2908 if (!NILP (tem))
2910 /* Don't support network sockets when non-blocking mode is
2911 not available, since a blocked Emacs is not useful. */
2912 #if !defined (O_NONBLOCK) && !defined (O_NDELAY)
2913 error ("Network servers not supported");
2914 #else
2915 is_server = 1;
2916 if (TYPE_RANGED_INTEGERP (int, tem))
2917 backlog = XINT (tem);
2918 #endif
2921 /* Make QCaddress an alias for :local (server) or :remote (client). */
2922 QCaddress = is_server ? QClocal : QCremote;
2924 /* :nowait BOOL */
2925 if (!is_server && socktype != SOCK_DGRAM
2926 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2928 #ifndef NON_BLOCKING_CONNECT
2929 error ("Non-blocking connect not supported");
2930 #else
2931 is_non_blocking_client = 1;
2932 #endif
2935 name = Fplist_get (contact, QCname);
2936 buffer = Fplist_get (contact, QCbuffer);
2937 filter = Fplist_get (contact, QCfilter);
2938 sentinel = Fplist_get (contact, QCsentinel);
2940 CHECK_STRING (name);
2942 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2943 ai.ai_socktype = socktype;
2944 ai.ai_protocol = 0;
2945 ai.ai_next = NULL;
2946 res = &ai;
2948 /* :local ADDRESS or :remote ADDRESS */
2949 address = Fplist_get (contact, QCaddress);
2950 if (!NILP (address))
2952 host = service = Qnil;
2954 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2955 error ("Malformed :address");
2956 ai.ai_family = family;
2957 ai.ai_addr = alloca (ai.ai_addrlen);
2958 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2959 goto open_socket;
2962 /* :family FAMILY -- nil (for Inet), local, or integer. */
2963 tem = Fplist_get (contact, QCfamily);
2964 if (NILP (tem))
2966 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
2967 family = AF_UNSPEC;
2968 #else
2969 family = AF_INET;
2970 #endif
2972 #ifdef HAVE_LOCAL_SOCKETS
2973 else if (EQ (tem, Qlocal))
2974 family = AF_LOCAL;
2975 #endif
2976 #ifdef AF_INET6
2977 else if (EQ (tem, Qipv6))
2978 family = AF_INET6;
2979 #endif
2980 else if (EQ (tem, Qipv4))
2981 family = AF_INET;
2982 else if (TYPE_RANGED_INTEGERP (int, tem))
2983 family = XINT (tem);
2984 else
2985 error ("Unknown address family");
2987 ai.ai_family = family;
2989 /* :service SERVICE -- string, integer (port number), or t (random port). */
2990 service = Fplist_get (contact, QCservice);
2992 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2993 host = Fplist_get (contact, QChost);
2994 if (!NILP (host))
2996 if (EQ (host, Qlocal))
2997 /* Depending on setup, "localhost" may map to different IPv4 and/or
2998 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
2999 host = build_string ("127.0.0.1");
3000 CHECK_STRING (host);
3003 #ifdef HAVE_LOCAL_SOCKETS
3004 if (family == AF_LOCAL)
3006 if (!NILP (host))
3008 message (":family local ignores the :host \"%s\" property",
3009 SDATA (host));
3010 contact = Fplist_put (contact, QChost, Qnil);
3011 host = Qnil;
3013 CHECK_STRING (service);
3014 memset (&address_un, 0, sizeof address_un);
3015 address_un.sun_family = AF_LOCAL;
3016 strncpy (address_un.sun_path, SSDATA (service), sizeof address_un.sun_path);
3017 ai.ai_addr = (struct sockaddr *) &address_un;
3018 ai.ai_addrlen = sizeof address_un;
3019 goto open_socket;
3021 #endif
3023 /* Slow down polling to every ten seconds.
3024 Some kernels have a bug which causes retrying connect to fail
3025 after a connect. Polling can interfere with gethostbyname too. */
3026 #ifdef POLL_FOR_INPUT
3027 if (socktype != SOCK_DGRAM)
3029 record_unwind_protect (unwind_stop_other_atimers, Qnil);
3030 bind_polling_period (10);
3032 #endif
3034 #ifdef HAVE_GETADDRINFO
3035 /* If we have a host, use getaddrinfo to resolve both host and service.
3036 Otherwise, use getservbyname to lookup the service. */
3037 if (!NILP (host))
3040 /* SERVICE can either be a string or int.
3041 Convert to a C string for later use by getaddrinfo. */
3042 if (EQ (service, Qt))
3043 portstring = "0";
3044 else if (INTEGERP (service))
3046 sprintf (portbuf, "%"pI"d", XINT (service));
3047 portstring = portbuf;
3049 else
3051 CHECK_STRING (service);
3052 portstring = SSDATA (service);
3055 immediate_quit = 1;
3056 QUIT;
3057 memset (&hints, 0, sizeof (hints));
3058 hints.ai_flags = 0;
3059 hints.ai_family = family;
3060 hints.ai_socktype = socktype;
3061 hints.ai_protocol = 0;
3063 #ifdef HAVE_RES_INIT
3064 res_init ();
3065 #endif
3067 ret = getaddrinfo (SSDATA (host), portstring, &hints, &res);
3068 if (ret)
3069 #ifdef HAVE_GAI_STRERROR
3070 error ("%s/%s %s", SSDATA (host), portstring, gai_strerror (ret));
3071 #else
3072 error ("%s/%s getaddrinfo error %d", SSDATA (host), portstring, ret);
3073 #endif
3074 immediate_quit = 0;
3076 goto open_socket;
3078 #endif /* HAVE_GETADDRINFO */
3080 /* We end up here if getaddrinfo is not defined, or in case no hostname
3081 has been specified (e.g. for a local server process). */
3083 if (EQ (service, Qt))
3084 port = 0;
3085 else if (INTEGERP (service))
3086 port = htons ((unsigned short) XINT (service));
3087 else
3089 struct servent *svc_info;
3090 CHECK_STRING (service);
3091 svc_info = getservbyname (SSDATA (service),
3092 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3093 if (svc_info == 0)
3094 error ("Unknown service: %s", SDATA (service));
3095 port = svc_info->s_port;
3098 memset (&address_in, 0, sizeof address_in);
3099 address_in.sin_family = family;
3100 address_in.sin_addr.s_addr = INADDR_ANY;
3101 address_in.sin_port = port;
3103 #ifndef HAVE_GETADDRINFO
3104 if (!NILP (host))
3106 struct hostent *host_info_ptr;
3108 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3109 as it may `hang' Emacs for a very long time. */
3110 immediate_quit = 1;
3111 QUIT;
3113 #ifdef HAVE_RES_INIT
3114 res_init ();
3115 #endif
3117 host_info_ptr = gethostbyname (SDATA (host));
3118 immediate_quit = 0;
3120 if (host_info_ptr)
3122 memcpy (&address_in.sin_addr, host_info_ptr->h_addr,
3123 host_info_ptr->h_length);
3124 family = host_info_ptr->h_addrtype;
3125 address_in.sin_family = family;
3127 else
3128 /* Attempt to interpret host as numeric inet address */
3130 unsigned long numeric_addr;
3131 numeric_addr = inet_addr (SSDATA (host));
3132 if (numeric_addr == -1)
3133 error ("Unknown host \"%s\"", SDATA (host));
3135 memcpy (&address_in.sin_addr, &numeric_addr,
3136 sizeof (address_in.sin_addr));
3140 #endif /* not HAVE_GETADDRINFO */
3142 ai.ai_family = family;
3143 ai.ai_addr = (struct sockaddr *) &address_in;
3144 ai.ai_addrlen = sizeof address_in;
3146 open_socket:
3148 /* Do this in case we never enter the for-loop below. */
3149 count1 = SPECPDL_INDEX ();
3150 s = -1;
3152 for (lres = res; lres; lres = lres->ai_next)
3154 ptrdiff_t optn;
3155 int optbits;
3157 #ifdef WINDOWSNT
3158 retry_connect:
3159 #endif
3161 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3162 if (s < 0)
3164 xerrno = errno;
3165 continue;
3168 #ifdef DATAGRAM_SOCKETS
3169 if (!is_server && socktype == SOCK_DGRAM)
3170 break;
3171 #endif /* DATAGRAM_SOCKETS */
3173 #ifdef NON_BLOCKING_CONNECT
3174 if (is_non_blocking_client)
3176 #ifdef O_NONBLOCK
3177 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3178 #else
3179 ret = fcntl (s, F_SETFL, O_NDELAY);
3180 #endif
3181 if (ret < 0)
3183 xerrno = errno;
3184 emacs_close (s);
3185 s = -1;
3186 continue;
3189 #endif
3191 /* Make us close S if quit. */
3192 record_unwind_protect (close_file_unwind, make_number (s));
3194 /* Parse network options in the arg list.
3195 We simply ignore anything which isn't a known option (including other keywords).
3196 An error is signaled if setting a known option fails. */
3197 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3198 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3200 if (is_server)
3202 /* Configure as a server socket. */
3204 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3205 explicit :reuseaddr key to override this. */
3206 #ifdef HAVE_LOCAL_SOCKETS
3207 if (family != AF_LOCAL)
3208 #endif
3209 if (!(optbits & (1 << OPIX_REUSEADDR)))
3211 int optval = 1;
3212 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3213 report_file_error ("Cannot set reuse option on server socket", Qnil);
3216 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3217 report_file_error ("Cannot bind server socket", Qnil);
3219 #ifdef HAVE_GETSOCKNAME
3220 if (EQ (service, Qt))
3222 struct sockaddr_in sa1;
3223 socklen_t len1 = sizeof (sa1);
3224 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3226 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3227 service = make_number (ntohs (sa1.sin_port));
3228 contact = Fplist_put (contact, QCservice, service);
3231 #endif
3233 if (socktype != SOCK_DGRAM && listen (s, backlog))
3234 report_file_error ("Cannot listen on server socket", Qnil);
3236 break;
3239 immediate_quit = 1;
3240 QUIT;
3242 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3243 xerrno = errno;
3245 if (ret == 0 || xerrno == EISCONN)
3247 /* The unwind-protect will be discarded afterwards.
3248 Likewise for immediate_quit. */
3249 break;
3252 #ifdef NON_BLOCKING_CONNECT
3253 #ifdef EINPROGRESS
3254 if (is_non_blocking_client && xerrno == EINPROGRESS)
3255 break;
3256 #else
3257 #ifdef EWOULDBLOCK
3258 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3259 break;
3260 #endif
3261 #endif
3262 #endif
3264 #ifndef WINDOWSNT
3265 if (xerrno == EINTR)
3267 /* Unlike most other syscalls connect() cannot be called
3268 again. (That would return EALREADY.) The proper way to
3269 wait for completion is pselect(). */
3270 int sc;
3271 socklen_t len;
3272 SELECT_TYPE fdset;
3273 retry_select:
3274 FD_ZERO (&fdset);
3275 FD_SET (s, &fdset);
3276 QUIT;
3277 sc = pselect (s + 1, NULL, &fdset, NULL, NULL, NULL);
3278 if (sc == -1)
3280 if (errno == EINTR)
3281 goto retry_select;
3282 else
3283 report_file_error ("select failed", Qnil);
3285 eassert (sc > 0);
3287 len = sizeof xerrno;
3288 eassert (FD_ISSET (s, &fdset));
3289 if (getsockopt (s, SOL_SOCKET, SO_ERROR, &xerrno, &len) == -1)
3290 report_file_error ("getsockopt failed", Qnil);
3291 if (xerrno)
3292 errno = xerrno, report_file_error ("error during connect", Qnil);
3293 else
3294 break;
3296 #endif /* !WINDOWSNT */
3298 immediate_quit = 0;
3300 /* Discard the unwind protect closing S. */
3301 specpdl_ptr = specpdl + count1;
3302 emacs_close (s);
3303 s = -1;
3305 #ifdef WINDOWSNT
3306 if (xerrno == EINTR)
3307 goto retry_connect;
3308 #endif
3311 if (s >= 0)
3313 #ifdef DATAGRAM_SOCKETS
3314 if (socktype == SOCK_DGRAM)
3316 if (datagram_address[s].sa)
3317 abort ();
3318 datagram_address[s].sa = xmalloc (lres->ai_addrlen);
3319 datagram_address[s].len = lres->ai_addrlen;
3320 if (is_server)
3322 Lisp_Object remote;
3323 memset (datagram_address[s].sa, 0, lres->ai_addrlen);
3324 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3326 int rfamily, rlen;
3327 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3328 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3329 conv_lisp_to_sockaddr (rfamily, remote,
3330 datagram_address[s].sa, rlen);
3333 else
3334 memcpy (datagram_address[s].sa, lres->ai_addr, lres->ai_addrlen);
3336 #endif
3337 contact = Fplist_put (contact, QCaddress,
3338 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3339 #ifdef HAVE_GETSOCKNAME
3340 if (!is_server)
3342 struct sockaddr_in sa1;
3343 socklen_t len1 = sizeof (sa1);
3344 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3345 contact = Fplist_put (contact, QClocal,
3346 conv_sockaddr_to_lisp ((struct sockaddr *)&sa1, len1));
3348 #endif
3351 immediate_quit = 0;
3353 #ifdef HAVE_GETADDRINFO
3354 if (res != &ai)
3356 BLOCK_INPUT;
3357 freeaddrinfo (res);
3358 UNBLOCK_INPUT;
3360 #endif
3362 /* Discard the unwind protect for closing S, if any. */
3363 specpdl_ptr = specpdl + count1;
3365 /* Unwind bind_polling_period and request_sigio. */
3366 unbind_to (count, Qnil);
3368 if (s < 0)
3370 /* If non-blocking got this far - and failed - assume non-blocking is
3371 not supported after all. This is probably a wrong assumption, but
3372 the normal blocking calls to open-network-stream handles this error
3373 better. */
3374 if (is_non_blocking_client)
3375 return Qnil;
3377 errno = xerrno;
3378 if (is_server)
3379 report_file_error ("make server process failed", contact);
3380 else
3381 report_file_error ("make client process failed", contact);
3384 inch = s;
3385 outch = s;
3387 if (!NILP (buffer))
3388 buffer = Fget_buffer_create (buffer);
3389 proc = make_process (name);
3391 chan_process[inch] = proc;
3393 #ifdef O_NONBLOCK
3394 fcntl (inch, F_SETFL, O_NONBLOCK);
3395 #else
3396 #ifdef O_NDELAY
3397 fcntl (inch, F_SETFL, O_NDELAY);
3398 #endif
3399 #endif
3401 p = XPROCESS (proc);
3403 p->childp = contact;
3404 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
3405 p->type = Qnetwork;
3407 p->buffer = buffer;
3408 p->sentinel = sentinel;
3409 p->filter = filter;
3410 p->log = Fplist_get (contact, QClog);
3411 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3412 p->kill_without_query = 1;
3413 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3414 p->command = Qt;
3415 p->pid = 0;
3416 p->infd = inch;
3417 p->outfd = outch;
3418 if (is_server && socktype != SOCK_DGRAM)
3419 p->status = Qlisten;
3421 /* Make the process marker point into the process buffer (if any). */
3422 if (BUFFERP (buffer))
3423 set_marker_both (p->mark, buffer,
3424 BUF_ZV (XBUFFER (buffer)),
3425 BUF_ZV_BYTE (XBUFFER (buffer)));
3427 #ifdef NON_BLOCKING_CONNECT
3428 if (is_non_blocking_client)
3430 /* We may get here if connect did succeed immediately. However,
3431 in that case, we still need to signal this like a non-blocking
3432 connection. */
3433 p->status = Qconnect;
3434 if (!FD_ISSET (inch, &connect_wait_mask))
3436 FD_SET (inch, &connect_wait_mask);
3437 FD_SET (inch, &write_mask);
3438 num_pending_connects++;
3441 else
3442 #endif
3443 /* A server may have a client filter setting of Qt, but it must
3444 still listen for incoming connects unless it is stopped. */
3445 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3446 || (EQ (p->status, Qlisten) && NILP (p->command)))
3448 FD_SET (inch, &input_wait_mask);
3449 FD_SET (inch, &non_keyboard_wait_mask);
3452 if (inch > max_process_desc)
3453 max_process_desc = inch;
3455 tem = Fplist_member (contact, QCcoding);
3456 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3457 tem = Qnil; /* No error message (too late!). */
3460 /* Setup coding systems for communicating with the network stream. */
3461 struct gcpro gcpro1;
3462 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3463 Lisp_Object coding_systems = Qt;
3464 Lisp_Object fargs[5], val;
3466 if (!NILP (tem))
3468 val = XCAR (XCDR (tem));
3469 if (CONSP (val))
3470 val = XCAR (val);
3472 else if (!NILP (Vcoding_system_for_read))
3473 val = Vcoding_system_for_read;
3474 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
3475 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
3476 /* We dare not decode end-of-line format by setting VAL to
3477 Qraw_text, because the existing Emacs Lisp libraries
3478 assume that they receive bare code including a sequence of
3479 CR LF. */
3480 val = Qnil;
3481 else
3483 if (NILP (host) || NILP (service))
3484 coding_systems = Qnil;
3485 else
3487 fargs[0] = Qopen_network_stream, fargs[1] = name,
3488 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3489 GCPRO1 (proc);
3490 coding_systems = Ffind_operation_coding_system (5, fargs);
3491 UNGCPRO;
3493 if (CONSP (coding_systems))
3494 val = XCAR (coding_systems);
3495 else if (CONSP (Vdefault_process_coding_system))
3496 val = XCAR (Vdefault_process_coding_system);
3497 else
3498 val = Qnil;
3500 p->decode_coding_system = val;
3502 if (!NILP (tem))
3504 val = XCAR (XCDR (tem));
3505 if (CONSP (val))
3506 val = XCDR (val);
3508 else if (!NILP (Vcoding_system_for_write))
3509 val = Vcoding_system_for_write;
3510 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3511 val = Qnil;
3512 else
3514 if (EQ (coding_systems, Qt))
3516 if (NILP (host) || NILP (service))
3517 coding_systems = Qnil;
3518 else
3520 fargs[0] = Qopen_network_stream, fargs[1] = name,
3521 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3522 GCPRO1 (proc);
3523 coding_systems = Ffind_operation_coding_system (5, fargs);
3524 UNGCPRO;
3527 if (CONSP (coding_systems))
3528 val = XCDR (coding_systems);
3529 else if (CONSP (Vdefault_process_coding_system))
3530 val = XCDR (Vdefault_process_coding_system);
3531 else
3532 val = Qnil;
3534 p->encode_coding_system = val;
3536 setup_process_coding_systems (proc);
3538 p->decoding_buf = empty_unibyte_string;
3539 p->decoding_carryover = 0;
3540 p->encoding_buf = empty_unibyte_string;
3542 p->inherit_coding_system_flag
3543 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3545 UNGCPRO;
3546 return proc;
3550 #if defined (HAVE_NET_IF_H)
3552 #ifdef SIOCGIFCONF
3553 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3554 doc: /* Return an alist of all network interfaces and their network address.
3555 Each element is a cons, the car of which is a string containing the
3556 interface name, and the cdr is the network address in internal
3557 format; see the description of ADDRESS in `make-network-process'. */)
3558 (void)
3560 struct ifconf ifconf;
3561 struct ifreq *ifreq;
3562 void *buf = NULL;
3563 ptrdiff_t buf_size = 512;
3564 int s, i;
3565 Lisp_Object res;
3567 s = socket (AF_INET, SOCK_STREAM, 0);
3568 if (s < 0)
3569 return Qnil;
3573 buf = xpalloc (buf, &buf_size, 1, INT_MAX, 1);
3574 ifconf.ifc_buf = buf;
3575 ifconf.ifc_len = buf_size;
3576 if (ioctl (s, SIOCGIFCONF, &ifconf))
3578 close (s);
3579 xfree (buf);
3580 return Qnil;
3583 while (ifconf.ifc_len == buf_size);
3585 close (s);
3587 res = Qnil;
3588 ifreq = ifconf.ifc_req;
3589 while ((char *) ifreq < (char *) ifconf.ifc_req + ifconf.ifc_len)
3591 struct ifreq *ifq = ifreq;
3592 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
3593 #define SIZEOF_IFREQ(sif) \
3594 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
3595 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
3597 int len = SIZEOF_IFREQ (ifq);
3598 #else
3599 int len = sizeof (*ifreq);
3600 #endif
3601 char namebuf[sizeof (ifq->ifr_name) + 1];
3602 i += len;
3603 ifreq = (struct ifreq *) ((char *) ifreq + len);
3605 if (ifq->ifr_addr.sa_family != AF_INET)
3606 continue;
3608 memcpy (namebuf, ifq->ifr_name, sizeof (ifq->ifr_name));
3609 namebuf[sizeof (ifq->ifr_name)] = 0;
3610 res = Fcons (Fcons (build_string (namebuf),
3611 conv_sockaddr_to_lisp (&ifq->ifr_addr,
3612 sizeof (struct sockaddr))),
3613 res);
3616 xfree (buf);
3617 return res;
3619 #endif /* SIOCGIFCONF */
3621 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
3623 struct ifflag_def {
3624 int flag_bit;
3625 const char *flag_sym;
3628 static const struct ifflag_def ifflag_table[] = {
3629 #ifdef IFF_UP
3630 { IFF_UP, "up" },
3631 #endif
3632 #ifdef IFF_BROADCAST
3633 { IFF_BROADCAST, "broadcast" },
3634 #endif
3635 #ifdef IFF_DEBUG
3636 { IFF_DEBUG, "debug" },
3637 #endif
3638 #ifdef IFF_LOOPBACK
3639 { IFF_LOOPBACK, "loopback" },
3640 #endif
3641 #ifdef IFF_POINTOPOINT
3642 { IFF_POINTOPOINT, "pointopoint" },
3643 #endif
3644 #ifdef IFF_RUNNING
3645 { IFF_RUNNING, "running" },
3646 #endif
3647 #ifdef IFF_NOARP
3648 { IFF_NOARP, "noarp" },
3649 #endif
3650 #ifdef IFF_PROMISC
3651 { IFF_PROMISC, "promisc" },
3652 #endif
3653 #ifdef IFF_NOTRAILERS
3654 #ifdef NS_IMPL_COCOA
3655 /* Really means smart, notrailers is obsolete */
3656 { IFF_NOTRAILERS, "smart" },
3657 #else
3658 { IFF_NOTRAILERS, "notrailers" },
3659 #endif
3660 #endif
3661 #ifdef IFF_ALLMULTI
3662 { IFF_ALLMULTI, "allmulti" },
3663 #endif
3664 #ifdef IFF_MASTER
3665 { IFF_MASTER, "master" },
3666 #endif
3667 #ifdef IFF_SLAVE
3668 { IFF_SLAVE, "slave" },
3669 #endif
3670 #ifdef IFF_MULTICAST
3671 { IFF_MULTICAST, "multicast" },
3672 #endif
3673 #ifdef IFF_PORTSEL
3674 { IFF_PORTSEL, "portsel" },
3675 #endif
3676 #ifdef IFF_AUTOMEDIA
3677 { IFF_AUTOMEDIA, "automedia" },
3678 #endif
3679 #ifdef IFF_DYNAMIC
3680 { IFF_DYNAMIC, "dynamic" },
3681 #endif
3682 #ifdef IFF_OACTIVE
3683 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
3684 #endif
3685 #ifdef IFF_SIMPLEX
3686 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
3687 #endif
3688 #ifdef IFF_LINK0
3689 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
3690 #endif
3691 #ifdef IFF_LINK1
3692 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
3693 #endif
3694 #ifdef IFF_LINK2
3695 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
3696 #endif
3697 { 0, 0 }
3700 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
3701 doc: /* Return information about network interface named IFNAME.
3702 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3703 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3704 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
3705 FLAGS is the current flags of the interface. */)
3706 (Lisp_Object ifname)
3708 struct ifreq rq;
3709 Lisp_Object res = Qnil;
3710 Lisp_Object elt;
3711 int s;
3712 int any = 0;
3713 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
3714 && defined HAVE_GETIFADDRS && defined LLADDR)
3715 struct ifaddrs *ifap;
3716 #endif
3718 CHECK_STRING (ifname);
3720 memset (rq.ifr_name, 0, sizeof rq.ifr_name);
3721 strncpy (rq.ifr_name, SSDATA (ifname), sizeof (rq.ifr_name));
3723 s = socket (AF_INET, SOCK_STREAM, 0);
3724 if (s < 0)
3725 return Qnil;
3727 elt = Qnil;
3728 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
3729 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
3731 int flags = rq.ifr_flags;
3732 const struct ifflag_def *fp;
3733 int fnum;
3735 /* If flags is smaller than int (i.e. short) it may have the high bit set
3736 due to IFF_MULTICAST. In that case, sign extending it into
3737 an int is wrong. */
3738 if (flags < 0 && sizeof (rq.ifr_flags) < sizeof (flags))
3739 flags = (unsigned short) rq.ifr_flags;
3741 any = 1;
3742 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
3744 if (flags & fp->flag_bit)
3746 elt = Fcons (intern (fp->flag_sym), elt);
3747 flags -= fp->flag_bit;
3750 for (fnum = 0; flags && fnum < 32; flags >>= 1, fnum++)
3752 if (flags & 1)
3754 elt = Fcons (make_number (fnum), elt);
3758 #endif
3759 res = Fcons (elt, res);
3761 elt = Qnil;
3762 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
3763 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
3765 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3766 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3767 int n;
3769 any = 1;
3770 for (n = 0; n < 6; n++)
3771 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
3772 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
3774 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
3775 if (getifaddrs (&ifap) != -1)
3777 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3778 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3779 struct ifaddrs *it;
3781 for (it = ifap; it != NULL; it = it->ifa_next)
3783 struct sockaddr_dl *sdl = (struct sockaddr_dl*) it->ifa_addr;
3784 unsigned char linkaddr[6];
3785 int n;
3787 if (it->ifa_addr->sa_family != AF_LINK
3788 || strcmp (it->ifa_name, SSDATA (ifname)) != 0
3789 || sdl->sdl_alen != 6)
3790 continue;
3792 memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen);
3793 for (n = 0; n < 6; n++)
3794 p->contents[n] = make_number (linkaddr[n]);
3796 elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr);
3797 break;
3800 #ifdef HAVE_FREEIFADDRS
3801 freeifaddrs (ifap);
3802 #endif
3804 #endif /* HAVE_GETIFADDRS && LLADDR */
3806 res = Fcons (elt, res);
3808 elt = Qnil;
3809 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
3810 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
3812 any = 1;
3813 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3814 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
3815 #else
3816 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3817 #endif
3819 #endif
3820 res = Fcons (elt, res);
3822 elt = Qnil;
3823 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3824 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
3826 any = 1;
3827 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
3829 #endif
3830 res = Fcons (elt, res);
3832 elt = Qnil;
3833 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
3834 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
3836 any = 1;
3837 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3839 #endif
3840 res = Fcons (elt, res);
3842 close (s);
3844 return any ? res : Qnil;
3846 #endif
3847 #endif /* defined (HAVE_NET_IF_H) */
3849 /* Turn off input and output for process PROC. */
3851 static void
3852 deactivate_process (Lisp_Object proc)
3854 register int inchannel, outchannel;
3855 register struct Lisp_Process *p = XPROCESS (proc);
3857 #ifdef HAVE_GNUTLS
3858 /* Delete GnuTLS structures in PROC, if any. */
3859 emacs_gnutls_deinit (proc);
3860 #endif /* HAVE_GNUTLS */
3862 inchannel = p->infd;
3863 outchannel = p->outfd;
3865 #ifdef ADAPTIVE_READ_BUFFERING
3866 if (p->read_output_delay > 0)
3868 if (--process_output_delay_count < 0)
3869 process_output_delay_count = 0;
3870 p->read_output_delay = 0;
3871 p->read_output_skip = 0;
3873 #endif
3875 if (inchannel >= 0)
3877 /* Beware SIGCHLD hereabouts. */
3878 flush_pending_output (inchannel);
3879 emacs_close (inchannel);
3880 if (outchannel >= 0 && outchannel != inchannel)
3881 emacs_close (outchannel);
3883 p->infd = -1;
3884 p->outfd = -1;
3885 #ifdef DATAGRAM_SOCKETS
3886 if (DATAGRAM_CHAN_P (inchannel))
3888 xfree (datagram_address[inchannel].sa);
3889 datagram_address[inchannel].sa = 0;
3890 datagram_address[inchannel].len = 0;
3892 #endif
3893 chan_process[inchannel] = Qnil;
3894 FD_CLR (inchannel, &input_wait_mask);
3895 FD_CLR (inchannel, &non_keyboard_wait_mask);
3896 #ifdef NON_BLOCKING_CONNECT
3897 if (FD_ISSET (inchannel, &connect_wait_mask))
3899 FD_CLR (inchannel, &connect_wait_mask);
3900 FD_CLR (inchannel, &write_mask);
3901 if (--num_pending_connects < 0)
3902 abort ();
3904 #endif
3905 if (inchannel == max_process_desc)
3907 int i;
3908 /* We just closed the highest-numbered process input descriptor,
3909 so recompute the highest-numbered one now. */
3910 max_process_desc = 0;
3911 for (i = 0; i < MAXDESC; i++)
3912 if (!NILP (chan_process[i]))
3913 max_process_desc = i;
3919 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3920 0, 4, 0,
3921 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3922 It is read into the process' buffers or given to their filter functions.
3923 Non-nil arg PROCESS means do not return until some output has been received
3924 from PROCESS.
3926 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
3927 and milliseconds to wait; return after that much time whether or not
3928 there is any subprocess output. If SECONDS is a floating point number,
3929 it specifies a fractional number of seconds to wait.
3930 The MILLISEC argument is obsolete and should be avoided.
3932 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3933 from PROCESS, suspending reading output from other processes.
3934 If JUST-THIS-ONE is an integer, don't run any timers either.
3935 Return non-nil if we received any output before the timeout expired. */)
3936 (register Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, Lisp_Object just_this_one)
3938 intmax_t secs;
3939 int nsecs;
3941 if (! NILP (process))
3942 CHECK_PROCESS (process);
3943 else
3944 just_this_one = Qnil;
3946 if (!NILP (millisec))
3947 { /* Obsolete calling convention using integers rather than floats. */
3948 CHECK_NUMBER (millisec);
3949 if (NILP (seconds))
3950 seconds = make_float (XINT (millisec) / 1000.0);
3951 else
3953 CHECK_NUMBER (seconds);
3954 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
3958 secs = 0;
3959 nsecs = -1;
3961 if (!NILP (seconds))
3963 if (INTEGERP (seconds))
3965 if (0 < XINT (seconds))
3967 secs = XINT (seconds);
3968 nsecs = 0;
3971 else if (FLOATP (seconds))
3973 if (0 < XFLOAT_DATA (seconds))
3975 EMACS_TIME t = EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (seconds));
3976 secs = min (EMACS_SECS (t), WAIT_READING_MAX);
3977 nsecs = EMACS_NSECS (t);
3980 else
3981 wrong_type_argument (Qnumberp, seconds);
3983 else if (! NILP (process))
3984 nsecs = 0;
3986 return
3987 (wait_reading_process_output (secs, nsecs, 0, 0,
3988 Qnil,
3989 !NILP (process) ? XPROCESS (process) : NULL,
3990 NILP (just_this_one) ? 0 :
3991 !INTEGERP (just_this_one) ? 1 : -1)
3992 ? Qt : Qnil);
3995 /* Accept a connection for server process SERVER on CHANNEL. */
3997 static int connect_counter = 0;
3999 static void
4000 server_accept_connection (Lisp_Object server, int channel)
4002 Lisp_Object proc, caller, name, buffer;
4003 Lisp_Object contact, host, service;
4004 struct Lisp_Process *ps= XPROCESS (server);
4005 struct Lisp_Process *p;
4006 int s;
4007 union u_sockaddr {
4008 struct sockaddr sa;
4009 struct sockaddr_in in;
4010 #ifdef AF_INET6
4011 struct sockaddr_in6 in6;
4012 #endif
4013 #ifdef HAVE_LOCAL_SOCKETS
4014 struct sockaddr_un un;
4015 #endif
4016 } saddr;
4017 socklen_t len = sizeof saddr;
4019 s = accept (channel, &saddr.sa, &len);
4021 if (s < 0)
4023 int code = errno;
4025 if (code == EAGAIN)
4026 return;
4027 #ifdef EWOULDBLOCK
4028 if (code == EWOULDBLOCK)
4029 return;
4030 #endif
4032 if (!NILP (ps->log))
4033 call3 (ps->log, server, Qnil,
4034 concat3 (build_string ("accept failed with code"),
4035 Fnumber_to_string (make_number (code)),
4036 build_string ("\n")));
4037 return;
4040 connect_counter++;
4042 /* Setup a new process to handle the connection. */
4044 /* Generate a unique identification of the caller, and build contact
4045 information for this process. */
4046 host = Qt;
4047 service = Qnil;
4048 switch (saddr.sa.sa_family)
4050 case AF_INET:
4052 Lisp_Object args[5];
4053 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
4054 args[0] = build_string ("%d.%d.%d.%d");
4055 args[1] = make_number (*ip++);
4056 args[2] = make_number (*ip++);
4057 args[3] = make_number (*ip++);
4058 args[4] = make_number (*ip++);
4059 host = Fformat (5, args);
4060 service = make_number (ntohs (saddr.in.sin_port));
4062 args[0] = build_string (" <%s:%d>");
4063 args[1] = host;
4064 args[2] = service;
4065 caller = Fformat (3, args);
4067 break;
4069 #ifdef AF_INET6
4070 case AF_INET6:
4072 Lisp_Object args[9];
4073 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4074 int i;
4075 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4076 for (i = 0; i < 8; i++)
4077 args[i+1] = make_number (ntohs (ip6[i]));
4078 host = Fformat (9, args);
4079 service = make_number (ntohs (saddr.in.sin_port));
4081 args[0] = build_string (" <[%s]:%d>");
4082 args[1] = host;
4083 args[2] = service;
4084 caller = Fformat (3, args);
4086 break;
4087 #endif
4089 #ifdef HAVE_LOCAL_SOCKETS
4090 case AF_LOCAL:
4091 #endif
4092 default:
4093 caller = Fnumber_to_string (make_number (connect_counter));
4094 caller = concat3 (build_string (" <"), caller, build_string (">"));
4095 break;
4098 /* Create a new buffer name for this process if it doesn't have a
4099 filter. The new buffer name is based on the buffer name or
4100 process name of the server process concatenated with the caller
4101 identification. */
4103 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4104 buffer = Qnil;
4105 else
4107 buffer = ps->buffer;
4108 if (!NILP (buffer))
4109 buffer = Fbuffer_name (buffer);
4110 else
4111 buffer = ps->name;
4112 if (!NILP (buffer))
4114 buffer = concat2 (buffer, caller);
4115 buffer = Fget_buffer_create (buffer);
4119 /* Generate a unique name for the new server process. Combine the
4120 server process name with the caller identification. */
4122 name = concat2 (ps->name, caller);
4123 proc = make_process (name);
4125 chan_process[s] = proc;
4127 #ifdef O_NONBLOCK
4128 fcntl (s, F_SETFL, O_NONBLOCK);
4129 #else
4130 #ifdef O_NDELAY
4131 fcntl (s, F_SETFL, O_NDELAY);
4132 #endif
4133 #endif
4135 p = XPROCESS (proc);
4137 /* Build new contact information for this setup. */
4138 contact = Fcopy_sequence (ps->childp);
4139 contact = Fplist_put (contact, QCserver, Qnil);
4140 contact = Fplist_put (contact, QChost, host);
4141 if (!NILP (service))
4142 contact = Fplist_put (contact, QCservice, service);
4143 contact = Fplist_put (contact, QCremote,
4144 conv_sockaddr_to_lisp (&saddr.sa, len));
4145 #ifdef HAVE_GETSOCKNAME
4146 len = sizeof saddr;
4147 if (getsockname (s, &saddr.sa, &len) == 0)
4148 contact = Fplist_put (contact, QClocal,
4149 conv_sockaddr_to_lisp (&saddr.sa, len));
4150 #endif
4152 p->childp = contact;
4153 p->plist = Fcopy_sequence (ps->plist);
4154 p->type = Qnetwork;
4156 p->buffer = buffer;
4157 p->sentinel = ps->sentinel;
4158 p->filter = ps->filter;
4159 p->command = Qnil;
4160 p->pid = 0;
4161 p->infd = s;
4162 p->outfd = s;
4163 p->status = Qrun;
4165 /* Client processes for accepted connections are not stopped initially. */
4166 if (!EQ (p->filter, Qt))
4168 FD_SET (s, &input_wait_mask);
4169 FD_SET (s, &non_keyboard_wait_mask);
4172 if (s > max_process_desc)
4173 max_process_desc = s;
4175 /* Setup coding system for new process based on server process.
4176 This seems to be the proper thing to do, as the coding system
4177 of the new process should reflect the settings at the time the
4178 server socket was opened; not the current settings. */
4180 p->decode_coding_system = ps->decode_coding_system;
4181 p->encode_coding_system = ps->encode_coding_system;
4182 setup_process_coding_systems (proc);
4184 p->decoding_buf = empty_unibyte_string;
4185 p->decoding_carryover = 0;
4186 p->encoding_buf = empty_unibyte_string;
4188 p->inherit_coding_system_flag
4189 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4191 if (!NILP (ps->log))
4192 call3 (ps->log, server, proc,
4193 concat3 (build_string ("accept from "),
4194 (STRINGP (host) ? host : build_string ("-")),
4195 build_string ("\n")));
4197 if (!NILP (p->sentinel))
4198 exec_sentinel (proc,
4199 concat3 (build_string ("open from "),
4200 (STRINGP (host) ? host : build_string ("-")),
4201 build_string ("\n")));
4204 /* This variable is different from waiting_for_input in keyboard.c.
4205 It is used to communicate to a lisp process-filter/sentinel (via the
4206 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4207 for user-input when that process-filter was called.
4208 waiting_for_input cannot be used as that is by definition 0 when
4209 lisp code is being evalled.
4210 This is also used in record_asynch_buffer_change.
4211 For that purpose, this must be 0
4212 when not inside wait_reading_process_output. */
4213 static int waiting_for_user_input_p;
4215 static Lisp_Object
4216 wait_reading_process_output_unwind (Lisp_Object data)
4218 waiting_for_user_input_p = XINT (data);
4219 return Qnil;
4222 /* This is here so breakpoints can be put on it. */
4223 static void
4224 wait_reading_process_output_1 (void)
4228 /* Read and dispose of subprocess output while waiting for timeout to
4229 elapse and/or keyboard input to be available.
4231 TIME_LIMIT is:
4232 timeout in seconds
4233 If negative, gobble data immediately available but don't wait for any.
4235 NSECS is:
4236 an additional duration to wait, measured in nanoseconds
4237 If TIME_LIMIT is zero, then:
4238 If NSECS == 0, there is no limit.
4239 If NSECS > 0, the timeout consists of NSECS only.
4240 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4242 READ_KBD is:
4243 0 to ignore keyboard input, or
4244 1 to return when input is available, or
4245 -1 meaning caller will actually read the input, so don't throw to
4246 the quit handler, or
4248 DO_DISPLAY != 0 means redisplay should be done to show subprocess
4249 output that arrives.
4251 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4252 (and gobble terminal input into the buffer if any arrives).
4254 If WAIT_PROC is specified, wait until something arrives from that
4255 process. The return value is true if we read some input from
4256 that process.
4258 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
4259 (suspending output from other processes). A negative value
4260 means don't run any timers either.
4262 If WAIT_PROC is specified, then the function returns true if we
4263 received input from that process before the timeout elapsed.
4264 Otherwise, return true if we received input from any process. */
4267 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
4268 int do_display,
4269 Lisp_Object wait_for_cell,
4270 struct Lisp_Process *wait_proc, int just_wait_proc)
4272 register int channel, nfds;
4273 SELECT_TYPE Available;
4274 SELECT_TYPE Writeok;
4275 int check_write;
4276 int check_delay, no_avail;
4277 int xerrno;
4278 Lisp_Object proc;
4279 EMACS_TIME timeout, end_time;
4280 int wait_channel = -1;
4281 int got_some_input = 0;
4282 ptrdiff_t count = SPECPDL_INDEX ();
4284 FD_ZERO (&Available);
4285 FD_ZERO (&Writeok);
4287 if (time_limit == 0 && nsecs == 0 && wait_proc && !NILP (Vinhibit_quit)
4288 && !(CONSP (wait_proc->status) && EQ (XCAR (wait_proc->status), Qexit)))
4289 message ("Blocking call to accept-process-output with quit inhibited!!");
4291 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4292 if (wait_proc != NULL)
4293 wait_channel = wait_proc->infd;
4295 record_unwind_protect (wait_reading_process_output_unwind,
4296 make_number (waiting_for_user_input_p));
4297 waiting_for_user_input_p = read_kbd;
4299 if (time_limit < 0)
4301 time_limit = 0;
4302 nsecs = -1;
4304 else if (TYPE_MAXIMUM (time_t) < time_limit)
4305 time_limit = TYPE_MAXIMUM (time_t);
4307 /* Since we may need to wait several times,
4308 compute the absolute time to return at. */
4309 if (time_limit || 0 < nsecs)
4311 EMACS_GET_TIME (end_time);
4312 EMACS_SET_SECS_NSECS (timeout, time_limit, nsecs);
4313 EMACS_ADD_TIME (end_time, end_time, timeout);
4316 while (1)
4318 int timeout_reduced_for_timers = 0;
4320 /* If calling from keyboard input, do not quit
4321 since we want to return C-g as an input character.
4322 Otherwise, do pending quit if requested. */
4323 if (read_kbd >= 0)
4324 QUIT;
4325 #ifdef SYNC_INPUT
4326 else
4327 process_pending_signals ();
4328 #endif
4330 /* Exit now if the cell we're waiting for became non-nil. */
4331 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4332 break;
4334 /* Compute time from now till when time limit is up */
4335 /* Exit if already run out */
4336 if (nsecs < 0)
4338 /* A negative timeout means
4339 gobble output available now
4340 but don't wait at all. */
4342 EMACS_SET_SECS_USECS (timeout, 0, 0);
4344 else if (time_limit || 0 < nsecs)
4346 EMACS_GET_TIME (timeout);
4347 if (EMACS_TIME_LE (end_time, timeout))
4348 break;
4349 EMACS_SUB_TIME (timeout, end_time, timeout);
4351 else
4353 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4356 /* Normally we run timers here.
4357 But not if wait_for_cell; in those cases,
4358 the wait is supposed to be short,
4359 and those callers cannot handle running arbitrary Lisp code here. */
4360 if (NILP (wait_for_cell)
4361 && just_wait_proc >= 0)
4363 EMACS_TIME timer_delay;
4367 int old_timers_run = timers_run;
4368 struct buffer *old_buffer = current_buffer;
4369 Lisp_Object old_window = selected_window;
4371 timer_delay = timer_check ();
4373 /* If a timer has run, this might have changed buffers
4374 an alike. Make read_key_sequence aware of that. */
4375 if (timers_run != old_timers_run
4376 && (old_buffer != current_buffer
4377 || !EQ (old_window, selected_window))
4378 && waiting_for_user_input_p == -1)
4379 record_asynch_buffer_change ();
4381 if (timers_run != old_timers_run && do_display)
4382 /* We must retry, since a timer may have requeued itself
4383 and that could alter the time_delay. */
4384 redisplay_preserve_echo_area (9);
4385 else
4386 break;
4388 while (!detect_input_pending ());
4390 /* If there is unread keyboard input, also return. */
4391 if (read_kbd != 0
4392 && requeued_events_pending_p ())
4393 break;
4395 /* A negative timeout means do not wait at all. */
4396 if (0 <= nsecs)
4398 if (EMACS_TIME_VALID_P (timer_delay))
4400 if (EMACS_TIME_LT (timer_delay, timeout))
4402 timeout = timer_delay;
4403 timeout_reduced_for_timers = 1;
4406 else
4408 /* This is so a breakpoint can be put here. */
4409 wait_reading_process_output_1 ();
4414 /* Cause C-g and alarm signals to take immediate action,
4415 and cause input available signals to zero out timeout.
4417 It is important that we do this before checking for process
4418 activity. If we get a SIGCHLD after the explicit checks for
4419 process activity, timeout is the only way we will know. */
4420 if (read_kbd < 0)
4421 set_waiting_for_input (&timeout);
4423 /* If status of something has changed, and no input is
4424 available, notify the user of the change right away. After
4425 this explicit check, we'll let the SIGCHLD handler zap
4426 timeout to get our attention. */
4427 if (update_tick != process_tick)
4429 SELECT_TYPE Atemp;
4430 SELECT_TYPE Ctemp;
4432 if (kbd_on_hold_p ())
4433 FD_ZERO (&Atemp);
4434 else
4435 Atemp = input_wait_mask;
4436 Ctemp = write_mask;
4438 EMACS_SET_SECS_USECS (timeout, 0, 0);
4439 if ((pselect (max (max_process_desc, max_input_desc) + 1,
4440 &Atemp,
4441 #ifdef NON_BLOCKING_CONNECT
4442 (num_pending_connects > 0 ? &Ctemp : NULL),
4443 #else
4444 NULL,
4445 #endif
4446 NULL, &timeout, NULL)
4447 <= 0))
4449 /* It's okay for us to do this and then continue with
4450 the loop, since timeout has already been zeroed out. */
4451 clear_waiting_for_input ();
4452 status_notify (NULL);
4453 if (do_display) redisplay_preserve_echo_area (13);
4457 /* Don't wait for output from a non-running process. Just
4458 read whatever data has already been received. */
4459 if (wait_proc && wait_proc->raw_status_new)
4460 update_status (wait_proc);
4461 if (wait_proc
4462 && ! EQ (wait_proc->status, Qrun)
4463 && ! EQ (wait_proc->status, Qconnect))
4465 int nread, total_nread = 0;
4467 clear_waiting_for_input ();
4468 XSETPROCESS (proc, wait_proc);
4470 /* Read data from the process, until we exhaust it. */
4471 while (wait_proc->infd >= 0)
4473 nread = read_process_output (proc, wait_proc->infd);
4475 if (nread == 0)
4476 break;
4478 if (0 < nread)
4480 total_nread += nread;
4481 got_some_input = 1;
4483 #ifdef EIO
4484 else if (nread == -1 && EIO == errno)
4485 break;
4486 #endif
4487 #ifdef EAGAIN
4488 else if (nread == -1 && EAGAIN == errno)
4489 break;
4490 #endif
4491 #ifdef EWOULDBLOCK
4492 else if (nread == -1 && EWOULDBLOCK == errno)
4493 break;
4494 #endif
4496 if (total_nread > 0 && do_display)
4497 redisplay_preserve_echo_area (10);
4499 break;
4502 /* Wait till there is something to do */
4504 if (wait_proc && just_wait_proc)
4506 if (wait_proc->infd < 0) /* Terminated */
4507 break;
4508 FD_SET (wait_proc->infd, &Available);
4509 check_delay = 0;
4510 check_write = 0;
4512 else if (!NILP (wait_for_cell))
4514 Available = non_process_wait_mask;
4515 check_delay = 0;
4516 check_write = 0;
4518 else
4520 if (! read_kbd)
4521 Available = non_keyboard_wait_mask;
4522 else
4523 Available = input_wait_mask;
4524 Writeok = write_mask;
4525 #ifdef SELECT_CANT_DO_WRITE_MASK
4526 check_write = 0;
4527 #else
4528 check_write = 1;
4529 #endif
4530 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4533 /* If frame size has changed or the window is newly mapped,
4534 redisplay now, before we start to wait. There is a race
4535 condition here; if a SIGIO arrives between now and the select
4536 and indicates that a frame is trashed, the select may block
4537 displaying a trashed screen. */
4538 if (frame_garbaged && do_display)
4540 clear_waiting_for_input ();
4541 redisplay_preserve_echo_area (11);
4542 if (read_kbd < 0)
4543 set_waiting_for_input (&timeout);
4546 /* Skip the `select' call if input is available and we're
4547 waiting for keyboard input or a cell change (which can be
4548 triggered by processing X events). In the latter case, set
4549 nfds to 1 to avoid breaking the loop. */
4550 no_avail = 0;
4551 if ((read_kbd || !NILP (wait_for_cell))
4552 && detect_input_pending ())
4554 nfds = read_kbd ? 0 : 1;
4555 no_avail = 1;
4558 if (!no_avail)
4561 #ifdef ADAPTIVE_READ_BUFFERING
4562 /* Set the timeout for adaptive read buffering if any
4563 process has non-zero read_output_skip and non-zero
4564 read_output_delay, and we are not reading output for a
4565 specific wait_channel. It is not executed if
4566 Vprocess_adaptive_read_buffering is nil. */
4567 if (process_output_skip && check_delay > 0)
4569 int nsecs = EMACS_NSECS (timeout);
4570 if (EMACS_SECS (timeout) > 0 || nsecs > READ_OUTPUT_DELAY_MAX)
4571 nsecs = READ_OUTPUT_DELAY_MAX;
4572 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4574 proc = chan_process[channel];
4575 if (NILP (proc))
4576 continue;
4577 /* Find minimum non-zero read_output_delay among the
4578 processes with non-zero read_output_skip. */
4579 if (XPROCESS (proc)->read_output_delay > 0)
4581 check_delay--;
4582 if (!XPROCESS (proc)->read_output_skip)
4583 continue;
4584 FD_CLR (channel, &Available);
4585 XPROCESS (proc)->read_output_skip = 0;
4586 if (XPROCESS (proc)->read_output_delay < nsecs)
4587 nsecs = XPROCESS (proc)->read_output_delay;
4590 EMACS_SET_SECS_NSECS (timeout, 0, nsecs);
4591 process_output_skip = 0;
4593 #endif
4594 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
4595 nfds = xg_select
4596 #elif defined (HAVE_NS)
4597 nfds = ns_select
4598 #else
4599 nfds = pselect
4600 #endif
4601 (max (max_process_desc, max_input_desc) + 1,
4602 &Available,
4603 (check_write ? &Writeok : (SELECT_TYPE *)0),
4604 NULL, &timeout, NULL);
4606 #ifdef HAVE_GNUTLS
4607 /* GnuTLS buffers data internally. In lowat mode it leaves
4608 some data in the TCP buffers so that select works, but
4609 with custom pull/push functions we need to check if some
4610 data is available in the buffers manually. */
4611 if (nfds == 0)
4613 if (! wait_proc)
4615 /* We're not waiting on a specific process, so loop
4616 through all the channels and check for data.
4617 This is a workaround needed for some versions of
4618 the gnutls library -- 2.12.14 has been confirmed
4619 to need it. See
4620 http://comments.gmane.org/gmane.emacs.devel/145074 */
4621 for (channel = 0; channel < MAXDESC; ++channel)
4622 if (! NILP (chan_process[channel]))
4624 struct Lisp_Process *p =
4625 XPROCESS (chan_process[channel]);
4626 if (p && p->gnutls_p && p->infd
4627 && ((emacs_gnutls_record_check_pending
4628 (p->gnutls_state))
4629 > 0))
4631 nfds++;
4632 FD_SET (p->infd, &Available);
4636 else
4638 /* Check this specific channel. */
4639 if (wait_proc->gnutls_p /* Check for valid process. */
4640 /* Do we have pending data? */
4641 && ((emacs_gnutls_record_check_pending
4642 (wait_proc->gnutls_state))
4643 > 0))
4645 nfds = 1;
4646 /* Set to Available. */
4647 FD_SET (wait_proc->infd, &Available);
4651 #endif
4654 xerrno = errno;
4656 /* Make C-g and alarm signals set flags again */
4657 clear_waiting_for_input ();
4659 /* If we woke up due to SIGWINCH, actually change size now. */
4660 do_pending_window_change (0);
4662 if ((time_limit || nsecs) && nfds == 0 && ! timeout_reduced_for_timers)
4663 /* We waited the full specified time, so return now. */
4664 break;
4665 if (nfds < 0)
4667 if (xerrno == EINTR)
4668 no_avail = 1;
4669 else if (xerrno == EBADF)
4671 #ifdef AIX
4672 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4673 the child's closure of the pts gives the parent a SIGHUP, and
4674 the ptc file descriptor is automatically closed,
4675 yielding EBADF here or at select() call above.
4676 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4677 in m/ibmrt-aix.h), and here we just ignore the select error.
4678 Cleanup occurs c/o status_notify after SIGCLD. */
4679 no_avail = 1; /* Cannot depend on values returned */
4680 #else
4681 abort ();
4682 #endif
4684 else
4685 error ("select error: %s", emacs_strerror (xerrno));
4688 if (no_avail)
4690 FD_ZERO (&Available);
4691 check_write = 0;
4694 #if 0 /* When polling is used, interrupt_input is 0,
4695 so get_input_pending should read the input.
4696 So this should not be needed. */
4697 /* If we are using polling for input,
4698 and we see input available, make it get read now.
4699 Otherwise it might not actually get read for a second.
4700 And on hpux, since we turn off polling in wait_reading_process_output,
4701 it might never get read at all if we don't spend much time
4702 outside of wait_reading_process_output. */
4703 if (read_kbd && interrupt_input
4704 && keyboard_bit_set (&Available)
4705 && input_polling_used ())
4706 kill (getpid (), SIGALRM);
4707 #endif
4709 /* Check for keyboard input */
4710 /* If there is any, return immediately
4711 to give it higher priority than subprocesses */
4713 if (read_kbd != 0)
4715 int old_timers_run = timers_run;
4716 struct buffer *old_buffer = current_buffer;
4717 Lisp_Object old_window = selected_window;
4718 int leave = 0;
4720 if (detect_input_pending_run_timers (do_display))
4722 swallow_events (do_display);
4723 if (detect_input_pending_run_timers (do_display))
4724 leave = 1;
4727 /* If a timer has run, this might have changed buffers
4728 an alike. Make read_key_sequence aware of that. */
4729 if (timers_run != old_timers_run
4730 && waiting_for_user_input_p == -1
4731 && (old_buffer != current_buffer
4732 || !EQ (old_window, selected_window)))
4733 record_asynch_buffer_change ();
4735 if (leave)
4736 break;
4739 /* If there is unread keyboard input, also return. */
4740 if (read_kbd != 0
4741 && requeued_events_pending_p ())
4742 break;
4744 /* If we are not checking for keyboard input now,
4745 do process events (but don't run any timers).
4746 This is so that X events will be processed.
4747 Otherwise they may have to wait until polling takes place.
4748 That would causes delays in pasting selections, for example.
4750 (We used to do this only if wait_for_cell.) */
4751 if (read_kbd == 0 && detect_input_pending ())
4753 swallow_events (do_display);
4754 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4755 if (detect_input_pending ())
4756 break;
4757 #endif
4760 /* Exit now if the cell we're waiting for became non-nil. */
4761 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4762 break;
4764 #ifdef SIGIO
4765 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4766 go read it. This can happen with X on BSD after logging out.
4767 In that case, there really is no input and no SIGIO,
4768 but select says there is input. */
4770 if (read_kbd && interrupt_input
4771 && keyboard_bit_set (&Available) && ! noninteractive)
4772 kill (getpid (), SIGIO);
4773 #endif
4775 if (! wait_proc)
4776 got_some_input |= nfds > 0;
4778 /* If checking input just got us a size-change event from X,
4779 obey it now if we should. */
4780 if (read_kbd || ! NILP (wait_for_cell))
4781 do_pending_window_change (0);
4783 /* Check for data from a process. */
4784 if (no_avail || nfds == 0)
4785 continue;
4787 for (channel = 0; channel <= max_input_desc; ++channel)
4789 struct fd_callback_data *d = &fd_callback_info[channel];
4790 if (FD_ISSET (channel, &Available)
4791 && d->func != 0
4792 && (d->condition & FOR_READ) != 0)
4793 d->func (channel, d->data, 1);
4794 if (FD_ISSET (channel, &write_mask)
4795 && d->func != 0
4796 && (d->condition & FOR_WRITE) != 0)
4797 d->func (channel, d->data, 0);
4800 for (channel = 0; channel <= max_process_desc; channel++)
4802 if (FD_ISSET (channel, &Available)
4803 && FD_ISSET (channel, &non_keyboard_wait_mask)
4804 && !FD_ISSET (channel, &non_process_wait_mask))
4806 int nread;
4808 /* If waiting for this channel, arrange to return as
4809 soon as no more input to be processed. No more
4810 waiting. */
4811 if (wait_channel == channel)
4813 wait_channel = -1;
4814 nsecs = -1;
4815 got_some_input = 1;
4817 proc = chan_process[channel];
4818 if (NILP (proc))
4819 continue;
4821 /* If this is a server stream socket, accept connection. */
4822 if (EQ (XPROCESS (proc)->status, Qlisten))
4824 server_accept_connection (proc, channel);
4825 continue;
4828 /* Read data from the process, starting with our
4829 buffered-ahead character if we have one. */
4831 nread = read_process_output (proc, channel);
4832 if (nread > 0)
4834 /* Since read_process_output can run a filter,
4835 which can call accept-process-output,
4836 don't try to read from any other processes
4837 before doing the select again. */
4838 FD_ZERO (&Available);
4840 if (do_display)
4841 redisplay_preserve_echo_area (12);
4843 #ifdef EWOULDBLOCK
4844 else if (nread == -1 && errno == EWOULDBLOCK)
4846 #endif
4847 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
4848 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
4849 #ifdef O_NONBLOCK
4850 else if (nread == -1 && errno == EAGAIN)
4852 #else
4853 #ifdef O_NDELAY
4854 else if (nread == -1 && errno == EAGAIN)
4856 /* Note that we cannot distinguish between no input
4857 available now and a closed pipe.
4858 With luck, a closed pipe will be accompanied by
4859 subprocess termination and SIGCHLD. */
4860 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4862 #endif /* O_NDELAY */
4863 #endif /* O_NONBLOCK */
4864 #ifdef HAVE_PTYS
4865 /* On some OSs with ptys, when the process on one end of
4866 a pty exits, the other end gets an error reading with
4867 errno = EIO instead of getting an EOF (0 bytes read).
4868 Therefore, if we get an error reading and errno =
4869 EIO, just continue, because the child process has
4870 exited and should clean itself up soon (e.g. when we
4871 get a SIGCHLD).
4873 However, it has been known to happen that the SIGCHLD
4874 got lost. So raise the signal again just in case.
4875 It can't hurt. */
4876 else if (nread == -1 && errno == EIO)
4878 struct Lisp_Process *p = XPROCESS (proc);
4880 /* Clear the descriptor now, so we only raise the
4881 signal once. */
4882 FD_CLR (channel, &input_wait_mask);
4883 FD_CLR (channel, &non_keyboard_wait_mask);
4885 if (p->pid == -2)
4887 /* If the EIO occurs on a pty, sigchld_handler's
4888 wait3() will not find the process object to
4889 delete. Do it here. */
4890 p->tick = ++process_tick;
4891 p->status = Qfailed;
4893 else
4894 kill (getpid (), SIGCHLD);
4896 #endif /* HAVE_PTYS */
4897 /* If we can detect process termination, don't consider the
4898 process gone just because its pipe is closed. */
4899 #ifdef SIGCHLD
4900 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4902 #endif
4903 else
4905 /* Preserve status of processes already terminated. */
4906 XPROCESS (proc)->tick = ++process_tick;
4907 deactivate_process (proc);
4908 if (XPROCESS (proc)->raw_status_new)
4909 update_status (XPROCESS (proc));
4910 if (EQ (XPROCESS (proc)->status, Qrun))
4911 XPROCESS (proc)->status
4912 = Fcons (Qexit, Fcons (make_number (256), Qnil));
4915 #ifdef NON_BLOCKING_CONNECT
4916 if (FD_ISSET (channel, &Writeok)
4917 && FD_ISSET (channel, &connect_wait_mask))
4919 struct Lisp_Process *p;
4921 FD_CLR (channel, &connect_wait_mask);
4922 FD_CLR (channel, &write_mask);
4923 if (--num_pending_connects < 0)
4924 abort ();
4926 proc = chan_process[channel];
4927 if (NILP (proc))
4928 continue;
4930 p = XPROCESS (proc);
4932 #ifdef GNU_LINUX
4933 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4934 So only use it on systems where it is known to work. */
4936 socklen_t xlen = sizeof (xerrno);
4937 if (getsockopt (channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4938 xerrno = errno;
4940 #else
4942 struct sockaddr pname;
4943 int pnamelen = sizeof (pname);
4945 /* If connection failed, getpeername will fail. */
4946 xerrno = 0;
4947 if (getpeername (channel, &pname, &pnamelen) < 0)
4949 /* Obtain connect failure code through error slippage. */
4950 char dummy;
4951 xerrno = errno;
4952 if (errno == ENOTCONN && read (channel, &dummy, 1) < 0)
4953 xerrno = errno;
4956 #endif
4957 if (xerrno)
4959 p->tick = ++process_tick;
4960 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
4961 deactivate_process (proc);
4963 else
4965 p->status = Qrun;
4966 /* Execute the sentinel here. If we had relied on
4967 status_notify to do it later, it will read input
4968 from the process before calling the sentinel. */
4969 exec_sentinel (proc, build_string ("open\n"));
4970 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4972 FD_SET (p->infd, &input_wait_mask);
4973 FD_SET (p->infd, &non_keyboard_wait_mask);
4977 #endif /* NON_BLOCKING_CONNECT */
4978 } /* end for each file descriptor */
4979 } /* end while exit conditions not met */
4981 unbind_to (count, Qnil);
4983 /* If calling from keyboard input, do not quit
4984 since we want to return C-g as an input character.
4985 Otherwise, do pending quit if requested. */
4986 if (read_kbd >= 0)
4988 /* Prevent input_pending from remaining set if we quit. */
4989 clear_input_pending ();
4990 QUIT;
4993 return got_some_input;
4996 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4998 static Lisp_Object
4999 read_process_output_call (Lisp_Object fun_and_args)
5001 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
5004 static Lisp_Object
5005 read_process_output_error_handler (Lisp_Object error_val)
5007 cmd_error_internal (error_val, "error in process filter: ");
5008 Vinhibit_quit = Qt;
5009 update_echo_area ();
5010 Fsleep_for (make_number (2), Qnil);
5011 return Qt;
5014 /* Read pending output from the process channel,
5015 starting with our buffered-ahead character if we have one.
5016 Yield number of decoded characters read.
5018 This function reads at most 4096 characters.
5019 If you want to read all available subprocess output,
5020 you must call it repeatedly until it returns zero.
5022 The characters read are decoded according to PROC's coding-system
5023 for decoding. */
5025 static int
5026 read_process_output (Lisp_Object proc, register int channel)
5028 register ssize_t nbytes;
5029 char *chars;
5030 register Lisp_Object outstream;
5031 register struct Lisp_Process *p = XPROCESS (proc);
5032 register ptrdiff_t opoint;
5033 struct coding_system *coding = proc_decode_coding_system[channel];
5034 int carryover = p->decoding_carryover;
5035 int readmax = 4096;
5036 ptrdiff_t count = SPECPDL_INDEX ();
5037 Lisp_Object odeactivate;
5039 chars = alloca (carryover + readmax);
5040 if (carryover)
5041 /* See the comment above. */
5042 memcpy (chars, SDATA (p->decoding_buf), carryover);
5044 #ifdef DATAGRAM_SOCKETS
5045 /* We have a working select, so proc_buffered_char is always -1. */
5046 if (DATAGRAM_CHAN_P (channel))
5048 socklen_t len = datagram_address[channel].len;
5049 nbytes = recvfrom (channel, chars + carryover, readmax,
5050 0, datagram_address[channel].sa, &len);
5052 else
5053 #endif
5055 int buffered = 0 <= proc_buffered_char[channel];
5056 if (buffered)
5058 chars[carryover] = proc_buffered_char[channel];
5059 proc_buffered_char[channel] = -1;
5061 #ifdef HAVE_GNUTLS
5062 if (p->gnutls_p)
5063 nbytes = emacs_gnutls_read (p, chars + carryover + buffered,
5064 readmax - buffered);
5065 else
5066 #endif
5067 nbytes = emacs_read (channel, chars + carryover + buffered,
5068 readmax - buffered);
5069 #ifdef ADAPTIVE_READ_BUFFERING
5070 if (nbytes > 0 && p->adaptive_read_buffering)
5072 int delay = p->read_output_delay;
5073 if (nbytes < 256)
5075 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
5077 if (delay == 0)
5078 process_output_delay_count++;
5079 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
5082 else if (delay > 0 && nbytes == readmax - buffered)
5084 delay -= READ_OUTPUT_DELAY_INCREMENT;
5085 if (delay == 0)
5086 process_output_delay_count--;
5088 p->read_output_delay = delay;
5089 if (delay)
5091 p->read_output_skip = 1;
5092 process_output_skip = 1;
5095 #endif
5096 nbytes += buffered;
5097 nbytes += buffered && nbytes <= 0;
5100 p->decoding_carryover = 0;
5102 /* At this point, NBYTES holds number of bytes just received
5103 (including the one in proc_buffered_char[channel]). */
5104 if (nbytes <= 0)
5106 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5107 return nbytes;
5108 coding->mode |= CODING_MODE_LAST_BLOCK;
5111 /* Now set NBYTES how many bytes we must decode. */
5112 nbytes += carryover;
5114 odeactivate = Vdeactivate_mark;
5115 /* There's no good reason to let process filters change the current
5116 buffer, and many callers of accept-process-output, sit-for, and
5117 friends don't expect current-buffer to be changed from under them. */
5118 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
5120 /* Read and dispose of the process output. */
5121 outstream = p->filter;
5122 if (!NILP (outstream))
5124 Lisp_Object text;
5125 int outer_running_asynch_code = running_asynch_code;
5126 int waiting = waiting_for_user_input_p;
5128 /* No need to gcpro these, because all we do with them later
5129 is test them for EQness, and none of them should be a string. */
5130 #if 0
5131 Lisp_Object obuffer, okeymap;
5132 XSETBUFFER (obuffer, current_buffer);
5133 okeymap = BVAR (current_buffer, keymap);
5134 #endif
5136 /* We inhibit quit here instead of just catching it so that
5137 hitting ^G when a filter happens to be running won't screw
5138 it up. */
5139 specbind (Qinhibit_quit, Qt);
5140 specbind (Qlast_nonmenu_event, Qt);
5142 /* In case we get recursively called,
5143 and we already saved the match data nonrecursively,
5144 save the same match data in safely recursive fashion. */
5145 if (outer_running_asynch_code)
5147 Lisp_Object tem;
5148 /* Don't clobber the CURRENT match data, either! */
5149 tem = Fmatch_data (Qnil, Qnil, Qnil);
5150 restore_search_regs ();
5151 record_unwind_save_match_data ();
5152 Fset_match_data (tem, Qt);
5155 /* For speed, if a search happens within this code,
5156 save the match data in a special nonrecursive fashion. */
5157 running_asynch_code = 1;
5159 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5160 text = coding->dst_object;
5161 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5162 /* A new coding system might be found. */
5163 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5165 p->decode_coding_system = Vlast_coding_system_used;
5167 /* Don't call setup_coding_system for
5168 proc_decode_coding_system[channel] here. It is done in
5169 detect_coding called via decode_coding above. */
5171 /* If a coding system for encoding is not yet decided, we set
5172 it as the same as coding-system for decoding.
5174 But, before doing that we must check if
5175 proc_encode_coding_system[p->outfd] surely points to a
5176 valid memory because p->outfd will be changed once EOF is
5177 sent to the process. */
5178 if (NILP (p->encode_coding_system)
5179 && proc_encode_coding_system[p->outfd])
5181 p->encode_coding_system
5182 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5183 setup_coding_system (p->encode_coding_system,
5184 proc_encode_coding_system[p->outfd]);
5188 if (coding->carryover_bytes > 0)
5190 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5191 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5192 memcpy (SDATA (p->decoding_buf), coding->carryover,
5193 coding->carryover_bytes);
5194 p->decoding_carryover = coding->carryover_bytes;
5196 if (SBYTES (text) > 0)
5197 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5198 sometimes it's simply wrong to wrap (e.g. when called from
5199 accept-process-output). */
5200 internal_condition_case_1 (read_process_output_call,
5201 Fcons (outstream,
5202 Fcons (proc, Fcons (text, Qnil))),
5203 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5204 read_process_output_error_handler);
5206 /* If we saved the match data nonrecursively, restore it now. */
5207 restore_search_regs ();
5208 running_asynch_code = outer_running_asynch_code;
5210 /* Restore waiting_for_user_input_p as it was
5211 when we were called, in case the filter clobbered it. */
5212 waiting_for_user_input_p = waiting;
5214 #if 0 /* Call record_asynch_buffer_change unconditionally,
5215 because we might have changed minor modes or other things
5216 that affect key bindings. */
5217 if (! EQ (Fcurrent_buffer (), obuffer)
5218 || ! EQ (current_buffer->keymap, okeymap))
5219 #endif
5220 /* But do it only if the caller is actually going to read events.
5221 Otherwise there's no need to make him wake up, and it could
5222 cause trouble (for example it would make sit_for return). */
5223 if (waiting_for_user_input_p == -1)
5224 record_asynch_buffer_change ();
5227 /* If no filter, write into buffer if it isn't dead. */
5228 else if (!NILP (p->buffer) && !NILP (BVAR (XBUFFER (p->buffer), name)))
5230 Lisp_Object old_read_only;
5231 ptrdiff_t old_begv, old_zv;
5232 ptrdiff_t old_begv_byte, old_zv_byte;
5233 ptrdiff_t before, before_byte;
5234 ptrdiff_t opoint_byte;
5235 Lisp_Object text;
5236 struct buffer *b;
5238 Fset_buffer (p->buffer);
5239 opoint = PT;
5240 opoint_byte = PT_BYTE;
5241 old_read_only = BVAR (current_buffer, read_only);
5242 old_begv = BEGV;
5243 old_zv = ZV;
5244 old_begv_byte = BEGV_BYTE;
5245 old_zv_byte = ZV_BYTE;
5247 BVAR (current_buffer, read_only) = Qnil;
5249 /* Insert new output into buffer
5250 at the current end-of-output marker,
5251 thus preserving logical ordering of input and output. */
5252 if (XMARKER (p->mark)->buffer)
5253 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5254 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5255 ZV_BYTE));
5256 else
5257 SET_PT_BOTH (ZV, ZV_BYTE);
5258 before = PT;
5259 before_byte = PT_BYTE;
5261 /* If the output marker is outside of the visible region, save
5262 the restriction and widen. */
5263 if (! (BEGV <= PT && PT <= ZV))
5264 Fwiden ();
5266 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5267 text = coding->dst_object;
5268 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5269 /* A new coding system might be found. See the comment in the
5270 similar code in the previous `if' block. */
5271 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5273 p->decode_coding_system = Vlast_coding_system_used;
5274 if (NILP (p->encode_coding_system)
5275 && proc_encode_coding_system[p->outfd])
5277 p->encode_coding_system
5278 = coding_inherit_eol_type (Vlast_coding_system_used, Qnil);
5279 setup_coding_system (p->encode_coding_system,
5280 proc_encode_coding_system[p->outfd]);
5283 if (coding->carryover_bytes > 0)
5285 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5286 p->decoding_buf = make_uninit_string (coding->carryover_bytes);
5287 memcpy (SDATA (p->decoding_buf), coding->carryover,
5288 coding->carryover_bytes);
5289 p->decoding_carryover = coding->carryover_bytes;
5291 /* Adjust the multibyteness of TEXT to that of the buffer. */
5292 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
5293 != ! STRING_MULTIBYTE (text))
5294 text = (STRING_MULTIBYTE (text)
5295 ? Fstring_as_unibyte (text)
5296 : Fstring_to_multibyte (text));
5297 /* Insert before markers in case we are inserting where
5298 the buffer's mark is, and the user's next command is Meta-y. */
5299 insert_from_string_before_markers (text, 0, 0,
5300 SCHARS (text), SBYTES (text), 0);
5302 /* Make sure the process marker's position is valid when the
5303 process buffer is changed in the signal_after_change above.
5304 W3 is known to do that. */
5305 if (BUFFERP (p->buffer)
5306 && (b = XBUFFER (p->buffer), b != current_buffer))
5307 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5308 else
5309 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5311 update_mode_lines++;
5313 /* Make sure opoint and the old restrictions
5314 float ahead of any new text just as point would. */
5315 if (opoint >= before)
5317 opoint += PT - before;
5318 opoint_byte += PT_BYTE - before_byte;
5320 if (old_begv > before)
5322 old_begv += PT - before;
5323 old_begv_byte += PT_BYTE - before_byte;
5325 if (old_zv >= before)
5327 old_zv += PT - before;
5328 old_zv_byte += PT_BYTE - before_byte;
5331 /* If the restriction isn't what it should be, set it. */
5332 if (old_begv != BEGV || old_zv != ZV)
5333 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5336 BVAR (current_buffer, read_only) = old_read_only;
5337 SET_PT_BOTH (opoint, opoint_byte);
5339 /* Handling the process output should not deactivate the mark. */
5340 Vdeactivate_mark = odeactivate;
5342 unbind_to (count, Qnil);
5343 return nbytes;
5346 /* Sending data to subprocess */
5348 static jmp_buf send_process_frame;
5349 static Lisp_Object process_sent_to;
5351 #ifndef FORWARD_SIGNAL_TO_MAIN_THREAD
5352 static _Noreturn void send_process_trap (int);
5353 #endif
5355 static void
5356 send_process_trap (int ignore)
5358 SIGNAL_THREAD_CHECK (SIGPIPE);
5359 sigunblock (sigmask (SIGPIPE));
5360 longjmp (send_process_frame, 1);
5363 /* In send_process, when a write fails temporarily,
5364 wait_reading_process_output is called. It may execute user code,
5365 e.g. timers, that attempts to write new data to the same process.
5366 We must ensure that data is sent in the right order, and not
5367 interspersed half-completed with other writes (Bug#10815). This is
5368 handled by the write_queue element of struct process. It is a list
5369 with each entry having the form
5371 (string . (offset . length))
5373 where STRING is a lisp string, OFFSET is the offset into the
5374 string's byte sequence from which we should begin to send, and
5375 LENGTH is the number of bytes left to send. */
5377 /* Create a new entry in write_queue.
5378 INPUT_OBJ should be a buffer, string Qt, or Qnil.
5379 BUF is a pointer to the string sequence of the input_obj or a C
5380 string in case of Qt or Qnil. */
5382 static void
5383 write_queue_push (struct Lisp_Process *p, Lisp_Object input_obj,
5384 const char *buf, ptrdiff_t len, int front)
5386 ptrdiff_t offset;
5387 Lisp_Object entry, obj;
5389 if (STRINGP (input_obj))
5391 offset = buf - SSDATA (input_obj);
5392 obj = input_obj;
5394 else
5396 offset = 0;
5397 obj = make_unibyte_string (buf, len);
5400 entry = Fcons (obj, Fcons (make_number (offset), make_number (len)));
5402 if (front)
5403 p->write_queue = Fcons (entry, p->write_queue);
5404 else
5405 p->write_queue = nconc2 (p->write_queue, Fcons (entry, Qnil));
5408 /* Remove the first element in the write_queue of process P, put its
5409 contents in OBJ, BUF and LEN, and return non-zero. If the
5410 write_queue is empty, return zero. */
5412 static int
5413 write_queue_pop (struct Lisp_Process *p, Lisp_Object *obj,
5414 const char **buf, ptrdiff_t *len)
5416 Lisp_Object entry, offset_length;
5417 ptrdiff_t offset;
5419 if (NILP (p->write_queue))
5420 return 0;
5422 entry = XCAR (p->write_queue);
5423 p->write_queue = XCDR (p->write_queue);
5425 *obj = XCAR (entry);
5426 offset_length = XCDR (entry);
5428 *len = XINT (XCDR (offset_length));
5429 offset = XINT (XCAR (offset_length));
5430 *buf = SSDATA (*obj) + offset;
5432 return 1;
5435 /* Send some data to process PROC.
5436 BUF is the beginning of the data; LEN is the number of characters.
5437 OBJECT is the Lisp object that the data comes from. If OBJECT is
5438 nil or t, it means that the data comes from C string.
5440 If OBJECT is not nil, the data is encoded by PROC's coding-system
5441 for encoding before it is sent.
5443 This function can evaluate Lisp code and can garbage collect. */
5445 static void
5446 send_process (volatile Lisp_Object proc, const char *volatile buf,
5447 volatile ptrdiff_t len, volatile Lisp_Object object)
5449 /* Use volatile to protect variables from being clobbered by longjmp. */
5450 struct Lisp_Process *p = XPROCESS (proc);
5451 ssize_t rv;
5452 struct coding_system *coding;
5453 void (*volatile old_sigpipe) (int);
5455 if (p->raw_status_new)
5456 update_status (p);
5457 if (! EQ (p->status, Qrun))
5458 error ("Process %s not running", SDATA (p->name));
5459 if (p->outfd < 0)
5460 error ("Output file descriptor of %s is closed", SDATA (p->name));
5462 coding = proc_encode_coding_system[p->outfd];
5463 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5465 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5466 || (BUFFERP (object)
5467 && !NILP (BVAR (XBUFFER (object), enable_multibyte_characters)))
5468 || EQ (object, Qt))
5470 p->encode_coding_system
5471 = complement_process_encoding_system (p->encode_coding_system);
5472 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5474 /* The coding system for encoding was changed to raw-text
5475 because we sent a unibyte text previously. Now we are
5476 sending a multibyte text, thus we must encode it by the
5477 original coding system specified for the current process.
5479 Another reason we come here is that the coding system
5480 was just complemented and a new one was returned by
5481 complement_process_encoding_system. */
5482 setup_coding_system (p->encode_coding_system, coding);
5483 Vlast_coding_system_used = p->encode_coding_system;
5485 coding->src_multibyte = 1;
5487 else
5489 coding->src_multibyte = 0;
5490 /* For sending a unibyte text, character code conversion should
5491 not take place but EOL conversion should. So, setup raw-text
5492 or one of the subsidiary if we have not yet done it. */
5493 if (CODING_REQUIRE_ENCODING (coding))
5495 if (CODING_REQUIRE_FLUSHING (coding))
5497 /* But, before changing the coding, we must flush out data. */
5498 coding->mode |= CODING_MODE_LAST_BLOCK;
5499 send_process (proc, "", 0, Qt);
5500 coding->mode &= CODING_MODE_LAST_BLOCK;
5502 setup_coding_system (raw_text_coding_system
5503 (Vlast_coding_system_used),
5504 coding);
5505 coding->src_multibyte = 0;
5508 coding->dst_multibyte = 0;
5510 if (CODING_REQUIRE_ENCODING (coding))
5512 coding->dst_object = Qt;
5513 if (BUFFERP (object))
5515 ptrdiff_t from_byte, from, to;
5516 ptrdiff_t save_pt, save_pt_byte;
5517 struct buffer *cur = current_buffer;
5519 set_buffer_internal (XBUFFER (object));
5520 save_pt = PT, save_pt_byte = PT_BYTE;
5522 from_byte = PTR_BYTE_POS ((unsigned char *) buf);
5523 from = BYTE_TO_CHAR (from_byte);
5524 to = BYTE_TO_CHAR (from_byte + len);
5525 TEMP_SET_PT_BOTH (from, from_byte);
5526 encode_coding_object (coding, object, from, from_byte,
5527 to, from_byte + len, Qt);
5528 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5529 set_buffer_internal (cur);
5531 else if (STRINGP (object))
5533 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5534 SBYTES (object), Qt);
5536 else
5538 coding->dst_object = make_unibyte_string (buf, len);
5539 coding->produced = len;
5542 len = coding->produced;
5543 object = coding->dst_object;
5544 buf = SSDATA (object);
5547 if (pty_max_bytes == 0)
5549 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
5550 pty_max_bytes = fpathconf (p->outfd, _PC_MAX_CANON);
5551 if (pty_max_bytes < 0)
5552 pty_max_bytes = 250;
5553 #else
5554 pty_max_bytes = 250;
5555 #endif
5556 /* Deduct one, to leave space for the eof. */
5557 pty_max_bytes--;
5560 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
5561 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
5562 when returning with longjmp despite being declared volatile. */
5563 if (!setjmp (send_process_frame))
5565 p = XPROCESS (proc); /* Repair any setjmp clobbering. */
5566 process_sent_to = proc;
5568 /* If there is already data in the write_queue, put the new data
5569 in the back of queue. Otherwise, ignore it. */
5570 if (!NILP (p->write_queue))
5571 write_queue_push (p, object, buf, len, 0);
5573 do /* while !NILP (p->write_queue) */
5575 ptrdiff_t cur_len = -1;
5576 const char *cur_buf;
5577 Lisp_Object cur_object;
5579 /* If write_queue is empty, ignore it. */
5580 if (!write_queue_pop (p, &cur_object, &cur_buf, &cur_len))
5582 cur_len = len;
5583 cur_buf = buf;
5584 cur_object = object;
5587 while (cur_len > 0)
5589 /* Send this batch, using one or more write calls. */
5590 ptrdiff_t written = 0;
5591 int outfd = p->outfd;
5592 old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap);
5593 #ifdef DATAGRAM_SOCKETS
5594 if (DATAGRAM_CHAN_P (outfd))
5596 rv = sendto (outfd, cur_buf, cur_len,
5597 0, datagram_address[outfd].sa,
5598 datagram_address[outfd].len);
5599 if (0 <= rv)
5600 written = rv;
5601 else if (errno == EMSGSIZE)
5603 signal (SIGPIPE, old_sigpipe);
5604 report_file_error ("sending datagram",
5605 Fcons (proc, Qnil));
5608 else
5609 #endif
5611 #ifdef HAVE_GNUTLS
5612 if (p->gnutls_p)
5613 written = emacs_gnutls_write (p, cur_buf, cur_len);
5614 else
5615 #endif
5616 written = emacs_write (outfd, cur_buf, cur_len);
5617 rv = (written ? 0 : -1);
5618 #ifdef ADAPTIVE_READ_BUFFERING
5619 if (p->read_output_delay > 0
5620 && p->adaptive_read_buffering == 1)
5622 p->read_output_delay = 0;
5623 process_output_delay_count--;
5624 p->read_output_skip = 0;
5626 #endif
5628 signal (SIGPIPE, old_sigpipe);
5630 if (rv < 0)
5632 if (0
5633 #ifdef EWOULDBLOCK
5634 || errno == EWOULDBLOCK
5635 #endif
5636 #ifdef EAGAIN
5637 || errno == EAGAIN
5638 #endif
5640 /* Buffer is full. Wait, accepting input;
5641 that may allow the program
5642 to finish doing output and read more. */
5644 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5645 /* A gross hack to work around a bug in FreeBSD.
5646 In the following sequence, read(2) returns
5647 bogus data:
5649 write(2) 1022 bytes
5650 write(2) 954 bytes, get EAGAIN
5651 read(2) 1024 bytes in process_read_output
5652 read(2) 11 bytes in process_read_output
5654 That is, read(2) returns more bytes than have
5655 ever been written successfully. The 1033 bytes
5656 read are the 1022 bytes written successfully
5657 after processing (for example with CRs added if
5658 the terminal is set up that way which it is
5659 here). The same bytes will be seen again in a
5660 later read(2), without the CRs. */
5662 if (errno == EAGAIN)
5664 int flags = FWRITE;
5665 ioctl (p->outfd, TIOCFLUSH, &flags);
5667 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5669 /* Put what we should have written in wait_queue. */
5670 write_queue_push (p, cur_object, cur_buf, cur_len, 1);
5671 wait_reading_process_output (0, 20 * 1000 * 1000,
5672 0, 0, Qnil, NULL, 0);
5673 /* Reread queue, to see what is left. */
5674 break;
5676 else
5677 /* This is a real error. */
5678 report_file_error ("writing to process", Fcons (proc, Qnil));
5680 cur_buf += written;
5681 cur_len -= written;
5684 while (!NILP (p->write_queue));
5686 else
5688 signal (SIGPIPE, old_sigpipe);
5689 proc = process_sent_to;
5690 p = XPROCESS (proc);
5691 p->raw_status_new = 0;
5692 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
5693 p->tick = ++process_tick;
5694 deactivate_process (proc);
5695 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
5699 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5700 3, 3, 0,
5701 doc: /* Send current contents of region as input to PROCESS.
5702 PROCESS may be a process, a buffer, the name of a process or buffer, or
5703 nil, indicating the current buffer's process.
5704 Called from program, takes three arguments, PROCESS, START and END.
5705 If the region is more than 500 characters long,
5706 it is sent in several bunches. This may happen even for shorter regions.
5707 Output from processes can arrive in between bunches. */)
5708 (Lisp_Object process, Lisp_Object start, Lisp_Object end)
5710 Lisp_Object proc;
5711 ptrdiff_t start1, end1;
5713 proc = get_process (process);
5714 validate_region (&start, &end);
5716 if (XINT (start) < GPT && XINT (end) > GPT)
5717 move_gap (XINT (start));
5719 start1 = CHAR_TO_BYTE (XINT (start));
5720 end1 = CHAR_TO_BYTE (XINT (end));
5721 send_process (proc, (char *) BYTE_POS_ADDR (start1), end1 - start1,
5722 Fcurrent_buffer ());
5724 return Qnil;
5727 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5728 2, 2, 0,
5729 doc: /* Send PROCESS the contents of STRING as input.
5730 PROCESS may be a process, a buffer, the name of a process or buffer, or
5731 nil, indicating the current buffer's process.
5732 If STRING is more than 500 characters long,
5733 it is sent in several bunches. This may happen even for shorter strings.
5734 Output from processes can arrive in between bunches. */)
5735 (Lisp_Object process, Lisp_Object string)
5737 Lisp_Object proc;
5738 CHECK_STRING (string);
5739 proc = get_process (process);
5740 send_process (proc, SSDATA (string),
5741 SBYTES (string), string);
5742 return Qnil;
5745 /* Return the foreground process group for the tty/pty that
5746 the process P uses. */
5747 static pid_t
5748 emacs_get_tty_pgrp (struct Lisp_Process *p)
5750 pid_t gid = -1;
5752 #ifdef TIOCGPGRP
5753 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5755 int fd;
5756 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5757 master side. Try the slave side. */
5758 fd = emacs_open (SSDATA (p->tty_name), O_RDONLY, 0);
5760 if (fd != -1)
5762 ioctl (fd, TIOCGPGRP, &gid);
5763 emacs_close (fd);
5766 #endif /* defined (TIOCGPGRP ) */
5768 return gid;
5771 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5772 Sprocess_running_child_p, 0, 1, 0,
5773 doc: /* Return t if PROCESS has given the terminal to a child.
5774 If the operating system does not make it possible to find out,
5775 return t unconditionally. */)
5776 (Lisp_Object process)
5778 /* Initialize in case ioctl doesn't exist or gives an error,
5779 in a way that will cause returning t. */
5780 pid_t gid;
5781 Lisp_Object proc;
5782 struct Lisp_Process *p;
5784 proc = get_process (process);
5785 p = XPROCESS (proc);
5787 if (!EQ (p->type, Qreal))
5788 error ("Process %s is not a subprocess",
5789 SDATA (p->name));
5790 if (p->infd < 0)
5791 error ("Process %s is not active",
5792 SDATA (p->name));
5794 gid = emacs_get_tty_pgrp (p);
5796 if (gid == p->pid)
5797 return Qnil;
5798 return Qt;
5801 /* send a signal number SIGNO to PROCESS.
5802 If CURRENT_GROUP is t, that means send to the process group
5803 that currently owns the terminal being used to communicate with PROCESS.
5804 This is used for various commands in shell mode.
5805 If CURRENT_GROUP is lambda, that means send to the process group
5806 that currently owns the terminal, but only if it is NOT the shell itself.
5808 If NOMSG is zero, insert signal-announcements into process's buffers
5809 right away.
5811 If we can, we try to signal PROCESS by sending control characters
5812 down the pty. This allows us to signal inferiors who have changed
5813 their uid, for which killpg would return an EPERM error. */
5815 static void
5816 process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
5817 int nomsg)
5819 Lisp_Object proc;
5820 register struct Lisp_Process *p;
5821 pid_t gid;
5822 int no_pgrp = 0;
5824 proc = get_process (process);
5825 p = XPROCESS (proc);
5827 if (!EQ (p->type, Qreal))
5828 error ("Process %s is not a subprocess",
5829 SDATA (p->name));
5830 if (p->infd < 0)
5831 error ("Process %s is not active",
5832 SDATA (p->name));
5834 if (!p->pty_flag)
5835 current_group = Qnil;
5837 /* If we are using pgrps, get a pgrp number and make it negative. */
5838 if (NILP (current_group))
5839 /* Send the signal to the shell's process group. */
5840 gid = p->pid;
5841 else
5843 #ifdef SIGNALS_VIA_CHARACTERS
5844 /* If possible, send signals to the entire pgrp
5845 by sending an input character to it. */
5847 struct termios t;
5848 cc_t *sig_char = NULL;
5850 tcgetattr (p->infd, &t);
5852 switch (signo)
5854 case SIGINT:
5855 sig_char = &t.c_cc[VINTR];
5856 break;
5858 case SIGQUIT:
5859 sig_char = &t.c_cc[VQUIT];
5860 break;
5862 case SIGTSTP:
5863 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5864 sig_char = &t.c_cc[VSWTCH];
5865 #else
5866 sig_char = &t.c_cc[VSUSP];
5867 #endif
5868 break;
5871 if (sig_char && *sig_char != CDISABLE)
5873 send_process (proc, (char *) sig_char, 1, Qnil);
5874 return;
5876 /* If we can't send the signal with a character,
5877 fall through and send it another way. */
5879 /* The code above may fall through if it can't
5880 handle the signal. */
5881 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5883 #ifdef TIOCGPGRP
5884 /* Get the current pgrp using the tty itself, if we have that.
5885 Otherwise, use the pty to get the pgrp.
5886 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5887 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5888 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5889 His patch indicates that if TIOCGPGRP returns an error, then
5890 we should just assume that p->pid is also the process group id. */
5892 gid = emacs_get_tty_pgrp (p);
5894 if (gid == -1)
5895 /* If we can't get the information, assume
5896 the shell owns the tty. */
5897 gid = p->pid;
5899 /* It is not clear whether anything really can set GID to -1.
5900 Perhaps on some system one of those ioctls can or could do so.
5901 Or perhaps this is vestigial. */
5902 if (gid == -1)
5903 no_pgrp = 1;
5904 #else /* ! defined (TIOCGPGRP ) */
5905 /* Can't select pgrps on this system, so we know that
5906 the child itself heads the pgrp. */
5907 gid = p->pid;
5908 #endif /* ! defined (TIOCGPGRP ) */
5910 /* If current_group is lambda, and the shell owns the terminal,
5911 don't send any signal. */
5912 if (EQ (current_group, Qlambda) && gid == p->pid)
5913 return;
5916 switch (signo)
5918 #ifdef SIGCONT
5919 case SIGCONT:
5920 p->raw_status_new = 0;
5921 p->status = Qrun;
5922 p->tick = ++process_tick;
5923 if (!nomsg)
5925 status_notify (NULL);
5926 redisplay_preserve_echo_area (13);
5928 break;
5929 #endif /* ! defined (SIGCONT) */
5930 case SIGINT:
5931 case SIGQUIT:
5932 case SIGKILL:
5933 flush_pending_output (p->infd);
5934 break;
5937 /* If we don't have process groups, send the signal to the immediate
5938 subprocess. That isn't really right, but it's better than any
5939 obvious alternative. */
5940 if (no_pgrp)
5942 kill (p->pid, signo);
5943 return;
5946 /* gid may be a pid, or minus a pgrp's number */
5947 #ifdef TIOCSIGSEND
5948 if (!NILP (current_group))
5950 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
5951 EMACS_KILLPG (gid, signo);
5953 else
5955 gid = - p->pid;
5956 kill (gid, signo);
5958 #else /* ! defined (TIOCSIGSEND) */
5959 EMACS_KILLPG (gid, signo);
5960 #endif /* ! defined (TIOCSIGSEND) */
5963 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5964 doc: /* Interrupt process PROCESS.
5965 PROCESS may be a process, a buffer, or the name of a process or buffer.
5966 No arg or nil means current buffer's process.
5967 Second arg CURRENT-GROUP non-nil means send signal to
5968 the current process-group of the process's controlling terminal
5969 rather than to the process's own process group.
5970 If the process is a shell, this means interrupt current subjob
5971 rather than the shell.
5973 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5974 don't send the signal. */)
5975 (Lisp_Object process, Lisp_Object current_group)
5977 process_send_signal (process, SIGINT, current_group, 0);
5978 return process;
5981 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5982 doc: /* Kill process PROCESS. May be process or name of one.
5983 See function `interrupt-process' for more details on usage. */)
5984 (Lisp_Object process, Lisp_Object current_group)
5986 process_send_signal (process, SIGKILL, current_group, 0);
5987 return process;
5990 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5991 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5992 See function `interrupt-process' for more details on usage. */)
5993 (Lisp_Object process, Lisp_Object current_group)
5995 process_send_signal (process, SIGQUIT, current_group, 0);
5996 return process;
5999 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
6000 doc: /* Stop process PROCESS. May be process or name of one.
6001 See function `interrupt-process' for more details on usage.
6002 If PROCESS is a network or serial process, inhibit handling of incoming
6003 traffic. */)
6004 (Lisp_Object process, Lisp_Object current_group)
6006 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6008 struct Lisp_Process *p;
6010 p = XPROCESS (process);
6011 if (NILP (p->command)
6012 && p->infd >= 0)
6014 FD_CLR (p->infd, &input_wait_mask);
6015 FD_CLR (p->infd, &non_keyboard_wait_mask);
6017 p->command = Qt;
6018 return process;
6020 #ifndef SIGTSTP
6021 error ("No SIGTSTP support");
6022 #else
6023 process_send_signal (process, SIGTSTP, current_group, 0);
6024 #endif
6025 return process;
6028 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
6029 doc: /* Continue process PROCESS. May be process or name of one.
6030 See function `interrupt-process' for more details on usage.
6031 If PROCESS is a network or serial process, resume handling of incoming
6032 traffic. */)
6033 (Lisp_Object process, Lisp_Object current_group)
6035 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
6037 struct Lisp_Process *p;
6039 p = XPROCESS (process);
6040 if (EQ (p->command, Qt)
6041 && p->infd >= 0
6042 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
6044 FD_SET (p->infd, &input_wait_mask);
6045 FD_SET (p->infd, &non_keyboard_wait_mask);
6046 #ifdef WINDOWSNT
6047 if (fd_info[ p->infd ].flags & FILE_SERIAL)
6048 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
6049 #else /* not WINDOWSNT */
6050 tcflush (p->infd, TCIFLUSH);
6051 #endif /* not WINDOWSNT */
6053 p->command = Qnil;
6054 return process;
6056 #ifdef SIGCONT
6057 process_send_signal (process, SIGCONT, current_group, 0);
6058 #else
6059 error ("No SIGCONT support");
6060 #endif
6061 return process;
6064 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
6065 2, 2, "sProcess (name or number): \nnSignal code: ",
6066 doc: /* Send PROCESS the signal with code SIGCODE.
6067 PROCESS may also be a number specifying the process id of the
6068 process to signal; in this case, the process need not be a child of
6069 this Emacs.
6070 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
6071 (Lisp_Object process, Lisp_Object sigcode)
6073 pid_t pid;
6075 if (STRINGP (process))
6077 Lisp_Object tem = Fget_process (process);
6078 if (NILP (tem))
6080 Lisp_Object process_number =
6081 string_to_number (SSDATA (process), 10, 1);
6082 if (INTEGERP (process_number) || FLOATP (process_number))
6083 tem = process_number;
6085 process = tem;
6087 else if (!NUMBERP (process))
6088 process = get_process (process);
6090 if (NILP (process))
6091 return process;
6093 if (NUMBERP (process))
6094 CONS_TO_INTEGER (process, pid_t, pid);
6095 else
6097 CHECK_PROCESS (process);
6098 pid = XPROCESS (process)->pid;
6099 if (pid <= 0)
6100 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
6103 #define parse_signal(NAME, VALUE) \
6104 else if (!xstrcasecmp (name, NAME)) \
6105 XSETINT (sigcode, VALUE)
6107 if (INTEGERP (sigcode))
6108 CHECK_TYPE_RANGED_INTEGER (int, sigcode);
6109 else
6111 char *name;
6113 CHECK_SYMBOL (sigcode);
6114 name = SSDATA (SYMBOL_NAME (sigcode));
6116 if (!strncmp (name, "SIG", 3) || !strncmp (name, "sig", 3))
6117 name += 3;
6119 if (0)
6121 #ifdef SIGUSR1
6122 parse_signal ("usr1", SIGUSR1);
6123 #endif
6124 #ifdef SIGUSR2
6125 parse_signal ("usr2", SIGUSR2);
6126 #endif
6127 #ifdef SIGTERM
6128 parse_signal ("term", SIGTERM);
6129 #endif
6130 #ifdef SIGHUP
6131 parse_signal ("hup", SIGHUP);
6132 #endif
6133 #ifdef SIGINT
6134 parse_signal ("int", SIGINT);
6135 #endif
6136 #ifdef SIGQUIT
6137 parse_signal ("quit", SIGQUIT);
6138 #endif
6139 #ifdef SIGILL
6140 parse_signal ("ill", SIGILL);
6141 #endif
6142 #ifdef SIGABRT
6143 parse_signal ("abrt", SIGABRT);
6144 #endif
6145 #ifdef SIGEMT
6146 parse_signal ("emt", SIGEMT);
6147 #endif
6148 #ifdef SIGKILL
6149 parse_signal ("kill", SIGKILL);
6150 #endif
6151 #ifdef SIGFPE
6152 parse_signal ("fpe", SIGFPE);
6153 #endif
6154 #ifdef SIGBUS
6155 parse_signal ("bus", SIGBUS);
6156 #endif
6157 #ifdef SIGSEGV
6158 parse_signal ("segv", SIGSEGV);
6159 #endif
6160 #ifdef SIGSYS
6161 parse_signal ("sys", SIGSYS);
6162 #endif
6163 #ifdef SIGPIPE
6164 parse_signal ("pipe", SIGPIPE);
6165 #endif
6166 #ifdef SIGALRM
6167 parse_signal ("alrm", SIGALRM);
6168 #endif
6169 #ifdef SIGURG
6170 parse_signal ("urg", SIGURG);
6171 #endif
6172 #ifdef SIGSTOP
6173 parse_signal ("stop", SIGSTOP);
6174 #endif
6175 #ifdef SIGTSTP
6176 parse_signal ("tstp", SIGTSTP);
6177 #endif
6178 #ifdef SIGCONT
6179 parse_signal ("cont", SIGCONT);
6180 #endif
6181 #ifdef SIGCHLD
6182 parse_signal ("chld", SIGCHLD);
6183 #endif
6184 #ifdef SIGTTIN
6185 parse_signal ("ttin", SIGTTIN);
6186 #endif
6187 #ifdef SIGTTOU
6188 parse_signal ("ttou", SIGTTOU);
6189 #endif
6190 #ifdef SIGIO
6191 parse_signal ("io", SIGIO);
6192 #endif
6193 #ifdef SIGXCPU
6194 parse_signal ("xcpu", SIGXCPU);
6195 #endif
6196 #ifdef SIGXFSZ
6197 parse_signal ("xfsz", SIGXFSZ);
6198 #endif
6199 #ifdef SIGVTALRM
6200 parse_signal ("vtalrm", SIGVTALRM);
6201 #endif
6202 #ifdef SIGPROF
6203 parse_signal ("prof", SIGPROF);
6204 #endif
6205 #ifdef SIGWINCH
6206 parse_signal ("winch", SIGWINCH);
6207 #endif
6208 #ifdef SIGINFO
6209 parse_signal ("info", SIGINFO);
6210 #endif
6211 else
6212 error ("Undefined signal name %s", name);
6215 #undef parse_signal
6217 return make_number (kill (pid, XINT (sigcode)));
6220 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
6221 doc: /* Make PROCESS see end-of-file in its input.
6222 EOF comes after any text already sent to it.
6223 PROCESS may be a process, a buffer, the name of a process or buffer, or
6224 nil, indicating the current buffer's process.
6225 If PROCESS is a network connection, or is a process communicating
6226 through a pipe (as opposed to a pty), then you cannot send any more
6227 text to PROCESS after you call this function.
6228 If PROCESS is a serial process, wait until all output written to the
6229 process has been transmitted to the serial port. */)
6230 (Lisp_Object process)
6232 Lisp_Object proc;
6233 struct coding_system *coding;
6235 if (DATAGRAM_CONN_P (process))
6236 return process;
6238 proc = get_process (process);
6239 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6241 /* Make sure the process is really alive. */
6242 if (XPROCESS (proc)->raw_status_new)
6243 update_status (XPROCESS (proc));
6244 if (! EQ (XPROCESS (proc)->status, Qrun))
6245 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6247 if (CODING_REQUIRE_FLUSHING (coding))
6249 coding->mode |= CODING_MODE_LAST_BLOCK;
6250 send_process (proc, "", 0, Qnil);
6253 if (XPROCESS (proc)->pty_flag)
6254 send_process (proc, "\004", 1, Qnil);
6255 else if (EQ (XPROCESS (proc)->type, Qserial))
6257 #ifndef WINDOWSNT
6258 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6259 error ("tcdrain() failed: %s", emacs_strerror (errno));
6260 #endif /* not WINDOWSNT */
6261 /* Do nothing on Windows because writes are blocking. */
6263 else
6265 int old_outfd, new_outfd;
6267 #ifdef HAVE_SHUTDOWN
6268 /* If this is a network connection, or socketpair is used
6269 for communication with the subprocess, call shutdown to cause EOF.
6270 (In some old system, shutdown to socketpair doesn't work.
6271 Then we just can't win.) */
6272 if (EQ (XPROCESS (proc)->type, Qnetwork)
6273 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6274 shutdown (XPROCESS (proc)->outfd, 1);
6275 /* In case of socketpair, outfd == infd, so don't close it. */
6276 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6277 emacs_close (XPROCESS (proc)->outfd);
6278 #else /* not HAVE_SHUTDOWN */
6279 emacs_close (XPROCESS (proc)->outfd);
6280 #endif /* not HAVE_SHUTDOWN */
6281 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6282 if (new_outfd < 0)
6283 abort ();
6284 old_outfd = XPROCESS (proc)->outfd;
6286 if (!proc_encode_coding_system[new_outfd])
6287 proc_encode_coding_system[new_outfd]
6288 = xmalloc (sizeof (struct coding_system));
6289 memcpy (proc_encode_coding_system[new_outfd],
6290 proc_encode_coding_system[old_outfd],
6291 sizeof (struct coding_system));
6292 memset (proc_encode_coding_system[old_outfd], 0,
6293 sizeof (struct coding_system));
6295 XPROCESS (proc)->outfd = new_outfd;
6297 return process;
6300 /* On receipt of a signal that a child status has changed, loop asking
6301 about children with changed statuses until the system says there
6302 are no more.
6304 All we do is change the status; we do not run sentinels or print
6305 notifications. That is saved for the next time keyboard input is
6306 done, in order to avoid timing errors.
6308 ** WARNING: this can be called during garbage collection.
6309 Therefore, it must not be fooled by the presence of mark bits in
6310 Lisp objects.
6312 ** USG WARNING: Although it is not obvious from the documentation
6313 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6314 signal() before executing at least one wait(), otherwise the
6315 handler will be called again, resulting in an infinite loop. The
6316 relevant portion of the documentation reads "SIGCLD signals will be
6317 queued and the signal-catching function will be continually
6318 reentered until the queue is empty". Invoking signal() causes the
6319 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6320 Inc.
6322 ** Malloc WARNING: This should never call malloc either directly or
6323 indirectly; if it does, that is a bug */
6325 #ifdef SIGCHLD
6326 static void
6327 sigchld_handler (int signo)
6329 int old_errno = errno;
6330 Lisp_Object proc;
6331 struct Lisp_Process *p;
6333 SIGNAL_THREAD_CHECK (signo);
6335 while (1)
6337 pid_t pid;
6338 int w;
6339 Lisp_Object tail;
6341 #ifdef WNOHANG
6342 #ifndef WUNTRACED
6343 #define WUNTRACED 0
6344 #endif /* no WUNTRACED */
6345 /* Keep trying to get a status until we get a definitive result. */
6348 errno = 0;
6349 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
6351 while (pid < 0 && errno == EINTR);
6353 if (pid <= 0)
6355 /* PID == 0 means no processes found, PID == -1 means a real
6356 failure. We have done all our job, so return. */
6358 errno = old_errno;
6359 return;
6361 #else
6362 pid = wait (&w);
6363 #endif /* no WNOHANG */
6365 /* Find the process that signaled us, and record its status. */
6367 /* The process can have been deleted by Fdelete_process. */
6368 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6370 Lisp_Object xpid = XCAR (tail);
6371 if ((INTEGERP (xpid) && pid == XINT (xpid))
6372 || (FLOATP (xpid) && pid == XFLOAT_DATA (xpid)))
6374 XSETCAR (tail, Qnil);
6375 goto sigchld_end_of_loop;
6379 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6380 p = 0;
6381 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6383 proc = XCDR (XCAR (tail));
6384 p = XPROCESS (proc);
6385 if (EQ (p->type, Qreal) && p->pid == pid)
6386 break;
6387 p = 0;
6390 /* Look for an asynchronous process whose pid hasn't been filled
6391 in yet. */
6392 if (p == 0)
6393 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6395 proc = XCDR (XCAR (tail));
6396 p = XPROCESS (proc);
6397 if (p->pid == -1)
6398 break;
6399 p = 0;
6402 /* Change the status of the process that was found. */
6403 if (p != 0)
6405 int clear_desc_flag = 0;
6407 p->tick = ++process_tick;
6408 p->raw_status = w;
6409 p->raw_status_new = 1;
6411 /* If process has terminated, stop waiting for its output. */
6412 if ((WIFSIGNALED (w) || WIFEXITED (w))
6413 && p->infd >= 0)
6414 clear_desc_flag = 1;
6416 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
6417 if (clear_desc_flag)
6419 FD_CLR (p->infd, &input_wait_mask);
6420 FD_CLR (p->infd, &non_keyboard_wait_mask);
6423 /* Tell wait_reading_process_output that it needs to wake up and
6424 look around. */
6425 if (input_available_clear_time)
6426 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6429 /* There was no asynchronous process found for that pid: we have
6430 a synchronous process. */
6431 else
6433 synch_process_alive = 0;
6435 /* Report the status of the synchronous process. */
6436 if (WIFEXITED (w))
6437 synch_process_retcode = WRETCODE (w);
6438 else if (WIFSIGNALED (w))
6439 synch_process_termsig = WTERMSIG (w);
6441 /* Tell wait_reading_process_output that it needs to wake up and
6442 look around. */
6443 if (input_available_clear_time)
6444 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6447 sigchld_end_of_loop:
6450 /* On some systems, we must return right away.
6451 If any more processes want to signal us, we will
6452 get another signal.
6453 Otherwise (on systems that have WNOHANG), loop around
6454 to use up all the processes that have something to tell us. */
6455 #if (defined WINDOWSNT \
6456 || (defined USG && !defined GNU_LINUX \
6457 && !(defined HPUX && defined WNOHANG)))
6458 errno = old_errno;
6459 return;
6460 #endif /* USG, but not HPUX with WNOHANG */
6463 #endif /* SIGCHLD */
6466 static Lisp_Object
6467 exec_sentinel_unwind (Lisp_Object data)
6469 XPROCESS (XCAR (data))->sentinel = XCDR (data);
6470 return Qnil;
6473 static Lisp_Object
6474 exec_sentinel_error_handler (Lisp_Object error_val)
6476 cmd_error_internal (error_val, "error in process sentinel: ");
6477 Vinhibit_quit = Qt;
6478 update_echo_area ();
6479 Fsleep_for (make_number (2), Qnil);
6480 return Qt;
6483 static void
6484 exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6486 Lisp_Object sentinel, odeactivate;
6487 register struct Lisp_Process *p = XPROCESS (proc);
6488 ptrdiff_t count = SPECPDL_INDEX ();
6489 int outer_running_asynch_code = running_asynch_code;
6490 int waiting = waiting_for_user_input_p;
6492 if (inhibit_sentinels)
6493 return;
6495 /* No need to gcpro these, because all we do with them later
6496 is test them for EQness, and none of them should be a string. */
6497 odeactivate = Vdeactivate_mark;
6498 #if 0
6499 Lisp_Object obuffer, okeymap;
6500 XSETBUFFER (obuffer, current_buffer);
6501 okeymap = BVAR (current_buffer, keymap);
6502 #endif
6504 /* There's no good reason to let sentinels change the current
6505 buffer, and many callers of accept-process-output, sit-for, and
6506 friends don't expect current-buffer to be changed from under them. */
6507 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
6509 sentinel = p->sentinel;
6510 if (NILP (sentinel))
6511 return;
6513 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6514 assure that it gets restored no matter how the sentinel exits. */
6515 p->sentinel = Qnil;
6516 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6517 /* Inhibit quit so that random quits don't screw up a running filter. */
6518 specbind (Qinhibit_quit, Qt);
6519 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6521 /* In case we get recursively called,
6522 and we already saved the match data nonrecursively,
6523 save the same match data in safely recursive fashion. */
6524 if (outer_running_asynch_code)
6526 Lisp_Object tem;
6527 tem = Fmatch_data (Qnil, Qnil, Qnil);
6528 restore_search_regs ();
6529 record_unwind_save_match_data ();
6530 Fset_match_data (tem, Qt);
6533 /* For speed, if a search happens within this code,
6534 save the match data in a special nonrecursive fashion. */
6535 running_asynch_code = 1;
6537 internal_condition_case_1 (read_process_output_call,
6538 Fcons (sentinel,
6539 Fcons (proc, Fcons (reason, Qnil))),
6540 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6541 exec_sentinel_error_handler);
6543 /* If we saved the match data nonrecursively, restore it now. */
6544 restore_search_regs ();
6545 running_asynch_code = outer_running_asynch_code;
6547 Vdeactivate_mark = odeactivate;
6549 /* Restore waiting_for_user_input_p as it was
6550 when we were called, in case the filter clobbered it. */
6551 waiting_for_user_input_p = waiting;
6553 #if 0
6554 if (! EQ (Fcurrent_buffer (), obuffer)
6555 || ! EQ (current_buffer->keymap, okeymap))
6556 #endif
6557 /* But do it only if the caller is actually going to read events.
6558 Otherwise there's no need to make him wake up, and it could
6559 cause trouble (for example it would make sit_for return). */
6560 if (waiting_for_user_input_p == -1)
6561 record_asynch_buffer_change ();
6563 unbind_to (count, Qnil);
6566 /* Report all recent events of a change in process status
6567 (either run the sentinel or output a message).
6568 This is usually done while Emacs is waiting for keyboard input
6569 but can be done at other times. */
6571 static void
6572 status_notify (struct Lisp_Process *deleting_process)
6574 register Lisp_Object proc, buffer;
6575 Lisp_Object tail, msg;
6576 struct gcpro gcpro1, gcpro2;
6578 tail = Qnil;
6579 msg = Qnil;
6580 /* We need to gcpro tail; if read_process_output calls a filter
6581 which deletes a process and removes the cons to which tail points
6582 from Vprocess_alist, and then causes a GC, tail is an unprotected
6583 reference. */
6584 GCPRO2 (tail, msg);
6586 /* Set this now, so that if new processes are created by sentinels
6587 that we run, we get called again to handle their status changes. */
6588 update_tick = process_tick;
6590 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6592 Lisp_Object symbol;
6593 register struct Lisp_Process *p;
6595 proc = Fcdr (XCAR (tail));
6596 p = XPROCESS (proc);
6598 if (p->tick != p->update_tick)
6600 p->update_tick = p->tick;
6602 /* If process is still active, read any output that remains. */
6603 while (! EQ (p->filter, Qt)
6604 && ! EQ (p->status, Qconnect)
6605 && ! EQ (p->status, Qlisten)
6606 /* Network or serial process not stopped: */
6607 && ! EQ (p->command, Qt)
6608 && p->infd >= 0
6609 && p != deleting_process
6610 && read_process_output (proc, p->infd) > 0);
6612 buffer = p->buffer;
6614 /* Get the text to use for the message. */
6615 if (p->raw_status_new)
6616 update_status (p);
6617 msg = status_message (p);
6619 /* If process is terminated, deactivate it or delete it. */
6620 symbol = p->status;
6621 if (CONSP (p->status))
6622 symbol = XCAR (p->status);
6624 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6625 || EQ (symbol, Qclosed))
6627 if (delete_exited_processes)
6628 remove_process (proc);
6629 else
6630 deactivate_process (proc);
6633 /* The actions above may have further incremented p->tick.
6634 So set p->update_tick again
6635 so that an error in the sentinel will not cause
6636 this code to be run again. */
6637 p->update_tick = p->tick;
6638 /* Now output the message suitably. */
6639 if (!NILP (p->sentinel))
6640 exec_sentinel (proc, msg);
6641 /* Don't bother with a message in the buffer
6642 when a process becomes runnable. */
6643 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6645 Lisp_Object tem;
6646 struct buffer *old = current_buffer;
6647 ptrdiff_t opoint, opoint_byte;
6648 ptrdiff_t before, before_byte;
6650 /* Avoid error if buffer is deleted
6651 (probably that's why the process is dead, too) */
6652 if (NILP (BVAR (XBUFFER (buffer), name)))
6653 continue;
6654 Fset_buffer (buffer);
6656 opoint = PT;
6657 opoint_byte = PT_BYTE;
6658 /* Insert new output into buffer
6659 at the current end-of-output marker,
6660 thus preserving logical ordering of input and output. */
6661 if (XMARKER (p->mark)->buffer)
6662 Fgoto_char (p->mark);
6663 else
6664 SET_PT_BOTH (ZV, ZV_BYTE);
6666 before = PT;
6667 before_byte = PT_BYTE;
6669 tem = BVAR (current_buffer, read_only);
6670 BVAR (current_buffer, read_only) = Qnil;
6671 insert_string ("\nProcess ");
6672 Finsert (1, &p->name);
6673 insert_string (" ");
6674 Finsert (1, &msg);
6675 BVAR (current_buffer, read_only) = tem;
6676 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6678 if (opoint >= before)
6679 SET_PT_BOTH (opoint + (PT - before),
6680 opoint_byte + (PT_BYTE - before_byte));
6681 else
6682 SET_PT_BOTH (opoint, opoint_byte);
6684 set_buffer_internal (old);
6687 } /* end for */
6689 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6690 UNGCPRO;
6694 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6695 Sset_process_coding_system, 1, 3, 0,
6696 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6697 DECODING will be used to decode subprocess output and ENCODING to
6698 encode subprocess input. */)
6699 (register Lisp_Object process, Lisp_Object decoding, Lisp_Object encoding)
6701 register struct Lisp_Process *p;
6703 CHECK_PROCESS (process);
6704 p = XPROCESS (process);
6705 if (p->infd < 0)
6706 error ("Input file descriptor of %s closed", SDATA (p->name));
6707 if (p->outfd < 0)
6708 error ("Output file descriptor of %s closed", SDATA (p->name));
6709 Fcheck_coding_system (decoding);
6710 Fcheck_coding_system (encoding);
6711 encoding = coding_inherit_eol_type (encoding, Qnil);
6712 p->decode_coding_system = decoding;
6713 p->encode_coding_system = encoding;
6714 setup_process_coding_systems (process);
6716 return Qnil;
6719 DEFUN ("process-coding-system",
6720 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6721 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6722 (register Lisp_Object process)
6724 CHECK_PROCESS (process);
6725 return Fcons (XPROCESS (process)->decode_coding_system,
6726 XPROCESS (process)->encode_coding_system);
6729 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6730 Sset_process_filter_multibyte, 2, 2, 0,
6731 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6732 If FLAG is non-nil, the filter is given multibyte strings.
6733 If FLAG is nil, the filter is given unibyte strings. In this case,
6734 all character code conversion except for end-of-line conversion is
6735 suppressed. */)
6736 (Lisp_Object process, Lisp_Object flag)
6738 register struct Lisp_Process *p;
6740 CHECK_PROCESS (process);
6741 p = XPROCESS (process);
6742 if (NILP (flag))
6743 p->decode_coding_system = raw_text_coding_system (p->decode_coding_system);
6744 setup_process_coding_systems (process);
6746 return Qnil;
6749 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6750 Sprocess_filter_multibyte_p, 1, 1, 0,
6751 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6752 (Lisp_Object process)
6754 register struct Lisp_Process *p;
6755 struct coding_system *coding;
6757 CHECK_PROCESS (process);
6758 p = XPROCESS (process);
6759 coding = proc_decode_coding_system[p->infd];
6760 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
6766 # ifdef HAVE_GPM
6768 void
6769 add_gpm_wait_descriptor (int desc)
6771 add_keyboard_wait_descriptor (desc);
6774 void
6775 delete_gpm_wait_descriptor (int desc)
6777 delete_keyboard_wait_descriptor (desc);
6780 # endif
6782 # ifdef SIGIO
6784 /* Return nonzero if *MASK has a bit set
6785 that corresponds to one of the keyboard input descriptors. */
6787 static int
6788 keyboard_bit_set (fd_set *mask)
6790 int fd;
6792 for (fd = 0; fd <= max_input_desc; fd++)
6793 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6794 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6795 return 1;
6797 return 0;
6799 # endif
6801 #else /* not subprocesses */
6803 /* Defined on msdos.c. */
6804 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6805 EMACS_TIME *, void *);
6807 /* Implementation of wait_reading_process_output, assuming that there
6808 are no subprocesses. Used only by the MS-DOS build.
6810 Wait for timeout to elapse and/or keyboard input to be available.
6812 TIME_LIMIT is:
6813 timeout in seconds
6814 If negative, gobble data immediately available but don't wait for any.
6816 NSECS is:
6817 an additional duration to wait, measured in nanoseconds
6818 If TIME_LIMIT is zero, then:
6819 If NSECS == 0, there is no limit.
6820 If NSECS > 0, the timeout consists of NSECS only.
6821 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
6823 READ_KBD is:
6824 0 to ignore keyboard input, or
6825 1 to return when input is available, or
6826 -1 means caller will actually read the input, so don't throw to
6827 the quit handler.
6829 see full version for other parameters. We know that wait_proc will
6830 always be NULL, since `subprocesses' isn't defined.
6832 DO_DISPLAY != 0 means redisplay should be done to show subprocess
6833 output that arrives.
6835 Return true if we received input from any process. */
6838 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
6839 int do_display,
6840 Lisp_Object wait_for_cell,
6841 struct Lisp_Process *wait_proc, int just_wait_proc)
6843 register int nfds;
6844 EMACS_TIME end_time, timeout;
6846 if (time_limit < 0)
6848 time_limit = 0;
6849 nsecs = -1;
6851 else if (TYPE_MAXIMUM (time_t) < time_limit)
6852 time_limit = TYPE_MAXIMUM (time_t);
6854 /* What does time_limit really mean? */
6855 if (time_limit || 0 < nsecs)
6857 EMACS_GET_TIME (end_time);
6858 EMACS_SET_SECS_NSECS (timeout, time_limit, nsecs);
6859 EMACS_ADD_TIME (end_time, end_time, timeout);
6862 /* Turn off periodic alarms (in case they are in use)
6863 and then turn off any other atimers,
6864 because the select emulator uses alarms. */
6865 stop_polling ();
6866 turn_on_atimers (0);
6868 while (1)
6870 int timeout_reduced_for_timers = 0;
6871 SELECT_TYPE waitchannels;
6872 int xerrno;
6874 /* If calling from keyboard input, do not quit
6875 since we want to return C-g as an input character.
6876 Otherwise, do pending quit if requested. */
6877 if (read_kbd >= 0)
6878 QUIT;
6880 /* Exit now if the cell we're waiting for became non-nil. */
6881 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6882 break;
6884 /* Compute time from now till when time limit is up */
6885 /* Exit if already run out */
6886 if (nsecs < 0)
6888 /* A negative timeout means
6889 gobble output available now
6890 but don't wait at all. */
6892 EMACS_SET_SECS_USECS (timeout, 0, 0);
6894 else if (time_limit || 0 < nsecs)
6896 EMACS_GET_TIME (timeout);
6897 if (EMACS_TIME_LE (end_time, timeout))
6898 break;
6899 EMACS_SUB_TIME (timeout, end_time, timeout);
6901 else
6903 EMACS_SET_SECS_USECS (timeout, 100000, 0);
6906 /* If our caller will not immediately handle keyboard events,
6907 run timer events directly.
6908 (Callers that will immediately read keyboard events
6909 call timer_delay on their own.) */
6910 if (NILP (wait_for_cell))
6912 EMACS_TIME timer_delay;
6916 int old_timers_run = timers_run;
6917 timer_delay = timer_check ();
6918 if (timers_run != old_timers_run && do_display)
6919 /* We must retry, since a timer may have requeued itself
6920 and that could alter the time delay. */
6921 redisplay_preserve_echo_area (14);
6922 else
6923 break;
6925 while (!detect_input_pending ());
6927 /* If there is unread keyboard input, also return. */
6928 if (read_kbd != 0
6929 && requeued_events_pending_p ())
6930 break;
6932 if (EMACS_TIME_VALID_P (timer_delay) && 0 <= nsecs)
6934 if (EMACS_TIME_LT (timer_delay, timeout))
6936 timeout = timer_delay;
6937 timeout_reduced_for_timers = 1;
6942 /* Cause C-g and alarm signals to take immediate action,
6943 and cause input available signals to zero out timeout. */
6944 if (read_kbd < 0)
6945 set_waiting_for_input (&timeout);
6947 /* If a frame has been newly mapped and needs updating,
6948 reprocess its display stuff. */
6949 if (frame_garbaged && do_display)
6951 clear_waiting_for_input ();
6952 redisplay_preserve_echo_area (15);
6953 if (read_kbd < 0)
6954 set_waiting_for_input (&timeout);
6957 /* Wait till there is something to do. */
6958 FD_ZERO (&waitchannels);
6959 if (read_kbd && detect_input_pending ())
6960 nfds = 0;
6961 else
6963 if (read_kbd || !NILP (wait_for_cell))
6964 FD_SET (0, &waitchannels);
6965 nfds = pselect (1, &waitchannels, NULL, NULL, &timeout, NULL);
6968 xerrno = errno;
6970 /* Make C-g and alarm signals set flags again */
6971 clear_waiting_for_input ();
6973 /* If we woke up due to SIGWINCH, actually change size now. */
6974 do_pending_window_change (0);
6976 if ((time_limit || nsecs) && nfds == 0 && ! timeout_reduced_for_timers)
6977 /* We waited the full specified time, so return now. */
6978 break;
6980 if (nfds == -1)
6982 /* If the system call was interrupted, then go around the
6983 loop again. */
6984 if (xerrno == EINTR)
6985 FD_ZERO (&waitchannels);
6986 else
6987 error ("select error: %s", emacs_strerror (xerrno));
6990 /* Check for keyboard input */
6992 if (read_kbd
6993 && detect_input_pending_run_timers (do_display))
6995 swallow_events (do_display);
6996 if (detect_input_pending_run_timers (do_display))
6997 break;
7000 /* If there is unread keyboard input, also return. */
7001 if (read_kbd
7002 && requeued_events_pending_p ())
7003 break;
7005 /* If wait_for_cell. check for keyboard input
7006 but don't run any timers.
7007 ??? (It seems wrong to me to check for keyboard
7008 input at all when wait_for_cell, but the code
7009 has been this way since July 1994.
7010 Try changing this after version 19.31.) */
7011 if (! NILP (wait_for_cell)
7012 && detect_input_pending ())
7014 swallow_events (do_display);
7015 if (detect_input_pending ())
7016 break;
7019 /* Exit now if the cell we're waiting for became non-nil. */
7020 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
7021 break;
7024 start_polling ();
7026 return 0;
7029 #endif /* not subprocesses */
7031 /* The following functions are needed even if async subprocesses are
7032 not supported. Some of them are no-op stubs in that case. */
7034 /* Add DESC to the set of keyboard input descriptors. */
7036 void
7037 add_keyboard_wait_descriptor (int desc)
7039 #ifdef subprocesses /* actually means "not MSDOS" */
7040 FD_SET (desc, &input_wait_mask);
7041 FD_SET (desc, &non_process_wait_mask);
7042 if (desc > max_input_desc)
7043 max_input_desc = desc;
7044 #endif
7047 /* From now on, do not expect DESC to give keyboard input. */
7049 void
7050 delete_keyboard_wait_descriptor (int desc)
7052 #ifdef subprocesses
7053 int fd;
7054 int lim = max_input_desc;
7056 FD_CLR (desc, &input_wait_mask);
7057 FD_CLR (desc, &non_process_wait_mask);
7059 if (desc == max_input_desc)
7060 for (fd = 0; fd < lim; fd++)
7061 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
7062 max_input_desc = fd;
7063 #endif
7066 /* Setup coding systems of PROCESS. */
7068 void
7069 setup_process_coding_systems (Lisp_Object process)
7071 #ifdef subprocesses
7072 struct Lisp_Process *p = XPROCESS (process);
7073 int inch = p->infd;
7074 int outch = p->outfd;
7075 Lisp_Object coding_system;
7077 if (inch < 0 || outch < 0)
7078 return;
7080 if (!proc_decode_coding_system[inch])
7081 proc_decode_coding_system[inch] = xmalloc (sizeof (struct coding_system));
7082 coding_system = p->decode_coding_system;
7083 if (! NILP (p->filter))
7085 else if (BUFFERP (p->buffer))
7087 if (NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
7088 coding_system = raw_text_coding_system (coding_system);
7090 setup_coding_system (coding_system, proc_decode_coding_system[inch]);
7092 if (!proc_encode_coding_system[outch])
7093 proc_encode_coding_system[outch] = xmalloc (sizeof (struct coding_system));
7094 setup_coding_system (p->encode_coding_system,
7095 proc_encode_coding_system[outch]);
7096 #endif
7099 /* Close all descriptors currently in use for communication
7100 with subprocess. This is used in a newly-forked subprocess
7101 to get rid of irrelevant descriptors. */
7103 void
7104 close_process_descs (void)
7106 #ifndef DOS_NT
7107 int i;
7108 for (i = 0; i < MAXDESC; i++)
7110 Lisp_Object process;
7111 process = chan_process[i];
7112 if (!NILP (process))
7114 int in = XPROCESS (process)->infd;
7115 int out = XPROCESS (process)->outfd;
7116 if (in >= 0)
7117 emacs_close (in);
7118 if (out >= 0 && in != out)
7119 emacs_close (out);
7122 #endif
7125 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
7126 doc: /* Return the (or a) process associated with BUFFER.
7127 BUFFER may be a buffer or the name of one. */)
7128 (register Lisp_Object buffer)
7130 #ifdef subprocesses
7131 register Lisp_Object buf, tail, proc;
7133 if (NILP (buffer)) return Qnil;
7134 buf = Fget_buffer (buffer);
7135 if (NILP (buf)) return Qnil;
7137 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
7139 proc = Fcdr (XCAR (tail));
7140 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
7141 return proc;
7143 #endif /* subprocesses */
7144 return Qnil;
7147 DEFUN ("process-inherit-coding-system-flag",
7148 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
7149 1, 1, 0,
7150 doc: /* Return the value of inherit-coding-system flag for PROCESS.
7151 If this flag is t, `buffer-file-coding-system' of the buffer
7152 associated with PROCESS will inherit the coding system used to decode
7153 the process output. */)
7154 (register Lisp_Object process)
7156 #ifdef subprocesses
7157 CHECK_PROCESS (process);
7158 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
7159 #else
7160 /* Ignore the argument and return the value of
7161 inherit-process-coding-system. */
7162 return inherit_process_coding_system ? Qt : Qnil;
7163 #endif
7166 /* Kill all processes associated with `buffer'.
7167 If `buffer' is nil, kill all processes */
7169 void
7170 kill_buffer_processes (Lisp_Object buffer)
7172 #ifdef subprocesses
7173 Lisp_Object tail, proc;
7175 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
7177 proc = XCDR (XCAR (tail));
7178 if (PROCESSP (proc)
7179 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
7181 if (NETCONN_P (proc) || SERIALCONN_P (proc))
7182 Fdelete_process (proc);
7183 else if (XPROCESS (proc)->infd >= 0)
7184 process_send_signal (proc, SIGHUP, Qnil, 1);
7187 #else /* subprocesses */
7188 /* Since we have no subprocesses, this does nothing. */
7189 #endif /* subprocesses */
7192 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,
7193 Swaiting_for_user_input_p, 0, 0, 0,
7194 doc: /* Returns non-nil if Emacs is waiting for input from the user.
7195 This is intended for use by asynchronous process output filters and sentinels. */)
7196 (void)
7198 #ifdef subprocesses
7199 return (waiting_for_user_input_p ? Qt : Qnil);
7200 #else
7201 return Qnil;
7202 #endif
7205 /* Stop reading input from keyboard sources. */
7207 void
7208 hold_keyboard_input (void)
7210 kbd_is_on_hold = 1;
7213 /* Resume reading input from keyboard sources. */
7215 void
7216 unhold_keyboard_input (void)
7218 kbd_is_on_hold = 0;
7221 /* Return non-zero if keyboard input is on hold, zero otherwise. */
7224 kbd_on_hold_p (void)
7226 return kbd_is_on_hold;
7230 /* Enumeration of and access to system processes a-la ps(1). */
7232 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
7233 0, 0, 0,
7234 doc: /* Return a list of numerical process IDs of all running processes.
7235 If this functionality is unsupported, return nil.
7237 See `process-attributes' for getting attributes of a process given its ID. */)
7238 (void)
7240 return list_system_processes ();
7243 DEFUN ("process-attributes", Fprocess_attributes,
7244 Sprocess_attributes, 1, 1, 0,
7245 doc: /* Return attributes of the process given by its PID, a number.
7247 Value is an alist where each element is a cons cell of the form
7249 \(KEY . VALUE)
7251 If this functionality is unsupported, the value is nil.
7253 See `list-system-processes' for getting a list of all process IDs.
7255 The KEYs of the attributes that this function may return are listed
7256 below, together with the type of the associated VALUE (in parentheses).
7257 Not all platforms support all of these attributes; unsupported
7258 attributes will not appear in the returned alist.
7259 Unless explicitly indicated otherwise, numbers can have either
7260 integer or floating point values.
7262 euid -- Effective user User ID of the process (number)
7263 user -- User name corresponding to euid (string)
7264 egid -- Effective user Group ID of the process (number)
7265 group -- Group name corresponding to egid (string)
7266 comm -- Command name (executable name only) (string)
7267 state -- Process state code, such as "S", "R", or "T" (string)
7268 ppid -- Parent process ID (number)
7269 pgrp -- Process group ID (number)
7270 sess -- Session ID, i.e. process ID of session leader (number)
7271 ttname -- Controlling tty name (string)
7272 tpgid -- ID of foreground process group on the process's tty (number)
7273 minflt -- number of minor page faults (number)
7274 majflt -- number of major page faults (number)
7275 cminflt -- cumulative number of minor page faults (number)
7276 cmajflt -- cumulative number of major page faults (number)
7277 utime -- user time used by the process, in (current-time) format,
7278 which is a list of integers (HIGH LOW USEC PSEC)
7279 stime -- system time used by the process (current-time)
7280 time -- sum of utime and stime (current-time)
7281 cutime -- user time used by the process and its children (current-time)
7282 cstime -- system time used by the process and its children (current-time)
7283 ctime -- sum of cutime and cstime (current-time)
7284 pri -- priority of the process (number)
7285 nice -- nice value of the process (number)
7286 thcount -- process thread count (number)
7287 start -- time the process started (current-time)
7288 vsize -- virtual memory size of the process in KB's (number)
7289 rss -- resident set size of the process in KB's (number)
7290 etime -- elapsed time the process is running, in (HIGH LOW USEC PSEC) format
7291 pcpu -- percents of CPU time used by the process (floating-point number)
7292 pmem -- percents of total physical memory used by process's resident set
7293 (floating-point number)
7294 args -- command line which invoked the process (string). */)
7295 ( Lisp_Object pid)
7297 return system_process_attributes (pid);
7301 void
7302 init_process (void)
7304 #ifdef subprocesses
7305 register int i;
7307 inhibit_sentinels = 0;
7309 #ifdef SIGCHLD
7310 #ifndef CANNOT_DUMP
7311 if (! noninteractive || initialized)
7312 #endif
7313 signal (SIGCHLD, sigchld_handler);
7314 #endif
7316 FD_ZERO (&input_wait_mask);
7317 FD_ZERO (&non_keyboard_wait_mask);
7318 FD_ZERO (&non_process_wait_mask);
7319 FD_ZERO (&write_mask);
7320 max_process_desc = 0;
7321 memset (fd_callback_info, 0, sizeof (fd_callback_info));
7323 #ifdef NON_BLOCKING_CONNECT
7324 FD_ZERO (&connect_wait_mask);
7325 num_pending_connects = 0;
7326 #endif
7328 #ifdef ADAPTIVE_READ_BUFFERING
7329 process_output_delay_count = 0;
7330 process_output_skip = 0;
7331 #endif
7333 /* Don't do this, it caused infinite select loops. The display
7334 method should call add_keyboard_wait_descriptor on stdin if it
7335 needs that. */
7336 #if 0
7337 FD_SET (0, &input_wait_mask);
7338 #endif
7340 Vprocess_alist = Qnil;
7341 #ifdef SIGCHLD
7342 deleted_pid_list = Qnil;
7343 #endif
7344 for (i = 0; i < MAXDESC; i++)
7346 chan_process[i] = Qnil;
7347 proc_buffered_char[i] = -1;
7349 memset (proc_decode_coding_system, 0, sizeof proc_decode_coding_system);
7350 memset (proc_encode_coding_system, 0, sizeof proc_encode_coding_system);
7351 #ifdef DATAGRAM_SOCKETS
7352 memset (datagram_address, 0, sizeof datagram_address);
7353 #endif
7356 Lisp_Object subfeatures = Qnil;
7357 const struct socket_options *sopt;
7359 #define ADD_SUBFEATURE(key, val) \
7360 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7362 #ifdef NON_BLOCKING_CONNECT
7363 ADD_SUBFEATURE (QCnowait, Qt);
7364 #endif
7365 #ifdef DATAGRAM_SOCKETS
7366 ADD_SUBFEATURE (QCtype, Qdatagram);
7367 #endif
7368 #ifdef HAVE_SEQPACKET
7369 ADD_SUBFEATURE (QCtype, Qseqpacket);
7370 #endif
7371 #ifdef HAVE_LOCAL_SOCKETS
7372 ADD_SUBFEATURE (QCfamily, Qlocal);
7373 #endif
7374 ADD_SUBFEATURE (QCfamily, Qipv4);
7375 #ifdef AF_INET6
7376 ADD_SUBFEATURE (QCfamily, Qipv6);
7377 #endif
7378 #ifdef HAVE_GETSOCKNAME
7379 ADD_SUBFEATURE (QCservice, Qt);
7380 #endif
7381 #if defined (O_NONBLOCK) || defined (O_NDELAY)
7382 ADD_SUBFEATURE (QCserver, Qt);
7383 #endif
7385 for (sopt = socket_options; sopt->name; sopt++)
7386 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7388 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7391 #if defined (DARWIN_OS)
7392 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7393 processes. As such, we only change the default value. */
7394 if (initialized)
7396 char const *release = (STRINGP (Voperating_system_release)
7397 ? SSDATA (Voperating_system_release)
7398 : 0);
7399 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
7400 && release[1] == '.')) {
7401 Vprocess_connection_type = Qnil;
7404 #endif
7405 #endif /* subprocesses */
7406 kbd_is_on_hold = 0;
7409 void
7410 syms_of_process (void)
7412 #ifdef subprocesses
7414 DEFSYM (Qprocessp, "processp");
7415 DEFSYM (Qrun, "run");
7416 DEFSYM (Qstop, "stop");
7417 DEFSYM (Qsignal, "signal");
7419 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7420 here again.
7422 Qexit = intern_c_string ("exit");
7423 staticpro (&Qexit); */
7425 DEFSYM (Qopen, "open");
7426 DEFSYM (Qclosed, "closed");
7427 DEFSYM (Qconnect, "connect");
7428 DEFSYM (Qfailed, "failed");
7429 DEFSYM (Qlisten, "listen");
7430 DEFSYM (Qlocal, "local");
7431 DEFSYM (Qipv4, "ipv4");
7432 #ifdef AF_INET6
7433 DEFSYM (Qipv6, "ipv6");
7434 #endif
7435 DEFSYM (Qdatagram, "datagram");
7436 DEFSYM (Qseqpacket, "seqpacket");
7438 DEFSYM (QCport, ":port");
7439 DEFSYM (QCspeed, ":speed");
7440 DEFSYM (QCprocess, ":process");
7442 DEFSYM (QCbytesize, ":bytesize");
7443 DEFSYM (QCstopbits, ":stopbits");
7444 DEFSYM (QCparity, ":parity");
7445 DEFSYM (Qodd, "odd");
7446 DEFSYM (Qeven, "even");
7447 DEFSYM (QCflowcontrol, ":flowcontrol");
7448 DEFSYM (Qhw, "hw");
7449 DEFSYM (Qsw, "sw");
7450 DEFSYM (QCsummary, ":summary");
7452 DEFSYM (Qreal, "real");
7453 DEFSYM (Qnetwork, "network");
7454 DEFSYM (Qserial, "serial");
7455 DEFSYM (QCbuffer, ":buffer");
7456 DEFSYM (QChost, ":host");
7457 DEFSYM (QCservice, ":service");
7458 DEFSYM (QClocal, ":local");
7459 DEFSYM (QCremote, ":remote");
7460 DEFSYM (QCcoding, ":coding");
7461 DEFSYM (QCserver, ":server");
7462 DEFSYM (QCnowait, ":nowait");
7463 DEFSYM (QCsentinel, ":sentinel");
7464 DEFSYM (QClog, ":log");
7465 DEFSYM (QCnoquery, ":noquery");
7466 DEFSYM (QCstop, ":stop");
7467 DEFSYM (QCoptions, ":options");
7468 DEFSYM (QCplist, ":plist");
7470 DEFSYM (Qlast_nonmenu_event, "last-nonmenu-event");
7472 staticpro (&Vprocess_alist);
7473 #ifdef SIGCHLD
7474 staticpro (&deleted_pid_list);
7475 #endif
7477 #endif /* subprocesses */
7479 DEFSYM (QCname, ":name");
7480 DEFSYM (QCtype, ":type");
7482 DEFSYM (Qeuid, "euid");
7483 DEFSYM (Qegid, "egid");
7484 DEFSYM (Quser, "user");
7485 DEFSYM (Qgroup, "group");
7486 DEFSYM (Qcomm, "comm");
7487 DEFSYM (Qstate, "state");
7488 DEFSYM (Qppid, "ppid");
7489 DEFSYM (Qpgrp, "pgrp");
7490 DEFSYM (Qsess, "sess");
7491 DEFSYM (Qttname, "ttname");
7492 DEFSYM (Qtpgid, "tpgid");
7493 DEFSYM (Qminflt, "minflt");
7494 DEFSYM (Qmajflt, "majflt");
7495 DEFSYM (Qcminflt, "cminflt");
7496 DEFSYM (Qcmajflt, "cmajflt");
7497 DEFSYM (Qutime, "utime");
7498 DEFSYM (Qstime, "stime");
7499 DEFSYM (Qtime, "time");
7500 DEFSYM (Qcutime, "cutime");
7501 DEFSYM (Qcstime, "cstime");
7502 DEFSYM (Qctime, "ctime");
7503 DEFSYM (Qpri, "pri");
7504 DEFSYM (Qnice, "nice");
7505 DEFSYM (Qthcount, "thcount");
7506 DEFSYM (Qstart, "start");
7507 DEFSYM (Qvsize, "vsize");
7508 DEFSYM (Qrss, "rss");
7509 DEFSYM (Qetime, "etime");
7510 DEFSYM (Qpcpu, "pcpu");
7511 DEFSYM (Qpmem, "pmem");
7512 DEFSYM (Qargs, "args");
7514 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes,
7515 doc: /* Non-nil means delete processes immediately when they exit.
7516 A value of nil means don't delete them until `list-processes' is run. */);
7518 delete_exited_processes = 1;
7520 #ifdef subprocesses
7521 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type,
7522 doc: /* Control type of device used to communicate with subprocesses.
7523 Values are nil to use a pipe, or t or `pty' to use a pty.
7524 The value has no effect if the system has no ptys or if all ptys are busy:
7525 then a pipe is used in any case.
7526 The value takes effect when `start-process' is called. */);
7527 Vprocess_connection_type = Qt;
7529 #ifdef ADAPTIVE_READ_BUFFERING
7530 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering,
7531 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7532 On some systems, when Emacs reads the output from a subprocess, the output data
7533 is read in very small blocks, potentially resulting in very poor performance.
7534 This behavior can be remedied to some extent by setting this variable to a
7535 non-nil value, as it will automatically delay reading from such processes, to
7536 allow them to produce more output before Emacs tries to read it.
7537 If the value is t, the delay is reset after each write to the process; any other
7538 non-nil value means that the delay is not reset on write.
7539 The variable takes effect when `start-process' is called. */);
7540 Vprocess_adaptive_read_buffering = Qt;
7541 #endif
7543 defsubr (&Sprocessp);
7544 defsubr (&Sget_process);
7545 defsubr (&Sdelete_process);
7546 defsubr (&Sprocess_status);
7547 defsubr (&Sprocess_exit_status);
7548 defsubr (&Sprocess_id);
7549 defsubr (&Sprocess_name);
7550 defsubr (&Sprocess_tty_name);
7551 defsubr (&Sprocess_command);
7552 defsubr (&Sset_process_buffer);
7553 defsubr (&Sprocess_buffer);
7554 defsubr (&Sprocess_mark);
7555 defsubr (&Sset_process_filter);
7556 defsubr (&Sprocess_filter);
7557 defsubr (&Sset_process_sentinel);
7558 defsubr (&Sprocess_sentinel);
7559 defsubr (&Sset_process_window_size);
7560 defsubr (&Sset_process_inherit_coding_system_flag);
7561 defsubr (&Sset_process_query_on_exit_flag);
7562 defsubr (&Sprocess_query_on_exit_flag);
7563 defsubr (&Sprocess_contact);
7564 defsubr (&Sprocess_plist);
7565 defsubr (&Sset_process_plist);
7566 defsubr (&Sprocess_list);
7567 defsubr (&Sstart_process);
7568 defsubr (&Sserial_process_configure);
7569 defsubr (&Smake_serial_process);
7570 defsubr (&Sset_network_process_option);
7571 defsubr (&Smake_network_process);
7572 defsubr (&Sformat_network_address);
7573 #if defined (HAVE_NET_IF_H)
7574 #ifdef SIOCGIFCONF
7575 defsubr (&Snetwork_interface_list);
7576 #endif
7577 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
7578 defsubr (&Snetwork_interface_info);
7579 #endif
7580 #endif /* defined (HAVE_NET_IF_H) */
7581 #ifdef DATAGRAM_SOCKETS
7582 defsubr (&Sprocess_datagram_address);
7583 defsubr (&Sset_process_datagram_address);
7584 #endif
7585 defsubr (&Saccept_process_output);
7586 defsubr (&Sprocess_send_region);
7587 defsubr (&Sprocess_send_string);
7588 defsubr (&Sinterrupt_process);
7589 defsubr (&Skill_process);
7590 defsubr (&Squit_process);
7591 defsubr (&Sstop_process);
7592 defsubr (&Scontinue_process);
7593 defsubr (&Sprocess_running_child_p);
7594 defsubr (&Sprocess_send_eof);
7595 defsubr (&Ssignal_process);
7596 defsubr (&Swaiting_for_user_input_p);
7597 defsubr (&Sprocess_type);
7598 defsubr (&Sset_process_coding_system);
7599 defsubr (&Sprocess_coding_system);
7600 defsubr (&Sset_process_filter_multibyte);
7601 defsubr (&Sprocess_filter_multibyte_p);
7603 #endif /* subprocesses */
7605 defsubr (&Sget_buffer_process);
7606 defsubr (&Sprocess_inherit_coding_system_flag);
7607 defsubr (&Slist_system_processes);
7608 defsubr (&Sprocess_attributes);