Separate mouse-1-click-follows-link from mouse-drag-region.
[emacs.git] / src / process.c
blobbafdca9bd63778aa97f4b8178ecc726500c82101
1 /* Asynchronous subprocess control for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-1996, 1998-1999, 2001-2013 Free Software
4 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>
24 #define PROCESS_INLINE EXTERN_INLINE
26 #include <stdio.h>
27 #include <errno.h>
28 #include <sys/types.h> /* Some typedefs are used in sys/file.h. */
29 #include <sys/file.h>
30 #include <sys/stat.h>
31 #include <unistd.h>
32 #include <fcntl.h>
34 #include "lisp.h"
36 /* Only MS-DOS does not define `subprocesses'. */
37 #ifdef subprocesses
39 #include <sys/socket.h>
40 #include <netdb.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
44 /* Are local (unix) sockets supported? */
45 #if defined (HAVE_SYS_UN_H)
46 #if !defined (AF_LOCAL) && defined (AF_UNIX)
47 #define AF_LOCAL AF_UNIX
48 #endif
49 #ifdef AF_LOCAL
50 #define HAVE_LOCAL_SOCKETS
51 #include <sys/un.h>
52 #endif
53 #endif
55 #include <sys/ioctl.h>
56 #if defined (HAVE_NET_IF_H)
57 #include <net/if.h>
58 #endif /* HAVE_NET_IF_H */
60 #if defined (HAVE_IFADDRS_H)
61 /* Must be after net/if.h */
62 #include <ifaddrs.h>
64 /* We only use structs from this header when we use getifaddrs. */
65 #if defined (HAVE_NET_IF_DL_H)
66 #include <net/if_dl.h>
67 #endif
69 #endif
71 #ifdef NEED_BSDTTY
72 #include <bsdtty.h>
73 #endif
75 #ifdef USG5_4
76 # include <sys/stream.h>
77 # include <sys/stropts.h>
78 #endif
80 #ifdef HAVE_RES_INIT
81 #include <netinet/in.h>
82 #include <arpa/nameser.h>
83 #include <resolv.h>
84 #endif
86 #ifdef HAVE_UTIL_H
87 #include <util.h>
88 #endif
90 #ifdef HAVE_PTY_H
91 #include <pty.h>
92 #endif
94 #include <c-ctype.h>
95 #include <sig2str.h>
97 #endif /* subprocesses */
99 #include "systime.h"
100 #include "systty.h"
102 #include "window.h"
103 #include "character.h"
104 #include "buffer.h"
105 #include "coding.h"
106 #include "process.h"
107 #include "frame.h"
108 #include "termhooks.h"
109 #include "termopts.h"
110 #include "commands.h"
111 #include "keyboard.h"
112 #include "blockinput.h"
113 #include "dispextern.h"
114 #include "composite.h"
115 #include "atimer.h"
116 #include "sysselect.h"
117 #include "syssignal.h"
118 #include "syswait.h"
119 #ifdef HAVE_GNUTLS
120 #include "gnutls.h"
121 #endif
123 #ifdef HAVE_WINDOW_SYSTEM
124 #include TERM_HEADER
125 #endif /* HAVE_WINDOW_SYSTEM */
127 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
128 #include "xgselect.h"
129 #endif
131 #ifdef WINDOWSNT
132 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
133 EMACS_TIME *, void *);
134 #endif
136 /* Work around GCC 4.7.0 bug with strict overflow checking; see
137 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>.
138 These lines can be removed once the GCC bug is fixed. */
139 #if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
140 # pragma GCC diagnostic ignored "-Wstrict-overflow"
141 #endif
143 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
144 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
145 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
146 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
147 Lisp_Object QCname, QCtype;
149 /* True if keyboard input is on hold, zero otherwise. */
151 static bool kbd_is_on_hold;
153 /* Nonzero means don't run process sentinels. This is used
154 when exiting. */
155 bool inhibit_sentinels;
157 #ifdef subprocesses
159 Lisp_Object Qprocessp;
160 static Lisp_Object Qrun, Qstop, Qsignal;
161 static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
162 Lisp_Object Qlocal;
163 static Lisp_Object Qipv4, Qdatagram, Qseqpacket;
164 static Lisp_Object Qreal, Qnetwork, Qserial;
165 #ifdef AF_INET6
166 static Lisp_Object Qipv6;
167 #endif
168 static Lisp_Object QCport, QCprocess;
169 Lisp_Object QCspeed;
170 Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
171 Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
172 static Lisp_Object QCbuffer, QChost, QCservice;
173 static Lisp_Object QClocal, QCremote, QCcoding;
174 static Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
175 static Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
176 static Lisp_Object Qlast_nonmenu_event;
178 #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork))
179 #define NETCONN1_P(p) (EQ (p->type, Qnetwork))
180 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
181 #define SERIALCONN1_P(p) (EQ (p->type, Qserial))
183 /* Number of events of change of status of a process. */
184 static EMACS_INT process_tick;
185 /* Number of events for which the user or sentinel has been notified. */
186 static EMACS_INT update_tick;
188 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
190 /* Only W32 has this, it really means that select can't take write mask. */
191 #ifdef BROKEN_NON_BLOCKING_CONNECT
192 #undef NON_BLOCKING_CONNECT
193 #define SELECT_CANT_DO_WRITE_MASK
194 #else
195 #ifndef NON_BLOCKING_CONNECT
196 #ifdef HAVE_SELECT
197 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
198 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
199 #define NON_BLOCKING_CONNECT
200 #endif /* EWOULDBLOCK || EINPROGRESS */
201 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
202 #endif /* HAVE_SELECT */
203 #endif /* NON_BLOCKING_CONNECT */
204 #endif /* BROKEN_NON_BLOCKING_CONNECT */
206 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
207 this system. We need to read full packets, so we need a
208 "non-destructive" select. So we require either native select,
209 or emulation of select using FIONREAD. */
211 #ifndef BROKEN_DATAGRAM_SOCKETS
212 # if defined HAVE_SELECT || defined USABLE_FIONREAD
213 # if defined HAVE_SENDTO && defined HAVE_RECVFROM && defined EMSGSIZE
214 # define DATAGRAM_SOCKETS
215 # endif
216 # endif
217 #endif
219 #if defined HAVE_LOCAL_SOCKETS && defined DATAGRAM_SOCKETS
220 # define HAVE_SEQPACKET
221 #endif
223 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
224 #define ADAPTIVE_READ_BUFFERING
225 #endif
227 #ifdef ADAPTIVE_READ_BUFFERING
228 #define READ_OUTPUT_DELAY_INCREMENT (EMACS_TIME_RESOLUTION / 100)
229 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
230 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
232 /* Number of processes which have a non-zero read_output_delay,
233 and therefore might be delayed for adaptive read buffering. */
235 static int process_output_delay_count;
237 /* True if any process has non-nil read_output_skip. */
239 static bool process_output_skip;
241 #else
242 #define process_output_delay_count 0
243 #endif
245 static void create_process (Lisp_Object, char **, Lisp_Object);
246 #ifdef USABLE_SIGIO
247 static bool keyboard_bit_set (SELECT_TYPE *);
248 #endif
249 static void deactivate_process (Lisp_Object);
250 static void status_notify (struct Lisp_Process *);
251 static int read_process_output (Lisp_Object, int);
252 static void handle_child_signal (int);
253 static void create_pty (Lisp_Object);
255 /* If we support a window system, turn on the code to poll periodically
256 to detect C-g. It isn't actually used when doing interrupt input. */
257 #ifdef HAVE_WINDOW_SYSTEM
258 #define POLL_FOR_INPUT
259 #endif
261 static Lisp_Object get_process (register Lisp_Object name);
262 static void exec_sentinel (Lisp_Object proc, Lisp_Object reason);
264 /* Mask of bits indicating the descriptors that we wait for input on. */
266 static SELECT_TYPE input_wait_mask;
268 /* Mask that excludes keyboard input descriptor(s). */
270 static SELECT_TYPE non_keyboard_wait_mask;
272 /* Mask that excludes process input descriptor(s). */
274 static SELECT_TYPE non_process_wait_mask;
276 /* Mask for selecting for write. */
278 static SELECT_TYPE write_mask;
280 #ifdef NON_BLOCKING_CONNECT
281 /* Mask of bits indicating the descriptors that we wait for connect to
282 complete on. Once they complete, they are removed from this mask
283 and added to the input_wait_mask and non_keyboard_wait_mask. */
285 static SELECT_TYPE connect_wait_mask;
287 /* Number of bits set in connect_wait_mask. */
288 static int num_pending_connects;
289 #endif /* NON_BLOCKING_CONNECT */
291 /* The largest descriptor currently in use for a process object. */
292 static int max_process_desc;
294 /* The largest descriptor currently in use for input. */
295 static int max_input_desc;
297 /* Indexed by descriptor, gives the process (if any) for that descriptor */
298 static Lisp_Object chan_process[MAXDESC];
300 /* Alist of elements (NAME . PROCESS) */
301 static Lisp_Object Vprocess_alist;
303 /* Buffered-ahead input char from process, indexed by channel.
304 -1 means empty (no char is buffered).
305 Used on sys V where the only way to tell if there is any
306 output from the process is to read at least one char.
307 Always -1 on systems that support FIONREAD. */
309 static int proc_buffered_char[MAXDESC];
311 /* Table of `struct coding-system' for each process. */
312 static struct coding_system *proc_decode_coding_system[MAXDESC];
313 static struct coding_system *proc_encode_coding_system[MAXDESC];
315 #ifdef DATAGRAM_SOCKETS
316 /* Table of `partner address' for datagram sockets. */
317 static struct sockaddr_and_len {
318 struct sockaddr *sa;
319 int len;
320 } datagram_address[MAXDESC];
321 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
322 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XPROCESS (proc)->infd].sa != 0)
323 #else
324 #define DATAGRAM_CHAN_P(chan) (0)
325 #define DATAGRAM_CONN_P(proc) (0)
326 #endif
328 /* These setters are used only in this file, so they can be private. */
329 static void
330 pset_buffer (struct Lisp_Process *p, Lisp_Object val)
332 p->buffer = val;
334 static void
335 pset_command (struct Lisp_Process *p, Lisp_Object val)
337 p->command = val;
339 static void
340 pset_decode_coding_system (struct Lisp_Process *p, Lisp_Object val)
342 p->decode_coding_system = val;
344 static void
345 pset_decoding_buf (struct Lisp_Process *p, Lisp_Object val)
347 p->decoding_buf = val;
349 static void
350 pset_encode_coding_system (struct Lisp_Process *p, Lisp_Object val)
352 p->encode_coding_system = val;
354 static void
355 pset_encoding_buf (struct Lisp_Process *p, Lisp_Object val)
357 p->encoding_buf = val;
359 static void
360 pset_filter (struct Lisp_Process *p, Lisp_Object val)
362 p->filter = val;
364 static void
365 pset_log (struct Lisp_Process *p, Lisp_Object val)
367 p->log = val;
369 static void
370 pset_mark (struct Lisp_Process *p, Lisp_Object val)
372 p->mark = val;
374 static void
375 pset_name (struct Lisp_Process *p, Lisp_Object val)
377 p->name = val;
379 static void
380 pset_plist (struct Lisp_Process *p, Lisp_Object val)
382 p->plist = val;
384 static void
385 pset_sentinel (struct Lisp_Process *p, Lisp_Object val)
387 p->sentinel = val;
389 static void
390 pset_status (struct Lisp_Process *p, Lisp_Object val)
392 p->status = val;
394 static void
395 pset_tty_name (struct Lisp_Process *p, Lisp_Object val)
397 p->tty_name = val;
399 static void
400 pset_type (struct Lisp_Process *p, Lisp_Object val)
402 p->type = val;
404 static void
405 pset_write_queue (struct Lisp_Process *p, Lisp_Object val)
407 p->write_queue = val;
412 static struct fd_callback_data
414 fd_callback func;
415 void *data;
416 #define FOR_READ 1
417 #define FOR_WRITE 2
418 int condition; /* mask of the defines above. */
419 } fd_callback_info[MAXDESC];
422 /* Add a file descriptor FD to be monitored for when read is possible.
423 When read is possible, call FUNC with argument DATA. */
425 void
426 add_read_fd (int fd, fd_callback func, void *data)
428 eassert (fd < MAXDESC);
429 add_keyboard_wait_descriptor (fd);
431 fd_callback_info[fd].func = func;
432 fd_callback_info[fd].data = data;
433 fd_callback_info[fd].condition |= FOR_READ;
436 /* Stop monitoring file descriptor FD for when read is possible. */
438 void
439 delete_read_fd (int fd)
441 eassert (fd < MAXDESC);
442 delete_keyboard_wait_descriptor (fd);
444 fd_callback_info[fd].condition &= ~FOR_READ;
445 if (fd_callback_info[fd].condition == 0)
447 fd_callback_info[fd].func = 0;
448 fd_callback_info[fd].data = 0;
452 /* Add a file descriptor FD to be monitored for when write is possible.
453 When write is possible, call FUNC with argument DATA. */
455 void
456 add_write_fd (int fd, fd_callback func, void *data)
458 eassert (fd < MAXDESC);
459 FD_SET (fd, &write_mask);
460 if (fd > max_input_desc)
461 max_input_desc = fd;
463 fd_callback_info[fd].func = func;
464 fd_callback_info[fd].data = data;
465 fd_callback_info[fd].condition |= FOR_WRITE;
468 /* Stop monitoring file descriptor FD for when write is possible. */
470 void
471 delete_write_fd (int fd)
473 int lim = max_input_desc;
475 eassert (fd < MAXDESC);
476 FD_CLR (fd, &write_mask);
477 fd_callback_info[fd].condition &= ~FOR_WRITE;
478 if (fd_callback_info[fd].condition == 0)
480 fd_callback_info[fd].func = 0;
481 fd_callback_info[fd].data = 0;
483 if (fd == max_input_desc)
484 for (fd = lim; fd >= 0; fd--)
485 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
487 max_input_desc = fd;
488 break;
495 /* Compute the Lisp form of the process status, p->status, from
496 the numeric status that was returned by `wait'. */
498 static Lisp_Object status_convert (int);
500 static void
501 update_status (struct Lisp_Process *p)
503 eassert (p->raw_status_new);
504 pset_status (p, status_convert (p->raw_status));
505 p->raw_status_new = 0;
508 /* Convert a process status word in Unix format to
509 the list that we use internally. */
511 static Lisp_Object
512 status_convert (int w)
514 if (WIFSTOPPED (w))
515 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
516 else if (WIFEXITED (w))
517 return Fcons (Qexit, Fcons (make_number (WEXITSTATUS (w)),
518 WCOREDUMP (w) ? Qt : Qnil));
519 else if (WIFSIGNALED (w))
520 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
521 WCOREDUMP (w) ? Qt : Qnil));
522 else
523 return Qrun;
526 /* Given a status-list, extract the three pieces of information
527 and store them individually through the three pointers. */
529 static void
530 decode_status (Lisp_Object l, Lisp_Object *symbol, int *code, bool *coredump)
532 Lisp_Object tem;
534 if (SYMBOLP (l))
536 *symbol = l;
537 *code = 0;
538 *coredump = 0;
540 else
542 *symbol = XCAR (l);
543 tem = XCDR (l);
544 *code = XFASTINT (XCAR (tem));
545 tem = XCDR (tem);
546 *coredump = !NILP (tem);
550 /* Return a string describing a process status list. */
552 static Lisp_Object
553 status_message (struct Lisp_Process *p)
555 Lisp_Object status = p->status;
556 Lisp_Object symbol;
557 int code;
558 bool coredump;
559 Lisp_Object string, string2;
561 decode_status (status, &symbol, &code, &coredump);
563 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
565 char const *signame;
566 synchronize_system_messages_locale ();
567 signame = strsignal (code);
568 if (signame == 0)
569 string = build_string ("unknown");
570 else
572 int c1, c2;
574 string = build_unibyte_string (signame);
575 if (! NILP (Vlocale_coding_system))
576 string = (code_convert_string_norecord
577 (string, Vlocale_coding_system, 0));
578 c1 = STRING_CHAR (SDATA (string));
579 c2 = downcase (c1);
580 if (c1 != c2)
581 Faset (string, make_number (0), make_number (c2));
583 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
584 return concat2 (string, string2);
586 else if (EQ (symbol, Qexit))
588 if (NETCONN1_P (p))
589 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
590 if (code == 0)
591 return build_string ("finished\n");
592 string = Fnumber_to_string (make_number (code));
593 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
594 return concat3 (build_string ("exited abnormally with code "),
595 string, string2);
597 else if (EQ (symbol, Qfailed))
599 string = Fnumber_to_string (make_number (code));
600 string2 = build_string ("\n");
601 return concat3 (build_string ("failed with code "),
602 string, string2);
604 else
605 return Fcopy_sequence (Fsymbol_name (symbol));
608 #ifdef HAVE_PTYS
610 /* The file name of the pty opened by allocate_pty. */
611 static char pty_name[24];
613 /* Open an available pty, returning a file descriptor.
614 Return -1 on failure.
615 The file name of the terminal corresponding to the pty
616 is left in the variable pty_name. */
618 static int
619 allocate_pty (void)
621 int fd;
623 #ifdef PTY_ITERATION
624 PTY_ITERATION
625 #else
626 register int c, i;
627 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
628 for (i = 0; i < 16; i++)
629 #endif
631 #ifdef PTY_NAME_SPRINTF
632 PTY_NAME_SPRINTF
633 #else
634 sprintf (pty_name, "/dev/pty%c%x", c, i);
635 #endif /* no PTY_NAME_SPRINTF */
637 #ifdef PTY_OPEN
638 PTY_OPEN;
639 #else /* no PTY_OPEN */
640 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
641 #endif /* no PTY_OPEN */
643 if (fd >= 0)
645 /* check to make certain that both sides are available
646 this avoids a nasty yet stupid bug in rlogins */
647 #ifdef PTY_TTY_NAME_SPRINTF
648 PTY_TTY_NAME_SPRINTF
649 #else
650 sprintf (pty_name, "/dev/tty%c%x", c, i);
651 #endif /* no PTY_TTY_NAME_SPRINTF */
652 if (faccessat (AT_FDCWD, pty_name, R_OK | W_OK, AT_EACCESS) != 0)
654 emacs_close (fd);
655 # ifndef __sgi
656 continue;
657 # else
658 return -1;
659 # endif /* __sgi */
661 setup_pty (fd);
662 return fd;
665 return -1;
667 #endif /* HAVE_PTYS */
669 static Lisp_Object
670 make_process (Lisp_Object name)
672 register Lisp_Object val, tem, name1;
673 register struct Lisp_Process *p;
674 char suffix[sizeof "<>" + INT_STRLEN_BOUND (printmax_t)];
675 printmax_t i;
677 p = allocate_process ();
678 /* Initialize Lisp data. Note that allocate_process initializes all
679 Lisp data to nil, so do it only for slots which should not be nil. */
680 pset_status (p, Qrun);
681 pset_mark (p, Fmake_marker ());
683 /* Initialize non-Lisp data. Note that allocate_process zeroes out all
684 non-Lisp data, so do it only for slots which should not be zero. */
685 p->infd = -1;
686 p->outfd = -1;
688 #ifdef HAVE_GNUTLS
689 p->gnutls_initstage = GNUTLS_STAGE_EMPTY;
690 #endif
692 /* If name is already in use, modify it until it is unused. */
694 name1 = name;
695 for (i = 1; ; i++)
697 tem = Fget_process (name1);
698 if (NILP (tem)) break;
699 name1 = concat2 (name, make_formatted_string (suffix, "<%"pMd">", i));
701 name = name1;
702 pset_name (p, name);
703 XSETPROCESS (val, p);
704 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
705 return val;
708 static void
709 remove_process (register Lisp_Object proc)
711 register Lisp_Object pair;
713 pair = Frassq (proc, Vprocess_alist);
714 Vprocess_alist = Fdelq (pair, Vprocess_alist);
716 deactivate_process (proc);
720 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
721 doc: /* Return t if OBJECT is a process. */)
722 (Lisp_Object object)
724 return PROCESSP (object) ? Qt : Qnil;
727 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
728 doc: /* Return the process named NAME, or nil if there is none. */)
729 (register Lisp_Object name)
731 if (PROCESSP (name))
732 return name;
733 CHECK_STRING (name);
734 return Fcdr (Fassoc (name, Vprocess_alist));
737 /* This is how commands for the user decode process arguments. It
738 accepts a process, a process name, a buffer, a buffer name, or nil.
739 Buffers denote the first process in the buffer, and nil denotes the
740 current buffer. */
742 static Lisp_Object
743 get_process (register Lisp_Object name)
745 register Lisp_Object proc, obj;
746 if (STRINGP (name))
748 obj = Fget_process (name);
749 if (NILP (obj))
750 obj = Fget_buffer (name);
751 if (NILP (obj))
752 error ("Process %s does not exist", SDATA (name));
754 else if (NILP (name))
755 obj = Fcurrent_buffer ();
756 else
757 obj = name;
759 /* Now obj should be either a buffer object or a process object.
761 if (BUFFERP (obj))
763 proc = Fget_buffer_process (obj);
764 if (NILP (proc))
765 error ("Buffer %s has no process", SDATA (BVAR (XBUFFER (obj), name)));
767 else
769 CHECK_PROCESS (obj);
770 proc = obj;
772 return proc;
776 /* Fdelete_process promises to immediately forget about the process, but in
777 reality, Emacs needs to remember those processes until they have been
778 treated by the SIGCHLD handler and waitpid has been invoked on them;
779 otherwise they might fill up the kernel's process table.
781 Some processes created by call-process are also put onto this list. */
782 static Lisp_Object deleted_pid_list;
784 void
785 record_deleted_pid (pid_t pid)
787 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
788 /* GC treated elements set to nil. */
789 Fdelq (Qnil, deleted_pid_list));
793 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
794 doc: /* Delete PROCESS: kill it and forget about it immediately.
795 PROCESS may be a process, a buffer, the name of a process or buffer, or
796 nil, indicating the current buffer's process. */)
797 (register Lisp_Object process)
799 register struct Lisp_Process *p;
801 process = get_process (process);
802 p = XPROCESS (process);
804 p->raw_status_new = 0;
805 if (NETCONN1_P (p) || SERIALCONN1_P (p))
807 pset_status (p, Fcons (Qexit, Fcons (make_number (0), Qnil)));
808 p->tick = ++process_tick;
809 status_notify (p);
810 redisplay_preserve_echo_area (13);
812 else
814 if (p->alive)
815 record_kill_process (p);
817 if (p->infd >= 0)
819 /* Update P's status, since record_kill_process will make the
820 SIGCHLD handler update deleted_pid_list, not *P. */
821 Lisp_Object symbol;
822 if (p->raw_status_new)
823 update_status (p);
824 symbol = CONSP (p->status) ? XCAR (p->status) : p->status;
825 if (! (EQ (symbol, Qsignal) || EQ (symbol, Qexit)))
826 pset_status (p, list2 (Qsignal, make_number (SIGKILL)));
828 p->tick = ++process_tick;
829 status_notify (p);
830 redisplay_preserve_echo_area (13);
833 remove_process (process);
834 return Qnil;
837 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
838 doc: /* Return the status of PROCESS.
839 The returned value is one of the following symbols:
840 run -- for a process that is running.
841 stop -- for a process stopped but continuable.
842 exit -- for a process that has exited.
843 signal -- for a process that has got a fatal signal.
844 open -- for a network stream connection that is open.
845 listen -- for a network stream server that is listening.
846 closed -- for a network stream connection that is closed.
847 connect -- when waiting for a non-blocking connection to complete.
848 failed -- when a non-blocking connection has failed.
849 nil -- if arg is a process name and no such process exists.
850 PROCESS may be a process, a buffer, the name of a process, or
851 nil, indicating the current buffer's process. */)
852 (register Lisp_Object process)
854 register struct Lisp_Process *p;
855 register Lisp_Object status;
857 if (STRINGP (process))
858 process = Fget_process (process);
859 else
860 process = get_process (process);
862 if (NILP (process))
863 return process;
865 p = XPROCESS (process);
866 if (p->raw_status_new)
867 update_status (p);
868 status = p->status;
869 if (CONSP (status))
870 status = XCAR (status);
871 if (NETCONN1_P (p) || SERIALCONN1_P (p))
873 if (EQ (status, Qexit))
874 status = Qclosed;
875 else if (EQ (p->command, Qt))
876 status = Qstop;
877 else if (EQ (status, Qrun))
878 status = Qopen;
880 return status;
883 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
884 1, 1, 0,
885 doc: /* Return the exit status of PROCESS or the signal number that killed it.
886 If PROCESS has not yet exited or died, return 0. */)
887 (register Lisp_Object process)
889 CHECK_PROCESS (process);
890 if (XPROCESS (process)->raw_status_new)
891 update_status (XPROCESS (process));
892 if (CONSP (XPROCESS (process)->status))
893 return XCAR (XCDR (XPROCESS (process)->status));
894 return make_number (0);
897 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
898 doc: /* Return the process id of PROCESS.
899 This is the pid of the external process which PROCESS uses or talks to.
900 For a network connection, this value is nil. */)
901 (register Lisp_Object process)
903 pid_t pid;
905 CHECK_PROCESS (process);
906 pid = XPROCESS (process)->pid;
907 return (pid ? make_fixnum_or_float (pid) : Qnil);
910 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
911 doc: /* Return the name of PROCESS, as a string.
912 This is the name of the program invoked in PROCESS,
913 possibly modified to make it unique among process names. */)
914 (register Lisp_Object process)
916 CHECK_PROCESS (process);
917 return XPROCESS (process)->name;
920 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
921 doc: /* Return the command that was executed to start PROCESS.
922 This is a list of strings, the first string being the program executed
923 and the rest of the strings being the arguments given to it.
924 For a network or serial process, this is nil (process is running) or t
925 \(process is stopped). */)
926 (register Lisp_Object process)
928 CHECK_PROCESS (process);
929 return XPROCESS (process)->command;
932 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
933 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
934 This is the terminal that the process itself reads and writes on,
935 not the name of the pty that Emacs uses to talk with that terminal. */)
936 (register Lisp_Object process)
938 CHECK_PROCESS (process);
939 return XPROCESS (process)->tty_name;
942 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
943 2, 2, 0,
944 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
945 Return BUFFER. */)
946 (register Lisp_Object process, Lisp_Object buffer)
948 struct Lisp_Process *p;
950 CHECK_PROCESS (process);
951 if (!NILP (buffer))
952 CHECK_BUFFER (buffer);
953 p = XPROCESS (process);
954 pset_buffer (p, buffer);
955 if (NETCONN1_P (p) || SERIALCONN1_P (p))
956 pset_childp (p, Fplist_put (p->childp, QCbuffer, buffer));
957 setup_process_coding_systems (process);
958 return buffer;
961 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
962 1, 1, 0,
963 doc: /* Return the buffer PROCESS is associated with.
964 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
965 (register Lisp_Object process)
967 CHECK_PROCESS (process);
968 return XPROCESS (process)->buffer;
971 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
972 1, 1, 0,
973 doc: /* Return the marker for the end of the last output from PROCESS. */)
974 (register Lisp_Object process)
976 CHECK_PROCESS (process);
977 return XPROCESS (process)->mark;
980 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
981 2, 2, 0,
982 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
983 A value of t means stop accepting output from the process.
985 When a process has a filter, its buffer is not used for output.
986 Instead, each time it does output, the entire string of output is
987 passed to the filter.
989 The filter gets two arguments: the process and the string of output.
990 The string argument is normally a multibyte string, except:
991 - if the process' input coding system is no-conversion or raw-text,
992 it is a unibyte string (the non-converted input), or else
993 - if `default-enable-multibyte-characters' is nil, it is a unibyte
994 string (the result of converting the decoded input multibyte
995 string to unibyte with `string-make-unibyte'). */)
996 (register Lisp_Object process, Lisp_Object filter)
998 struct Lisp_Process *p;
1000 CHECK_PROCESS (process);
1001 p = XPROCESS (process);
1003 /* Don't signal an error if the process' input file descriptor
1004 is closed. This could make debugging Lisp more difficult,
1005 for example when doing something like
1007 (setq process (start-process ...))
1008 (debug)
1009 (set-process-filter process ...) */
1011 if (p->infd >= 0)
1013 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
1015 FD_CLR (p->infd, &input_wait_mask);
1016 FD_CLR (p->infd, &non_keyboard_wait_mask);
1018 else if (EQ (p->filter, Qt)
1019 /* Network or serial process not stopped: */
1020 && !EQ (p->command, Qt))
1022 FD_SET (p->infd, &input_wait_mask);
1023 FD_SET (p->infd, &non_keyboard_wait_mask);
1027 pset_filter (p, filter);
1028 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1029 pset_childp (p, Fplist_put (p->childp, QCfilter, filter));
1030 setup_process_coding_systems (process);
1031 return filter;
1034 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
1035 1, 1, 0,
1036 doc: /* Returns the filter function of PROCESS; nil if none.
1037 See `set-process-filter' for more info on filter functions. */)
1038 (register Lisp_Object process)
1040 CHECK_PROCESS (process);
1041 return XPROCESS (process)->filter;
1044 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
1045 2, 2, 0,
1046 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
1047 The sentinel is called as a function when the process changes state.
1048 It gets two arguments: the process, and a string describing the change. */)
1049 (register Lisp_Object process, Lisp_Object sentinel)
1051 struct Lisp_Process *p;
1053 CHECK_PROCESS (process);
1054 p = XPROCESS (process);
1056 pset_sentinel (p, sentinel);
1057 if (NETCONN1_P (p) || SERIALCONN1_P (p))
1058 pset_childp (p, Fplist_put (p->childp, QCsentinel, sentinel));
1059 return sentinel;
1062 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
1063 1, 1, 0,
1064 doc: /* Return the sentinel of PROCESS; nil if none.
1065 See `set-process-sentinel' for more info on sentinels. */)
1066 (register Lisp_Object process)
1068 CHECK_PROCESS (process);
1069 return XPROCESS (process)->sentinel;
1072 DEFUN ("set-process-window-size", Fset_process_window_size,
1073 Sset_process_window_size, 3, 3, 0,
1074 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
1075 (register Lisp_Object process, Lisp_Object height, Lisp_Object width)
1077 CHECK_PROCESS (process);
1078 CHECK_RANGED_INTEGER (height, 0, INT_MAX);
1079 CHECK_RANGED_INTEGER (width, 0, INT_MAX);
1081 if (XPROCESS (process)->infd < 0
1082 || set_window_size (XPROCESS (process)->infd,
1083 XINT (height), XINT (width)) <= 0)
1084 return Qnil;
1085 else
1086 return Qt;
1089 DEFUN ("set-process-inherit-coding-system-flag",
1090 Fset_process_inherit_coding_system_flag,
1091 Sset_process_inherit_coding_system_flag, 2, 2, 0,
1092 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
1093 If the second argument FLAG is non-nil, then the variable
1094 `buffer-file-coding-system' of the buffer associated with PROCESS
1095 will be bound to the value of the coding system used to decode
1096 the process output.
1098 This is useful when the coding system specified for the process buffer
1099 leaves either the character code conversion or the end-of-line conversion
1100 unspecified, or if the coding system used to decode the process output
1101 is more appropriate for saving the process buffer.
1103 Binding the variable `inherit-process-coding-system' to non-nil before
1104 starting the process is an alternative way of setting the inherit flag
1105 for the process which will run.
1107 This function returns FLAG. */)
1108 (register Lisp_Object process, Lisp_Object flag)
1110 CHECK_PROCESS (process);
1111 XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
1112 return flag;
1115 DEFUN ("set-process-query-on-exit-flag",
1116 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1117 2, 2, 0,
1118 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1119 If the second argument FLAG is non-nil, Emacs will query the user before
1120 exiting or killing a buffer if PROCESS is running. This function
1121 returns FLAG. */)
1122 (register Lisp_Object process, Lisp_Object flag)
1124 CHECK_PROCESS (process);
1125 XPROCESS (process)->kill_without_query = NILP (flag);
1126 return flag;
1129 DEFUN ("process-query-on-exit-flag",
1130 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
1131 1, 1, 0,
1132 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
1133 (register Lisp_Object process)
1135 CHECK_PROCESS (process);
1136 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1139 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1140 1, 2, 0,
1141 doc: /* Return the contact info of PROCESS; t for a real child.
1142 For a network or serial connection, the value depends on the optional
1143 KEY arg. If KEY is nil, value is a cons cell of the form (HOST
1144 SERVICE) for a network connection or (PORT SPEED) for a serial
1145 connection. If KEY is t, the complete contact information for the
1146 connection is returned, else the specific value for the keyword KEY is
1147 returned. See `make-network-process' or `make-serial-process' for a
1148 list of keywords. */)
1149 (register Lisp_Object process, Lisp_Object key)
1151 Lisp_Object contact;
1153 CHECK_PROCESS (process);
1154 contact = XPROCESS (process)->childp;
1156 #ifdef DATAGRAM_SOCKETS
1157 if (DATAGRAM_CONN_P (process)
1158 && (EQ (key, Qt) || EQ (key, QCremote)))
1159 contact = Fplist_put (contact, QCremote,
1160 Fprocess_datagram_address (process));
1161 #endif
1163 if ((!NETCONN_P (process) && !SERIALCONN_P (process)) || EQ (key, Qt))
1164 return contact;
1165 if (NILP (key) && NETCONN_P (process))
1166 return Fcons (Fplist_get (contact, QChost),
1167 Fcons (Fplist_get (contact, QCservice), Qnil));
1168 if (NILP (key) && SERIALCONN_P (process))
1169 return Fcons (Fplist_get (contact, QCport),
1170 Fcons (Fplist_get (contact, QCspeed), Qnil));
1171 return Fplist_get (contact, key);
1174 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
1175 1, 1, 0,
1176 doc: /* Return the plist of PROCESS. */)
1177 (register Lisp_Object process)
1179 CHECK_PROCESS (process);
1180 return XPROCESS (process)->plist;
1183 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
1184 2, 2, 0,
1185 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
1186 (register Lisp_Object process, Lisp_Object plist)
1188 CHECK_PROCESS (process);
1189 CHECK_LIST (plist);
1191 pset_plist (XPROCESS (process), plist);
1192 return plist;
1195 #if 0 /* Turned off because we don't currently record this info
1196 in the process. Perhaps add it. */
1197 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
1198 doc: /* Return the connection type of PROCESS.
1199 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
1200 a socket connection. */)
1201 (Lisp_Object process)
1203 return XPROCESS (process)->type;
1205 #endif
1207 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1208 doc: /* Return the connection type of PROCESS.
1209 The value is either the symbol `real', `network', or `serial'.
1210 PROCESS may be a process, a buffer, the name of a process or buffer, or
1211 nil, indicating the current buffer's process. */)
1212 (Lisp_Object process)
1214 Lisp_Object proc;
1215 proc = get_process (process);
1216 return XPROCESS (proc)->type;
1219 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
1220 1, 2, 0,
1221 doc: /* Convert network ADDRESS from internal format to a string.
1222 A 4 or 5 element vector represents an IPv4 address (with port number).
1223 An 8 or 9 element vector represents an IPv6 address (with port number).
1224 If optional second argument OMIT-PORT is non-nil, don't include a port
1225 number in the string, even when present in ADDRESS.
1226 Returns nil if format of ADDRESS is invalid. */)
1227 (Lisp_Object address, Lisp_Object omit_port)
1229 if (NILP (address))
1230 return Qnil;
1232 if (STRINGP (address)) /* AF_LOCAL */
1233 return address;
1235 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1237 register struct Lisp_Vector *p = XVECTOR (address);
1238 ptrdiff_t size = p->header.size;
1239 Lisp_Object args[10];
1240 int nargs, i;
1242 if (size == 4 || (size == 5 && !NILP (omit_port)))
1244 args[0] = build_string ("%d.%d.%d.%d");
1245 nargs = 4;
1247 else if (size == 5)
1249 args[0] = build_string ("%d.%d.%d.%d:%d");
1250 nargs = 5;
1252 else if (size == 8 || (size == 9 && !NILP (omit_port)))
1254 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
1255 nargs = 8;
1257 else if (size == 9)
1259 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
1260 nargs = 9;
1262 else
1263 return Qnil;
1265 for (i = 0; i < nargs; i++)
1267 if (! RANGED_INTEGERP (0, p->contents[i], 65535))
1268 return Qnil;
1270 if (nargs <= 5 /* IPv4 */
1271 && i < 4 /* host, not port */
1272 && XINT (p->contents[i]) > 255)
1273 return Qnil;
1275 args[i+1] = p->contents[i];
1278 return Fformat (nargs+1, args);
1281 if (CONSP (address))
1283 Lisp_Object args[2];
1284 args[0] = build_string ("<Family %d>");
1285 args[1] = Fcar (address);
1286 return Fformat (2, args);
1289 return Qnil;
1292 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1293 doc: /* Return a list of all processes. */)
1294 (void)
1296 return Fmapcar (Qcdr, Vprocess_alist);
1299 /* Starting asynchronous inferior processes. */
1301 static Lisp_Object start_process_unwind (Lisp_Object proc);
1303 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1304 doc: /* Start a program in a subprocess. Return the process object for it.
1305 NAME is name for process. It is modified if necessary to make it unique.
1306 BUFFER is the buffer (or buffer name) to associate with the process.
1308 Process output (both standard output and standard error streams) goes
1309 at end of BUFFER, unless you specify an output stream or filter
1310 function to handle the output. BUFFER may also be nil, meaning that
1311 this process is not associated with any buffer.
1313 PROGRAM is the program file name. It is searched for in `exec-path'
1314 (which see). If nil, just associate a pty with the buffer. Remaining
1315 arguments are strings to give program as arguments.
1317 If you want to separate standard output from standard error, invoke
1318 the command through a shell and redirect one of them using the shell
1319 syntax.
1321 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1322 (ptrdiff_t nargs, Lisp_Object *args)
1324 Lisp_Object buffer, name, program, proc, current_dir, tem;
1325 register unsigned char **new_argv;
1326 ptrdiff_t i;
1327 ptrdiff_t count = SPECPDL_INDEX ();
1329 buffer = args[1];
1330 if (!NILP (buffer))
1331 buffer = Fget_buffer_create (buffer);
1333 /* Make sure that the child will be able to chdir to the current
1334 buffer's current directory, or its unhandled equivalent. We
1335 can't just have the child check for an error when it does the
1336 chdir, since it's in a vfork.
1338 We have to GCPRO around this because Fexpand_file_name and
1339 Funhandled_file_name_directory might call a file name handling
1340 function. The argument list is protected by the caller, so all
1341 we really have to worry about is buffer. */
1343 struct gcpro gcpro1, gcpro2;
1345 current_dir = BVAR (current_buffer, directory);
1347 GCPRO2 (buffer, current_dir);
1349 current_dir = Funhandled_file_name_directory (current_dir);
1350 if (NILP (current_dir))
1351 /* If the file name handler says that current_dir is unreachable, use
1352 a sensible default. */
1353 current_dir = build_string ("~/");
1354 current_dir = expand_and_dir_to_file (current_dir, Qnil);
1355 if (NILP (Ffile_accessible_directory_p (current_dir)))
1356 report_file_error ("Setting current directory",
1357 Fcons (BVAR (current_buffer, directory), Qnil));
1359 UNGCPRO;
1362 name = args[0];
1363 CHECK_STRING (name);
1365 program = args[2];
1367 if (!NILP (program))
1368 CHECK_STRING (program);
1370 proc = make_process (name);
1371 /* If an error occurs and we can't start the process, we want to
1372 remove it from the process list. This means that each error
1373 check in create_process doesn't need to call remove_process
1374 itself; it's all taken care of here. */
1375 record_unwind_protect (start_process_unwind, proc);
1377 pset_childp (XPROCESS (proc), Qt);
1378 pset_plist (XPROCESS (proc), Qnil);
1379 pset_type (XPROCESS (proc), Qreal);
1380 pset_buffer (XPROCESS (proc), buffer);
1381 pset_sentinel (XPROCESS (proc), Qnil);
1382 pset_filter (XPROCESS (proc), Qnil);
1383 pset_command (XPROCESS (proc), Flist (nargs - 2, args + 2));
1385 #ifdef HAVE_GNUTLS
1386 /* AKA GNUTLS_INITSTAGE(proc). */
1387 XPROCESS (proc)->gnutls_initstage = GNUTLS_STAGE_EMPTY;
1388 pset_gnutls_cred_type (XPROCESS (proc), Qnil);
1389 #endif
1391 #ifdef ADAPTIVE_READ_BUFFERING
1392 XPROCESS (proc)->adaptive_read_buffering
1393 = (NILP (Vprocess_adaptive_read_buffering) ? 0
1394 : EQ (Vprocess_adaptive_read_buffering, Qt) ? 1 : 2);
1395 #endif
1397 /* Make the process marker point into the process buffer (if any). */
1398 if (BUFFERP (buffer))
1399 set_marker_both (XPROCESS (proc)->mark, buffer,
1400 BUF_ZV (XBUFFER (buffer)),
1401 BUF_ZV_BYTE (XBUFFER (buffer)));
1404 /* Decide coding systems for communicating with the process. Here
1405 we don't setup the structure coding_system nor pay attention to
1406 unibyte mode. They are done in create_process. */
1408 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1409 Lisp_Object coding_systems = Qt;
1410 Lisp_Object val, *args2;
1411 struct gcpro gcpro1, gcpro2;
1413 val = Vcoding_system_for_read;
1414 if (NILP (val))
1416 args2 = alloca ((nargs + 1) * sizeof *args2);
1417 args2[0] = Qstart_process;
1418 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1419 GCPRO2 (proc, current_dir);
1420 if (!NILP (program))
1421 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1422 UNGCPRO;
1423 if (CONSP (coding_systems))
1424 val = XCAR (coding_systems);
1425 else if (CONSP (Vdefault_process_coding_system))
1426 val = XCAR (Vdefault_process_coding_system);
1428 pset_decode_coding_system (XPROCESS (proc), val);
1430 val = Vcoding_system_for_write;
1431 if (NILP (val))
1433 if (EQ (coding_systems, Qt))
1435 args2 = alloca ((nargs + 1) * sizeof *args2);
1436 args2[0] = Qstart_process;
1437 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1438 GCPRO2 (proc, current_dir);
1439 if (!NILP (program))
1440 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1441 UNGCPRO;
1443 if (CONSP (coding_systems))
1444 val = XCDR (coding_systems);
1445 else if (CONSP (Vdefault_process_coding_system))
1446 val = XCDR (Vdefault_process_coding_system);
1448 pset_encode_coding_system (XPROCESS (proc), val);
1449 /* Note: At this moment, the above coding system may leave
1450 text-conversion or eol-conversion unspecified. They will be
1451 decided after we read output from the process and decode it by
1452 some coding system, or just before we actually send a text to
1453 the process. */
1457 pset_decoding_buf (XPROCESS (proc), empty_unibyte_string);
1458 XPROCESS (proc)->decoding_carryover = 0;
1459 pset_encoding_buf (XPROCESS (proc), empty_unibyte_string);
1461 XPROCESS (proc)->inherit_coding_system_flag
1462 = !(NILP (buffer) || !inherit_process_coding_system);
1464 if (!NILP (program))
1466 /* If program file name is not absolute, search our path for it.
1467 Put the name we will really use in TEM. */
1468 if (!IS_DIRECTORY_SEP (SREF (program, 0))
1469 && !(SCHARS (program) > 1
1470 && IS_DEVICE_SEP (SREF (program, 1))))
1472 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1474 tem = Qnil;
1475 GCPRO4 (name, program, buffer, current_dir);
1476 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
1477 UNGCPRO;
1478 if (NILP (tem))
1479 report_file_error ("Searching for program", Fcons (program, Qnil));
1480 tem = Fexpand_file_name (tem, Qnil);
1482 else
1484 if (!NILP (Ffile_directory_p (program)))
1485 error ("Specified program for new process is a directory");
1486 tem = program;
1489 /* If program file name starts with /: for quoting a magic name,
1490 discard that. */
1491 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
1492 && SREF (tem, 1) == ':')
1493 tem = Fsubstring (tem, make_number (2), Qnil);
1496 Lisp_Object arg_encoding = Qnil;
1497 struct gcpro gcpro1;
1498 GCPRO1 (tem);
1500 /* Encode the file name and put it in NEW_ARGV.
1501 That's where the child will use it to execute the program. */
1502 tem = Fcons (ENCODE_FILE (tem), Qnil);
1504 /* Here we encode arguments by the coding system used for sending
1505 data to the process. We don't support using different coding
1506 systems for encoding arguments and for encoding data sent to the
1507 process. */
1509 for (i = 3; i < nargs; i++)
1511 tem = Fcons (args[i], tem);
1512 CHECK_STRING (XCAR (tem));
1513 if (STRING_MULTIBYTE (XCAR (tem)))
1515 if (NILP (arg_encoding))
1516 arg_encoding = (complement_process_encoding_system
1517 (XPROCESS (proc)->encode_coding_system));
1518 XSETCAR (tem,
1519 code_convert_string_norecord
1520 (XCAR (tem), arg_encoding, 1));
1524 UNGCPRO;
1527 /* Now that everything is encoded we can collect the strings into
1528 NEW_ARGV. */
1529 new_argv = alloca ((nargs - 1) * sizeof *new_argv);
1530 new_argv[nargs - 2] = 0;
1532 for (i = nargs - 2; i-- != 0; )
1534 new_argv[i] = SDATA (XCAR (tem));
1535 tem = XCDR (tem);
1538 create_process (proc, (char **) new_argv, current_dir);
1540 else
1541 create_pty (proc);
1543 return unbind_to (count, proc);
1546 /* This function is the unwind_protect form for Fstart_process. If
1547 PROC doesn't have its pid set, then we know someone has signaled
1548 an error and the process wasn't started successfully, so we should
1549 remove it from the process list. */
1550 static Lisp_Object
1551 start_process_unwind (Lisp_Object proc)
1553 if (!PROCESSP (proc))
1554 emacs_abort ();
1556 /* Was PROC started successfully?
1557 -2 is used for a pty with no process, eg for gdb. */
1558 if (XPROCESS (proc)->pid <= 0 && XPROCESS (proc)->pid != -2)
1559 remove_process (proc);
1561 return Qnil;
1564 static void
1565 create_process_1 (struct atimer *timer)
1567 /* Nothing to do. */
1571 static void
1572 create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1574 int inchannel, outchannel;
1575 pid_t pid;
1576 int sv[2];
1577 #ifndef WINDOWSNT
1578 int wait_child_setup[2];
1579 #endif
1580 sigset_t blocked;
1581 /* Use volatile to protect variables from being clobbered by vfork. */
1582 volatile int forkin, forkout;
1583 volatile bool pty_flag = 0;
1584 volatile Lisp_Object lisp_pty_name = Qnil;
1585 volatile Lisp_Object encoded_current_dir;
1587 inchannel = outchannel = -1;
1589 #ifdef HAVE_PTYS
1590 if (!NILP (Vprocess_connection_type))
1591 outchannel = inchannel = allocate_pty ();
1593 if (inchannel >= 0)
1595 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1596 /* On most USG systems it does not work to open the pty's tty here,
1597 then close it and reopen it in the child. */
1598 /* Don't let this terminal become our controlling terminal
1599 (in case we don't have one). */
1600 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1601 if (forkin < 0)
1602 report_file_error ("Opening pty", Qnil);
1603 #else
1604 forkin = forkout = -1;
1605 #endif /* not USG, or USG_SUBTTY_WORKS */
1606 pty_flag = 1;
1607 lisp_pty_name = build_string (pty_name);
1609 else
1610 #endif /* HAVE_PTYS */
1612 int tem;
1613 tem = pipe (sv);
1614 if (tem < 0)
1615 report_file_error ("Creating pipe", Qnil);
1616 inchannel = sv[0];
1617 forkout = sv[1];
1618 tem = pipe (sv);
1619 if (tem < 0)
1621 emacs_close (inchannel);
1622 emacs_close (forkout);
1623 report_file_error ("Creating pipe", Qnil);
1625 outchannel = sv[1];
1626 forkin = sv[0];
1629 #ifndef WINDOWSNT
1631 int tem;
1633 tem = pipe (wait_child_setup);
1634 if (tem < 0)
1635 report_file_error ("Creating pipe", Qnil);
1636 tem = fcntl (wait_child_setup[1], F_GETFD, 0);
1637 if (tem >= 0)
1638 tem = fcntl (wait_child_setup[1], F_SETFD, tem | FD_CLOEXEC);
1639 if (tem < 0)
1641 emacs_close (wait_child_setup[0]);
1642 emacs_close (wait_child_setup[1]);
1643 report_file_error ("Setting file descriptor flags", Qnil);
1646 #endif
1648 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1649 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1651 /* Record this as an active process, with its channels.
1652 As a result, child_setup will close Emacs's side of the pipes. */
1653 chan_process[inchannel] = process;
1654 XPROCESS (process)->infd = inchannel;
1655 XPROCESS (process)->outfd = outchannel;
1657 /* Previously we recorded the tty descriptor used in the subprocess.
1658 It was only used for getting the foreground tty process, so now
1659 we just reopen the device (see emacs_get_tty_pgrp) as this is
1660 more portable (see USG_SUBTTY_WORKS above). */
1662 XPROCESS (process)->pty_flag = pty_flag;
1663 pset_status (XPROCESS (process), Qrun);
1665 FD_SET (inchannel, &input_wait_mask);
1666 FD_SET (inchannel, &non_keyboard_wait_mask);
1667 if (inchannel > max_process_desc)
1668 max_process_desc = inchannel;
1670 /* This may signal an error. */
1671 setup_process_coding_systems (process);
1673 encoded_current_dir = ENCODE_FILE (current_dir);
1675 block_input ();
1677 /* Block SIGCHLD until we have a chance to store the new fork's
1678 pid in its process structure. */
1679 sigemptyset (&blocked);
1680 sigaddset (&blocked, SIGCHLD);
1681 pthread_sigmask (SIG_BLOCK, &blocked, 0);
1683 #ifndef WINDOWSNT
1684 pid = vfork ();
1685 if (pid == 0)
1686 #endif /* not WINDOWSNT */
1688 int xforkin = forkin;
1689 int xforkout = forkout;
1691 /* Make the pty be the controlling terminal of the process. */
1692 #ifdef HAVE_PTYS
1693 /* First, disconnect its current controlling terminal. */
1694 /* We tried doing setsid only if pty_flag, but it caused
1695 process_set_signal to fail on SGI when using a pipe. */
1696 setsid ();
1697 /* Make the pty's terminal the controlling terminal. */
1698 if (pty_flag && xforkin >= 0)
1700 #ifdef TIOCSCTTY
1701 /* We ignore the return value
1702 because faith@cs.unc.edu says that is necessary on Linux. */
1703 ioctl (xforkin, TIOCSCTTY, 0);
1704 #endif
1706 #if defined (LDISC1)
1707 if (pty_flag && xforkin >= 0)
1709 struct termios t;
1710 tcgetattr (xforkin, &t);
1711 t.c_lflag = LDISC1;
1712 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1713 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1715 #else
1716 #if defined (NTTYDISC) && defined (TIOCSETD)
1717 if (pty_flag && xforkin >= 0)
1719 /* Use new line discipline. */
1720 int ldisc = NTTYDISC;
1721 ioctl (xforkin, TIOCSETD, &ldisc);
1723 #endif
1724 #endif
1725 #ifdef TIOCNOTTY
1726 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1727 can do TIOCSPGRP only to the process's controlling tty. */
1728 if (pty_flag)
1730 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1731 I can't test it since I don't have 4.3. */
1732 int j = emacs_open ("/dev/tty", O_RDWR, 0);
1733 if (j >= 0)
1735 ioctl (j, TIOCNOTTY, 0);
1736 emacs_close (j);
1739 #endif /* TIOCNOTTY */
1741 #if !defined (DONT_REOPEN_PTY)
1742 /*** There is a suggestion that this ought to be a
1743 conditional on TIOCSPGRP, or !defined TIOCSCTTY.
1744 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1745 that system does seem to need this code, even though
1746 both TIOCSCTTY is defined. */
1747 /* Now close the pty (if we had it open) and reopen it.
1748 This makes the pty the controlling terminal of the subprocess. */
1749 if (pty_flag)
1752 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1753 would work? */
1754 if (xforkin >= 0)
1755 emacs_close (xforkin);
1756 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
1758 if (xforkin < 0)
1760 emacs_write (1, "Couldn't open the pty terminal ", 31);
1761 emacs_write (1, pty_name, strlen (pty_name));
1762 emacs_write (1, "\n", 1);
1763 _exit (1);
1767 #endif /* not DONT_REOPEN_PTY */
1769 #ifdef SETUP_SLAVE_PTY
1770 if (pty_flag)
1772 SETUP_SLAVE_PTY;
1774 #endif /* SETUP_SLAVE_PTY */
1775 #ifdef AIX
1776 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1777 Now reenable it in the child, so it will die when we want it to. */
1778 if (pty_flag)
1779 signal (SIGHUP, SIG_DFL);
1780 #endif
1781 #endif /* HAVE_PTYS */
1783 signal (SIGINT, SIG_DFL);
1784 signal (SIGQUIT, SIG_DFL);
1786 /* Emacs ignores SIGPIPE, but the child should not. */
1787 signal (SIGPIPE, SIG_DFL);
1789 /* Stop blocking signals in the child. */
1790 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1792 if (pty_flag)
1793 child_setup_tty (xforkout);
1794 #ifdef WINDOWSNT
1795 pid = child_setup (xforkin, xforkout, xforkout,
1796 new_argv, 1, encoded_current_dir);
1797 #else /* not WINDOWSNT */
1798 emacs_close (wait_child_setup[0]);
1799 child_setup (xforkin, xforkout, xforkout,
1800 new_argv, 1, encoded_current_dir);
1801 #endif /* not WINDOWSNT */
1804 /* Back in the parent process. */
1806 XPROCESS (process)->pid = pid;
1807 if (0 <= pid)
1808 XPROCESS (process)->alive = 1;
1810 /* Stop blocking signals in the parent. */
1811 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
1812 unblock_input ();
1814 if (pid < 0)
1816 if (forkin >= 0)
1817 emacs_close (forkin);
1818 if (forkin != forkout && forkout >= 0)
1819 emacs_close (forkout);
1821 else
1823 /* vfork succeeded. */
1825 #ifdef WINDOWSNT
1826 register_child (pid, inchannel);
1827 #endif /* WINDOWSNT */
1829 /* If the subfork execv fails, and it exits,
1830 this close hangs. I don't know why.
1831 So have an interrupt jar it loose. */
1833 struct atimer *timer;
1834 EMACS_TIME offset = make_emacs_time (1, 0);
1836 stop_polling ();
1837 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
1839 if (forkin >= 0)
1840 emacs_close (forkin);
1842 cancel_atimer (timer);
1843 start_polling ();
1846 if (forkin != forkout && forkout >= 0)
1847 emacs_close (forkout);
1849 pset_tty_name (XPROCESS (process), lisp_pty_name);
1851 #ifndef WINDOWSNT
1852 /* Wait for child_setup to complete in case that vfork is
1853 actually defined as fork. The descriptor wait_child_setup[1]
1854 of a pipe is closed at the child side either by close-on-exec
1855 on successful execve or the _exit call in child_setup. */
1857 char dummy;
1859 emacs_close (wait_child_setup[1]);
1860 emacs_read (wait_child_setup[0], &dummy, 1);
1861 emacs_close (wait_child_setup[0]);
1863 #endif
1866 /* Now generate the error if vfork failed. */
1867 if (pid < 0)
1868 report_file_error ("Doing vfork", Qnil);
1871 void
1872 create_pty (Lisp_Object process)
1874 int inchannel, outchannel;
1875 bool pty_flag = 0;
1877 inchannel = outchannel = -1;
1879 #ifdef HAVE_PTYS
1880 if (!NILP (Vprocess_connection_type))
1881 outchannel = inchannel = allocate_pty ();
1883 if (inchannel >= 0)
1885 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
1886 /* On most USG systems it does not work to open the pty's tty here,
1887 then close it and reopen it in the child. */
1888 /* Don't let this terminal become our controlling terminal
1889 (in case we don't have one). */
1890 int forkout = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
1891 if (forkout < 0)
1892 report_file_error ("Opening pty", Qnil);
1893 #if defined (DONT_REOPEN_PTY)
1894 /* In the case that vfork is defined as fork, the parent process
1895 (Emacs) may send some data before the child process completes
1896 tty options setup. So we setup tty before forking. */
1897 child_setup_tty (forkout);
1898 #endif /* DONT_REOPEN_PTY */
1899 #endif /* not USG, or USG_SUBTTY_WORKS */
1900 pty_flag = 1;
1902 #endif /* HAVE_PTYS */
1904 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1905 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1907 /* Record this as an active process, with its channels.
1908 As a result, child_setup will close Emacs's side of the pipes. */
1909 chan_process[inchannel] = process;
1910 XPROCESS (process)->infd = inchannel;
1911 XPROCESS (process)->outfd = outchannel;
1913 /* Previously we recorded the tty descriptor used in the subprocess.
1914 It was only used for getting the foreground tty process, so now
1915 we just reopen the device (see emacs_get_tty_pgrp) as this is
1916 more portable (see USG_SUBTTY_WORKS above). */
1918 XPROCESS (process)->pty_flag = pty_flag;
1919 pset_status (XPROCESS (process), Qrun);
1920 setup_process_coding_systems (process);
1922 FD_SET (inchannel, &input_wait_mask);
1923 FD_SET (inchannel, &non_keyboard_wait_mask);
1924 if (inchannel > max_process_desc)
1925 max_process_desc = inchannel;
1927 XPROCESS (process)->pid = -2;
1928 #ifdef HAVE_PTYS
1929 if (pty_flag)
1930 pset_tty_name (XPROCESS (process), build_string (pty_name));
1931 else
1932 #endif
1933 pset_tty_name (XPROCESS (process), Qnil);
1937 /* Convert an internal struct sockaddr to a lisp object (vector or string).
1938 The address family of sa is not included in the result. */
1940 static Lisp_Object
1941 conv_sockaddr_to_lisp (struct sockaddr *sa, int len)
1943 Lisp_Object address;
1944 int i;
1945 unsigned char *cp;
1946 register struct Lisp_Vector *p;
1948 /* Workaround for a bug in getsockname on BSD: Names bound to
1949 sockets in the UNIX domain are inaccessible; getsockname returns
1950 a zero length name. */
1951 if (len < offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family))
1952 return empty_unibyte_string;
1954 switch (sa->sa_family)
1956 case AF_INET:
1958 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
1959 len = sizeof (sin->sin_addr) + 1;
1960 address = Fmake_vector (make_number (len), Qnil);
1961 p = XVECTOR (address);
1962 p->contents[--len] = make_number (ntohs (sin->sin_port));
1963 cp = (unsigned char *) &sin->sin_addr;
1964 break;
1966 #ifdef AF_INET6
1967 case AF_INET6:
1969 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
1970 uint16_t *ip6 = (uint16_t *) &sin6->sin6_addr;
1971 len = sizeof (sin6->sin6_addr)/2 + 1;
1972 address = Fmake_vector (make_number (len), Qnil);
1973 p = XVECTOR (address);
1974 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
1975 for (i = 0; i < len; i++)
1976 p->contents[i] = make_number (ntohs (ip6[i]));
1977 return address;
1979 #endif
1980 #ifdef HAVE_LOCAL_SOCKETS
1981 case AF_LOCAL:
1983 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
1984 for (i = 0; i < sizeof (sockun->sun_path); i++)
1985 if (sockun->sun_path[i] == 0)
1986 break;
1987 return make_unibyte_string (sockun->sun_path, i);
1989 #endif
1990 default:
1991 len -= offsetof (struct sockaddr, sa_family) + sizeof (sa->sa_family);
1992 address = Fcons (make_number (sa->sa_family),
1993 Fmake_vector (make_number (len), Qnil));
1994 p = XVECTOR (XCDR (address));
1995 cp = (unsigned char *) &sa->sa_family + sizeof (sa->sa_family);
1996 break;
1999 i = 0;
2000 while (i < len)
2001 p->contents[i++] = make_number (*cp++);
2003 return address;
2007 /* Get family and required size for sockaddr structure to hold ADDRESS. */
2009 static int
2010 get_lisp_to_sockaddr_size (Lisp_Object address, int *familyp)
2012 register struct Lisp_Vector *p;
2014 if (VECTORP (address))
2016 p = XVECTOR (address);
2017 if (p->header.size == 5)
2019 *familyp = AF_INET;
2020 return sizeof (struct sockaddr_in);
2022 #ifdef AF_INET6
2023 else if (p->header.size == 9)
2025 *familyp = AF_INET6;
2026 return sizeof (struct sockaddr_in6);
2028 #endif
2030 #ifdef HAVE_LOCAL_SOCKETS
2031 else if (STRINGP (address))
2033 *familyp = AF_LOCAL;
2034 return sizeof (struct sockaddr_un);
2036 #endif
2037 else if (CONSP (address) && TYPE_RANGED_INTEGERP (int, XCAR (address))
2038 && VECTORP (XCDR (address)))
2040 struct sockaddr *sa;
2041 *familyp = XINT (XCAR (address));
2042 p = XVECTOR (XCDR (address));
2043 return p->header.size + sizeof (sa->sa_family);
2045 return 0;
2048 /* Convert an address object (vector or string) to an internal sockaddr.
2050 The address format has been basically validated by
2051 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
2052 it could have come from user data. So if FAMILY is not valid,
2053 we return after zeroing *SA. */
2055 static void
2056 conv_lisp_to_sockaddr (int family, Lisp_Object address, struct sockaddr *sa, int len)
2058 register struct Lisp_Vector *p;
2059 register unsigned char *cp = NULL;
2060 register int i;
2061 EMACS_INT hostport;
2063 memset (sa, 0, len);
2065 if (VECTORP (address))
2067 p = XVECTOR (address);
2068 if (family == AF_INET)
2070 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
2071 len = sizeof (sin->sin_addr) + 1;
2072 hostport = XINT (p->contents[--len]);
2073 sin->sin_port = htons (hostport);
2074 cp = (unsigned char *)&sin->sin_addr;
2075 sa->sa_family = family;
2077 #ifdef AF_INET6
2078 else if (family == AF_INET6)
2080 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
2081 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
2082 len = sizeof (sin6->sin6_addr) + 1;
2083 hostport = XINT (p->contents[--len]);
2084 sin6->sin6_port = htons (hostport);
2085 for (i = 0; i < len; i++)
2086 if (INTEGERP (p->contents[i]))
2088 int j = XFASTINT (p->contents[i]) & 0xffff;
2089 ip6[i] = ntohs (j);
2091 sa->sa_family = family;
2092 return;
2094 #endif
2095 else
2096 return;
2098 else if (STRINGP (address))
2100 #ifdef HAVE_LOCAL_SOCKETS
2101 if (family == AF_LOCAL)
2103 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
2104 cp = SDATA (address);
2105 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
2106 sockun->sun_path[i] = *cp++;
2107 sa->sa_family = family;
2109 #endif
2110 return;
2112 else
2114 p = XVECTOR (XCDR (address));
2115 cp = (unsigned char *)sa + sizeof (sa->sa_family);
2118 for (i = 0; i < len; i++)
2119 if (INTEGERP (p->contents[i]))
2120 *cp++ = XFASTINT (p->contents[i]) & 0xff;
2123 #ifdef DATAGRAM_SOCKETS
2124 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
2125 1, 1, 0,
2126 doc: /* Get the current datagram address associated with PROCESS. */)
2127 (Lisp_Object process)
2129 int channel;
2131 CHECK_PROCESS (process);
2133 if (!DATAGRAM_CONN_P (process))
2134 return Qnil;
2136 channel = XPROCESS (process)->infd;
2137 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
2138 datagram_address[channel].len);
2141 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
2142 2, 2, 0,
2143 doc: /* Set the datagram address for PROCESS to ADDRESS.
2144 Returns nil upon error setting address, ADDRESS otherwise. */)
2145 (Lisp_Object process, Lisp_Object address)
2147 int channel;
2148 int family, len;
2150 CHECK_PROCESS (process);
2152 if (!DATAGRAM_CONN_P (process))
2153 return Qnil;
2155 channel = XPROCESS (process)->infd;
2157 len = get_lisp_to_sockaddr_size (address, &family);
2158 if (datagram_address[channel].len != len)
2159 return Qnil;
2160 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
2161 return address;
2163 #endif
2166 static const struct socket_options {
2167 /* The name of this option. Should be lowercase version of option
2168 name without SO_ prefix. */
2169 const char *name;
2170 /* Option level SOL_... */
2171 int optlevel;
2172 /* Option number SO_... */
2173 int optnum;
2174 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
2175 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
2176 } socket_options[] =
2178 #ifdef SO_BINDTODEVICE
2179 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
2180 #endif
2181 #ifdef SO_BROADCAST
2182 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
2183 #endif
2184 #ifdef SO_DONTROUTE
2185 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
2186 #endif
2187 #ifdef SO_KEEPALIVE
2188 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
2189 #endif
2190 #ifdef SO_LINGER
2191 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
2192 #endif
2193 #ifdef SO_OOBINLINE
2194 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
2195 #endif
2196 #ifdef SO_PRIORITY
2197 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
2198 #endif
2199 #ifdef SO_REUSEADDR
2200 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
2201 #endif
2202 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
2205 /* Set option OPT to value VAL on socket S.
2207 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
2208 Signals an error if setting a known option fails.
2211 static int
2212 set_socket_option (int s, Lisp_Object opt, Lisp_Object val)
2214 char *name;
2215 const struct socket_options *sopt;
2216 int ret = 0;
2218 CHECK_SYMBOL (opt);
2220 name = SSDATA (SYMBOL_NAME (opt));
2221 for (sopt = socket_options; sopt->name; sopt++)
2222 if (strcmp (name, sopt->name) == 0)
2223 break;
2225 switch (sopt->opttype)
2227 case SOPT_BOOL:
2229 int optval;
2230 optval = NILP (val) ? 0 : 1;
2231 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2232 &optval, sizeof (optval));
2233 break;
2236 case SOPT_INT:
2238 int optval;
2239 if (TYPE_RANGED_INTEGERP (int, val))
2240 optval = XINT (val);
2241 else
2242 error ("Bad option value for %s", name);
2243 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2244 &optval, sizeof (optval));
2245 break;
2248 #ifdef SO_BINDTODEVICE
2249 case SOPT_IFNAME:
2251 char devname[IFNAMSIZ+1];
2253 /* This is broken, at least in the Linux 2.4 kernel.
2254 To unbind, the arg must be a zero integer, not the empty string.
2255 This should work on all systems. KFS. 2003-09-23. */
2256 memset (devname, 0, sizeof devname);
2257 if (STRINGP (val))
2259 char *arg = SSDATA (val);
2260 int len = min (strlen (arg), IFNAMSIZ);
2261 memcpy (devname, arg, len);
2263 else if (!NILP (val))
2264 error ("Bad option value for %s", name);
2265 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2266 devname, IFNAMSIZ);
2267 break;
2269 #endif
2271 #ifdef SO_LINGER
2272 case SOPT_LINGER:
2274 struct linger linger;
2276 linger.l_onoff = 1;
2277 linger.l_linger = 0;
2278 if (TYPE_RANGED_INTEGERP (int, val))
2279 linger.l_linger = XINT (val);
2280 else
2281 linger.l_onoff = NILP (val) ? 0 : 1;
2282 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
2283 &linger, sizeof (linger));
2284 break;
2286 #endif
2288 default:
2289 return 0;
2292 if (ret < 0)
2293 report_file_error ("Cannot set network option",
2294 Fcons (opt, Fcons (val, Qnil)));
2295 return (1 << sopt->optbit);
2299 DEFUN ("set-network-process-option",
2300 Fset_network_process_option, Sset_network_process_option,
2301 3, 4, 0,
2302 doc: /* For network process PROCESS set option OPTION to value VALUE.
2303 See `make-network-process' for a list of options and values.
2304 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
2305 OPTION is not a supported option, return nil instead; otherwise return t. */)
2306 (Lisp_Object process, Lisp_Object option, Lisp_Object value, Lisp_Object no_error)
2308 int s;
2309 struct Lisp_Process *p;
2311 CHECK_PROCESS (process);
2312 p = XPROCESS (process);
2313 if (!NETCONN1_P (p))
2314 error ("Process is not a network process");
2316 s = p->infd;
2317 if (s < 0)
2318 error ("Process is not running");
2320 if (set_socket_option (s, option, value))
2322 pset_childp (p, Fplist_put (p->childp, option, value));
2323 return Qt;
2326 if (NILP (no_error))
2327 error ("Unknown or unsupported option");
2329 return Qnil;
2333 DEFUN ("serial-process-configure",
2334 Fserial_process_configure,
2335 Sserial_process_configure,
2336 0, MANY, 0,
2337 doc: /* Configure speed, bytesize, etc. of a serial process.
2339 Arguments are specified as keyword/argument pairs. Attributes that
2340 are not given are re-initialized from the process's current
2341 configuration (available via the function `process-contact') or set to
2342 reasonable default values. The following arguments are defined:
2344 :process PROCESS
2345 :name NAME
2346 :buffer BUFFER
2347 :port PORT
2348 -- Any of these arguments can be given to identify the process that is
2349 to be configured. If none of these arguments is given, the current
2350 buffer's process is used.
2352 :speed SPEED -- SPEED is the speed of the serial port in bits per
2353 second, also called baud rate. Any value can be given for SPEED, but
2354 most serial ports work only at a few defined values between 1200 and
2355 115200, with 9600 being the most common value. If SPEED is nil, the
2356 serial port is not configured any further, i.e., all other arguments
2357 are ignored. This may be useful for special serial ports such as
2358 Bluetooth-to-serial converters which can only be configured through AT
2359 commands. A value of nil for SPEED can be used only when passed
2360 through `make-serial-process' or `serial-term'.
2362 :bytesize BYTESIZE -- BYTESIZE is the number of bits per byte, which
2363 can be 7 or 8. If BYTESIZE is not given or nil, a value of 8 is used.
2365 :parity PARITY -- PARITY can be nil (don't use parity), the symbol
2366 `odd' (use odd parity), or the symbol `even' (use even parity). If
2367 PARITY is not given, no parity is used.
2369 :stopbits STOPBITS -- STOPBITS is the number of stopbits used to
2370 terminate a byte transmission. STOPBITS can be 1 or 2. If STOPBITS
2371 is not given or nil, 1 stopbit is used.
2373 :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2374 flowcontrol to be used, which is either nil (don't use flowcontrol),
2375 the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2376 \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2377 flowcontrol is used.
2379 `serial-process-configure' is called by `make-serial-process' for the
2380 initial configuration of the serial port.
2382 Examples:
2384 \(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2386 \(serial-process-configure
2387 :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw)
2389 \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2391 usage: (serial-process-configure &rest ARGS) */)
2392 (ptrdiff_t nargs, Lisp_Object *args)
2394 struct Lisp_Process *p;
2395 Lisp_Object contact = Qnil;
2396 Lisp_Object proc = Qnil;
2397 struct gcpro gcpro1;
2399 contact = Flist (nargs, args);
2400 GCPRO1 (contact);
2402 proc = Fplist_get (contact, QCprocess);
2403 if (NILP (proc))
2404 proc = Fplist_get (contact, QCname);
2405 if (NILP (proc))
2406 proc = Fplist_get (contact, QCbuffer);
2407 if (NILP (proc))
2408 proc = Fplist_get (contact, QCport);
2409 proc = get_process (proc);
2410 p = XPROCESS (proc);
2411 if (!EQ (p->type, Qserial))
2412 error ("Not a serial process");
2414 if (NILP (Fplist_get (p->childp, QCspeed)))
2416 UNGCPRO;
2417 return Qnil;
2420 serial_configure (p, contact);
2422 UNGCPRO;
2423 return Qnil;
2426 /* Used by make-serial-process to recover from errors. */
2427 static Lisp_Object
2428 make_serial_process_unwind (Lisp_Object proc)
2430 if (!PROCESSP (proc))
2431 emacs_abort ();
2432 remove_process (proc);
2433 return Qnil;
2436 DEFUN ("make-serial-process", Fmake_serial_process, Smake_serial_process,
2437 0, MANY, 0,
2438 doc: /* Create and return a serial port process.
2440 In Emacs, serial port connections are represented by process objects,
2441 so input and output work as for subprocesses, and `delete-process'
2442 closes a serial port connection. However, a serial process has no
2443 process id, it cannot be signaled, and the status codes are different
2444 from normal processes.
2446 `make-serial-process' creates a process and a buffer, on which you
2447 probably want to use `process-send-string'. Try \\[serial-term] for
2448 an interactive terminal. See below for examples.
2450 Arguments are specified as keyword/argument pairs. The following
2451 arguments are defined:
2453 :port PORT -- (mandatory) PORT is the path or name of the serial port.
2454 For example, this could be "/dev/ttyS0" on Unix. On Windows, this
2455 could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
2456 the backslashes in strings).
2458 :speed SPEED -- (mandatory) is handled by `serial-process-configure',
2459 which this function calls.
2461 :name NAME -- NAME is the name of the process. If NAME is not given,
2462 the value of PORT is used.
2464 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2465 with the process. Process output goes at the end of that buffer,
2466 unless you specify an output stream or filter function to handle the
2467 output. If BUFFER is not given, the value of NAME is used.
2469 :coding CODING -- If CODING is a symbol, it specifies the coding
2470 system used for both reading and writing for this process. If CODING
2471 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2472 ENCODING is used for writing.
2474 :noquery BOOL -- When exiting Emacs, query the user if BOOL is nil and
2475 the process is running. If BOOL is not given, query before exiting.
2477 :stop BOOL -- Start process in the `stopped' state if BOOL is non-nil.
2478 In the stopped state, a serial process does not accept incoming data,
2479 but you can send outgoing data. The stopped state is cleared by
2480 `continue-process' and set by `stop-process'.
2482 :filter FILTER -- Install FILTER as the process filter.
2484 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2486 :plist PLIST -- Install PLIST as the initial plist of the process.
2488 :bytesize
2489 :parity
2490 :stopbits
2491 :flowcontrol
2492 -- This function calls `serial-process-configure' to handle these
2493 arguments.
2495 The original argument list, possibly modified by later configuration,
2496 is available via the function `process-contact'.
2498 Examples:
2500 \(make-serial-process :port "/dev/ttyS0" :speed 9600)
2502 \(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2504 \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd)
2506 \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2508 usage: (make-serial-process &rest ARGS) */)
2509 (ptrdiff_t nargs, Lisp_Object *args)
2511 int fd = -1;
2512 Lisp_Object proc, contact, port;
2513 struct Lisp_Process *p;
2514 struct gcpro gcpro1;
2515 Lisp_Object name, buffer;
2516 Lisp_Object tem, val;
2517 ptrdiff_t specpdl_count = -1;
2519 if (nargs == 0)
2520 return Qnil;
2522 contact = Flist (nargs, args);
2523 GCPRO1 (contact);
2525 port = Fplist_get (contact, QCport);
2526 if (NILP (port))
2527 error ("No port specified");
2528 CHECK_STRING (port);
2530 if (NILP (Fplist_member (contact, QCspeed)))
2531 error (":speed not specified");
2532 if (!NILP (Fplist_get (contact, QCspeed)))
2533 CHECK_NUMBER (Fplist_get (contact, QCspeed));
2535 name = Fplist_get (contact, QCname);
2536 if (NILP (name))
2537 name = port;
2538 CHECK_STRING (name);
2539 proc = make_process (name);
2540 specpdl_count = SPECPDL_INDEX ();
2541 record_unwind_protect (make_serial_process_unwind, proc);
2542 p = XPROCESS (proc);
2544 fd = serial_open (SSDATA (port));
2545 p->infd = fd;
2546 p->outfd = fd;
2547 if (fd > max_process_desc)
2548 max_process_desc = fd;
2549 chan_process[fd] = proc;
2551 buffer = Fplist_get (contact, QCbuffer);
2552 if (NILP (buffer))
2553 buffer = name;
2554 buffer = Fget_buffer_create (buffer);
2555 pset_buffer (p, buffer);
2557 pset_childp (p, contact);
2558 pset_plist (p, Fcopy_sequence (Fplist_get (contact, QCplist)));
2559 pset_type (p, Qserial);
2560 pset_sentinel (p, Fplist_get (contact, QCsentinel));
2561 pset_filter (p, Fplist_get (contact, QCfilter));
2562 pset_log (p, Qnil);
2563 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
2564 p->kill_without_query = 1;
2565 if (tem = Fplist_get (contact, QCstop), !NILP (tem))
2566 pset_command (p, Qt);
2567 p->pty_flag = 0;
2569 if (!EQ (p->command, Qt))
2571 FD_SET (fd, &input_wait_mask);
2572 FD_SET (fd, &non_keyboard_wait_mask);
2575 if (BUFFERP (buffer))
2577 set_marker_both (p->mark, buffer,
2578 BUF_ZV (XBUFFER (buffer)),
2579 BUF_ZV_BYTE (XBUFFER (buffer)));
2582 tem = Fplist_member (contact, QCcoding);
2583 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
2584 tem = Qnil;
2586 val = Qnil;
2587 if (!NILP (tem))
2589 val = XCAR (XCDR (tem));
2590 if (CONSP (val))
2591 val = XCAR (val);
2593 else if (!NILP (Vcoding_system_for_read))
2594 val = Vcoding_system_for_read;
2595 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2596 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2597 val = Qnil;
2598 pset_decode_coding_system (p, val);
2600 val = Qnil;
2601 if (!NILP (tem))
2603 val = XCAR (XCDR (tem));
2604 if (CONSP (val))
2605 val = XCDR (val);
2607 else if (!NILP (Vcoding_system_for_write))
2608 val = Vcoding_system_for_write;
2609 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
2610 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
2611 val = Qnil;
2612 pset_encode_coding_system (p, val);
2614 setup_process_coding_systems (proc);
2615 pset_decoding_buf (p, empty_unibyte_string);
2616 p->decoding_carryover = 0;
2617 pset_encoding_buf (p, empty_unibyte_string);
2618 p->inherit_coding_system_flag
2619 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
2621 Fserial_process_configure (nargs, args);
2623 specpdl_ptr = specpdl + specpdl_count;
2625 UNGCPRO;
2626 return proc;
2629 /* Create a network stream/datagram client/server process. Treated
2630 exactly like a normal process when reading and writing. Primary
2631 differences are in status display and process deletion. A network
2632 connection has no PID; you cannot signal it. All you can do is
2633 stop/continue it and deactivate/close it via delete-process */
2635 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
2636 0, MANY, 0,
2637 doc: /* Create and return a network server or client process.
2639 In Emacs, network connections are represented by process objects, so
2640 input and output work as for subprocesses and `delete-process' closes
2641 a network connection. However, a network process has no process id,
2642 it cannot be signaled, and the status codes are different from normal
2643 processes.
2645 Arguments are specified as keyword/argument pairs. The following
2646 arguments are defined:
2648 :name NAME -- NAME is name for process. It is modified if necessary
2649 to make it unique.
2651 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2652 with the process. Process output goes at end of that buffer, unless
2653 you specify an output stream or filter function to handle the output.
2654 BUFFER may be also nil, meaning that this process is not associated
2655 with any buffer.
2657 :host HOST -- HOST is name of the host to connect to, or its IP
2658 address. The symbol `local' specifies the local host. If specified
2659 for a server process, it must be a valid name or address for the local
2660 host, and only clients connecting to that address will be accepted.
2662 :service SERVICE -- SERVICE is name of the service desired, or an
2663 integer specifying a port number to connect to. If SERVICE is t,
2664 a random port number is selected for the server. (If Emacs was
2665 compiled with getaddrinfo, a port number can also be specified as a
2666 string, e.g. "80", as well as an integer. This is not portable.)
2668 :type TYPE -- TYPE is the type of connection. The default (nil) is a
2669 stream type connection, `datagram' creates a datagram type connection,
2670 `seqpacket' creates a reliable datagram connection.
2672 :family FAMILY -- FAMILY is the address (and protocol) family for the
2673 service specified by HOST and SERVICE. The default (nil) is to use
2674 whatever address family (IPv4 or IPv6) that is defined for the host
2675 and port number specified by HOST and SERVICE. Other address families
2676 supported are:
2677 local -- for a local (i.e. UNIX) address specified by SERVICE.
2678 ipv4 -- use IPv4 address family only.
2679 ipv6 -- use IPv6 address family only.
2681 :local ADDRESS -- ADDRESS is the local address used for the connection.
2682 This parameter is ignored when opening a client process. When specified
2683 for a server process, the FAMILY, HOST and SERVICE args are ignored.
2685 :remote ADDRESS -- ADDRESS is the remote partner's address for the
2686 connection. This parameter is ignored when opening a stream server
2687 process. For a datagram server process, it specifies the initial
2688 setting of the remote datagram address. When specified for a client
2689 process, the FAMILY, HOST, and SERVICE args are ignored.
2691 The format of ADDRESS depends on the address family:
2692 - An IPv4 address is represented as an vector of integers [A B C D P]
2693 corresponding to numeric IP address A.B.C.D and port number P.
2694 - A local address is represented as a string with the address in the
2695 local address space.
2696 - An "unsupported family" address is represented by a cons (F . AV)
2697 where F is the family number and AV is a vector containing the socket
2698 address data with one element per address data byte. Do not rely on
2699 this format in portable code, as it may depend on implementation
2700 defined constants, data sizes, and data structure alignment.
2702 :coding CODING -- If CODING is a symbol, it specifies the coding
2703 system used for both reading and writing for this process. If CODING
2704 is a cons (DECODING . ENCODING), DECODING is used for reading, and
2705 ENCODING is used for writing.
2707 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
2708 return without waiting for the connection to complete; instead, the
2709 sentinel function will be called with second arg matching "open" (if
2710 successful) or "failed" when the connect completes. Default is to use
2711 a blocking connect (i.e. wait) for stream type connections.
2713 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
2714 running when Emacs is exited.
2716 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
2717 In the stopped state, a server process does not accept new
2718 connections, and a client process does not handle incoming traffic.
2719 The stopped state is cleared by `continue-process' and set by
2720 `stop-process'.
2722 :filter FILTER -- Install FILTER as the process filter.
2724 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
2725 process filter are multibyte, otherwise they are unibyte.
2726 If this keyword is not specified, the strings are multibyte if
2727 the default value of `enable-multibyte-characters' is non-nil.
2729 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
2731 :log LOG -- Install LOG as the server process log function. This
2732 function is called when the server accepts a network connection from a
2733 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
2734 is the server process, CLIENT is the new process for the connection,
2735 and MESSAGE is a string.
2737 :plist PLIST -- Install PLIST as the new process' initial plist.
2739 :server QLEN -- if QLEN is non-nil, create a server process for the
2740 specified FAMILY, SERVICE, and connection type (stream or datagram).
2741 If QLEN is an integer, it is used as the max. length of the server's
2742 pending connection queue (also known as the backlog); the default
2743 queue length is 5. Default is to create a client process.
2745 The following network options can be specified for this connection:
2747 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
2748 :dontroute BOOL -- Only send to directly connected hosts.
2749 :keepalive BOOL -- Send keep-alive messages on network stream.
2750 :linger BOOL or TIMEOUT -- Send queued messages before closing.
2751 :oobinline BOOL -- Place out-of-band data in receive data stream.
2752 :priority INT -- Set protocol defined priority for sent packets.
2753 :reuseaddr BOOL -- Allow reusing a recently used local address
2754 (this is allowed by default for a server process).
2755 :bindtodevice NAME -- bind to interface NAME. Using this may require
2756 special privileges on some systems.
2758 Consult the relevant system programmer's manual pages for more
2759 information on using these options.
2762 A server process will listen for and accept connections from clients.
2763 When a client connection is accepted, a new network process is created
2764 for the connection with the following parameters:
2766 - The client's process name is constructed by concatenating the server
2767 process' NAME and a client identification string.
2768 - If the FILTER argument is non-nil, the client process will not get a
2769 separate process buffer; otherwise, the client's process buffer is a newly
2770 created buffer named after the server process' BUFFER name or process
2771 NAME concatenated with the client identification string.
2772 - The connection type and the process filter and sentinel parameters are
2773 inherited from the server process' TYPE, FILTER and SENTINEL.
2774 - The client process' contact info is set according to the client's
2775 addressing information (typically an IP address and a port number).
2776 - The client process' plist is initialized from the server's plist.
2778 Notice that the FILTER and SENTINEL args are never used directly by
2779 the server process. Also, the BUFFER argument is not used directly by
2780 the server process, but via the optional :log function, accepted (and
2781 failed) connections may be logged in the server process' buffer.
2783 The original argument list, modified with the actual connection
2784 information, is available via the `process-contact' function.
2786 usage: (make-network-process &rest ARGS) */)
2787 (ptrdiff_t nargs, Lisp_Object *args)
2789 Lisp_Object proc;
2790 Lisp_Object contact;
2791 struct Lisp_Process *p;
2792 #ifdef HAVE_GETADDRINFO
2793 struct addrinfo ai, *res, *lres;
2794 struct addrinfo hints;
2795 const char *portstring;
2796 char portbuf[128];
2797 #else /* HAVE_GETADDRINFO */
2798 struct _emacs_addrinfo
2800 int ai_family;
2801 int ai_socktype;
2802 int ai_protocol;
2803 int ai_addrlen;
2804 struct sockaddr *ai_addr;
2805 struct _emacs_addrinfo *ai_next;
2806 } ai, *res, *lres;
2807 #endif /* HAVE_GETADDRINFO */
2808 struct sockaddr_in address_in;
2809 #ifdef HAVE_LOCAL_SOCKETS
2810 struct sockaddr_un address_un;
2811 #endif
2812 int port;
2813 int ret = 0;
2814 int xerrno = 0;
2815 int s = -1, outch, inch;
2816 struct gcpro gcpro1;
2817 ptrdiff_t count = SPECPDL_INDEX ();
2818 ptrdiff_t count1;
2819 Lisp_Object QCaddress; /* one of QClocal or QCremote */
2820 Lisp_Object tem;
2821 Lisp_Object name, buffer, host, service, address;
2822 Lisp_Object filter, sentinel;
2823 bool is_non_blocking_client = 0;
2824 bool is_server = 0;
2825 int backlog = 5;
2826 int socktype;
2827 int family = -1;
2829 if (nargs == 0)
2830 return Qnil;
2832 /* Save arguments for process-contact and clone-process. */
2833 contact = Flist (nargs, args);
2834 GCPRO1 (contact);
2836 #ifdef WINDOWSNT
2837 /* Ensure socket support is loaded if available. */
2838 init_winsock (TRUE);
2839 #endif
2841 /* :type TYPE (nil: stream, datagram */
2842 tem = Fplist_get (contact, QCtype);
2843 if (NILP (tem))
2844 socktype = SOCK_STREAM;
2845 #ifdef DATAGRAM_SOCKETS
2846 else if (EQ (tem, Qdatagram))
2847 socktype = SOCK_DGRAM;
2848 #endif
2849 #ifdef HAVE_SEQPACKET
2850 else if (EQ (tem, Qseqpacket))
2851 socktype = SOCK_SEQPACKET;
2852 #endif
2853 else
2854 error ("Unsupported connection type");
2856 /* :server BOOL */
2857 tem = Fplist_get (contact, QCserver);
2858 if (!NILP (tem))
2860 /* Don't support network sockets when non-blocking mode is
2861 not available, since a blocked Emacs is not useful. */
2862 is_server = 1;
2863 if (TYPE_RANGED_INTEGERP (int, tem))
2864 backlog = XINT (tem);
2867 /* Make QCaddress an alias for :local (server) or :remote (client). */
2868 QCaddress = is_server ? QClocal : QCremote;
2870 /* :nowait BOOL */
2871 if (!is_server && socktype != SOCK_DGRAM
2872 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2874 #ifndef NON_BLOCKING_CONNECT
2875 error ("Non-blocking connect not supported");
2876 #else
2877 is_non_blocking_client = 1;
2878 #endif
2881 name = Fplist_get (contact, QCname);
2882 buffer = Fplist_get (contact, QCbuffer);
2883 filter = Fplist_get (contact, QCfilter);
2884 sentinel = Fplist_get (contact, QCsentinel);
2886 CHECK_STRING (name);
2888 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
2889 ai.ai_socktype = socktype;
2890 ai.ai_protocol = 0;
2891 ai.ai_next = NULL;
2892 res = &ai;
2894 /* :local ADDRESS or :remote ADDRESS */
2895 address = Fplist_get (contact, QCaddress);
2896 if (!NILP (address))
2898 host = service = Qnil;
2900 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
2901 error ("Malformed :address");
2902 ai.ai_family = family;
2903 ai.ai_addr = alloca (ai.ai_addrlen);
2904 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
2905 goto open_socket;
2908 /* :family FAMILY -- nil (for Inet), local, or integer. */
2909 tem = Fplist_get (contact, QCfamily);
2910 if (NILP (tem))
2912 #if defined (HAVE_GETADDRINFO) && defined (AF_INET6)
2913 family = AF_UNSPEC;
2914 #else
2915 family = AF_INET;
2916 #endif
2918 #ifdef HAVE_LOCAL_SOCKETS
2919 else if (EQ (tem, Qlocal))
2920 family = AF_LOCAL;
2921 #endif
2922 #ifdef AF_INET6
2923 else if (EQ (tem, Qipv6))
2924 family = AF_INET6;
2925 #endif
2926 else if (EQ (tem, Qipv4))
2927 family = AF_INET;
2928 else if (TYPE_RANGED_INTEGERP (int, tem))
2929 family = XINT (tem);
2930 else
2931 error ("Unknown address family");
2933 ai.ai_family = family;
2935 /* :service SERVICE -- string, integer (port number), or t (random port). */
2936 service = Fplist_get (contact, QCservice);
2938 /* :host HOST -- hostname, ip address, or 'local for localhost. */
2939 host = Fplist_get (contact, QChost);
2940 if (!NILP (host))
2942 if (EQ (host, Qlocal))
2943 /* Depending on setup, "localhost" may map to different IPv4 and/or
2944 IPv6 addresses, so it's better to be explicit. (Bug#6781) */
2945 host = build_string ("127.0.0.1");
2946 CHECK_STRING (host);
2949 #ifdef HAVE_LOCAL_SOCKETS
2950 if (family == AF_LOCAL)
2952 if (!NILP (host))
2954 message (":family local ignores the :host \"%s\" property",
2955 SDATA (host));
2956 contact = Fplist_put (contact, QChost, Qnil);
2957 host = Qnil;
2959 CHECK_STRING (service);
2960 memset (&address_un, 0, sizeof address_un);
2961 address_un.sun_family = AF_LOCAL;
2962 if (sizeof address_un.sun_path <= SBYTES (service))
2963 error ("Service name too long");
2964 strcpy (address_un.sun_path, SSDATA (service));
2965 ai.ai_addr = (struct sockaddr *) &address_un;
2966 ai.ai_addrlen = sizeof address_un;
2967 goto open_socket;
2969 #endif
2971 /* Slow down polling to every ten seconds.
2972 Some kernels have a bug which causes retrying connect to fail
2973 after a connect. Polling can interfere with gethostbyname too. */
2974 #ifdef POLL_FOR_INPUT
2975 if (socktype != SOCK_DGRAM)
2977 record_unwind_protect (unwind_stop_other_atimers, Qnil);
2978 bind_polling_period (10);
2980 #endif
2982 #ifdef HAVE_GETADDRINFO
2983 /* If we have a host, use getaddrinfo to resolve both host and service.
2984 Otherwise, use getservbyname to lookup the service. */
2985 if (!NILP (host))
2988 /* SERVICE can either be a string or int.
2989 Convert to a C string for later use by getaddrinfo. */
2990 if (EQ (service, Qt))
2991 portstring = "0";
2992 else if (INTEGERP (service))
2994 sprintf (portbuf, "%"pI"d", XINT (service));
2995 portstring = portbuf;
2997 else
2999 CHECK_STRING (service);
3000 portstring = SSDATA (service);
3003 immediate_quit = 1;
3004 QUIT;
3005 memset (&hints, 0, sizeof (hints));
3006 hints.ai_flags = 0;
3007 hints.ai_family = family;
3008 hints.ai_socktype = socktype;
3009 hints.ai_protocol = 0;
3011 #ifdef HAVE_RES_INIT
3012 res_init ();
3013 #endif
3015 ret = getaddrinfo (SSDATA (host), portstring, &hints, &res);
3016 if (ret)
3017 #ifdef HAVE_GAI_STRERROR
3018 error ("%s/%s %s", SSDATA (host), portstring, gai_strerror (ret));
3019 #else
3020 error ("%s/%s getaddrinfo error %d", SSDATA (host), portstring, ret);
3021 #endif
3022 immediate_quit = 0;
3024 goto open_socket;
3026 #endif /* HAVE_GETADDRINFO */
3028 /* We end up here if getaddrinfo is not defined, or in case no hostname
3029 has been specified (e.g. for a local server process). */
3031 if (EQ (service, Qt))
3032 port = 0;
3033 else if (INTEGERP (service))
3034 port = htons ((unsigned short) XINT (service));
3035 else
3037 struct servent *svc_info;
3038 CHECK_STRING (service);
3039 svc_info = getservbyname (SSDATA (service),
3040 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
3041 if (svc_info == 0)
3042 error ("Unknown service: %s", SDATA (service));
3043 port = svc_info->s_port;
3046 memset (&address_in, 0, sizeof address_in);
3047 address_in.sin_family = family;
3048 address_in.sin_addr.s_addr = INADDR_ANY;
3049 address_in.sin_port = port;
3051 #ifndef HAVE_GETADDRINFO
3052 if (!NILP (host))
3054 struct hostent *host_info_ptr;
3056 /* gethostbyname may fail with TRY_AGAIN, but we don't honor that,
3057 as it may `hang' Emacs for a very long time. */
3058 immediate_quit = 1;
3059 QUIT;
3061 #ifdef HAVE_RES_INIT
3062 res_init ();
3063 #endif
3065 host_info_ptr = gethostbyname (SDATA (host));
3066 immediate_quit = 0;
3068 if (host_info_ptr)
3070 memcpy (&address_in.sin_addr, host_info_ptr->h_addr,
3071 host_info_ptr->h_length);
3072 family = host_info_ptr->h_addrtype;
3073 address_in.sin_family = family;
3075 else
3076 /* Attempt to interpret host as numeric inet address */
3078 unsigned long numeric_addr;
3079 numeric_addr = inet_addr (SSDATA (host));
3080 if (numeric_addr == -1)
3081 error ("Unknown host \"%s\"", SDATA (host));
3083 memcpy (&address_in.sin_addr, &numeric_addr,
3084 sizeof (address_in.sin_addr));
3088 #endif /* not HAVE_GETADDRINFO */
3090 ai.ai_family = family;
3091 ai.ai_addr = (struct sockaddr *) &address_in;
3092 ai.ai_addrlen = sizeof address_in;
3094 open_socket:
3096 /* Do this in case we never enter the for-loop below. */
3097 count1 = SPECPDL_INDEX ();
3098 s = -1;
3100 for (lres = res; lres; lres = lres->ai_next)
3102 ptrdiff_t optn;
3103 int optbits;
3105 #ifdef WINDOWSNT
3106 retry_connect:
3107 #endif
3109 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
3110 if (s < 0)
3112 xerrno = errno;
3113 continue;
3116 #ifdef DATAGRAM_SOCKETS
3117 if (!is_server && socktype == SOCK_DGRAM)
3118 break;
3119 #endif /* DATAGRAM_SOCKETS */
3121 #ifdef NON_BLOCKING_CONNECT
3122 if (is_non_blocking_client)
3124 ret = fcntl (s, F_SETFL, O_NONBLOCK);
3125 if (ret < 0)
3127 xerrno = errno;
3128 emacs_close (s);
3129 s = -1;
3130 continue;
3133 #endif
3135 /* Make us close S if quit. */
3136 record_unwind_protect (close_file_unwind, make_number (s));
3138 /* Parse network options in the arg list.
3139 We simply ignore anything which isn't a known option (including other keywords).
3140 An error is signaled if setting a known option fails. */
3141 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3142 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3144 if (is_server)
3146 /* Configure as a server socket. */
3148 /* SO_REUSEADDR = 1 is default for server sockets; must specify
3149 explicit :reuseaddr key to override this. */
3150 #ifdef HAVE_LOCAL_SOCKETS
3151 if (family != AF_LOCAL)
3152 #endif
3153 if (!(optbits & (1 << OPIX_REUSEADDR)))
3155 int optval = 1;
3156 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
3157 report_file_error ("Cannot set reuse option on server socket", Qnil);
3160 if (bind (s, lres->ai_addr, lres->ai_addrlen))
3161 report_file_error ("Cannot bind server socket", Qnil);
3163 #ifdef HAVE_GETSOCKNAME
3164 if (EQ (service, Qt))
3166 struct sockaddr_in sa1;
3167 socklen_t len1 = sizeof (sa1);
3168 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3170 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
3171 service = make_number (ntohs (sa1.sin_port));
3172 contact = Fplist_put (contact, QCservice, service);
3175 #endif
3177 if (socktype != SOCK_DGRAM && listen (s, backlog))
3178 report_file_error ("Cannot listen on server socket", Qnil);
3180 break;
3183 immediate_quit = 1;
3184 QUIT;
3186 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
3187 xerrno = errno;
3189 if (ret == 0 || xerrno == EISCONN)
3191 /* The unwind-protect will be discarded afterwards.
3192 Likewise for immediate_quit. */
3193 break;
3196 #ifdef NON_BLOCKING_CONNECT
3197 #ifdef EINPROGRESS
3198 if (is_non_blocking_client && xerrno == EINPROGRESS)
3199 break;
3200 #else
3201 #ifdef EWOULDBLOCK
3202 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
3203 break;
3204 #endif
3205 #endif
3206 #endif
3208 #ifndef WINDOWSNT
3209 if (xerrno == EINTR)
3211 /* Unlike most other syscalls connect() cannot be called
3212 again. (That would return EALREADY.) The proper way to
3213 wait for completion is pselect(). */
3214 int sc;
3215 socklen_t len;
3216 SELECT_TYPE fdset;
3217 retry_select:
3218 FD_ZERO (&fdset);
3219 FD_SET (s, &fdset);
3220 QUIT;
3221 sc = pselect (s + 1, NULL, &fdset, NULL, NULL, NULL);
3222 if (sc == -1)
3224 if (errno == EINTR)
3225 goto retry_select;
3226 else
3227 report_file_error ("select failed", Qnil);
3229 eassert (sc > 0);
3231 len = sizeof xerrno;
3232 eassert (FD_ISSET (s, &fdset));
3233 if (getsockopt (s, SOL_SOCKET, SO_ERROR, &xerrno, &len) == -1)
3234 report_file_error ("getsockopt failed", Qnil);
3235 if (xerrno)
3236 errno = xerrno, report_file_error ("error during connect", Qnil);
3237 else
3238 break;
3240 #endif /* !WINDOWSNT */
3242 immediate_quit = 0;
3244 /* Discard the unwind protect closing S. */
3245 specpdl_ptr = specpdl + count1;
3246 emacs_close (s);
3247 s = -1;
3249 #ifdef WINDOWSNT
3250 if (xerrno == EINTR)
3251 goto retry_connect;
3252 #endif
3255 if (s >= 0)
3257 #ifdef DATAGRAM_SOCKETS
3258 if (socktype == SOCK_DGRAM)
3260 if (datagram_address[s].sa)
3261 emacs_abort ();
3262 datagram_address[s].sa = xmalloc (lres->ai_addrlen);
3263 datagram_address[s].len = lres->ai_addrlen;
3264 if (is_server)
3266 Lisp_Object remote;
3267 memset (datagram_address[s].sa, 0, lres->ai_addrlen);
3268 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
3270 int rfamily, rlen;
3271 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
3272 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
3273 conv_lisp_to_sockaddr (rfamily, remote,
3274 datagram_address[s].sa, rlen);
3277 else
3278 memcpy (datagram_address[s].sa, lres->ai_addr, lres->ai_addrlen);
3280 #endif
3281 contact = Fplist_put (contact, QCaddress,
3282 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
3283 #ifdef HAVE_GETSOCKNAME
3284 if (!is_server)
3286 struct sockaddr_in sa1;
3287 socklen_t len1 = sizeof (sa1);
3288 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
3289 contact = Fplist_put (contact, QClocal,
3290 conv_sockaddr_to_lisp ((struct sockaddr *)&sa1, len1));
3292 #endif
3295 immediate_quit = 0;
3297 #ifdef HAVE_GETADDRINFO
3298 if (res != &ai)
3300 block_input ();
3301 freeaddrinfo (res);
3302 unblock_input ();
3304 #endif
3306 /* Discard the unwind protect for closing S, if any. */
3307 specpdl_ptr = specpdl + count1;
3309 /* Unwind bind_polling_period and request_sigio. */
3310 unbind_to (count, Qnil);
3312 if (s < 0)
3314 /* If non-blocking got this far - and failed - assume non-blocking is
3315 not supported after all. This is probably a wrong assumption, but
3316 the normal blocking calls to open-network-stream handles this error
3317 better. */
3318 if (is_non_blocking_client)
3319 return Qnil;
3321 errno = xerrno;
3322 if (is_server)
3323 report_file_error ("make server process failed", contact);
3324 else
3325 report_file_error ("make client process failed", contact);
3328 inch = s;
3329 outch = s;
3331 if (!NILP (buffer))
3332 buffer = Fget_buffer_create (buffer);
3333 proc = make_process (name);
3335 chan_process[inch] = proc;
3337 fcntl (inch, F_SETFL, O_NONBLOCK);
3339 p = XPROCESS (proc);
3341 pset_childp (p, contact);
3342 pset_plist (p, Fcopy_sequence (Fplist_get (contact, QCplist)));
3343 pset_type (p, Qnetwork);
3345 pset_buffer (p, buffer);
3346 pset_sentinel (p, sentinel);
3347 pset_filter (p, filter);
3348 pset_log (p, Fplist_get (contact, QClog));
3349 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
3350 p->kill_without_query = 1;
3351 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
3352 pset_command (p, Qt);
3353 p->pid = 0;
3354 p->infd = inch;
3355 p->outfd = outch;
3356 if (is_server && socktype != SOCK_DGRAM)
3357 pset_status (p, Qlisten);
3359 /* Make the process marker point into the process buffer (if any). */
3360 if (BUFFERP (buffer))
3361 set_marker_both (p->mark, buffer,
3362 BUF_ZV (XBUFFER (buffer)),
3363 BUF_ZV_BYTE (XBUFFER (buffer)));
3365 #ifdef NON_BLOCKING_CONNECT
3366 if (is_non_blocking_client)
3368 /* We may get here if connect did succeed immediately. However,
3369 in that case, we still need to signal this like a non-blocking
3370 connection. */
3371 pset_status (p, Qconnect);
3372 if (!FD_ISSET (inch, &connect_wait_mask))
3374 FD_SET (inch, &connect_wait_mask);
3375 FD_SET (inch, &write_mask);
3376 num_pending_connects++;
3379 else
3380 #endif
3381 /* A server may have a client filter setting of Qt, but it must
3382 still listen for incoming connects unless it is stopped. */
3383 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
3384 || (EQ (p->status, Qlisten) && NILP (p->command)))
3386 FD_SET (inch, &input_wait_mask);
3387 FD_SET (inch, &non_keyboard_wait_mask);
3390 if (inch > max_process_desc)
3391 max_process_desc = inch;
3393 tem = Fplist_member (contact, QCcoding);
3394 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
3395 tem = Qnil; /* No error message (too late!). */
3398 /* Setup coding systems for communicating with the network stream. */
3399 struct gcpro gcpro1;
3400 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
3401 Lisp_Object coding_systems = Qt;
3402 Lisp_Object fargs[5], val;
3404 if (!NILP (tem))
3406 val = XCAR (XCDR (tem));
3407 if (CONSP (val))
3408 val = XCAR (val);
3410 else if (!NILP (Vcoding_system_for_read))
3411 val = Vcoding_system_for_read;
3412 else if ((!NILP (buffer) && NILP (BVAR (XBUFFER (buffer), enable_multibyte_characters)))
3413 || (NILP (buffer) && NILP (BVAR (&buffer_defaults, enable_multibyte_characters))))
3414 /* We dare not decode end-of-line format by setting VAL to
3415 Qraw_text, because the existing Emacs Lisp libraries
3416 assume that they receive bare code including a sequence of
3417 CR LF. */
3418 val = Qnil;
3419 else
3421 if (NILP (host) || NILP (service))
3422 coding_systems = Qnil;
3423 else
3425 fargs[0] = Qopen_network_stream, fargs[1] = name,
3426 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3427 GCPRO1 (proc);
3428 coding_systems = Ffind_operation_coding_system (5, fargs);
3429 UNGCPRO;
3431 if (CONSP (coding_systems))
3432 val = XCAR (coding_systems);
3433 else if (CONSP (Vdefault_process_coding_system))
3434 val = XCAR (Vdefault_process_coding_system);
3435 else
3436 val = Qnil;
3438 pset_decode_coding_system (p, val);
3440 if (!NILP (tem))
3442 val = XCAR (XCDR (tem));
3443 if (CONSP (val))
3444 val = XCDR (val);
3446 else if (!NILP (Vcoding_system_for_write))
3447 val = Vcoding_system_for_write;
3448 else if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3449 val = Qnil;
3450 else
3452 if (EQ (coding_systems, Qt))
3454 if (NILP (host) || NILP (service))
3455 coding_systems = Qnil;
3456 else
3458 fargs[0] = Qopen_network_stream, fargs[1] = name,
3459 fargs[2] = buffer, fargs[3] = host, fargs[4] = service;
3460 GCPRO1 (proc);
3461 coding_systems = Ffind_operation_coding_system (5, fargs);
3462 UNGCPRO;
3465 if (CONSP (coding_systems))
3466 val = XCDR (coding_systems);
3467 else if (CONSP (Vdefault_process_coding_system))
3468 val = XCDR (Vdefault_process_coding_system);
3469 else
3470 val = Qnil;
3472 pset_encode_coding_system (p, val);
3474 setup_process_coding_systems (proc);
3476 pset_decoding_buf (p, empty_unibyte_string);
3477 p->decoding_carryover = 0;
3478 pset_encoding_buf (p, empty_unibyte_string);
3480 p->inherit_coding_system_flag
3481 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3483 UNGCPRO;
3484 return proc;
3488 #if defined (HAVE_NET_IF_H)
3490 #ifdef SIOCGIFCONF
3491 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
3492 doc: /* Return an alist of all network interfaces and their network address.
3493 Each element is a cons, the car of which is a string containing the
3494 interface name, and the cdr is the network address in internal
3495 format; see the description of ADDRESS in `make-network-process'. */)
3496 (void)
3498 struct ifconf ifconf;
3499 struct ifreq *ifreq;
3500 void *buf = NULL;
3501 ptrdiff_t buf_size = 512;
3502 int s;
3503 Lisp_Object res;
3505 s = socket (AF_INET, SOCK_STREAM, 0);
3506 if (s < 0)
3507 return Qnil;
3511 buf = xpalloc (buf, &buf_size, 1, INT_MAX, 1);
3512 ifconf.ifc_buf = buf;
3513 ifconf.ifc_len = buf_size;
3514 if (ioctl (s, SIOCGIFCONF, &ifconf))
3516 close (s);
3517 xfree (buf);
3518 return Qnil;
3521 while (ifconf.ifc_len == buf_size);
3523 close (s);
3525 res = Qnil;
3526 ifreq = ifconf.ifc_req;
3527 while ((char *) ifreq < (char *) ifconf.ifc_req + ifconf.ifc_len)
3529 struct ifreq *ifq = ifreq;
3530 #ifdef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
3531 #define SIZEOF_IFREQ(sif) \
3532 ((sif)->ifr_addr.sa_len < sizeof (struct sockaddr) \
3533 ? sizeof (*(sif)) : sizeof ((sif)->ifr_name) + (sif)->ifr_addr.sa_len)
3535 int len = SIZEOF_IFREQ (ifq);
3536 #else
3537 int len = sizeof (*ifreq);
3538 #endif
3539 char namebuf[sizeof (ifq->ifr_name) + 1];
3540 ifreq = (struct ifreq *) ((char *) ifreq + len);
3542 if (ifq->ifr_addr.sa_family != AF_INET)
3543 continue;
3545 memcpy (namebuf, ifq->ifr_name, sizeof (ifq->ifr_name));
3546 namebuf[sizeof (ifq->ifr_name)] = 0;
3547 res = Fcons (Fcons (build_string (namebuf),
3548 conv_sockaddr_to_lisp (&ifq->ifr_addr,
3549 sizeof (struct sockaddr))),
3550 res);
3553 xfree (buf);
3554 return res;
3556 #endif /* SIOCGIFCONF */
3558 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
3560 struct ifflag_def {
3561 int flag_bit;
3562 const char *flag_sym;
3565 static const struct ifflag_def ifflag_table[] = {
3566 #ifdef IFF_UP
3567 { IFF_UP, "up" },
3568 #endif
3569 #ifdef IFF_BROADCAST
3570 { IFF_BROADCAST, "broadcast" },
3571 #endif
3572 #ifdef IFF_DEBUG
3573 { IFF_DEBUG, "debug" },
3574 #endif
3575 #ifdef IFF_LOOPBACK
3576 { IFF_LOOPBACK, "loopback" },
3577 #endif
3578 #ifdef IFF_POINTOPOINT
3579 { IFF_POINTOPOINT, "pointopoint" },
3580 #endif
3581 #ifdef IFF_RUNNING
3582 { IFF_RUNNING, "running" },
3583 #endif
3584 #ifdef IFF_NOARP
3585 { IFF_NOARP, "noarp" },
3586 #endif
3587 #ifdef IFF_PROMISC
3588 { IFF_PROMISC, "promisc" },
3589 #endif
3590 #ifdef IFF_NOTRAILERS
3591 #ifdef NS_IMPL_COCOA
3592 /* Really means smart, notrailers is obsolete */
3593 { IFF_NOTRAILERS, "smart" },
3594 #else
3595 { IFF_NOTRAILERS, "notrailers" },
3596 #endif
3597 #endif
3598 #ifdef IFF_ALLMULTI
3599 { IFF_ALLMULTI, "allmulti" },
3600 #endif
3601 #ifdef IFF_MASTER
3602 { IFF_MASTER, "master" },
3603 #endif
3604 #ifdef IFF_SLAVE
3605 { IFF_SLAVE, "slave" },
3606 #endif
3607 #ifdef IFF_MULTICAST
3608 { IFF_MULTICAST, "multicast" },
3609 #endif
3610 #ifdef IFF_PORTSEL
3611 { IFF_PORTSEL, "portsel" },
3612 #endif
3613 #ifdef IFF_AUTOMEDIA
3614 { IFF_AUTOMEDIA, "automedia" },
3615 #endif
3616 #ifdef IFF_DYNAMIC
3617 { IFF_DYNAMIC, "dynamic" },
3618 #endif
3619 #ifdef IFF_OACTIVE
3620 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
3621 #endif
3622 #ifdef IFF_SIMPLEX
3623 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
3624 #endif
3625 #ifdef IFF_LINK0
3626 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
3627 #endif
3628 #ifdef IFF_LINK1
3629 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
3630 #endif
3631 #ifdef IFF_LINK2
3632 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
3633 #endif
3634 { 0, 0 }
3637 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
3638 doc: /* Return information about network interface named IFNAME.
3639 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
3640 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
3641 NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and
3642 FLAGS is the current flags of the interface. */)
3643 (Lisp_Object ifname)
3645 struct ifreq rq;
3646 Lisp_Object res = Qnil;
3647 Lisp_Object elt;
3648 int s;
3649 bool any = 0;
3650 #if (! (defined SIOCGIFHWADDR && defined HAVE_STRUCT_IFREQ_IFR_HWADDR) \
3651 && defined HAVE_GETIFADDRS && defined LLADDR)
3652 struct ifaddrs *ifap;
3653 #endif
3655 CHECK_STRING (ifname);
3657 if (sizeof rq.ifr_name <= SBYTES (ifname))
3658 error ("interface name too long");
3659 strcpy (rq.ifr_name, SSDATA (ifname));
3661 s = socket (AF_INET, SOCK_STREAM, 0);
3662 if (s < 0)
3663 return Qnil;
3665 elt = Qnil;
3666 #if defined (SIOCGIFFLAGS) && defined (HAVE_STRUCT_IFREQ_IFR_FLAGS)
3667 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
3669 int flags = rq.ifr_flags;
3670 const struct ifflag_def *fp;
3671 int fnum;
3673 /* If flags is smaller than int (i.e. short) it may have the high bit set
3674 due to IFF_MULTICAST. In that case, sign extending it into
3675 an int is wrong. */
3676 if (flags < 0 && sizeof (rq.ifr_flags) < sizeof (flags))
3677 flags = (unsigned short) rq.ifr_flags;
3679 any = 1;
3680 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
3682 if (flags & fp->flag_bit)
3684 elt = Fcons (intern (fp->flag_sym), elt);
3685 flags -= fp->flag_bit;
3688 for (fnum = 0; flags && fnum < 32; flags >>= 1, fnum++)
3690 if (flags & 1)
3692 elt = Fcons (make_number (fnum), elt);
3696 #endif
3697 res = Fcons (elt, res);
3699 elt = Qnil;
3700 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
3701 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
3703 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3704 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3705 int n;
3707 any = 1;
3708 for (n = 0; n < 6; n++)
3709 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
3710 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
3712 #elif defined (HAVE_GETIFADDRS) && defined (LLADDR)
3713 if (getifaddrs (&ifap) != -1)
3715 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
3716 register struct Lisp_Vector *p = XVECTOR (hwaddr);
3717 struct ifaddrs *it;
3719 for (it = ifap; it != NULL; it = it->ifa_next)
3721 struct sockaddr_dl *sdl = (struct sockaddr_dl*) it->ifa_addr;
3722 unsigned char linkaddr[6];
3723 int n;
3725 if (it->ifa_addr->sa_family != AF_LINK
3726 || strcmp (it->ifa_name, SSDATA (ifname)) != 0
3727 || sdl->sdl_alen != 6)
3728 continue;
3730 memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen);
3731 for (n = 0; n < 6; n++)
3732 p->contents[n] = make_number (linkaddr[n]);
3734 elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr);
3735 break;
3738 #ifdef HAVE_FREEIFADDRS
3739 freeifaddrs (ifap);
3740 #endif
3742 #endif /* HAVE_GETIFADDRS && LLADDR */
3744 res = Fcons (elt, res);
3746 elt = Qnil;
3747 #if defined (SIOCGIFNETMASK) && (defined (HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined (HAVE_STRUCT_IFREQ_IFR_ADDR))
3748 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
3750 any = 1;
3751 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
3752 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
3753 #else
3754 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3755 #endif
3757 #endif
3758 res = Fcons (elt, res);
3760 elt = Qnil;
3761 #if defined (SIOCGIFBRDADDR) && defined (HAVE_STRUCT_IFREQ_IFR_BROADADDR)
3762 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
3764 any = 1;
3765 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
3767 #endif
3768 res = Fcons (elt, res);
3770 elt = Qnil;
3771 #if defined (SIOCGIFADDR) && defined (HAVE_STRUCT_IFREQ_IFR_ADDR)
3772 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
3774 any = 1;
3775 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
3777 #endif
3778 res = Fcons (elt, res);
3780 close (s);
3782 return any ? res : Qnil;
3784 #endif
3785 #endif /* defined (HAVE_NET_IF_H) */
3787 /* Turn off input and output for process PROC. */
3789 static void
3790 deactivate_process (Lisp_Object proc)
3792 register int inchannel, outchannel;
3793 register struct Lisp_Process *p = XPROCESS (proc);
3795 #ifdef HAVE_GNUTLS
3796 /* Delete GnuTLS structures in PROC, if any. */
3797 emacs_gnutls_deinit (proc);
3798 #endif /* HAVE_GNUTLS */
3800 inchannel = p->infd;
3801 outchannel = p->outfd;
3803 #ifdef ADAPTIVE_READ_BUFFERING
3804 if (p->read_output_delay > 0)
3806 if (--process_output_delay_count < 0)
3807 process_output_delay_count = 0;
3808 p->read_output_delay = 0;
3809 p->read_output_skip = 0;
3811 #endif
3813 if (inchannel >= 0)
3815 /* Beware SIGCHLD hereabouts. */
3816 flush_pending_output (inchannel);
3817 emacs_close (inchannel);
3818 if (outchannel >= 0 && outchannel != inchannel)
3819 emacs_close (outchannel);
3821 p->infd = -1;
3822 p->outfd = -1;
3823 #ifdef DATAGRAM_SOCKETS
3824 if (DATAGRAM_CHAN_P (inchannel))
3826 xfree (datagram_address[inchannel].sa);
3827 datagram_address[inchannel].sa = 0;
3828 datagram_address[inchannel].len = 0;
3830 #endif
3831 chan_process[inchannel] = Qnil;
3832 FD_CLR (inchannel, &input_wait_mask);
3833 FD_CLR (inchannel, &non_keyboard_wait_mask);
3834 #ifdef NON_BLOCKING_CONNECT
3835 if (FD_ISSET (inchannel, &connect_wait_mask))
3837 FD_CLR (inchannel, &connect_wait_mask);
3838 FD_CLR (inchannel, &write_mask);
3839 if (--num_pending_connects < 0)
3840 emacs_abort ();
3842 #endif
3843 if (inchannel == max_process_desc)
3845 int i;
3846 /* We just closed the highest-numbered process input descriptor,
3847 so recompute the highest-numbered one now. */
3848 max_process_desc = 0;
3849 for (i = 0; i < MAXDESC; i++)
3850 if (!NILP (chan_process[i]))
3851 max_process_desc = i;
3857 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
3858 0, 4, 0,
3859 doc: /* Allow any pending output from subprocesses to be read by Emacs.
3860 It is read into the process' buffers or given to their filter functions.
3861 Non-nil arg PROCESS means do not return until some output has been received
3862 from PROCESS.
3864 Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
3865 and milliseconds to wait; return after that much time whether or not
3866 there is any subprocess output. If SECONDS is a floating point number,
3867 it specifies a fractional number of seconds to wait.
3868 The MILLISEC argument is obsolete and should be avoided.
3870 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
3871 from PROCESS, suspending reading output from other processes.
3872 If JUST-THIS-ONE is an integer, don't run any timers either.
3873 Return non-nil if we received any output before the timeout expired. */)
3874 (register Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, Lisp_Object just_this_one)
3876 intmax_t secs;
3877 int nsecs;
3879 if (! NILP (process))
3880 CHECK_PROCESS (process);
3881 else
3882 just_this_one = Qnil;
3884 if (!NILP (millisec))
3885 { /* Obsolete calling convention using integers rather than floats. */
3886 CHECK_NUMBER (millisec);
3887 if (NILP (seconds))
3888 seconds = make_float (XINT (millisec) / 1000.0);
3889 else
3891 CHECK_NUMBER (seconds);
3892 seconds = make_float (XINT (millisec) / 1000.0 + XINT (seconds));
3896 secs = 0;
3897 nsecs = -1;
3899 if (!NILP (seconds))
3901 if (INTEGERP (seconds))
3903 if (0 < XINT (seconds))
3905 secs = XINT (seconds);
3906 nsecs = 0;
3909 else if (FLOATP (seconds))
3911 if (0 < XFLOAT_DATA (seconds))
3913 EMACS_TIME t = EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (seconds));
3914 secs = min (EMACS_SECS (t), WAIT_READING_MAX);
3915 nsecs = EMACS_NSECS (t);
3918 else
3919 wrong_type_argument (Qnumberp, seconds);
3921 else if (! NILP (process))
3922 nsecs = 0;
3924 return
3925 (wait_reading_process_output (secs, nsecs, 0, 0,
3926 Qnil,
3927 !NILP (process) ? XPROCESS (process) : NULL,
3928 NILP (just_this_one) ? 0 :
3929 !INTEGERP (just_this_one) ? 1 : -1)
3930 ? Qt : Qnil);
3933 /* Accept a connection for server process SERVER on CHANNEL. */
3935 static EMACS_INT connect_counter = 0;
3937 static void
3938 server_accept_connection (Lisp_Object server, int channel)
3940 Lisp_Object proc, caller, name, buffer;
3941 Lisp_Object contact, host, service;
3942 struct Lisp_Process *ps= XPROCESS (server);
3943 struct Lisp_Process *p;
3944 int s;
3945 union u_sockaddr {
3946 struct sockaddr sa;
3947 struct sockaddr_in in;
3948 #ifdef AF_INET6
3949 struct sockaddr_in6 in6;
3950 #endif
3951 #ifdef HAVE_LOCAL_SOCKETS
3952 struct sockaddr_un un;
3953 #endif
3954 } saddr;
3955 socklen_t len = sizeof saddr;
3957 s = accept (channel, &saddr.sa, &len);
3959 if (s < 0)
3961 int code = errno;
3963 if (code == EAGAIN)
3964 return;
3965 #ifdef EWOULDBLOCK
3966 if (code == EWOULDBLOCK)
3967 return;
3968 #endif
3970 if (!NILP (ps->log))
3971 call3 (ps->log, server, Qnil,
3972 concat3 (build_string ("accept failed with code"),
3973 Fnumber_to_string (make_number (code)),
3974 build_string ("\n")));
3975 return;
3978 connect_counter++;
3980 /* Setup a new process to handle the connection. */
3982 /* Generate a unique identification of the caller, and build contact
3983 information for this process. */
3984 host = Qt;
3985 service = Qnil;
3986 switch (saddr.sa.sa_family)
3988 case AF_INET:
3990 Lisp_Object args[5];
3991 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
3992 args[0] = build_string ("%d.%d.%d.%d");
3993 args[1] = make_number (*ip++);
3994 args[2] = make_number (*ip++);
3995 args[3] = make_number (*ip++);
3996 args[4] = make_number (*ip++);
3997 host = Fformat (5, args);
3998 service = make_number (ntohs (saddr.in.sin_port));
4000 args[0] = build_string (" <%s:%d>");
4001 args[1] = host;
4002 args[2] = service;
4003 caller = Fformat (3, args);
4005 break;
4007 #ifdef AF_INET6
4008 case AF_INET6:
4010 Lisp_Object args[9];
4011 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
4012 int i;
4013 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
4014 for (i = 0; i < 8; i++)
4015 args[i+1] = make_number (ntohs (ip6[i]));
4016 host = Fformat (9, args);
4017 service = make_number (ntohs (saddr.in.sin_port));
4019 args[0] = build_string (" <[%s]:%d>");
4020 args[1] = host;
4021 args[2] = service;
4022 caller = Fformat (3, args);
4024 break;
4025 #endif
4027 #ifdef HAVE_LOCAL_SOCKETS
4028 case AF_LOCAL:
4029 #endif
4030 default:
4031 caller = Fnumber_to_string (make_number (connect_counter));
4032 caller = concat3 (build_string (" <"), caller, build_string (">"));
4033 break;
4036 /* Create a new buffer name for this process if it doesn't have a
4037 filter. The new buffer name is based on the buffer name or
4038 process name of the server process concatenated with the caller
4039 identification. */
4041 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
4042 buffer = Qnil;
4043 else
4045 buffer = ps->buffer;
4046 if (!NILP (buffer))
4047 buffer = Fbuffer_name (buffer);
4048 else
4049 buffer = ps->name;
4050 if (!NILP (buffer))
4052 buffer = concat2 (buffer, caller);
4053 buffer = Fget_buffer_create (buffer);
4057 /* Generate a unique name for the new server process. Combine the
4058 server process name with the caller identification. */
4060 name = concat2 (ps->name, caller);
4061 proc = make_process (name);
4063 chan_process[s] = proc;
4065 fcntl (s, F_SETFL, O_NONBLOCK);
4067 p = XPROCESS (proc);
4069 /* Build new contact information for this setup. */
4070 contact = Fcopy_sequence (ps->childp);
4071 contact = Fplist_put (contact, QCserver, Qnil);
4072 contact = Fplist_put (contact, QChost, host);
4073 if (!NILP (service))
4074 contact = Fplist_put (contact, QCservice, service);
4075 contact = Fplist_put (contact, QCremote,
4076 conv_sockaddr_to_lisp (&saddr.sa, len));
4077 #ifdef HAVE_GETSOCKNAME
4078 len = sizeof saddr;
4079 if (getsockname (s, &saddr.sa, &len) == 0)
4080 contact = Fplist_put (contact, QClocal,
4081 conv_sockaddr_to_lisp (&saddr.sa, len));
4082 #endif
4084 pset_childp (p, contact);
4085 pset_plist (p, Fcopy_sequence (ps->plist));
4086 pset_type (p, Qnetwork);
4088 pset_buffer (p, buffer);
4089 pset_sentinel (p, ps->sentinel);
4090 pset_filter (p, ps->filter);
4091 pset_command (p, Qnil);
4092 p->pid = 0;
4093 p->infd = s;
4094 p->outfd = s;
4095 pset_status (p, Qrun);
4097 /* Client processes for accepted connections are not stopped initially. */
4098 if (!EQ (p->filter, Qt))
4100 FD_SET (s, &input_wait_mask);
4101 FD_SET (s, &non_keyboard_wait_mask);
4104 if (s > max_process_desc)
4105 max_process_desc = s;
4107 /* Setup coding system for new process based on server process.
4108 This seems to be the proper thing to do, as the coding system
4109 of the new process should reflect the settings at the time the
4110 server socket was opened; not the current settings. */
4112 pset_decode_coding_system (p, ps->decode_coding_system);
4113 pset_encode_coding_system (p, ps->encode_coding_system);
4114 setup_process_coding_systems (proc);
4116 pset_decoding_buf (p, empty_unibyte_string);
4117 p->decoding_carryover = 0;
4118 pset_encoding_buf (p, empty_unibyte_string);
4120 p->inherit_coding_system_flag
4121 = (NILP (buffer) ? 0 : ps->inherit_coding_system_flag);
4123 if (!NILP (ps->log))
4124 call3 (ps->log, server, proc,
4125 concat3 (build_string ("accept from "),
4126 (STRINGP (host) ? host : build_string ("-")),
4127 build_string ("\n")));
4129 if (!NILP (p->sentinel))
4130 exec_sentinel (proc,
4131 concat3 (build_string ("open from "),
4132 (STRINGP (host) ? host : build_string ("-")),
4133 build_string ("\n")));
4136 /* This variable is different from waiting_for_input in keyboard.c.
4137 It is used to communicate to a lisp process-filter/sentinel (via the
4138 function Fwaiting_for_user_input_p below) whether Emacs was waiting
4139 for user-input when that process-filter was called.
4140 waiting_for_input cannot be used as that is by definition 0 when
4141 lisp code is being evalled.
4142 This is also used in record_asynch_buffer_change.
4143 For that purpose, this must be 0
4144 when not inside wait_reading_process_output. */
4145 static int waiting_for_user_input_p;
4147 static Lisp_Object
4148 wait_reading_process_output_unwind (Lisp_Object data)
4150 waiting_for_user_input_p = XINT (data);
4151 return Qnil;
4154 /* This is here so breakpoints can be put on it. */
4155 static void
4156 wait_reading_process_output_1 (void)
4160 /* Read and dispose of subprocess output while waiting for timeout to
4161 elapse and/or keyboard input to be available.
4163 TIME_LIMIT is:
4164 timeout in seconds
4165 If negative, gobble data immediately available but don't wait for any.
4167 NSECS is:
4168 an additional duration to wait, measured in nanoseconds
4169 If TIME_LIMIT is zero, then:
4170 If NSECS == 0, there is no limit.
4171 If NSECS > 0, the timeout consists of NSECS only.
4172 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4174 READ_KBD is:
4175 0 to ignore keyboard input, or
4176 1 to return when input is available, or
4177 -1 meaning caller will actually read the input, so don't throw to
4178 the quit handler, or
4180 DO_DISPLAY means redisplay should be done to show subprocess
4181 output that arrives.
4183 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
4184 (and gobble terminal input into the buffer if any arrives).
4186 If WAIT_PROC is specified, wait until something arrives from that
4187 process. The return value is true if we read some input from
4188 that process.
4190 If JUST_WAIT_PROC is nonzero, handle only output from WAIT_PROC
4191 (suspending output from other processes). A negative value
4192 means don't run any timers either.
4194 If WAIT_PROC is specified, then the function returns true if we
4195 received input from that process before the timeout elapsed.
4196 Otherwise, return true if we received input from any process. */
4198 bool
4199 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
4200 bool do_display,
4201 Lisp_Object wait_for_cell,
4202 struct Lisp_Process *wait_proc, int just_wait_proc)
4204 int channel, nfds;
4205 SELECT_TYPE Available;
4206 SELECT_TYPE Writeok;
4207 bool check_write;
4208 int check_delay;
4209 bool no_avail;
4210 int xerrno;
4211 Lisp_Object proc;
4212 EMACS_TIME timeout, end_time;
4213 int wait_channel = -1;
4214 bool got_some_input = 0;
4215 ptrdiff_t count = SPECPDL_INDEX ();
4217 FD_ZERO (&Available);
4218 FD_ZERO (&Writeok);
4220 if (time_limit == 0 && nsecs == 0 && wait_proc && !NILP (Vinhibit_quit)
4221 && !(CONSP (wait_proc->status)
4222 && EQ (XCAR (wait_proc->status), Qexit)))
4223 message1 ("Blocking call to accept-process-output with quit inhibited!!");
4225 /* If wait_proc is a process to watch, set wait_channel accordingly. */
4226 if (wait_proc != NULL)
4227 wait_channel = wait_proc->infd;
4229 record_unwind_protect (wait_reading_process_output_unwind,
4230 make_number (waiting_for_user_input_p));
4231 waiting_for_user_input_p = read_kbd;
4233 if (time_limit < 0)
4235 time_limit = 0;
4236 nsecs = -1;
4238 else if (TYPE_MAXIMUM (time_t) < time_limit)
4239 time_limit = TYPE_MAXIMUM (time_t);
4241 /* Since we may need to wait several times,
4242 compute the absolute time to return at. */
4243 if (time_limit || 0 < nsecs)
4245 timeout = make_emacs_time (time_limit, nsecs);
4246 end_time = add_emacs_time (current_emacs_time (), timeout);
4249 while (1)
4251 bool timeout_reduced_for_timers = 0;
4253 /* If calling from keyboard input, do not quit
4254 since we want to return C-g as an input character.
4255 Otherwise, do pending quit if requested. */
4256 if (read_kbd >= 0)
4257 QUIT;
4258 else if (pending_signals)
4259 process_pending_signals ();
4261 /* Exit now if the cell we're waiting for became non-nil. */
4262 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4263 break;
4265 /* Compute time from now till when time limit is up */
4266 /* Exit if already run out */
4267 if (nsecs < 0)
4269 /* A negative timeout means
4270 gobble output available now
4271 but don't wait at all. */
4273 timeout = make_emacs_time (0, 0);
4275 else if (time_limit || 0 < nsecs)
4277 EMACS_TIME now = current_emacs_time ();
4278 if (EMACS_TIME_LE (end_time, now))
4279 break;
4280 timeout = sub_emacs_time (end_time, now);
4282 else
4284 timeout = make_emacs_time (100000, 0);
4287 /* Normally we run timers here.
4288 But not if wait_for_cell; in those cases,
4289 the wait is supposed to be short,
4290 and those callers cannot handle running arbitrary Lisp code here. */
4291 if (NILP (wait_for_cell)
4292 && just_wait_proc >= 0)
4294 EMACS_TIME timer_delay;
4298 unsigned old_timers_run = timers_run;
4299 struct buffer *old_buffer = current_buffer;
4300 Lisp_Object old_window = selected_window;
4302 timer_delay = timer_check ();
4304 /* If a timer has run, this might have changed buffers
4305 an alike. Make read_key_sequence aware of that. */
4306 if (timers_run != old_timers_run
4307 && (old_buffer != current_buffer
4308 || !EQ (old_window, selected_window))
4309 && waiting_for_user_input_p == -1)
4310 record_asynch_buffer_change ();
4312 if (timers_run != old_timers_run && do_display)
4313 /* We must retry, since a timer may have requeued itself
4314 and that could alter the time_delay. */
4315 redisplay_preserve_echo_area (9);
4316 else
4317 break;
4319 while (!detect_input_pending ());
4321 /* If there is unread keyboard input, also return. */
4322 if (read_kbd != 0
4323 && requeued_events_pending_p ())
4324 break;
4326 /* A negative timeout means do not wait at all. */
4327 if (0 <= nsecs)
4329 if (EMACS_TIME_VALID_P (timer_delay))
4331 if (EMACS_TIME_LT (timer_delay, timeout))
4333 timeout = timer_delay;
4334 timeout_reduced_for_timers = 1;
4337 else
4339 /* This is so a breakpoint can be put here. */
4340 wait_reading_process_output_1 ();
4345 /* Cause C-g and alarm signals to take immediate action,
4346 and cause input available signals to zero out timeout.
4348 It is important that we do this before checking for process
4349 activity. If we get a SIGCHLD after the explicit checks for
4350 process activity, timeout is the only way we will know. */
4351 if (read_kbd < 0)
4352 set_waiting_for_input (&timeout);
4354 /* If status of something has changed, and no input is
4355 available, notify the user of the change right away. After
4356 this explicit check, we'll let the SIGCHLD handler zap
4357 timeout to get our attention. */
4358 if (update_tick != process_tick)
4360 SELECT_TYPE Atemp;
4361 SELECT_TYPE Ctemp;
4363 if (kbd_on_hold_p ())
4364 FD_ZERO (&Atemp);
4365 else
4366 Atemp = input_wait_mask;
4367 Ctemp = write_mask;
4369 timeout = make_emacs_time (0, 0);
4370 if ((pselect (max (max_process_desc, max_input_desc) + 1,
4371 &Atemp,
4372 #ifdef NON_BLOCKING_CONNECT
4373 (num_pending_connects > 0 ? &Ctemp : NULL),
4374 #else
4375 NULL,
4376 #endif
4377 NULL, &timeout, NULL)
4378 <= 0))
4380 /* It's okay for us to do this and then continue with
4381 the loop, since timeout has already been zeroed out. */
4382 clear_waiting_for_input ();
4383 status_notify (NULL);
4384 if (do_display) redisplay_preserve_echo_area (13);
4388 /* Don't wait for output from a non-running process. Just
4389 read whatever data has already been received. */
4390 if (wait_proc && wait_proc->raw_status_new)
4391 update_status (wait_proc);
4392 if (wait_proc
4393 && ! EQ (wait_proc->status, Qrun)
4394 && ! EQ (wait_proc->status, Qconnect))
4396 int nread, total_nread = 0;
4398 clear_waiting_for_input ();
4399 XSETPROCESS (proc, wait_proc);
4401 /* Read data from the process, until we exhaust it. */
4402 while (wait_proc->infd >= 0)
4404 nread = read_process_output (proc, wait_proc->infd);
4406 if (nread == 0)
4407 break;
4409 if (0 < nread)
4411 total_nread += nread;
4412 got_some_input = 1;
4414 else if (nread == -1 && (errno == EIO || errno == EAGAIN))
4415 break;
4416 #ifdef EWOULDBLOCK
4417 else if (nread == -1 && EWOULDBLOCK == errno)
4418 break;
4419 #endif
4421 if (total_nread > 0 && do_display)
4422 redisplay_preserve_echo_area (10);
4424 break;
4427 /* Wait till there is something to do */
4429 if (wait_proc && just_wait_proc)
4431 if (wait_proc->infd < 0) /* Terminated */
4432 break;
4433 FD_SET (wait_proc->infd, &Available);
4434 check_delay = 0;
4435 check_write = 0;
4437 else if (!NILP (wait_for_cell))
4439 Available = non_process_wait_mask;
4440 check_delay = 0;
4441 check_write = 0;
4443 else
4445 if (! read_kbd)
4446 Available = non_keyboard_wait_mask;
4447 else
4448 Available = input_wait_mask;
4449 Writeok = write_mask;
4450 #ifdef SELECT_CANT_DO_WRITE_MASK
4451 check_write = 0;
4452 #else
4453 check_write = 1;
4454 #endif
4455 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
4458 /* If frame size has changed or the window is newly mapped,
4459 redisplay now, before we start to wait. There is a race
4460 condition here; if a SIGIO arrives between now and the select
4461 and indicates that a frame is trashed, the select may block
4462 displaying a trashed screen. */
4463 if (frame_garbaged && do_display)
4465 clear_waiting_for_input ();
4466 redisplay_preserve_echo_area (11);
4467 if (read_kbd < 0)
4468 set_waiting_for_input (&timeout);
4471 /* Skip the `select' call if input is available and we're
4472 waiting for keyboard input or a cell change (which can be
4473 triggered by processing X events). In the latter case, set
4474 nfds to 1 to avoid breaking the loop. */
4475 no_avail = 0;
4476 if ((read_kbd || !NILP (wait_for_cell))
4477 && detect_input_pending ())
4479 nfds = read_kbd ? 0 : 1;
4480 no_avail = 1;
4483 if (!no_avail)
4486 #ifdef ADAPTIVE_READ_BUFFERING
4487 /* Set the timeout for adaptive read buffering if any
4488 process has non-zero read_output_skip and non-zero
4489 read_output_delay, and we are not reading output for a
4490 specific wait_channel. It is not executed if
4491 Vprocess_adaptive_read_buffering is nil. */
4492 if (process_output_skip && check_delay > 0)
4494 int nsecs = EMACS_NSECS (timeout);
4495 if (EMACS_SECS (timeout) > 0 || nsecs > READ_OUTPUT_DELAY_MAX)
4496 nsecs = READ_OUTPUT_DELAY_MAX;
4497 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
4499 proc = chan_process[channel];
4500 if (NILP (proc))
4501 continue;
4502 /* Find minimum non-zero read_output_delay among the
4503 processes with non-zero read_output_skip. */
4504 if (XPROCESS (proc)->read_output_delay > 0)
4506 check_delay--;
4507 if (!XPROCESS (proc)->read_output_skip)
4508 continue;
4509 FD_CLR (channel, &Available);
4510 XPROCESS (proc)->read_output_skip = 0;
4511 if (XPROCESS (proc)->read_output_delay < nsecs)
4512 nsecs = XPROCESS (proc)->read_output_delay;
4515 timeout = make_emacs_time (0, nsecs);
4516 process_output_skip = 0;
4518 #endif
4520 #if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
4521 nfds = xg_select
4522 #elif defined (HAVE_NS)
4523 nfds = ns_select
4524 #else
4525 nfds = pselect
4526 #endif
4527 (max (max_process_desc, max_input_desc) + 1,
4528 &Available,
4529 (check_write ? &Writeok : (SELECT_TYPE *)0),
4530 NULL, &timeout, NULL);
4532 #ifdef HAVE_GNUTLS
4533 /* GnuTLS buffers data internally. In lowat mode it leaves
4534 some data in the TCP buffers so that select works, but
4535 with custom pull/push functions we need to check if some
4536 data is available in the buffers manually. */
4537 if (nfds == 0)
4539 if (! wait_proc)
4541 /* We're not waiting on a specific process, so loop
4542 through all the channels and check for data.
4543 This is a workaround needed for some versions of
4544 the gnutls library -- 2.12.14 has been confirmed
4545 to need it. See
4546 http://comments.gmane.org/gmane.emacs.devel/145074 */
4547 for (channel = 0; channel < MAXDESC; ++channel)
4548 if (! NILP (chan_process[channel]))
4550 struct Lisp_Process *p =
4551 XPROCESS (chan_process[channel]);
4552 if (p && p->gnutls_p && p->infd
4553 && ((emacs_gnutls_record_check_pending
4554 (p->gnutls_state))
4555 > 0))
4557 nfds++;
4558 FD_SET (p->infd, &Available);
4562 else
4564 /* Check this specific channel. */
4565 if (wait_proc->gnutls_p /* Check for valid process. */
4566 /* Do we have pending data? */
4567 && ((emacs_gnutls_record_check_pending
4568 (wait_proc->gnutls_state))
4569 > 0))
4571 nfds = 1;
4572 /* Set to Available. */
4573 FD_SET (wait_proc->infd, &Available);
4577 #endif
4580 xerrno = errno;
4582 /* Make C-g and alarm signals set flags again */
4583 clear_waiting_for_input ();
4585 /* If we woke up due to SIGWINCH, actually change size now. */
4586 do_pending_window_change (0);
4588 if ((time_limit || nsecs) && nfds == 0 && ! timeout_reduced_for_timers)
4589 /* We waited the full specified time, so return now. */
4590 break;
4591 if (nfds < 0)
4593 if (xerrno == EINTR)
4594 no_avail = 1;
4595 else if (xerrno == EBADF)
4597 #ifdef AIX
4598 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
4599 the child's closure of the pts gives the parent a SIGHUP, and
4600 the ptc file descriptor is automatically closed,
4601 yielding EBADF here or at select() call above.
4602 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
4603 in m/ibmrt-aix.h), and here we just ignore the select error.
4604 Cleanup occurs c/o status_notify after SIGCHLD. */
4605 no_avail = 1; /* Cannot depend on values returned */
4606 #else
4607 emacs_abort ();
4608 #endif
4610 else
4611 error ("select error: %s", emacs_strerror (xerrno));
4614 if (no_avail)
4616 FD_ZERO (&Available);
4617 check_write = 0;
4620 /* Check for keyboard input */
4621 /* If there is any, return immediately
4622 to give it higher priority than subprocesses */
4624 if (read_kbd != 0)
4626 unsigned old_timers_run = timers_run;
4627 struct buffer *old_buffer = current_buffer;
4628 Lisp_Object old_window = selected_window;
4629 bool leave = 0;
4631 if (detect_input_pending_run_timers (do_display))
4633 swallow_events (do_display);
4634 if (detect_input_pending_run_timers (do_display))
4635 leave = 1;
4638 /* If a timer has run, this might have changed buffers
4639 an alike. Make read_key_sequence aware of that. */
4640 if (timers_run != old_timers_run
4641 && waiting_for_user_input_p == -1
4642 && (old_buffer != current_buffer
4643 || !EQ (old_window, selected_window)))
4644 record_asynch_buffer_change ();
4646 if (leave)
4647 break;
4650 /* If there is unread keyboard input, also return. */
4651 if (read_kbd != 0
4652 && requeued_events_pending_p ())
4653 break;
4655 /* If we are not checking for keyboard input now,
4656 do process events (but don't run any timers).
4657 This is so that X events will be processed.
4658 Otherwise they may have to wait until polling takes place.
4659 That would causes delays in pasting selections, for example.
4661 (We used to do this only if wait_for_cell.) */
4662 if (read_kbd == 0 && detect_input_pending ())
4664 swallow_events (do_display);
4665 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
4666 if (detect_input_pending ())
4667 break;
4668 #endif
4671 /* Exit now if the cell we're waiting for became non-nil. */
4672 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4673 break;
4675 #ifdef USABLE_SIGIO
4676 /* If we think we have keyboard input waiting, but didn't get SIGIO,
4677 go read it. This can happen with X on BSD after logging out.
4678 In that case, there really is no input and no SIGIO,
4679 but select says there is input. */
4681 if (read_kbd && interrupt_input
4682 && keyboard_bit_set (&Available) && ! noninteractive)
4683 handle_input_available_signal (SIGIO);
4684 #endif
4686 if (! wait_proc)
4687 got_some_input |= nfds > 0;
4689 /* If checking input just got us a size-change event from X,
4690 obey it now if we should. */
4691 if (read_kbd || ! NILP (wait_for_cell))
4692 do_pending_window_change (0);
4694 /* Check for data from a process. */
4695 if (no_avail || nfds == 0)
4696 continue;
4698 for (channel = 0; channel <= max_input_desc; ++channel)
4700 struct fd_callback_data *d = &fd_callback_info[channel];
4701 if (d->func
4702 && ((d->condition & FOR_READ
4703 && FD_ISSET (channel, &Available))
4704 || (d->condition & FOR_WRITE
4705 && FD_ISSET (channel, &write_mask))))
4706 d->func (channel, d->data);
4709 for (channel = 0; channel <= max_process_desc; channel++)
4711 if (FD_ISSET (channel, &Available)
4712 && FD_ISSET (channel, &non_keyboard_wait_mask)
4713 && !FD_ISSET (channel, &non_process_wait_mask))
4715 int nread;
4717 /* If waiting for this channel, arrange to return as
4718 soon as no more input to be processed. No more
4719 waiting. */
4720 if (wait_channel == channel)
4722 wait_channel = -1;
4723 nsecs = -1;
4724 got_some_input = 1;
4726 proc = chan_process[channel];
4727 if (NILP (proc))
4728 continue;
4730 /* If this is a server stream socket, accept connection. */
4731 if (EQ (XPROCESS (proc)->status, Qlisten))
4733 server_accept_connection (proc, channel);
4734 continue;
4737 /* Read data from the process, starting with our
4738 buffered-ahead character if we have one. */
4740 nread = read_process_output (proc, channel);
4741 if (nread > 0)
4743 /* Since read_process_output can run a filter,
4744 which can call accept-process-output,
4745 don't try to read from any other processes
4746 before doing the select again. */
4747 FD_ZERO (&Available);
4749 if (do_display)
4750 redisplay_preserve_echo_area (12);
4752 #ifdef EWOULDBLOCK
4753 else if (nread == -1 && errno == EWOULDBLOCK)
4755 #endif
4756 else if (nread == -1 && errno == EAGAIN)
4758 #ifdef WINDOWSNT
4759 /* FIXME: Is this special case still needed? */
4760 /* Note that we cannot distinguish between no input
4761 available now and a closed pipe.
4762 With luck, a closed pipe will be accompanied by
4763 subprocess termination and SIGCHLD. */
4764 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4766 #endif
4767 #ifdef HAVE_PTYS
4768 /* On some OSs with ptys, when the process on one end of
4769 a pty exits, the other end gets an error reading with
4770 errno = EIO instead of getting an EOF (0 bytes read).
4771 Therefore, if we get an error reading and errno =
4772 EIO, just continue, because the child process has
4773 exited and should clean itself up soon (e.g. when we
4774 get a SIGCHLD). */
4775 else if (nread == -1 && errno == EIO)
4777 struct Lisp_Process *p = XPROCESS (proc);
4779 /* Clear the descriptor now, so we only raise the
4780 signal once. */
4781 FD_CLR (channel, &input_wait_mask);
4782 FD_CLR (channel, &non_keyboard_wait_mask);
4784 if (p->pid == -2)
4786 /* If the EIO occurs on a pty, the SIGCHLD handler's
4787 waitpid call will not find the process object to
4788 delete. Do it here. */
4789 p->tick = ++process_tick;
4790 pset_status (p, Qfailed);
4793 #endif /* HAVE_PTYS */
4794 /* If we can detect process termination, don't consider the
4795 process gone just because its pipe is closed. */
4796 else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc))
4798 else
4800 /* Preserve status of processes already terminated. */
4801 XPROCESS (proc)->tick = ++process_tick;
4802 deactivate_process (proc);
4803 if (XPROCESS (proc)->raw_status_new)
4804 update_status (XPROCESS (proc));
4805 if (EQ (XPROCESS (proc)->status, Qrun))
4806 pset_status (XPROCESS (proc),
4807 list2 (Qexit, make_number (256)));
4810 #ifdef NON_BLOCKING_CONNECT
4811 if (FD_ISSET (channel, &Writeok)
4812 && FD_ISSET (channel, &connect_wait_mask))
4814 struct Lisp_Process *p;
4816 FD_CLR (channel, &connect_wait_mask);
4817 FD_CLR (channel, &write_mask);
4818 if (--num_pending_connects < 0)
4819 emacs_abort ();
4821 proc = chan_process[channel];
4822 if (NILP (proc))
4823 continue;
4825 p = XPROCESS (proc);
4827 #ifdef GNU_LINUX
4828 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
4829 So only use it on systems where it is known to work. */
4831 socklen_t xlen = sizeof (xerrno);
4832 if (getsockopt (channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
4833 xerrno = errno;
4835 #else
4837 struct sockaddr pname;
4838 int pnamelen = sizeof (pname);
4840 /* If connection failed, getpeername will fail. */
4841 xerrno = 0;
4842 if (getpeername (channel, &pname, &pnamelen) < 0)
4844 /* Obtain connect failure code through error slippage. */
4845 char dummy;
4846 xerrno = errno;
4847 if (errno == ENOTCONN && read (channel, &dummy, 1) < 0)
4848 xerrno = errno;
4851 #endif
4852 if (xerrno)
4854 p->tick = ++process_tick;
4855 pset_status (p, list2 (Qfailed, make_number (xerrno)));
4856 deactivate_process (proc);
4858 else
4860 pset_status (p, Qrun);
4861 /* Execute the sentinel here. If we had relied on
4862 status_notify to do it later, it will read input
4863 from the process before calling the sentinel. */
4864 exec_sentinel (proc, build_string ("open\n"));
4865 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
4867 FD_SET (p->infd, &input_wait_mask);
4868 FD_SET (p->infd, &non_keyboard_wait_mask);
4872 #endif /* NON_BLOCKING_CONNECT */
4873 } /* end for each file descriptor */
4874 } /* end while exit conditions not met */
4876 unbind_to (count, Qnil);
4878 /* If calling from keyboard input, do not quit
4879 since we want to return C-g as an input character.
4880 Otherwise, do pending quit if requested. */
4881 if (read_kbd >= 0)
4883 /* Prevent input_pending from remaining set if we quit. */
4884 clear_input_pending ();
4885 QUIT;
4888 return got_some_input;
4891 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
4893 static Lisp_Object
4894 read_process_output_call (Lisp_Object fun_and_args)
4896 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
4899 static Lisp_Object
4900 read_process_output_error_handler (Lisp_Object error_val)
4902 cmd_error_internal (error_val, "error in process filter: ");
4903 Vinhibit_quit = Qt;
4904 update_echo_area ();
4905 Fsleep_for (make_number (2), Qnil);
4906 return Qt;
4909 /* Read pending output from the process channel,
4910 starting with our buffered-ahead character if we have one.
4911 Yield number of decoded characters read.
4913 This function reads at most 4096 characters.
4914 If you want to read all available subprocess output,
4915 you must call it repeatedly until it returns zero.
4917 The characters read are decoded according to PROC's coding-system
4918 for decoding. */
4920 static int
4921 read_process_output (Lisp_Object proc, register int channel)
4923 register ssize_t nbytes;
4924 char *chars;
4925 register Lisp_Object outstream;
4926 register struct Lisp_Process *p = XPROCESS (proc);
4927 register ptrdiff_t opoint;
4928 struct coding_system *coding = proc_decode_coding_system[channel];
4929 int carryover = p->decoding_carryover;
4930 int readmax = 4096;
4931 ptrdiff_t count = SPECPDL_INDEX ();
4932 Lisp_Object odeactivate;
4934 chars = alloca (carryover + readmax);
4935 if (carryover)
4936 /* See the comment above. */
4937 memcpy (chars, SDATA (p->decoding_buf), carryover);
4939 #ifdef DATAGRAM_SOCKETS
4940 /* We have a working select, so proc_buffered_char is always -1. */
4941 if (DATAGRAM_CHAN_P (channel))
4943 socklen_t len = datagram_address[channel].len;
4944 nbytes = recvfrom (channel, chars + carryover, readmax,
4945 0, datagram_address[channel].sa, &len);
4947 else
4948 #endif
4950 bool buffered = 0 <= proc_buffered_char[channel];
4951 if (buffered)
4953 chars[carryover] = proc_buffered_char[channel];
4954 proc_buffered_char[channel] = -1;
4956 #ifdef HAVE_GNUTLS
4957 if (p->gnutls_p)
4958 nbytes = emacs_gnutls_read (p, chars + carryover + buffered,
4959 readmax - buffered);
4960 else
4961 #endif
4962 nbytes = emacs_read (channel, chars + carryover + buffered,
4963 readmax - buffered);
4964 #ifdef ADAPTIVE_READ_BUFFERING
4965 if (nbytes > 0 && p->adaptive_read_buffering)
4967 int delay = p->read_output_delay;
4968 if (nbytes < 256)
4970 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
4972 if (delay == 0)
4973 process_output_delay_count++;
4974 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
4977 else if (delay > 0 && nbytes == readmax - buffered)
4979 delay -= READ_OUTPUT_DELAY_INCREMENT;
4980 if (delay == 0)
4981 process_output_delay_count--;
4983 p->read_output_delay = delay;
4984 if (delay)
4986 p->read_output_skip = 1;
4987 process_output_skip = 1;
4990 #endif
4991 nbytes += buffered;
4992 nbytes += buffered && nbytes <= 0;
4995 p->decoding_carryover = 0;
4997 /* At this point, NBYTES holds number of bytes just received
4998 (including the one in proc_buffered_char[channel]). */
4999 if (nbytes <= 0)
5001 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
5002 return nbytes;
5003 coding->mode |= CODING_MODE_LAST_BLOCK;
5006 /* Now set NBYTES how many bytes we must decode. */
5007 nbytes += carryover;
5009 odeactivate = Vdeactivate_mark;
5010 /* There's no good reason to let process filters change the current
5011 buffer, and many callers of accept-process-output, sit-for, and
5012 friends don't expect current-buffer to be changed from under them. */
5013 record_unwind_current_buffer ();
5015 /* Read and dispose of the process output. */
5016 outstream = p->filter;
5017 if (!NILP (outstream))
5019 Lisp_Object text;
5020 bool outer_running_asynch_code = running_asynch_code;
5021 int waiting = waiting_for_user_input_p;
5023 /* No need to gcpro these, because all we do with them later
5024 is test them for EQness, and none of them should be a string. */
5025 #if 0
5026 Lisp_Object obuffer, okeymap;
5027 XSETBUFFER (obuffer, current_buffer);
5028 okeymap = BVAR (current_buffer, keymap);
5029 #endif
5031 /* We inhibit quit here instead of just catching it so that
5032 hitting ^G when a filter happens to be running won't screw
5033 it up. */
5034 specbind (Qinhibit_quit, Qt);
5035 specbind (Qlast_nonmenu_event, Qt);
5037 /* In case we get recursively called,
5038 and we already saved the match data nonrecursively,
5039 save the same match data in safely recursive fashion. */
5040 if (outer_running_asynch_code)
5042 Lisp_Object tem;
5043 /* Don't clobber the CURRENT match data, either! */
5044 tem = Fmatch_data (Qnil, Qnil, Qnil);
5045 restore_search_regs ();
5046 record_unwind_save_match_data ();
5047 Fset_match_data (tem, Qt);
5050 /* For speed, if a search happens within this code,
5051 save the match data in a special nonrecursive fashion. */
5052 running_asynch_code = 1;
5054 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5055 text = coding->dst_object;
5056 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5057 /* A new coding system might be found. */
5058 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5060 pset_decode_coding_system (p, Vlast_coding_system_used);
5062 /* Don't call setup_coding_system for
5063 proc_decode_coding_system[channel] here. It is done in
5064 detect_coding called via decode_coding above. */
5066 /* If a coding system for encoding is not yet decided, we set
5067 it as the same as coding-system for decoding.
5069 But, before doing that we must check if
5070 proc_encode_coding_system[p->outfd] surely points to a
5071 valid memory because p->outfd will be changed once EOF is
5072 sent to the process. */
5073 if (NILP (p->encode_coding_system)
5074 && proc_encode_coding_system[p->outfd])
5076 pset_encode_coding_system
5077 (p, coding_inherit_eol_type (Vlast_coding_system_used, Qnil));
5078 setup_coding_system (p->encode_coding_system,
5079 proc_encode_coding_system[p->outfd]);
5083 if (coding->carryover_bytes > 0)
5085 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5086 pset_decoding_buf (p, make_uninit_string (coding->carryover_bytes));
5087 memcpy (SDATA (p->decoding_buf), coding->carryover,
5088 coding->carryover_bytes);
5089 p->decoding_carryover = coding->carryover_bytes;
5091 if (SBYTES (text) > 0)
5092 /* FIXME: It's wrong to wrap or not based on debug-on-error, and
5093 sometimes it's simply wrong to wrap (e.g. when called from
5094 accept-process-output). */
5095 internal_condition_case_1 (read_process_output_call,
5096 Fcons (outstream,
5097 Fcons (proc, Fcons (text, Qnil))),
5098 !NILP (Vdebug_on_error) ? Qnil : Qerror,
5099 read_process_output_error_handler);
5101 /* If we saved the match data nonrecursively, restore it now. */
5102 restore_search_regs ();
5103 running_asynch_code = outer_running_asynch_code;
5105 /* Restore waiting_for_user_input_p as it was
5106 when we were called, in case the filter clobbered it. */
5107 waiting_for_user_input_p = waiting;
5109 #if 0 /* Call record_asynch_buffer_change unconditionally,
5110 because we might have changed minor modes or other things
5111 that affect key bindings. */
5112 if (! EQ (Fcurrent_buffer (), obuffer)
5113 || ! EQ (current_buffer->keymap, okeymap))
5114 #endif
5115 /* But do it only if the caller is actually going to read events.
5116 Otherwise there's no need to make him wake up, and it could
5117 cause trouble (for example it would make sit_for return). */
5118 if (waiting_for_user_input_p == -1)
5119 record_asynch_buffer_change ();
5122 /* If no filter, write into buffer if it isn't dead. */
5123 else if (!NILP (p->buffer) && BUFFER_LIVE_P (XBUFFER (p->buffer)))
5125 Lisp_Object old_read_only;
5126 ptrdiff_t old_begv, old_zv;
5127 ptrdiff_t old_begv_byte, old_zv_byte;
5128 ptrdiff_t before, before_byte;
5129 ptrdiff_t opoint_byte;
5130 Lisp_Object text;
5131 struct buffer *b;
5133 Fset_buffer (p->buffer);
5134 opoint = PT;
5135 opoint_byte = PT_BYTE;
5136 old_read_only = BVAR (current_buffer, read_only);
5137 old_begv = BEGV;
5138 old_zv = ZV;
5139 old_begv_byte = BEGV_BYTE;
5140 old_zv_byte = ZV_BYTE;
5142 bset_read_only (current_buffer, Qnil);
5144 /* Insert new output into buffer
5145 at the current end-of-output marker,
5146 thus preserving logical ordering of input and output. */
5147 if (XMARKER (p->mark)->buffer)
5148 SET_PT_BOTH (clip_to_bounds (BEGV,
5149 marker_position (p->mark), ZV),
5150 clip_to_bounds (BEGV_BYTE,
5151 marker_byte_position (p->mark),
5152 ZV_BYTE));
5153 else
5154 SET_PT_BOTH (ZV, ZV_BYTE);
5155 before = PT;
5156 before_byte = PT_BYTE;
5158 /* If the output marker is outside of the visible region, save
5159 the restriction and widen. */
5160 if (! (BEGV <= PT && PT <= ZV))
5161 Fwiden ();
5163 decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt);
5164 text = coding->dst_object;
5165 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5166 /* A new coding system might be found. See the comment in the
5167 similar code in the previous `if' block. */
5168 if (!EQ (p->decode_coding_system, Vlast_coding_system_used))
5170 pset_decode_coding_system (p, Vlast_coding_system_used);
5171 if (NILP (p->encode_coding_system)
5172 && proc_encode_coding_system[p->outfd])
5174 pset_encode_coding_system
5175 (p, coding_inherit_eol_type (Vlast_coding_system_used, Qnil));
5176 setup_coding_system (p->encode_coding_system,
5177 proc_encode_coding_system[p->outfd]);
5180 if (coding->carryover_bytes > 0)
5182 if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
5183 pset_decoding_buf (p, make_uninit_string (coding->carryover_bytes));
5184 memcpy (SDATA (p->decoding_buf), coding->carryover,
5185 coding->carryover_bytes);
5186 p->decoding_carryover = coding->carryover_bytes;
5188 /* Adjust the multibyteness of TEXT to that of the buffer. */
5189 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
5190 != ! STRING_MULTIBYTE (text))
5191 text = (STRING_MULTIBYTE (text)
5192 ? Fstring_as_unibyte (text)
5193 : Fstring_to_multibyte (text));
5194 /* Insert before markers in case we are inserting where
5195 the buffer's mark is, and the user's next command is Meta-y. */
5196 insert_from_string_before_markers (text, 0, 0,
5197 SCHARS (text), SBYTES (text), 0);
5199 /* Make sure the process marker's position is valid when the
5200 process buffer is changed in the signal_after_change above.
5201 W3 is known to do that. */
5202 if (BUFFERP (p->buffer)
5203 && (b = XBUFFER (p->buffer), b != current_buffer))
5204 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
5205 else
5206 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
5208 update_mode_lines++;
5210 /* Make sure opoint and the old restrictions
5211 float ahead of any new text just as point would. */
5212 if (opoint >= before)
5214 opoint += PT - before;
5215 opoint_byte += PT_BYTE - before_byte;
5217 if (old_begv > before)
5219 old_begv += PT - before;
5220 old_begv_byte += PT_BYTE - before_byte;
5222 if (old_zv >= before)
5224 old_zv += PT - before;
5225 old_zv_byte += PT_BYTE - before_byte;
5228 /* If the restriction isn't what it should be, set it. */
5229 if (old_begv != BEGV || old_zv != ZV)
5230 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
5233 bset_read_only (current_buffer, old_read_only);
5234 SET_PT_BOTH (opoint, opoint_byte);
5236 /* Handling the process output should not deactivate the mark. */
5237 Vdeactivate_mark = odeactivate;
5239 unbind_to (count, Qnil);
5240 return nbytes;
5243 /* Sending data to subprocess */
5245 /* In send_process, when a write fails temporarily,
5246 wait_reading_process_output is called. It may execute user code,
5247 e.g. timers, that attempts to write new data to the same process.
5248 We must ensure that data is sent in the right order, and not
5249 interspersed half-completed with other writes (Bug#10815). This is
5250 handled by the write_queue element of struct process. It is a list
5251 with each entry having the form
5253 (string . (offset . length))
5255 where STRING is a lisp string, OFFSET is the offset into the
5256 string's byte sequence from which we should begin to send, and
5257 LENGTH is the number of bytes left to send. */
5259 /* Create a new entry in write_queue.
5260 INPUT_OBJ should be a buffer, string Qt, or Qnil.
5261 BUF is a pointer to the string sequence of the input_obj or a C
5262 string in case of Qt or Qnil. */
5264 static void
5265 write_queue_push (struct Lisp_Process *p, Lisp_Object input_obj,
5266 const char *buf, ptrdiff_t len, bool front)
5268 ptrdiff_t offset;
5269 Lisp_Object entry, obj;
5271 if (STRINGP (input_obj))
5273 offset = buf - SSDATA (input_obj);
5274 obj = input_obj;
5276 else
5278 offset = 0;
5279 obj = make_unibyte_string (buf, len);
5282 entry = Fcons (obj, Fcons (make_number (offset), make_number (len)));
5284 if (front)
5285 pset_write_queue (p, Fcons (entry, p->write_queue));
5286 else
5287 pset_write_queue (p, nconc2 (p->write_queue, Fcons (entry, Qnil)));
5290 /* Remove the first element in the write_queue of process P, put its
5291 contents in OBJ, BUF and LEN, and return true. If the
5292 write_queue is empty, return false. */
5294 static bool
5295 write_queue_pop (struct Lisp_Process *p, Lisp_Object *obj,
5296 const char **buf, ptrdiff_t *len)
5298 Lisp_Object entry, offset_length;
5299 ptrdiff_t offset;
5301 if (NILP (p->write_queue))
5302 return 0;
5304 entry = XCAR (p->write_queue);
5305 pset_write_queue (p, XCDR (p->write_queue));
5307 *obj = XCAR (entry);
5308 offset_length = XCDR (entry);
5310 *len = XINT (XCDR (offset_length));
5311 offset = XINT (XCAR (offset_length));
5312 *buf = SSDATA (*obj) + offset;
5314 return 1;
5317 /* Send some data to process PROC.
5318 BUF is the beginning of the data; LEN is the number of characters.
5319 OBJECT is the Lisp object that the data comes from. If OBJECT is
5320 nil or t, it means that the data comes from C string.
5322 If OBJECT is not nil, the data is encoded by PROC's coding-system
5323 for encoding before it is sent.
5325 This function can evaluate Lisp code and can garbage collect. */
5327 static void
5328 send_process (Lisp_Object proc, const char *buf, ptrdiff_t len,
5329 Lisp_Object object)
5331 struct Lisp_Process *p = XPROCESS (proc);
5332 ssize_t rv;
5333 struct coding_system *coding;
5335 if (p->raw_status_new)
5336 update_status (p);
5337 if (! EQ (p->status, Qrun))
5338 error ("Process %s not running", SDATA (p->name));
5339 if (p->outfd < 0)
5340 error ("Output file descriptor of %s is closed", SDATA (p->name));
5342 coding = proc_encode_coding_system[p->outfd];
5343 Vlast_coding_system_used = CODING_ID_NAME (coding->id);
5345 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5346 || (BUFFERP (object)
5347 && !NILP (BVAR (XBUFFER (object), enable_multibyte_characters)))
5348 || EQ (object, Qt))
5350 pset_encode_coding_system
5351 (p, complement_process_encoding_system (p->encode_coding_system));
5352 if (!EQ (Vlast_coding_system_used, p->encode_coding_system))
5354 /* The coding system for encoding was changed to raw-text
5355 because we sent a unibyte text previously. Now we are
5356 sending a multibyte text, thus we must encode it by the
5357 original coding system specified for the current process.
5359 Another reason we come here is that the coding system
5360 was just complemented and a new one was returned by
5361 complement_process_encoding_system. */
5362 setup_coding_system (p->encode_coding_system, coding);
5363 Vlast_coding_system_used = p->encode_coding_system;
5365 coding->src_multibyte = 1;
5367 else
5369 coding->src_multibyte = 0;
5370 /* For sending a unibyte text, character code conversion should
5371 not take place but EOL conversion should. So, setup raw-text
5372 or one of the subsidiary if we have not yet done it. */
5373 if (CODING_REQUIRE_ENCODING (coding))
5375 if (CODING_REQUIRE_FLUSHING (coding))
5377 /* But, before changing the coding, we must flush out data. */
5378 coding->mode |= CODING_MODE_LAST_BLOCK;
5379 send_process (proc, "", 0, Qt);
5380 coding->mode &= CODING_MODE_LAST_BLOCK;
5382 setup_coding_system (raw_text_coding_system
5383 (Vlast_coding_system_used),
5384 coding);
5385 coding->src_multibyte = 0;
5388 coding->dst_multibyte = 0;
5390 if (CODING_REQUIRE_ENCODING (coding))
5392 coding->dst_object = Qt;
5393 if (BUFFERP (object))
5395 ptrdiff_t from_byte, from, to;
5396 ptrdiff_t save_pt, save_pt_byte;
5397 struct buffer *cur = current_buffer;
5399 set_buffer_internal (XBUFFER (object));
5400 save_pt = PT, save_pt_byte = PT_BYTE;
5402 from_byte = PTR_BYTE_POS ((unsigned char *) buf);
5403 from = BYTE_TO_CHAR (from_byte);
5404 to = BYTE_TO_CHAR (from_byte + len);
5405 TEMP_SET_PT_BOTH (from, from_byte);
5406 encode_coding_object (coding, object, from, from_byte,
5407 to, from_byte + len, Qt);
5408 TEMP_SET_PT_BOTH (save_pt, save_pt_byte);
5409 set_buffer_internal (cur);
5411 else if (STRINGP (object))
5413 encode_coding_object (coding, object, 0, 0, SCHARS (object),
5414 SBYTES (object), Qt);
5416 else
5418 coding->dst_object = make_unibyte_string (buf, len);
5419 coding->produced = len;
5422 len = coding->produced;
5423 object = coding->dst_object;
5424 buf = SSDATA (object);
5427 /* If there is already data in the write_queue, put the new data
5428 in the back of queue. Otherwise, ignore it. */
5429 if (!NILP (p->write_queue))
5430 write_queue_push (p, object, buf, len, 0);
5432 do /* while !NILP (p->write_queue) */
5434 ptrdiff_t cur_len = -1;
5435 const char *cur_buf;
5436 Lisp_Object cur_object;
5438 /* If write_queue is empty, ignore it. */
5439 if (!write_queue_pop (p, &cur_object, &cur_buf, &cur_len))
5441 cur_len = len;
5442 cur_buf = buf;
5443 cur_object = object;
5446 while (cur_len > 0)
5448 /* Send this batch, using one or more write calls. */
5449 ptrdiff_t written = 0;
5450 int outfd = p->outfd;
5451 #ifdef DATAGRAM_SOCKETS
5452 if (DATAGRAM_CHAN_P (outfd))
5454 rv = sendto (outfd, cur_buf, cur_len,
5455 0, datagram_address[outfd].sa,
5456 datagram_address[outfd].len);
5457 if (0 <= rv)
5458 written = rv;
5459 else if (errno == EMSGSIZE)
5460 report_file_error ("sending datagram", Fcons (proc, Qnil));
5462 else
5463 #endif
5465 #ifdef HAVE_GNUTLS
5466 if (p->gnutls_p)
5467 written = emacs_gnutls_write (p, cur_buf, cur_len);
5468 else
5469 #endif
5470 written = emacs_write (outfd, cur_buf, cur_len);
5471 rv = (written ? 0 : -1);
5472 #ifdef ADAPTIVE_READ_BUFFERING
5473 if (p->read_output_delay > 0
5474 && p->adaptive_read_buffering == 1)
5476 p->read_output_delay = 0;
5477 process_output_delay_count--;
5478 p->read_output_skip = 0;
5480 #endif
5483 if (rv < 0)
5485 if (errno == EAGAIN
5486 #ifdef EWOULDBLOCK
5487 || errno == EWOULDBLOCK
5488 #endif
5490 /* Buffer is full. Wait, accepting input;
5491 that may allow the program
5492 to finish doing output and read more. */
5494 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
5495 /* A gross hack to work around a bug in FreeBSD.
5496 In the following sequence, read(2) returns
5497 bogus data:
5499 write(2) 1022 bytes
5500 write(2) 954 bytes, get EAGAIN
5501 read(2) 1024 bytes in process_read_output
5502 read(2) 11 bytes in process_read_output
5504 That is, read(2) returns more bytes than have
5505 ever been written successfully. The 1033 bytes
5506 read are the 1022 bytes written successfully
5507 after processing (for example with CRs added if
5508 the terminal is set up that way which it is
5509 here). The same bytes will be seen again in a
5510 later read(2), without the CRs. */
5512 if (errno == EAGAIN)
5514 int flags = FWRITE;
5515 ioctl (p->outfd, TIOCFLUSH, &flags);
5517 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
5519 /* Put what we should have written in wait_queue. */
5520 write_queue_push (p, cur_object, cur_buf, cur_len, 1);
5521 wait_reading_process_output (0, 20 * 1000 * 1000,
5522 0, 0, Qnil, NULL, 0);
5523 /* Reread queue, to see what is left. */
5524 break;
5526 else if (errno == EPIPE)
5528 p->raw_status_new = 0;
5529 pset_status (p, list2 (Qexit, make_number (256)));
5530 p->tick = ++process_tick;
5531 deactivate_process (proc);
5532 error ("process %s no longer connected to pipe; closed it",
5533 SDATA (p->name));
5535 else
5536 /* This is a real error. */
5537 report_file_error ("writing to process", Fcons (proc, Qnil));
5539 cur_buf += written;
5540 cur_len -= written;
5543 while (!NILP (p->write_queue));
5546 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
5547 3, 3, 0,
5548 doc: /* Send current contents of region as input to PROCESS.
5549 PROCESS may be a process, a buffer, the name of a process or buffer, or
5550 nil, indicating the current buffer's process.
5551 Called from program, takes three arguments, PROCESS, START and END.
5552 If the region is more than 500 characters long,
5553 it is sent in several bunches. This may happen even for shorter regions.
5554 Output from processes can arrive in between bunches. */)
5555 (Lisp_Object process, Lisp_Object start, Lisp_Object end)
5557 Lisp_Object proc = get_process (process);
5558 ptrdiff_t start_byte, end_byte;
5560 validate_region (&start, &end);
5562 start_byte = CHAR_TO_BYTE (XINT (start));
5563 end_byte = CHAR_TO_BYTE (XINT (end));
5565 if (XINT (start) < GPT && XINT (end) > GPT)
5566 move_gap_both (XINT (start), start_byte);
5568 send_process (proc, (char *) BYTE_POS_ADDR (start_byte),
5569 end_byte - start_byte, Fcurrent_buffer ());
5571 return Qnil;
5574 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
5575 2, 2, 0,
5576 doc: /* Send PROCESS the contents of STRING as input.
5577 PROCESS may be a process, a buffer, the name of a process or buffer, or
5578 nil, indicating the current buffer's process.
5579 If STRING is more than 500 characters long,
5580 it is sent in several bunches. This may happen even for shorter strings.
5581 Output from processes can arrive in between bunches. */)
5582 (Lisp_Object process, Lisp_Object string)
5584 Lisp_Object proc;
5585 CHECK_STRING (string);
5586 proc = get_process (process);
5587 send_process (proc, SSDATA (string),
5588 SBYTES (string), string);
5589 return Qnil;
5592 /* Return the foreground process group for the tty/pty that
5593 the process P uses. */
5594 static pid_t
5595 emacs_get_tty_pgrp (struct Lisp_Process *p)
5597 pid_t gid = -1;
5599 #ifdef TIOCGPGRP
5600 if (ioctl (p->infd, TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
5602 int fd;
5603 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5604 master side. Try the slave side. */
5605 fd = emacs_open (SSDATA (p->tty_name), O_RDONLY, 0);
5607 if (fd != -1)
5609 ioctl (fd, TIOCGPGRP, &gid);
5610 emacs_close (fd);
5613 #endif /* defined (TIOCGPGRP ) */
5615 return gid;
5618 DEFUN ("process-running-child-p", Fprocess_running_child_p,
5619 Sprocess_running_child_p, 0, 1, 0,
5620 doc: /* Return t if PROCESS has given the terminal to a child.
5621 If the operating system does not make it possible to find out,
5622 return t unconditionally. */)
5623 (Lisp_Object process)
5625 /* Initialize in case ioctl doesn't exist or gives an error,
5626 in a way that will cause returning t. */
5627 pid_t gid;
5628 Lisp_Object proc;
5629 struct Lisp_Process *p;
5631 proc = get_process (process);
5632 p = XPROCESS (proc);
5634 if (!EQ (p->type, Qreal))
5635 error ("Process %s is not a subprocess",
5636 SDATA (p->name));
5637 if (p->infd < 0)
5638 error ("Process %s is not active",
5639 SDATA (p->name));
5641 gid = emacs_get_tty_pgrp (p);
5643 if (gid == p->pid)
5644 return Qnil;
5645 return Qt;
5648 /* send a signal number SIGNO to PROCESS.
5649 If CURRENT_GROUP is t, that means send to the process group
5650 that currently owns the terminal being used to communicate with PROCESS.
5651 This is used for various commands in shell mode.
5652 If CURRENT_GROUP is lambda, that means send to the process group
5653 that currently owns the terminal, but only if it is NOT the shell itself.
5655 If NOMSG is false, insert signal-announcements into process's buffers
5656 right away.
5658 If we can, we try to signal PROCESS by sending control characters
5659 down the pty. This allows us to signal inferiors who have changed
5660 their uid, for which kill would return an EPERM error. */
5662 static void
5663 process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
5664 bool nomsg)
5666 Lisp_Object proc;
5667 struct Lisp_Process *p;
5668 pid_t gid;
5669 bool no_pgrp = 0;
5671 proc = get_process (process);
5672 p = XPROCESS (proc);
5674 if (!EQ (p->type, Qreal))
5675 error ("Process %s is not a subprocess",
5676 SDATA (p->name));
5677 if (p->infd < 0)
5678 error ("Process %s is not active",
5679 SDATA (p->name));
5681 if (!p->pty_flag)
5682 current_group = Qnil;
5684 /* If we are using pgrps, get a pgrp number and make it negative. */
5685 if (NILP (current_group))
5686 /* Send the signal to the shell's process group. */
5687 gid = p->pid;
5688 else
5690 #ifdef SIGNALS_VIA_CHARACTERS
5691 /* If possible, send signals to the entire pgrp
5692 by sending an input character to it. */
5694 struct termios t;
5695 cc_t *sig_char = NULL;
5697 tcgetattr (p->infd, &t);
5699 switch (signo)
5701 case SIGINT:
5702 sig_char = &t.c_cc[VINTR];
5703 break;
5705 case SIGQUIT:
5706 sig_char = &t.c_cc[VQUIT];
5707 break;
5709 case SIGTSTP:
5710 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
5711 sig_char = &t.c_cc[VSWTCH];
5712 #else
5713 sig_char = &t.c_cc[VSUSP];
5714 #endif
5715 break;
5718 if (sig_char && *sig_char != CDISABLE)
5720 send_process (proc, (char *) sig_char, 1, Qnil);
5721 return;
5723 /* If we can't send the signal with a character,
5724 fall through and send it another way. */
5726 /* The code above may fall through if it can't
5727 handle the signal. */
5728 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
5730 #ifdef TIOCGPGRP
5731 /* Get the current pgrp using the tty itself, if we have that.
5732 Otherwise, use the pty to get the pgrp.
5733 On pfa systems, saka@pfu.fujitsu.co.JP writes:
5734 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
5735 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
5736 His patch indicates that if TIOCGPGRP returns an error, then
5737 we should just assume that p->pid is also the process group id. */
5739 gid = emacs_get_tty_pgrp (p);
5741 if (gid == -1)
5742 /* If we can't get the information, assume
5743 the shell owns the tty. */
5744 gid = p->pid;
5746 /* It is not clear whether anything really can set GID to -1.
5747 Perhaps on some system one of those ioctls can or could do so.
5748 Or perhaps this is vestigial. */
5749 if (gid == -1)
5750 no_pgrp = 1;
5751 #else /* ! defined (TIOCGPGRP ) */
5752 /* Can't select pgrps on this system, so we know that
5753 the child itself heads the pgrp. */
5754 gid = p->pid;
5755 #endif /* ! defined (TIOCGPGRP ) */
5757 /* If current_group is lambda, and the shell owns the terminal,
5758 don't send any signal. */
5759 if (EQ (current_group, Qlambda) && gid == p->pid)
5760 return;
5763 switch (signo)
5765 #ifdef SIGCONT
5766 case SIGCONT:
5767 p->raw_status_new = 0;
5768 pset_status (p, Qrun);
5769 p->tick = ++process_tick;
5770 if (!nomsg)
5772 status_notify (NULL);
5773 redisplay_preserve_echo_area (13);
5775 break;
5776 #endif /* ! defined (SIGCONT) */
5777 case SIGINT:
5778 case SIGQUIT:
5779 case SIGKILL:
5780 flush_pending_output (p->infd);
5781 break;
5784 /* If we don't have process groups, send the signal to the immediate
5785 subprocess. That isn't really right, but it's better than any
5786 obvious alternative. */
5787 if (no_pgrp)
5789 kill (p->pid, signo);
5790 return;
5793 /* gid may be a pid, or minus a pgrp's number */
5794 #ifdef TIOCSIGSEND
5795 if (!NILP (current_group))
5797 if (ioctl (p->infd, TIOCSIGSEND, signo) == -1)
5798 kill (-gid, signo);
5800 else
5802 gid = - p->pid;
5803 kill (gid, signo);
5805 #else /* ! defined (TIOCSIGSEND) */
5806 kill (-gid, signo);
5807 #endif /* ! defined (TIOCSIGSEND) */
5810 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
5811 doc: /* Interrupt process PROCESS.
5812 PROCESS may be a process, a buffer, or the name of a process or buffer.
5813 No arg or nil means current buffer's process.
5814 Second arg CURRENT-GROUP non-nil means send signal to
5815 the current process-group of the process's controlling terminal
5816 rather than to the process's own process group.
5817 If the process is a shell, this means interrupt current subjob
5818 rather than the shell.
5820 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
5821 don't send the signal. */)
5822 (Lisp_Object process, Lisp_Object current_group)
5824 process_send_signal (process, SIGINT, current_group, 0);
5825 return process;
5828 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
5829 doc: /* Kill process PROCESS. May be process or name of one.
5830 See function `interrupt-process' for more details on usage. */)
5831 (Lisp_Object process, Lisp_Object current_group)
5833 process_send_signal (process, SIGKILL, current_group, 0);
5834 return process;
5837 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
5838 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
5839 See function `interrupt-process' for more details on usage. */)
5840 (Lisp_Object process, Lisp_Object current_group)
5842 process_send_signal (process, SIGQUIT, current_group, 0);
5843 return process;
5846 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
5847 doc: /* Stop process PROCESS. May be process or name of one.
5848 See function `interrupt-process' for more details on usage.
5849 If PROCESS is a network or serial process, inhibit handling of incoming
5850 traffic. */)
5851 (Lisp_Object process, Lisp_Object current_group)
5853 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
5855 struct Lisp_Process *p;
5857 p = XPROCESS (process);
5858 if (NILP (p->command)
5859 && p->infd >= 0)
5861 FD_CLR (p->infd, &input_wait_mask);
5862 FD_CLR (p->infd, &non_keyboard_wait_mask);
5864 pset_command (p, Qt);
5865 return process;
5867 #ifndef SIGTSTP
5868 error ("No SIGTSTP support");
5869 #else
5870 process_send_signal (process, SIGTSTP, current_group, 0);
5871 #endif
5872 return process;
5875 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
5876 doc: /* Continue process PROCESS. May be process or name of one.
5877 See function `interrupt-process' for more details on usage.
5878 If PROCESS is a network or serial process, resume handling of incoming
5879 traffic. */)
5880 (Lisp_Object process, Lisp_Object current_group)
5882 if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process)))
5884 struct Lisp_Process *p;
5886 p = XPROCESS (process);
5887 if (EQ (p->command, Qt)
5888 && p->infd >= 0
5889 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
5891 FD_SET (p->infd, &input_wait_mask);
5892 FD_SET (p->infd, &non_keyboard_wait_mask);
5893 #ifdef WINDOWSNT
5894 if (fd_info[ p->infd ].flags & FILE_SERIAL)
5895 PurgeComm (fd_info[ p->infd ].hnd, PURGE_RXABORT | PURGE_RXCLEAR);
5896 #else /* not WINDOWSNT */
5897 tcflush (p->infd, TCIFLUSH);
5898 #endif /* not WINDOWSNT */
5900 pset_command (p, Qnil);
5901 return process;
5903 #ifdef SIGCONT
5904 process_send_signal (process, SIGCONT, current_group, 0);
5905 #else
5906 error ("No SIGCONT support");
5907 #endif
5908 return process;
5911 /* Return the integer value of the signal whose abbreviation is ABBR,
5912 or a negative number if there is no such signal. */
5913 static int
5914 abbr_to_signal (char const *name)
5916 int i, signo;
5917 char sigbuf[20]; /* Large enough for all valid signal abbreviations. */
5919 if (!strncmp (name, "SIG", 3) || !strncmp (name, "sig", 3))
5920 name += 3;
5922 for (i = 0; i < sizeof sigbuf; i++)
5924 sigbuf[i] = c_toupper (name[i]);
5925 if (! sigbuf[i])
5926 return str2sig (sigbuf, &signo) == 0 ? signo : -1;
5929 return -1;
5932 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
5933 2, 2, "sProcess (name or number): \nnSignal code: ",
5934 doc: /* Send PROCESS the signal with code SIGCODE.
5935 PROCESS may also be a number specifying the process id of the
5936 process to signal; in this case, the process need not be a child of
5937 this Emacs.
5938 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
5939 (Lisp_Object process, Lisp_Object sigcode)
5941 pid_t pid;
5942 int signo;
5944 if (STRINGP (process))
5946 Lisp_Object tem = Fget_process (process);
5947 if (NILP (tem))
5949 Lisp_Object process_number =
5950 string_to_number (SSDATA (process), 10, 1);
5951 if (INTEGERP (process_number) || FLOATP (process_number))
5952 tem = process_number;
5954 process = tem;
5956 else if (!NUMBERP (process))
5957 process = get_process (process);
5959 if (NILP (process))
5960 return process;
5962 if (NUMBERP (process))
5963 CONS_TO_INTEGER (process, pid_t, pid);
5964 else
5966 CHECK_PROCESS (process);
5967 pid = XPROCESS (process)->pid;
5968 if (pid <= 0)
5969 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
5972 if (INTEGERP (sigcode))
5974 CHECK_TYPE_RANGED_INTEGER (int, sigcode);
5975 signo = XINT (sigcode);
5977 else
5979 char *name;
5981 CHECK_SYMBOL (sigcode);
5982 name = SSDATA (SYMBOL_NAME (sigcode));
5984 signo = abbr_to_signal (name);
5985 if (signo < 0)
5986 error ("Undefined signal name %s", name);
5989 return make_number (kill (pid, signo));
5992 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
5993 doc: /* Make PROCESS see end-of-file in its input.
5994 EOF comes after any text already sent to it.
5995 PROCESS may be a process, a buffer, the name of a process or buffer, or
5996 nil, indicating the current buffer's process.
5997 If PROCESS is a network connection, or is a process communicating
5998 through a pipe (as opposed to a pty), then you cannot send any more
5999 text to PROCESS after you call this function.
6000 If PROCESS is a serial process, wait until all output written to the
6001 process has been transmitted to the serial port. */)
6002 (Lisp_Object process)
6004 Lisp_Object proc;
6005 struct coding_system *coding;
6007 if (DATAGRAM_CONN_P (process))
6008 return process;
6010 proc = get_process (process);
6011 coding = proc_encode_coding_system[XPROCESS (proc)->outfd];
6013 /* Make sure the process is really alive. */
6014 if (XPROCESS (proc)->raw_status_new)
6015 update_status (XPROCESS (proc));
6016 if (! EQ (XPROCESS (proc)->status, Qrun))
6017 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
6019 if (CODING_REQUIRE_FLUSHING (coding))
6021 coding->mode |= CODING_MODE_LAST_BLOCK;
6022 send_process (proc, "", 0, Qnil);
6025 if (XPROCESS (proc)->pty_flag)
6026 send_process (proc, "\004", 1, Qnil);
6027 else if (EQ (XPROCESS (proc)->type, Qserial))
6029 #ifndef WINDOWSNT
6030 if (tcdrain (XPROCESS (proc)->outfd) != 0)
6031 error ("tcdrain() failed: %s", emacs_strerror (errno));
6032 #endif /* not WINDOWSNT */
6033 /* Do nothing on Windows because writes are blocking. */
6035 else
6037 int old_outfd, new_outfd;
6039 #ifdef HAVE_SHUTDOWN
6040 /* If this is a network connection, or socketpair is used
6041 for communication with the subprocess, call shutdown to cause EOF.
6042 (In some old system, shutdown to socketpair doesn't work.
6043 Then we just can't win.) */
6044 if (EQ (XPROCESS (proc)->type, Qnetwork)
6045 || XPROCESS (proc)->outfd == XPROCESS (proc)->infd)
6046 shutdown (XPROCESS (proc)->outfd, 1);
6047 /* In case of socketpair, outfd == infd, so don't close it. */
6048 if (XPROCESS (proc)->outfd != XPROCESS (proc)->infd)
6049 emacs_close (XPROCESS (proc)->outfd);
6050 #else /* not HAVE_SHUTDOWN */
6051 emacs_close (XPROCESS (proc)->outfd);
6052 #endif /* not HAVE_SHUTDOWN */
6053 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
6054 if (new_outfd < 0)
6055 emacs_abort ();
6056 old_outfd = XPROCESS (proc)->outfd;
6058 if (!proc_encode_coding_system[new_outfd])
6059 proc_encode_coding_system[new_outfd]
6060 = xmalloc (sizeof (struct coding_system));
6061 *proc_encode_coding_system[new_outfd]
6062 = *proc_encode_coding_system[old_outfd];
6063 memset (proc_encode_coding_system[old_outfd], 0,
6064 sizeof (struct coding_system));
6066 XPROCESS (proc)->outfd = new_outfd;
6068 return process;
6071 /* The main Emacs thread records child processes in three places:
6073 - Vprocess_alist, for asynchronous subprocesses, which are child
6074 processes visible to Lisp.
6076 - deleted_pid_list, for child processes invisible to Lisp,
6077 typically because of delete-process. These are recorded so that
6078 the processes can be reaped when they exit, so that the operating
6079 system's process table is not cluttered by zombies.
6081 - the local variable PID in Fcall_process, call_process_cleanup and
6082 call_process_kill, for synchronous subprocesses.
6083 record_unwind_protect is used to make sure this process is not
6084 forgotten: if the user interrupts call-process and the child
6085 process refuses to exit immediately even with two C-g's,
6086 call_process_kill adds PID's contents to deleted_pid_list before
6087 returning.
6089 The main Emacs thread invokes waitpid only on child processes that
6090 it creates and that have not been reaped. This avoid races on
6091 platforms such as GTK, where other threads create their own
6092 subprocesses which the main thread should not reap. For example,
6093 if the main thread attempted to reap an already-reaped child, it
6094 might inadvertently reap a GTK-created process that happened to
6095 have the same process ID. */
6097 /* Handle a SIGCHLD signal by looking for known child processes of
6098 Emacs whose status have changed. For each one found, record its
6099 new status.
6101 All we do is change the status; we do not run sentinels or print
6102 notifications. That is saved for the next time keyboard input is
6103 done, in order to avoid timing errors.
6105 ** WARNING: this can be called during garbage collection.
6106 Therefore, it must not be fooled by the presence of mark bits in
6107 Lisp objects.
6109 ** USG WARNING: Although it is not obvious from the documentation
6110 in signal(2), on a USG system the SIGCLD handler MUST NOT call
6111 signal() before executing at least one wait(), otherwise the
6112 handler will be called again, resulting in an infinite loop. The
6113 relevant portion of the documentation reads "SIGCLD signals will be
6114 queued and the signal-catching function will be continually
6115 reentered until the queue is empty". Invoking signal() causes the
6116 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
6117 Inc.
6119 ** Malloc WARNING: This should never call malloc either directly or
6120 indirectly; if it does, that is a bug */
6122 static void
6123 handle_child_signal (int sig)
6125 Lisp_Object tail;
6127 /* Find the process that signaled us, and record its status. */
6129 /* The process can have been deleted by Fdelete_process, or have
6130 been started asynchronously by Fcall_process. */
6131 for (tail = deleted_pid_list; CONSP (tail); tail = XCDR (tail))
6133 bool all_pids_are_fixnums
6134 = (MOST_NEGATIVE_FIXNUM <= TYPE_MINIMUM (pid_t)
6135 && TYPE_MAXIMUM (pid_t) <= MOST_POSITIVE_FIXNUM);
6136 Lisp_Object xpid = XCAR (tail);
6137 if (all_pids_are_fixnums ? INTEGERP (xpid) : NUMBERP (xpid))
6139 pid_t deleted_pid;
6140 if (INTEGERP (xpid))
6141 deleted_pid = XINT (xpid);
6142 else
6143 deleted_pid = XFLOAT_DATA (xpid);
6144 if (child_status_changed (deleted_pid, 0, 0))
6145 XSETCAR (tail, Qnil);
6149 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
6150 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6152 Lisp_Object proc = XCDR (XCAR (tail));
6153 struct Lisp_Process *p = XPROCESS (proc);
6154 int status;
6156 if (p->alive && child_status_changed (p->pid, &status, WUNTRACED))
6158 /* Change the status of the process that was found. */
6159 p->tick = ++process_tick;
6160 p->raw_status = status;
6161 p->raw_status_new = 1;
6163 /* If process has terminated, stop waiting for its output. */
6164 if (WIFSIGNALED (status) || WIFEXITED (status))
6166 bool clear_desc_flag = 0;
6167 p->alive = 0;
6168 if (p->infd >= 0)
6169 clear_desc_flag = 1;
6171 /* clear_desc_flag avoids a compiler bug in Microsoft C. */
6172 if (clear_desc_flag)
6174 FD_CLR (p->infd, &input_wait_mask);
6175 FD_CLR (p->infd, &non_keyboard_wait_mask);
6182 static void
6183 deliver_child_signal (int sig)
6185 deliver_process_signal (sig, handle_child_signal);
6189 static Lisp_Object
6190 exec_sentinel_unwind (Lisp_Object data)
6192 pset_sentinel (XPROCESS (XCAR (data)), XCDR (data));
6193 return Qnil;
6196 static Lisp_Object
6197 exec_sentinel_error_handler (Lisp_Object error_val)
6199 cmd_error_internal (error_val, "error in process sentinel: ");
6200 Vinhibit_quit = Qt;
6201 update_echo_area ();
6202 Fsleep_for (make_number (2), Qnil);
6203 return Qt;
6206 static void
6207 exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6209 Lisp_Object sentinel, odeactivate;
6210 struct Lisp_Process *p = XPROCESS (proc);
6211 ptrdiff_t count = SPECPDL_INDEX ();
6212 bool outer_running_asynch_code = running_asynch_code;
6213 int waiting = waiting_for_user_input_p;
6215 if (inhibit_sentinels)
6216 return;
6218 /* No need to gcpro these, because all we do with them later
6219 is test them for EQness, and none of them should be a string. */
6220 odeactivate = Vdeactivate_mark;
6221 #if 0
6222 Lisp_Object obuffer, okeymap;
6223 XSETBUFFER (obuffer, current_buffer);
6224 okeymap = BVAR (current_buffer, keymap);
6225 #endif
6227 /* There's no good reason to let sentinels change the current
6228 buffer, and many callers of accept-process-output, sit-for, and
6229 friends don't expect current-buffer to be changed from under them. */
6230 record_unwind_current_buffer ();
6232 sentinel = p->sentinel;
6233 if (NILP (sentinel))
6234 return;
6236 /* Zilch the sentinel while it's running, to avoid recursive invocations;
6237 assure that it gets restored no matter how the sentinel exits. */
6238 pset_sentinel (p, Qnil);
6239 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
6240 /* Inhibit quit so that random quits don't screw up a running filter. */
6241 specbind (Qinhibit_quit, Qt);
6242 specbind (Qlast_nonmenu_event, Qt); /* Why? --Stef */
6244 /* In case we get recursively called,
6245 and we already saved the match data nonrecursively,
6246 save the same match data in safely recursive fashion. */
6247 if (outer_running_asynch_code)
6249 Lisp_Object tem;
6250 tem = Fmatch_data (Qnil, Qnil, Qnil);
6251 restore_search_regs ();
6252 record_unwind_save_match_data ();
6253 Fset_match_data (tem, Qt);
6256 /* For speed, if a search happens within this code,
6257 save the match data in a special nonrecursive fashion. */
6258 running_asynch_code = 1;
6260 internal_condition_case_1 (read_process_output_call,
6261 Fcons (sentinel,
6262 Fcons (proc, Fcons (reason, Qnil))),
6263 !NILP (Vdebug_on_error) ? Qnil : Qerror,
6264 exec_sentinel_error_handler);
6266 /* If we saved the match data nonrecursively, restore it now. */
6267 restore_search_regs ();
6268 running_asynch_code = outer_running_asynch_code;
6270 Vdeactivate_mark = odeactivate;
6272 /* Restore waiting_for_user_input_p as it was
6273 when we were called, in case the filter clobbered it. */
6274 waiting_for_user_input_p = waiting;
6276 #if 0
6277 if (! EQ (Fcurrent_buffer (), obuffer)
6278 || ! EQ (current_buffer->keymap, okeymap))
6279 #endif
6280 /* But do it only if the caller is actually going to read events.
6281 Otherwise there's no need to make him wake up, and it could
6282 cause trouble (for example it would make sit_for return). */
6283 if (waiting_for_user_input_p == -1)
6284 record_asynch_buffer_change ();
6286 unbind_to (count, Qnil);
6289 /* Report all recent events of a change in process status
6290 (either run the sentinel or output a message).
6291 This is usually done while Emacs is waiting for keyboard input
6292 but can be done at other times. */
6294 static void
6295 status_notify (struct Lisp_Process *deleting_process)
6297 register Lisp_Object proc, buffer;
6298 Lisp_Object tail, msg;
6299 struct gcpro gcpro1, gcpro2;
6301 tail = Qnil;
6302 msg = Qnil;
6303 /* We need to gcpro tail; if read_process_output calls a filter
6304 which deletes a process and removes the cons to which tail points
6305 from Vprocess_alist, and then causes a GC, tail is an unprotected
6306 reference. */
6307 GCPRO2 (tail, msg);
6309 /* Set this now, so that if new processes are created by sentinels
6310 that we run, we get called again to handle their status changes. */
6311 update_tick = process_tick;
6313 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6315 Lisp_Object symbol;
6316 register struct Lisp_Process *p;
6318 proc = Fcdr (XCAR (tail));
6319 p = XPROCESS (proc);
6321 if (p->tick != p->update_tick)
6323 p->update_tick = p->tick;
6325 /* If process is still active, read any output that remains. */
6326 while (! EQ (p->filter, Qt)
6327 && ! EQ (p->status, Qconnect)
6328 && ! EQ (p->status, Qlisten)
6329 /* Network or serial process not stopped: */
6330 && ! EQ (p->command, Qt)
6331 && p->infd >= 0
6332 && p != deleting_process
6333 && read_process_output (proc, p->infd) > 0);
6335 buffer = p->buffer;
6337 /* Get the text to use for the message. */
6338 if (p->raw_status_new)
6339 update_status (p);
6340 msg = status_message (p);
6342 /* If process is terminated, deactivate it or delete it. */
6343 symbol = p->status;
6344 if (CONSP (p->status))
6345 symbol = XCAR (p->status);
6347 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
6348 || EQ (symbol, Qclosed))
6350 if (delete_exited_processes)
6351 remove_process (proc);
6352 else
6353 deactivate_process (proc);
6356 /* The actions above may have further incremented p->tick.
6357 So set p->update_tick again
6358 so that an error in the sentinel will not cause
6359 this code to be run again. */
6360 p->update_tick = p->tick;
6361 /* Now output the message suitably. */
6362 if (!NILP (p->sentinel))
6363 exec_sentinel (proc, msg);
6364 /* Don't bother with a message in the buffer
6365 when a process becomes runnable. */
6366 else if (!EQ (symbol, Qrun) && !NILP (buffer))
6368 Lisp_Object tem;
6369 struct buffer *old = current_buffer;
6370 ptrdiff_t opoint, opoint_byte;
6371 ptrdiff_t before, before_byte;
6373 /* Avoid error if buffer is deleted
6374 (probably that's why the process is dead, too) */
6375 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
6376 continue;
6377 Fset_buffer (buffer);
6379 opoint = PT;
6380 opoint_byte = PT_BYTE;
6381 /* Insert new output into buffer
6382 at the current end-of-output marker,
6383 thus preserving logical ordering of input and output. */
6384 if (XMARKER (p->mark)->buffer)
6385 Fgoto_char (p->mark);
6386 else
6387 SET_PT_BOTH (ZV, ZV_BYTE);
6389 before = PT;
6390 before_byte = PT_BYTE;
6392 tem = BVAR (current_buffer, read_only);
6393 bset_read_only (current_buffer, Qnil);
6394 insert_string ("\nProcess ");
6395 { /* FIXME: temporary kludge */
6396 Lisp_Object tem2 = p->name; Finsert (1, &tem2); }
6397 insert_string (" ");
6398 Finsert (1, &msg);
6399 bset_read_only (current_buffer, tem);
6400 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
6402 if (opoint >= before)
6403 SET_PT_BOTH (opoint + (PT - before),
6404 opoint_byte + (PT_BYTE - before_byte));
6405 else
6406 SET_PT_BOTH (opoint, opoint_byte);
6408 set_buffer_internal (old);
6411 } /* end for */
6413 update_mode_lines++; /* in case buffers use %s in mode-line-format */
6414 UNGCPRO;
6418 DEFUN ("set-process-coding-system", Fset_process_coding_system,
6419 Sset_process_coding_system, 1, 3, 0,
6420 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6421 DECODING will be used to decode subprocess output and ENCODING to
6422 encode subprocess input. */)
6423 (register Lisp_Object process, Lisp_Object decoding, Lisp_Object encoding)
6425 register struct Lisp_Process *p;
6427 CHECK_PROCESS (process);
6428 p = XPROCESS (process);
6429 if (p->infd < 0)
6430 error ("Input file descriptor of %s closed", SDATA (p->name));
6431 if (p->outfd < 0)
6432 error ("Output file descriptor of %s closed", SDATA (p->name));
6433 Fcheck_coding_system (decoding);
6434 Fcheck_coding_system (encoding);
6435 encoding = coding_inherit_eol_type (encoding, Qnil);
6436 pset_decode_coding_system (p, decoding);
6437 pset_encode_coding_system (p, encoding);
6438 setup_process_coding_systems (process);
6440 return Qnil;
6443 DEFUN ("process-coding-system",
6444 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
6445 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
6446 (register Lisp_Object process)
6448 CHECK_PROCESS (process);
6449 return Fcons (XPROCESS (process)->decode_coding_system,
6450 XPROCESS (process)->encode_coding_system);
6453 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
6454 Sset_process_filter_multibyte, 2, 2, 0,
6455 doc: /* Set multibyteness of the strings given to PROCESS's filter.
6456 If FLAG is non-nil, the filter is given multibyte strings.
6457 If FLAG is nil, the filter is given unibyte strings. In this case,
6458 all character code conversion except for end-of-line conversion is
6459 suppressed. */)
6460 (Lisp_Object process, Lisp_Object flag)
6462 register struct Lisp_Process *p;
6464 CHECK_PROCESS (process);
6465 p = XPROCESS (process);
6466 if (NILP (flag))
6467 pset_decode_coding_system
6468 (p, raw_text_coding_system (p->decode_coding_system));
6469 setup_process_coding_systems (process);
6471 return Qnil;
6474 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
6475 Sprocess_filter_multibyte_p, 1, 1, 0,
6476 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
6477 (Lisp_Object process)
6479 register struct Lisp_Process *p;
6480 struct coding_system *coding;
6482 CHECK_PROCESS (process);
6483 p = XPROCESS (process);
6484 coding = proc_decode_coding_system[p->infd];
6485 return (CODING_FOR_UNIBYTE (coding) ? Qnil : Qt);
6491 # ifdef HAVE_GPM
6493 void
6494 add_gpm_wait_descriptor (int desc)
6496 add_keyboard_wait_descriptor (desc);
6499 void
6500 delete_gpm_wait_descriptor (int desc)
6502 delete_keyboard_wait_descriptor (desc);
6505 # endif
6507 # ifdef USABLE_SIGIO
6509 /* Return true if *MASK has a bit set
6510 that corresponds to one of the keyboard input descriptors. */
6512 static bool
6513 keyboard_bit_set (fd_set *mask)
6515 int fd;
6517 for (fd = 0; fd <= max_input_desc; fd++)
6518 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
6519 && !FD_ISSET (fd, &non_keyboard_wait_mask))
6520 return 1;
6522 return 0;
6524 # endif
6526 #else /* not subprocesses */
6528 /* Defined on msdos.c. */
6529 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6530 EMACS_TIME *, void *);
6532 /* Implementation of wait_reading_process_output, assuming that there
6533 are no subprocesses. Used only by the MS-DOS build.
6535 Wait for timeout to elapse and/or keyboard input to be available.
6537 TIME_LIMIT is:
6538 timeout in seconds
6539 If negative, gobble data immediately available but don't wait for any.
6541 NSECS is:
6542 an additional duration to wait, measured in nanoseconds
6543 If TIME_LIMIT is zero, then:
6544 If NSECS == 0, there is no limit.
6545 If NSECS > 0, the timeout consists of NSECS only.
6546 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
6548 READ_KBD is:
6549 0 to ignore keyboard input, or
6550 1 to return when input is available, or
6551 -1 means caller will actually read the input, so don't throw to
6552 the quit handler.
6554 see full version for other parameters. We know that wait_proc will
6555 always be NULL, since `subprocesses' isn't defined.
6557 DO_DISPLAY means redisplay should be done to show subprocess
6558 output that arrives.
6560 Return true if we received input from any process. */
6562 bool
6563 wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
6564 bool do_display,
6565 Lisp_Object wait_for_cell,
6566 struct Lisp_Process *wait_proc, int just_wait_proc)
6568 register int nfds;
6569 EMACS_TIME end_time, timeout;
6571 if (time_limit < 0)
6573 time_limit = 0;
6574 nsecs = -1;
6576 else if (TYPE_MAXIMUM (time_t) < time_limit)
6577 time_limit = TYPE_MAXIMUM (time_t);
6579 /* What does time_limit really mean? */
6580 if (time_limit || 0 < nsecs)
6582 timeout = make_emacs_time (time_limit, nsecs);
6583 end_time = add_emacs_time (current_emacs_time (), timeout);
6586 /* Turn off periodic alarms (in case they are in use)
6587 and then turn off any other atimers,
6588 because the select emulator uses alarms. */
6589 stop_polling ();
6590 turn_on_atimers (0);
6592 while (1)
6594 bool timeout_reduced_for_timers = 0;
6595 SELECT_TYPE waitchannels;
6596 int xerrno;
6598 /* If calling from keyboard input, do not quit
6599 since we want to return C-g as an input character.
6600 Otherwise, do pending quit if requested. */
6601 if (read_kbd >= 0)
6602 QUIT;
6604 /* Exit now if the cell we're waiting for became non-nil. */
6605 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6606 break;
6608 /* Compute time from now till when time limit is up */
6609 /* Exit if already run out */
6610 if (nsecs < 0)
6612 /* A negative timeout means
6613 gobble output available now
6614 but don't wait at all. */
6616 timeout = make_emacs_time (0, 0);
6618 else if (time_limit || 0 < nsecs)
6620 EMACS_TIME now = current_emacs_time ();
6621 if (EMACS_TIME_LE (end_time, now))
6622 break;
6623 timeout = sub_emacs_time (end_time, now);
6625 else
6627 timeout = make_emacs_time (100000, 0);
6630 /* If our caller will not immediately handle keyboard events,
6631 run timer events directly.
6632 (Callers that will immediately read keyboard events
6633 call timer_delay on their own.) */
6634 if (NILP (wait_for_cell))
6636 EMACS_TIME timer_delay;
6640 unsigned old_timers_run = timers_run;
6641 timer_delay = timer_check ();
6642 if (timers_run != old_timers_run && do_display)
6643 /* We must retry, since a timer may have requeued itself
6644 and that could alter the time delay. */
6645 redisplay_preserve_echo_area (14);
6646 else
6647 break;
6649 while (!detect_input_pending ());
6651 /* If there is unread keyboard input, also return. */
6652 if (read_kbd != 0
6653 && requeued_events_pending_p ())
6654 break;
6656 if (EMACS_TIME_VALID_P (timer_delay) && 0 <= nsecs)
6658 if (EMACS_TIME_LT (timer_delay, timeout))
6660 timeout = timer_delay;
6661 timeout_reduced_for_timers = 1;
6666 /* Cause C-g and alarm signals to take immediate action,
6667 and cause input available signals to zero out timeout. */
6668 if (read_kbd < 0)
6669 set_waiting_for_input (&timeout);
6671 /* If a frame has been newly mapped and needs updating,
6672 reprocess its display stuff. */
6673 if (frame_garbaged && do_display)
6675 clear_waiting_for_input ();
6676 redisplay_preserve_echo_area (15);
6677 if (read_kbd < 0)
6678 set_waiting_for_input (&timeout);
6681 /* Wait till there is something to do. */
6682 FD_ZERO (&waitchannels);
6683 if (read_kbd && detect_input_pending ())
6684 nfds = 0;
6685 else
6687 if (read_kbd || !NILP (wait_for_cell))
6688 FD_SET (0, &waitchannels);
6689 nfds = pselect (1, &waitchannels, NULL, NULL, &timeout, NULL);
6692 xerrno = errno;
6694 /* Make C-g and alarm signals set flags again */
6695 clear_waiting_for_input ();
6697 /* If we woke up due to SIGWINCH, actually change size now. */
6698 do_pending_window_change (0);
6700 if ((time_limit || nsecs) && nfds == 0 && ! timeout_reduced_for_timers)
6701 /* We waited the full specified time, so return now. */
6702 break;
6704 if (nfds == -1)
6706 /* If the system call was interrupted, then go around the
6707 loop again. */
6708 if (xerrno == EINTR)
6709 FD_ZERO (&waitchannels);
6710 else
6711 error ("select error: %s", emacs_strerror (xerrno));
6714 /* Check for keyboard input */
6716 if (read_kbd
6717 && detect_input_pending_run_timers (do_display))
6719 swallow_events (do_display);
6720 if (detect_input_pending_run_timers (do_display))
6721 break;
6724 /* If there is unread keyboard input, also return. */
6725 if (read_kbd
6726 && requeued_events_pending_p ())
6727 break;
6729 /* If wait_for_cell. check for keyboard input
6730 but don't run any timers.
6731 ??? (It seems wrong to me to check for keyboard
6732 input at all when wait_for_cell, but the code
6733 has been this way since July 1994.
6734 Try changing this after version 19.31.) */
6735 if (! NILP (wait_for_cell)
6736 && detect_input_pending ())
6738 swallow_events (do_display);
6739 if (detect_input_pending ())
6740 break;
6743 /* Exit now if the cell we're waiting for became non-nil. */
6744 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
6745 break;
6748 start_polling ();
6750 return 0;
6753 #endif /* not subprocesses */
6755 /* The following functions are needed even if async subprocesses are
6756 not supported. Some of them are no-op stubs in that case. */
6758 /* Add DESC to the set of keyboard input descriptors. */
6760 void
6761 add_keyboard_wait_descriptor (int desc)
6763 #ifdef subprocesses /* actually means "not MSDOS" */
6764 FD_SET (desc, &input_wait_mask);
6765 FD_SET (desc, &non_process_wait_mask);
6766 if (desc > max_input_desc)
6767 max_input_desc = desc;
6768 #endif
6771 /* From now on, do not expect DESC to give keyboard input. */
6773 void
6774 delete_keyboard_wait_descriptor (int desc)
6776 #ifdef subprocesses
6777 int fd;
6778 int lim = max_input_desc;
6780 FD_CLR (desc, &input_wait_mask);
6781 FD_CLR (desc, &non_process_wait_mask);
6783 if (desc == max_input_desc)
6784 for (fd = 0; fd < lim; fd++)
6785 if (FD_ISSET (fd, &input_wait_mask) || FD_ISSET (fd, &write_mask))
6786 max_input_desc = fd;
6787 #endif
6790 /* Setup coding systems of PROCESS. */
6792 void
6793 setup_process_coding_systems (Lisp_Object process)
6795 #ifdef subprocesses
6796 struct Lisp_Process *p = XPROCESS (process);
6797 int inch = p->infd;
6798 int outch = p->outfd;
6799 Lisp_Object coding_system;
6801 if (inch < 0 || outch < 0)
6802 return;
6804 if (!proc_decode_coding_system[inch])
6805 proc_decode_coding_system[inch] = xmalloc (sizeof (struct coding_system));
6806 coding_system = p->decode_coding_system;
6807 if (! NILP (p->filter))
6809 else if (BUFFERP (p->buffer))
6811 if (NILP (BVAR (XBUFFER (p->buffer), enable_multibyte_characters)))
6812 coding_system = raw_text_coding_system (coding_system);
6814 setup_coding_system (coding_system, proc_decode_coding_system[inch]);
6816 if (!proc_encode_coding_system[outch])
6817 proc_encode_coding_system[outch] = xmalloc (sizeof (struct coding_system));
6818 setup_coding_system (p->encode_coding_system,
6819 proc_encode_coding_system[outch]);
6820 #endif
6823 /* Close all descriptors currently in use for communication
6824 with subprocess. This is used in a newly-forked subprocess
6825 to get rid of irrelevant descriptors. */
6827 void
6828 close_process_descs (void)
6830 #ifndef DOS_NT
6831 int i;
6832 for (i = 0; i < MAXDESC; i++)
6834 Lisp_Object process;
6835 process = chan_process[i];
6836 if (!NILP (process))
6838 int in = XPROCESS (process)->infd;
6839 int out = XPROCESS (process)->outfd;
6840 if (in >= 0)
6841 emacs_close (in);
6842 if (out >= 0 && in != out)
6843 emacs_close (out);
6846 #endif
6849 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
6850 doc: /* Return the (or a) process associated with BUFFER.
6851 BUFFER may be a buffer or the name of one. */)
6852 (register Lisp_Object buffer)
6854 #ifdef subprocesses
6855 register Lisp_Object buf, tail, proc;
6857 if (NILP (buffer)) return Qnil;
6858 buf = Fget_buffer (buffer);
6859 if (NILP (buf)) return Qnil;
6861 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6863 proc = Fcdr (XCAR (tail));
6864 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
6865 return proc;
6867 #endif /* subprocesses */
6868 return Qnil;
6871 DEFUN ("process-inherit-coding-system-flag",
6872 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6873 1, 1, 0,
6874 doc: /* Return the value of inherit-coding-system flag for PROCESS.
6875 If this flag is t, `buffer-file-coding-system' of the buffer
6876 associated with PROCESS will inherit the coding system used to decode
6877 the process output. */)
6878 (register Lisp_Object process)
6880 #ifdef subprocesses
6881 CHECK_PROCESS (process);
6882 return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
6883 #else
6884 /* Ignore the argument and return the value of
6885 inherit-process-coding-system. */
6886 return inherit_process_coding_system ? Qt : Qnil;
6887 #endif
6890 /* Kill all processes associated with `buffer'.
6891 If `buffer' is nil, kill all processes */
6893 void
6894 kill_buffer_processes (Lisp_Object buffer)
6896 #ifdef subprocesses
6897 Lisp_Object tail, proc;
6899 for (tail = Vprocess_alist; CONSP (tail); tail = XCDR (tail))
6901 proc = XCDR (XCAR (tail));
6902 if (PROCESSP (proc)
6903 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
6905 if (NETCONN_P (proc) || SERIALCONN_P (proc))
6906 Fdelete_process (proc);
6907 else if (XPROCESS (proc)->infd >= 0)
6908 process_send_signal (proc, SIGHUP, Qnil, 1);
6911 #else /* subprocesses */
6912 /* Since we have no subprocesses, this does nothing. */
6913 #endif /* subprocesses */
6916 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,
6917 Swaiting_for_user_input_p, 0, 0, 0,
6918 doc: /* Returns non-nil if Emacs is waiting for input from the user.
6919 This is intended for use by asynchronous process output filters and sentinels. */)
6920 (void)
6922 #ifdef subprocesses
6923 return (waiting_for_user_input_p ? Qt : Qnil);
6924 #else
6925 return Qnil;
6926 #endif
6929 /* Stop reading input from keyboard sources. */
6931 void
6932 hold_keyboard_input (void)
6934 kbd_is_on_hold = 1;
6937 /* Resume reading input from keyboard sources. */
6939 void
6940 unhold_keyboard_input (void)
6942 kbd_is_on_hold = 0;
6945 /* Return true if keyboard input is on hold, zero otherwise. */
6947 bool
6948 kbd_on_hold_p (void)
6950 return kbd_is_on_hold;
6954 /* Enumeration of and access to system processes a-la ps(1). */
6956 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
6957 0, 0, 0,
6958 doc: /* Return a list of numerical process IDs of all running processes.
6959 If this functionality is unsupported, return nil.
6961 See `process-attributes' for getting attributes of a process given its ID. */)
6962 (void)
6964 return list_system_processes ();
6967 DEFUN ("process-attributes", Fprocess_attributes,
6968 Sprocess_attributes, 1, 1, 0,
6969 doc: /* Return attributes of the process given by its PID, a number.
6971 Value is an alist where each element is a cons cell of the form
6973 \(KEY . VALUE)
6975 If this functionality is unsupported, the value is nil.
6977 See `list-system-processes' for getting a list of all process IDs.
6979 The KEYs of the attributes that this function may return are listed
6980 below, together with the type of the associated VALUE (in parentheses).
6981 Not all platforms support all of these attributes; unsupported
6982 attributes will not appear in the returned alist.
6983 Unless explicitly indicated otherwise, numbers can have either
6984 integer or floating point values.
6986 euid -- Effective user User ID of the process (number)
6987 user -- User name corresponding to euid (string)
6988 egid -- Effective user Group ID of the process (number)
6989 group -- Group name corresponding to egid (string)
6990 comm -- Command name (executable name only) (string)
6991 state -- Process state code, such as "S", "R", or "T" (string)
6992 ppid -- Parent process ID (number)
6993 pgrp -- Process group ID (number)
6994 sess -- Session ID, i.e. process ID of session leader (number)
6995 ttname -- Controlling tty name (string)
6996 tpgid -- ID of foreground process group on the process's tty (number)
6997 minflt -- number of minor page faults (number)
6998 majflt -- number of major page faults (number)
6999 cminflt -- cumulative number of minor page faults (number)
7000 cmajflt -- cumulative number of major page faults (number)
7001 utime -- user time used by the process, in (current-time) format,
7002 which is a list of integers (HIGH LOW USEC PSEC)
7003 stime -- system time used by the process (current-time)
7004 time -- sum of utime and stime (current-time)
7005 cutime -- user time used by the process and its children (current-time)
7006 cstime -- system time used by the process and its children (current-time)
7007 ctime -- sum of cutime and cstime (current-time)
7008 pri -- priority of the process (number)
7009 nice -- nice value of the process (number)
7010 thcount -- process thread count (number)
7011 start -- time the process started (current-time)
7012 vsize -- virtual memory size of the process in KB's (number)
7013 rss -- resident set size of the process in KB's (number)
7014 etime -- elapsed time the process is running, in (HIGH LOW USEC PSEC) format
7015 pcpu -- percents of CPU time used by the process (floating-point number)
7016 pmem -- percents of total physical memory used by process's resident set
7017 (floating-point number)
7018 args -- command line which invoked the process (string). */)
7019 ( Lisp_Object pid)
7021 return system_process_attributes (pid);
7025 /* This is not called "init_process" because that is the name of a
7026 Mach system call, so it would cause problems on Darwin systems. */
7027 void
7028 init_process_emacs (void)
7030 #ifdef subprocesses
7031 register int i;
7033 inhibit_sentinels = 0;
7035 #ifndef CANNOT_DUMP
7036 if (! noninteractive || initialized)
7037 #endif
7039 struct sigaction action;
7040 emacs_sigaction_init (&action, deliver_child_signal);
7041 sigaction (SIGCHLD, &action, 0);
7044 FD_ZERO (&input_wait_mask);
7045 FD_ZERO (&non_keyboard_wait_mask);
7046 FD_ZERO (&non_process_wait_mask);
7047 FD_ZERO (&write_mask);
7048 max_process_desc = 0;
7049 memset (fd_callback_info, 0, sizeof (fd_callback_info));
7051 #ifdef NON_BLOCKING_CONNECT
7052 FD_ZERO (&connect_wait_mask);
7053 num_pending_connects = 0;
7054 #endif
7056 #ifdef ADAPTIVE_READ_BUFFERING
7057 process_output_delay_count = 0;
7058 process_output_skip = 0;
7059 #endif
7061 /* Don't do this, it caused infinite select loops. The display
7062 method should call add_keyboard_wait_descriptor on stdin if it
7063 needs that. */
7064 #if 0
7065 FD_SET (0, &input_wait_mask);
7066 #endif
7068 Vprocess_alist = Qnil;
7069 deleted_pid_list = Qnil;
7070 for (i = 0; i < MAXDESC; i++)
7072 chan_process[i] = Qnil;
7073 proc_buffered_char[i] = -1;
7075 memset (proc_decode_coding_system, 0, sizeof proc_decode_coding_system);
7076 memset (proc_encode_coding_system, 0, sizeof proc_encode_coding_system);
7077 #ifdef DATAGRAM_SOCKETS
7078 memset (datagram_address, 0, sizeof datagram_address);
7079 #endif
7082 Lisp_Object subfeatures = Qnil;
7083 const struct socket_options *sopt;
7085 #define ADD_SUBFEATURE(key, val) \
7086 subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures)
7088 #ifdef NON_BLOCKING_CONNECT
7089 ADD_SUBFEATURE (QCnowait, Qt);
7090 #endif
7091 #ifdef DATAGRAM_SOCKETS
7092 ADD_SUBFEATURE (QCtype, Qdatagram);
7093 #endif
7094 #ifdef HAVE_SEQPACKET
7095 ADD_SUBFEATURE (QCtype, Qseqpacket);
7096 #endif
7097 #ifdef HAVE_LOCAL_SOCKETS
7098 ADD_SUBFEATURE (QCfamily, Qlocal);
7099 #endif
7100 ADD_SUBFEATURE (QCfamily, Qipv4);
7101 #ifdef AF_INET6
7102 ADD_SUBFEATURE (QCfamily, Qipv6);
7103 #endif
7104 #ifdef HAVE_GETSOCKNAME
7105 ADD_SUBFEATURE (QCservice, Qt);
7106 #endif
7107 ADD_SUBFEATURE (QCserver, Qt);
7109 for (sopt = socket_options; sopt->name; sopt++)
7110 subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures);
7112 Fprovide (intern_c_string ("make-network-process"), subfeatures);
7115 #if defined (DARWIN_OS)
7116 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
7117 processes. As such, we only change the default value. */
7118 if (initialized)
7120 char const *release = (STRINGP (Voperating_system_release)
7121 ? SSDATA (Voperating_system_release)
7122 : 0);
7123 if (!release || !release[0] || (release[0] < '7' && release[1] == '.')) {
7124 Vprocess_connection_type = Qnil;
7127 #endif
7128 #endif /* subprocesses */
7129 kbd_is_on_hold = 0;
7132 void
7133 syms_of_process (void)
7135 #ifdef subprocesses
7137 DEFSYM (Qprocessp, "processp");
7138 DEFSYM (Qrun, "run");
7139 DEFSYM (Qstop, "stop");
7140 DEFSYM (Qsignal, "signal");
7142 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
7143 here again.
7145 Qexit = intern_c_string ("exit");
7146 staticpro (&Qexit); */
7148 DEFSYM (Qopen, "open");
7149 DEFSYM (Qclosed, "closed");
7150 DEFSYM (Qconnect, "connect");
7151 DEFSYM (Qfailed, "failed");
7152 DEFSYM (Qlisten, "listen");
7153 DEFSYM (Qlocal, "local");
7154 DEFSYM (Qipv4, "ipv4");
7155 #ifdef AF_INET6
7156 DEFSYM (Qipv6, "ipv6");
7157 #endif
7158 DEFSYM (Qdatagram, "datagram");
7159 DEFSYM (Qseqpacket, "seqpacket");
7161 DEFSYM (QCport, ":port");
7162 DEFSYM (QCspeed, ":speed");
7163 DEFSYM (QCprocess, ":process");
7165 DEFSYM (QCbytesize, ":bytesize");
7166 DEFSYM (QCstopbits, ":stopbits");
7167 DEFSYM (QCparity, ":parity");
7168 DEFSYM (Qodd, "odd");
7169 DEFSYM (Qeven, "even");
7170 DEFSYM (QCflowcontrol, ":flowcontrol");
7171 DEFSYM (Qhw, "hw");
7172 DEFSYM (Qsw, "sw");
7173 DEFSYM (QCsummary, ":summary");
7175 DEFSYM (Qreal, "real");
7176 DEFSYM (Qnetwork, "network");
7177 DEFSYM (Qserial, "serial");
7178 DEFSYM (QCbuffer, ":buffer");
7179 DEFSYM (QChost, ":host");
7180 DEFSYM (QCservice, ":service");
7181 DEFSYM (QClocal, ":local");
7182 DEFSYM (QCremote, ":remote");
7183 DEFSYM (QCcoding, ":coding");
7184 DEFSYM (QCserver, ":server");
7185 DEFSYM (QCnowait, ":nowait");
7186 DEFSYM (QCsentinel, ":sentinel");
7187 DEFSYM (QClog, ":log");
7188 DEFSYM (QCnoquery, ":noquery");
7189 DEFSYM (QCstop, ":stop");
7190 DEFSYM (QCoptions, ":options");
7191 DEFSYM (QCplist, ":plist");
7193 DEFSYM (Qlast_nonmenu_event, "last-nonmenu-event");
7195 staticpro (&Vprocess_alist);
7196 staticpro (&deleted_pid_list);
7198 #endif /* subprocesses */
7200 DEFSYM (QCname, ":name");
7201 DEFSYM (QCtype, ":type");
7203 DEFSYM (Qeuid, "euid");
7204 DEFSYM (Qegid, "egid");
7205 DEFSYM (Quser, "user");
7206 DEFSYM (Qgroup, "group");
7207 DEFSYM (Qcomm, "comm");
7208 DEFSYM (Qstate, "state");
7209 DEFSYM (Qppid, "ppid");
7210 DEFSYM (Qpgrp, "pgrp");
7211 DEFSYM (Qsess, "sess");
7212 DEFSYM (Qttname, "ttname");
7213 DEFSYM (Qtpgid, "tpgid");
7214 DEFSYM (Qminflt, "minflt");
7215 DEFSYM (Qmajflt, "majflt");
7216 DEFSYM (Qcminflt, "cminflt");
7217 DEFSYM (Qcmajflt, "cmajflt");
7218 DEFSYM (Qutime, "utime");
7219 DEFSYM (Qstime, "stime");
7220 DEFSYM (Qtime, "time");
7221 DEFSYM (Qcutime, "cutime");
7222 DEFSYM (Qcstime, "cstime");
7223 DEFSYM (Qctime, "ctime");
7224 DEFSYM (Qpri, "pri");
7225 DEFSYM (Qnice, "nice");
7226 DEFSYM (Qthcount, "thcount");
7227 DEFSYM (Qstart, "start");
7228 DEFSYM (Qvsize, "vsize");
7229 DEFSYM (Qrss, "rss");
7230 DEFSYM (Qetime, "etime");
7231 DEFSYM (Qpcpu, "pcpu");
7232 DEFSYM (Qpmem, "pmem");
7233 DEFSYM (Qargs, "args");
7235 DEFVAR_BOOL ("delete-exited-processes", delete_exited_processes,
7236 doc: /* Non-nil means delete processes immediately when they exit.
7237 A value of nil means don't delete them until `list-processes' is run. */);
7239 delete_exited_processes = 1;
7241 #ifdef subprocesses
7242 DEFVAR_LISP ("process-connection-type", Vprocess_connection_type,
7243 doc: /* Control type of device used to communicate with subprocesses.
7244 Values are nil to use a pipe, or t or `pty' to use a pty.
7245 The value has no effect if the system has no ptys or if all ptys are busy:
7246 then a pipe is used in any case.
7247 The value takes effect when `start-process' is called. */);
7248 Vprocess_connection_type = Qt;
7250 #ifdef ADAPTIVE_READ_BUFFERING
7251 DEFVAR_LISP ("process-adaptive-read-buffering", Vprocess_adaptive_read_buffering,
7252 doc: /* If non-nil, improve receive buffering by delaying after short reads.
7253 On some systems, when Emacs reads the output from a subprocess, the output data
7254 is read in very small blocks, potentially resulting in very poor performance.
7255 This behavior can be remedied to some extent by setting this variable to a
7256 non-nil value, as it will automatically delay reading from such processes, to
7257 allow them to produce more output before Emacs tries to read it.
7258 If the value is t, the delay is reset after each write to the process; any other
7259 non-nil value means that the delay is not reset on write.
7260 The variable takes effect when `start-process' is called. */);
7261 Vprocess_adaptive_read_buffering = Qt;
7262 #endif
7264 defsubr (&Sprocessp);
7265 defsubr (&Sget_process);
7266 defsubr (&Sdelete_process);
7267 defsubr (&Sprocess_status);
7268 defsubr (&Sprocess_exit_status);
7269 defsubr (&Sprocess_id);
7270 defsubr (&Sprocess_name);
7271 defsubr (&Sprocess_tty_name);
7272 defsubr (&Sprocess_command);
7273 defsubr (&Sset_process_buffer);
7274 defsubr (&Sprocess_buffer);
7275 defsubr (&Sprocess_mark);
7276 defsubr (&Sset_process_filter);
7277 defsubr (&Sprocess_filter);
7278 defsubr (&Sset_process_sentinel);
7279 defsubr (&Sprocess_sentinel);
7280 defsubr (&Sset_process_window_size);
7281 defsubr (&Sset_process_inherit_coding_system_flag);
7282 defsubr (&Sset_process_query_on_exit_flag);
7283 defsubr (&Sprocess_query_on_exit_flag);
7284 defsubr (&Sprocess_contact);
7285 defsubr (&Sprocess_plist);
7286 defsubr (&Sset_process_plist);
7287 defsubr (&Sprocess_list);
7288 defsubr (&Sstart_process);
7289 defsubr (&Sserial_process_configure);
7290 defsubr (&Smake_serial_process);
7291 defsubr (&Sset_network_process_option);
7292 defsubr (&Smake_network_process);
7293 defsubr (&Sformat_network_address);
7294 #if defined (HAVE_NET_IF_H)
7295 #ifdef SIOCGIFCONF
7296 defsubr (&Snetwork_interface_list);
7297 #endif
7298 #if defined (SIOCGIFADDR) || defined (SIOCGIFHWADDR) || defined (SIOCGIFFLAGS)
7299 defsubr (&Snetwork_interface_info);
7300 #endif
7301 #endif /* defined (HAVE_NET_IF_H) */
7302 #ifdef DATAGRAM_SOCKETS
7303 defsubr (&Sprocess_datagram_address);
7304 defsubr (&Sset_process_datagram_address);
7305 #endif
7306 defsubr (&Saccept_process_output);
7307 defsubr (&Sprocess_send_region);
7308 defsubr (&Sprocess_send_string);
7309 defsubr (&Sinterrupt_process);
7310 defsubr (&Skill_process);
7311 defsubr (&Squit_process);
7312 defsubr (&Sstop_process);
7313 defsubr (&Scontinue_process);
7314 defsubr (&Sprocess_running_child_p);
7315 defsubr (&Sprocess_send_eof);
7316 defsubr (&Ssignal_process);
7317 defsubr (&Swaiting_for_user_input_p);
7318 defsubr (&Sprocess_type);
7319 defsubr (&Sset_process_coding_system);
7320 defsubr (&Sprocess_coding_system);
7321 defsubr (&Sset_process_filter_multibyte);
7322 defsubr (&Sprocess_filter_multibyte_p);
7324 #endif /* subprocesses */
7326 defsubr (&Sget_buffer_process);
7327 defsubr (&Sprocess_inherit_coding_system_flag);
7328 defsubr (&Slist_system_processes);
7329 defsubr (&Sprocess_attributes);